@charset "utf-8";

html {
  scroll-behavior: smooth;
}

:target,
[id] {
  scroll-margin-top: 60px;
}

#top {
  scroll-margin-top: 0;
}

:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-mincho: "ten-mincho-text", serif;
  --color-red: hsla(14, 75%, 45%, 1);
  --color-pink: hsla(13, 67%, 89%, 1);
  --color-deep-green: hsla(151, 100%, 28%, 1);
  --color-lite-green: hsla(120, 100%, 36%, 1);
  --color-green: hsla(96, 42%, 47%, 1);
  --color-white: hsla(0, 0%, 100%, 1);
  --color-lite-yellow: hsla(40, 39%, 94%, 1);
  --color-black: hsla(12, 4%, 23%, 1);
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-noto);

  background-image:
    image-set(url(../img/pc_back.png) 1x,
      url(../img/pc_back.png) 2x);

  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}



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

/* 中央のスマホサイズコンテンツ */
.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-white);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* 共通 */
.container_base {
  padding: 0 20px;
}

.section_main_title {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}

.section_subMain_text {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}

.subMain_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.04em;

}

.common_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;

}

.small_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

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

.color_red {
  color: var(--color-red);
}

.text_center {
  text-align: center;
}

.trim_both {
  text-box-trim: trim-both;
}

.font_medium {
  font-weight: 500;

}

.font_bold {
  font-weight: 700;
}

h5 {
  margin: 0;
}

/* --- フェードインの共通設定 --- */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
  will-change: opacity;
}


.fade-in.is-visible {
  opacity: 1;
}

/* contact */

.contact_section {
  padding: 64px 0;
  /* 画像の前に色を指定します。先に書いたものが「上」に重なります */
  background-image:
    linear-gradient(hsla(0, 0%, 0%, 0.6), hsla(0, 0%, 0%, 0.6)),
    image-set(url(../img/cta_back_img.jpg) 1x,
      url(../img/cta_back_img@2x.jpg) 2x);

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

}

.contact_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  border-radius: 999px;
  background: var(--color-lite-green);
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.25);
  padding: 12px 20px;
  max-width: 300px;
  transition: background-color .3s ease-out;
}

.contact_btn:hover {
  background-color: hsla(120, 59%, 49%, 1);
}

.contact_btn_text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

/* 共通ここまで */
/* ヘッダー */
.site_header {
  position: absolute;
  /* 絶対配置にして浮かせる */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* MVより上にくるように設定 */

  /* レイアウト調整（必要に応じて） */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px;
  background: transparent;
  /* 背景を透明にしてMVを見せる */
}

.header_text {
  font-weight: 400;
  font-size: 13px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;

}

.header_logo {
  max-width: 150px;
  transition: opacity .3s ease-out;
}

@media screen and (min-width: 400px) {
  .header_logo {
    max-width: 176px;
  }
}

.header_logo:hover {
  opacity: .6;
}

/* --- スマホ時はPCナビを隠す --- */
.pc_nav {
  display: none;
}

/* --- PCレイアウト設定 --- */
@media screen and (min-width: 1021px) {
  body {
    display: flex;
    /* 左右に並べる */
    justify-content: flex-start;
  }

  /* 左側の固定ナビゲーション */
  .pc_nav {
    display: block;
    position: fixed;
    /* 画面に固定 */
    top: 0;
    left: 0;
    width: calc(50% - 250px);
    height: 100vh;
    padding: 72px 137px;
    z-index: 100;
    padding: 0;
  }

  .pc_nav_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 72px 32px;
    overflow-y: auto;
    /* IE, Edge用 */
    -ms-overflow-style: none;
    /* Firefox用 */
    scrollbar-width: none;
  }

  /* Chrome, Safari, 新しいEdge用 */
  .pc_nav_inner::-webkit-scrollbar {
    display: none;
  }

  .pc_logo {
    transition: opacity .3s ease-out;
  }

  .pc_logo:hover {
    opacity: 0.6;
  }

  .pc_menu {
    list-style: none;
    padding: 0;
    margin: 48px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav_link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav_link_text {
    color: var(--color-white);
    font-family: var(--font-mincho);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;

  }

  .nav_link_text span {
    display: inline;
    background-image: linear-gradient(var(--color-white), var(--color-white));
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: bottom right;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;

    transition: background-size 0.3s ease-out;
    padding-bottom: 2px;
  }

  /* hoverした時：親の.nav_linkがhoverされたら、中のspanを動かす */
  .nav_link:hover .nav_link_text span {
    background-size: 100% 1px;
    background-position: bottom left;
  }

  .nav_btn_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .nav_cost_btn,
  .nav_line_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    max-width: 196px;
    width: 100%;
    border-radius: 999px;
  }

  .nav_cost_btn {
    background: var(--color-red);
    padding: 14px;
  }

  .nav_line_btn {
    background: var(--color-lite-green);
    padding: 10px;
  }

  .nav_icon {
    max-width: 32px;
  }

  .nav_icon_text {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav_btn_text {
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
    text-box-trim: trim-both;
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-align: center;

  }

  /* 右側のメインコンテンツ */
  .container {
    margin: 0 auto;
    max-width: 500px;
    background: var(--color-white);
    position: relative;
    z-index: 10;
  }

}

