:root {
  --header-padding: 30px;
  --menu-btn-size: 50px;
  --header-gap: 40px;
  --bg-mint: #b9e0d6;
  --bg-light: #e9edef;
  --bg-menu: #99a8a6;
  --text: #1b1b1b;
  --line: #4d4d4d;
  --button: #2e327e;
  --max: 1120px;
  --caslon: "Adobe Caslon Pro", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --jp: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg-light);
  font-family: var(--jp);
  line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.serif-title, .serif-content { font-family: var(--caslon), var(--jp); font-weight: 400; }
 .sp { display: none; }


.site-header {
/*  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
  padding: 18px 28px;
  pointer-events: none;
  transition: opacity 1.4s ease;*/
  position: absolute; /* ← fixedをやめる */
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--header-gap);
  padding: var(--header-padding);
  transition: opacity 3.0s ease;
}
.site-header > * { pointer-events: auto; }
.hidden-ui { opacity: 0; }
.visible-ui { opacity: 1; }
.site-logo { width: 200px; }
.menu-btn {
  width: 50px; height: 50px; border: 0; background: transparent; cursor: pointer; position: relative; flex: 0 0 50px;
}
.menu-btn span {
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 10px 0;
  transition: 0.3s;
}
.menu-btn span:first-child { top: 18px; }
.menu-btn span:last-child { top: 32px; }

