@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #fff;
  --black-color: #001c2b;
  --pink-color: #fffcfd;
  --pink-color02: #fff7fa;
  --accent-color03: #ff9dbc;
  --primary-color: #ff6d9b;
  --brown-color04: #351800;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  /* --content-width: 936px; */
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

body {
  color: var(--brown-color04);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* layer */

.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.page-home,
.page-menu,
.page-staff,
.page-blog,
.page-recruit,
.page-company {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.l_header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: 80px;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
}

.l_header-nav {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: block;
  }
}

.l_header-nav_list {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    flex-direction: row;
  }
}

.l_header-nav_item {
  color: var(--white-color);
  font-size: 20px;
  letter-spacing: 0.1em;
  transition:
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.l_header-nav_item:hover {
  transform: translateY(-4px);
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  opacity: 0.6;
}

.l_header-nav_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.page-home .l_header-nav_item:nth-child(1) .l_header-nav_link,
.page-menu .l_header-nav_item:nth-child(2) .l_header-nav_link,
.page-staff .l_header-nav_item:nth-child(3) .l_header-nav_link,
.page-blog .l_header-nav_item:nth-child(4) .l_header-nav_link,
.page-recruit .l_header-nav_item:nth-child(5) .l_header-nav_link,
.page-company .l_header-nav_item:nth-child(6) .l_header-nav_link {
  color: var(--accent-color03);
}

.l_header_icon-group {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .l_header_icon-group {
    display: none;
  }
}

/* top */

.top_kv {
  width: 100%;
  height: 80vh;
  position: relative;
  top: 0;
  margin-top: 0;
  background: url("../img/veluna.top:img.png") 40% top / cover no-repeat;
}

@media screen and (min-width: 1080px) {
  .top_kv {
    height: 100vh;
    min-height: 700px;
    background-position: center top;
    background-size: cover;
  }

  .top_kv::before {
    background-position: center top;

    background-size: cover;
  }
}

.top_kv-inner {
  position: relative;
  height: 100%;
  z-index: 2;
}

.top_kv_box {
  width: 85%;
  position: absolute;
  top: 70%;
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 3;
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .top_kv_box {
    width: auto;
  }
}

.top_kv_sub-copy {
  font-size: 14px;
  font-family: "Ibarra Real Nova", serif;
  margin-left: 30px;
}

@media screen and (min-width: 1080px) {
  .top_kv_sub-copy {
    font-size: 30px;
  }
}

.top_kv_copy {
  font-size: 32px;
  font-family: "Ibarra Real Nova", serif;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1080px) {
  .top_kv_copy {
    font-size: 65px;
  }
}

.top_kv_desc {
  font-family: "Beau Rivage", cursive;
  color: var(--primary-color);
  font-size: 26px;
}

@media screen and (min-width: 1080px) {
  .top_kv_desc {
    font-size: 48px;
  }
}

.top_kv_desc-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  margin-top: 12px;
}

@media screen and (min-width: 1080px) {
  .top_kv_desc-sub {
    font-size: 24px;
  }
}

.top_concept {
  background-color: var(--pink-color);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_concept {
    padding: 0;
  }
}

