/* import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hurricane&display=swap');

/* 基本設定 */
:root {
  --gyoColor_1: #191919;
  --gyoColor_2: rgba(40, 40, 60, 0.95);
  --gyoColor_3: #ADAA97;
  --gyoColor_4: #917236;
  --gyoColor_5: #EEEBE9;
  --gyoColor_6: #B81C22;
  --gyoColor_7: #faf5f2;
  --gyoColor_8: #604c22;
  --gyo_white: #FFFFFF;
  --gyo_grey1: #999999;
  --font-sans: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-serif: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  --font-Hurricane: "Hurricane", sans-serif;
  --base-line-height: 1.5;
  --title-line-height: 1.2;
  --single-line-height: 1;
  --transition1: all .3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border-style: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  font: inherit;
  appearance: none;
}

button {
  cursor: pointer;
  transition: var(--transition1);
  &:hover {
    opacity: .5;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html , body {
  color: rgba(0, 0, 0, 0.87);  
  font-family: var(--font-sans);
  line-height: var(--base-line-height);
  margin: 0;
  padding: 0;
  font-size: 62.51%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

.hidden {
  display: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container__wrap {
  font-size: 1.6rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.sp-only { display: block;}
.pc-only { display: none;}

@media (min-width: 768px){
  .sp-only { display: none;}
  .pc-only { display: block;}
}


/* レイアウト reset
**********************************************************************/

#sysAll{
  font-size: 1.6rem;
  position: relative;
  width:100%!important;
  padding:0!important;
  margin:0 auto!important;
  background-color:transparent!important;
}
#sysHeader{
  width:100%!important;
  padding:0!important;
  margin:0 auto!important;
  clear:both!important;
  margin-bottom:0!important;
}
#sysMain{
  width:100%!important;
  padding:0!important;
  margin:0 auto!important;
  margin-bottom:0!important;
  & a {
    color: var(--gyoColor_4);
    text-decoration: underline;
    &:hover {
      opacity: .8;
      text-decoration: none;
    }
  }
}
#sysAside{
  width:100%!important;
  padding:0!important;
  margin:0 auto!important;
  margin-bottom:0!important;
}
#sysFooter{
  background-color: var(--gyo_white);
  width:100%!important;
  padding:0!important;
  margin:0 auto!important;
  clear:both!important;
  margin-bottom:0!important;
}
.sysContent {
  padding: 0!important;
}

@media screen and (min-width:769px){
  #sysAll{
    max-width:100%;
  }
}

@media screen and (max-width:768px){
    .sysDisplayMobileNone{
        display:none;
    }
}
@media screen and (max-width:768px){
    div.sysMemberAgreement{
        overflow: auto;
        -webkit-overflow-scrolling:touch;
    }
}
@media screen and (min-width:769px) and (max-width:1100px){
    .sysDisplayTabletNone{
        display:none;
    }
}
@media screen and (min-width:1101px){
    .sysDisplayPcNone{
        display:none;
    }
}


/* header
----------------------------------------- */
.gyo__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  position: relative;
  & .header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 60px 6px 16px;
    width: 100%;
    & .gyo__logo {
      width: 66px;
      height: auto;
      & img { /* red */
        filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(2961%) hue-rotate(346deg) brightness(85%) contrast(96%);
      }
    }
    & .header__nav {
      /* padding-right: 50px; */
      & .nav__links {
        display: flex;
        gap: 4px;
        & .nav__item {
          & .btn__icon {
            & img { /* gyo02 */
              filter: brightness(0) saturate(100%) invert(13%) sepia(27%) saturate(788%) hue-rotate(201deg) brightness(89%) contrast(89%);
            }
          }
        }
      }
    }
  }
}

#gyo_top #initial-header.gyo__header {
  border-bottom: none;
}

#gyo_top .gyo__header {
  & .header__wrap {
    & .gyo__logo {
      & img { /* white */
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(101deg) brightness(107%) contrast(101%);
      }
    }
    & .header__nav {
      & .nav__links {
        & .nav__item {
          & .btn__icon {
            & img { /* white */
              filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(101deg) brightness(107%) contrast(101%);
            }
          }
        }
      }
    }
  }
}

/* 追従ヘッダーの固定設定 */
#scroll__header {
  background-color: var(--gyo_white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s;
  /* 初期状態:非表示 */
  opacity: 0;
  visibility: hidden;
  & .header__wrap {
    position: relative;
    & .gyo__logo {
      & img { /* red */
        filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(2961%) hue-rotate(346deg) brightness(85%) contrast(96%) !important;
      }
    }
    & .header__nav {
      & .nav__links {
        & .nav__item {
          & .btn__icon {
            & img { /* gyo02 */
              filter: brightness(0) saturate(100%) invert(13%) sepia(27%) saturate(788%) hue-rotate(201deg) brightness(89%) contrast(89%) !important;
            }
          }
        }
      }
    }
  }
}

/* 表示状態のクラス（JSで制御） */
#scroll__header.is-show {
  opacity: 1;
  visibility: visible;
}

/* 元のヘッダー */
#initial-header {
  transition: opacity 0.3s;
  z-index: 1000;
}
#initial-header.is-hide {
  opacity: 0;
  pointer-events: none; /* クリック不可 */
}

@media (min-width: 768px){
  .gyo__header {
    background-color: var(--gyo_white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    & .header__wrap {
      padding: 10px 60px 10px 16px;
      & .gyo__logo {
        width: 66px;
        & img { /* red */
          filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(2961%) hue-rotate(346deg) brightness(85%) contrast(96%);
        }
      }
      & .header__nav {
        /* padding-right: 50px; */
        & .nav__links {
          & .nav__item {
            & .btn__icon {
              & img { /* gyo02 */
                filter: brightness(0) saturate(100%) invert(13%) sepia(27%) saturate(788%) hue-rotate(201deg) brightness(89%) contrast(89%);
              }
            }
          }
        }
      }
    }
  }

  #gyo_top .gyo__header {
    & .header__wrap {
      & .gyo__logo {
        & img { /* red */
          filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(2961%) hue-rotate(346deg) brightness(85%) contrast(96%);
        }
      }
      & .header__nav {
        & .nav__links {
          & .nav__item {
            & .btn__icon {
              & img { /* gyo02 */
                filter: brightness(0) saturate(100%) invert(13%) sepia(27%) saturate(788%) hue-rotate(201deg) brightness(89%) contrast(89%);
              }
            }
          }
        }
      }
    }
  }
}

/* hamburger menu
----------------------------------------- */
.hamburger__menu {
  background-color: var(--gyoColor_5);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* iOS Safari対応：動的ビューポート高さ */
  z-index: 1001;
  
  /* 内部スクロール */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain; /* スクロールの背景ページへの伝播を防止 */

  /* 初期状態：非表示 */
  visibility: hidden;
  transition: right 0.4s ease, visibility 0s 0.4s;
  
  /* レイアウト調整 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
}

/* 表示 */
.hamburger__menu.active {
  visibility: visible;
  right: 0;
  transition: right 0.4s ease, visibility 0s; 
}
/* メニュー展開時は背景ページをスクロールさせない */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.menu__list {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  & > li {
    & a {
      display: block;
      padding: 16px;
      transition: var(--transition1);
      &:hover {
        opacity: .5;
      }
    }
    & span {
      font-size: 1.6rem;
      display: block;
    }
    & .sub-links {
      font-size: 1.6rem;
      padding: 12px;
      & a {
        display: block;
        padding: 10px;
      }
    }
    & .sns-links {
      padding: 20px;
      & p {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      & .sns__links {
        display: flex;
        gap: 20px;
        justify-content: center;
        & a {
          display: block;
          padding: 0;
          width: 42px;
          height: 42px;
        }
      }
    }
  }
  & > li:not(:first-child) {
    border-top: 1px solid var(--gyoColor_3);
  }
}

/* --- hamburger icon --- */
.menu__trigger {
  position: fixed;
  top: 12px;
  right: 22px;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  z-index: 1002;
  cursor: pointer;
  opacity: 1; /* タップ後のhover残留によるopacity低下を防止 */
  &:hover {
    opacity: 1;
  }
}

.menu__trigger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--gyoColor_1);
  transition: var(--transition1);
}
#gyo_top .menu__trigger span {
  background: var(--gyo_white);
}

