@charset "UTF-8";
/** pxからvwへ変換関数 **/
/* -------------------------
      Design Tokens
    --------------------------*/
:root {
  --bg:#ffffff;
  --bg-soft:#FAF7F7;
  /* 淡ピンク背景 */
  --ink:#333;
  --ink-soft:#6b6b6b;
  --accent:#e63a57;
  /* アクセント赤（Figmaの赤に合わせて差し替え） */
  --line:#eee;
  --max:1000px;
  --rad:16px;
  --space-1:8px;
  --space-2:12px;
  --space-3:16px;
  --space-4:24px;
  --space-5:32px;
  --space-6:48px;
  --space-7:64px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Shippori Mincho",system-ui,-apple-system,sans-serif;
  line-height: 1.8;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 16px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: .9em 1.3em;
  border-radius: 999px;
  -webkit-box-shadow: 0 6px 16px rgba(230, 58, 87, 0.22);
          box-shadow: 0 6px 16px rgba(230, 58, 87, 0.22);
  -webkit-transition: opacity .15s ease, -webkit-transform .15s ease;
  transition: opacity .15s ease, -webkit-transform .15s ease;
  transition: transform .15s ease, opacity .15s ease;
  transition: transform .15s ease, opacity .15s ease, -webkit-transform .15s ease;
}

.btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  opacity: .95;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: .08em;
  color: #777;
}

h1, h2, h3 {
  margin: 0 0 .6em;
}

h2 {
  font-size: 28px;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
  z-index: 1;
}

.script {
  font-family: "Corinthia",cursive;
  font-weight: 400;
  color: #EDE3E5;
  font-size: clamp(54px, 9vw, 120px);
  line-height: .95;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
  width: 100%;
}

.section {
  padding: 130px 0 64px;
}

.section--soft {
  background: var(--bg-soft);
}

.lead {
  color: var(--ink-soft);
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}

.grid--2 {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .grid--2, .grid--3, .grid--4 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

/* -------------------------
       Header & Nav
    --------------------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
}

.header__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px 16px;
}

.logo {
  font-weight: 900;
  letter-spacing: .06em;
}

.gnav {
  display: none;
  gap: 20px;
}

.hamburger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.gnav a {
  font-weight: 500;
}

.hamburger {
  width: 44px;
  height: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 非表示の初期状態 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  -webkit-transition: .25s;
  transition: .25s;
}

.hamburger::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.hamburger::after {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.hamburger.is-open span {
  opacity: 0;
}

.hamburger.is-open::before {
  -webkit-transform: rotate(45deg) translate(2px, 2px);
          transform: rotate(45deg) translate(2px, 2px);
}

.hamburger span {
  width: 80%;
}

.hamburger.is-open::after {
  -webkit-transform: rotate(-45deg) translate(1px, 0px);
          transform: rotate(-45deg) translate(1px, 0px);
}

@media (max-width: 960px) {
  .gnav {
    display: none;
  }
  .hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/* overlay menu (SP) */
.overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 49;
  display: none;
  overflow: auto;
}

.overlay.is-open {
  display: block;
  -webkit-animation: fadeIn .2s ease;
          animation: fadeIn .2s ease;
}

.overlay__in {
  min-height: 100svh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 24px;
}

.overlay__group {
  margin-block: 67px;
  text-align: center;
  position: relative;
}

.overlay__title {
  margin-bottom: 12px;
}