/* main visual */
.main_visual {
  position: relative;

}

.main_visual_contents {
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main_visual_text {
  font-family: var(--font-mincho);
  font-size: 24px;
  line-height: 1.5;
  writing-mode: vertical-rl;
  text-orientation: upright;

  letter-spacing: 0.2em;
  white-space: nowrap;
}

.main_visual_feature_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* 通常時（MVのすぐ下にある状態） */
.sticky_btn_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  padding: 12px 20px;
  background: hsla(14, 75%, 45%, 0.9);

  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;

  margin-top: -60px;
}


.floating_btn_text {
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.04em;

}

/* こんなお悩みありませんか */
.worry_section {
  background: var(--color-lite-yellow);
  padding: 64px 0;
}

.worry_img_container {
  position: relative;
}

.worry_text_wrap {
  position: absolute;
  top: -135px;
  right: 72px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 8px;
}

.worry_text {
  background: var(--color-black);
  padding: 8PX 0;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  /* 右から左へ進む縦書き */

  /* 縦書きの時、line-heightは「行の横幅」になります */
  line-height: 1.5;

  /* 中央揃えの調整 */
  text-align: start;

}

.worry_img {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 135px;
}

.worry_content_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 40px;
}

.worry_content {
  background: var(--color-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
}

.worry_content_text_br {
  display: none;
}

@media screen and (min-width: 500px) {
  .worry_content_text_br {
    display: block;
  }
}

.red_check {
  flex-shrink: 0;
}

/* 選ばれる理由 */

.reason_section {
  padding: 64px 0 24px;
}

.icon_and_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reason_content_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
}

.reason_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.reason_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.consultation {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid hsla(0, 0%, 86%, 1);
  border-radius: 8px;
}

.consultation_img {
  max-width: 98px;
  width: 100%;
}

.consultation_text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}

/*  */
.technique_section {
  padding: 24px 0 64px;
}

.beforeAfter_contents_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0 48px;
}

.beforeAfter_contents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beforeAfter_text_container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.beforeAfter_main_text {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;

}

.beforeAfter_img_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.technique_text_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

/* アンカーリンク */
.to_plan {
  background: var(--color-red);
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.25);
  display: flex;
  align-items: center;
  gap: 39px;
  margin: 0 auto;
  max-width: 286px;
  padding: 22px 24px 22px 32px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  transition: .3s background-color ease-out;
}

.to_plan:hover {
  background-color: hsla(14, 70%, 52%, 1);

}

.to_plan_text {
  color: var(--color-white);
  font-weight: 500;
  text-box-trim: trim-both;
  text-align: center;
}

.to_plan_arrow {
  max-width: 24px;
  width: 100%;
}

/* 着物クリーニングの基本「丸洗い」とは */
.basic_section {
  background: var(--color-lite-yellow);
  padding-bottom: 56px;
  overflow: hidden;
}

.basic_top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 85px 20px;
  background-image: url(../img/basic_back_img.png);
  background-image: -webkit-image-set(url(../img/basic_back_img.png) 1x,
      url(../img/basic_back_img@2x.png) 2x);
  background-image: image-set(url(../img/basic_back_img.png) 1x,
      url(../img/basic_back_img@2x.png) 2x);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.basic_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.basic_text_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.basic_text_bold {
  font-weight: 700;
}

.basic_content_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.basic_content_title_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.basic_content_title {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}

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