/* menu open/close */
.menu__trigger.active span {
  background: var(--gyoColor_1);
}
#gyo_top .menu__trigger.active span {
  background: var(--gyoColor_1);
}

/* 追従ヘッダー表示時に色を変更 */
.menu__trigger.is-scrolled span {
  background: var(--gyoColor_1);
}
#gyo_top .menu__trigger.is-scrolled span {
  background: var(--gyoColor_1);
}

.menu__trigger span:nth-child(1) { top: 0; }
.menu__trigger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu__trigger span:nth-child(3) { bottom: 0; }

.menu__trigger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu__trigger.active span:nth-child(2) { opacity: 0; }
.menu__trigger.active span:nth-child(3) { top: 50%; bottom: auto; transform: translateY(-50%) rotate(-45deg); }

@media (min-width: 768px){
  #gyo_top .menu__trigger span {
    background: var(--gyoColor_1);
  }
  .menu__trigger {
    top: 17px;
  }
}

/* breadcrumb
----------------------------------------- */
.breadcrumb {
  background-color: var(--gyoColor_5);
  font-family: var(--font-serif);
  padding: 12px 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOS慣性スクロール */

  & .breadcrumb__list {
    display: flex;
    gap: 4px;
    font-size: 1.4rem;
    white-space: nowrap; /* 折り返し禁止 */

    & .breadcrumb__item {
      display: flex;
      align-items: center;
      flex-shrink: 0; /* アイテムが縮まないように */
      & a {
        color: var(--gyoColor_4);
        transition: var(--transition1);
        &:hover {
          opacity: .5;
        }
      }
      &:not(:last-child)::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        margin-left: 8px;
        margin-right: 8px;
        border-top: 1px solid var(--gyoColor_2);
        border-right: 1px solid var(--gyoColor_2);
        transform: rotate(45deg);
      }
    }
  }
}


/* aside
----------------------------------------- */
aside.sns__wrap {
  background-color: var(--gyo_white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  z-index: 1;
  & .heading__sns {
    font-family: var(--font-serif);
    font-size: 1.2rem;
  }
  & .sns__links {
    margin-top: 8px;
    display: flex;
    gap: 16px;
    justify-content: center;
    & a {
      display: block;
      padding: 0;
      width: 42px;
      height: 42px;
      transition: var(--transition1);
      &:hover {
        opacity: .5;
      }
    }
  }
}


/* footer
----------------------------------------- */
footer {
  background-color: var(--gyoColor_5);
  padding: 40px 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  /* z-index: 1; */
  & .footer__link {
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    & .link__item {
      & a {
        display: flex;
        align-items: center;
        line-height: var(--single-line-height);
        text-decoration: none;
        transition: var(--transition1);
        &:hover {
          opacity: .5;
        }
      }
    }
  }
  & .footer__logo { /* red */
    margin-top: 28px;
    width: 150px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(2961%) hue-rotate(346deg) brightness(85%) contrast(96%);
  }
  & small {
    display: block;
    margin-top: 12px;
    font-size: 1.2rem;
    color: var(--gyoColor_4);
  }
}

.arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: var(--gyoColor_4);
  line-height: var(--single-line-height);
  margin: 0 4px;
  position: relative;
  width: .6em;
  height: .6em;
  transform: translateX(-25%) rotate(45deg);
  &::before, &::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 0.1em;
  }
  &::before {
    top: 0;
    left: 0;
    right: 0;
    height: .2rem;
  }
  &::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: .2rem;
  }
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: block;
  width: 42px;
  height:42px;
  cursor: pointer;
  background: var(--gyoColor_4);
  border-radius: 9999px;
  opacity: 0;
  transition: var(--transition1);
  & span {
    position: absolute;
    top: 16px;
    left: 13px;
    display: block;
    width: 14px;
    height: 14px;
    content:"";
    border-top:3px solid var(--gyo_white);
    border-right:3px solid var(--gyo_white);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
#pagetop.visible {
  opacity: 1;
  pointer-events: auto;
  &:hover {
    opacity: .8;
  }
}


/* main / content
----------------------------------------- */
.content__wrap {
  background-color: var(--gyo_white);
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0px 32px;

  position: relative;
  z-index: 1;
}
#gyo_top .content__wrap {
  background-color: var(--gyo_white);
  margin-top: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0px 32px;

  position: relative;
  z-index: 1;
}

.content {
  margin: 32px auto 0;
  padding: 0;
  position: relative;
  z-index: 2;
  & .inner__block200:first-of-type {
    margin: 0 auto 46px;
  }
}
.content.content__type01 {
  padding: 0 2%;
  max-width: 960px;
}

.inner__block100 {
  margin: 32px auto 46px;
  padding: 0;
  max-width: 960px;
}

.inner__block200 {
  margin: 32px auto 46px;
  padding: 0 10px;
  max-width: 1400px;
}
.column__wrap3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 28px 0;
  & .column__item {
    padding: 0 28px;
  }
  & .column__item:not(:first-child) {
    border-left: 1px solid #d1c9bb;
  }
}

hgroup.heading__group100 {
  font-family: var(--font-serif);
  margin: 20px auto;
  text-align: center;
  & .heading100 {
    color: var(--gyoColor_4);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: var(--title-line-height);
    margin: 0 auto;
  }
  & .heading__sub {
    color: var(--gyoColor_4);
    font-size: .8em;
    font-weight: 400;
  }
}

hgroup.heading__group200 {
  font-family: var(--font-serif);
  margin: 20px auto;
  max-width: 960px;
  padding: 0 10px;
  text-align: center;
  & .heading200 {
    color: var(--gyoColor_4);
    line-height: var(--title-line-height);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 12px;
  }
  & .heading__sub {
    font-size: 2rem;
    font-weight: 700;
  }
}

.heading300 {
  border-bottom: 1px solid var(--gyoColor_4);
  color: var(--gyoColor_4);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: var(--title-line-height);
  margin: 20px auto;
  padding: 12px 0;
  text-align: center;
  width: 96%;
  max-width: 960px;
  & .heading__sub {
    font-size: .8em;
    font-weight: 400;
    display: block;
  }
}

.heading400 {
  background-color: var(--gyoColor_5);
  font-size: 1em;
  font-weight: 700;
  line-height: var(--title-line-height);
  margin: 0 auto 12px;
  padding: 6px;
}

@media (min-width: 768px){
  .heading100 {
    font-size: 2.8rem;
  }
  .heading300 {
    margin: 20px auto;
    padding: 12px 24px;
    width: fit-content;
  }
  .content__wrap {
    font-size: 1.6rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0px 32px;
  }
  #gyo_top .content__wrap {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0px 32px;
  }
  .content {
    margin: 32px auto 0;
    padding: 0;
  }
  .content.content__type01 {
    margin: 0 auto 0;
  }
  .inner__block100 {
    margin: 32px auto 46px;
    padding: 0;
    max-width: 960px;
  }
}

/* typo
----------------------------------------- */
.txt__c {
  text-align: center;
}
.txt__l {
  text-align: left;
}
.txt__r {
  text-align: right;
}
.text__lead {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.8;
}

.fw__bold { font-weight: 700;}
.fw__normal { font-weight: 400;}

.color__100 { color: var(--gyoColor_1);}
.color__200 { color: var(--gyo_white);}
.color__300 { color: var(--gyoColor_6);}
.color__400 { color: var(--gyoColor_4);}
.color__500 { color: var(--gyoColor_8);}

.font__selif { font-family: var(--font-serif);}
.font__sans { font-family: var(--font-sans);}

.font__bold { font-weight: 700;}
.font__normal { font-weight: 400;}

.font__small { font-size: .8em;}
.font__base { font-size: 1em;}
.font__large { font-size: 2em;}


/* background
----------------------------------------- */
.bg__100 {background-color: var(--gyoColor_7);}
.bg__200 {background-color: var(--gyoColor_5);}