.top_concept_inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 1080px) {
  .top_concept_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.top_concept_img_blok {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_concept_img_blok {
    order: 3;
    height: 420px;
    /* position: relative; */
    width: 80%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
    opacity: 0;
    transform: translateX(80px); /* 左側にずらしておく */
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .top_concept_img_blok.is-show {
    opacity: 1;
    transform: translateX(0); /* 元の位置に戻る */
  }
}

.top_concept_img_blok img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .top_concept_img_blok img {
    height: 100%;
  }
}

.top_concept_copy_box {
  position: absolute;
  bottom: 20px;
  left: 35%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1080px) {
  .top_concept_copy_box {
    order: 1;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 32%;
    flex: none;
    margin: 0;
    padding: 0 40px;
    text-align: left;
    white-space: normal;
  }
}

.top_concept_title {
  font-size: 24px;
  font-family: "Ibarra Real Nova", serif;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1080px) {
  .top_concept_title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.top_concept_accent {
  font-family: "Beau Rivage", cursive;
  color: var(--accent-color03);
  font-size: 30px;
  display: inline-block;
  margin: 0 4px;
}

@media screen and (min-width: 1080px) {
  .top_concept_accent {
    font-size: 48px;
  }
}

.top_concept_sub-text {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1080px) {
  .top_concept_sub-text {
    font-size: 16px;
  }
}

.top_concept_text_blok {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 60px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1080px) {
  .top_concept_text_blok {
    order: 2;
    text-align: center;
    padding-left: 40px;
  }
}

.top_concept_label {
  font-size: 18px;
  color: var(--accent-color03);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
}

.top_concept_heading {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", serif;
}

.top_concept_desc {
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (min-width: 1080px) {
  .top_concept_desc {
    font-size: 18px;
    white-space: nowrap;
  }
}

/* 各テキスト要素の初期設定（上からふわっと落ちる） */
.top_concept_label,
.top_concept_heading,
.top_concept_desc {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* 画面内に入った時に付与するクラス */
.top_concept_text_blok.is-show .top_concept_label,
.top_concept_text_blok.is-show .top_concept_heading,
.top_concept_text_blok.is-show .top_concept_desc {
  opacity: 1;
  transform: translateY(0);
}

/* 順番に落ちてくる時間差（delay）の設定 */
.top_concept_text_blok.is-show .top_concept_label {
  transition-delay: 0s; /* 1番目：すぐ発火 */
}

.top_concept_text_blok.is-show .top_concept_heading {
  transition-delay: 0.2s; /* 2番目：0.2秒後 */
}

.top_concept_text_blok.is-show .top_concept_desc {
  transition-delay: 0.4s; /* 3番目：0.4秒後 */
}

.top_menu {
  padding: 20px 0 60px;
  background-color: var(--pink-color02);
}

@media screen and (min-width: 1080px) {
  .top_menu {
    padding: 80px 0;
  }
}

.top_menu_title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-color03);
  margin-top: 60px;
}

@media screen and (min-width: 1080px) {
  .top_menu_title {
    font-size: 36px;
    margin-bottom: 100px;
  }
}

.top_menu_grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  /* max-width: 550px; */
  margin: 0 auto 40px;
  box-sizing: border-box;
}

@media screen and (min-width: 1080px) {
  .top_menu_grid {
    flex-direction: row;
    /* max-width: 100%; */
    gap: 0;
    margin: 0 auto 80px;
    padding: 0 80px 0 80px;
  }
}

.top_menu_col {
  width: 100%;
  padding: 40px 0 60px 0;
  border-bottom: 1px solid var(--brown-color04);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  box-sizing: border-box;
}

@media screen and (min-width: 1080px) {
  .top_menu_col {
    padding: 0 50px;
    border-bottom: none;
    border-right: 1px solid var(--brown-color04);
  }
}

.top_menu_col:last-child {
  border-bottom: none;
}

@media screen and (min-width: 1080px) {
  .top_menu_col:last-child {
    border-right: none;
  }
}

.top_menu_category {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

@media screen and (min-width: 1080px) {
  .top_menu_category {
    margin-bottom: 60px;
  }
}

/* ----------------------------------
 * メニュー列（top_menu_col）内のアニメーション初期設定
 * ---------------------------------- */
.top_menu_category,
.top_menu_item {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

/* 画面に入ったら元の位置へ */
.top_menu_col.is-show .top_menu_category,
.top_menu_col.is-show .top_menu_item {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------
 * 1. 各要素の順番（カテゴリ名 → メニュー1 → メニュー2...）
 * ---------------------------------- */
.top_menu_col.is-show .top_menu_category {
  transition-delay: calc(var(--col-delay, 0s) + 0s); /* 1番目: カテゴリ名 */
}

/* 各アイテムの順番（nth-child で展開） */
.top_menu_col.is-show .top_menu_item:nth-child(1) {
  transition-delay: calc(
    var(--col-delay, 0s) + 0.12s
  ); /* 2番目: 最初のメニュー */
}
.top_menu_col.is-show .top_menu_item:nth-child(2) {
  transition-delay: calc(var(--col-delay, 0s) + 0.22s); /* 3番目 */
}
.top_menu_col.is-show .top_menu_item:nth-child(3) {
  transition-delay: calc(var(--col-delay, 0s) + 0.32s); /* 4番目 */
}
.top_menu_col.is-show .top_menu_item:nth-child(4) {
  transition-delay: calc(var(--col-delay, 0s) + 0.42s); /* 5番目 */
}

/* ----------------------------------
 * 2. 列ごとの横並び順番差 (1列目 → 2列目 → 3列目...)
 * ---------------------------------- */
.top_menu_col:nth-child(1) {
  --col-delay: 0s;
}
.top_menu_col:nth-child(2) {
  --col-delay: 0.15s;
}
.top_menu_col:nth-child(3) {
  --col-delay: 0.3s;
}

.top_menu_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top_menu_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
  gap: 20px;
}

.top_blog {
  padding: 60px 0;
  background: var(--pink-color);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_blog {
    padding: 80px 0;
  }
}

.top_blog_title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color03);
  margin-bottom: 30px;
}

@media screen and (min-width: 1080px) {
  .top_blog_title {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

.top_blog_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* max-width: 550px; */
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .top_blog_list {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding: 0 80px 0 80px;
    max-width: 100%;
  }
}

.top_blog_card {
  width: 100%;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  text-align: left;
}

.top_blog_link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.top_blog_link:hover {
  opacity: 0.8;
}

.top_blog_img_wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.top_blog_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.top_blog_link:hover .top_blog_img {
  transform: scale(1.06);
  opacity: 0.75;
}

.top_blog_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.top_blog_tag {
  background-color: var(--accent-color03);
  color: var(--white-color);
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 50px;
}

.top_blog_card_title {
  font-weight: bold;
}

/* ----------------------------------
 * ブログカード内のアニメーション初期設定
 * ---------------------------------- */
/* 画像ラッピング と メタ情報（日付・タグなど）を上に浮かせる */
.top_blog_card .top_blog_img_wrap,
.top_blog_card .top_blog_meta,
.top_blog_card .top_blog_card_title {
  opacity: 0;
  transform: translateY(-25px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

/* カード全体が画面に入った（.is-show）時の着地設定 */
.top_blog_card.is-show .top_blog_img_wrap,
.top_blog_card.is-show .top_blog_meta,
.top_blog_card.is-show .top_blog_card_title {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------
 * 1. カード内の要素の順番（画像 → メタ → タイトル）
 * ---------------------------------- */
.top_blog_card.is-show .top_blog_img_wrap {
  transition-delay: calc(var(--card-delay, 0s) + 0s); /* 1番目: 画像 */
}
.top_blog_card.is-show .top_blog_meta {
  transition-delay: calc(var(--card-delay, 0s) + 0.15s); /* 2番目: メタ情報 */
}
.top_blog_card.is-show .top_blog_card_title {
  transition-delay: calc(var(--card-delay, 0s) + 0.25s); /* 3番目: タイトル */
}

/* ----------------------------------
 * 2. 3つのカードの横並び順番差 (1枚目 → 2枚目 → 3枚目)
 * ---------------------------------- */
.top_blog_card:nth-child(1) {
  --card-delay: 0s;
}
.top_blog_card:nth-child(2) {
  --card-delay: 0.2s;
}
.top_blog_card:nth-child(3) {
  --card-delay: 0.4s;
}

.top_recruit {
  padding: 60px 0 0 0;
  background: var(--pink-color02);
  color: var(--brown-color04);
}

@media screen and (min-width: 1080px) {
  .top_recruit {
    padding-top: 80px;
  }
}

.top_recruit_title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color03);
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_recruit_title {
    font-size: 36px;
    margin-bottom: 50px;
    margin-left: 100px;
    text-align: left;
  }
}

.top_recruit_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media screen and (min-width: 1080px) {
  .top_recruit_list {
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
  }
}

.top_recruit_left {
  width: 100%;
  /* max-width: 550px; */
}

@media screen and (min-width: 1080px) {
  .top_recruit_left {
    width: 650px;
    flex-shrink: 0;
  }
}

.top_recruit_img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 /10;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_recruit_img {
    height: 420px;
    aspect-ratio: auto;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%);
    mask-image: linear-gradient(to left, transparent 0%, black 25%);
    opacity: 0;
    transform: translateX(-80px); /* 左側にずらしておく */
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .top_recruit_img.is-show {
    opacity: 1;
    transform: translateX(0); /* 元の位置に戻る */
  }
}

.top_recruit_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 1080px) {
  .top_recruit_img img {
    height: 100%;
  }
}

.top_recruit_right {
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
}

@media screen and (min-width: 1080px) {
  .top_recruit_right {
    text-align: center;
  }
}

.top_recruit_heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media screen and (min-width: 1080px) {
  .top_recruit_heading {
    font-size: 22px;
  }
}

.top_recruit_desc {
  font-size: 11px;
  margin-bottom: 32px;
}

@media screen and (min-width: 1080px) {
  .top_recruit_desc {
    font-size: 16px;
    /* white-space: nowrap; */
  }
}

/* top_recruit 内のテキスト初期状態（上から落ちる設定） */
.top_recruit_heading,
.top_recruit_desc {
  opacity: 0;
  transform: translateY(-25px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

/* 親要素（.top_recruit_right）に is-show が付いたら順番に表示 */
.top_recruit_right.is-show .top_recruit_heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s; /* 1番目：すぐ発火 */
}

.top_recruit_right.is-show .top_recruit_desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s; /* 2番目：0.15秒後に素早く追従 */
}

.top_access {
  padding-bottom: 60px 0;
  background: var(--pink-color02);
}

@media screen and (min-width: 1080px) {
  .top_access {
    padding-bottom: 80px;
  }
}

.top_access_title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color03);
  margin-bottom: 24px;
  margin-top: 60px;
  margin-left: 0px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_access_title {
    font-size: 36px;
    margin-top: 40px;
    /* margin-left: 100px; */
    text-align: center;
    grid-area: title;
  }
}