.overlay__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay__links a {
  padding: 8px 12px;
  border-radius: 999px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* -------------------------
       Hero (video background)
    --------------------------*/
.hero {
  background-image: url("../img/common/mv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  color: #fff;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__grad {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), color-stop(40%, rgba(0, 0, 0, 0.35)), color-stop(60%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.55)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__in {
  padding: 60px 16px 0;
}

.hero__copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

.hero .lead {
  color: #fff;
  opacity: .9;
  font-size: 25px;
}

.hero__copy .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3.5rem;
}

.en {
  font-family: "Cormorant Garamond";
}

.hot-news {
  background-color: rgba(209, 113, 132, 0.6);
}

.hot-news p {
  color: #fff;
  margin: 0;
  padding: 1rem 2rem;
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex .col-01 {
  width: 100%;
}

.flex .col-02 {
  width: 48%;
}

.flex .col-03 {
  width: 31%;
}

.flex .col-04 {
  width: 23%;
}

.flex .col-06 {
  width: 15%;
}

.flex .grid04 {
  width: 25%;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.plans {
  margin-bottom: 40px;
}

.plans h3 {
  font-size: 20px;
  text-align: center;
  padding-top: 1rem;
}

.btns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#salon {
  background-image: url("../img/common/bg-salon.png");
  background-size: cover;
  color: #fff;
}

#salon h2 {
  color: #fff;
}

#salon .script {
  opacity: .4;
}

#salon .tel {
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#salon dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

#salon dl dt {
  width: 25%;
  margin-bottom: 10px;
}

#salon dl dd {
  width: 75%;
  margin: 0 0 10px 0;
}

.lead-section p {
  text-align: center;
  margin-bottom: 3rem;
}

#point h3 {
  text-align: center;
  margin-bottom: 25px;
}

#point p {
  margin: 0;
}

#point .flex .col-03:nth-child(2) {
  margin-top: 60px;
}

.note {
  font-size: 10px;
}

.gallery-content:first-of-type {
  margin-bottom: 70px;
}

.gallery-content h3 {
  font-family: "Inter";
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 300;
}

.campaign-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 60px;
}

.campaign-content h3 {
  font-size: 28px;
  color: #D17184;
  text-align: center;
}

.plan-area .content {
  padding: 40px 0;
}

.plan-area .content h3 {
  font-size: 32px;
  text-align: center;
}

.plan-area .content h3 span {
  font-size: 24px;
  display: block;
}

.note-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FAF7F7;
  padding: 30px 50px;
  border-radius: 12px;
}

.note-box p {
  font-size: 24px;
  text-align: center;
}

.note-box p span {
  font-size: 28px;
  color: #D17184;
}

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

.price {
  text-align: center;
  padding: 40px 0 80px;
}

.price .discount {
  color: #D17184;
  font-size: 24px;
  text-align: center;
}

.price .price-detail {
  font-family: "PT Serif";
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 67px;
  letter-spacing: 0.2rem;
}

.price .price-detail .tax {
  font-size: 20px;
  font-style: normal;
  position: relative;
  top: -8px;
}

.price .price-detail .price-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
}

.price p {
  font-size: 20px;
}

.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 0;
}

.plan-content {
  border: 1px solid #333333;
  padding: 40px 60px;
  position: relative;
  margin-bottom: 70px;
}

.plan-content .em {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.plan-content .title {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.plan-content .title h3 {
  display: inline-block;
  margin-bottom: 0;
  background-color: #fff;
  padding: 0.8rem 3rem;
  border: 1px solid #333;
  border-radius: 30px;
}

.plan-content .col-04 {
  text-align: center;
  margin-bottom: 30px;
}

.plan-content .col-04 h4 {
  margin: 10px 0 0 0;
}

.plan-area .price {
  text-align: left;
}

.plan-area .price dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.plan-area .price dl dt {
  font-size: 24px;
}

.plan-area .price dl dt span {
  font-size: 14px;
  display: block;
}

.plan-area .price dl dd {
  font-size: 40px;
}

.plan-area .price dl dd .tax {
  font-size: 15px;
}

.plan-area .price dl dd .extension {
  font-size: 13px;
  display: block;
}

#option table {
  width: 100%;
  border-collapse: collapse;
}

#option table td {
  border-bottom: 1px solid #EEECE6;
  padding: 5px;
}

#option .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

#option .flex:last-child {
  margin-bottom: 0;
}

#flow h3 {
  font-size: 16px;
  text-align: center;
}

#flow p {
  font-size: 13px;
}

#flow a {
  color: #D17184;
  text-decoration: underline;
}

#photographer .flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 40px;
}