/* padding / margin 
----------------------------------------- */
.p08 {padding: 8px !important;}
.p12 {padding: 12px !important;}
.p16 {padding: 16px !important;}
.p20 {padding: 20px !important;}
.p28 {padding: 28px !important;}

.mb08 {margin-bottom: 8px !important;}
.mb12 {margin-bottom: 12px !important;}
.mb16 {margin-bottom: 16px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb28 {margin-bottom: 28px !important;}
.mt08 {margin-top: 8px !important;}
.mt12 {margin-top: 12px !important;}
.mt16 {margin-top: 16px !important;}
.mt20 {margin-top: 20px !important;}
.mt28 {margin-top: 28px !important;}

/* negative margin */
.mt-n08 {margin-top: -8px !important;}
.mt-n12 {margin-top: -12px !important;}
.mt-n16 {margin-top: -16px !important;}
.mt-n20 {margin-top: -20px !important;}
.mt-n28 {margin-top: -28px !important;}
.ml-n08 {margin-left: -.8em !important;}
.ml-n12 {margin-left: -1.2em !important;}
.ml-n16 {margin-left: -1.6em !important;}
.ml-n20 {margin-left: -2em !important;}
.ml-n28 {margin-left: -2.8em !important;}

/* contact
----------------------------------------- */
.contact__wrap {
  font-family: var(--font-serif);
  padding: 0 20px 20px;
  text-align: center;
  & .text__lead {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
  }
  & .contact__sns {
    margin-top: 24px;
    display: flex;
    gap: 20px;
    justify-content: center;
    & .content__item {
      width: 170px;
      height: 72px;
      & button {
        background: var(--gyoColor_2);
        color: var(--gyo_white);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 0;
        width: 100%;
        height: 100%;
        & img { /* white */
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(101deg) brightness(107%) contrast(101%);
        }
      }
    }
  }
}

#concept .contact__wrap,
#photowedding .contact__wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .contact__wrap {
    width: 960px;
    margin: 32px auto 0;
    padding: 0 20px 32px;
  }
}

/* modal
----------------------------------------- */
.gyo__modal {
  --duration: 0.3s;
  --scale: 0.6;

  transition:
    display var(--duration) allow-discrete,
    overlay var(--duration) allow-discrete,
    opacity var(--duration),
    scale var(--duration);

  /* 非表示時 */
  opacity: 0;
  scale: var(--scale);

  &[open] {
    /* 出現後（表示時） */
    opacity: 1;
    scale: 1;
    @starting-style {
      /* 出現前（非表示時） */
      opacity: 0;
      scale: var(--scale);
    }
  }

  /* 装飾 */
  width: 100%;
  max-width: calc(360px);
  margin: auto;
  padding: 20px;

  background-color: var(--gyo_white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border: 0;
  border-radius: 16px;
  inset: 0;
  position: fixed;

  /* 背景 */
  &::backdrop {
    background-color: rgb(0 0 0 / 50%);
    opacity: 0;
    transition: opacity var(--duration);
  }

  &[open]::backdrop {
    opacity: 1;
    @starting-style {
      opacity: 0;
    }
  }

  /* content */
  & .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    & .logo-group {
      color: var(--gyoColor_1);
      display: flex;
      align-items: center;
      gap: 8px;
      & .icon-sns {
        width: 28px;
        height: auto;
      }
      & span {
        font-size: 2.2rem;
        font-weight: 400;
      }
    }
    & .modal-close {
      display: block;
      position: absolute;
      top: 4px;
      right: 4px;
      width: 24px;
      height: 24px;
      color: var(--gyo_grey1);
      cursor: pointer;
      line-height: 1;
      &::before, &::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 3px;
        height: 24px;
        background: var(--gyo_grey1);
      }
      &::before {
        transform: translate(-50%,-50%) rotate(45deg);
      }
      &::after {
        transform: translate(-50%,-50%) rotate(-45deg);
      }
    }
  }
  & .profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    & .brand-logo {
      width: 88px;
      height: auto;
      /* red */
      filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(2961%) hue-rotate(346deg) brightness(85%) contrast(96%);
    }
    & .profile-info {
      & h3 {
        margin: 0;
        font-size: 1.6rem;
        color: var(--gyoColor_1);
      }
      & p {
        margin: 2px 0 0;
        font-size: 1.4rem;
        color: var(--gyo_grey1);
      }
    }
  }
  & .qr-container {
    width: 70%;
    aspect-ratio: 1 / 1;
    margin: 10px auto;
    & .qr-image {
      width: 100%;
      height: auto;
    }
  }
  & .card-footer {
    text-align: left;
    color: var(--gyo_grey1);
    font-size: 1.4rem;
  }
}

/* list__number100
----------------------------------------- */
.list__number100 {
  counter-reset: list-counter;
  padding-left: 2em;
  & li {
    counter-increment: list-counter;
    position: relative;
    &::before {
      content: counter(list-counter) ".";
      position: absolute;
      left: -1.6em;
    }
    &:not(:first-child) {
      margin-top: 12px;
    }
  }
}
.list__number200 {
  counter-reset: list-counter;
  margin-top: 12px;
  padding-left: 2em;
  & li {
    counter-increment: list-counter;
    position: relative;
    &::before {
      content: "(" counter(list-counter) ")";
      position: absolute;
      left: -2em;
    }
    &:not(:first-child) {
      margin-top: 12px;
    }
  }
}

.list__disc100 {
  padding-left: 1.2em;
  & li {
    line-height: 1.7;
    list-style: disc;
    & + li {
      margin-top: 4px;
    }
  }
}

.list__mark {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;

  & li {
    display: flex;
    gap: 4px;

    & .mark {
      flex-shrink: 0;
    }
  }
}

/* banner
----------------------------------------- */
.banner__wrap {
  margin: 32px auto;
}

.banner__100 {
  color: var(--gyoColor_1);
  margin: 0 auto;
  position: relative;
  width: 94%;
  max-width: 480px;
  max-height: 546px;
  aspect-ratio: 480/546;
  overflow: hidden;
  & a {
    color: var(--gyoColor_1) !important;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
  }
  & .banner__image {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
  }
  &.type_dress .banner__image { background-image: url('/img/top/banner_image01.jpg'); }
  &.type_photo .banner__image { background-image: url('/img/top/banner_image02.jpg'); }
  &.type_salon .banner__image { background-image: url('/img/top/banner_image03.jpg'); }

  .banner__content {
    background-color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-serif);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    text-align: center;
    transition: background-color 0.3s;
    & .banner__text p {
      font-size: 2.2rem;
      letter-spacing: 0.1em;
      line-height: var(--single-line-height);
      margin: 0;
      &  span {
        display: block;
        font-size: 0.8em;
        margin-top: 8px;
      }
    }
    & .banner__more {
      background-color: rgba(255, 255, 255, 0.3);
      border: 1px solid var(--gyoColor_1);
      font-size: 1.5rem;
      margin-top: 20px;
      padding: 6px 38px;
      position: relative;
      &::after {
        content: "";
        position: absolute;
        right: 5px;
        bottom: 5px;
        width: 10px;
        height: 10px;
        border-right: 1px solid var(--gyoColor_1);
        border-bottom: 1px solid var(--gyoColor_1);
      }
    }
  }

  /* hover時 */
  &:hover {
    & .banner__image {
      transform: scale(1.1);
    }
    & .banner__content {
      background-color: rgba(255, 255, 255, 0.78);
    }
  }
}

@media (min-width: 768px) {
  .banner__100 {
    width: 100%;
    max-width: 670px;
    max-height: none;
    aspect-ratio: unset;

    & a {
      display: flex;
      align-items: stretch;
    }

    & .banner__image {
      position: relative;
      width: 41%; /* 276/(276+400) ≒ 41% */
      aspect-ratio: 276 / 190; /* コンテナ高さの基準 */
      height: auto;
      min-height: auto;
      flex-shrink: 0;
      background-position: center left;
    }
    &.type_dress .banner__image { background-position: 50% 16%; }
    &.type_photo .banner__image { background-position: 50% 8%; }

    & .banner__content {
      background-color: var(--gyoColor_5);
      position: relative;
      width: 59%; /* 残り */
      height: auto;
      bottom: auto;
      left: auto;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      & .banner__text p {
        font-size: 2.4rem;
        letter-spacing: 0.15em;

        & span {
          font-size: 0.7em;
          margin-top: 10px;
        }
      }

      & .banner__more {
        background-color: transparent;
        margin-top: 20px;
        padding: 8px 48px;
      }
    }
  }

  .banner__100:hover {
    & .banner__image {
      transform: scale(1.05);
    }
    & .banner__content {
      background-color: #e2d9cf;
    }
  }
}