.top_access_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 1080px) {
  .top_access_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title map"
      "info map";
    /* flex-direction: row; */
    align-items: start;
    gap: 20px;
  }
}

.top_access_left {
  width: 100%;
  padding-top: 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 2;
  margin-bottom: 60px;
}

@media screen and (min-width: 1080px) {
  .top_access_left {
    align-items: center;
    text-align: left;
    grid-area: info;
    width: 100%;
    /* order: 1; */
  }
}

.top_access_info {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans";
  font-size: 14px;
  line-height: 2;
  margin-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_access_info {
    font-size: 20px;
    /* margin-left: 150px; */
    text-align: left;
  }
}

.top_access_btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .top_access_btns {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.top_access_right {
  width: 100%;
  order: 1;
}

@media screen and (min-width: 768px) {
  .top_access_right {
    grid-area: map;
    width: 100%;
  }
}

.top_access_map {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_access_map {
    height: 450px;
  }
}

.top_access_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.top_recruit .l_container,
.top_access .l_container {
  padding-left: 0;
  padding-right: 0;
}

/* メニュー */

.menu_contents_inner {
  margin: 0 auto;
  overflow: visible;
}

.menu_tab_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white-color);
}

.menu_tab_nav-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 20px 0 20px 0;
}

@media screen and (min-width: 768px) {
  .menu_tab_nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.menu_tab_nav-list a {
  text-decoration: none;
  font-size: 12px;
  position: relative;
  display: block;
  transition: color 0.3s;
  padding-bottom: 4px;
  transition:
    transform 0.3s ease,
    color 0.3s;
}

@media screen and (min-width: 768px) {
  .menu_tab_nav-list a {
    font-weight: 20;
  }
}

.menu_tab_nav-list a:hover {
  transform: translateY(-4px);
}

.menu_tab_nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brown-color04);
  transition: width 0.8s ease; /* ラインがスルスル伸びる効果 */
}

.menu_tab_nav-list a.is-active {
  border-bottom: 1px solid var(--black-color);
}

.menu_detail {
  background: var(--pink-color);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 16px 60px 16px;
}

@media screen and (min-width: 768px) {
  .menu_detail {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    gap: 50px;
    /* ベースの共通設定 */
  }
}

/* ベースの落下設定 */
.menu_detail {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* 中のテキストボックスだけ少し遅れて落とす */
.menu_detail .menu_item_text-box {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.6s ease-out 0.15s,
    transform 0.6s ease-out 0.15s;
}

/* 着地 */
.menu_detail.is-show,
.menu_detail.is-show .menu_item_text-box {
  opacity: 1;
  transform: translateY(0);
}

.menu_item_img {
  flex: 0 0 45%;
}

@media screen and (min-width: 768px) {
  .menu_item_img {
    width: 380px;
    max-width: 350px;
    margin-top: 0;
  }
}

.menu_item_img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .menu_item_img img {
    aspect-ratio: 4 / 3;
  }
}

.menu_detail_extention,
.menu_detail_eyeblow {
  flex-direction: row-reverse;
  background: var(--pink-color02);
}

@media screen and (min-width: 768px) {
  .menu_detail_extention,
  .menu_detail_eyeblow {
    gap: 120px;
  }
}