.basic_category_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.basic_category_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.basic_category_name {
  text-box-trim: trim-both;
  padding: 8px;
  border-radius: 4px;
  background: hsla(13, 73%, 84%, 1);
  width: fit-content;
}

.gray_category {
  background: hsla(40, 21%, 84%, 1);
}

.sweat_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid hsla(0, 0%, 86%, 1);
}

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

.sweat_content_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sweat_content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.sweat_arrow {
  max-width: 20px;
}

.sweat_img {
  flex: 0 0 130px;

}

.sweat_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;

}

.sweat_solution_text_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.big_arrow {
  margin: 0 auto;
}

/* swiper */
/* 1. 全体的な余白の調整 */
.swiper {
  overflow: visible;
  position: relative;
}

/* 2. 操作系をまとめるコンテナの調整 */
.pagination_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* 矢印とドットの間の距離 */
  margin-top: 20px;
  /* スライドとの間隔 */
  position: relative;
}

/* 3. デフォルトの「浮いている」設定をリセット */
.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
  position: static;
  /* absoluteを解除して並べる */
  margin: 0;
  /* デフォルトの余白をリセット */
}

/* 操作エリア全体のコンテナ */
.pagination_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px auto 0;

  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}

/* 矢印のリセット */
.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 24px;
  height: 24px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  opacity: 1 !important;
  cursor: pointer;
}

/* デフォルト矢印消去 */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* --- 押せない時（スライドの端に到達した時）の設定 --- */
.swiper-button-disabled {
  color: hsla(0, 0%, 68%, 1) !important;
  cursor: default;
  pointer-events: none;
}

/* 5. ページネーションの幅を自動に */
.swiper-pagination {
  width: auto !important;
}

/* ページネーションのリセット */
.swiper-pagination {
  position: static !important;
  /* 絶対配置を完全に解除 */
  width: auto !important;
  line-height: 1 !important;
  /* 行の高さを最小限にしてズレを防ぐ */
  display: flex !important;
  /* ドット自体もFlexで並べる */
  align-items: center;
}

/* ドットの基本色 */
.swiper-pagination-bullet {
  background: hsla(0, 0%, 86%, 1);
  opacity: 1;
  /* デフォルトの半透明を解除 */
}

/* アクティブなドットの色 */
.swiper-pagination-bullet-active {
  background: var(--color-red);
  /* ここをサイトのメインカラーに */
}

/* swiper中身 */
.swiper-slide {
  width: fit-content;
  height: auto;
}

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

.swiper_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px 24px;
  border: 1px solid hsla(0, 0%, 86%, 1);
  border-radius: 8px;
  background: var(--color-white);
  max-width: 280px;
}

.swiper_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.swiper_text_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.attention_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

.square_small_decoration {
  margin: 0 auto;
}

/* プラン */
.plan_section_top {
  background: var(--color-pink);
  padding: 64px 0;
}

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

.plan_decoration_title_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

}

.plan_main_text {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;

}

.yes_or_no_link_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 286px;
  width: 100%;
  margin: 0 auto;
}

.yes_or_no_link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  border-radius: 24px;
  padding: 24px;
  background: var(--color-white);
  box-shadow: 2px 2px 4px 0px hsla(0, 100%, 16%, 0.2);
  color: var(--color-black);
  text-decoration: none;
  border: 2px solid transparent;
  transition: border .3s ease-out;
}

.yes_or_no_link.yes_box:hover {
  border: 2px solid var(--color-red);
}

.yes_or_no_link.no_box:hover {
  border: 2px solid hsla(0, 0%, 36%, 1);
}

.yes_or_no_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.plan_section_bottom {
  background: var(--color-red);
  padding: 64px 0;
}

.plan_white_box_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.plan_white_box {
  background: var(--color-white);
  padding: 24px;
  border-radius: 16px;
}

.plan_target {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: center;
  padding: 8px;
  border: 1px solid var(--color-black);
  width: fit-content;
  margin: 0 auto;
}

.kimono_img {
  margin: 16px auto;
  width: fit-content;
}

.plan_title_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.decoration_circle_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cost_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.postage {
  background: var(--color-red);
  color: var(--color-white);
  padding: 8px 18px 8px 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.7;
  letter-spacing: 0.04em;
  position: relative;
  width: fit-content;
}