/* button
----------------------------------------- */
 .btn__more {
  margin: 20px auto;
  width: 15em;
  max-width: 20em;
  position: relative;
  text-align: center;
  &::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--gyoColor_2);
    border-bottom: 1px solid var(--gyoColor_2);
  }
  & a {
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--gyoColor_2);
    font-family: var(--font-serif);
    display: block;
    padding: 12px 12px;
    color: var(--gyoColor_2) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
  }

  & a:hover {
    background-color: var(--gyoColor_5);
    opacity: 1;
  }
}

/* video / top
----------------------------------------- */
.video__wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px){
  .video__wrap {
    display: none;
  }
}

/* KV / top
----------------------------------------- */
.kv__wrap {
  display: none;
  text-align: center;
}

@media (min-width: 768px){
  .kv__wrap {
    display: block;
    background-image: url(/img/top/background_kv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 564px;
    & .kv__inner {
      width: 960px;
      margin: 0 auto;
      padding-top: 90px;
      text-align: right;
      & img { /* white */
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(101deg) brightness(107%) contrast(101%);
        width: 140px;
        height: auto;
      }
    }
  }
}

/* carousel / top
----------------------------------------- */
.swiper__concept.swiper-initialized {
  padding-bottom: 100px;
  position: relative;
  & .column__wrap3.swiper-wrapper {
    width: 100%;
    padding: 28px 0 14px;
    & .column__item {
      padding: 0 10px!important;
    }
    & .column__item:not(:first-child) {
      border-left: none;
    }
  }
  & .swiper-button-next, .swiper-button-prev {
    color: var(--gyoColor_4);
    top: auto;
    bottom: 84px;
    width: 18px;
    height: 18px;
  }
  & .swiper-button-next {
    right: calc(50% - 68px);
  }
  & .swiper-button-prev {
    left: calc(50% - 68px);
  }
  & .swiper-pagination {
    bottom: 84px;
    & .swiper-pagination-bullet {
      margin: 0 6px;
    }
    & .swiper-pagination-bullet-active {
      background: rgb(190, 157, 126);
    }
  }
}

.swiper__concept {
  & .btn__more {
    margin: 0 auto 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    &::after {
      border-right: 1px solid var(--gyoColor_8);
      border-bottom: 1px solid var(--gyoColor_8);
    }
    & a {
      color: var(--gyoColor_8)!important;
      border: 1px solid var(--gyoColor_8);
      padding: 6px 38px;
    }
    & a:hover {
      background-color: var(--gyo_white);
    }
  }
}

@media screen and (min-width: 768px) {
  & .swiper__concept {
    & .swiper-button-prev, .swiper-button-next, .swiper-pagination {
      display: none !important;
    }
    & .column__wrap3.swiper-wrapper {
      display: grid;
      padding: 28px 0 0;
      & .swiper-slide {
        width: calc(100%)!important;
      }
    }
    & .btn__more {
      margin: 32px auto;
      position: relative;
    }
  }
}

/* main / top
----------------------------------------- */
#gyo_top {
  & .text__concept {
    color: rgba(0, 0, 0, .7);
    font-size: 1.5rem;
    line-height: 1.8;
  }
  @media (min-width: 768px){
    & .text__concept {
      text-align: center;
    }
  }

  & .text__block {
    & .text__title {
      margin-bottom: 20px;
    }
    & .text {
      color: rgba(0, 0, 0, 0.7);
      font-size: .8em;
      line-height: 1.8;
    }
  }

  & .banner__type01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  & .banner__item {
    color: var(--gyoColor_1);
    position: relative;
    width: 100%;
    min-height: 490px;
    aspect-ratio: 480/546;
    overflow: hidden;
    & a {
      color: var(--gyoColor_1)!important;
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
    }
    & .banner__image {
      background-size: cover;
      background-position: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: transform 0.6s ease;
    }
    &.type_dress .banner__image { background-image: url('/img/top/banner_image01.jpg'); }
    &.type_photo .banner__image { background-image: url('/img/top/banner_image02.jpg'); }
    &.type_salon .banner__image { background-image: url('/img/top/banner_image03.jpg'); }

    & .banner__content {
      background-color: rgba(255, 255, 255, 0.5);
      font-family: var(--font-serif);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 30%;
      text-align: center;
      transition: background-color 0.3s;
      & .banner__text p {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        line-height: var(--single-line-height);
        margin: 0;
        &  span {
          display: block;
          font-size: 0.8em;
          margin-top: 8px;
        }
      }
      & .banner__more {
        background-color: rgba(255, 255, 255, 0.3);
        border: 1px solid var(--gyoColor_1);
        font-size: 1.5rem;
        margin-top: 20px;
        padding: 6px 38px;
        position: relative;
        &::after {
          content: "";
          position: absolute;
          right: 5px;
          bottom: 5px;
          width: 10px;
          height: 10px;
          border-right: 1px solid var(--gyoColor_1);
          border-bottom: 1px solid var(--gyoColor_1);
        }
      }
      & .banner__cs {
        font-size: 1.6rem;
        margin-top: 10px;
        padding: 8px;
        position: relative;
        &::before {
          background-color: var(--gyoColor_1);
          content: "";
          position: absolute;
          width: 100%;
          height: 2px;
          left: 0;
          bottom: 0;
          transform-origin: center top;
          transform: scale(0, 1);
          transition: transform .3s;
        }
      }
    }

    /* hover時 */
    &:hover {
      & .banner__image {
        transform: scale(1.1);
      }
      & .banner__content {
        background-color: rgba(255, 255, 255, 0.78);
      }
      & .banner__cs {
        &::before {
          transform: scale(1, 1);
        }
      }
    }
  }

  & .banner__item.type_salon {
    color: var(--gyo_white);
    & a {
      color: var(--gyo_white)!important;
    }
    & .banner__content {
      background-color: rgba(52, 48, 25, 0.78);
      & .banner__more {
        border: 1px solid var(--gyo_white);
        &::after {
          border-right: 1px solid var(--gyo_white);
          border-bottom: 1px solid var(--gyo_white);
        }
      }
      & .banner__cs {
        &::before {
          background-color: var(--gyo_white);
        }
      }
    }

    /* hover時 */
    &:hover {
      & .banner__content {
        background-color: rgba(52, 48, 25, 0.9);
      }
    }
  }

  @media (min-width: 768px){
    & .banner__type01 {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
  }
}


/* main / privacy
----------------------------------------- */
#privacy {
  & .definition__list {
    padding: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    row-gap: 8px;
  }

  @media (min-width: 768px){
    & .definition__list {
      padding: 0 8px;
      width: fit-content;
    }
  }
}

