@charset "UTF-8";
/* CSS Document */ :root {
  --primary-color: #DBD5BF; /* メインカラー（ボタンやリンク） */
  --background-color: #F4F7F5; /* ページ全体の背景色 */
  --text-color: #395241; /* 基本の文字色 */
  --font-xl: clamp(50px, 8.59vw, 110px); /* 大見出し */
  --font-l: clamp(18px, 2.19vw, 28px); /* 中見出し */
  --font-m: clamp(13px, 1.25vw, 16px); /* 本文用 */
  --font-s: clamp(12px, 0.93vw, 14px); /* 小さなテキスト */
  --font-xs: clamp(11px, 0.00vw, 12px); /* 補足用 */
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: var(--background-color);
  font-family: "Noto Serif JP", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: var(--font-m);
  line-height: 1.8;
}
h1 {
  font-size: var(--font-xs);
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.1rem;
}
h2 {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.heading01 {
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--text-color);
  line-height: 1;
  text-align: left;
}
.heading01::before {
  content: attr(data-title);
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  padding-bottom: 0.1em;
}
p {
  color: var(--text-color);
  letter-spacing: 0.3em;
  line-height: 1.6;
  font-weight: 500;
  padding-bottom: 1em;
}
p:last-of-type {
  padding-bottom: 0;
}
/* ヘッダー全体 */
header {
  position: relative;
  z-index: 10; /* hero_sectionの背景よりも前面に表示 */
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background-color: rgba(255, 255, 255, 0.9); /* 背景に半透明の白を設定 */
  color: var(--primary-color);
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 4rem;
  right: 3vw;
  cursor: pointer;
  width: 3em;
  height: 3em;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0.9em;
  height: 1px;
  border-radius: 2px;
  background-color: var(--background-color);
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 0.9em;
}
.openbtn span:nth-of-type(2) {
  top: 1.4em;
}
.openbtn span:nth-of-type(3) {
  top: 1.9em;
}
.openbtn.active span:nth-of-type(1) {
  top: 1.1em;
  left: 1.1em;
  transform: translateY(0.3em) rotate(-45deg);
  width: 30%;
  background-color: var(--text-color);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 1.8em;
  left: 1.1em;
  transform: translateY(-0.4em) rotate(45deg);
  width: 30%;
  background-color: var(--text-color);
}

/* フッター部分 */
.menu-footer {
  position: absolute;
  bottom: 50px; /* メニューリストの下に配置 */
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-xs); /* 動的にサイズ調整 */
  color: var(--text-color);
  text-align: center;
}
.openbtn.has-bg {
  background-color: rgba(57, 82, 65, 0.7);
  /* 必要に応じてサイズ等も調整 */
  width: 3em;
  height: 3em;
  border-radius: 3px;
}

.hero_section {
  position: relative;
}
.hero_section-image {
  width: 100%;
  max-height: 100vh; /* 高さを画面いっぱいに制限 */
  overflow: hidden; /* はみ出し部分を隠す */
  object-fit: cover;
}
.hero_section-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero_section-copy {
  font-size: var(--font-m);
  color: var(--background-color);
  font-weight: 300;
  letter-spacing: 0.1rem;
}
.hero_section-title {
  font-size: var(--font-s);
  color: var(--background-color);
  font-weight: 300;
}
/* message_section の全体スタイル */
.message_section {
  background-image: url("images/message_image_back.png");
  background-position: right 130%;
  background-repeat: no-repeat;
  background-size: 17em auto;
}
.message_section_wrap {
  width: 80vw;
  max-width: 1280px;
  padding: 8em 0 10em;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 5vw;
  box-sizing: border-box;
}
/* 画像のカラムスタイル */
.message_section_img {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 434px;
  justify-content: flex-end;
}
.message_section_img img {
  max-width: 100%;
  height: auto;
}
/* 個別画像スタイル */
.message_section_img img:first-child {
  align-self: flex-end;
  width: clamp(150px, 27vw, 311px); /* 最小値、動的値、最大値 */
  max-width: 311px;
  height: auto;
}
.message_section_img img:last-child {
  align-self: flex-start;
  width: clamp(150px, 26vw, 304px); /* 最小値、動的値、最大値 */
  max-width: 304px;
  height: auto;
}
/* テキストのカラムスタイル */
.message_section_text {
  padding-top: 10rem;
  flex-basis: 40vw;
  max-width: 483px;
}
.message_section_text h2 {
  margin-bottom: 0.5rem;
}
.message_section_text .catchcopy {
  font-size: var(--font-l);
  font-weight: bold;
  padding: 0.5em 0 1.5em;
}
.message_section_text p {
  line-height: 1.6;
}
/* アメブロリンクのスタイル */
.ameblo-link {
  text-align: right; /* 右寄せ */
  margin-top: 0.8em;
}