.cost_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.postage::after {
  position: absolute;
  content: "※";
  top: 8px;
  right: 8px;
  font-size: 10px;
  line-height: 1;
}

.cost_text {
  font-family: var(--font-mincho);
  font-size: 32px;
  text-box-trim: trim-both;
  display: inline-block;
  text-box-edge: cap alphabetic;
  line-height: 1.7;
  letter-spacing: 0.04em;

}

.cost_tax {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: center;
}

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

.add_container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.black_line {
  position: relative;
}

.black_line::before {
  content: "※1";
  position: absolute;
  right: -13px;
  top: 6px;
  font-family: inherit;
  font-weight: inherit;
  font-size: 8px;

  /* 上付きの微調整 */
  transform: translateY(-20%);

  text-decoration: none;
  display: inline-block;
}

.black_line::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}


.plan_course_wrap {
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid hsla(0, 0%, 86%, 1);
  border-bottom: 1px solid hsla(0, 0%, 86%, 1);
}

.plan_course_content_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan_course_content {
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan_course_name {
  font-weight: 500;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.5;

}

.plan_course_name.gray {
  font-weight: 400;
}

.plan_course_deadline_container {
  padding: 4px 8px;
  margin-top: 24px;
  border: 1px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 390px) {
  .plan_course_deadline_container {
    padding: 4px 16px;
  }
}

.plan_course_deadline {
  width: fit-content;
  text-align: center;
  position: relative;
}

.plan_course_deadline_attention::after {
  position: absolute;
  content: "※2";
  top: 20px;
  right: -14px;
  font-family: inherit;
  font-weight: inherit;
  font-size: 8px;
  transform: translateY(-20px);
  display: inline-block;
}

.recommend_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.recommend_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  margin: 8px 0 0;
}

.recommend_list_item {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;

}

.recommend_attention_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.recommend_attention {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

/* オプション */
.option_section {
  background: var(--color-lite-yellow);
  padding: 64px 0 40px;
}

.option_main_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.option_main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.option_main_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.option_explanation {
  padding: 8px;
  border: 1px solid var(--color-red);
}

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

.option_course_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid hsla(0, 0%, 86%, 1);
}

.option_course_content:nth-child(n+2) {
  padding-top: 16px;
}

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

.option_course_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.option_attention_n1,
.option_attention_n2 {
  position: relative;
}

.option_attention_n1::after {
  content: "※1";
  position: absolute;
  right: -14px;
  /* 親の top: 0 だと打ち消し線に近すぎるため、少し上に持ち上げる */
  top: 8px;

  /* スタイルの継承と調整 */
  font-family: inherit;
  font-weight: inherit;
  font-size: 8px;
  /* 14pxより一回り小さく */

  /* 上付きの微調整 */
  transform: translateY(-20%);

  /* 親の打ち消し線を擬似要素には適用させない */
  text-decoration: none;
  display: inline-block;
}

.option_attention_n2::after {
  content: "※2";
  position: absolute;
  right: -14px;
  /* 親の top: 0 だと打ち消し線に近すぎるため、少し上に持ち上げる */
  top: 8px;

  /* スタイルの継承と調整 */
  font-family: inherit;
  font-weight: inherit;
  font-size: 8px;
  /* 14pxより一回り小さく */

  /* 上付きの微調整 */
  transform: translateY(-20%);

  /* 親の打ち消し線を擬似要素には適用させない */
  text-decoration: none;
  display: inline-block;
}

.option_attention_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

.option_cost {
  text-align: right;

}

.option_explanation_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

.common_contact {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flower_container {
  display: flex;
  align-items: center;
  gap: 8px;

}

.flower_line {
  width: 100%;
  height: 1px;
  background-color: var(--color-red);
}

.common_contact_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.to_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 16px 16px 32px;
  max-width: 286px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-lite-green);
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.25);
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .3s ease-out;
}

.to_contact:hover {
  background-color: hsla(120, 59%, 49%, 1);
}