/* main / concept
----------------------------------------- */
#concept {
  & .kv__concept {
    color: var(--gyo_white);
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('/img/concept/bg_kv_sp.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 16px;
    & hgroup.heading__concept {
      font-family: var(--font-serif);
      margin: 0 auto 20px;
      padding: 0 10px;
      text-align: center;
      & .headingConcept {
        line-height: var(--title-line-height);
        font-size: 2.4rem;
        font-weight: 700;
        margin: 0 auto;
      }
      & .heading__sub {
        font-size: 1.8rem;
        font-weight: 500;
      }
    }
    & .kv__lead {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      margin: 0 auto 50px;
      max-width: 720px;
      text-align: center;
    }
  }

  & .kv__inner--concept {
    background: rgba(0, 0, 0, 0.40);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    padding: 16px 12px;
    & .kv__text {
      font-size: 1.3rem;
      font-weight: 400;
      line-height: 1.8;
      text-align: left;
      & p ~ p {
        margin-top: 12px;
      }
    }
    & .kv__logo img {
      width: 92px;
      height: auto;
      filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(101deg) brightness(107%) contrast(101%);
      margin: 0 auto;
    }
  }

  & .concept__wrap {
    position: relative;
    z-index: 2;
    & .concept__body {
      display: flex;
      flex-direction: column;
      position: relative;
      & .concept__inner {
        padding: 40px 16px;
        & hgroup.heading__concept {
          font-family: var(--font-serif);
          margin: 0 auto 20px;
          text-align: center;
          & .heading {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: var(--title-line-height);
            margin: 0 auto 6px;
          }
          & .heading__sub {
            font-size: 1.6rem;
            font-weight: 400;
          }
        }
        & .concept__text {
          line-height: 1.8;
          max-width: 520px;
          margin: 0 auto;
          & p ~ p {
            margin-top: 20px;
          }
        }
      }
      & .bg_img {
        aspect-ratio: 4 / 4;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        overflow: hidden;
      }
      &.concept001, &.concept003 {
        background-color: var(--gyoColor_7);
        & hgroup.heading__concept {
          & .heading {
            color: var(--gyoColor_4);
          }
          & .heading__sub {
            color: var(--gyoColor_1);
          }
        }
      }
      &.concept002, &.concept004 {
        background-color: var(--gyoColor_2);
        & hgroup.heading__concept {
          & .heading {
            color: var(--gyo_white);
          }
          & .heading__sub {
            color: var(--gyo_white);
          }
        }
        & .concept__text {
          color: var(--gyo_white);
        }
      }
    }
  }

  @media (min-width: 768px){
    & .kv__concept {
      min-height: 500px;
      background-image: url('/img/concept/bg_kv.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50%;
      & hgroup.heading__concept {
        & .headingConcept {
          font-size: 3.2rem;
        }
        & .heading__sub {
          font-size: 2rem;
        }
      }
      & .kv__lead {
        font-size: 2rem;
      }
    }
    
    & .kv__inner--concept {
      background: rgba(0, 0, 0, 0.40);
      max-width: 600px;
      padding: 24px;
      & .kv__text {
        font-size: 1.5rem;
        text-align: center;
        & p ~ p {
          margin-top: 12px;
        }
      }
    }

    & .concept__wrap {
      & .concept__body {
        flex-direction: row;
        min-height: 720px;
        & .concept__inner {
          flex: 0 0 50%;
          width: 50%;
          padding: 52px 32px;
          & hgroup.heading__concept {
            & .heading {
              font-size: 3.2rem;
            }
            & .heading__sub {
              font-size: 1.8rem;
            }
          }
          & .concept__text {
            & p ~ p {
              margin-top: 20px;
            }
          }
        }
        & .bg_img {
          flex: 0 0 50%;
          width: 50%;
          aspect-ratio: unset;
          min-height: 100%;
          background-size: cover;
          background-position: center top;
        }
        &:nth-child(even) {
          flex-direction: row-reverse;
        }
      }
    }
  }
}


/* main / company
----------------------------------------- */
#company{
  & .kv__company {
    color: var(--gyo_white);
    position: relative;
    min-height: 440px;
    width: 100%;
    background-image: url('/img/company/bg_kv_sp.jpg');
    background-size: cover;
    background-position: top;
    padding: 40px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    & hgroup.heading__company {
      font-family: var(--font-serif);
      margin: 0 auto 20px;
      padding: 0 10px;
      text-align: center;
      & .headingCompany {
        line-height: var(--title-line-height);
        font-size: 2.4rem;
        font-weight: 700;
        margin: 0 auto;
      }
      & .heading__sub {
        font-size: 1.4rem;
        font-weight: 400;
      }
    }
  }

  & .kv__inner--company {
    background: rgba(0, 0, 0, 0.60);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding: 16px 12px;
    & .kv__text {
      font-size: 1.3rem;
      font-weight: 400;
      line-height: 1.8;
      text-align: center;
    }
    & .kv__logo img {
      width: 92px;
      height: auto;
      filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(101deg) brightness(107%) contrast(101%);
      margin: 0 auto;
    }
  }

  @media (min-width: 768px) {
    & .kv__company {
      min-height: 600px;
      background-image: url('/img/company/bg_kv.jpg');
      background-size: cover;
      background-position: top center;
      padding: 50px 16px 40px;
      & hgroup.heading__company {
        & .headingCompany {
          font-size: 3.2rem;
        }
        & .heading__sub {
          font-size: 1.6rem;
        }
      }
    }

    & .kv__inner--company {
      background: rgba(0, 0, 0, 0.60);
      max-width: 600px;
      padding: 24px;
      & .kv__text {
        font-size: 1.5rem;
      }
    }
  }

  & .company1__wrap {
    background-color: var(--gyo_white);
    padding: 0;
    max-width: 1200px;
    margin: 32px auto;

    & h2 {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.5;
      margin: 0 auto 28px;
      text-align: center;
    }

    & .company1__inner {
      /* SP：テキスト→画像の縦積み */
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 0 16px;
      margin: 0 auto;
      width: 100%;
      & p {
        font-size: 1.5rem;
        line-height: 1.8;
        margin: 0;
      }
      & p ~ p {
        margin-top: 12px;
      }

      /* 画像エリア */
      & .company1__image {
        width: 100%;
        aspect-ratio: 6 / 9;
        overflow: hidden;
        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }
    }
  }

  @media (min-width: 768px) {
    & .company1__wrap {
      & h2 {
        font-size: 2.4rem;
      }

      & .company1__inner {
        /* PC：左テキスト・右画像の横並び2カラム */
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        max-width: none;
        padding: 0;
        margin: 0;
        gap: 32px;

        & .company1__text {
          flex: 1;
          padding-left: 48px;
        }

        & .company1__image {
          aspect-ratio: unset;
          width: 360px;
          height: auto;
          flex-shrink: 0;
        }
      }
    }
  }

  & .company2__wrap {
    background-color: var(--gyoColor_5);
    padding: 0;
    & .company__body {
      display: flex;
      flex-direction: column;
      max-width: 1200px;
      margin: 0 auto;
    }
    /* 左カラム：見出し + テーブル */
    & .company__inner {
      padding: 48px 24px 40px;
      flex: 1;
      & hgroup.heading__company {
        font-family: var(--font-serif);
        text-align: center;
        margin: 0 auto 32px;
        & .heading {
          color: var(--gyoColor_4);
          font-size: 2rem;
          font-weight: 700;
          line-height: var(--title-line-height);
          margin: 0 auto 6px;
        }
        & .heading__sub {
          color: var(--gyoColor_4);
          font-size: 1.4rem;
          font-weight: 400;
        }
      }
      /* dl テーブル */
      & .company__text {
        & .company__table {
          color: var(--gyoColor_1);
          display: grid;
          grid-template-columns: 5em 1fr;
          gap: 0;
          font-size: 1.4rem;
          line-height: 1.7;
          max-width: 480px;
          margin: 0 auto;
        }
        & dt {
          padding: 10px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          white-space: nowrap;
        }
        & dd {
          padding: 10px 0 10px 12px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          margin: 0;
        }
        & dt.row {
          grid-column: 1 / -1;
          border-bottom: none;
          padding-bottom: 0;
        }
        & dt.row + dd {
          grid-column: 1 / -1;
          padding-left: 0;
        }
        /* dl の最後の行はborder-bottomなし */
        & dt:last-of-type,
        & dd:last-of-type {
          border-bottom: none;
        }
      }
    }
    /* Googleマップ */
    & .google__map {
      width: 100%;
      background-color: #ccc;
      position: relative;
      /* SP: 正方形に近いアスペクト */
      aspect-ratio: 4 / 3;
      overflow: hidden;
      & iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
      }
    }
    /* PC：横並び2カラム */
    @media (min-width: 768px) {
      & .company__body {
        flex-direction: row;
        align-items: stretch;
        min-height: 480px;
      }
      & .company__inner {
        flex: 0 0 50%;
        width: 50%;
        padding: 56px 48px 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        & hgroup.heading__company {
          & .heading {
            font-size: 2.4rem;
          }
          & .heading__sub {
            font-size: 1.5rem;
          }
        }
        & .company__text {
          & dl {
            grid-template-columns: 6em 1fr;
            font-size: 1.5rem;
            max-width: 100%;
            margin: 0;
          }
        }
      }
      & .google__map {
        flex: 0 0 50%;
        width: 50%;
        aspect-ratio: unset;
        min-height: 100%;
        & iframe {
          width: 100%;
          height: 100%;
          min-height: 480px;
        }
      }
    }
  }
}

