@charset "utf-8";
/* CSS Document */
/* Cocoonヘッダー非表示 */
#header {
  display: none !important;
}
/* カスタムヘッダー全体のデザイン */
.custom-header {
  background-color: #e99a9a;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed; /* ヘッダーを固定位置に */
  top: 0; /* 初期位置は画面上部 */
  left: 0;
  right: 0;
  z-index: 100; /* ヘッダーが他の要素よりも前面に表示されるように */
  transition: top 0.3s ease; /* スクロール時にスムーズに移動する */
}
/* ヘッダー内のコンテンツを横並びに */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  background-color: #e99a9a !important;
}
/* ロゴ */
.logo img {
  height: 50px;
}
/* ナビゲーション */
.custom-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.custom-nav li {
  margin: 0 20px;
}
/* ナビゲーションリンクのデザイン */
.menu-link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}
/* マウスオーバー時 & 現在のページの下線 */
.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.menu-link:hover::after {
  width: 100%;
}
/* 現在のページで下線を表示 */
.current-menu-item .menu-link::after, .current_page_item .menu-link::after {
  width: 100%;
}
/* お問い合わせボタン */
.contact-btn a {
  background-color: #a33b3b;
  color: white; /* テキストの色は固定 */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease; /* 背景色の変化を滑らかに */
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/* マウスオーバー時の背景色変更（テキスト色はそのまま） */
.contact-btn a:hover {
  background-color: #872f2f; /* 少し暗めの赤 */
  color: white; /* テキストの色は変えない */
}
.contact-btn .mail-icon {
  margin-right: 8px;
  font-size: 18px;
}
/* ハンバーガーメニューのスタイル */
.menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}
.hamburger span::before {
  top: -8px;
}
.hamburger span::after {
  bottom: -8px;
}
.menu-toggle:checked + .hamburger span {
  background-color: transparent;
}
.menu-toggle:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
/* ナビゲーション */
.custom-nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.custom-nav li {
  margin: 0 20px;
}
/* ナビゲーションリンクのデザイン */
.menu-link {
  text-decoration: none;
  color: white;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}