.to_contact_line_icon {
  max-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.to_contact_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

.to_contact_link {
  width: fit-content;
  text-decoration: none;
  display: block;
  margin: 0 auto;
}

.to_contact_link span {
  color: black;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;


  background-image: linear-gradient(to right, var(--color-black), var(--color-black));
  background-size: 100% 1px;
  /* ↓ 100%にすることで、行のボックスの「一番下」に配置されます */
  /* 文字に食い込ませたい場合は 90% などに調整してください */
  background-position: left 100%;
  background-repeat: no-repeat;
  padding-bottom: 0;
}

.to_contact_link:hover span {
  animation: linkLineReverse 0.5s ease forwards;
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: right 100%;
  }

  50% {
    background-size: 0% 1px;
    background-position: right 100%;
  }

  51% {
    background-position: left 100%;
  }

  100% {
    background-size: 100% 1px;
    background-position: left 100%;
  }
}

.square_design {
  margin: 0 auto;
}

/* お得なパック */

.pack_section {
  background: var(--color-lite-yellow);
  padding-bottom: 64px;

  display: none;
}

.set_white_box_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.set_white_box {
  padding: 32px 20px 24px 20px;
  border-radius: 16px;
  background: var(--color-white);
}

/* 隠す範囲のコンテナ */
.set_accordion_content {
  max-height: 406px;
  overflow: hidden;
  transition: max-height .7s ease-out;
  /* 動きを滑らかに */
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* 元のgap設定をここに移動 */
  position: relative;
}

/* ぼかし（グラデーション）を作る */
.set_accordion_content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
  /* visibilityも追加しておくと確実 */
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

.set_accordion_content.is-open::after {
  opacity: 0;
  visibility: hidden;
}


/* ボタンの装飾 */
.set_toggle_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 0 0;
  background: none;
  border: none;
  cursor: pointer;
  border-top: 1px solid hsla(0, 0%, 86%, 1);
}

/* プラス・マイナスアイコン */
.btn_icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.btn_icon::before,
.btn_icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

/* 横棒 */
.btn_icon::before {
  width: 10px;
  height: 2px;
}

/* 縦棒 */
.btn_icon::after {
  width: 2px;
  height: 10px;
}

/* 開閉時の変化 */
.is-open-btn .btn_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
  /* 縦棒を消してマイナスにする */
}

.btn_text {
  color: var(--color-black);
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  display: inline-block;
  text-box-edge: cap alphabetic;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: right;
}

.set_course_container {
  padding-top: 24px;
  border-top: 1px solid hsla(0, 0%, 86%, 1);
}


/* @media screen and (min-width: 500px) {
  .set_small_text_br {
      display: none;
  }
 } */
.set_item_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.set_item_attention {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

.set_option_list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid hsla(0, 0%, 86%, 1);
}

.set_option_list_item:nth-child(n+2) {
  padding-top: 8px;
}

.set_option_attention_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.set_option_attention_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
}

