@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; /* iphoneで文字サイズが変わる対策 */
  -ms-text-size-adjust: 100%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px; /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ここからWordpress用初期設定 */
/* 本文中の画像 */
article img {
  border: none;
  max-width: 100%;
  height: auto;
}

/*-----------------------

         COMMON

-----------------------*/
/* リセット */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover,
a:focus {
  opacity: 0.8;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.text-c {
  text-align: center;
}

.text-l {
  text-align: left;
}

.text-r {
  text-align: right;
}

.text-j {
  text-align: justify;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input,
button,
textarea,
select,
.entry input[type=url],
input[type=email],
.entry input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

:root {
  --mainColor: #f38594;
  --baseColor: #1a1311;
  --colorW: #fff;
  --subColor: #e5e5e5;
  --accentColor: #f2f2f2;
  --time: "Times New Roman", serif;
}

html {
  font-size: 0.5208333333vw;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  color: var(--baseColor);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.time {
  font-family: "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.og {
  color: var(--mainColor);
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

main {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.o-card {
  display: grid;
}
.o-card--2wrap {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.o-card--3wrap {
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 559px) {
  .o-card--3wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.o-card--4wrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 559px) {
  .o-card--4wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.o-flex {
  display: flex;
  gap: 6rem;
}
@media only screen and (max-width: 559px) {
  .o-flex {
    flex-direction: column;
    gap: 3rem;
  }
}
.o-flex--c {
  justify-content: center;
}
.o-flex--b {
  justify-content: space-between;
}
.o-flex--e {
  justify-content: flex-end;
}
@media only screen and (max-width: 559px) {
  .o-flex--rev {
    flex-direction: column-reverse;
  }
}
.o-flex__item {
  width: calc((100% - 6rem) / 2);
}
@media only screen and (max-width: 559px) {
  .o-flex__item {
    width: 100%;
  }
}
.o-flex__item--1 {
  width: calc((100% - 6rem) / 3);
}
.o-flex__item--2 {
  width: calc((100% - 6rem) / 3 * 2);
}

.hamburger {
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.hamburger span {
  display: block;
  height: 2px;
  background-color: var(--mainColor);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  width: 4rem;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger span:first-child {
  top: 20px;
}

.hamburger span:last-child {
  bottom: 20px;
}

.hamburger.active span {
  left: 47%;
}

.hamburger.active span:first-child {
  transform: rotate(30deg) translateX(-50%);
  top: 35px;
}

.hamburger.active span:last-child {
  transform: rotate(-30deg) translateX(-50%);
  top: 15px;
}

.nav-menu {
  box-sizing: border-box;
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem 3rem;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.js-nav .l-hdr__navlist {
  flex-direction: column;
  gap: 5rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.js-nav .l-hdr__navlink {
  gap: 1rem;
}

.o-modal__wrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background: rgba(255, 255, 255, 0.96);
  transition: opacity 0.5s, visibility 0.5s allow-discrete;
  padding-bottom: 2.8rem;
}
.o-modal__wrapper .o-modal__inner {
  background: rgba(255, 255, 255, 0.96);
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 5.5rem 0 2.8rem;
}
@media only screen and (max-width: 768px) {
  .o-modal__wrapper .o-modal__inner {
    padding: 5.2rem 0 4.8rem;
  }
}
.o-modal__wrapper .o-modal__inner .o-modal__close {
  position: absolute;
  top: 5.6rem;
  right: 5.6rem;
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .o-modal__wrapper .o-modal__inner .o-modal__close {
    width: 2.4rem;
    height: 2.4rem;
    top: 1.6rem;
    right: 1.6rem;
  }
}

html.modal-open {
  overflow: hidden;
  height: 100%;
}
html.modal-open::-webkit-scrollbar {
  display: none;
}

.o-modal__flex {
  display: flex;
  align-items: center;
  gap: 9.6rem;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .o-modal__flex {
    flex-direction: column;
    gap: 5.9rem;
  }
}
.o-modal__link {
  cursor: pointer;
  position: relative;
  width: fit-content;
  display: block;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .o-modal .detail__item {
    display: block;
  }
}

.faq {
  margin-bottom: 10.5rem;
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  .faq {
    margin-bottom: 6rem;
  }
}
.faq::before {
  content: "";
  background: url(../images/hana.webp) no-repeat center center/contain;
  width: 12.2rem;
  height: 13.2rem;
  position: absolute;
  top: 24.3rem;
  right: 5.2rem;
}
@media only screen and (max-width: 768px) {
  .faq::before {
    display: none;
  }
}
.faq::after {
  content: "";
  background: url(../images/taiya.webp) no-repeat center center/contain;
  width: 35.2rem;
  height: 9.6rem;
  position: absolute;
  top: 56.5rem;
  left: 4.3rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .faq::after {
    display: none;
  }
}
.faq__list {
  margin-top: -0.9rem;
}
.faq__listitem:not(:last-child) {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .faq__listitem:not(:last-child) {
    margin-bottom: 2.1rem;
  }
}
.faq__question {
  background-color: var(--mainColor);
  color: var(--colorW);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 1.6rem 5rem 1.6rem 3.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  line-height: 180%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .faq__question {
    font-size: 1.6rem;
    padding: 1rem 4rem 1rem 2rem;
  }
}
.faq__question span {
  padding-right: 1rem;
  font-weight: 500;
}
.faq__question::after {
  content: "";
  background: url(../images/arrow-d.webp) no-repeat center center/contain;
  width: 1.8rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .faq__question::after {
    right: 1.2rem;
  }
}
.faq details[open] .faq__question::after {
  content: "";
  background: url(../images/arrow-u.webp) no-repeat center center/contain;
}
.faq__answer {
  margin-top: 0.5rem;
  background-color: var(--colorW);
  padding: 2.4rem 3.2rem;
  border-radius: 0.5rem;
  line-height: 180%;
}
.faq__text {
  display: flex;
  font-weight: 500;
}
.faq__text span {
  padding-right: 1rem;
  font-weight: 500;
}
.faq .wave {
  transform: rotate(180deg);
  position: absolute;
  top: -4rem;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .faq .wave {
    transform: inherit;
  }
}

.slider__wrap {
  width: 80.8rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .slider__wrap {
    width: 100%;
    padding-inline: 0.8rem;
  }
}
.slider__arrow {
  width: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .slider__arrow {
    width: 1.6rem;
    position: relative;
    z-index: 100;
  }
}

.swiper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .swiper {
    gap: 0.3rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: fit-content;
  left: inherit;
  right: 7rem;
  transform: inherit;
  bottom: -2.7rem;
  display: flex;
  gap: 1.6rem;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    gap: 1rem;
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  width: 3.2rem;
  height: 3.2em;
  left: inherit;
  right: inherit;
}
@media only screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 1.6rem;
    height: auto;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-wrapper {
  width: 67rem;
}
@media only screen and (max-width: 768px) {
  .swiper-wrapper {
    width: 32rem;
  }
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: var(--baseColor);
  opacity: 1;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.swiper-pagination-bullet-active {
  position: relative;
}
.swiper-pagination-bullet-active::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--colorW);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination-bullet-active::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-slide img {
  width: 67rem;
  height: 97rem;
}
@media only screen and (max-width: 768px) {
  .swiper-slide img {
    width: 32rem;
    height: 46.3rem;
  }
}

.fadeup {
  opacity: 0;
  position: relative;
  transform: translateY(2.5rem);
  transition: all 0.8s ease-out;
}

.fadeup.on {
  opacity: 1;
  transform: translateY(0);
}

.faderight {
  opacity: 0;
  position: relative;
  transform: translateX(-3.5rem);
  transition: all 0.8s ease-out;
}

.faderight.on {
  opacity: 1;
  transform: translateX(0);
}

.line2 {
  display: block;
}

.deco-img,
.deco-text {
  opacity: 0;
  transform: translateX(-20px);
}

.deco-img {
  width: 2.4rem;
  height: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .deco-img {
    width: 1.4rem;
    height: 2.5rem;
  }
}
.deco-img:first-child {
  left: -1rem;
  top: -1rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .deco-img:first-child {
    left: 0.8rem;
  }
}
.deco-img:last-child {
  top: 2rem;
  right: 0.4rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .deco-img:last-child {
    top: 1rem;
  }
}

.l-ftr {
  padding: 16rem 0 9rem;
}
@media only screen and (max-width: 768px) {
  .l-ftr {
    padding: 8rem 0 1rem;
  }
}
.l-ftr__wrap {
  width: 80rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .l-ftr__wrap {
    width: 32rem;
  }
}
.l-ftr__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.8rem;
  padding-bottom: 4.8rem;
  border-bottom: 1px solid;
}
@media only screen and (max-width: 559px) {
  .l-ftr__list {
    gap: 2.4rem;
    margin-bottom: 2.8rem;
    padding-bottom: 2.8rem;
  }
}
.l-ftr__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60rem;
  height: 8rem;
  font-size: 2rem;
  background: #f6f3f0;
  border: 1px solid;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-ftr__link {
    width: 28rem;
    font-size: 1.4rem;
    height: 6.4rem;
  }
}
.l-ftr__link::after {
  content: "";
  background: url(../images/next.webp) no-repeat center center/contain;
  width: 1.2rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .l-ftr__link::after {
    width: 0.7rem;
    height: 1.4rem;
    right: 1.5rem;
  }
}
.l-ftr__link.time {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .l-ftr__link.time {
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    line-height: 2;
  }
}
@media only screen and (max-width: 768px) {
  .l-ftr__link--large {
    height: 7.6rem;
  }
}
.l-ftr__link span {
  color: var(--mainColor);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .l-ftr__link span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-ftr__banner img {
    width: 28rem;
    height: auto;
  }
}
.l-ftr__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4.8rem;
}
@media only screen and (max-width: 559px) {
  .l-ftr__sns {
    gap: 2.3rem;
    margin-bottom: 3rem;
  }
}
.l-ftr__snsitem {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid #b9b9b9;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-ftr__snsitem {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.l-ftr__snsimg--01 {
  width: 3.2rem;
  height: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .l-ftr__snsimg--01 {
    width: 1.9rem;
    height: 1.9rem;
  }
}
.l-ftr__snsimg--02 {
  width: 3.3rem;
  height: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .l-ftr__snsimg--02 {
    width: 2rem;
    height: 1.9rem;
  }
}
.l-ftr__logo {
  margin-bottom: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-ftr__logo {
    margin-bottom: 1.1rem;
  }
}
.l-ftr__logoimg {
  width: 16.9rem;
  height: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .l-ftr__logoimg {
    width: 10.1rem;
    height: 2.8rem;
  }
}
.l-ftr__copy small {
  font-size: 1rem;
  font-family: var(--time);
  display: block;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-ftr__copy small {
    font-size: 0.8rem;
  }
}

.hero__inner {
  position: relative;
}
.hero__ttlarea {
  position: absolute;
  left: 12.6rem;
  top: 28.5%;
}
@media only screen and (max-width: 768px) {
  .hero__ttlarea {
    width: 100%;
    top: inherit;
    left: 0;
    bottom: 0;
    --after-opacity: 0;
  }
  .hero__ttlarea::after {
    content: "";
    background: #e8e1d9;
    width: 100%;
    height: 20.7rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    opacity: var(--after-opacity);
    transition: opacity 0.6s ease;
  }
}
.hero__text {
  position: absolute;
  left: 38rem;
  bottom: 12.3rem;
  will-change: clip-path;
}
@media only screen and (max-width: 768px) {
  .hero__text {
    bottom: 39%;
    left: 3rem;
    width: 100%;
  }
}
.hero__text img {
  width: 63.5rem;
  height: 21.7rem;
}
@media only screen and (max-width: 768px) {
  .hero__text img {
    width: 31.8rem;
    height: 10.9rem;
  }
}
.hero__ttl {
  text-align: center;
  margin-bottom: 3.7rem;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .hero__ttl {
    z-index: 100;
    margin-bottom: 0;
  }
}
.hero__ttl .decoration--01 {
  font-size: 5.2rem;
  margin-bottom: 6rem;
  display: block;
  position: relative;
  --marker-scale: 0; /* 初期値は0 */
}
@media only screen and (max-width: 768px) {
  .hero__ttl .decoration--01 {
    width: fit-content;
    margin-inline: auto;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.hero__ttl .decoration--01::before {
  content: "";
  width: 100%;
  height: 3rem;
  background: #ffe3e8;
  position: absolute;
  bottom: -1rem;
  transform: translateX(-50%);
  z-index: -1;
  transform: scaleX(var(--marker-scale));
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .hero__ttl .decoration--01::before {
    height: 1rem;
    background-color: var(--colorW);
    bottom: -0.5rem;
  }
}
.hero__ttl .decoration--02 {
  font-size: 4.8rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 559px) {
  .hero__ttl .decoration--02 {
    font-size: 1.7rem;
    margin-bottom: 0;
  }
}
.hero__ttl .decoration--03 {
  color: var(--mainColor);
  font-size: 7.8rem;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .hero__ttl .decoration--03 {
    font-size: 2.8rem;
    margin-bottom: 0.9rem;
  }
}
.hero__ttl .decoration--04 {
  font-size: 7.2rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .hero__ttl .decoration--04 {
    font-size: 2.5rem;
  }
}
.hero__ttl .decoration--05 {
  font-size: 7.8rem;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .hero__ttl .decoration--05 {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 1.3rem;
  }
}
.hero__ttlen {
  text-align: center;
  font-family: var(--time);
  font-size: 2rem;
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 768px) {
  .hero__ttlen {
    font-size: 0.7rem;
    z-index: 100;
    position: relative;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .hero__mv img {
    width: 37.5rem;
    height: auto;
    display: block;
  }
}

.catch {
  padding: 15.8rem 0 17rem;
}
@media only screen and (max-width: 768px) {
  .catch {
    padding: 4rem 0 8.8rem;
  }
}
.catch__text {
  text-align: center;
  font-size: 2.2rem;
  line-height: 2.9090909091;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .catch__text {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

.style {
  padding-bottom: 17.5rem;
}
@media only screen and (max-width: 768px) {
  .style {
    padding-bottom: 7.8rem;
  }
}
.style__ttl {
  text-align: center;
  font-size: 5.6rem;
  font-weight: 400;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .style__ttl {
    margin-bottom: 2.5rem;
  }
}
.style__ttl .decoration--01 {
  font-size: 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .style__ttl .decoration--01 {
    font-size: 1.8rem;
  }
}
.style__ttl .decoration--02 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -3.5rem;
  opacity: 0;
  transform: translateX(-20px);
}
@media only screen and (max-width: 768px) {
  .style__ttl .decoration--02 {
    font-size: 3.3rem;
  }
}
.style__ttl .decoration--03 {
  font-size: 14rem;
  font-weight: 400;
  color: var(--mainColor);
  font-family: var(--time);
  padding-inline: 2rem 3rem;
}
@media only screen and (max-width: 768px) {
  .style__ttl .decoration--03 {
    font-size: 8.4rem;
    padding-inline: 1.5rem 1.5rem;
  }
}
.style__ttl .decoration--04 {
  font-family: var(--time);
}
@media only screen and (max-width: 768px) {
  .style__ttl .decoration--04 {
    font-size: 3.3rem;
  }
}
.style__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8rem;
  justify-items: center;
  width: 128.5rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .style__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 0rem;
    justify-content: center;
  }
}
.style__item {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .style__item {
    width: 12rem;
    text-align: center;
  }
}
.style__number {
  color: var(--mainColor);
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: var(--time);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .style__number {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
  }
}
.style__number span {
  font-size: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .style__number span {
    font-size: 2.4rem;
  }
}
.style__itemttl {
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .style__itemttl {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
}
.style__photo {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}
.style__photo--01 {
  width: 18.1rem;
  height: 27.7rem;
}
.style__photo--02 {
  width: 17.2rem;
  height: 27.5rem;
}
.style__photo--03 {
  width: 18.5rem;
  height: 27.2rem;
}
.style__photo--04 {
  width: 14.1rem;
  height: 27.7rem;
}
.style__photo--05 {
  width: 16.5rem;
  height: 27.7rem;
}
@media only screen and (max-width: 768px) {
  .style__photo {
    margin-bottom: 1.6rem;
  }
  .style__photo--01 {
    width: 9rem;
    height: 13.8rem;
  }
  .style__photo--02 {
    width: 8.6rem;
    height: 13.7rem;
  }
  .style__photo--03 {
    width: 9.2rem;
    height: 13.6rem;
  }
  .style__photo--04 {
    width: 7.5rem;
    height: 13.8rem;
  }
  .style__photo--05 {
    width: 8.2rem;
    height: 13.8rem;
  }
}
.style__arrow {
  display: block;
  margin-inline: auto;
}

.look {
  background: #f5f5f5;
  padding: 11.3rem 0 12.1rem;
  position: relative;
  margin-bottom: 20rem;
}
@media only screen and (max-width: 768px) {
  .look {
    padding: 0;
    margin-bottom: 6.4rem;
  }
}
.look::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 6.5rem;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 768px) {
  .look::before {
    display: none;
  }
}
.look__catch {
  position: absolute;
  top: 50%;
  left: -5.7%;
  transform: translateY(-50%) rotate(270deg);
}
@media only screen and (max-width: 768px) {
  .look__catch {
    display: none;
  }
}
.look__catch span {
  background: #f5f5f5;
  padding: 0 3.6rem;
  line-height: 1;
  font-size: 3rem;
  font-family: var(--time);
  font-weight: 400;
  color: var(--mainColor);
}
@media only screen and (max-width: 768px) {
  .look__inner {
    height: 68rem;
  }
}
.look__circle {
  width: 104.6rem;
  height: 104.6rem;
  background-color: var(--colorW);
  border-radius: 50%;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .look__circle {
    width: 32rem;
    height: 32rem;
    top: 24.5%;
  }
}
.look__item {
  position: absolute;
}
.look__item--01 {
  top: -4.7rem;
  right: 33.9rem;
}
@media only screen and (max-width: 768px) {
  .look__item--01 {
    right: 11.1rem;
    top: -15.6rem;
  }
}
.look__item--01 > div {
  margin-top: -5rem;
}
@media only screen and (max-width: 768px) {
  .look__item--01 > div {
    margin-top: 0;
    position: relative;
    top: -6.6rem;
    left: 3.4rem;
  }
}
.look__item--02 {
  top: 25%;
  left: -8.6rem;
}
@media only screen and (max-width: 768px) {
  .look__item--02 {
    top: -14%;
    left: -1.6rem;
    flex-direction: column-reverse;
  }
}
.look__item--02 > div {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .look__item--02 > div {
    margin-top: 1rem;
  }
}
.look__item--03 {
  bottom: -5.4rem;
  left: 5.8rem;
}
@media only screen and (max-width: 768px) {
  .look__item--03 {
    bottom: -13rem;
    left: -6.4rem;
  }
}
.look__item--03 > div {
  margin-top: 3.5rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 768px) {
  .look__item--03 > div {
    position: relative;
    top: 10rem;
    left: 4.8rem;
  }
}
.look__item--04 {
  bottom: -5.2rem;
  right: 5.2rem;
}
@media only screen and (max-width: 768px) {
  .look__item--04 {
    bottom: -13.2rem;
    right: -11.3rem;
  }
}
.look__item--04 > div {
  margin-top: 4rem;
  margin-left: 7rem;
}
@media only screen and (max-width: 768px) {
  .look__item--04 > div {
    position: relative;
    bottom: -9rem;
    right: 9.5rem;
  }
}
.look__item--05 {
  top: 25%;
  right: -15.4rem;
}
@media only screen and (max-width: 768px) {
  .look__item--05 {
    top: -16.5%;
    right: -3rem;
    flex-direction: column-reverse;
  }
}
.look__item--05 > div {
  margin-top: 2rem;
  margin-left: 2.3rem;
}
@media only screen and (max-width: 768px) {
  .look__item--05 > div {
    width: 11.8rem;
    position: relative;
    top: -1rem;
    left: -1rem;
  }
}
@media only screen and (max-width: 768px) {
  .look__item--05 .look__note {
    white-space: inherit;
  }
}
.look__photo--01 {
  width: 21rem;
  height: 46rem;
}
.look__photo--02 {
  width: 12.6rem;
  height: 46rem;
}
.look__photo--03 {
  width: 16.5rem;
  height: 46rem;
}
.look__photo--04 {
  width: 16.5rem;
  height: 46rem;
}
.look__photo--05 {
  width: 15.8rem;
  height: 46rem;
}
@media only screen and (max-width: 768px) {
  .look__photo {
    max-width: none;
  }
  .look__photo--01 {
    width: 9.6rem;
    height: 21rem;
  }
  .look__photo--02 {
    width: 5.8rem;
    height: 21rem;
  }
  .look__photo--03 {
    width: 7.5rem;
    height: 21rem;
  }
  .look__photo--04 {
    width: 7.5rem;
    height: 21rem;
  }
  .look__photo--05 {
    width: 7.2rem;
    height: 21rem;
  }
}
.look__ttl {
  position: absolute;
  top: 40.2%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .look__ttl {
    top: 22.2%;
  }
}
.look__ttl img {
  width: 49.5rem;
  height: 24.6rem;
}
@media only screen and (max-width: 559px) {
  .look__ttl img {
    width: 12.4rem;
    height: 17.3rem;
  }
}
.look__ttlborder {
  position: absolute;
  top: 40.2%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 左から隠す */
  transition: clip-path 1s ease, opacity 1s ease;
}
@media only screen and (max-width: 768px) {
  .look__ttlborder {
    top: 22.2%;
  }
}
.look__ttlborder img {
  width: 49.5rem;
  height: 24.6rem;
}
@media only screen and (max-width: 559px) {
  .look__ttlborder img {
    width: 12.4rem;
    height: 17.3rem;
  }
}
.look__ttl.on + .look__ttlborder {
  opacity: 1;
  clip-path: inset(0 0 0 0); /* 全部表示 */
}
.look__item {
  display: flex;
  align-items: center;
}
.look__number {
  color: var(--mainColor);
  font-size: 5.1rem;
  line-height: 1;
  text-align: center;
  font-family: var(--time);
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .look__number {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
}
.look__number span {
  font-size: 7.2rem;
}
@media only screen and (max-width: 768px) {
  .look__number span {
    font-size: 2.3rem;
  }
}
.look__note {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .look__note {
    font-size: 1.3rem;
    white-space: pre;
    line-height: 1.5;
  }
}

.dress__number {
  font-family: var(--time);
  color: var(--mainColor);
  font-size: 4.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .dress__number {
    font-size: 2.2rem;
    margin-bottom: 1.4rem;
  }
}
.dress__number span {
  font-size: 6.4rem;
}
@media only screen and (max-width: 768px) {
  .dress__number span {
    font-size: 3.2rem;
  }
}
.dress__ttlarea {
  background-color: #e8e1d9;
  padding: 6.1rem 0 14.7rem;
}
@media only screen and (max-width: 768px) {
  .dress__ttlarea {
    padding: 3.3rem 0 3rem;
  }
}
.dress__ttlen {
  font-family: var(--time);
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dress__ttlen {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.dress__ttl {
  text-align: center;
  font-size: 4.8rem;
  line-height: 1.1666666667;
}
@media only screen and (max-width: 768px) {
  .dress__ttl {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.dress__mv {
  position: relative;
  display: inline-block;
}
.dress__mvimg {
  width: 67rem;
  height: 97rem;
  clip-path: inset(100% 0 0 0); /* 最初は下で隠す */
  transition: clip-path 1s ease;
}
@media only screen and (max-width: 768px) {
  .dress__mvimg {
    width: 100%;
    height: auto;
  }
}
.dress__mvtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67rem;
  height: 97rem;
  opacity: 0;
  transform: translateY(30px);
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .dress__mvtext {
    width: 100%;
    height: auto;
  }
}
.dress__mvplus {
  width: 12.2rem;
  height: auto;
  opacity: 0;
  position: absolute;
  transform: translateY(20px);
  bottom: 0.5rem;
  right: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .dress__mvplus {
    width: 7.5rem;
    right: -0.4rem;
    bottom: -0.4rem;
  }
}
.dress__flex {
  display: flex;
  justify-content: center;
  gap: 9.4rem;
  margin-top: -6rem;
}
@media only screen and (max-width: 768px) {
  .dress__flex {
    gap: 3.2rem;
    margin-top: 0;
    flex-direction: column;
  }
}
.dress__subttl {
  font-size: 3.6rem;
  line-height: 1.66;
  margin-bottom: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .dress__subttl {
    font-size: 2rem;
    margin-bottom: 1.7rem;
  }
}
.dress__subttl span {
  color: var(--mainColor);
  padding-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.dress__subttl span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--mainColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-in-out;
}
.dress__subttl.on span::after {
  transform: scaleX(1);
}
.dress__textarea {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}
@media only screen and (max-width: 768px) {
  .dress__textarea {
    font-size: 1.4rem;
  }
}
.dress__cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 53.9rem;
}
@media only screen and (max-width: 768px) {
  .dress__cont {
    width: 32rem;
    margin-inline: auto;
  }
}

:root {
  --vh: 100vh;
}

@supports (height: 100dvh) {
  :root {
    --vh: 100dvh;
  }
}
@supports (height: 100svh) {
  :root {
    --vh: 100svh;
  }
}
.floating {
  position: fixed;
  top: 0;
  right: 1.6rem;
  box-sizing: border-box;
  height: var(--vh);
  padding-block: 3rem;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .floating {
    display: none;
  }
}
.floating.is-visible {
  opacity: 1;
  pointer-events: all;
}
.floating__list {
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  height: 100%;
  list-style: none;
}
.floating__item {
  display: grid;
  place-items: center;
  width: auto;
  max-height: none;
  line-height: 0;
}
.floating__item img {
  display: block;
  height: calc((100svh - 6rem - 8rem) / 5);
  object-fit: contain;
  aspect-ratio: 104/176;
  height: calc((var(--vh) - 6rem - 8rem) / 5);
  width: auto;
  max-width: 10.4rem;
  max-height: 17.6rem;
}

.dress01 {
  margin-bottom: 24rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .dress01 {
    margin-bottom: 7rem;
  }
}
.dress01__wrap {
  width: 130.3rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .dress01__wrap {
    width: 100%;
  }
}
.dress01__continner {
  margin-top: 20rem;
}
@media only screen and (max-width: 768px) {
  .dress01__continner {
    margin-top: 0;
    margin-bottom: 3.5rem;
  }
}
.dress01 .dress__ttl {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 0;
  --marker-scale: 0;
}
.dress01 .dress__ttl::before {
  content: "";
  width: 100%;
  height: 2.4rem;
  background-color: var(--colorW);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleX(var(--marker-scale));
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .dress01 .dress__ttl::before {
    display: none;
  }
}
.dress01 .dress__ttl span {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .dress01 .dress__ttl span::before {
    content: "";
    width: 100%;
    height: 1.2rem;
    background-color: var(--colorW);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
  }
}

.dress02__flex {
  display: flex;
  justify-content: center;
  gap: 7.1rem;
  margin-bottom: -10.8rem;
}
@media only screen and (max-width: 768px) {
  .dress02__flex {
    flex-direction: column;
    margin-bottom: 3.2rem;
    gap: 0;
    width: 32.4rem;
    margin-inline: auto;
  }
}
.dress02__img {
  width: 54rem;
  height: 64rem;
}
@media only screen and (max-width: 768px) {
  .dress02__img {
    width: 100%;
    height: auto;
  }
}
.dress02__ttlarea {
  margin-top: 11rem;
  width: 54.1rem;
}
@media only screen and (max-width: 768px) {
  .dress02__ttlarea {
    width: 100%;
    margin-top: 0;
    margin-bottom: 2.2rem;
  }
}
.dress02 .dress__number {
  margin-left: -11.7rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dress02 .dress__number {
    margin-left: 0;
    margin-bottom: 1.2rem;
  }
}
.dress02 .dress__ttlen {
  position: relative;
  left: -6rem;
  margin-bottom: 4.3rem;
}
@media only screen and (max-width: 768px) {
  .dress02 .dress__ttlen {
    left: 0;
    margin-bottom: 2rem;
  }
}
.dress02 .dress__ttl {
  position: relative;
  left: -5.4rem;
  line-height: 1.56;
  z-index: 0;
  --marker-scale: 0;
}
@media only screen and (max-width: 768px) {
  .dress02 .dress__ttl {
    left: 0;
    line-height: 1.4;
  }
}
.dress02 .dress__ttl span {
  position: relative;
}
.dress02 .dress__ttl span::before {
  content: "";
  width: 100%;
  height: 2.4rem;
  background: #ffe3e8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleX(var(--marker-scale));
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .dress02 .dress__ttl span::before {
    height: 1.2rem;
  }
}
.dress02__wrap {
  background: #f6f3f0;
  padding: 14.3rem 0 8.3rem;
}
@media only screen and (max-width: 768px) {
  .dress02__wrap {
    padding: 0 0 4.7rem;
  }
}
.dress02__cont {
  width: 130.3rem;
  margin-inline: auto;
  display: flex;
  gap: 13.3rem;
}
@media only screen and (max-width: 768px) {
  .dress02__cont {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
.dress02__mv {
  width: 57rem;
  height: 84rem;
}
@media only screen and (max-width: 768px) {
  .dress02__mv {
    width: 100%;
    height: auto;
  }
}
.dress02 .dress__subttl {
  margin-top: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .dress02 .dress__subttl {
    margin-top: 3rem;
    line-height: 1.7;
  }
}
.dress02 .dress__textarea {
  margin-bottom: 6.7rem;
}
@media only screen and (max-width: 768px) {
  .dress02 .dress__textarea {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .dress02__inner {
    width: 32rem;
    margin-inline: auto;
  }
}

.dress03 {
  padding: 14.2rem 0 20.6rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .dress03 {
    padding: 4.8rem 0 7.3rem;
  }
}
.dress03 .dress__ttlarea {
  background: transparent;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .dress03 .dress__ttlarea {
    padding-bottom: 1.9rem;
  }
}
.dress03 .dress__number {
  margin-bottom: 3.8rem;
}
@media only screen and (max-width: 768px) {
  .dress03 .dress__number {
    margin-bottom: 1.3rem;
  }
}
.dress03 .dress__ttlen {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dress03 .dress__ttlen {
    margin-bottom: 1.5rem;
    line-height: 1;
  }
}
.dress03 .dress__ttl {
  line-height: 1.55;
  position: relative;
  z-index: 0;
  --marker-scale: 0;
}
.dress03 .dress__ttl span {
  position: relative;
}
.dress03 .dress__ttl span::before {
  content: "";
  width: 100%;
  height: 2.4rem;
  background: #ffe3e8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleX(var(--marker-scale));
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .dress03 .dress__ttl span::before {
    height: 1.2rem;
  }
}
.dress03__img {
  text-align: center;
}
.dress03__cont {
  display: flex;
  gap: 28.2rem;
  justify-content: center;
  align-items: flex-end;
  margin-top: -10.7rem;
  position: relative;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .dress03__cont {
    gap: 2.6rem;
    margin-top: 2.4rem;
    flex-direction: column;
    width: 32rem;
    margin-inline: auto;
  }
}
.dress03 .dress__subttl {
  margin-bottom: 3.7rem;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .dress03 .dress__subttl {
    margin-bottom: 1.9rem;
  }
}
.dress03 .detail {
  pointer-events: all;
}

.dress04 {
  padding-bottom: 11.5rem;
}
@media only screen and (max-width: 768px) {
  .dress04 {
    padding-bottom: 6.9rem;
  }
}
.dress04 .dress__number {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dress04 .dress__number {
    margin-bottom: 1.3rem;
    line-height: 1;
  }
}
.dress04 .dress__ttlen {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .dress04 .dress__ttlen {
    margin-bottom: 2rem;
  }
}
.dress04 .dress__ttlarea {
  padding-bottom: 13.3rem;
}
@media only screen and (max-width: 768px) {
  .dress04 .dress__ttlarea {
    padding-top: 4rem;
    padding-bottom: 3.6rem;
  }
}
.dress04 .dress__ttl {
  position: relative;
  z-index: 0;
  width: fit-content;
  margin-inline: auto;
  --marker-scale: 0;
}
.dress04 .dress__ttl::before {
  content: "";
  width: 100%;
  height: 2.4rem;
  background-color: var(--colorW);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: scaleX(var(--marker-scale));
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .dress04 .dress__ttl::before {
    height: 1.2rem;
  }
}
.dress04__flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 8rem;
  align-items: flex-end;
  width: 130.3rem;
  margin-inline: auto;
  position: relative;
  top: -9rem;
  right: -8.7rem;
}
@media only screen and (max-width: 768px) {
  .dress04__flex {
    width: 100%;
    flex-direction: column;
    top: 0;
    right: 0;
    gap: 1.2rem;
    align-items: flex-start;
  }
}
.dress04__cont {
  margin-bottom: 1rem;
  position: relative;
  left: -3rem;
  top: -5.8rem;
}
@media only screen and (max-width: 768px) {
  .dress04__cont {
    left: 2.75rem;
    top: 2.6rem;
  }
}
.dress04 .dress__subttl {
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .dress04 .dress__subttl {
    margin-bottom: 0.6rem;
  }
}
.dress04 .dress__subttl span {
  display: inline-block;
  padding-top: 0.5rem;
}
.dress04 .detail {
  margin-top: 16.6rem;
}
@media only screen and (max-width: 768px) {
  .dress04 .detail {
    order: 3;
    margin-top: 3rem;
    margin-inline: auto;
  }
}
.dress04__img {
  width: 51rem;
  height: 75rem;
  position: relative;
  left: -3rem;
  top: 0.4rem;
}
@media only screen and (max-width: 768px) {
  .dress04__img {
    width: 32rem;
    height: auto;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .dress04__inner {
    display: contents;
  }
}
@media only screen and (max-width: 768px) {
  .dress04__item {
    order: 2;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 768px) {
  .dress04 .o-modal__link {
    order: 1;
  }
}

.dress05 {
  background: #f6f3f0;
  padding: 16rem 0 11.5rem;
}
@media only screen and (max-width: 768px) {
  .dress05 {
    padding: 2.6rem 0 4.3rem;
  }
}
.dress05__flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14rem;
  position: relative;
  left: 7.7rem;
}
@media only screen and (max-width: 768px) {
  .dress05__flex {
    gap: 2.5rem;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.dress05__figure {
  margin-top: 11rem;
}
@media only screen and (max-width: 768px) {
  .dress05__figure {
    order: 3;
    margin-top: -1rem;
    margin-left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .dress05__figure img {
    width: 32rem;
    height: auto;
  }
}
.dress05 .detail {
  margin-top: 4.6rem;
}
@media only screen and (max-width: 768px) {
  .dress05 .detail {
    order: 5;
    margin-top: 0rem;
    margin-inline: auto;
  }
}
.dress05__cont {
  margin-top: 12.7rem;
}
@media only screen and (max-width: 768px) {
  .dress05__cont {
    order: 4;
    margin-top: -0.3rem;
  }
}
.dress05 .dress__subttl {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .dress05 .dress__subttl {
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
}
.dress05 .dress__number {
  margin-bottom: 3.7rem;
}
@media only screen and (max-width: 768px) {
  .dress05 .dress__number {
    margin-bottom: 1.3rem;
  }
}
.dress05 .dress__ttl {
  position: relative;
  z-index: 0;
  --marker-scale: 0;
}
.dress05 .dress__ttl span {
  position: relative;
}
.dress05 .dress__ttl span::before {
  content: "";
  width: 100%;
  height: 2.4rem;
  background: #ffe3e8;
  position: absolute;
  left: 0;
  bottom: -1rem;
  z-index: -1;
  transform: scaleX(var(--marker-scale));
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .dress05 .dress__ttl span::before {
    height: 1.2rem;
    bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .dress05 .dress__textarea {
    margin-left: 2rem;
  }
}
.dress05__ttlarea {
  position: relative;
  left: -6.6rem;
}
@media only screen and (max-width: 768px) {
  .dress05__ttlarea {
    order: 1;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 559px) {
  .dress05 .o-modal__link {
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .dress05__inner {
    display: contents;
  }
}

.detail__wrap {
  width: 45rem;
}
@media only screen and (max-width: 768px) {
  .detail__wrap {
    width: 32rem;
  }
}
.detail__ttl {
  font-size: 1.4rem;
  line-height: 1;
}
.detail__item {
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .detail__item {
    margin-bottom: 1rem;
    display: none;
  }
}
.detail__item:last-child {
  margin-bottom: 0;
}
.detail__item--border {
  border-bottom: 1px solid;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  display: block;
}
@media only screen and (max-width: 559px) {
  .detail__item--border {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }
}
.detail__list.open .detail__item {
  display: block;
}
.detail__flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.detail__price {
  font-size: 1.6rem;
  font-family: var(--time);
}
@media only screen and (max-width: 768px) {
  .detail__price {
    font-size: 1.4rem;
  }
}
.detail__price span {
  font-size: 1rem;
  padding-left: 1rem;
}
@media only screen and (max-width: 768px) {
  .detail__price span {
    font-size: 0.9rem;
  }
}
.detail__cont {
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .detail__cont {
    gap: 1.1rem;
  }
}
.detail__cont--first {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .detail__cont--first {
    margin-bottom: 1rem;
  }
}
.detail__sizelist {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .detail__sizelist {
    gap: 0.4rem;
  }
}
.detail__size {
  font-size: 1rem;
  font-family: var(--time);
  height: 2rem;
  padding-inline: 0.5rem;
  border: 1px solid;
  line-height: 2rem;
  border-radius: 2px;
}
@media only screen and (max-width: 768px) {
  .detail__size {
    padding-inline: 0.4rem;
    height: 1.6rem;
    line-height: 1.6rem;
  }
}
.detail__link {
  background-color: #f398aa;
  color: var(--colorW);
  font-family: var(--time);
  font-size: 1.1rem;
  width: 7.2rem;
  height: 2.2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .detail__link {
    width: 5rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}
.detail__link:hover {
  color: var(--colorW);
}
.detail__link--border {
  background-color: transparent;
  color: var(--baseColor);
  border: 1px solid;
  transition: 0.5s;
}
.detail__link--border:hover {
  background-color: var(--baseColor);
  color: var(--colorW);
}
.detail__toggle {
  font-size: 1.3rem;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.detail__toggle::after {
  content: "";
  background: url(../images/arrow.webp) no-repeat center center/contain;
  width: 2rem;
  height: 1rem;
  position: relative;
  display: inline-block;
}
.detail__toggle.open::after {
  transform: rotate(180deg);
}
/*# sourceMappingURL=style.css.map */