/* main / shop
----------------------------------------- */
#shop {
  @media (min-width: 768px) {
    & .heading300 {
      min-width: 12em;
    }
  }
  & .kv__shop {
    overflow: hidden;

    /* Swiper本体 */
    & .swiper__shop {
      padding-bottom: 52px;
      position: relative;

      & .shop__items {
        /* swiper-wrapper はflexをSwiperが制御するためlist-style等のみリセット */
        list-style: none;
        padding: 0;
        margin: 0;
      }

      & .shop__img {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }

      /* ページネーション / 前後ボタン */
      & .swiper-button-next, .swiper-button-prev {
        color: var(--gyoColor_4);
        top: auto;
        bottom: 18px;
        width: 18px;
        height: 18px;
      }
      & .swiper-button-next {
        right: calc(50% - 105px);
      }
      & .swiper-button-prev {
        left: calc(50% - 105px);
      }
      & .swiper-pagination {
        bottom: 18px;
        & .swiper-pagination-bullet {
          margin: 0 6px;
        }
        & .swiper-pagination-bullet-active {
          background: rgb(190, 157, 126);
        }
      }
    }
    & .kv__text {
      padding: 16px 16px 0;
      font-size: 1.4rem;
      line-height: 1.8;
      color: var(--gyoColor_1);
      text-align: left;
      & p + p {
        margin-top: 12px;
      }
    }

    @media (min-width: 768px) {
      overflow: hidden;

      & .swiper__shop {
        overflow: visible;
        margin: 0 auto;
        padding-bottom: 0;
        width: 620px;

        & .shop__img {
          aspect-ratio: 3 / 2;
          transition: opacity .8s;
        }

        /* 前後スライドを透かす */
        & .swiper-slide:not(.swiper-slide-visible) {
          &.shop__img {
            opacity: 0.35;
          }
        }

        /* ページネーション非表示 */
        & .swiper-pagination {
          display: none;
        }

        /* 前後ボタン */
        & .swiper-button-prev,
        & .swiper-button-next {
          display: flex;
          place-content: center;
          position: absolute;
          top: 0;
          bottom: 0;
          margin: auto 0;
          z-index: 10;
          width: 48px;
          height: 48px;
          border-radius: 50%;
          &::after {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gyoColor_1);
          }
        }
        & .swiper-button-prev {
          right: calc(100% + 25px);
          left: auto;
        }
        & .swiper-button-next {
          left: calc(100% + 25px);
          right: auto;
        }
      }

      & .kv__text {
        font-size: 1.5rem;
        padding: 42px 24px 0;
        text-align: center;
      }
    }
  }

  & .shop1__wrap {
    background-color: var(--gyoColor_5);
    margin: 32px auto;
    padding: 48px 16px;
    & h2 {
      font-family: var(--font-serif);
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gyoColor_2);
      text-align: center;
      margin: 0 auto 12px;
      padding-bottom: 12px;
      &::after {
        content: "";
        display: block;
        margin: 10px auto 0;
        width: 0;
        height: 28px;
        border-left: 1px solid;
      }
    }
    & .shop__table {
      margin: 0 0 24px;
      padding: 0;
      &:last-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
      }
      & dt {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--gyoColor_4);
        margin: 0 0 12px;
      }

      & dd {
        font-size: 1.4rem;
        margin: 0;
        & + dd {
          margin-top: 4px;
        }
        /* TEL/FAX */
        & span.heading {
          display: inline-block;
          width: 3.5em;
        }
        /* Googleマップ iframe */
        & iframe {
          display: block;
          width: 100%;
          aspect-ratio: 4 / 3;
          border: 0;
          margin-top: 12px;
        }
        /* 営業時間 */
        & p {
          & + p {
            margin-top: 8px;
            font-size: 1.3rem;
          }
        }
      }
    }
    & .column__wrap2 {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin: 24px auto 0;
      max-width: 1200px;
      & .column__inner {
        width: 100%;
      }
      @media (min-width: 768px) {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
        & .column__inner {
          flex: 1;
          min-width: 0;
        }
      }
    }

    @media (min-width: 768px) {
      margin: 48px auto 32px;
      & h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
      }
      & .shop__table {
        & dt {
          font-size: 1.8rem;
        }
        & dd {
          font-size: 1.5rem;
          & iframe {
            aspect-ratio: 4 / 3;
            min-height: 220px;
          }
        }
      }
    }
  }
}

/* main / reviews
----------------------------------------- */
#reviews {
  & .text__reviews {
    line-height: 1.8;
    padding: 0 16px 32px;
    max-width: 800px;
    margin: 0 auto;

    @media (min-width: 768px) {
      padding: 0 0 40px;
    }
  }
}

/* main / photowedding
----------------------------------------- */
#photowedding {
  /* KV / swiper__photowedding */
  & .kv__photowedding {
    position: relative;
    width: 100%;

    & .swiper__photowedding {
      width: 100%;
      padding-bottom: 36px;

      & .photo__items {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      & .photo__img {
        width: 100%;
        aspect-ratio: 5 / 3;
        overflow: hidden;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }

      /* ページネーション */
      & .swiper-pagination {
        display: flex;
        justify-content: right;
        align-items: center;
        padding: 8px;

        & .swiper-pagination-bullet {
          background: #D6D6D5;
          opacity: 0.6;
          margin: 0 4px;
        }

        & .swiper-pagination-bullet-active {
          background: var(--gyoColor_2);
          opacity: 1;
        }
      }
    }

    & .kv__text {
      background-color: var(--gyo_white);
      position: absolute;
      bottom: 30px;
      left: 0;
      line-height: 1;
      padding: 12px 32px 0;
      text-align: center;
      z-index: 10;

      & p {
        font-family: var(--font-serif);
        font-size: 2.4rem;
        font-weight: 400;
      }

      & span {
        color: var(--gyoColor_4);
        display: inline-block;
        font-family: var(--font-Hurricane);
        font-size: 2rem;
        font-weight: 400;
        margin-top: -.2em;
        transform: rotate(-5deg);
      }
    }

    @media (min-width: 768px) {
      /* PC: 幅1000px 中央配置 */
      & .swiper__photowedding {
        max-width: 1000px;
        margin: 0 auto;

        & .photo__img {
          aspect-ratio: 5 / 3; /* PCも5:3を維持 */
        }
      }

      & .kv__text {
        /* swiper__photoweddingの左端に合わせて配置 */
        left: calc(50% - 500px);
        bottom: 32px;

        & p {
          font-size: 4rem;
        }

        & span {
          font-size: 3rem;
        }
      }
    }
  }

  & .photo1__wrap {
    padding: 0 0 24px;

    & .heading300 {
      margin: 24px auto 32px;
    }

    /* リード文 + 料金ブロック */
    & .photo__inner {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0 16px;
      max-width: 960px;
      margin: 0 auto 32px;

      & .text__lead {
        font-family: var(--font-sans);
        font-size: 1.5rem;

        & p + p {
          margin-top: 12px;
        }
      }

      & .price_block {
        background-color: var(--gyoColor_5);
        border: 1px solid #E1E1E1;
        font-family: var(--font-serif);
        padding: 20px 24px;
        text-align: center;
        flex-shrink: 0;

        & h2 {
          font-size: 2rem;
          font-weight: 400;
          color: var(--gyoColor_2);
          margin: 0 0 8px;
        }

        & p {
          font-size: 3rem;
          font-weight: 700;
          color: #866017;
          margin: 0;
          line-height: 1;
          & span.yen {
            font-size: .7em;
          }
          & span.tax {
            font-size: .5em;
            font-weight: 400;
            font-family: var(--font-sans);
            margin-left: 4px;
            vertical-align: middle;
          }
        }
      }

      @media (min-width: 768px) {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
        padding: 0;

        & .text__lead {
          flex: 1;
          font-size: 1.4rem;
        }

        & .price_block {
          flex: 0 0 330px;
          width: 330px;
          padding: 24px;
        }
      }
    }

    /* プランに含まれるもの・備考ブロック */
    & .photo__block {
      border: 1px solid #E1E1E1;
      border-radius: 0;
      margin: 16px 16px 0;
      padding: 16px 12px 12px;
      max-width: 960px;

      & h2 {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 700;
        color: var(--gyoColor_1);
        text-align: center;
        margin: 0 0 16px;
      }

      /* アイテム */
      & .plan__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;

        & li {
          color: var(--gyoColor_2);
          display: flex;
          align-items: center;
          gap: 6px;
          background-color: var(--gyoColor_5);
          padding: 6px;
          font-size: 1.3rem;

          & img {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            object-fit: contain;
          }

          & span {
            line-height: 1.3;
          }
        }
      }

      @media (min-width: 768px) {
        margin-left: auto;
        margin-right: auto;
        padding: 24px 16px 16px;

        & h2 {
          font-size: 1.7rem;
        }

        & .plan__items {
          grid-template-columns: repeat(4, 1fr);
          gap: 6px;
          & img {
            width: 36px;
            height: 36px;
          }
        }

        & .list__mark {
          & li {
            font-size: 1.5rem;
          }
        }
      }
    }
  }
}