#photographer .flex:last-of-type {
  margin-bottom: 0;
}

#photographer .img {
  width: 55%;
}

#photographer .text {
  width: 45%;
}

#photographer .text h3 {
  font-family: "Inter";
  font-weight: 300;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 28px;
}

#photographer .text h3 img {
  width: 30px;
}

.contact-btn {
  position: fixed;
  right: 0;
  top: 23%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  background-color: #E6D8DA;
  padding: 25px 0;
  border-radius: 12px 0 0 12px;
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
}

/* 表示状態 */
.hamburger.is-visible,
.contact-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-btn a {
  background-color: #fff;
  display: block;
  padding: 15px;
  margin-top: 22px;
  border-radius: 5px;
  letter-spacing: 4px;
}

/* FAQパーツ */
.pageSubTitle2 {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
}

.contentText {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  color: #777;
  margin: 0;
}

.qa {
  padding-top: 180px;
  padding-bottom: 278px;
}

.qa__box {
  width: 100%;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #C4C4C4;
}

.qa__box > dl > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px;
  position: relative;
}

.qa__box > dl > dt .crossBar {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa__box > dl > dt > span {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  margin-right: 23px;
}

.qa__box > dl > dd {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding: 0px 30px;
  /* paddingの上下を0にする */
  max-height: 0;
  /* max-heightを0にする、レスポンシブ対応 */
  overflow: hidden;
  /* overflow: hidden;を付けるのがポイント */
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.qa__box > dl > dd > span {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  margin-right: 23px;
}

/* アニメーション後のスタイル */
.qa__box > dl > dd.is-open {
  /* heightとpaddingをアニメーション */
  max-height: 100px;
  padding: 10px 30px;
}

/* ＋ボタンのアニメーション */
.qa__box > dl > dt.is-open .crossBar::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  /* 90度回転 */
}

/* -------------------------
       Cards, badges etc.
    --------------------------*/
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
}

.card__in {
  padding: 20px;
}

.badge {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35em .8em;
  font-size: .85em;
  color: var(--ink-soft);
}

/* -------------------------
       Swiper tweaks
    --------------------------*/
.swiper {
  --swiper-navigation-size:28px;
}

.thumbs {
  margin-top: 12px;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
  -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: .6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-thumbnail .swiper-slide {
  opacity: .5;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  width: calc(100% / 5);
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

/* レイアウトのためのスタイル */
.swiper {
  width: 100%;
  margin-bottom: 1rem;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.slider-thumbnail .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

/* -------------------------
       Scroll reveal
    --------------------------*/
.reveal {
  font-size: 20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  color: #707070;
}

/* -------------------------
       Footer
    --------------------------*/
.footer {
  background: #222;
  color: #ddd;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.footer__in {
  padding: 40px 16px;
}

@media screen and (min-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px) {
  .pc-none {
    display: none !important;
  }
  .lead-section p {
    margin-bottom: 2rem;
  }
  .section {
    padding: 50px 0 50px;
  }
  .contact-btn {
    top: auto;
    bottom: 0;
    width: 100%;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    padding: 10px;
  }
  .contact-btn p {
    width: 100%;
    text-align: center;
  }
  .contact-btn a {
    width: 70%;
    text-align: center;
  }
  .flex .col-03 {
    width: 100%;
    margin-bottom: 40px;
  }
  .flex .col-03 .img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
  #point .flex .col-03:nth-child(2) {
    margin-top: 0;
  }
  .flex .grid04 {
    width: 50%;
  }
  .campaign-content {
    padding: 1rem;
  }
  .note-box {
    padding: 1rem;
  }
  .plan-content .em {
    text-align: left;
  }
  .plan-content {
    padding: 40px 20px;
  }
  .plan-content .col-04 {
    width: 32%;
  }
  .plan-content .flex:after {
    content: "";
    width: 31%;
    display: block;
  }
  .plan-content {
    padding: 40px 20px 20px;
  }
  .plan-area .price {
    padding: 0 0 80px;
  }
  .plan-area .price dl dt {
    width: 55%;
  }
  .plan-area .price dl dd {
    width: 45%;
    margin: 0;
  }
  .flex .col-02 {
    width: 100%;
  }
  .flex .col-06 {
    width: 48%;
  }
  #photographer .img {
    width: 100%;
    margin-bottom: 20px;
  }
  #photographer .text {
    width: 100%;
  }
  #photographer .flex:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #topic .flex .col-03 {
    width: 48%;
  }
  #salon .logo {
    max-width: 50%;
    display: block;
    margin: 0 auto 30px;
  }
  #salon .col-02 p {
    text-align: center;
  }
  #salon .tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .qa__box > dl > dt {
    padding: 0;
  }
  .qa__box > dl > dd.is-open {
    padding: 10px 0;
  }
}