/* マウスオーバー時 & 現在のページの下線 */
.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.menu-link:hover::after {
  width: 100%;
}
/* 現在のページで下線を表示 */
.current-menu-item .menu-link::after, .current_page_item .menu-link::after {
  width: 100%;
}
/* お問い合わせボタン */
.contact-btn a {
  background-color: #a33b3b;
  color: white; /* テキストの色は固定 */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease; /* 背景色の変化を滑らかに */
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/* マウスオーバー時の背景色変更（テキスト色はそのまま） */
.contact-btn a:hover {
  background-color: #872f2f; /* 少し暗めの赤 */
  color: white; /* テキストの色は変えない */
}
.contact-btn .mail-icon {
  margin-right: 8px;
  font-size: 18px;
}
/* メニューの表示・非表示 */
.custom-nav ul {
  display: flex;
}
.menu-toggle:checked ~ .custom-nav ul {
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #e99a9a;
  width: 100%;
  text-align: center;
}
.menu-toggle:checked ~ .custom-nav ul li {
  margin: 10px 0;
}
/* 改行タグ非表示 */
.sp_br {
  display: none;
}
/* サイト全体のコンテンツボックスのレイアウト */
.contents-box {
  width: 100%;
  height: auto;
  max-width: 1180px;
  margin: 30px auto 30px;
}
/* サイト全体のh2レイアウト */
.section-title {
  font-size: 2rem;
  color: #535353;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/* パンくずリスト全体 */
.breadcrumb {
  font-size: 14px;
  padding: 10px;
  background-color: #fbf6f7;
  margin: 0em !important;
  border-bottom: 1px solid #f7c9d0;
  box-sizing: border-box; /* パディングが幅に影響しないように */
}
/* リンクのスタイル */
.breadcrumb a {
  text-decoration: none;
  color: #0073aa;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #005177;
}
/* 区切り文字 */
.breadcrumb span {
  margin: 0 5px;
  color: #666;
}
/* 最後の項目（現在のページ） */
.breadcrumb .current-item {
  font-weight: bold;
  color: #333;
}
.pink {
  color: #D68E8E;
}
h4.subtitle {
  text-align: center;
  color: #D68E8E;
  font-size: 1.5rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin-bottom: 20px;
}
.first-view {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
/* PC用の背景 */
.first-view-bg.pc {
  background-image: url('../image/fv_pc_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
/* スマホ用の背景（初期は非表示） */
.first-view-bg.sp {
  display: none;
}
.first-view-content {
  width: 50%;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 61%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.first-view-content .txt-img {
  display: inline-block; /* インラインブロックに変更 */
  opacity: 0; /* 初期状態で非表示 */
  animation: fadeIn 3s forwards; /* アニメーションを3秒に変更 */
}
.first-view-content .txt-img:nth-child(1) {
  animation-delay: 2s; /* 2秒後に表示 */
}
.first-view-content .txt-img:nth-child(2) {
  animation-delay: 4s; /* 4秒後に表示 */
}
.first-view-content .txt-img:nth-child(3) {
  animation-delay: 6s; /* 6秒後に表示 */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 固定ページ・投稿ページヘッダー画像のレイアウト */
.article-header {
  background-size: cover;
  background-position: center;
  height: 300px; /* 必要に応じて調整 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* 固定ページ・投稿ページヘッダーh1のレイアウト */
.article-header h1 {
  color: #e99a9a;
  padding: 10px;
  border-radius: 5px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/* 私の想いセクション */
.section.omoi {
  width: 100%; /* ファーストビューは幅いっぱいに表示 */
  background-image: url(../image/contents_bg1.png);
  background-size: cover; /* 画像をコンテナ全体に拡大 */
  background-position: center; /* 画像を中央揃え */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  height: 550px; /* ファーストビューの高さ */
}
#omoi-text {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.section p {
  text-align: left;
  font-size: 1rem;
  color: #333;
  line-height: 2rem;
}
/* サービスセクション */
h3.service-title {
  text-align: center;
  margin-bottom: 30px;
  color: #535353;
  font-size: 2rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
h4.sub-servicetitle {
  text-align: center;
  margin-bottom: 15px;
  color: #d68e8e;
  font-size: 1.5rem;
}
.services-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 60px auto 40px;
}
.service-item {
  text-align: center;
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* 要素間の間隔を調整 */
  margin: 40px auto;
  width: 100%;
}
.course-link {
  text-align: center;
  margin: 60px 0 30px;
}
.course-link .button {
  display: inline-block;
  padding: 16px 20px;
  background-color: #afc676;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  width: 100%;
  max-width: 450px;
  height: 60px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.course-link .button:hover {
  background-color: #6a8d47;
}
/*.service-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}*/
.hover-img {
  transition: opacity 0.6s ease-in-out;
}
.hover-img:hover {
  opacity: 0.7; /* 透明度を少し下げてふわっと変化 */
}
.service-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}
/* お客様の声セクション.アーカイブお客様の声共通 */
.customer-voice-item a {
  text-decoration: none;
}
.customer-voice-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.button-a {
  display: inline-block;
  padding:
    10px 20px;
  background-color: #fff;
  color: #e68686;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: bold;
}
.button-a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.customer-voice-item {
  flex: 1 1 calc(33.33% - 20px);
  background-color: #fff6e4;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0aeae;
}
.customer-voice-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.customer-voice-item .voice-title {
  font-size: 1.2rem;
  color: #d94a58;
  margin-top: 10px;
}
.customer-voice-item .voice-excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}
.customer-voice-link {
  text-align: center;
  margin-top: 20px;
}
.customer-voice-link .button {
  display: inline-block;
  padding: 16px 20px;
  background-color: #afc676;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  width: 100%;
  max-width: 450px;
  height: 60px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.customer-voice-link .button:hover {
  background-color: #6a8d47;
}
/*-----------------------------------------------------  */
/* アーカイブページのみ お客様の声のレイアウト					*/
/*-----------------------------------------------------	*/
.page-content-archive {
  width: 100%;
  max-width: 1100px;
  margin: 30px auto;
  height: auto;
}
p.voice-comment {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}
.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #afc676;
  color: white;
  text-decoration: none;
  border-radius: 10px; /* 丸みを持たせる */
  font-size: 15px;
  transition: background-color 0.5s ease; /* 色がゆっくり変わる */
  width: 60%;
  height: 47px;
}
.read-more-btn:hover {
  background-color: #6a8d47; /* マウスオーバー時に色を変える */
  color: white !important;
}
/* お問い合わせsectionのレイアウト */
.contact-section {
  text-align: center;
  padding: 0px 20px 50px 20px;
  background-color: #fff;
}
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}
.contact-subtitle {
  font-size: 18px;
  color: #d38181;
  margin-bottom: 20px;
}
.contact-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}
.contact-ink .button {
  display: inline-block;
  padding: 16px 20px;
  background-color: #d68e8e;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  width: 100%;
  max-width: 450px;
  height: 60px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.contact-ink .button:hover {
  background-color: #c06b6b;
}
span#toc3 {
  all: unset;
}
/* ヘッダーのContactボタン *
.header-contact-button {
  display: inline-block; /* ボタン全体をクリック可能に 
  background-color: #d94a58;
  color: #fff; /* テキストの色を固定 
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  text-align: center;
}

/* マウスオーバー時の背景色変更（テキストの色は変えない） 
.header-contact-button:hover {
  background-color: #b33945;
  color: #fff; /* テキストの色を固定 
}

/*-----------------------------------------------------  */
/* 下層ページ サービス紹介					*/
/*-----------------------------------------------------	*/
/* 下層ページ サービス紹介section */
section.custom-section1 {
  width: 100%;
  height: auto;
}
/* サービスコンテンツ */
.contents-service {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
h2.service-title {
  text-align: center;
  position: relative;
  padding: 1.5rem;
  font-size: 2rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #535353;
}
span#toc1 {
  color: #535353;
}
h2.service-title:before {
  position: absolute;
  bottom: 8px;
  left: calc(50% - 30px);
  width: 54px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #e99a9a;
}
h2.service-subtitle {
  margin-bottom: 0.2rem;
  padding: 0.5rem;
  background-color: #d68e8e;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  width: 900px;
  height: auto;
  margin: 30px auto;
}
h2.service-subtitle:before {
  margin-right: 0.5rem;
  border-left: 5px solid;
  content: '';
}
h3.servicecomment {
  text-align: center;
  margin-bottom: 1rem;
  color: #535353;
}
.service-text {
  text-align: left;
  max-width: 800px; /* 幅を最大800pxに制限 */
  width: 90%; /* 画面幅に応じて調整 */
  padding: 0 2rem; /* 左右の余白を均等に */
  margin: 0 auto; /* 中央配置 */
  line-height: 1.8rem;
  font-size: 16px;
  overflow-wrap: break-word; /* 長すぎる単語は適切に改行 */
}
.service-img {
  width: 100%;
  height: auto;
  max-width: 980px;
  margin: 30px auto;
}
.service-img img {
  width: 50%;
}
/* サービス内容のボックス */
.box-service1 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #bad17f;
}
/* ここを追加して、box-service1内で子要素を2列にする */
.service-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* 横並びが狭くなると次の行に折り返す */
}
.box-service1 > span.service-title {
  display: block;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  background-color: #bad17f;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.service-naiyou {
  width: calc(50% - 10px);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.service-naiyou p {
  font-size: 15px;
  margin-bottom: 0.2rem;
}
.service-naiyou ul {
  padding-left: 16px;
}
.service-naiyou ul li {
  align-items: center; /* 水平方向でアイテムを中央に配置 */
  margin-bottom: 10px; /* 各項目の間にスペースを追加 */
  font-size: 15px;
}
h4.naiyou-title {
  position: relative;
  display: inline-block;
  padding: 1em 3em;
  color: #f29c9f;
}
h4.naiyou-title::before, h4.naiyou-title::after {
  position: absolute;
  content: '';
  top: calc(50% - 1px);
  width: 1em;
  height: 2px;
  background-color: #f29c9f;
}
h4.naiyou-title::before {
  left: 30px;
}
h4.naiyou-title::after {
  right: 30px;
}
h4.naiyou-title span {
  position: relative;
  padding: 0 1em;
  background: #f9f9f9;
  font-size: 15px;
  color: #d68e8e;
}
h4.tokuten-title {
  padding: 10px;
  border-left: 5px solid #f29c9f;
  font-size: 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
h4.tokuten-title {
  padding: 10px;
  border-left: 5px solid #f29c9f;
  font-size: 16px;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid #f29c9f;
}
.heading-14 {
  display: inline-block;
  position: relative;
  padding: .3em 1.3em .3em 1em;
  background-color: #e99a9a;
  color: #ffffff;
  width: 100%;
  margin-bottom: 0.3rem;
  margin-top: 0.3rem;
}
.heading-14::before {
  position: absolute;
  bottom: -1px;
  right: 9px;
  z-index: -1;
  transform: rotate(5deg);
  width: 70%;
  height: 50%;
  background-color: #d0d0d0;
  content: "";
  filter: blur(4px);
}
h4.enpu-title {
  position: relative;
  padding: 10px;
  padding-left: 2em;
  color: #bb2020;
}
h4.enpu-title::before {
  content: "■";
  font-size: 1.5em;
  position: absolute;
  left: 0.1em;
  top: 0.15em;
  color: #CA1818;
}
h4.enpu-title::after {
  content: "■";
  font-size: 1.4em;
  position: absolute;
  left: 0.4em;
  top: 0.5em;
  color: #e15684;
}
.service-naiyou ol li {
  font-size: 15px;
  font-weight: bold;
  color: #e99a9a;
}
span.font-normal {
  font-weight: normal;
  color: #2a2b2b;
}
span.red-font {
  color: #C81E20;
  font-weight: bold;
}
.custom-section2 {
  width: 100%;
  height: auto;
  background-image: url("../image/service_bg1.png");
  background-size: cover;
}
.custom-section3 {
  width: 100%;
  height: auto;
  background-image: url("../image/service_bg1.png");
  background-size: cover;
}
.content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.service-title {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.osusume-box {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
}
.osusume-box li {
  font-size: 15px;
  line-height: 2rem;
}
.img-box {
  flex: 0 0 auto;
  margin-left: 20px;
  transform: translateY(-20px); /* 画像を少し上へ移動 */
}
.img-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
/* プロフィールのレイアウト */
.custom-section4 {
  width: 100%;
  height: auto;
}
/* 志命発見の歌sectionのレイアウト */
section#shimei_uta {
  width: 100%;
  height: 535px;
  background-image: url(../image/utasection_bg.png);
  background-repeat: no-repeat;
  min-height: 100%;
  background-size: cover;
}
.custom-section5 {
  width: 100%;
  height: auto;
  background-image: url(../image/profile_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.custom-section6 {
  width: 100%;
  height: auto;
  background-image: url(../image/accessbg.png);
  background-size: cover;
}
.profile-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px; /* 最大幅を指定 */
  margin: 0 auto; /* 中央配置 */
}
.profile-intro img {
  max-width: 100%; /* 画像を親要素内に収める */
  height: auto;
  border-radius: 10px; /* 角丸 */
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
}
.profile-text {
  flex: 1; /* テキスト部分を均等に配置 */
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-line; /* 改行コードを反映 */
}
.profile-text h4 {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}
/* プロフィールページテーブルレイアウト */
/* プロフィールページのテーブルレイアウト */
.profile-table, .achievements-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
/* テーブルのセルのスタイル */
.profile-table th, .profile-table td, .achievements-table th, .achievements-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
/* テーブルのヘッダーセルのスタイル */
.profile-table th, .achievements-table th {
  font-weight: bold;
  width: 30%;
  text-align: center;
  border-bottom: 1px solid #e99a9a !important;
  border-left: 1px solid #fff !important;
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  background-color: #fff !important;
}
/* テーブルのデータセルの背景色 */
.profile-table td, .achievements-table td {
  background-color: rgba(255, 255, 255, 0.8); /* 白を80%の不透明度に設定 */
  border-top: 1px solid #fff !important;
  border-bottom: 1px solid #5b5a5a !important;
}
/* qualifications-tableのレイアウト */
.qualifications-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.32); /* 白を60%の不透明度に設定 */
}
.qualifications-table tr {
  background-color: rgba(255, 255, 255, 0.32) !important;
}
.qualifications-table th, .qualifications-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.32); /* 白を60%の不透明度に設定 */
}
/* テーブルのヘッダーセルのスタイル */
.qualifications-table th {
  background-color: rgba(255, 255, 255, 0.32); /* 白を60%の不透明度に設定 */
  font-weight: bold;
  width: 30%;
  text-align: center;
  border-bottom: 1px solid #e99a9a !important;
  border-left: 1px solid #fff !important;
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
}
.qualifications-table td {
  background-color: rgba(255, 255, 255, 0.32); /* 白を70%の不透明度に設定 */
  border-top: 1px solid #fff !important;
  border-bottom: 1px solid #5b5a5a !important;
  border-right: 1px solid #fff !important;
}
.access-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* 要素間の余白 */
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#map {
  flex: 1; /* マップが可能な限り幅を取る */
  max-width: 100%; /*  */
}
.address-box {
  flex: 1;
  max-width: 100%; /* 最小幅を指定 */
}
.access {
  width: 100%;
  border-collapse: collapse;
}
.access tr {
  background-color: #fff0 !important;
}
.access th, .access td {
  padding: 8px;
  border-bottom: 1px solid #332e2e !important;
  text-align: left;
  border-top: 1px solid #f5f5dc00 !important;
  width: 30px !important;
  font-size: 15px;
  background-color: #fff0 !important;
  border-left: 1px solid #fff0 !important;
  border-right: 1px solid #fff0 !important;
}
/*志命発見の歌コンテンツレイアウト*/
.uta_contents_box {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 25px auto 20px;
}
#saisei p {
  font-size: 15px;
  line-height: 2;
  padding-bottom: 15px;
}
.wp-block-audio { /*再生ボタンレイアウト*/
  width: 100%;
  max-width: 780px;
  margin: 20px auto 0 auto;
}
#saisei_btn {
  background: #fef9f8;
  border: 1px solid #e6cfcf;
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}
#saisei_btn audio {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}
.kashi-ink {
  margin-top: 16px;
}
.kashi-ink .button {
  display: inline-block;
  background-color: #d18d8d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.kashi-ink .button:hover {
  background-color: #bb6e6e;
}
/* 志命発見～人生の輝き～歌詞固定ページレイアウト*/
section#shimei-lyrics {
  position: relative;
  background-image: url(../image/shimei-lyrics_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden; /* はみ出し防止 */
}
section#shimei-lyrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* ← 白の半透明 */
  z-index: 0;
}
section#shimei-lyrics > * {
  position: relative;
  z-index: 1;
}
section#shimei-lyrics > * {
  position: relative;
  z-index: 1;
}
#shimei-lyrics-box {
  border: 1px solid #f0dad8;
  border-radius: 16px;
  padding: 32px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック体", sans-serif;
  line-height: 2;
  color: #4c3a3a;
}
#shimei-lyrics-box h2.lyrics-1 {
  font-size: 28px;
  text-align: center;
  color: #b26868;
  margin-bottom: 24px;
  border-bottom: 2px solid #e5c5c5;
  padding-bottom: 8px;
}
#shimei-lyrics-box h3.lyrics-2 {
  font-size: 20px;
  margin-top: 32px;
  color: #8a5d5d;
  position: relative;
}
#shimei-lyrics-box h3.lyrics-2::before {
  content: "♪";
  color: #dba1a1;
  position: absolute;
  left: -24px;
  font-size: 18px;
  top: 0;
}
#shimei-lyrics-box p {
  margin: 12px 0 24px;
  font-size: 16px;
  white-space: pre-line;
}
/* privacyPolicyページレイアウト*/
section.policy-section {
  width: 100%;
  height: auto;
}
.privacy-comment {
  width: 100%;
  height: auto;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.privacy-comment p {
  font-size: 16px;
  line-height: 2em;
  white-space: pre-line !important;
  padding-top: 1rem;
}
h4.policy-section {
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 2px solid #e99a9a;
}
h4.policy-section:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 20%;
  height: 2px;
  content: '';
  background: #535353;
}
/* 特定商取引法の表記ページレイアウト */
section.tos-content {
  width: 100%;
  height: auto;
}
.tos-content {
  padding: 20px;
  margin: auto;
}
.tos-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.tos-table th, .tos-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  background-color: #fff;
}
/* テーブルのヘッダーセルのスタイル */
.tos-table th {
  background-color: #fff;
  font-weight: bold;
  width: 30%;
  text-align: center;
  border-bottom: 1px solid #e99a9a !important;
  border-left: 1px solid #fff !important;
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
}
.tos-table td {
  background-color: #fff;
  border-top: 1px solid #fff !important;
  border-bottom: 1px solid #5b5a5a !important;
  border-right: 1px solid #fff !important;
}
.tos-table p * {
  white-space: pre-line !important;
}
.tos-box {
  width: 100%;
  max-width: 1100px;
  padding: 2em; /*内側余白*/
  border-left: solid 5px #e9b3a3; /*線の種類・太さ・色*/
  background-color: #F9F8F8; /*背景色*/
  box-shadow: 3px 1px 4px rgb(0 0 0 / .2);
  font-size: 15px;
  text-align: center;
  margin: 30px auto
}
a.tos-link {
  text-decoration: none; /* 下線を消す */
  transition: color 0.3s ease, background-color 0.3s ease; /* なめらかに変化 */
  color: #333; /* 通常時の色 */
}
a.tos-link:hover {
  color: #f8a7a7; /* マウスオーバー時の色 */
  background-color: rgba(248, 167, 167, 0.2); /* うっすら背景を付ける（オプション） */
}
/*-----------------------------------------------------  */
/* 投稿ページ お客様の声のレイアウト					*/
/*-----------------------------------------------------	*/
h2.customer-title {
  text-align: center;
  position: relative;
  padding: 1.5rem;
  font-size: 2rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #535353;
  width: 100%;
  margin-bottom: 20px;
}
h2.customer-title::before {
  position: absolute;
  bottom: 8px;
  left: calc(50% - 30px);
  width: 54px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #e99a9a;
}
.page-content-customer {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto;
}
.article-header {
  text-align: center;
  padding: 40px 0;
  color: #fff;
}
.customer-image img {
  max-width: 350px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* 影を追加 */
}
.customer-name {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
.customer-comment {
  background: #f8f0d7;
  border-left: 5px dotted rgba(0, 0, 0, .1);
  box-shadow: 0 0 0 5 #f8f0d7;
  padding: 1em;
  margin: 1em auto;
  margin-bottom: 20px;
  max-width: 70%;
}
.customer-comment p {
  font-size: 15px;
  white-space: pre-wrap; /* 改行タグを考慮して折り返し処理を維持 */
}
.related-articles {
  margin-top: 40px;
  padding: 20px;
  background: #f4e9e9;
  border-radius: 8px;
}
.related-articles h2 {
  text-align: center;
  font-size: 1.4em;
}
.related-posts {
  list-style: none;
  display: flex;
  justify-content: center; /* 中央揃え */
  gap: 20px;
  padding: 0;
  width: 100%;
  max-width: 600px; /* 最大幅を600pxに制限 */
  margin: 0 auto; /* 中央配置 */
}
.related-post-item {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.related-post-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.related-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  margin-right: 10px;
}
.related-post-title {
  font-size: 16px;
  font-weight: bold;
}
.related-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/*-----------------------------------------------------  */
/* ページネイションレイアウト						*/
/*-----------------------------------------------------	*/
.page-numbers {
  width: 60px !important;
  border: 1px solid #e99a9a !important;
  font-size: 15px !important;
}
.current {
  background-color: #fff6e4 !important;
}
/*-----------------------------------------------------  */
/* お問い合わせフォームレイアウト						*/
/*-----------------------------------------------------	*/
.wpcf7-form {
  padding: 50px;
  width: 100%;
  max-width: 800px; /* フォームの最大幅を調整 */
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* テーブル全体のスタイル */
.table_form {
  width: 100%;
  margin: 30px auto;
  font-family: "Arial", sans-serif;
  border-collapse: separate;
  border-spacing: 0 10px; /* 行ごとにスペースを追加 */
}
/* 各セルのスタイル */
.table_form th, .table_form td {
  padding: 16px;
  font-size: 16px;
  border-radius: 8px;
}
/* 見出しのデザイン */
.table_form th {
  color: #684327;
  text-align: right;
  background-color: #f7f3ef;
  font-weight: bold;
  width: 30%;
  vertical-align: middle;
}
/* 入力フィールドのスタイル */
.table_form td {
  background-color: #fff;
  border-bottom: 2px solid #e0e0e0;
}
/* 必須マークのスタイル */
span.required {
  display: inline-block;
  margin-left: 5px;
  color: #FFF;
  background-color: #FF5B33;
  font-size: 12px;
  line-height: 24px;
  padding: 0 8px;
  border-radius: 12px;
}
/* フォーム入力エリアのデザイン */
.table_form input[type="text"], .table_form input[type="email"], .table_form input[type="tel"], .table_form textarea, .table_form select {
  background-color: #fff;
  color: #333;
  width: 100%;
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 12px;
  border-radius: 6px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}
/* チェックボックス・ラジオボタン */
.table_form input[type="checkbox"], .table_form input[type="radio"] {
  margin-right: 8px;
}
/* ボタンのデザイン */
.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 25px;
}
.btn-reset, .btn-submit {
  padding: 12px 20px;
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-reset {
  background-color: #999;
}
.btn-submit {
  background: linear-gradient(135deg, #ff5b33, #d33);
}
/* ホバー時のアニメーション */
.btn-reset:hover {
  background-color: #777;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #d33, #ff5b33);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(255, 91, 51, 0.2);
}
/* 送信ボタン（Contact Form 7用） */
form input.wpcf7-form-control[type="submit"] {
  background: linear-gradient(135deg, #ff5b33, #d71e1e);
  color: #FFF;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
form input.wpcf7-form-control[type="submit"]:hover {
  background: linear-gradient(135deg, #d71e1e, #ff5b33);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 91, 51, 0.3);
  cursor: pointer;
}
/*-----------------------------------------------------  */
/* カスタムfooterレイアウト						*/
/*-----------------------------------------------------	*/
.footer {
  background-color: #fff;
  color: #fff;
  margin-top: auto; /* フッターがページの一番下に来るように */
  border-top: 1px solid #afc676;
}
.footer-content {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.footer-section {
  /* flex: 1;*/
  padding: 10px;
}
.footer-section h2, .footer-section h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}
.footer-section p, .footer-section ul, .footer-section li, .footer-bottom {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}
.footer-section ul {
  list-style-type: none;
  padding: 0;
}
.footer-section ul li a {
  color: #424040;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}
.footer-section ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 15px; /* 各リンクの間にスペースを追加 */
}
.menu-link-a {
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}
.menu-link-a a:hover {
  color: #b2df93;
}
.menu-link-a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #b2df93;
  transition: width 0.3s ease-in-out;
}
.menu-link-a:hover::after {
  width: 100%;
}
.footer-copyright {
  text-align: center;
  padding: 10px 0 10px;
  font-size: 12px;
  border-top: 1px solid #fff;
  margin-top: 20px;
  color: #fff;
  background-color: #d68e8e;
}
/* 1180px ～ 1100px の範囲 */
@media (max-width: 1180px) and (min-width: 1100px) {
  /* ここに1180pxから1100pxの範囲に適用したいスタイルを記述 */
  .main, .sidebar, .sidebar-left .main, .sidebar-left .sidebar {
    margin: 0 !important;
  }
  /* 改行タグ非表示 */
  .sp_br {
    display: none;
  }
}
/* 1024px 以下（タブレット横向き） */
@media screen and (max-width: 1024px) {
  /* ここにタブレット横向き用のCSSを記述 */
  .main, .sidebar, .sidebar-left .main, .sidebar-left .sidebar {
    margin: 0 !important;
  }
  .header-container {
    flex-direction: column;
    align-items: center;
  }
  .first-view-content {
    top: 95%;
  }
  .fade-up {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .section.omoi {
    height: fit-content;
  }
  /* 改行タグ非表示 */
  .sp_br {
    display: none;
  }
  /* トップページ全コンテンツBOXのレイアウト */
  .contents-box {
    width: 100%;
    height: auto;
    max-width: 95vw;
    margin: 30px auto 30px;
  }
  /* 下層各ページのh1の位置 */
  h1.page-title {
    position: absolute;
    top: 14%; /* 必要に応じて調整 */
    left: 50%;
    transform: translateX(-50%);
  }
}
/* 1023px 以下 770px 以上（タブレット中間サイズ） */
@media screen and (max-width: 1023px) and (min-width: 770px) {
  /* ここにタブレット中間サイズのCSSを記述 */
  .header-container {
    flex-direction: column;
    align-items: center;
  }
  .first-view-content {
    top: 70%;
    left: 61%;
  }
  .fade-up {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  /* 改行タグ非表示 */
  .sp_br {
    display: none;
  }
  /* トップページ全コンテンツBOXのレイアウト */
  .contents-box {
    width: 100%;
    height: auto;
    max-width: 95vw;
    margin: 30px auto 30px;
  }
  /* 下層各ページのh1の位置 */
  h1.page-title {
    position: absolute;
    top: 40%; /* 必要に応じて調整 */
    left: 50%;
    transform: translateX(-50%);
  }
  /* コンテンツ下部のボタン非表示 */
  ul.mobile-footer-menu-buttons.mobile-menu-buttons {
    display: none !important;
  }
  .section.omoi {
    height: fit-content;
  }
  /* serviceページ h2の文字サイズ */
  h2.service-title {
    font-size: 1.5rem;
  }
  /* タイトルのレイアウト */
  h2.service-subtitle {
    width: 100%;
  }
  .service-container {
    display: block;
  }
  .service-naiyou {
    width: 100%
  }
  /* プロフィールページのレイアウト */
  .profile-intro {
    display: block;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 98%;
    text-align: center;
  }
  .profile-text {
    text-align: left;
  }
  /* プライバシーポリシーページのレイアウト */
  .privacy-comment {
    width: 98%;
    max-width: 100%;
  }
}
@media screen and (max-width: 912px) {
  /* 912px～の調整 */
  /* 下層各ページのh1の位置 */
  h1.page-title {
    position: absolute;
    top: 36%; /* 必要に応じて調整 */
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 880px) {
  /* 下層各ページのh1の位置 */
  h1.page-title {
    position: absolute;
    top: 15%; /* 必要に応じて調整 */
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 844px) {
  h1.page-title {
    top: 40%; /* 少し上にする */
  }
}
@media screen and (max-width: 840px) {
  /* 画面幅が884px以下のときのスタイル */
  h1.page-title {
    position: absolute;
    top: 15%; /* 必要に応じて調整 */
    left: 50%;
    transform: translateX(-50%);
  }
}
/* 769px 以下（タブレット縦向き） */
@media screen and (max-width: 769px) {
  /* ここにタブレット縦向き用のCSSを記述 */
  /* カスタムヘッダースマートフォン表示時のレイアウト */
  .main, .sidebar, .sidebar-left .main, .sidebar-left .sidebar {
    margin: 0;
  }
  .section.omoi {
    height: fit-content;
  }
  .first-view {
    height: 750px; /* SP版の高さ */
  }
  .first-view-bg.pc {
    display: none; /* PC版の背景を非表示 */
  }
  .first-view-bg.sp {
    display: block;
    background-image: url('../image/fv_sp_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .first-view-content {
    top: 84%;
    width: 65%;
    left: 63%;
    z-index: 2;
  }
  /* 改行タグ表示 */
  .sp_br {
    display: block;
  }
  /* コンテンツ下部のボタン非表示 */
  menu-buttons.mobile-menu-buttons {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
  .custom-nav ul {
    display: none;
    width: 100%;
  }
  .menu-toggle:checked ~ .custom-nav ul {
    display: block;
  }
  .fade-up {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .logo img {
    height: 40px;
  }
  .custom-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn a {
    padding: 8px 16px;
  }
  /* トップページ全コンテンツBOXのレイアウト */
  .contents-box {
    width: 100%;
    height: auto;
    max-width: 95vw;
    margin: 30px auto 30px;
  }
  h1.page-title {
    position: absolute;
    top: 18%;
  }
  /* serviceページ h2の文字サイズ */
  h2.service-title {
    font-size: 1.2rem;
  }
  /* タイトルのレイアウト */
  h2.service-subtitle {
    width: 100%;
    font-size: 15px;
  }
  h3.servicecomment {
    font-size: 17px;
  }
  .service-text {
    max-width: 100%;
    width: 98%;
    padding: 0 1rem;
  }
  /* serviceページのサービスメニューと内容のレイアウト */
  .service-container {
    display: block;
  }
  .service-naiyou {
    width: 100%;
    padding: 11px;
  }
  .service-img img {
    width: 95%;
  }
  .box-service1 > span.service-title {
    font-size: 17px;
  }
  h4.naiyou-title::before, h4.naiyou-title::after {
    width: 1em;
  }
  h4.naiyou-title span {
    font-size: 15px;
  }
  /* サービスページこのコースがオススメの方のレイアウト */
  .content-inner {
    display: block;
    width: 98%;
    max-width: 100%;
  }
  .img-box {
    text-align: center;
  }
  /* プロフィールページのレイアウト */
  .profile-intro {
    display: block;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 95%;
    text-align: center;
  }
  .profile-text {
    text-align: left;
  }
  .access-contents {
    display: block;
    width: 95%;
  }
  /* プロフィール 志命発見～人生輝き～紹介コンテンツのレイアウト */
  section#shimei_uta {
    height: auto;
    max-height: 560px;
  }
  .uta_contents_box {
    width: 98%;
    /* max-width: 1100px; */
  }
  /* お客様声アーカイブのレイアウト */
  .page-content-archive {
    width: 98%;
    max-width: 100%;
    margin: 30px auto;
    height: auto;
  }
  .read-more-btn {
    width: 70%;
  }
  .footer-content {
    display: flex;
    justify-content: space-around;
    /* max-width: 1000px; */
    /* margin: 0 auto; */
    width: 100%;
  }
  .customer-voice-wrapper {
    display: flex; /* フレックスボックスを使用 */
    flex-wrap: wrap; /* 要素が折り返されるようにする */
    gap: 14px; /* 要素間の隙間 */
  }
  .customer-voice-item {
    flex: 1 1 calc(50% - 14px); /* 50%の幅で2列に配置（gapを考慮） */
    box-sizing: border-box; /* 幅の計算にパディングを含める */
  }
  /* コンタクトフォームのレイアウト */
  .wpcf7-form {
    padding: 25px;
    width: 98%;
    max-width: 100%;
  }
  /* プライバシーポリシーページのレイアウト */
  .privacy-comment {
    width: 98%;
    max-width: 100%;
  }
  .footer-section ul {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  #shimei-lyrics-box {
    padding: 23px;
    max-width: 98%;
  }
  #shimei-lyrics-box h2.lyrics-1 {
    font-size: 22px;
  }
  #shimei-lyrics-box h3.lyrics-2 {
    font-size: 18px;
  }
  #shimei-lyrics-box p {
    font-size: 15px;
  }
}
/* 480px 以下（スマホ） */
@media screen and (max-width: 480px) {
  /* ここにスマホ用のCSSを記述 */
  /* カスタムヘッダースマートフォン表示時のレイアウト */
  .main, .sidebar, .sidebar-left .main, .sidebar-left .sidebar {
    margin: 0 !important;
  }
  .first-view {
    height: 750px; /* SP版の高さ */
  }
  .first-view-content {
    top: 80%;
    width: 90%;
    left: 54%;
  }
  .section.omoi {
    height: fit-content;
  }
  /* 改行タグ表示 */
  .sp_br {
    display: block;
  }
  /* コンテンツ下部のボタン非表示 */
  menu-buttons.mobile-menu-buttons {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
  .custom-nav ul {
    display: none;
    width: 100%;
  }
  .menu-toggle:checked ~ .custom-nav ul {
    display: block;
  }
  .fade-up {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .logo img {
    height: 40px;
  }
  .custom-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn a {
    padding: 8px 16px;
  }
  /* トップページ全コンテンツBOXのレイアウト */
  .contents-box {
    width: 100%;
    height: auto;
    max-width: 98vw;
    margin: 30px auto 30px;
  }
  .service-text {
    max-width: 100%;
    width: 98%;
    padding: 0 0.8rem;
  }
  .customer-voice-link .button {
    font-size: 0.8rem;
  }
  /* サービスページこのコースがオススメの方のレイアウト */
  .content-inner {
    display: block;
    width: 98%;
    max-width: 100%;
  }
  /* プロフィールページのレイアウト */
  .profile-intro {
    display: block;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 95%;
    text-align: center;
  }
  .profile-text {
    text-align: left;
  }
  /* プロフィールページテーブルのレイアウト */
  .profile-table, .achievements-table {
    width: 98%;
    max-width: 100%;
  }
  .access-contents {
    display: block;
    width: 95%;
    max-width: 100%;
  }
  /* プロフィール 志命発見～人生輝き～紹介コンテンツのレイアウト */
  section#shimei_uta {
    height: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 10% 4%;
    max-height: fit-content;
  }
  .uta_contents_box {
    width: 98%;
    /* max-width: 1100px; */
  }
  /* コンタクトフォームのレイアウト */
  .wpcf7-form {
    padding: 20px;
    width: 98%;
    max-width: 100%;
  }
  .table_form th {
    text-align: left;
    width: 100%;
    display: block;
  }
  .table_form td {
    display: block;
  }
  /* お客様声アーカイブのレイアウト */
  .customer-voice-wrapper {
    display: block;
  }
  .customer-voice-item {
    margin-top: 10px;
  }
  .related-posts {
    display: block;
  }
  .related-post-item {
    margin-bottom: 5px;
  }
}