.menu-overlay {
  position: fixed; inset: 0; z-index: 100; display: grid; grid-template-columns: 1.05fr .95fr;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-overlay__media { background: center center / cover no-repeat url('../img/1_lp_0321_menu.jpg'); }
.menu-overlay__panel { background: var(--bg-menu); color: #fff; padding: 36px 0 40px 100px; position: relative; }
.menu-overlay__logo {
  position: absolute;
  top: var(--header-padding);
  right: calc(var(--header-padding) + var(--menu-btn-size) + var(--header-gap));
  width: 200px;
  display: block;
  margin: 0;
}
.menu-close {
  position: absolute;
  top: var(--header-padding);
  right: var(--header-padding);
  width: var(--menu-btn-size);
  height: var(--menu-btn-size);
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-close::before, .menu-close::after {
  content: ""; position: absolute; left: 4px; right: 4px; top: 21px; height: 2px; background: #fff;
}
.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }
.menu-overlay__nav { display: flex; flex-direction: column; gap: 27px; font-size: 25px; line-height: 1.2; margin-top:80px;  }
.menu-overlay__sns { display: flex; gap: 18px; margin-top: 64px; }
.menu-overlay__sns a img { width: 34px; height: 34px; }
.menu-overlay__nav a.link_block { margin-top: 30px ; }
.hero {
  position: relative; height: 100vh; min-height: 780px; background: #fff; overflow: hidden; z-index: 3;
}
.hero__white, .hero__bg { position: absolute; inset: 0; }
.hero__white { background: #fff; z-index: 1; }
.hero__bg {
  background-position: center center; background-size: cover; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 2;
}
.hero__bg.hero__bg--1 {
  background-position: center left; background-size: cover; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 2;
}
.hero__bg.is-active { opacity: 1; }
.hero__inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero__title {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.1; letter-spacing: .04em; color: #111; text-align: center;
  transition: color 1.5s ease, opacity 1.8s ease;
}
.hero.is-photo .hero__title { color: #fff; }

.main-copy {
/*  min-height: 310px; display: flex; align-items: center; justify-content: center; padding: 80px 0 80px;*/
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px;
  position: relative;
  z-index: 3;
  background: var(--bg-light);
}
.main-copy .wrap {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vertical-copy {
  writing-mode: vertical-rl; text-orientation: upright; font-size: 40px; line-height: 1.8; letter-spacing: .18em; margin: 0;
}
/*
.firenze { position: relative; height: 825px; }
.firenze__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.firenze__bg {
  position: absolute; inset: 0; background: center center / cover no-repeat url('../img/02bg.webp');
  transform: translateY(20%); transition: transform .1s linear;
}*/

.firenze {
  position: relative;
  height: 1700px;          /* 850px見せる + 850pxぶん次がかぶる */
  margin-top: -850px;      /* ②の裏から見え始める */
  z-index: 1;
}
.firenze__sticky {
  position: sticky;
  top: 0;
  height: 1200px;           /* 見せる高さを固定 */
  overflow: hidden;
}
.firenze__bg {
  position: absolute;
  inset: 0;
  background: bottom center / cover no-repeat fixed url('../img/02bg.webp');
}

.concept {
/*  position: relative; min-height: 820px; overflow: hidden; color: #fff;*/
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  z-index: 3;
  margin-top: 0px;      /* ③が850px見えたところで上から乗る */
}
.concept__visuals, .concept__visual, .concept__overlay { position: absolute; inset: 0; }
.concept__visual { background-position: center right; background-size: cover; opacity: 0; transition: opacity 1.6s ease; }
.concept__visual.is-active { opacity: 1; }
.concept__overlay { background: rgba(0,0,0,.24); }
.concept__roll {
  position: relative; z-index: 2; height: 820px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center;
  padding: 0 24px 60px;
}
.concept__roll-inner {
  max-width: 520px; text-align: left; font-size: 26px; line-height: 2.15; letter-spacing: .08em;
  transform: translateY(110%);
}
.concept__roll.is-animate .concept__roll-inner { animation: rollUpLoop 37s linear infinite; will-change: transform; }
.concept__closing { margin-top: 38px; }
@keyframes rollUpLoop {
  0% { transform: translateY(110%); }
  97.3% { transform: translateY(-90%); }
  100% { transform: translateY(-90%); }
}

.movie { padding: 120px 0 120px; text-align: center; }
.movie__heading { font-size: clamp(22px, 2.5vw, 36px); margin: 0 0 32px; line-height: 1.45; color: #333333;letter-spacing: 0.15em;}
.movie__heading span { /*font-size: .72em;*/ font-style: italic; }
.movie__frame { max-width: 920px; margin: 0 auto; background: #9d9d9d; aspect-ratio: 16 / 9; }
.movie__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.interview-intro img, .interview-outro img, .footer-visual img { width: 100%; height: auto; }

.interview {
  width: 100%;
  padding: 96px 0 90px;
  background: var(--bg-light);
}

.interview__intro.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 54px;
}

.interview__head {
  text-align: center;
  margin-bottom: 0;
}

.interview__head .eyebrow {
  font-size: 26px;
  margin: 0 0 8px;
  font-style: italic;
}

.interview__head h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  margin: 0;
}

.interview__lead {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 0;
  align-items: end;
}

.interview__lead-image {
  grid-column: 2;
  grid-row: 1;
  width: 115%;
  max-width: 900px;
  justify-self: end;
  margin-right: -200px;
}

.interview__lead-image img {
  width: 100%;
  height: auto;
}

.interview__lead-text {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  position: relative;
  z-index: 2;
  margin-right: -110px;
  padding: 0 0 34px 110px;
  font-size: 21px;
  line-height: 2.1;
}

.interview__lead-text p { margin: 0 0 26px; white-space: nowrap; }
.article-block { width: min(calc(100% - 48px), 1120px); margin: 42px auto 0; }
.article-block--split {
  display: grid; 
	grid-template-columns: 360px minmax(0, 1fr); 
	gap: 52px; 
	align-items: start; 
	margin: 0 auto;
}
.article-block--with-image {
  display: block;
  padding-left: 412px;
}
.article-block__image.narrow img { width: 100%; }
.article-block__image.narrow { width: 360px; }
.article-block__image.wide img, .interview-photo img { width: 100%; }
.text-unit { margin-top: 0; padding-top: 35px; border-top: 1px solid var(--line); }
#interview .text-unit:first-child { margin-top: 0; padding-top: 0px; border-top: 0px; }
.text-unit + .text-unit { margin-top: 55px; }
.text-unit h3 { font-size: 26px; font-weight: 500; line-height: 1.5; margin: 10px 0 25px; color: #4d4d4d; }
.text-unit h3.intbox { font-size: 24px; }
.text-unit p { margin:5px 0 35px; font-size: 17px; color: #4d4d4d; }
.interview-photo { width: 100%; margin: 54px 0 0; }
.interview .article-block.fade-block:not(.article-block--split):not(.article-block--with-image) {
  padding-left: 412px;
}
.interview .article-block__body {
  width: 100%;
}
.interview-photo--full { width: 100%; }
.interview-photo--full img { width: 100%; height: auto; display: block; }
.between-shots {
  width: min(calc(100% - 48px), 1120px);
  margin: 54px auto 0;
  padding-left: 412px;
}
.between-shots__inner {
  border: 1px solid var(--line);
  padding: 40px 55px 24px;
  background: transparent;
}
.between-shots__text {
  border-top: 0;
  margin-bottom: 20px;
  padding-top: 0;
}
.between-shots__photos {
  border: 0;
  padding: 0;
  background: transparent;
  margin-bottom: 20px;
}
.between-shots__text { border-top: none; margin-bottom: 18px; padding-top: 0; }
.between-shots__photos { /*border: 1px solid var(--line); padding: 18px; background: rgba(255,255,255,.65); */}
.between-shots__photos img + img { margin-top: 12px; }

.fade-block {
  opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s ease;
}
.fade-block.is-visible { opacity: 1; transform: translateY(0); }

.campaign { background: var(--bg-mint); padding: 90px 0; }
.campaign__panel {
  background: transparent; text-align: center;
}
.campaign__head { color: #111; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.campaign__head--image img {
  display: block;
  width: min(500px, 92vw);
  height: auto;
  margin: 0 auto;
}
.campaign__lead { max-width: 620px; margin: 34px auto 0; font-size: 22px; line-height: 2.05; }
.campaign__button { margin-top: 36px; }
.campaign__button a {
  display: inline-block;
  /*width: min(377px, 92vw);*/
}
.campaign__button a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}
.campaign__button a:hover {
  transform: translateY(-2px);
}
.campaign__button a:hover img {
  filter: brightness(1.08);
  opacity: .92;
}
.campaign__button a:active {
  transform: translateY(0);
}
.advice-card {
  margin: 54px auto 0;
  /* max-width: 1030px; */
  background: rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 60px 55px;
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
  gap: 30px;
  align-items: center;
  text-align: left;
  width: 100%;
}
.advice-card__icon img { width: 100%; margin: 0 auto; display: block; }
.advice-card__body h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; }
.advice-card__body p { margin: 0; font-size: 20px; }

.voices { background: #bfded3; padding: 18px 0 66px; width: 100%; }
.voices__title { text-align: center; font-size: clamp(28px, 3vw, 54px); margin: 0 0 34px; }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.voice-card {
  background: rgba(255,255,255,.9);
  border-radius: 10px;
  padding: 30px 30px 30px;
  font-size: 16px;
  line-height: 2.0;
  min-height: 190px;
}

.campaign--off { padding-top: 0; }
.campaign__panel--white {
  background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 18px; padding: 50px 28px 56px;
}
.footer-visual { background: var(--bg-mint); }

.site-footer {
  background: #efefef; text-align: center; padding: 58px 24px 72px;
}
.site-footer__copy { margin: 0 0 22px; font-size: 28px; }
.site-footer__logo { display: inline-block; width: min(360px, 58vw); }
.site-footer__sns { display: flex; justify-content: center; gap: 24px; margin-top: 24px; }
.site-footer__sns img { width: 36px; height: 36px; }

@media (max-width: 768px) {
  .sp { display: inline; }
  .wrap { width: min(calc(100% - 32px), 100%); }
  .site-header { padding: 14px 14px 0; gap: 10px; }
  .site-logo { width: 150px; }
  .menu-btn { width: 40px; height: 40px; }
  .menu-btn span:first-child { top: 14px; }
  .menu-btn span:last-child { top: 26px; }
  .menu-overlay { display: block; }
  .menu-overlay__media { display: none; }
  .menu-overlay__panel { min-height: 100vh; padding: 20px 28px 34px; }
  .menu-overlay__logo {
    position: absolute;
    top: 14px;
    right: calc(14px + 40px + 10px);
    width: 104px;
    margin: 0;
  }
  .menu-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
  .menu-close::before, .menu-close::after { top: 19px; }
  .menu-overlay__nav { font-size: 20px; gap: 18px; padding-top: 48px; margin-top: 62px; }
  .menu-overlay__sns { margin-top: 44px; }

  .hero { min-height: 540px; height: 64vw; max-height: 760px; }
  .hero__title { font-size: 18px; letter-spacing: .1em; }
  .main-copy { min-height: 168px; padding: 18px 0 22px; }
  .vertical-copy { font-size: 13px; line-height: 2; }

  .firenze {
    height: auto;
  }

  .firenze__sticky {
    position: relative;
    height: auto;
  }

  .firenze__bg {
    position: relative;
    inset: auto;
    aspect-ratio: 640 / 842;
    background-image: url('../img/02_sp.webp');
  }

  .concept { min-height: 470px; }
  .concept__roll { height: 470px; padding: 0 16px 24px; }
  .concept__roll-inner { font-size: 18px; /*max-width: 240px;*/ line-height: 2.05; }
  @keyframes rollUp {
    from { transform: translateY(108%); }
    to { transform: translateY(-95%); }
  }

  .movie { padding: 26px 0 40px; }
  .movie__heading {font-size: 24px;margin: 30px auto;}

  .interview {
    padding: 46px 0 42px;
  }

  .interview__intro.wrap {
    width: min(calc(100% - 32px), 100%);
    margin-bottom: 24px;
  }

  .interview__head {
    margin-bottom: 0;
  }

  .interview__head .eyebrow {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .interview__head h2 {
    font-size: 26px;
    letter-spacing: .04em;
  }

  .interview__lead,
  .article-block--split,
  .article-block--with-image {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .interview__lead {
    width: 100%;
    margin: 0 0 30px;
    grid-template-columns: 1fr;
  }

  .interview__lead-image {
    grid-column: 1;
    grid-row: 1;
    width: 85%;
    /* max-width: 260px; */
    justify-self: center;
    margin-right: 0;
  }

  .interview__lead-text {
    grid-column: 1;
    grid-row: 2;
    margin-right: 0;
    padding: 0 5%;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0em;
    font-weight: 600;
  }

  .interview__lead-text p {
    margin: 0 0 14px;
  }

  .article-block,
  .interview .article-block.fade-block:not(.article-block--split):not(.article-block--with-image),
  .article-block--with-image,
  .between-shots {
    /* width: min(calc(100% - 32px), 100%); */
    margin: 28px auto 0;
    padding-left: 0;
  }

  .article-block--split {
    gap: 18px;
  }

  .article-block__image.narrow {
    width: 90%;
    /* max-width: 270px; */
    margin: 0 auto;
  }

  .text-unit {
    padding-top: 12px;
  }

  #interview .text-unit:first-child {
    padding: 0 0%;
  }

  .text-unit + .text-unit {
    margin-top: 26px;
    /* width: 90%; */
    /* margin: 0 auto; */
  }

  .text-unit h3,
  .text-unit h3.intbox {
    font-size: 20px;
    line-height: 1.65;
    margin: 0px 0 10px;
    letter-spacing: .04em;
  }

  .text-unit p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 8px;
    letter-spacing: .02em;
  }

  .interview-photo {
    margin-top: 28px;
  }

  .between-shots__inner {
    padding: 14px 14px 16px;
  }

  .between-shots__photos {
    padding: 0;
    margin-bottom: 14px;
  }

  .between-shots__photos img + img {
    margin-top: 10px;
  }

  .campaign {
    padding: 34px 5% 38px;
  }

  .campaign__panel {
    width: min(calc(100% - 24px), 100%);
  }

  .campaign__head--image img {
    width: min(230px, 86vw);
  }

  .campaign__lead {
    /* max-width: 260px; */
    margin-top: 14px;
    font-size: 18px;
    line-height: 2.05;
    letter-spacing: .03em;
  }

  .campaign__button {
    margin-top: 14px;
  }

  .campaign__button a {
    /* width: min(188px, 64vw); */
  }

  .advice-card {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 24px 25px;
    border-radius: 8px;
    /* margin: 20px 5% 0 5%; */
    width: 90%;
  }

  .advice-card__icon img {
    width: 70%;
  }

  .advice-card__body h3 {
    font-size: 20px;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
  }

  .advice-card__body p {
    font-size: 18px;
    line-height: 2;
  }

  .voices {
    padding: 8px 0 34px;
  }

  .voices__title {
    font-size: 45px;
    margin-bottom: 18px;
    font-style: italic;
  }

  .voices__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
  }

  .voice-card {
    min-height: auto;
    padding: 20px 25px;
    font-size: 18px;
    line-height: 1.95;
    border-radius: 8px;
  }

  .campaign__panel--white {
    padding: 38px 30px 38px;
    border-radius: 8px;
  }

  .site-footer {
    padding: 30px 18px 65px;
  }

  .site-footer__copy {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .site-footer__logo {
    width: 70%;
    margin: 20px auto;
  }

  .site-footer__sns img {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 768px) {
  .interview__lead-text p { white-space: normal; }
  .between-shots__inner {padding: 27px;margin: 0 2%;}
}


/* === mobile adjustments requested 2026-04 === */
@media (max-width: 768px) {
  /* ② メインコピーが見えるように */
  .main-copy {
    min-height: 110px;
    padding: 20px 0 24px;
    position: relative;
    z-index: 3;
    overflow: visible;
  }

  .main-copy .wrap {
    min-height: auto;
    justify-content: center;
    align-items: center;
  }

  .vertical-copy {
    font-size: 22px;
    line-height: 1.9;
    letter-spacing: .14em;
    margin: 20px 0 0;
  }

  /* ③ フィレンツェ背景はスマホでは通常画像として表示 */
  .firenze {
    height: auto;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .firenze__sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .firenze__bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 640 / 842;
    background: center center / cover no-repeat url('../img/02_sp.webp');
    transform: none !important;
  }

  .voice-card { display:block; }
  .voice-card.is-sp-none { display:none; }
}


/* back to top */
.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(77,77,77,.65);
  border-radius: 50%;
  background: rgba(233,237,239,.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #4d4d4d;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease, background .25s ease;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.page-top:hover {
  background: rgba(255,255,255,.96);
}
.page-top__icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.page-top__icon::before,
.page-top__icon::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 11px;
  height: 1px;
  background: currentColor;
}
.page-top__icon::before {
  left: -3px;
  transform: rotate(-45deg);
  transform-origin: right center;
}
.page-top__icon::after {
  right: -3px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.page-top__label {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .14em;
}

@media (max-width: 768px) {
  .page-top {
    right: 14px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    gap: 4px;
  }
  .page-top__icon {
    width: 14px;
    height: 14px;
  }
  .page-top__icon::before,
  .page-top__icon::after {
    top: 5px;
    width: 10px;
  }
  .page-top__label {
    font-size: 9px;
  }
}


/* === mobile header/menu alignment fix 2026-04 === */
@media (max-width: 768px) {
  :root {
    --sp-header-x: 14px;
    --sp-header-top: 14px;
    --sp-logo-w: 150px;
    --sp-menu-btn-size: 40px;
  }

  .site-header {
    left: 0;
    right: 0;
    width: 100%;
    padding: var(--sp-header-top) var(--sp-header-x) 0;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .site-logo {
    width: var(--sp-logo-w);
    margin: 0;
    flex: 0 0 auto;
  }

  .menu-btn {
    width: var(--sp-menu-btn-size);
    height: var(--sp-menu-btn-size);
    flex: 0 0 var(--sp-menu-btn-size);
    margin: 0;
  }

  .menu-btn span {
    width: 34px;
    margin: 8px 0 0 auto;
  }

  .menu-overlay__panel {
    min-height: 100vh;
    padding: calc(var(--sp-header-top) + var(--sp-menu-btn-size) + 34px) 34px 34px;
  }

  .menu-overlay__logo {
    top: var(--sp-header-top);
    left: var(--sp-header-x);
    right: auto;
    width: var(--sp-logo-w);
    margin: 0;
  }

  .menu-close {
    top: var(--sp-header-top);
    right: var(--sp-header-x);
    width: var(--sp-menu-btn-size);
    height: var(--sp-menu-btn-size);
  }

  .menu-close::before,
  .menu-close::after {
    top: 19px;
    left: 3px;
    right: 3px;
  }

  .menu-overlay__nav {
    margin-top: 0;
    padding-top: 0;
    font-size: 20px;
    line-height: 1.45;
    gap: 18px;
  }

  .menu-overlay__nav a.link_block {
    margin-top: 22px;
  }

  .menu-overlay__sns {
    margin-top: 42px;
    gap: 20px;
  }

  .menu-overlay__sns a img {
    width: 34px;
    height: 34px;
  }
}

/* 以下20260406追加 suzuki */
.shop-movie{
  margin: 100px 0 10px;
}

.shop-movie p.shop__lead{
  margin-bottom: 25px;
  font-size: 23px;
}

.shop-interview{
  text-align: center;
  margin: 20px 0 70px;
}

.shop-interview p.shop__lead{
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 500;
}

.shop__button{
  display: inline-block;
}

.shop__button span{
  display: inline-block;
  background: var(--bg-mint);
  line-height: 1;
  border-radius: 50px;
  border: 1px solid var(--text);
  font-weight: 500;
}

.shop-interview .shop__button span{
  border: 1px solid #4d4d4d;
  color: #4d4d4d;
}

.shop-movie .shop__button span{
  font-size: 24px;
  padding: 32px 100px;
}

.shop-interview .shop__button span{
  padding: 26px 70px;
  font-size: 23px;
}
@media (min-width: 768px){
  .shop__button span:hover {
  filter: brightness(1.08);
  opacity: .92;
  transition: 0.5s;
  }

  .shop__button span:active {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .shop-movie{
    margin: 40px 0 10px;
  }
  .shop-interview{
    margin: 20px 0 50px;
  }
  .shop-movie .shop__button span, .shop-interview .shop__button span{
    padding: 15px 30px;
    font-size: 15px;
    min-width: 70%;
  }
  .shop-movie p.shop__lead, .shop-interview p.shop__lead{
    margin-bottom: 15px;
    font-size: 13px;
  }
}
