@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Monsieur+La+Doulaise&family=Noto+Serif+JP&display=swap");
:root {
  --color-white: #ffffff;
  --color-dark-gray: #6e6560;
  --color-light-brown: #d9ccbc;
  --color-light-blue: #e3eef5;
  --color-blue-gray: #bfc8d1;
  --color-beige: #ede7e3;
  --color-light-gray: #eaeaea;
  --font-primary: "Noto Serif JP", serif;
  --font-accent: "Cormorant", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --content-width: 1000px;
}

/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: var(--color-white);
  color: var(--color-dark-gray);
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.section-title__en {
  font-family: var(--font-accent);
  font-size: 64px;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 48px;
  }
}

.section-title__jp {
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .section-title__jp {
    font-size: 12px;
  }
}

.info {
  background-color: #fafafa;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .info {
    flex-direction: column;
    align-items: start;
  }
}

.info__body {
  width: 50%;
  flex-shrink: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .info__body {
    width: 100%;
    padding: 52px 20px;
  }
}

.info__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.info__title-main {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .info__title-main {
    font-size: 30px;
  }
}
.info__title-main span {
  font-size: 22px;
}
@media screen and (max-width: 1023px) {
  .info__title-main span {
    font-size: 20px;
  }
}

.info__title-sub {
  font-size: 13px;
}
@media screen and (max-width: 1023px) {
  .info__title-sub {
    font-size: 12px;
  }
}

.info__time {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .info__time {
    margin-top: 16px;
  }
}

.info__time-head {
  padding: 6px 8px;
  border: 2px solid var(--color-dark-gray);
  border-radius: 4px;
  line-height: 1;
  text-align: center;
}

.info__time-body {
  font-family: var(--font-accent);
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .info__time-body {
    font-size: 22px;
  }
}

.info__reserved {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .info__reserved {
    gap: 18px;
  }
}
@media screen and (max-width: 768px) {
  .info__reserved {
    gap: 8px;
  }
}

.info__reserved-text {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.info__img {
  flex-grow: 1;
  min-height: 200px;
  overflow: hidden;
}
.info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info__button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 100%;
  height: 48px;
  background-color: #bfc8d1;
  border: 2px solid transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  transition: background-color 0.3s ease;
}
.header.scrolled {
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  margin-inline: auto;
  padding-inline: 30px;
  max-width: calc(var(--content-width) + 60px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 20px;
    justify-content: end;
  }
}

.header__drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__drawer {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 55;
  }
  .header__drawer.is-checked .header__drawer-bar:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .header__drawer.is-checked .header__drawer-bar:nth-child(2) {
    display: none;
  }
  .header__drawer.is-checked .header__drawer-bar:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
}

.header__drawer-icon {
  width: 27px;
  height: 18px;
  position: relative;
}

.header__drawer-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark-gray);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.header__drawer-bar:nth-child(1) {
  top: 0;
}
.header__drawer-bar:nth-child(2) {
  top: 8px;
}
.header__drawer-bar:nth-child(3) {
  top: 16px;
}

@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 390px;
    height: 100%;
    padding: 92px 40px 40px;
    background-color: var(--color-light-gray);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .header__nav.is-checked {
    transform: translateX(0);
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}

.header__nav-item {
  overflow: hidden;
}

.header__nav-link {
  display: inline-block;
  padding: 2px 4px;
  font-family: var(--font-accent);
  font-weight: var(--font-weight-semibold);
  position: relative;
  transition: opacity 0.3s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-dark-gray);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.header__nav-link:hover {
  opacity: 0.8;
}
.header__nav-link:hover::after {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .header__nav-link {
    padding: 4px 8px;
  }
}