@media screen and (min-width: 768px) {
  .menu_item_text-box {
    flex: 1;
    max-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title price"
      "desc price";
    flex-wrap: wrap;
    align-items: start;
    flex-direction: column;
    gap: 20px 60px;
  }
}

.menu_item_title-group {
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .menu_item_title-group {
    grid-area: title;
    text-align: center;
    margin-bottom: 0;
  }
}

.menu_item_title {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .menu_item_title {
    font-size: 32px;
  }
}

.menu_item_title-ja {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .menu_item_title-ja {
    font-size: 18px;
  }
}

.menu_price-list {
  margin: 0 auto 24px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .menu_price-list {
    grid-area: price;
    width: 48%;
    min-width: 240px;
    margin: 0;
    padding-top: 30px;
  }
}

.menu_price_list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--brown-color04);
  padding: 10px 0;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .menu_price_list-item {
    font-size: 16px;
  }
}

.menu_item_desc {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .menu_item_desc {
    grid-area: desc;
    text-align: center;
    margin-top: 15px;
    order: 2;
    font-size: 16px;
    white-space: nowrap;
  }
}

.menu_feature_list {
  font-size: 10px;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .menu_feature_list {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* スタッフ */

.l_staff {
  background-color: var(--pink-color);
}

.staff_coppy_text {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  .staff_coppy_text {
    font-size: 22px;
    padding-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .sp_onry {
    display: none;
  }
}

.staff_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media screen and (min-width: 768px) {
  .staff_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 120px 20px;
  }
}

.staff_item {
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--accent-color03);
  border-radius: 170px 170px 0 0;
  padding: 30px;
  padding-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .staff_item {
    width: 290px;
  }
}

.staff_img_wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.staff_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff_role {
  font-size: 12px;
  color: var(--accent-color03);
  margin-bottom: 4px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .staff_role {
    font-size: 16px;
  }
}

.staff_name {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .staff_name {
    font-size: 22px;
  }
}

.staff_desc {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .staff_desc {
    font-size: 16px;
  }
}

.staff_specialty {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

.specialty_label {
  display: inline-block;
  background-color: var(--pink-color02);
  color: var(--primary-color);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.specialty_text {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

/* 外枠（.staff_item）自体の初期状態 */
.staff_item {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

/* 画面内に入ったら着地 */
.staff_item.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 4つのカードを順番に落とす時間差（delay）の設定 */
.staff_item.is-show:nth-of-type(1) {
  transition-delay: 0s;
} /* 1つ目: すぐ落ちる */
.staff_item.is-show:nth-of-type(2) {
  transition-delay: 0.3s;
} /* 2つ目: 0.2秒後 */
.staff_item.is-show:nth-of-type(3) {
  transition-delay: 0.6s;
} /* 3つ目: 0.4秒後 */
.staff_item.is-show:nth-of-type(4) {
  transition-delay: 0.9s;
} /* 4つ目: 0.6秒後 */

/* 中身の初期状態 */
.staff_item .staff_img_wrapper,
.staff_item .staff_info {
  opacity: 0;
  transform: translateY(-15px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

/* 親カードが着地したら中身も表示 */
.staff_item.is-show .staff_img_wrapper,
.staff_item.is-show .staff_info {
  opacity: 1;
  transform: translateY(0);
}

/* 各カードごとの中身の表示タイミング */
.staff_item.is-show:nth-of-type(1) .staff_img_wrapper,
.staff_item.is-show:nth-of-type(1) .staff_info {
  transition-delay: 0.15s;
}

.staff_item.is-show:nth-of-type(2) .staff_img_wrapper,
.staff_item.is-show:nth-of-type(2) .staff_info {
  transition-delay: 0.35s;
}

.staff_item.is-show:nth-of-type(3) .staff_img_wrapper,
.staff_item.is-show:nth-of-type(3) .staff_info {
  transition-delay: 0.55s;
}

.staff_item.is-show:nth-of-type(4) .staff_img_wrapper,
.staff_item.is-show:nth-of-type(4) .staff_info {
  transition-delay: 0.75s;
}

/* ブログ */

.l_blog {
  padding: 80px 0;
  background-color: var(--pink-color);
}

@media screen and (min-width: 768px) {
  .l_blog {
    padding: 100px 0;
  }
}

.blog_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (min-width: 768px) {
  .blog_list {
    gap: 40px;
    padding: 0;
    max-width: 800px;
  }
}

.blog_card {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .blog_card {
    display: flex;
    align-items: stretch;
    gap: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--brown-color04);
  }
}

@media screen and (min-width: 768px) {
  .blog_card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* blog_card 自体の初期設定 */
.blog_card {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

/* 画面内に入ったら即座に着地（delayはなし） */
.blog_card.is-show {
  opacity: 1;
  transform: translateY(0);
}

.blog_card_img_wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .blog_card_img_wrap {
    width: 260px;
    min-width: 260px;
    height: 160px;
    margin-bottom: 0;
  }
}

.blog_card_img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 768px) {
  .blog_card_img {
    height: 100%;
    aspect-ratio: unset;
  }
}

.blog_badge {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  background-color: var(--accent-color03);
  color: var(--white-color);
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .blog_badge {
    font-size: 16px;
    padding: 6px 10px;
  }
}
@media screen and (min-width: 768px) {
  .blog_card_body {
    position: relative;
  }
}

.blog_card_desc {
  display: none;
}

@media screen and (min-width: 768px) {
  .blog_card_desc {
    font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
    display: block;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 15px;
  }
}

.blog_date {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .blog_date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    margin: 0;
    transform: translateX(150px);
  }
}

.blog_card_title {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .blog_card_title {
    font-size: 20px;
  }
}

/* ブログ記事 */

.blog_detail {
  padding: 110px 20px 80px;
  background: var(--pink-color);
  color: var(--brown-color04);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
}

@media screen and (min-width: 768px) {
  .blog_detail {
    padding: 160px 40px 120px;
  }
}

.blog_detail_inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .blog_detail_inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}

.blog_detail_head {
  margin-bottom: 28px;
}

@media screen and (min-width: 768px) {
  .blog_detail_head {
    margin-bottom: 40px;
  }
}

.blog_detail_date {
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .blog_detail_date {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.blog_detail_title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .blog_detail_title {
    font-size: 30px;
  }
}

.blog_detail_img-wrap {
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .blog_detail_img-wrap {
    margin-bottom: 50px;
  }
}

.blog_detail_img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .blog_detail_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

.blog_detail_body {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .blog_detail_body {
    font-size: 16px;
  }
}

.blog_detail_body p {
  margin-bottom: 18px;
}

@media screen and (min-width: 768px) {
  .blog_detail_body p {
    margin-bottom: 22px;
  }
}

.blog_detail_section {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .blog_detail_section {
    margin-top: 70px;
  }
}

.blog_detail_heading {
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--accent-color03);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .blog_detail_heading {
    font-size: 24px;
  }
}

.blog_detail_nav {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 25px 10px;
}

@media screen and (min-width: 768px) {
  .blog_detail_nav {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    gap: 30px;
  }
}

.blog_detail_nav-link {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.blog_detail_nav-link:hover {
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .blog_detail_nav-link {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .blog_detail_nav-link:last-child {
    text-align: right;
  }
}

.blog_detail_nav-back {
  width: 100%;
  order: -1;
  padding: 14px 20px;
  border: 1px solid var(--accent-color03);
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-color03);
  background: var(--white-color);
}

@media screen and (min-width: 768px) {
  .blog_detail_nav-back {
    width: 220px;
    order: 0;
    padding: 16px 20px;
    font-size: 14px;
    transition:
      background-color 0.3s ease,
      color 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .blog_detail_nav-back:hover {
    background: var(--accent-color03);

    color: var(--white-color);
  }
}

/* リクルート */

.l_recruit,
.recruit_work {
  background-color: var(--pink-color);
  padding: 60px 0 60px 0;
}

@media screen and (min-width: 768px) {
  .l_recruit,
  .recruit_work {
    padding: 100px 0 100px 0;
  }
}

.recruit_header {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .recruit_header {
    margin-bottom: 100px;
  }
}

.recruit_en_title {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .recruit_en_title {
    font-size: 26px;
  }
}

.recruit_ja_title {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .recruit_ja_title {
    font-size: 18px;
  }
}

.recruit_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .recruit_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recruit_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  box-sizing: border-box;
  border-right: 1px solid var(--brown-color04);
  border-bottom: 1px solid var(--brown-color04);
}

@media screen and (min-width: 768px) {
  .recruit_item {
    border-right: 1px solid var(--brown-color04);
    border-bottom: none;
  }
}

.recruit_item:nth-child(2n) {
  border-right: none;
}

@media screen and (min-width: 768px) {
  .recruit_item:nth-child(2n) {
    border-right: 1px solid var(--brown-color04);
  }
}

.recruit_item:nth-child(3),
.recruit_item:nth-child(4) {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .recruit_item:last-child {
    border-right: none;
  }
}

/* blog_card 自体の初期設定 */
.recruit_item {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

/* 画面内に入ったら着地 */
.recruit_item.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 上から順番に落ちてくる時間差（delay）の設定 */
.recruit_item.is-show:nth-of-type(1) {
  transition-delay: 0s;
} /* 1個目 */
.recruit_item.is-show:nth-of-type(2) {
  transition-delay: 0.15s;
} /* 2個目 */
.recruit_item.is-show:nth-of-type(3) {
  transition-delay: 0.3s;
} /* 3個目 */
.recruit_item.is-show:nth-of-type(4) {
  transition-delay: 0.45s;
} /* 4個目 */

.recruit_icon {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit_icon_img {
  width: auto;
  height: auto;
  max-width: 70px;
  max-height: 70px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .recruit_icon_img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 30px;
  }
}

.recruit_item_title {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 9px;
}

@media screen and (min-width: 768px) {
  .recruit_item_title {
    font-size: 16px;
  }
}

.recruit_item_desc {
  font-size: 8px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .recruit_item_desc {
    font-size: 12px;
  }
}

.recruit_lead {
  font-size: 10px;
  text-align: center;
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .recruit_lead {
    font-size: 16px;
    margin-top: 100px;
  }
}

.recruit_work {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .recruit_work {
    padding: 100px 0;
  }
}

.recruit_work_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .recruit_work_list {
    padding: 0 150px 0px 150px;
    gap: 120px;
  }
}

.recruit_work_img_wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 26px;
}

.recruit_work_item {
  text-align: center;
}

/* recruit_work_item の初期状態 */
.recruit_work_item {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

/* 画面内に入ったら着地 */
.recruit_work_item.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* PC等（横並び時）：1つ目・2つ目を時間差で落とす */
@media screen and (min-width: 768px) {
  .recruit_work_item.is-show:nth-of-type(1) {
    transition-delay: 0s;
  }
  .recruit_work_item.is-show:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  .recruit_work_item.is-show:nth-of-type(3) {
    transition-delay: 0.4s;
  }
}

.recruit_work_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit_work_item_title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 16px;
}

@media screen and (min-width: 768px) {
  .recruit_work_item_title {
    font-size: 22px;
  }
}

.recruit_work_desc {
  font-size: 9px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .recruit_work_desc {
    font-size: 16px;
  }
}

.recruit_message {
  background-color: var(--pink-color02);
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .recruit_message_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    margin: 0 auto;
  }
}

.recruit_message_left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .recruit_message_left {
    flex-direction: column;
    width: 450px;
    flex-shrink: 0;
    text-align: center;
  }
}

.recruit_message_header {
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .recruit_message_header {
    text-align: center;
    margin-bottom: 30px;
  }
}

.recruit_message_title {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .recruit_message_title {
    font-size: 24px;
  }
}

.recruit_message_ja_title {
  font-size: 9px;
}

@media screen and (min-width: 768px) {
  .recruit_message_ja_title {
    font-size: 12px;
  }
}

.recruit_messgae_profile {
  margin-bottom: 30px;
  flex-direction: column;
  display: flex;
  align-items: center;
}

.recruit_message_img_wrap {
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin: 0 auto 16px;
}

@media screen and (min-width: 768px) {
  .recruit_message_img_wrap {
    width: 300px;
    height: 300px;
  }
}

.recruit_message_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 各要素の初期状態 */
.recruit_message_title,
.recruit_message_ja_title,
.recruit_message_img,
.recruit_message_body {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

/* is-show が付いたら無条件で着地 */
.is-show .recruit_message_title,
.is-show .recruit_message_ja_title,
.is-show .recruit_message_img,
.is-show .recruit_message_body,
.recruit_message_body.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 落ちてくる順番とタイミング */
.is-show .recruit_message_title {
  transition-delay: 0s;
} /* 1番目 */
.is-show .recruit_message_ja_title {
  transition-delay: 0.15s;
} /* 2番目 */
.is-show .recruit_message_img {
  transition-delay: 0.3s;
} /* 3番目 */
.is-show .recruit_message_body {
  transition-delay: 0.45s;
} /* 4番目 */
@media screen and (min-width: 768px) {
  .recruit_message_body {
    flex-grow: 1;
    text-align: left;
    padding-top: 65px;
  }
}

.recruit_message_prpfile_name {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .recruit_message_prpfile_name {
    font-size: 24px;
  }
}

.recruit_message_body p {
  font-size: 11px;
  line-height: 2;
  margin-bottom: 24px;
  text-align-last: center;
}

@media screen and (min-width: 768px) {
  .recruit_message_body p {
    text-align-last: left;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 24px;
  }
}

.recruit_entry {
  background-color: #ffeff4;
  text-align: center;
  padding: 60px 0;
}

.recruit_entry_text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .recruit_entry_text {
    font-size: 36px;
  }
}

.recruit_entry_text span {
  color: var(--accent-color03);
}

.recruit_entry_sub {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .recruit_entry_sub {
    font-size: 24px;
  }
}

/* --- 1文字ずつの初期設定（落ちてくる準備） --- */
.recruit_entry_text .char,
.recruit_entry_sub .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out;
  color: inherit; /* ★親要素（h2やp）の文字色をそのまま引き継ぐ */
}

/* --- 画面内に入ったら1文字ずつ元の位置へ着地 --- */
.recruit_entry_text.is-show .char,
.recruit_entry_sub.is-show .char {
  opacity: 1;
  transform: translateY(0);
}

/* ★「未来」などの span だけ部分的にアクセントカラーにする */
.recruit_entry_text span .char {
  color: var(--accent-color03); /* ピンク等のアクセントカラー指定 */
}

/* カンパニー */

.company_philosophy {
  width: 100%;
  background: url(../img/company.img.png);
  background-size: cover;
  background-position: 10% top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .company_philosophy {
    background-position: right 95%;
    background-size: cover;
  }
}

.company_text_blok {
  padding: 100px 0;
  text-align: center;
}

.company_label {
  font-size: 16px;
  font-weight: bold;
  color: var(--accent-color03);
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .company_label {
    font-size: 24px;
  }
}

.company_heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 26px;
}