/* common / reviews__item — カード1枚
----------------------------------------- */
.reviews__item {
  background: var(--gyoColor_5);
  overflow: hidden;
  padding: 36px 12px 12px;
  position: relative;
  display: flex;
  flex-direction: column;

  /* カテゴリバッジ */
  & .reviews__cate {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-block;
    padding: 5px 14px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gyo_white);
    background: var(--gyoColor_4);
    /* 前撮り・フォトウェディング */
    &.photo {
      background: var(--gyoColor_8);
    }
  }

  & .reviews__img {
    width: 87%;
    max-width: 300px;
    min-height: 173px;
    max-height: 225px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    position: relative;

    /* 左上の三角（背景色） */
    &::before {
      content: "";
      position: absolute;
      top: -1px;
      left: -1px;
      z-index: 2;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 43px 43px 0 0; /* 上・右・下・左 → 左上三角 */
      border-color: var(--gyoColor_5) transparent transparent transparent;
    }

    /* 右下の三角（背景色） */
    &::after {
      content: "";
      position: absolute;
      bottom: -1px;
      right: -1px;
      z-index: 2;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 43px 43px; /* 上・右・下・左 → 右下三角 */
      border-color: transparent transparent var(--gyoColor_5) transparent;
    }

    /* 斜め線：.deco を使って三角の斜辺上に描画 */
    & .deco {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;

      /* 左上の斜め線 */
      &::before {
        content: "";
        position: absolute;
        top: 48px;
        left: -8px;
        width: 79px;
        height: 1px;
        background: var(--gyoColor_1);
        transform: rotate(315deg);
        transform-origin: top left;
      }

      /* 右下の斜め線 */
      &::after {
        content: "";
        position: absolute;
        bottom: 48px;
        right: -8px;
        width: 79px;
        height: 1px;
        background: var(--gyoColor_1);
        transform: rotate(315deg);
        transform-origin: bottom right;
      }
    }

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 0;
    }
  }

  & .reviews__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gyoColor_1);
    text-align: center;
    padding: 12px 16px 8px;
    margin: 0;
  }

  & p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--gyoColor_1);
    padding: 0 16px 16px;
    margin: 0;

  }

  & .reviews__footer {
    background-color: var(--gyo_white);
    font-size: 1.3rem;
    display: grid;
    grid-template-columns: auto 1fr; /* dt:内容幅 / dd:残り */
    align-items: baseline;
    row-gap: 4px;
    padding: 10px 16px;
    margin: 0;

    & dt {
      white-space: nowrap;
      &::after {
        content: "：";
      }
    }
    & dd {
      margin: 0;
    }
  }

  @media (min-width: 768px) {
    padding: 36px 20px 20px;

    & .reviews__cate {
      font-size: 1.3rem;
      padding: 5px 16px;
    }

    & .reviews__name {
      font-size: 1.6rem;
      padding: 16px 20px 10px;
    }

    & p {
      font-size: 1.5rem;
      padding: 0 0 20px;
    }

    & .reviews__footer {
      padding: 12px 20px;
      font-size: 1.4rem;
    }
  }
}

/* common / gallery
----------------------------------------- */
p.text__zoom {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.3rem;
  color: #5A5A5A;
  text-align: center;
  margin: 0 0 16px;
  &::before {
    content: "";
    background-image: url(/img/common/icon_zoom.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
  }
}

.gallery__wrap {
border-top: 1px solid rgba(0, 0, 0, 0.06);
padding: 0 16px 16px;

& p.text__zoom {
  margin: 0 0 16px;
}
& .gallery__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;

  & .gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    &:hover img {
      transform: scale(1.05);
    }
  }
}

@media (min-width: 768px) {
  padding: 0 0 32px;
  max-width: 960px;
  margin: 32px auto 0;

  & p.text__zoom {
    justify-content: center;
  }

  & .gallery__items {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;

    & .gallery__item {
      aspect-ratio: 1 / 1;
    }
  }
}
}

/* ===== viewer.js ボタンサイズ調整（24px → 48px） ===== */
.viewer-toolbar > ul > li {
  height: 48px;
  width: 48px;
  margin: 0 8px;
}

.viewer-button.viewer-close{
  height: 52px;
  right: 10px;
  top: 10px;
  width: 52px;
  &::before {
    bottom: 6px;
    left: 6px;
  }
}

/* アイコンスプライト共通 */
.viewer-close:before,
.viewer-flip-horizontal:before,
.viewer-flip-vertical:before,
.viewer-fullscreen-exit:before,
.viewer-fullscreen:before,
.viewer-next:before,
.viewer-one-to-one:before,
.viewer-play:before,
.viewer-prev:before,
.viewer-reset:before,
.viewer-rotate-left:before,
.viewer-rotate-right:before,
.viewer-zoom-in:before,
.viewer-zoom-out:before {
  background-size: 560px; /* 280 × 2 */
  height: 40px;           /* 20 × 2 */
  width: 40px;            /* 20 × 2 */
}

/* :before のデフォルト margin を上書き */
.viewer-toolbar > ul > li:before {
  margin: 4px; /* (48 - 40) / 2 */
}

/* スプライト位置（X軸を2倍）*/
.viewer-zoom-in:before        { background-position:    0     0; }
.viewer-zoom-out:before       { background-position:  -40px  0; }
.viewer-one-to-one:before     { background-position:  -80px  0; }
.viewer-reset:before          { background-position: -120px  0; }
.viewer-prev:before           { background-position: -160px  0; }
.viewer-play:before           { background-position: -200px  0; }
.viewer-next:before           { background-position: -240px  0; }
.viewer-rotate-left:before    { background-position: -280px  0; }
.viewer-rotate-right:before   { background-position: -320px  0; }
.viewer-flip-horizontal:before{ background-position: -360px  0; }
.viewer-flip-vertical:before  { background-position: -400px  0; }
.viewer-fullscreen:before     { background-position: -440px  0; }
.viewer-fullscreen-exit:before{ background-position: -480px  0; }
.viewer-close:before          { background-position: -520px  0; }

/* small / large バリアントも比率維持 */
.viewer-toolbar > ul > .viewer-small {
  height: 36px;
  width: 36px;
  margin-bottom: 6px;
  margin-top: 6px;
}
.viewer-toolbar > ul > .viewer-small:before {
  margin: -2px;
}
.viewer-toolbar > ul > .viewer-large {
  height: 60px;
  width: 60px;
  margin-bottom: -6px;
  margin-top: -6px;
}
.viewer-toolbar > ul > .viewer-large:before {
  margin: 10px;
}
/* ===== /viewer.js ボタンサイズ調整 ===== */

