@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  --ease-smooth: cubic-bezier(0, .34, .39, .65);
  --item-padding-inline: min(3.07vw, 59.52px);
  --mv-anim-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  :root {
    --item-padding-inline: 5.33%;
  }
}

html,
body {
  font-size: 16px;
}

html {
  min-height: 100%;
}

body {
  font-family: "Zen Old Mincho", serif;
  color: #333333;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

img, picture, svg {
  display: block;
}

a {
  color: inherit;
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  br.u-sp {
    display: inline !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.main {
  max-width: 100%;
  overflow-x: clip;
}

.anim-fade {
  opacity: 0;
  --fade-transform: translate(0, 10px);
  --fade-duration: 1.8s;
  --fade-delay: 0s;
  --fade-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-fade.js-animate, .js-animate .anim-fade {
  animation-name: keyFade;
  animation-duration: var(--fade-duration);
  animation-delay: var(--fade-delay);
  animation-timing-function: var(--fade-timing-function);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade {
  opacity: 1;
}
@media print {
  .anim-fade {
    opacity: 1;
  }
}

@keyframes keyFade {
  0% {
    opacity: 0;
    transform: var(--fade-transform);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.anim-clip {
  --clip-path: inset(0 100% 0 0);
  --clip-transform: none;
  --clip-duration: 2s;
  --clip-delay: 0s;
  --clip-opacity: 0;
  opacity: var(--clip-opacity);
}
.anim-clip.js-animate, .js-animate .anim-clip {
  animation-name: keyClip;
  animation-duration: var(--clip-duration);
  animation-delay: var(--clip-delay);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-clip {
  opacity: 1;
}
@media print {
  .anim-clip {
    opacity: 1;
  }
}

@keyframes keyClip {
  0% {
    opacity: var(--clip-opacity);
    clip-path: var(--clip-path);
    transform: var(--clip-transform);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
}
.anim-clip-text {
  --clip-delay: 0s;
  --clip-transform: none;
  position: relative;
  overflow: hidden;
  transition: translate 2s ease var(--clip-delay);
  translate: var(--clip-translate);
}
.anim-clip-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50%;
  width: 150%;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg, rgb(255 255 255 / 0) 0%, rgb(255 255 255 / 1) 33%, rgb(255 255 255 / 1) 100%);
  z-index: 10;
  transition: left 2s ease var(--clip-delay);
}
.anim-clip-text.js-animate {
  translate: none;
}
.anim-clip-text.js-animate::after {
  left: 101%;
}
html:not(.js-enabled) .anim-clip-text {
  translate: none;
}
html:not(.js-enabled) .anim-clip-text::after {
  display: none;
}
@media print {
  .anim-clip-text {
    translate: none;
  }
  .anim-clip-text::after {
    display: none;
  }
}

.anim-scale-in {
  opacity: 0;
  --scale-transform: scale(1.03);
  --scale-duration: 1.6s;
  --scale-delay: 0s;
  --scale-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-scale-in.js-animate {
  animation-name: keyScaleIn;
  animation-duration: var(--scale-duration);
  animation-delay: var(--scale-delay);
  animation-timing-function: var(--scale-timing-function);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-scale-in {
  opacity: 1;
}
@media print {
  .anim-scale-in {
    opacity: 1;
  }
}

@keyframes keyScaleIn {
  0% {
    opacity: 0;
    transform: var(--scale-transform);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.mv__bg {
  opacity: 0;
}
.mv__bg.js-animate, .js-animate .mv__bg {
  animation-name: keyMvBg;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.64, 0.61, 0.09, 0.99);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .mv__bg {
  opacity: 1;
}
@media print {
  .mv__bg {
    opacity: 1;
  }
}

@keyframes keyMvBg {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.mv__bg picture:first-child.js-animate, .js-animate .mv__bg picture:first-child,
.mv__bg picture:last-child.js-animate,
.js-animate .mv__bg picture:last-child {
  animation-name: keyMvBgImg;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-fill-mode: forwards;
}

@keyframes keyMvBgImg {
  0% {
    filter: blur(30px);
    transform: scale(1.1);
  }
  30% {
    filter: blur(0px);
  }
  100% {
    filter: blur(0px);
    transform: scale(1);
  }
}
.mv__ttl {
  opacity: 0;
  transform-origin: center center;
}
.mv__ttl.js-animate, .js-animate .mv__ttl {
  animation-name: keyMvTtl;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
html:not(.js-enabled) .mv__ttl {
  opacity: 1;
}
@media print {
  .mv__ttl {
    opacity: 1;
  }
}

@keyframes keyMvTtl {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translate(-3%, -6%) rotate(-4deg) scale(1.22);
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
.mv__en {
  opacity: 0;
}
.mv__en.js-animate, .js-animate .mv__en {
  animation-name: keyMvDeco;
  animation-duration: 1.8s;
  animation-delay: 3s;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .mv__en {
  opacity: 1;
}
@media print {
  .mv__en {
    opacity: 1;
  }
}

@keyframes keyMvDeco {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate(0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
}
.anim-rotate {
  will-change: transform;
  animation: keyRotate 50s linear infinite;
}

@keyframes keyRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mv {
  overflow: hidden;
}
.mv__main {
  position: relative;
  overflow: hidden;
}
.mv__bg {
  overflow: hidden;
}
.mv__bg img {
  width: 100%;
  display: block;
}
.mv__logo {
  --fade-delay: 2s;
  --fade-transform: none;
  position: absolute;
  right: 0.95vw;
  top: 0.95vw;
}
@media screen and (max-width: 767px) {
  .mv__logo {
    right: auto;
    left: 4vw;
    top: 4vw;
  }
}
.mv__logo img {
  width: 6.91vw;
}
@media screen and (max-width: 767px) {
  .mv__logo img {
    width: 13.33vw;
  }
}
.mv__bg {
  position: relative;
}
.mv__bg picture:last-child {
  position: absolute;
  inset: 0;
}
.mv__ring {
  --fade-transform: translate(0, 0);
  --fade-duration: 5s;
  --fade-delay: 1.5s;
  --fade-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.63vw;
}
@media screen and (max-width: 767px) {
  .mv__ring {
    right: auto;
    left: -5.34vw;
    bottom: auto;
    top: 12.8vw;
  }
}
.mv__ring img {
  height: 100%;
  width: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .mv__ring img {
    height: auto;
    width: 110.66vw;
    max-width: none;
  }
}
.mv__txt-area {
  position: absolute;
  top: 18.9vw;
  left: 9.29vw;
}
@media screen and (max-width: 767px) {
  .mv__txt-area {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.mv__txt-area img {
  display: block;
  width: 100%;
}
.mv__lead {
  --fade-transform: translate(-18px, 0);
  --fade-duration: 1.4s;
  --fade-delay: 1.5s;
  --fade-timing-function: cubic-bezier(.24,.69,.83,.95);
  width: 28.58vw;
  margin-left: 4.53vw;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    width: 62.53vw;
    margin-left: 18.66vw;
  }
}
.mv__ttl {
  margin-top: 3.29vw;
  margin-left: 0.83vw;
  width: 35.96vw;
}
@media screen and (max-width: 767px) {
  .mv__ttl {
    width: 78.63vw;
    margin-left: 9.33vw;
    margin-top: 5.86vw;
  }
}
.mv__en {
  width: 21.74vw;
  margin-top: 2.6vw;
  margin-left: 8.02vw;
}
@media screen and (max-width: 767px) {
  .mv__en {
    width: 53.46vw;
    margin-bottom: 6.93vw;
    margin-left: 23.2vw;
    margin-top: 5.6vw;
  }
}
.mv__text-ttl {
  margin-top: 97px;
  margin-top: clamp(97px, 0.0485198556px + 7.0974729242vw, 136.32px);
  margin-inline: auto;
  width: max-content;
  display: block;
  max-width: 100%;
  font-size: 1.25rem;
  font-size: clamp(20px, 12.6028880866px + 0.5415162455vw, 23px);
  line-height: 1.75;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__text-ttl {
    margin-top: 2.8em;
  }
}
@media screen and (max-width: 374px) {
  .mv__text-ttl {
    font-size: max(16.96px, 5.33vw);
  }
}
@media screen and (max-width: 319px) {
  .mv__text-ttl {
    text-align: left;
    padding-inline: var(--item-padding-inline);
  }
}
@media screen and (max-width: 319px) {
  .mv__text-ttl br {
    display: none !important;
  }
}
.mv__text-lead {
  margin-top: 34px;
  margin-top: clamp(34px, -0.5198555957px + 2.5270758123vw, 48px);
  margin-inline: auto;
  width: max-content;
  display: block;
  max-width: 100%;
  font-size: 1.12rem;
  font-size: clamp(18px, 15.5342960289px + 0.1805054152vw, 19px);
  line-height: 2.667;
  text-align: center;
  color: #1A1311;
}
@media screen and (max-width: 767px) {
  .mv__text-lead {
    margin-top: 1.93em;
    font-size: 1rem;
    font-size: clamp(16px, 14.0867346939px + 0.5102040816vw, 18px);
    line-height: 2.188;
  }
}
@media screen and (max-width: 374px) {
  .mv__text-lead {
    font-size: max(13.76px, 4.26vw);
  }
}
@media screen and (max-width: 319px) {
  .mv__text-lead {
    text-align: left;
    padding-inline: var(--item-padding-inline);
  }
}
@media screen and (max-width: 319px) {
  .mv__text-lead br {
    display: none !important;
  }
}

.index {
  margin-top: min(9.73vw, 133px);
}
@media screen and (max-width: 767px) {
  .index {
    display: none;
  }
}
.index__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 0;
  list-style-type: none;
  width: 700px;
  width: clamp(700px, 2.1071480144px + 51.0902527076vw, 983.04px);
}
.index__item a {
  text-decoration: none !important;
  width: 85.71%;
  display: block;
  margin-inline: auto;
}
.index__img {
  overflow: hidden;
  position: relative;
  width: 83.33%;
  margin-inline: auto;
}
.index__img img {
  width: 100%;
  --scale-transform: scale(1.03);
  --scale-duration: 1.2s;
  --scale-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .index__img img {
    --scale-transform: scale(1.05);
  }
}
.index__img-hover {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  display: grid;
  place-content: center;
  color: #fff;
  background: rgb(0 0 0 / 0.7);
  font-size: 1.5rem;
  font-size: clamp(24px, -2.037833935px + 1.9061371841vw, 34.56px);
  line-height: 1.4;
  font-family: "Cormorant Infant", serif;
  transform: scale(1.05);
  transition: opacity 0.4s, transform 0.4s;
}
.index__item a:hover .index__img-hover {
  opacity: 1;
  transform: scale(1);
}
.index__sub-ttl, .index__main-ttl {
  --fade-transform: translate(-10px, 0);
  --fade-duration: 0.7s;
  --fade-timing-function: cubic-bezier(.24,.69,.83,.95);
}
.index__sub-ttl {
  margin-top: 1.25em;
  font-size: 1rem;
  font-size: clamp(16px, -1.3585559567px + 1.2707581227vw, 23.04px);
  line-height: 1.4;
  text-align: center;
  color: #8DB3CA;
  white-space: nowrap;
}
.index__item:last-child .index__sub-ttl {
  color: #9B8B64;
}
.index__main-ttl {
  margin-top: 0.19em;
  font-size: 1.31rem;
  font-size: clamp(21px, 1.7675090253px + 1.4079422383vw, 28.8px);
  text-align: center;
  white-space: nowrap;
}

.sec {
  margin-top: 117px;
  margin-top: clamp(117px, -1.6496750903px + 8.6859205776vw, 165.12px);
  --sec-color: #8DB3CA;
}
@media screen and (max-width: 767px) {
  .sec {
    margin-top: max(71px, 18.93vw);
  }
}
.index + .sec {
  margin-top: 122px;
  margin-top: clamp(122px, 1.4763898917px + 8.8231046931vw, 170.88px);
}
@media screen and (max-width: 767px) {
  .index + .sec {
    margin-top: max(48px, 12.8vw);
  }
}
.sec#basic {
  --sec-color: #F2EFE5;
}

.sec-header {
  position: relative;
  color: #fff;
  text-align: center;
  padding-block: 102px 87px;
  padding-block: clamp(102px, -1.559566787px + 7.5812274368vw, 144px) clamp(87px, -1.4694584838px + 6.476534296vw, 122.88px);
}
@media screen and (max-width: 767px) {
  .sec-header {
    padding-block: 63px 58px;
  }
}
@media screen and (max-width: 319px) {
  .sec-header {
    padding-inline: var(--item-padding-inline);
  }
}
#basic .sec-header {
  color: #333;
}
.sec-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: max(-9.89vw, -190.08px);
  background-color: var(--sec-color);
  opacity: 0;
  --clip-path: inset(0 100% 0 0);
  --clip-transform: none;
  --clip-opacity: 1;
}
html:not(.js-enabled) .sec-header::before {
  opacity: 1;
}
@media print {
  .sec-header::before {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .sec-header::before {
    bottom: 0;
  }
}
.sec-header.js-animate::before {
  animation: keyClip 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media screen and (max-width: 319px) {
  .sec-header br {
    display: none !important;
  }
}
.sec-header__lead, .sec-header__ttl, .sec-header__desc {
  --fade-duration: 1.4s;
}
.sec-header__lead {
  --fade-delay: 0.35s;
  position: relative;
  line-height: 1.2;
  font-size: 1.25rem;
  font-size: clamp(20px, -1.6981949458px + 1.5884476534vw, 28.8px);
}
@media screen and (max-width: 767px) {
  .sec-header__lead {
    font-size: 1rem;
    font-size: clamp(16px, 14.0867346939px + 0.5102040816vw, 18px);
    line-height: 1.625;
  }
}
@media screen and (max-width: 374px) {
  .sec-header__lead {
    font-size: max(13.76px, 4.26vw);
  }
}
.sec-header__ttl {
  --fade-delay: 0.5s;
  margin-block: 0.4em 0.58em;
  position: relative;
  font-weight: normal;
  font-family: "Cormorant Infant", serif;
  font-size: 5rem;
  font-size: clamp(80px, -2.0586281588px + 6.0072202166vw, 113.28px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec-header__ttl {
    margin-block: 0.53em 0.45em;
    font-size: 3.75rem;
    font-size: clamp(60px, 50.4336734694px + 2.5510204082vw, 70px);
  }
}
@media screen and (max-width: 374px) {
  .sec-header__ttl {
    font-size: max(51.2px, 16vw);
  }
}
.sec-header__desc {
  --fade-delay: 0.65s;
  position: relative;
  font-size: 1.12rem;
  font-size: clamp(18px, 0.838700361px + 1.2563176895vw, 24.96px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec-header__desc {
    font-size: 1rem;
    font-size: clamp(16px, 14.0867346939px + 0.5102040816vw, 18px);
    line-height: 2;
  }
}
@media screen and (max-width: 374px) {
  .sec-header__desc {
    font-size: max(13.76px, 4.26vw);
  }
}

#basic .link__list--main {
  --link-text-color: #333;
  --link-bg-color: var(--sec-color);
  --link-border-color: var(--sec-color);
  --link-text-color-hover: #333;
  --link-bg-color-hover: var(--sec-color);
  --link-border-color-hover: var(--sec-color);
  --link-arrow-url: url("../img/link_arrow_black.svg");
}

.item {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding-top: 120px;
  padding-top: clamp(120px, -0.720866426px + 8.8375451264vw, 168.96px);
  padding-inline: var(--item-padding-inline);
  background: #fff;
  --item-top-offset: min(
    14.2vw,
    272.64px
  );
  --item-band-txt-area-top-padding: 68px;
  --item-band-txt-area-top-padding: clamp(68px, -1.0397111913px + 5.0541516245vw, 96px);
}
@media screen and (max-width: 767px) {
  .item {
    padding-inline: 0;
    padding-top: clamp(87px, 64.9974489796px + 5.8673469388vw, 110px);
    --item-top-offset: 63px;
    --item-band-txt-area-top-padding: 63px;
  }
}
.item--top {
  margin-top: var(--item-top-offset);
  padding-top: 0;
}
.band + .item--top {
  margin-top: calc(var(--item-top-offset) - var(--item-band-txt-area-top-padding));
}
@media screen and (max-width: 767px) {
  .band + .item--top {
    padding-top: 63px;
    margin-top: 0;
  }
}
.pin-spacer:has(.band) + .item--top {
  margin-top: calc(var(--item-top-offset) + var(--item-band-txt-area-top-padding));
}
@media screen and (max-width: 767px) {
  .pin-spacer:has(.band) + .item--top {
    margin-top: 0;
    padding-top: var(--item-top-offset);
  }
}
.item__inner {
  width: 1920px;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .item__inner {
    justify-content: space-between;
    column-gap: 7%;
  }
}
@media screen and (max-width: 767px) {
  .item__inner {
    flex-direction: column;
  }
}
.item--reverse .item__inner {
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .item--reverse .item__inner {
    flex-direction: column;
  }
}
.item__photo-area {
  position: relative;
  width: 46.8%;
  z-index: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .item__photo-area {
    width: 100%;
  }
}
.item--top .item__photo-area {
  margin-top: calc(var(--item-top-offset) * -1);
}
@media screen and (max-width: 767px) {
  .item--top .item__photo-area {
    margin-top: 0;
  }
}
.pin-spacer:has(.band) + .item--top .item__photo-area {
  margin-top: calc(var(--item-top-offset) * -1 + var(--item-band-txt-area-top-padding));
}
@media screen and (max-width: 767px) {
  .pin-spacer:has(.band) + .item--top .item__photo-area {
    margin-top: 0;
  }
}
.item__photo-main {
  display: block;
  position: relative;
  overflow: hidden;
}
.item__photo-main .anim-scale-in {
  --scale-transform: scale(1.03);
  --scale-duration: 1.2s;
  --scale-timing-function: cubic-bezier(1,.75,.69,.99);
}
@media screen and (max-width: 767px) {
  .item__photo-main .anim-scale-in {
    --scale-transform: scale(1.05);
  }
}
.item--top .item__photo-main .anim-scale-in {
  --scale-delay: 0.5s;
}
.band + .item--top .item__photo-main .anim-scale-in, .pin-spacer:has(.band) + .item--top .item__photo-main .anim-scale-in {
  --scale-delay: 0s;
}
@media screen and (max-width: 767px) {
  .item__photo-main img {
    width: 100vw;
  }
}
html:not(.js-enabled) .item__photo-main .swiper-slide:first-child {
  opacity: 1 !important;
  transform: none !important;
  width: 100% !important;
}
@media print {
  .item__photo-main .swiper-slide:first-child {
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
  }
}
html:not(.js-enabled) .item__photo-main .swiper-slide:not(:first-child) {
  display: none !important;
}
@media print {
  .item__photo-main .swiper-slide:not(:first-child) {
    display: none !important;
  }
}
.item__txt-area {
  --item-txt-margin: 14.27%;
  position: relative;
  width: max(400px, 31.2%);
  margin-left: var(--item-txt-margin);
}
@media screen and (max-width: 1200px) {
  .item__txt-area {
    --item-txt-margin: 0px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .item__txt-area {
    width: 100%;
    margin-left: 0;
  }
}
.item:not(.item--top) .item__txt-area {
  margin-top: 40px;
  margin-top: clamp(40px, 1.3377617329px + 2.8303249097vw, 55.68px);
}
@media screen and (max-width: 1365px) {
  .item:not(.item--top) .item__txt-area {
    margin-top: clamp(14px, -19.347826087px + 4.347826087vw, 40px);
  }
}
.band + .item--top .item__txt-area, .pin-spacer:has(.band) + .item--top .item__txt-area {
  padding-top: var(--item-band-txt-area-top-padding);
}
@media screen and (max-width: 767px) {
  .band + .item--top .item__txt-area, .pin-spacer:has(.band) + .item--top .item__txt-area {
    padding-top: 0;
  }
}
.item--reverse .item__txt-area {
  margin-inline: 0 var(--item-txt-margin);
}
@media screen and (max-width: 767px) {
  .item--reverse .item__txt-area {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .item__num-area, .item__ttl, .item__desc,
  .item .link {
    padding-inline: var(--item-padding-inline);
  }
}
.item__num-area {
  display: flex;
  align-items: flex-start;
  font-size: 3.75rem;
  font-size: clamp(60px, -0.360433213px + 4.4187725632vw, 84.48px);
}
@media screen and (max-width: 1365px) {
  .item__num-area {
    font-size: clamp(50px, 37.1739130435px + 1.6722408027vw, 60px);
  }
}
@media screen and (max-width: 767px) {
  .item__num-area {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 374px) {
  .item__num-area {
    font-size: max(51.2px, 16vw);
  }
}
.item__color {
  position: relative;
  margin: 0.35em 1.4em 0 0;
  font-size: 0.33em;
  font-family: "Cormorant Infant", serif;
  color: var(--sec-color);
  line-height: 1;
  --fade-transform: translate(-10px, 0);
  --fade-duration: 0.7s;
  --fade-timing-function: cubic-bezier(.24,.69,.83,.95);
}
.item__color::before {
  content: "";
  position: absolute;
  right: -0.7em;
  top: 0.15em;
  display: block;
  width: 1px;
  height: 1.45em;
  background-color: #333;
  transform: scaleY(0) rotate(0);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.js-animate .item__color::before {
  transform: scaleY(1) rotate(23deg);
  opacity: 1;
}
@media print {
  .item__color::before {
    background-color: transparent;
    border-left: 1px solid #333;
  }
}
#basic .item__color {
  color: #9B8B64;
}
.item__num {
  line-height: 1;
  font-family: "Cormorant Infant", serif;
  --fade-transform: translate(-10px, 0);
  --fade-duration: 0.7s;
  --fade-delay: 0.2s;
  --fade-timing-function: cubic-bezier(.24,.69,.83,.95);
}
.item__ttl, .item__desc {
  --fade-transform: translate(-18px, 0);
  --fade-duration: 1.4s;
  --fade-timing-function: cubic-bezier(.24,.69,.83,.95);
}
@media screen and (max-width: 767px) {
  .item__ttl, .item__desc {
    --fade-transform: translate(-10px, 0);
  }
}
.item__ttl {
  margin-block: 0.66em 1.56em;
  line-height: 1.8;
  font-size: 1.87rem;
  font-size: clamp(30px, -0.1802166065px + 2.2093862816vw, 42.24px);
  font-weight: normal;
}
@media screen and (max-width: 1365px) {
  .item__ttl {
    font-size: clamp(25px, 18.5869565217px + 0.8361204013vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .item__ttl {
    margin-bottom: 0.76em;
    font-size: 1.87rem;
    font-size: clamp(30px, 24.2602040816px + 1.5306122449vw, 36px);
    line-height: 1.8;
  }
}
@media screen and (max-width: 374px) {
  .item__ttl {
    font-size: max(25.6px, 8vw);
  }
}
@media screen and (max-width: 319px) {
  .item__ttl br {
    display: none !important;
  }
}
.item__desc {
  --fade-delay: 0.2s;
  font-size: 1.12rem;
  font-size: clamp(18px, 10.6028880866px + 0.5415162455vw, 21px);
  line-height: 2.444;
}
@media screen and (max-width: 1365px) {
  .item__desc {
    font-size: clamp(14px, 8.8695652174px + 0.6688963211vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .item__desc {
    margin-top: 2.43em;
    font-size: 1rem;
    font-size: clamp(16px, 14.0867346939px + 0.5102040816vw, 18px);
    line-height: 1.75;
  }
}
.item .link {
  margin-top: 50px;
  margin-top: clamp(50px, -1.8784115523px + 3.797833935vw, 71.04px);
}
@media screen and (max-width: 767px) {
  .item .link {
    margin-top: 38px;
    margin-top: clamp(38px, 26.5204081633px + 3.0612244898vw, 50px);
    width: 450px;
    max-width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .item .link__name {
    letter-spacing: 0.086em;
  }
}
@supports (display: contents) {
  @media screen and (max-width: 767px) {
    .item__txt-area {
      display: contents;
    }
    .item__num-area {
      order: 1;
    }
    .item__ttl {
      order: 2;
    }
    .item__photo-area {
      order: 3;
    }
    .item__desc {
      order: 4;
    }
    .item .link {
      order: 5;
    }
  }
}
@supports not (display: contents) {
  @media screen and (max-width: 767px) {
    .item .item__txt-area {
      padding-top: 30px !important;
    }
  }
}

.link {
  --link-text-color: #fff;
  --link-bg-color: var(--sec-color);
  --link-border-color: var(--sec-color);
  --link-text-color-hover: var(--sec-color);
  --link-bg-color-hover: #fff;
  --link-border-color-hover: var(--sec-color);
  --link-arrow-url: url("../img/link_arrow_sec01.svg");
  --link-item-duration: 1.9s;
  --link-item-easing: cubic-bezier(0.4, 0, 0.2, 1);
}
.link__list {
  padding-left: 0;
  list-style-type: none;
  font-size: clamp(14px, 9.0685920578px + 0.3610108303vw, 16px);
}
@media screen and (max-width: 1365px) {
  .link__list {
    font-size: clamp(13px, 11.7173913043px + 0.1672240803vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  .link__list {
    font-size: 0.87rem;
    font-size: 0.87rem;
    font-size: clamp(14px, 13.0433673469px + 0.2551020408vw, 15px); /* 14px @375px - 15px @767px */
  }
}
.link__item {
  padding-bottom: 0.64em;
  font-size: inherit;
  position: relative;
  opacity: 0;
  left: -0.8em;
  top: 0;
  will-change: opacity, left, top;
  transition: opacity var(--link-item-duration) var(--link-item-easing), left calc(var(--link-item-duration) * 0.5) var(--link-item-easing), top calc(var(--link-item-duration) * 0.5) var(--link-item-easing);
}
.link__item:nth-child(1) {
  transition-delay: 0s;
}
.link__list--sub .link__item:nth-child(1) {
  transition-delay: 0.3s;
}
.link__item:nth-child(2) {
  transition-delay: 0.05s;
}
.link__list--sub .link__item:nth-child(2) {
  transition-delay: 0.35s;
}
.link__item:nth-child(3) {
  transition-delay: 0.1s;
}
.link__list--sub .link__item:nth-child(3) {
  transition-delay: 0.4s;
}
.link__item:nth-child(4) {
  transition-delay: 0.15s;
}
.link__list--sub .link__item:nth-child(4) {
  transition-delay: 0.45s;
}
.link__item:nth-child(5) {
  transition-delay: 0.2s;
}
.link__list--sub .link__item:nth-child(5) {
  transition-delay: 0.5s;
}
.link__item:nth-child(6) {
  transition-delay: 0.25s;
}
.link__list--sub .link__item:nth-child(6) {
  transition-delay: 0.55s;
}
.link__item:nth-child(7) {
  transition-delay: 0.3s;
}
.link__list--sub .link__item:nth-child(7) {
  transition-delay: 0.6s;
}
.link__item:nth-child(8) {
  transition-delay: 0.35s;
}
.link__list--sub .link__item:nth-child(8) {
  transition-delay: 0.65s;
}
.link__item:nth-child(9) {
  transition-delay: 0.4s;
}
.link__list--sub .link__item:nth-child(9) {
  transition-delay: 0.7s;
}
.link__item:nth-child(10) {
  transition-delay: 0.45s;
}
.link__list--sub .link__item:nth-child(10) {
  transition-delay: 0.75s;
}
.link__item:nth-child(11) {
  transition-delay: 0.5s;
}
.link__list--sub .link__item:nth-child(11) {
  transition-delay: 0.8s;
}
.link.js-animate .link__item, html:not(.js-enabled) .link__item {
  opacity: 1;
  top: 0;
  left: 0;
}
@media print {
  .link__item {
    opacity: 1;
    left: 0;
    top: 0;
  }
}
.link a {
  font-size: inherit;
  display: flex;
  align-items: center;
  text-decoration: none;
  row-gap: 3px;
}
@media screen and (max-width: 319px) {
  .link a {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.link a > span {
  display: inline-block;
}
.link__name {
  flex: 1;
  font-size: inherit;
}
@media screen and (max-width: 319px) {
  .link__name {
    width: 100%;
    flex: 0 1 auto;
  }
}
.link__price {
  position: relative;
  margin-right: 0.31em;
  font-size: 1.14em;
  text-align: right;
}
.link__item--l .link__price, .link__item--s .link__price {
  min-width: 5.37em;
}
.link__price::before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0.06em;
  transform: translateY(-50%);
  display: block;
  width: 0.93em;
  height: 0.93em;
  background: center center/contain no-repeat none;
}
.link__item--l .link__price::before {
  content: "";
  background-image: url("../img/link_l.svg");
}
.link__item--s .link__price::before {
  content: "";
  background-image: url("../img/link_s.svg");
}
.link__tax {
  margin-right: 1.18em;
  font-size: 0.78em;
}
.link__btn {
  position: relative;
  width: 7.81em;
  height: 2.54em;
  font-size: 0.78em;
  letter-spacing: 0.05em;
  background-color: var(--link-bg-color);
  border: 1px solid var(--link-border-color);
  text-align: center;
  line-height: 2.36em;
  color: var(--link-text-color);
  transition: padding-right 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.link__btn::before {
  content: "";
  display: block;
  width: 1.16em;
  height: 0.36em;
  background: center center/contain no-repeat var(--link-arrow-url);
  position: absolute;
  top: 50%;
  right: 1.1em;
  opacity: 0;
  transform: translate(0, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.link a:hover .link__btn {
  padding-right: 1.1em;
  color: var(--link-text-color-hover);
  background-color: var(--link-bg-color-hover);
  border-color: var(--link-border-color-hover);
}
.link a:hover .link__btn::before {
  transform: translate(0.3em, -50%);
  opacity: 1;
}
.link__list--sub {
  position: relative;
  margin-top: 0.28em;
  padding-top: 0.85em;
  --link-text-color: #333333;
  --link-bg-color: transparent;
  --link-border-color: #333333;
  --link-text-color-hover: #fff;
  --link-bg-color-hover: #333333;
  --link-border-color-hover: #333333;
  --link-arrow-url: url("../img/link_arrow_white.svg");
}
.link__list--sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  opacity: 0;
  display: block;
  height: 1px;
  background-color: #D0D0D0;
  transition: right 1s cubic-bezier(0, 0.55, 0.45, 1) 0.27s, opacity 0.16s linear;
}
.link.js-animate .link__list--sub::before, html:not(.js-enabled) .link__list--sub::before {
  right: 0;
  opacity: 1;
}
@media print {
  .link__list--sub::before {
    right: 0;
    opacity: 1;
  }
}
.link__list--sub .link__item:last-child {
  padding-bottom: 0;
}

.band {
  margin-top: 117px;
  margin-top: clamp(117px, -1.6496750903px + 8.6859205776vw, 165.12px);
  height: 38.25vw;
  min-height: 360px;
  max-height: 734.4px;
  overflow: hidden;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .band {
    margin-top: 80px;
    height: 59.994vw;
    min-height: 0;
    max-height: none;
  }
}
.band__move {
  width: 100%;
  height: 100%;
  will-change: transform;
  backface-visibility: hidden;
}
.band__img {
  display: block;
  width: 100%;
  height: 120%;
  will-change: transform;
}
.band img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.band-sticky-wrap {
  position: relative;
}

.flex-box {
  display: flex;
}

.flex-box-reverse {
  flex-direction: row-reverse;
}

.slide-box {
  overflow: hidden;
}

/* end-block------------------ */
.end-block {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  overflow: hidden;
}

.end-block .bgi-photo {
  position: absolute;
  top: 0;
  left: 0;
}

/*banner-block-----------------------------*/
.banner-block {
  margin: min(19.76vw, 270px) auto 51px;
  position: relative;
  width: 1920px;
  max-width: 100%;
}

.banner-block a {
  display: block;
  transition: 0.6s ease-in-out;
}

.banner-block a:hover {
  background: rgba(255, 255, 255, 0.4);
}

.banner-block .c-btn01 {
  width: 36%;
  min-width: 600px;
  margin: 0 auto 1rem;
  border: 1px solid #000;
  transition: 0.3s;
  display: block;
}
.banner-block .c-btn01 img {
  width: 100%;
}

.banner-block .line {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 5% auto 0;
  background: #000;
}

.banner-block .flex-box {
  padding-left: 0;
  justify-content: space-between;
  width: 36%;
  min-width: 600px;
  margin: 4.5% auto 0;
}

.banner-block .flex-box .c-btn01 {
  width: 48%;
  min-width: 290px;
  margin: 0;
}

/* ページトップボタン---------------------------- */
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#pagetop.is-show, html:not(.js-enabled) #pagetop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media print {
  #pagetop {
    display: none !important;
  }
}

#pagetop .btn-loading {
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
  background-color: #CCC;
  border-radius: 100%;
  transition: color 0.2s;
  overflow: hidden;
}

#pagetop .btn-loading01:before,
#pagetop .btn-loading01:after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 0;
  background-color: #231815;
  pointer-events: none;
}

#pagetop .btn-loading:before {
  bottom: 0;
  left: 0;
}

#pagetop .btn-loading:after {
  top: 0;
  right: 0;
}

#pagetop:hover .btn-loading {
  color: #65A04D;
}

#pagetop:hover .btn-loading:before,
#pagetop:hover .btn-loading:after {
  height: 100%;
}

#pagetop:hover .btn-loading:before {
  transition: height 0.1s 0.1s linear;
}

#pagetop:hover .btn-loading:after {
  transition: height 0.1s linear;
}

#pagetop .btn-loading span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  background-color: #FFF;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#pagetop .btn-loading span img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* フッター--------------------------------------------- */
.footer {
  letter-spacing: 0.3em;
  position: relative;
  text-align: center;
  padding: 0 0 30px 0;
}

.footer img {
  transition: 0.3s;
}

.footer img:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.footer_sns .instagram {
  display: block;
  width: 2.34%;
  min-width: 30px;
  margin: 0 auto min(2%, 20px);
  opacity: 1;
  transition: 0.3s;
}

.f-ow {
  width: 7.96%;
  min-width: 102px;
  margin: 25px auto 0 auto;
}

.footer_copyright {
  font-family: "Helvetica", sans-serif;
  font-size: max(0.6vw, 10px);
  letter-spacing: 0.02em;
  margin: 1.71% 0 0;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .flex-box {
    flex-direction: column;
  }
  /* バナー--------------------------- */
  .banner-block {
    margin-top: 104px;
    margin-bottom: 16vw;
  }
  .banner-block .c-btn01 {
    width: 80%;
    max-width: 460px;
    min-width: auto;
  }
  .banner-block .line {
    display: none;
  }
  .banner-block .flex-box {
    flex-direction: row;
    width: 80%;
    min-width: auto;
    margin: 0 auto;
  }
  .banner-block .flex-box .c-btn01 {
    min-width: auto;
  }
  /* ページトップボタン--------------------------- */
  #pagetop {
    position: fixed;
    right: 10px;
    width: 35px;
    height: 35px;
    display: block;
    z-index: 30;
  }
  #pagetop .btn-loading {
    display: inline-flex;
    text-decoration: none;
    font-weight: 700;
    color: #111;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1 !important;
    transition: all 0.3s;
    background-color: #CCC;
    border-radius: 100%;
    transition: color 0.2s;
    overflow: hidden;
  }
  #pagetop .btn-loading01:before,
  #pagetop .btn-loading01:after {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 0;
    background-color: #231815;
    pointer-events: none;
  }
  #pagetop .btn-loading:before {
    bottom: 0;
    left: 0;
  }
  #pagetop .btn-loading:after {
    top: 0;
    right: 0;
  }
  #pagetop:hover .btn-loading {
    color: #65A04D;
  }
  #pagetop:hover .btn-loading:before,
  #pagetop:hover .btn-loading:after {
    height: 100%;
  }
  #pagetop:hover .btn-loading:before {
    transition: height 0.1s 0.1s linear;
  }
  #pagetop:hover .btn-loading:after {
    transition: height 0.1s linear;
  }
  #pagetop .btn-loading span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    background-color: #FFF;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  #pagetop .btn-loading span img {
    width: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* フッター--------------------------- */
  .footer {
    padding-bottom: 20px;
  }
  .footer_sns {
    margin: 0 auto;
  }
  .footer_sns .instagram {
    width: 2.73%;
    min-width: 35px;
  }
  .f-ow {
    margin-top: 5.86vw;
    width: 9.37%;
    min-width: 120px;
  }
  .footer_copyright {
    margin-top: 5.33vw;
  }
  .footer_copyright img {
    width: 72vw;
  }
}