@media screen and (min-width: 768px) {
  .company_heading {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .u_sp_only {
    display: none;
  }
}

.company_desc {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .company_desc {
    font-size: 18px;
  }
}

/* --- .company_heading（1文字ずつ落ちる） --- */
.company_heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out;
  color: inherit;
}

.company_heading.is-show .char,
.company_text_blok.is-show .company_heading .char {
  opacity: 1;
  transform: translateY(0);
}

/* --- .company_desc（全体が上からふわっと落ちる） --- */
.company_desc {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

/* 見出しが打ち終わった後に少し遅れて落としたい場合 */
.company_desc.is-show,
.company_text_blok.is-show .company_desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s; /* タイトルからの時間差 */
}

.company_overview {
  width: 100%;
  background: url(../img/veluna.company03.png);
  background-size: cover;
  background-position: 50% top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .company_overview {
    background: url(../img/veluna.company02.png);
    background-position: 40% center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
  }
}

.company_overview_inner {
  padding: 100px 0;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .company_overview_inner {
    max-width: 850px;
  }
}

.company_overview_title {
  font-size: 16px;
  font-weight: bold;
  color: var(--accent-color03);
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .company_overview_title {
    font-size: 24px;
  }
}

.company_overview_list {
  margin: 0;
  padding: 0;
}