/* common / reviews__wrap — お客様の声
  マークアップ共通
  CSS分岐:
  #reviews（SP 縦積み/PC 2列グリッド）
  それ以外（SP カルーセルあり / PC 3列）
----------------------------------------- */
.reviews__wrap {
  & .swiper__reviews {
    & .column__inner {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    /* ページネーション */
    & .swiper-pagination {
      bottom: 12px;

      & .swiper-pagination-bullet {
        background: var(--gyoColor_3);
        opacity: 1;
        margin: 0 4px;
      }

      & .swiper-pagination-bullet-active {
        background: var(--gyoColor_4);
      }
    }

    /* 前後ナビ */
    & .swiper-button-prev,
    & .swiper-button-next {
      display: none;
    }
  }
}

/* ----------------------------------------------------------
   それ以外
   SP: カルーセル（1枚表示＋次スライド透け見せ）
   PC: グリッド3列（Swiper無効）
   ---------------------------------------------------------- */
.reviews__wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden; /* SP カルーセルのはみ出し防止 */
  padding: 0 0 16px;

  & .swiper__reviews {
    padding: 0 16px 48px;
    overflow: visible;
    box-sizing: border-box;
    position: relative;

    & .swiper-button-prev,
    & .swiper-button-next {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gyoColor_2);
      top: auto;
      bottom: 16px;
      width: 20px;
      height: 20px;
      margin-top: 0;

      &::after {
        font-size: 1.4rem;
        font-weight: 700;
      }
    }

    & .swiper-button-prev {
      right: 42px;
      left: auto;
    }

    & .swiper-button-next {
      right: 8px;
    }

    @media (min-width: 768px) {
      /* PC: グリッド3列（JSでSwiper無効化済み） */
      display: grid !important;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 0 0 32px;
      overflow: visible;
      max-width: 960px;
      margin: 0 auto;

      & .column__inner {
        display: contents;
      }

      & .swiper-button-prev,
      & .swiper-button-next {
        display: none !important;
      }
    }
  }

  & .btn__more {
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    overflow: visible;
    padding: 0 0 32px;
    max-width: 960px;
    margin: 32px auto 0;
  }
}

/* ----------------------------------------------------------
   #reviews のみ
   SP: 縦積み（Swiper不使用）
   PC: グリッド2列
   ---------------------------------------------------------- */
#reviews {
  & .reviews__wrap {
    border-top: none;
    padding: 0 16px 32px;
    max-width: 960px;
    margin: 0 auto;

    /* SP: 縦積み */
    & .column__wrap2 {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    & .column__inner {
      list-style: none;
      padding: 0;
      margin: 0;
      display: contents;
    }

    @media (min-width: 768px) {
      padding: 0 0 64px;

      /* PC: 2列グリッド */
      & .column__wrap2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
  }
}


/* main / chinaweddingdress
----------------------------------------- */
#chinaweddingdress {
  /* chinadress__wrap  */
  & .chinadress__wrap {
    padding: 0px 16px;

    & .text {
      font-size: 1.4rem;
      line-height: 1.8;
      text-align: center;
      margin-bottom: 20px;
    }

    /* ---- アコーディオン ---- */
    & .chinadress__categoryList {
      & details {

        /* ---- summary ---- */
        & summary {
          display: inline-flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          padding: 8px 14px;
          font-size: 1.4rem;
          font-weight: 700;
          color: #462611;
          background: #E0D9D4;
          cursor: pointer;
          list-style: none;
          user-select: none;
          width: 100%;

          /* ブラウザデフォルトの▶を消す */
          &::-webkit-details-marker { display: none; }

          /* ＋ アイコン */
          &::after {
            content: "＋";
            font-size: 1.6rem;
            font-weight: 400;
            line-height: 1;
            color: #462611;
            flex-shrink: 0;
          }

          &:hover {
            opacity: .75;
          }
        }

        /* 開いているとき：アイコンを「ー」 */
        &[open] > summary::after {
          content: "－";
        }

        /* ---- ::details-content でアニメーション ---- */
        &::details-content {
          transition:
            height 0.4s ease,
            opacity 0.4s ease,
            content-visibility 0.4s allow-discrete;
          height: 0;
          opacity: 0;
          overflow: clip;
        }

        &[open]::details-content {
          opacity: 1;
        }

        /* ---- コンテンツ本体 ---- */
        & .category__items {
          background-color: var(--gyoColor_5);

          & .category__list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
            padding: 12px;
            margin: 0;

            & li {
              & a {
                display: inline-block;
                padding: 4px 8px;
                font-size: 1.3rem;
                color: var(--gyoColor_1);
                background: var(--gyo_white);
                border: 1px solid var(--gyo_white);
                text-decoration: none;
                transition: var(--transition1);

                &:hover,
                &.is-active {
                  background-color: var(--gyoColor_7);
                  color: var(--gyoColor_4);
                  border-color: var(--gyoColor_4);
                  opacity: 1;
                }
              }
            }
          }
        }
      }
    }

    @media (min-width: 768px) {
      padding: 0;
      max-width: 960px;
      margin: 0 auto;

      & .text {
        font-size: 1.5rem;
      }

      & .chinadress__categoryList {
        & details {
          & summary {
            font-size: 1.5rem;
            padding: 10px 20px;
            width: fit-content;
          }

          & .category__items {
            & .category__list {
              gap: 10px;

              & li {
                & a {
                  font-size: 1.4rem;
                }
              }
            }
          }
        }
      }
    }
  }

  /* chinadressItem__wrap — ドレス一覧 */
  & .chinadressItem__wrap {
    padding: 40px 0 0;

    & h2 {
      font-size: 1.8rem;
      font-weight: 400;
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;

      &::before,
      &::after {
        content: "";
        display: inline-block;
        flex: 1;
        max-width: 60px;
        height: 1px;
        background: var(--gyoColor_1);
      }
    }

    & .text__wrap {
      text-align: center;
      margin: 0 auto 16px;
      width: fit-content;
    }

    /* ドレスグリッド（2列） */
    & .dress__items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 0;
      list-style: none;
      padding: 0;
      margin: 0 0 20px;

      & .dress__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        cursor: pointer;

        & img {
          width: 100%;
          aspect-ratio: 3 / 4;
          object-fit: cover;
          display: block;
          transition: transform 0.4s ease, opacity 0.3s ease;
        }

        &:hover img {
          transform: scale(1.03);
          opacity: 0.9;
        }

        /* 品番 */
        & span {
          display: inline-block;
          font-size: 1.3rem;
          padding: 0 6px;
          text-align: left;
          width: 100%;
        }
      }
    }

    /* 「お問い合わせ」リンク */
    & .contact__link {
      background: var(--gyoColor_7);
      padding: 16px;
      text-align: center;
      margin:0 auto;
      width: 94%;

      & p {
        font-size: 1.3rem;
        line-height: 1.8;
        margin: 0;
      }
    }

    @media (min-width: 768px) {
      padding: 56px 0 0;
      margin: 0 auto;

      & h2 {
        font-size: 2.0rem;
        margin-bottom: 28px;

        &::before,
        &::after {
          max-width: 80px;
        }
      }

      & .dress__items {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 0;
        margin-bottom: 24px;

        & .dress__item {
          & span {
            font-size: 1.3rem;
          }
        }
      }

      & .contact__link {
        max-width: 960px;
        padding: 20px;

        & p {
          font-size: 1.4rem;
        }
      }
    }
  }

}

/* ==========================================================
   ::details-content アニメーション用 @supports
   height: 0 → auto のアニメーションを有効化
   ========================================================== */

/* interpolate-size 対応ブラウザ：height を auto にアニメーション */
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  #chinaweddingdress .chinadress__categoryList details[open]::details-content {
    height: auto;
  }
}

/* 非対応ブラウザ：固定値でフォールバック */
@supports not (interpolate-size: allow-keywords) {
  #chinaweddingdress .chinadress__categoryList details[open]::details-content {
    height: 120px;
    overflow-y: auto;
  }
}

@media screen and (max-width:768px){

}
@media screen and (min-width:769px) and (max-width:1100px){

}
@media screen and (min-width:1101px){

}
/* #END_OF_RESOURCE_FILE */