@media screen and (max-width: 540px) {
  body {
    font-size: 3.73333vw;
  }
  .script {
    font-size: 20vw;
  }
  .reveal {
    font-size: 3.73333vw;
  }
  .hero h1 {
    font-size: 9vw;
  }
  .hero .lead {
    font-size: 4.5vw;
    margin-bottom: 50px;
  }
  .hot-news p {
    font-size: 3vw;
    padding: .5rem 1rem;
  }
  .lead-section p {
    font-size: 3.2vw;
  }
  .contact-btn p {
    font-size: 3.6vw;
    margin: 0;
  }
  .contact-btn a {
    font-size: 3.8vw;
    margin-top: 10px;
  }
  .plans h3 {
    font-size: 3.46667vw;
  }
  .gallery-content h3 {
    font-size: 5.33333vw;
  }
  .campaign-content h3 {
    font-size: 4.3vw;
  }
  .plan-area .content h3 {
    font-size: 4.8vw;
  }
  .plan-area .content h3 span {
    font-size: 4vw;
  }
  .note-box p {
    font-size: 3.46667vw;
  }
  .note-box p span {
    font-size: 4vw;
  }
  .price .discount {
    font-size: 4vw;
  }
  .price-num {
    font-size: 10vw;
  }
  .price .price-detail {
    gap: 10px;
    font-size: 10vw;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 1;
  }
  .price .price-detail img {
    width: 14vw;
  }
  .price .price-detail .tax {
    font-size: 3.2vw;
  }
  .price p {
    font-size: 4vw;
  }
  .plan-content .title {
    width: 60%;
  }
  .plan-content .title h3 {
    font-size: 3.7vw;
    padding: .8rem 0;
    width: 100%;
  }
  .plan-content .em {
    font-size: 3.46667vw;
  }
  .plan-content .col-04 h4 {
    font-size: 2.8vw;
  }
  .plan-area .price dl dt {
    font-size: 3.46667vw;
  }
  .plan-area .price dl dd {
    font-size: 5.73333vw;
  }
  .plan-area .price dl dt span {
    font-size: 2.66667vw;
  }
  .plan-area .price dl dd .tax,
  .plan-area .price dl dd .extension {
    font-size: 2.93333vw;
  }
  .lead-section h2 {
    font-size: 4.8vw;
  }
  #photographer .script {
    font-size: 15vw;
  }
  #qa .script {
    font-size: 15vw;
  }
  .qa__box > dl > dt h3 {
    font-size: 3.46667vw;
  }
  .qa__box > dl > dt > span {
    font-size: 3.46667vw;
    margin-right: 7px;
  }
  .qa__box > dl > dd {
    font-size: 3.46667vw;
  }
  .qa__box > dl > dd > span {
    font-size: 3.46667vw;
    margin-right: 7px;
  }
}

/* ===============================
  フォームボックス（淡ピンク・角丸）
=============================== */

.block{
  display:block;
  margin-bottom: 30px;
}

.block02 {
  display:block;
  margin-bottom: 30px;
}

.block02 th {
  display:block;
}

.block > th,
.block > td{ display:block; }