.company_overview_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
  border-bottom: 1px solid var(--brown-color04);
}

@media screen and (min-width: 768px) {
  .company_overview_item {
    padding: 22px 10px;
  }
}

.company_overview_item {
  opacity: 0;
  transform: translateY(-45px);
}

.company_overview_item.is-show {
  animation: overviewDrop 0.8s ease forwards;
}

@keyframes overviewDrop {
  0% {
    opacity: 0;
    transform: translateY(-45px);
  }

  70% {
    opacity: 1;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.company_overview_item dt {
  font-size: 14px;
  width: 30%;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .company_overview_item dt {
    font-size: 22px;
  }
}

.company_overview_item dd {
  font-size: 14px;
  text-align: right;
  width: 70%;
}

@media screen and (min-width: 768px) {
  .company_overview_item dd {
    font-size: 22px;
  }
}

/* common */

.sub_kv {
  width: 100%;
  height: 80vh;
  position: relative;
  top: 0;
  margin-top: 0;
}

.sub_kv_menu {
  width: 100%;
  height: 80vh;
  background: url("../img/veluna.menu.png") 65% top / cover no-repeat;
}

.sub_kv_menu {
  width: 100%;
  height: 80vh;
  position: relative;

  /* 目を開けた通常画像 */
  background-image: url("../img/veluna.menu.png");
  background-size: cover;
  background-position: 65% top;
  background-repeat: no-repeat;
}

.sub_kv_staff {
  width: 100%;
  height: 100hv;
  background-image: url("../img/velena.staff.png");
  background-size: cover;
  background-position: 50% top;
  background-repeat: no-repeat;
}

.sub_kv_recruit {
  width: 100%;
  height: 100hv;
  background-image: url("../img/veluna.recruit.png");
  background-size: cover;
  background-position: 50% top;
  background-repeat: no-repeat;
}

.sub_kv_blog {
  width: 100%;
  height: 100hv;
  background-image: url("../img/veluna.blog.jpg");
  background-size: cover;
  background-position: 50% center;
  background-repeat: no-repeat;
}

.sub_kv_company {
  width: 100%;
  height: 100hv;
  background-image: url("../img/veluna.makuspace.png");
  background-size: cover;
  background-position: 60% top;
  background-repeat: no-repeat;
}

.sub_kv_inner {
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 100px;
}

.sub_kv_logo {
  width: 200px;
  text-align: center;
  color: var(--white-color);
}

.sv_kv_logo_staff {
  color: var(--brown-color04);
}

.sv_kv_logo_blog {
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .sub_kv_logo {
    margin-left: 50px;
  }
}

.sub_kv_sub-copy {
  font-family: "Ibarra Real Nova", serif;
  font-size: 18px;
  font-weight: bold;
}

.sub_kv_title {
  font-family: "Ibarra Real Nova", serif;
  font-size: 36px;
  font-weight: bold;
}

.sub_kv_box {
  margin-top: 30px;
  width: 250px;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .sub_kv_box {
    margin-left: 50px;
    width: 300px;
  }
}

.sub_kv_page_title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .sub_kv_page_title {
    font-size: 40px;
  }
}

.sub_kv_desc {
  font-size: 14px;
}

.sub_kv_btn-wrapper {
  margin-left: 20px;
}

/* module */

.m_btn-wrapper {
  width: 230px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
  .m_btn-wrapper {
    width: 280px;
    height: 50px;
  }
}

.top_kv_btn-wrapper {
  margin-left: 0;
}

.m_btn {
  position: relative;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color03);
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(240, 123, 149, 0.3);
  transition: transform 0.3s ease;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .m_btn {
    font-size: 16px;
  }
}