.set_option_attention {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

/* 任せて安心をお約束 */

.promise_secrion {
  background: var(--color-pink);
  padding: 64px 0;
}

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

.promise_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.promise_main_title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.promise_text {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

.promise_woman_img {
  max-width: 294px;
}

.promise_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.promise_bottom_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.promise_bottom_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.promise_attention {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;

}

/* ご注文からお届けまでの流れ */
.flow_section {
  background: var(--color-lite-yellow);
  padding: 64px 0;
}

.flow_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flow_content_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.flow_content {
  display: flex;
  /* align-items: flex-start; */
  align-items: stretch;
  gap: 12px;
}

.flow_num_and_arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.flow_num {
  padding: 12px;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow_num_inner {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 22px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}

.flow_text_container {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.flow_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-left: 16px;
}

.flow_text_attention {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

/* .flow_arrow_num4 {
  max-height: 200px;
  img {
    height: 100%;
  }
} */
.vertical-line-container {
  flex-grow: 1;
  width: 100%;
  min-height: 20px;
  position: relative;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #6EAA46 1px, transparent 1px);
  background-position: center top;
  /* 50% top と同じ意味 */
  background-size: 1px 3px;
  background-repeat: repeat-y;

}

.vertical-line-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  /* 親の真ん中に配置 */
  width: 5px;
  height: 5px;
  border-right: 1px solid #6EAA46;
  border-bottom: 1px solid #6EAA46;
  /* transform で自分の中心を 50% 地点に合わせる */
  transform: translateX(-50%) rotate(45deg);
}

.square_design {
  margin: 0 auto;
  width: fit-content;
}

.flow_common_contact {
  margin-top: 32px;
}

/* Our Story */
.story_section {
  background: var(--color-lite-yellow);
}

.story_section_top {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background-image:
    image-set(url(../img/our_story_back.jpg) 1x,
      url(../img/our_story_back@2x.jpg) 2x);

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.story_section_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.our_story_img_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  max-width: 300px;
}

.story_section_main_top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.our_story_text_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.our_story_img_comment {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

.our_story_img_zone {
  position: relative;
  min-height: 411px;

}

@media screen and (min-width: 500px) {
  .our_story_img_zone {
    min-height: 526px;

  }
}

.our_story_img_zone img {
  width: 100%;
}

.our_story_zone_img.img_n1 {
  position: absolute;
  top: 0;
  left: 0;
  width: min(62.82051282051282vw, 245px);

}

@media screen and (min-width: 500px) {
  .our_story_zone_img.img_n1 {
    max-width: 314px;
    width: 100%;
  }
}

.our_story_zone_img.img_n2 {
  position: absolute;
  bottom: 0;
  left: 45px;
  width: min(37.94871794871795vw, 148px);
}

@media screen and (min-width: 500px) {
  .our_story_zone_img.img_n2 {
    /* left: 57px; */
    left: 11%;
    max-width: 189px;
    width: 100%;
  }
}

.our_story_zone_img.img_n3 {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: min(42.82051282051282vw, 167px);
}

@media screen and (min-width: 500px) {
  .our_story_zone_img.img_n3 {
    position: absolute;
    bottom: 92px;
    max-width: 214px;
    width: 100%;
  }
}

.story_section_bottom {
  padding-top: 40px;
}

/* よくあるご質問 */
.faq_section {
  background: var(--color-lite-yellow);
  padding: 64px 0;
}

.faq_wrapper {
  margin-top: 40px;
}

.faq_item {
  border-bottom: 1px solid hsla(0, 0%, 85%, 1);
  overflow: hidden;
}

.faq_q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  cursor: pointer;
}

.faq_item:nth-child(n+2) .faq_q {
  padding-top: 16px;
}

.faq_q_inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;

}

.question_mark,
.answer_mark {
  flex-shrink: 0;
}

/* ＋アイコンの作成 */
.faq_icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.faq_icon::before,
.faq_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-deep-green);
  /* 線の色 */
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* 縦棒を90度回転させて＋にする */
.faq_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* --- 開いた（is-openクラスがついた）時の動き --- */
.faq_item.is-open .faq_icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* 回答エリアのアニメーション */
.faq_a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
  /* overflow: hidden; は grid の親側に持たせるのが安定します */
  overflow: hidden;
}

.faq_item.is-open .faq_a {
  grid-template-rows: 1fr;
}

.faq_a_inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.answer_text_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq_item.is-open .faq_a_inner {
  padding-bottom: 16px;
}

.accordion_contact_link {
text-decoration: none;
display: inline-block;
width: fit-content;
}

.accordion_contact_link_span {
  color: var(--color-black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
text-decoration: none;
  background-image: linear-gradient(to right, var(--color-black), var(--color-black));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}

.accordion_contact_link:hover .accordion_contact_link_span{
  animation: linkLineReverse 0.5s ease forwards;
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

/* フッター */

.site_footer {
  background: var(--color-deep-green);
  padding: 64px 0 90px;

}

@media screen and (min-width: 1021px) {
  .site_footer {
    padding: 64px 0;
  }
}

.footer_logo {
  margin: 0 auto;
  max-width: fit-content;
  display: block;
  transition: opacity .3s ease-out;
}

.footer_logo:hover {
  opacity: 0.6;
}

.footer_link_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.footer_link_container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_link {
  text-decoration: none;
  display: block;
  width: fit-content;
}

.footer_link:first-child {
  padding-right: 16px;
  position: relative;
}

.footer_link:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--color-white);
}

.footer_link:last-child {
  padding-left: 16px;
}