.header__nav-title {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.header__nav-title-sub {
  font-size: 10px;
}

.header__nav-title-main {
  font-size: 22px;
  font-family: var(--font-accent);
  font-weight: var(--font-weight-semibold);
}
.header__nav-title-main span {
  font-family: var(--font-primary);
}

.footer {
  padding-block: 10px;
  background-color: var(--color-light-gray);
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 12px;
}

.inner {
  margin-inline: auto;
  padding-inline: 30px;
  max-width: calc(var(--content-width) + 60px);
}
@media screen and (max-width: 980px) {
  .inner {
    max-width: 660px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
    max-width: 640px;
  }
}

.fv {
  padding-top: 190px;
  height: 100vh;
  background: url("../images/top/fv.webp") no-repeat center calc(50% - 26px)/cover;
}
@media screen and (max-width: 1280px) {
  .fv {
    padding-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    padding-top: 90px;
    background-position: center center;
  }
}

.fv__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 1023px) {
  .fv__inner {
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner {
    text-align: center;
  }
}

.fv__lead {
  font-size: 32px;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 1023px) {
  .fv__lead {
    font-size: 26px;
  }
}
@media screen and (max-width: 980px) {
  .fv__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
  .fv__lead {
    font-size: 20px;
  }
}

.fv__text {
  font-size: 22px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .fv__text {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 980px) {
  .fv__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .fv__text {
    font-size: 14px;
  }
}

.concept {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .concept {
    padding-top: 80px;
  }
}

.concept__content {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .concept__content {
    flex-direction: column;
    align-items: start;
    gap: 48px;
  }
}

.concept__visual {
  width: 40%;
  flex-shrink: 0;
  padding-left: 30px;
  padding-bottom: 30px;
  position: relative;
}
.concept__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 1px solid var(--color-blue-gray);
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .concept__visual {
    width: 100%;
    padding-left: 20px;
    padding-bottom: 20px;
  }
}

.concept__image {
  overflow: hidden;
}
.concept__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.concept__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .concept__body {
    gap: 48px;
  }
}

.concept__lead {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.concept__lead-main {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
}
@media screen and (max-width: 1023px) {
  .concept__lead-main {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .concept__lead-main {
    font-size: 18px;
  }
}

.concept__lead-sub {
  font-weight: var(--font-weight-medium);
}

.concept__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.concept__button {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 150px;
  height: 42px;
  padding: 12px;
  line-height: 1;
  background-color: var(--color-white);
  border: 1px solid rgba(110, 101, 96, 0.5);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 980px) {
  .concept__button {
    margin-left: 0;
    width: 240px;
  }
}

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.concept__gallery {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .concept__gallery {
    margin-top: 80px;
  }
}

.concept__gallery-wrap {
  display: flex;
  gap: 10px;
  overflow: hidden;
}

.concept__gallery-list {
  display: flex;
  gap: 10px;
}

.concept__gallery-list--left {
  animation: infinity-scroll-left 40s linear infinite;
}

.concept__gallery-item {
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .concept__gallery-item {
    width: 100px;
  }
}

.menu__body {
  margin-top: 64px;
  margin-inline: auto;
  max-width: 840px;
}

.menu__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.menu__item {
  padding-block: 14px;
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.menu__name-en {
  font-size: 26px;
  font-family: var(--font-accent);
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 768px) {
  .menu__name-en {
    font-size: 20px;
  }
}

.menu__name-jp {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .menu__name-jp {
    font-size: 10px;
  }
}

.menu__price {
  font-size: 26px;
  font-family: var(--font-accent);
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 768px) {
  .menu__price {
    font-size: 20px;
  }
}

.menu__note {
  margin-top: 16px;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .menu__note {
    font-size: 12px;
  }
}

.menu__message {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.menu__text {
  text-align: center;
}

.cta {
  background: url("../images/top/cta-bg.webp") no-repeat left bottom/cover;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 0;
}

.cta__box {
  margin-inline: auto;
  max-width: 600px;
  padding: 40px 20px;
  border: 1px solid #bdbdbd;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 5;
}

.cta__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta__text {
  text-align: center;
}

.cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 220px;
  width: 100%;
  height: 48px;
  padding: 10px 20px;
  background-color: var(--color-blue-gray);
  border: 2px solid transparent;
  color: var(--color-white);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
}
.cta__button img {
  width: 20px;
  aspect-ratio: 1/1;
}

.qa__boxes {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .qa__boxes {
    margin-top: 48px;
  }
}

.qa__box.is-open .qa__box-head::before {
  opacity: 0;
}

.qa__box-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 40px 10px 20px;
  padding: 6px 40px 6px 10px;
  border-bottom: 1px solid var(--color-light-gray);
  position: relative;
}
.qa__box-head::before, .qa__box-head::after {
  content: "";
  width: 14px;
  height: 2px;
  background-color: var(--color-blue-gray);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.qa__box-head::before {
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .qa__box-head {
    padding: 6px 40px 6px 10px;
  }
}

.qa__box-head-icon {
  font-family: var(--font-accent);
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .qa__box-head-icon {
    font-size: 22px;
  }
}

.qa__box-head-text {
  text-align: left;
}

.qa__box-body {
  display: none;
  padding: 12px 10px 12px 62px;
  padding: 12px 10px 18px 44px;
}
@media screen and (max-width: 768px) {
  .qa__box-body {
    padding: 12px 10px 18px 44px;
  }
}

.about-kv {
  padding-block: 128px 64px;
  background-color: #fafafa;
  border-bottom: 2px solid var(--color-light-gray);
}
@media screen and (max-width: 768px) {
  .about-kv {
    padding-block: 88px 48px;
  }
}

.about-kv__message {
  margin-top: 48px;
  text-align: center;
}

.profile {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding-top: 80px;
  }
}

.profile__content {
  padding-left: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .profile__content {
    padding-left: 0;
    flex-direction: column;
    gap: 48px;
  }
}

.profile__visual {
  max-width: 200px;
  padding: 12px 12px 8px 8px;
  position: relative;
}
.profile__visual::before, .profile__visual::after {
  content: "";
  position: absolute;
  border: 1px solid var(--color-blue-gray);
  aspect-ratio: 1/1;
  z-index: 0;
}
.profile__visual::before {
  width: 65%;
  top: 0;
  right: 0;
}
.profile__visual::after {
  width: 20%;
  bottom: 0;
  left: 0;
}

.profile__image {
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.profile__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media screen and (max-width: 980px) {
  .profile__body {
    text-align: center;
  }
}

.profile__name {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
}
@media screen and (max-width: 768px) {
  .profile__name {
    font-size: 28px;
  }
}

.profile__button {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 100%;
  height: 48px;
  background-color: var(--color-blue-gray);
  border: 2px solid transparent;
  color: var(--color-white);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  padding: 10px 20px;
}
@media screen and (max-width: 980px) {
  .profile__button {
    margin-inline: auto;
  }
}

.features__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}

.features__card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 80px;
}
.features__card:nth-child(2n) {
  flex-direction: row;
}
.features__card:nth-child(2n) .features__card-image {
  box-shadow: -16px 16px 16px var(--color-blue-gray);
}
@media screen and (max-width: 1023px) {
  .features__card {
    gap: 54px;
  }
}
@media screen and (max-width: 980px) {
  .features__card {
    flex-direction: column;
  }
  .features__card:nth-child(2n) {
    flex-direction: column;
  }
  .features__card:nth-child(2n) .features__card-image {
    box-shadow: 10px 10px 10px var(--color-blue-gray);
  }
}

.features__card-image {
  width: 43%;
  flex-shrink: 0;
  box-shadow: 16px 16px 16px var(--color-blue-gray);
}
@media screen and (max-width: 980px) {
  .features__card-image {
    width: 100%;
    box-shadow: 10px 10px 10px var(--color-blue-gray);
  }
}

.features__card-main {
  flex-grow: 1;
}
@media screen and (max-width: 980px) {
  .features__card-main {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .features__card-main {
    width: 100%;
  }
}

.features__card-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  position: relative;
}
.features__card-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--color-dark-gray);
}
@media screen and (max-width: 980px) {
  .features__card-head {
    gap: 4px;
  }
  .features__card-head::after {
    width: 40px;
  }
}