.m_btn__reservation::after {
  content: ">";
  font-size: 14px;
  margin-left: 10px;
}

.m_btn__menu .m_btn__recruit {
  border: 1px solid var(--accent-color03, #e5a3b5);
  background: var(--white-color);
  color: var(--accent-color03);
  padding: 12px 60px;
  border-radius: 30px;
  font-size: 18px;
}

.m_btn::after {
  content: ">";
  font-size: 14px;
  margin-left: 10px;
}

/* 白地ボタン */

.m_btn__menu,
.m_btn__recruit,
.m_btn__google,
.m_btn__entry,
.m_btn__blog {
  background-color: var(--white-color);
  border: 1px solid var(--accent-color03);
  color: var(--accent-color03);
}

.m_btn:hover {
  transform: scale(1.08); /* ボタンがふんわり拡大！ */
  box-shadow: 0 6px 20px rgba(240, 123, 149, 0.5);
}

@media screen and (min-width: 768px) {
  .m_btn {
    transition: transform 0.3s ease;
  }

  .m_btn:hover {
    transform: scale(1.08);
  }
}
/* ハンバーガー */

.m_hamburger {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color03);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.m_hamburger:hover {
  transform: scale(1.12);
}

.m_hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white-color);
  border-radius: 2px;
}

.p_drawer_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, #fcf8f9 0%, #f9e8ed 100%);
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* メニュー開状態 */
.p_drawer_menu.is_open {
  opacity: 1;
  visibility: visible;
}

.p_drawer_inner {
  display: flex;
  flex-direction: column;
  padding: 30px 24px 40px;
  max-width: 500px;
  margin: 0 auto;
}

/* ドロワーヘッダー */
.p_drawer_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.p_drawer_logo {
  font-family: "Ibarra Real Nova", serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--brown-color04);
}

/* 閉じる「×」ボタン */
.p_drawer_close {
  position: relative;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.p_drawer_close_bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background-color: #555;
}

.p_drawer_close_bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p_drawer_close_bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* リスト領域 */
.p_drawer_list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.p_drawer_item {
  border-bottom: 1px solid #e8dcdd;
}

.p_drawer_link {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  text-decoration: none;
}

.p_drawer_link .en {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--brown-color04);
  margin-bottom: 2px;
}

.p_drawer_link .jp {
  font-size: 10px;
  color: var(--brown-color04);
}

/* 予約CTAボタン */
.p_drawer_cta {
  margin-top: 80px;
  margin-bottom: 24px;
  text-align: center;
}

.p_drawer_btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  background-color: var(--accent-color03, #f07b95);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(240, 123, 149, 0.3);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.p_drawer_btn:active {
  transform: scale(0.98);
}

/* フッター領域 */
.p_drawer_footer {
  text-align: center;
}

.p_drawer_sns {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}

.p_drawer_sns a {
  color: #888;
  text-decoration: none;
}

.p_drawer_sns .sep {
  margin: 0 8px;
  color: #ccc;
}

.p_drawer_copyright {
  font-size: 10px;
  color: #b8a8a9;
}

/* footer */

.l_footer {
  padding: 60px 0 30px;
  background-color: var(--pink-color);
}