.bscTbl01{
  background: #fff;                 /* 外枠の淡ピンク */
  border-radius: 16px;
  padding: 40px 50px;
  margin: 0 0 24px;
}
.bscTbl01 table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 18px;              /* 行間の余白 */
}

/* ラベル列 */
.bscTbl01 th{
  width: 100%;
  vertical-align: top;
  text-align: left;
  font-weight: 700;
  color: #2B2B2B;
  padding: 6px 12px 8px 4px;
}

.color-red {
  font-size: 12px;
  display: block;
  color: #D17184;
}

@media (max-width: 960px){
  .bscTbl01 th{ width:auto; padding:0 0 8px }
}

/* 入力列 */
.bscTbl01 td{ padding: 0 }

/* 必須バッジ */
.redHissu{
  display: inline-block;
  vertical-align: middle;
  margin-left: .5em;
  padding: .2em .6em;
  font-size: .82em;
  line-height: 1;
  color: #fff;
  background: #D94C66;  
  margin-bottom: 3px;               /* アクセント赤 */
}

/* 小さめ注記 */
.min-text{ color:#888; font-size:.9em; font-weight:600 }

/* ===============================
  テキスト/メール/日付/セレクト/テキストエリア
=============================== */
.bscTbl01 input[type="text"],
.bscTbl01 input[type="email"],
.bscTbl01 input[type="tel"],
.bscTbl01 input[type="date"],
.bscTbl01 select,
.bscTbl01 textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #EAE8EA;
  border-radius: 10px;
  background: #fff;
  color: #757575;
  font-size: 16px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 0 0 0 rgba(240,143,165,0);
}
.bscTbl01 textarea{ min-height:160px; resize:vertical }

/* フォーカス */
.bscTbl01 input:focus,
.bscTbl01 select:focus,
.bscTbl01 textarea:focus{
  border-color: #F08FA5;
  box-shadow: 0 0 0 3px rgba(240,143,165,.18);
}

