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

* {
  margin: 0;
}

:root {
  --sec-color: #6E463C;
  --sec-color-bg: #F0ECEB;
  --padding-inline: clamp(90px, -0.5406498195px + 6.6281588448vw, 126.72px);
  --font-ja: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-cormorant: "Cormorant Infant", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-basker: "Baskervville", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}
@media screen and (max-width: 1365px) {
  :root {
    --padding-inline: 2.19%;
    --padding-inline: clamp(30px, -46.9565217391px + 10.0334448161vw, 90px);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --padding-inline: 5.33%;
  }
}

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

html {
  min-height: 100%;
}

body {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", 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: revert !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: none;
  --fade-duration: 1.8s;
  --fade-delay: 0s;
}
.anim-fade.js-animate, .js-animate .anim-fade {
  animation-name: keyFade;
  animation-duration: var(--fade-duration);
  animation-delay: var(--fade-delay);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  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);
  }
}
.anim-clip {
  opacity: 0;
  --clip-path: inset(0 100% 0 0);
  --clip-transform: none;
  --clip-duration: 2s;
  --clip-delay: 0s;
}
.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: 0;
    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 2.4s cubic-bezier(0.4, 0, 0.2, 1) 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-clip-blur {
  opacity: 0;
  --clip-path: inset(0 100% 0 0);
  --clip-transform: scale(1.04) translateX(-4%);
  --clip-duration: 2s;
  --clip-delay: 0s;
  --clip-filter: blur(2vw);
}
.anim-clip-blur.js-animate, .js-animate .anim-clip-blur {
  animation-name: keyClipBlur;
  animation-duration: var(--clip-duration);
  animation-delay: var(--clip-delay);
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-clip-blur {
  opacity: 1;
}
@media print {
  .anim-clip-blur {
    opacity: 1;
  }
}

@keyframes keyClipBlur {
  0% {
    opacity: 0;
    clip-path: var(--clip-path);
    transform: var(--clip-transform);
    filter: var(--clip-filter);
  }
  80% {
    opacity: 1;
  }
  99% {
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    filter: none;
  }
}
.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-flip {
  perspective: 1000px;
  --flip-rotate: rotateY(15deg);
  --flip-delay: 0s;
}
.anim-flip > * {
  opacity: 0;
  transform-origin: center center;
  backface-visibility: hidden;
}
html:not(.js-enabled) .anim-flip > * {
  opacity: 1;
}
@media print {
  .anim-flip > * {
    opacity: 1;
  }
}
.anim-flip.js-animate > *, .js-animate .anim-flip > * {
  animation: keyFlip 1.4s cubic-bezier(0.33, 1, 0.68, 1) var(--flip-delay) forwards;
}

@keyframes keyFlip {
  0% {
    opacity: 0;
    transform: var(--flip-rotate);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.anim-scale-in {
  opacity: 0;
  --scale-transform: scale(1.1);
  --scale-delay: 0s;
}
.anim-scale-in.js-animate, .js-animate .anim-scale-in {
  animation-name: keyScaleIn;
  animation-duration: 1.5s;
  animation-delay: var(--scale-delay);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  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);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes keyPaper {
  0% {
    opacity: 0;
    transform: translate(-1%, -2%) rotate(10deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@keyframes keyBorder {
  0% {
    opacity: 0;
    transform: translateY(-20px) scaleY(0);
  }
  40% {
    opacity: 1;
  }
  75% {
    opacity: 1;
    transform: translateY(0px) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scaleY(1);
  }
}
.mv__lead-01,
.mv__lead-02 {
  opacity: 0;
  transform-origin: left bottom;
  --rotate-start: rotate(-3deg);
  --rotate-end: rotate(0deg);
}
@media screen and (max-width: 767px) {
  .mv__lead-01,
  .mv__lead-02 {
    --rotate-start: rotate(7deg);
    --rotate-end: rotate(10deg);
  }
}
.js-animate .mv__lead-01,
.js-animate .mv__lead-02 {
  animation-name: keyMvLead;
  animation-duration: 2s;
  animation-delay: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .mv__lead-01,
html:not(.js-enabled) .mv__lead-02 {
  opacity: 1;
}
@media print {
  .mv__lead-01,
  .mv__lead-02 {
    opacity: 1;
  }
}

.js-animate .mv__lead-02 {
  animation-delay: 1.3s;
}

@keyframes keyMvLead {
  0% {
    opacity: 0;
    transform: translate(-3%, -6%) var(--rotate-start) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) var(--rotate-end) scale(1);
  }
}
.mv__ttl-01 img,
.mv__ttl-02 img {
  opacity: 0;
  will-change: filter, opacity;
}
.js-animate .mv__ttl-01 img,
.js-animate .mv__ttl-02 img {
  animation-name: keyMvTtl;
  animation-duration: 2s;
  animation-delay: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .mv__ttl-01 img,
html:not(.js-enabled) .mv__ttl-02 img {
  opacity: 1;
}
@media print {
  .mv__ttl-01 img,
  .mv__ttl-02 img {
    opacity: 1;
  }
}

.js-animate .mv__ttl-02 img {
  animation-delay: 1.8s;
}

@keyframes keyMvTtl {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  99% {
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
.mv__ttl-02::before {
  opacity: 0;
  --clip-path: inset(0 100% 0 0);
  --clip-transform: none;
  --clip-duration: 2s;
  --clip-delay: 1.7s;
}
.js-animate .mv__ttl-02::before {
  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) .mv__ttl-02::before {
  opacity: 1;
}
@media print {
  .mv__ttl-02::before {
    opacity: 1;
  }
}

.mv__main {
  position: relative;
  overflow: hidden;
}
.mv__main img {
  width: 100%;
}
.mv .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.mv__photo {
  overflow: hidden;
}
.mv__photo--01 .anim-clip {
  --clip-path: inset(0 0 0 100%);
  --clip-transform: translateX(5%);
}
@media screen and (max-width: 767px) {
  .mv__photo--01 .anim-clip {
    --clip-path: inset(0 100% 0 0);
    --clip-transform: translateX(-5%);
  }
}
.mv__photo--02 .anim-clip {
  --clip-transform: translateX(-5%);
}
.mv__txt-area {
  position: absolute;
  top: 10.17vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv__txt-area {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .mv__txt-area::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64vw;
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0.4) 40%);
    opacity: 0;
    animation: keyFade 2s linear 2s forwards;
  }
}
.mv__lead span {
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__lead span {
    transform: rotate(10deg);
  }
}
.mv__lead-01 {
  width: 29.57vw;
  margin-left: 1.17vw;
}
@media screen and (max-width: 767px) {
  .mv__lead-01 {
    margin-inline: auto 17.86vw;
    width: 53.86vw;
  }
}
.mv__lead-02 {
  width: 29.13vw;
  margin-top: 1.31vw;
  margin-left: 9.51vw;
}
@media screen and (max-width: 767px) {
  .mv__lead-02 {
    margin: 4.8vw 5.06vw 0 auto;
    width: 53.06vw;
  }
}
.mv__ttl span {
  position: relative;
  display: block;
}
.mv__ttl-01 {
  width: 19.76vw;
  margin-top: 4.09vw;
  margin-left: 9vw;
}
@media screen and (max-width: 767px) {
  .mv__ttl-01 {
    width: 30.13vw;
    margin-top: 0.53vw;
    margin-left: 4.8vw;
  }
}
.mv__ttl-02 {
  position: relative;
  width: 41.21vw;
  margin-top: 2.92vw;
  margin-left: -0.3vw;
}
@media screen and (max-width: 767px) {
  .mv__ttl-02 {
    width: 88.8vw;
    margin: 3.2vw auto 0;
    padding-bottom: 22.66vw;
  }
}
.mv__ttl-02::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  margin-top: 9.59%;
  left: -1.78%;
  background: center center/contain no-repeat url("../img/mv_txt_line.svg");
  width: 103.55%;
  padding-bottom: 6.21%;
}
.mv__ttl-02 img {
  position: relative;
}
.mv__logo {
  position: absolute;
  left: 50%;
  bottom: 4.9vw;
  transform: translateX(-50%);
  width: 6.29vw;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv__logo {
    left: 4vw;
    bottom: auto;
    top: 2.93vw;
    transform: none;
    width: 15.33vw;
  }
}
.mv__logo .anim-fade {
  --fade-delay: 2s;
}
@media screen and (max-width: 767px) {
  .mv__logo .anim-fade {
    --fade-delay: 0.5s;
  }
}
.mv__text {
  margin-top: 80px;
  margin-top: clamp(80px, -2.0586281588px + 6.0072202166vw, 113.28px);
  font-size: 1.25rem;
  font-size: clamp(20px, 12.6028880866px + 0.5415162455vw, 23px);
  line-height: 3;
  text-align: center;
}
@media screen and (max-width: 1365px) {
  .mv__text {
    font-size: clamp(17px, 13.152173913px + 0.5016722408vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .mv__text {
    margin-top: 55px;
    font-size: clamp(16px, 15.0433673469px + 0.2551020408vw, 17px);
    line-height: 2.5;
  }
}
@media screen and (max-width: 374px) {
  .mv__text {
    font-size: clamp(13.76px, 0.4859259259px + 4.1481481481vw, 16px);
  }
}
.mv__text p {
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.index {
  padding-inline: var(--padding-inline);
}
.index__list {
  margin: 82px auto 0;
  margin: clamp(82px, 0.1386281588px + 5.9927797834vw, 115.2px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 760px;
  width: clamp(760px, 1.7467148014px + 55.5090252708vw, 1067.52px);
  max-width: 100%;
  gap: 0 5.26%;
  padding-left: 0;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .index__list {
    margin-top: 57px;
    width: 500px;
  }
}
.index__item {
  font-size: 2rem;
  font-size: clamp(32px, 2.0170397112px + 2.1949458484vw, 44.16px);
  line-height: 1;
  font-family: var(--font-cormorant);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index__item {
    font-size: 1.5rem;
    font-size: clamp(24px, 20.1734693878px + 1.0204081633vw, 28px);
  }
}
@media screen and (max-width: 374px) {
  .index__item {
    font-size: clamp(20.48px, -0.3792592593px + 6.5185185185vw, 24px);
  }
}
.index__item:nth-child(2) {
  --sec-color: #6198BA;
}
.index__item a {
  text-decoration: none;
  color: var(--sec-color);
}
@media screen and (max-width: 767px) {
  .index__photo {
    aspect-ratio: 158/236;
  }
}
.index__photo picture {
  --flip-rotate: rotateY(12deg);
}
@media screen and (max-width: 767px) {
  .index__photo picture {
    height: 100%;
    --flip-rotate: rotateY(18deg);
  }
}
.index__item:last-child .index__photo picture {
  --flip-delay: 0.15s;
}
.index__photo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .index__photo img {
    height: 100%;
    object-fit: cover;
  }
}
.index__ttl-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .index__ttl-area {
    flex-direction: column;
    align-items: flex-start;
  }
}
.index__item:last-child .index__ttl-area {
  --fade-delay: 0.15s;
}
.index__num-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .index__num-area {
    font-size: clamp(26px, 16.1371841155px + 0.7220216606vw, 30px);
  }
}
.index__num-area::after {
  content: "";
  display: block;
  border-left: 1px solid #CBCBCB;
  width: 1px;
  height: 0.75em;
  margin-inline: 0.43em;
}
@media screen and (max-width: 767px) {
  .index__num-area::after {
    height: 0.92em;
  }
}
.index__part img {
  width: 1.28em;
}
@media screen and (max-width: 767px) {
  .index__part img {
    width: 1.3em;
  }
}
.index__num {
  margin-left: 0.34em;
}
@media screen and (max-width: 767px) {
  .index__ttl {
    margin-top: 0.15em;
  }
}

.sec {
  margin-top: 158px;
  margin-top: clamp(158px, -1.5803610108px + 11.6823104693vw, 222.72px);
  scroll-margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sec {
    margin-top: clamp(77px, 0.2445790816px + 20.4681122449vw, 157.235px);
  }
}

.sec--effortless {
  margin-top: 202px;
  margin-top: clamp(202px, -0.5822382671px + 14.8303249097vw, 284.16px);
  --sec-color: #6198BA;
  --sec-color-bg: #EFF5F8;
}
@media screen and (max-width: 767px) {
  .sec--effortless {
    margin-top: 102px;
  }
}

.sec-header {
  text-align: center;
}
.sec-header::after {
  content: "";
  display: block;
  width: 1px;
  height: 120px;
  height: clamp(120px, -0.720866426px + 8.8375451264vw, 168.96px);
  border-left: 1px solid #CBCBCB;
  margin: 70px auto 0;
  margin-top: clamp(70px, 1.1575451264px + 5.0397111913vw, 97.92px);
  animation: keyBorder 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  transform-origin: center top;
}
@media screen and (max-width: 767px) {
  .sec-header::after {
    height: 80px;
    margin-top: 34px;
  }
}
.sec-header__num-area {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 3.12rem;
  font-size: clamp(50px, -1.8784115523px + 3.797833935vw, 71.04px);
  gap: 0 0.32em;
}
.sec-header__part {
  --fade-transform: translateX(-4px);
}
.sec-header__part img {
  width: 0.96em;
}
.sec-header__num {
  font-size: inherit;
  font-family: var(--font-cormorant);
  color: var(--sec-color);
}
.sec-header__lead {
  margin-top: 0.66em;
  font-size: 1.87rem;
  font-size: clamp(30px, -0.1802166065px + 2.2093862816vw, 42.24px);
  line-height: 2;
  --clip-path: inset(0 0 0 0);
  --clip-transform: none;
  --clip-duration: 2.4s;
  --clip-filter: blur(10px);
}
@media screen and (max-width: 767px) {
  .sec-header__lead {
    margin-top: 1.11em;
    font-size: 1.12rem;
    font-size: clamp(18px, 10.3469387755px + 2.0408163265vw, 26px);
  }
}
.sec-header__ttl {
  margin-bottom: 0.26em;
  font-size: 3.75rem;
  font-size: clamp(60px, -0.360433213px + 4.4187725632vw, 84.48px);
  font-family: var(--font-cormorant);
  color: var(--sec-color);
  font-weight: normal;
  line-height: 1.2;
  --scale-transform: scale(1.04);
  --scale-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .sec-header__ttl {
    margin-block: 0.03em 0.01em;
    font-size: 3.5rem;
    font-size: clamp(56px, 52.1734693878px + 1.0204081633vw, 60px);
  }
}
@media screen and (max-width: 374px) {
  .sec-header__ttl {
    font-size: clamp(48px, 0.5925925926px + 14.8148148148vw, 56px);
  }
}
.sec-header__desc {
  font-size: 1.25rem;
  font-size: clamp(20px, -1.6981949458px + 1.5884476534vw, 28.8px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .sec-header__desc {
    font-size: 0.93rem;
    font-size: clamp(15px, 12.1301020408px + 0.7653061224vw, 18px);
    line-height: 2;
  }
}

.item {
  margin: clamp(120px, -0.720866426px + 8.8375451264vw, 168.96px) auto 0;
  display: flex;
  justify-content: space-between;
  padding-inline: var(--padding-inline);
  width: 1920px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .item {
    margin-top: clamp(67px, -0.2445790816px + 17.9318877551vw, 137.293px);
    padding-inline: 0;
    flex-direction: column;
  }
}
.sec-header + .item {
  margin-top: clamp(81px, 1.4070758123px + 5.8267148014vw, 113.28px);
}
@media screen and (max-width: 767px) {
  .sec-header + .item {
    margin-top: 71px;
  }
}
@media screen and (max-width: 767px) {
  .item__ttl-area, .item__desc,
  .item .link {
    padding-inline: var(--padding-inline);
  }
}
.item__photo-area {
  width: 48.9%;
}
.item__photo-main, .item__photo-sub {
  display: block;
}
@media screen and (max-width: 767px) {
  .item__photo-main, .item__photo-sub {
    overflow: hidden;
  }
}
.item__photo-main .swiper-slide,
.item__photo-main picture,
.item__photo-main img, .item__photo-sub .swiper-slide,
.item__photo-sub picture,
.item__photo-sub img {
  width: 100%;
}
.item__photo-main {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .item__photo-main {
    width: 100%;
  }
}
.item__photo-main .swiper-slide:not(:first-child) {
  display: none;
}
@media screen and (max-width: 767px) {
  .item__photo-main .swiper-slide:not(:first-child) {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .item__photo-main .anim-clip-blur {
    --clip-filter: blur(3vw);
  }
}
.item__photo-sub {
  margin-top: 14.16%;
}
@media screen and (max-width: 767px) {
  .item__photo-sub {
    display: none;
  }
}
.item__txt-area {
  width: 40.47%;
}
.item__num-area {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(50px, -1.8784115523px + 3.797833935vw, 71.04px);
  line-height: 1;
  height: 1.44em;
  gap: 0 0.2em;
  width: 1.76em;
}
@media screen and (max-width: 1365px) {
  .item__num-area {
    font-size: clamp(44px, 36.3043478261px + 1.0033444816vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .item__num-area {
    font-size: 2.37rem;
    font-size: clamp(38px, 32.2602040816px + 1.5306122449vw, 44px);
    width: 2.2em;
  }
}
.item__num-area::before {
  content: "";
  display: block;
  width: 1.44em;
  height: 1.44em;
  background: var(--sec-color-bg);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
}
html:not(.js-enabled) .item__num-area::before {
  opacity: 1 !important;
}
@media print {
  .item__num-area::before {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 767px) {
  .item__num-area::before {
    width: 1.89em;
    height: 1.89em;
  }
}
.item__num-area.js-animate::before {
  animation-name: keyPaper;
  animation-duration: 1.7s;
  animation-delay: 0.5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
.item__style {
  margin-top: 0.48em;
  position: relative;
  z-index: 2;
  --fade-transform: translateX(-8px);
}
@media screen and (max-width: 767px) {
  .item__style {
    margin-top: 0.78em;
  }
}
.item__style img {
  width: 0.68em;
}
@media screen and (max-width: 767px) {
  .item__style img {
    width: 0.81em;
  }
}
.item__num {
  margin-top: 0.3em;
  position: relative;
  z-index: 2;
  font-family: var(--font-cormorant);
  color: var(--sec-color);
  --scale-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .item__num {
    margin-top: 0.6em;
  }
}
.item__ttl span {
  display: block;
  position: relative;
  margin-block: 1.93em 8.75%;
  padding-bottom: 1.03em;
  font-size: 1.87rem;
  font-size: clamp(30px, -0.1802166065px + 2.2093862816vw, 42.24px);
  line-height: 1.433;
  font-weight: normal;
  border-bottom: 1px solid var(--sec-color);
  white-space: nowrap;
}
@media screen and (max-width: 1365px) {
  .item__ttl span {
    font-size: clamp(22px, 11.7391304348px + 1.3377926421vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .item__ttl span {
    padding-bottom: 1.42em;
    margin-block: 1.84em;
    font-size: clamp(26px, 19.3035714286px + 1.7857142857vw, 33px);
    line-height: 1.385;
  }
}
@media screen and (max-width: 374px) {
  .item__ttl span {
    white-space: normal;
    font-size: clamp(22.4px, 1.0666666667px + 6.6666666667vw, 26px);
  }
}
.item__ttl span::before, .item__ttl span::after {
  content: "";
  display: block;
  position: absolute;
  left: 9.79%;
}
@media screen and (max-width: 767px) {
  .item__ttl span::before, .item__ttl span::after {
    left: 16.11%;
  }
}
.item__ttl span::before {
  width: 4.16%;
  height: 3px;
  background: #fff;
  bottom: -1px;
}
.item__ttl span::after {
  top: 100%;
  width: 6.25%;
  transform-origin: left top;
  transform: rotate(45deg);
  border-bottom: 1px solid var(--sec-color);
}
.item__desc {
  font-size: 1.06rem;
  font-size: clamp(17px, 2.1071480144px + 1.0902527076vw, 23.04px);
  line-height: 2.529;
}
@media screen and (max-width: 1365px) {
  .item__desc {
    font-size: clamp(14px, 10.152173913px + 0.5016722408vw, 17px);
  }
}
@media screen and (max-width: 767px) {
  .item__desc {
    margin-top: 30px;
    line-height: 2.214;
    font-size: clamp(14px, 11.1301020408px + 0.7653061224vw, 17px);
  }
}
.item .link {
  width: 400px;
  width: clamp(400px, -0.8248375451px + 29.3429602888vw, 562.56px);
  max-width: 100%;
  margin: 8.27% auto 0;
  position: relative;
  right: 1.72%;
}
@media screen and (max-width: 1365px) {
  .item .link {
    right: clamp(0px, -12.8260869565px + 1.6722408027vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .item .link {
    margin-top: 31px !important;
    width: 480px;
  }
}
@supports (display: contents) {
  @media screen and (max-width: 767px) {
    .item__photo-area, .item__txt-area {
      display: contents !important;
    }
    .item__ttl-area {
      order: 1;
    }
    .item__photo-main {
      order: 2;
    }
    .item__desc {
      order: 3;
    }
    .item .link {
      order: 4;
    }
  }
}

.item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .item--reverse {
    flex-direction: column;
  }
}
.item--reverse .item__photo-main .anim-clip-blur {
  --clip-path: inset(0 0 0 100%);
  --clip-transform: scale(1.04) translateX(4%);
}

.item--center {
  align-items: stretch;
}
.item--center .item__txt-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item--center .link {
  margin-top: 13.2%;
  width: 480px;
  max-width: 100%;
}

.link {
  --link-text-color: #333;
  --link-bg-color: var(--sec-color-bg);
  --link-border-color: var(--sec-color-bg);
  --link-text-color-hover: #333;
  --link-bg-color-hover: var(--sec-color-bg);
  --link-border-color-hover: var(--sec-color-bg);
  --link-arrow-url: url("../img/link_arrow_black.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, 4.1371841155px + 0.7220216606vw, 18px);
}
@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.57em;
  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;
  letter-spacing: 0.086em;
}
@media screen and (max-width: 319px) {
  .link__name {
    width: 100%;
    flex: 0 1 auto;
  }
}
.link__price {
  position: relative;
  margin-right: 0.57em;
  font-size: inherit;
  text-align: right;
  letter-spacing: 0.05em;
}
.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: 1.07em;
  height: 1.07em;
  background: center center/contain no-repeat none;
}
.link__item--l .link__price::before {
  content: "";
  background-image: url("../img/link_l.svg");
}
.link__tax {
  margin-top: 0.62em;
  margin-right: 1.37em;
  font-size: max(0.5rem, 0.57em);
}
.link__btn {
  position: relative;
  width: 6em;
  height: 2.4em;
  font-size: max(0.62rem, 0.71em);
  letter-spacing: 0.05em;
  background-color: var(--link-bg-color);
  border: 1px solid var(--link-border-color);
  text-align: center;
  line-height: 2.2em;
  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: 0.87em;
  height: 100%;
  background: center center/contain no-repeat var(--link-arrow-url);
  position: absolute;
  top: 0;
  right: 0.5em;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.link a:hover .link__btn {
  padding-right: 0.8em;
  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: translateX(0.3em);
  opacity: 1;
}
.link__list--sub {
  position: relative;
  margin-top: 0.92em;
  padding-top: 1.42em;
  --link-bg-color: transparent;
  --link-border-color: #EAEAEA;
  --link-bg-color-hover: transparent;
  --link-border-color-hover: #EAEAEA;
}
.link__list--sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  opacity: 0;
  display: block;
  height: 1px;
  background-color: #EAEAEA;
  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;
}

/* 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 {
  display: flex;
  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;
  }
}