.footer_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .footer_inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer_logo_block {
  font-family: "Ibarra Real Nova", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer_logo_block {
    margin-left: 50px;
  }
}

.footer_sub {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .footer_sub {
    font-size: 20px;
  }
}

.footer_title {
  font-size: 40px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .footer_title {
    font-size: 50px;
  }
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .footer_right {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.l_footer-nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .l_footer-nav_list {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.l_footer-nav_link {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.l_footer-nav_link:hover {
  transform: translateY(-4px);
  opacity: 0.6;
}

.page-home .l_footer-nav_item:nth-child(1) .l_footer-nav_link,
.page-menu .l_footer-nav_item:nth-child(2) .l_footer-nav_link,
.page-staff .l_footer-nav_item:nth-child(3) .l_footer-nav_link,
.page-blog .l_footer-nav_item:nth-child(4) .l_footer-nav_link,
.page-recruit .l_footer-nav_item:nth-child(5) .l_footer-nav_link,
.page-company .l_footer-nav_item:nth-child(6) .l_footer-nav_link {
  color: var(--accent-color03);
}

.m_inst {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  transition: transform 0.3s ease;
}

.m_inst:hover {
  transform: scale(1.12);
}

.m_inst img {
  width: 60px;
  height: auto;
  display: block;
}

.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
}

/* =========================
   PAGE TRANSITION
========================= */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--pink-color02);

  opacity: 1;
  visibility: visible;

  transition: opacity 0.8s ease;
  visibility: 0.8s ease;
}

.page-transition.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =========================
   EYES
========================= */

.blink-eyes {
  width: 180px;
  max-width: 45vw;
  overflow: visible;
}

/* 白目 */
.eye-white {
  fill: #fff;
  stroke: #000;
  stroke-width: 5;
}

/* 黒目 */
.iris {
  fill: #000;
}

/* 黒目の光 */
.highlight {
  fill: #fff;
}

/* まつ毛 */
.lash {
  fill: none;
  stroke: #000;
  stroke-width: 5;
  stroke-linecap: round;
}

/* 閉じた目 */
.closed-line,
.closed-lash {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  stroke-linecap: round;
}

/* 最初は閉じた目を隠す */
.eyes-closed {
  opacity: 0;
}

/* =========================
   瞬き
========================= */

.blink-eyes.is-blinking .eyes-open {
  animation: eyeOpen 1.2s ease forwards;
}

.blink-eyes.is-blinking .eyes-closed {
  animation: eyeClosed 1.2s ease forwards;
}

@keyframes eyeOpen {
  0% {
    opacity: 1;
  }

  35% {
    opacity: 1;
  }

  45% {
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes eyeClosed {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .blink-eyes {
    width: 140px;
  }
}

.page-transition-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.transition-logo {
  margin-top: 12px;
  text-align: center;
}

.transition-logo-sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
}

.transition-logo-main {
  margin: 4px 0 0;
  font-size: 28px;
  letter-spacing: 0.12em;
  font-family: "Ibarra Real Nova", serif;
}

.opening {
  position: fixed;
  inset: 0;

  background: linear-gradient(135deg, #fff7fa 0%, #f9e8ed 45%, #f4e5df 100%);

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
}

.opening.is-hide {
  opacity: 0;
  visibility: hidden;
}

.opening_logo {
  text-align: center;
}

/* eyelash salon */
.opening_sub {
  font-family: "Ibarra Real Nova", serif;

  font-size: 18px;
  letter-spacing: 0.22em;

  color: #9a777d;

  margin-bottom: 10px;

  opacity: 0;

  animation: openingSub 1.2s ease forwards;
}

/* SVG */
.opening_svg {
  width: min(70vw, 620px);
  height: auto;
}

/* VELUNA */
.opening_logo_text {
  font-family: "Ibarra Real Nova", serif;

  font-size: 105px;
  letter-spacing: 0.08em;

  fill: transparent;

  stroke: #b98b93;
  stroke-width: 1.2;

  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;

  animation:
    logoDraw 2.2s ease forwards,
    logoFill 1.2s ease forwards 2s;
}

@keyframes openingSub {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoDraw {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes logoFill {
  0% {
    fill: transparent;
    stroke: #b98b93;
  }

  100% {
    fill: #3f252b;

    stroke: #3f252b;
  }
}

.blog_detail_body h2 {
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--accent-color03);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .blog_detail_body h2 {
    font-size: 24px;
  }
}

.blog_detail_body p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .blog_detail_body p {
    font-size: 16px;
  }
}

.blog_detail_body h3 {
  margin-top: 32px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .blog_detail_body h3 {
    font-size: 20px;
  }
}

.blog_detail_body img {
  display: block;
  width: 100%;
  height: auto;
  margin: 30px 0;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .blog_detail_body img {
    margin: 40px 0;
  }
}

.blog_detail_body ul,
.blog_detail_body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.blog_detail_body li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .blog_detail_body li {
    font-size: 16px;
  }
}

.blog_pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.blog_pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.blog_pagination .page-numbers.current {
  background: var(--accent-color03);
  color: #fff;
}

.blog_pagination a.page-numbers:hover {
  background: var(--accent-color03);
  color: #fff;
}

.skip-opening #opening {
  display: none !important;
}

.staff_instagram {
  margin-top: 20px;
  display: inline-block;
  color: #ff9dbc;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.staff_instagram:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

.menu_detail {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu_detail.is-reverse {
  flex-direction: row-reverse;
}

/* 1・3・5...番目 */
.menu_detail:nth-of-type(odd) {
  background-color: #fff;
}

/* 2・4・6...番目 */
.menu_detail:nth-of-type(even) {
  background-color: var(--pink-color02);
}

.menu_detail.is-reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .menu_detail {
    column-gap: 100px;
  }
}