.features__card-meta {
  display: flex;
  align-items: end;
  line-height: 1;
}

.features__card-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 100px;
  font-weight: var(--font-weight-semibold);
  color: rgb(from var(--color-blue-gray) r g b/0.6);
}
@media screen and (max-width: 980px) {
  .features__card-number {
    font-size: 80px;
  }
}

.features__card-en {
  margin-left: -32px;
  transform: translateY(-8px);
  font-family: var(--font-accent);
  font-size: 42px;
  font-style: italic;
  color: rgb(from var(--color-dark-gray) r g b/0.6);
}
@media screen and (max-width: 980px) {
  .features__card-en {
    margin-left: -24px;
    font-size: 36px;
    transform: translateY(-5px);
  }
}

.features__card-title {
  text-align: center;
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
}
@media screen and (max-width: 980px) {
  .features__card-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .features__card-title {
    font-size: 24px;
  }
}

.features__card-body {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 980px) {
  .features__card-body {
    margin-top: 32px;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

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

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

.u-ptb-120 {
  padding-block: 120px;
}
@media screen and (max-width: 768px) {
  .u-ptb-120 {
    padding-block: 80px;
  }
}

.u-scroll-margin {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .u-scroll-margin {
    scroll-margin-top: 80px;
  }
}

.fade {
  opacity: 0;
  transition: opacity 3.4s ease-out;
}
.fade.is-inview {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s ease-out;
}
.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.5s ease-out;
}
.fade-left.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.fade-mask {
  position: relative;
  overflow: hidden;
}
.fade-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(2px);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  transition: opacity 1.8s ease, backdrop-filter 1.8s ease;
}
.fade-mask.is-inview::after {
  opacity: 0;
  backdrop-filter: blur(0);
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-600 {
  transition-delay: 0.6s;
}