.footer_link_text {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  display: inline;

  background-image: linear-gradient(to right, #fff, #fff);
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 1px;
}

.footer_link:hover .footer_link_text {
  animation: linkLineReverse 0.5s ease-out forwards;
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.copyright {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;

}

/* --- ページトップに戻るボタンのスタイル --- */
.back_to_top {
  display: none;
}

@media screen and (min-width: 1021px) {
  .back_to_top {
    display: block;
    position: fixed;
    /* 一旦画面の真ん中に持ってくる */
    left: 50%;
    /* コンテンツ幅の半分(250px) + 離したい距離(16px) を右にずらす */
    margin-left: calc(250px + 16px);

    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 99999;
    text-decoration: none;
  }

  /* ホバー時の親要素の設定 */
  .back_to_top:hover rect {
    fill: #3E3A39;
    /* 背景色を濃いグレーに */
  }

  .back_to_top:hover path {
    fill: #FFE4A6;
    /* 矢印の色を薄い黄色に */
  }

  /* アニメーションを滑らかにするための設定（元の要素に追加） */
  .back_to_top rect,
  .back_to_top path {
    transition: fill 0.3s ease-out;
  }
}

/* --- 追従ボタン本体 --- */
/* 初期状態は非表示（スクロール後に表示されるクラス） */
.sp_fixed_btn_container {
  position: fixed;
  bottom: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  width: 100%;

}

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

/* スクロール後に付与するクラス */
.sp_fixed_btn_container.is-show {
  opacity: 1;
  visibility: visible;
}

/* メニュー展開時のスタイル（例） */
.fixed_menu_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-image:
    image-set(url(../img/menu_back.jpg) 1x,
      url(../img/menu_back@2x.jpg) 2x);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed_menu_content.is-open {
  opacity: 1;
  /* 不透明にする */
  visibility: visible;
  /* 表示状態にする */
}


.fixed_menu_content_inner {
  padding: 72px 20px 67px;
  overflow-y: auto;
  height: 100%;
}

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

.close_btn {
  border: none;
  border-radius: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  touch-action: manipulation;
}

.close_btn_text {
  color: var(--color-white);
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;

}


.fixed_menu_btn {
  touch-action: manipulation;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 52px;
  min-width: 52px;
  border-radius: 999px;
  border: 1px solid transparent;

}

.fixed_menu_btn.is-active {
  border: 1px solid var(--color-white);
}

.fixed_menu_btn.is-active svg {
  display: none;
}

.fixed_menu_btn.is-active::before {
  position: absolute;
  content: url(../img/sp_close.svg);
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.icon_svg {
  width: 52px;
  height: 52px;
  /* 丸い影をつけるための設定 */
  border-radius: 50%;
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.25);
}

.icon_bg {
  fill: hsla(12, 4%, 23%, 1);
  transition: fill 0.3s;
}

.fixed_menu_btn:hover .icon_bg {
  fill: hsla(12, 5%, 34%, 1);
}

.icon_inner {
  fill: var(--color-white);
}


.fixed_plan_link,
.fixed_line_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  max-width: 141px;
  width: 100%;
  max-height: 52px;
  border-radius: 999px;
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.25);
  transition: background-color .3s ease-out;
}

.fixed_plan_link {
  background: var(--color-red);
  padding: 14px;
}

.fixed_plan_link:hover {
  background-color: hsla(14, 70%, 52%, 1);
}

.fixed_line_link {
  background: var(--color-lite-green);
  padding: 10px;
}

.fixed_line_link:hover {
  background-color: hsla(120, 59%, 49%, 1);
}

.fixed_plan {
  max-width: 24px;
}

.fixed_line {
  max-width: 32px;
}

.fixed_arrow {
  max-width: 20px;
}

.fixed_icon_text {
  display: flex;
  align-items: center;
  gap: 2px;
}

.fixed_btn_text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;

}

.fixed_plan_btn_text {
  font-size: 13px;
}

/* sp時のメニュー */
.sp_menu {
  margin: 48px auto 55px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav_link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav_link_text {
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

/* .nav_btn_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.nav_cost_btn,
.nav_line_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  max-width: 196px;
  width: 100%;
  border-radius: 999px;
  box-shadow: 0px 2px 4px 0px hsla(0, 0%, 0%, 0.25);
  transition: background-color .3s ease-out;
}

.nav_cost_btn {
  background: var(--color-red);
  padding: 14px;
}

.nav_cost_btn:hover {
  background-color: hsla(14, 70%, 52%, 1);
}

.nav_line_btn {
  background: var(--color-lite-green);
  padding: 10px;
}

.nav_line_btn:hover {
  background-color: hsla(120, 59%, 49%, 1);
}

.nav_icon {
  max-width: 32px;
}

.nav_icon_text {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav_btn_text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;

} */