.ameblo-link a {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-m); /* 本文のフォントサイズ */
  color: var(--text-color); /* テキストカラー統一 */
  text-decoration: none;
  position: relative;
  letter-spacing: 0.1em;
}

.ameblo-link a::before {
  content: "";
  display: inline-block;
  width: 2.3em; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: var(--text-color); /* 線の色 */
  margin-right: 0.4em; /* テキストとの間隔 */
  position: relative;
  top: 50%;
  transform: translateY(-50%); /* 上下中央寄せ */
  transition: transform 0.6s ease-in-out;
}

.ameblo-link a:hover {
  color: var(--primary-color); /* ホバー時に文字の色を変更 */
}

.ameblo-link a:hover::before {
  background-color: var(--primary-color); /* ホバー時に線の色を変更 */
  transform: translateY(-50%) translateX(-1em); /* ホバー時に線が左へ */
}

.session_section {
  background-image: url("images/session_image_back.png");
  background-position: left 120%;
  background-repeat: no-repeat;
  background-size: 20em auto;
  padding-bottom: 20%;
}
.session_section_wrap {
  display: flex;
  justify-content: flex-end;
}
.session_section_text {
  flex-basis: 45vw;
  z-index: 10;
  margin-right: -8vw;
  padding-top: 14rem;
  max-width: 487px;
}
.session_section_text .catchcopy {
  font-size: var(--font-l);
  font-weight: bold;
  padding: 0.5em 0 1.5em;
}
.session_section_img {
  flex-basis: 60vw;
}
.menu_section {
  position: relative; /* 背景画像との相対配置のために relative を指定 */
  background-image: url("images/menu_image_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 7em;
}
.menu_section:after {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.menu_section h2 {
  text-shadow: 0 2px 14px #E8E8E8;
}
.h2_text {
  padding-top: 3em;
}
.menu_section_text {
  position: absolute;
  top: -10%;
  left: 14vw;
  transform: translate(0%, 6%);
  z-index: 2;
  width: 80%;
}
.menu_section_content {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw; /* カード間の間隔 */
  justify-content: center; /* 中央寄せ */
  padding-top: 20rem;
}
.card {
  background-color: rgba(255, 255, 255, 0.74); /* 背景色と透明度 */
  width: calc(450 / 1280 * 100vw); /* 1280px基準での幅計算 */
  border-radius: 8px; /* 角丸 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* シャドウ */
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center; /* アイコンとタイトルを中央寄せ */
  padding: calc(50 / 1280 * 100vw); /* 内側の余白を計算 */
  z-index: 3;
  margin-top: 4em;
  margin-bottom: 4em;
}
.icon img {
  height: calc(80 / 1280 * 100vw); /* 高さを固定 */
  object-fit: contain; /* 画像比率を維持しながら枠内に収める */
  margin-bottom: 2rem; /* アイコンとタイトルの間隔計算 */
}
.card .title {
  font-size: var(--font-l);
  font-weight: bold; /* タイトルを太字 */
  text-align: center; /* 中央寄せ */
  margin-bottom: 1rem; /* タイトルと説明の間隔計算 */
}
.card .description {
  font-size: var(--font-m);
  text-align: left; /* 左寄せ */
  margin-bottom: 3em; /* 説明と料金表の間隔計算 */
}
.pricing {
  font-size: var(--font-s); /* 料金表のフォントサイズ計算 */
  display: block; /* 縦並び表示 */
  text-align: left; /* 左寄せ */
  color: var(--text-color);
  align-self: flex-start;
}
.card .pricing span {
  display: block; /* 各行をブロック表示 */
  margin-bottom: calc(4 / 1280 * 100vw); /* 各料金間の余白計算 */
  letter-spacing: 0.2rem;
}
.pricing_detail {
  color: #7F7F7D;
  font-size: var(--font-xs);
}
.pricing_detail_extension {
  display: flex;
  align-items: flex-end;
  gap: 0.5vw;
}
.contact_section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 33%;
}
.contact_section::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url("images/contact_image_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1; /* 背景を後ろに配置 */
}
.contact_section_cat_image {
  margin-top: -20%; /* 背景から 50% 上に調整 */
  width: 55vw; /* レスポンシブ幅 */
  height: auto; /* アスペクト比を維持 */
}
.contact_section_content {
  margin-top: 10rem; /* cat_image との間隔を確保 */
  background-color: rgba(255, 255, 255, 0.74); /* 背景色と透明度 */
  width: 90vw; /* レスポンシブ対応の幅 */
  max-width: 1200px; /* 最大幅 */
  padding: 2rem 5em 3em;
  border-radius: 8px; /* 角丸 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* シャドウ */
  text-align: center;
}
.contact_section .heading01 {
  text-align: center;
  margin-bottom: 4em;
}
.contact_section_wrap {
  margin-top: -6em;
}
.min-text {
  font-size: var(--font-xs);
  color: #7F7F7D;
  padding: 3em 0 0 0;
}
.min-text:last-of-type {
  padding-top: 0;
}
/*矢印が右に移動して背景がつく*/
.btnarrow5 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #395241;
  padding: 1.5em 5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #395241;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s linear;
  border-radius: 100px;
}
.btnarrow5:hover {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid #fff;
}
/*矢印と下線の形状*/
.btnarrow5::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  right: -2.5em;
  width: 5.5em;
  top: 50%;
  height: 1px;
  background: var(--text-color);
  /*アニメーションの指定*/
  transition: all .2s linear;
}
/*hoverした際の移動*/
.btnarrow5:hover::before {
  right: -30px;
}
.btnarrow5:hover::after {
  right: -25px;
}
.footer {
  text-align: center;
  color: var(--text-color);
  font-size: 1rem;
  margin-top: 8em;
}
@media(max-width:1000px) {
  .menu_section_text {
    top: -9%;
  }
}
@media (max-width: 900px) {
  .message_section_text {
    padding-top: 6rem;
  }
  .menu_section_content {
    padding-top: 17rem;
  }
}
@media (max-width: 768px) {
  .message_section {
    background-position: right 50%;
    background-size: 17em auto;
  }
  .message_section_wrap {
    width: 88vw;
    padding: 5em 0 5em;
    margin: 0 auto;
    display: block;
  }
  .message_section_img {
    max-width: 400px;
    margin: 0 auto;
  }
  .message_section_img img:first-child {
    align-self: flex-start;
    width: clamp(220px, 27vw, 311px); /* 最小値、動的値、最大値 */
  }
  .message_section_img img:last-child {
    align-self: flex-end;
    width: clamp(200px, 26vw, 304px); /* 最小値、動的値、最大値 */
  }
  .message_section_text {
    padding-top: 3rem;
  }
  .session_section {
    padding-bottom: 8em;
  }
  .session_section_wrap {
    flex-direction: column-reverse;
    padding-top: 0;
    margin-left: 5vw;
  }
  .session_section_img {
    flex-basis: auto; /* 必要に応じて調整 */
    margin-bottom: 1rem; /* 下にスペースを追加 */
  }
  .session_section_text {
    margin-right: 0;
    padding-top: 1rem;
    flex-basis: auto;
  }
  .session_section_text {
    padding-right: 1.5rem; /* コンテンツの横に余白を追加 */
  }
  .menu_section {
    padding-bottom: 8rem;
  }
  .menu_section_text {
    position: relative; /* static → relative に変更 */
    z-index: 2;
    top: 5em;
    left: 2em;
    transform: none;
    width: 90%;
  }

.menu_section h2 {
  text-align: center;
}
.menu_section_content {
  flex-direction: column; /* 小さい画面では1列表示 */
  align-items: center;
  gap: 3rem;
  padding-top: 5em;
  padding-bottom: 5em;
}
.card {
  width: 80vw; /* 小さい画面では幅を調整 */
  height: auto; /* 高さを自動調整 */
  padding: calc(30 / 768 * 100vw); /* 内側の余白を調整 */
  max-width: 350px;
  margin-top: 2em;
  margin-bottom: -2em;
}
.card .icon img {
  min-height: 60px;
  height: calc(80 / 768 * 100vw); /* 小さい画面ではアイコンを大きめに */
  margin: 1rem 0;
}
.card .title {
  font-size: var(--font-l);
}
.card .description {
  font-size: var(--font-xs);
  margin-bottom: 4em;
}
.card .pricing {
  text-align: left; /* 左寄せ */
}
.card .pricing span {
  margin-bottom: 0;
}
.contact_section {
  margin-top: 46%;
}
.contact_section_cat_image {
  width: 90vw;
}
.contact_section_content {
  margin-top: 8em;
  padding: 0rem 2em 2em;
}
.contact_section_wrap {
  margin-top: -3em;
}
.btnarrow5 {
  padding: 1em 3em;
}
.btnarrow5::before {
  right: -1.5em;
  width: 3.5em;
}}