/* プレースホルダ */
.bscTbl01 ::placeholder{ color: #B6B2B5 }

/* セレクト下矢印 */
.bscTbl01 select{
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #9a9a9a 50%) calc(100% - 22px) calc(50% - 3px)/8px 8px no-repeat,
    linear-gradient(135deg, #9a9a9a 50%, transparent 50%) calc(100% - 16px) calc(50% - 3px)/8px 8px no-repeat,
    linear-gradient(to right, transparent, transparent) 0 0/100% 100% no-repeat;
  padding-right: 44px;
}

/* ===============================
  ラジオ（CF7 use_label_element 前提）
=============================== */
.bscTbl01 .wpcf7-list-item{ display:block; margin:10px 0 }
.bscTbl01 .wpcf7-list-item label{
  position: relative;
  cursor: pointer;
  display: inline-block;
  line-height: 1.6;
}
/*.bscTbl01 .wpcf7-list-item input[type="radio"]{
  position:absolute; inset:0; width:0; height:0; opacity:0; pointer-events:none;
}*/
/*.bscTbl01 .wpcf7-list-item label::before{
  content:""; position:absolute; left:0; top:4px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid #D94C66; background:#fff;
}*/
.bscTbl01 .wpcf7-list-item label::after{
  content:""; position:absolute; left:4px; top:8px;
  width:10px; height:10px; border-radius:50%;
  background:#D94C66; transform:scale(0); transition:transform .15s ease;
}
/*.bscTbl01 .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after,
.bscTbl01 .wpcf7-list-item input[type="radio"]:checked + label::after{
  transform: scale(1);
}*/

/* ===============================
  来店希望日のミニ表（nbd） 2カラム
=============================== */
.bscTbl01 table.nbd{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 6px;
}
.bscTbl01 table.nbd td{
  padding: 0 10px 0 0;
  vertical-align: middle;
  white-space: nowrap;
  color: #888;
  font-weight: 600;
}
.bscTbl01 table.nbd tr:nth-child(2) td{
  color: inherit; font-weight: 400;
}
.bscTbl01 table.nbd tr:nth-child(2) td:nth-child(1){ width: 50% }
.bscTbl01 table.nbd tr:nth-child(2) td:nth-child(2){ width: 50%; padding-right:0 }

@media (max-width: 640px){
  .bscTbl01 table.nbd td{ display:block; width:100%; padding-right:0; margin:0 0 8px }
}

/* 小見出しユーティリティ */
.bscTbl01 .bold{ font-weight:700 }
.bscTbl01 .mb10{ margin-bottom:10px }
.bscTbl01 .mb10 + .mb10{ margin-top:14px }

/* ===============================
  プライバシー同意
=============================== */
.checkPrivacy{
  display: grid;
  gap: 10px;
}
.checkPrivacy a{
  color:#D94C66;
  text-underline-offset:3px;
  text-decoration: underline;
  font-weight:700;
}
.privacyP{ margin:0; color:#2B2B2B; text-align: center; }
.privacyP .redHissu{ margin-left:.8em }

/* acceptance checkbox */
.checkPrivacy .wpcf7-acceptance{ display:inline-block }
.checkPrivacy .wpcf7-acceptance label{
  position: relative; padding-right: 50px; cursor: pointer; display:inline-block;
}
/*.checkPrivacy input[type="checkbox"]{
  position:absolute; width:0; height:0; opacity:0; pointer-events:none;
}*/
/*.checkPrivacy .wpcf7-acceptance label::before{
  content:""; position:absolute; left:0; top:3px;
  width:18px; height:18px; border-radius:6px; background:#fff; border:1.5px solid #D94C66;
}*/
.checkPrivacy .wpcf7-acceptance label::after{
  content:""; position:absolute; left:4px; top:7px; width:10px; height:6px;
  border-left:2px solid #D94C66; border-bottom:2px solid #D94C66;
  transform: rotate(-45deg) scale(0); transition: transform .15s ease;
}
.checkPrivacy input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
.checkPrivacy input[type="checkbox"]:checked + label::after{
  transform: rotate(-45deg) scale(1);
}

/* ===============================
  送信ボタン
=============================== */
.subscribeBtn{ text-align:center; margin-top:18px }
.subscribeBtn .roBtn{
  display:inline-block;
  min-width:220px;
  padding:14px 26px;
  border:0;
  border-radius:999px;
  background:#F08FA5;                 /* ボタンピンク */
  color:#fff;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:0 6px 16px rgba(240,143,165,.12);
  cursor:pointer;
  transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
}
.subscribeBtn .roBtn:hover{
  background:#E37790;                  /* hover */
  transform: translateY(-1px);
}
.subscribeBtn .roBtn:disabled{
  opacity:.5; cursor:not-allowed; transform:none;
}

/* ===============================
  CF7 メッセージ整形
=============================== */
.wpcf7 form .wpcf7-response-output{
  margin:16px 0 0;
  padding:10px 14px;
  border:1px solid #D94C66;
  border-radius:8px;
  color:#D94C66;
  background:#fff;
}
.wpcf7-not-valid-tip{
  margin-top:6px;
  font-size:.9em;
  color:#D94C66;
}

/* ===============================
  レスポンシブ（th/td縦積み）
=============================== */
@media (max-width: 960px){
  .bscTbl01 table{ border-spacing:0 14px }
  .bscTbl01 tr{ display:block; padding-bottom:12px }
  .bscTbl01 th{ display:block; margin-bottom:6px }
  .bscTbl01 td{ display:block }
}

@media screen and (max-width: 750px) {
  .bscTbl01 {
    padding: 30px 15px;
  }
  .bscTbl01 input[type="text"], .bscTbl01 input[type="email"], .bscTbl01 input[type="tel"], .bscTbl01 input[type="date"], .bscTbl01 select, .bscTbl01 textarea{
    font-size: 14px;
  }
  .checkPrivacy {
    text-align: center;
  }
  .subscribeBtn {
    position: relative;
  }
  .checkPrivacy .wpcf7-acceptance label {
    padding-right: 0;
  }
  .wpcf7-spinner {
    position: absolute;
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */