@charset "utf-8";
/* ==========================================================================
   1. 変数宣言・共通設定
   ========================================================================== */ :root {
  --clr-gold: #C6A957;
}
body, button, input, select, textarea {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}
/* 表示切替 */
.forSP {
  display: none !important;
}
.forPC {
  display: block !important;
}
/* ==========================================================================
   2. ヘッダースタイル
   ========================================================================== */
.site_header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo img {
  height: 40px;
  width: auto;
  display: block;
}
.global_nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
  align-items: center;
}
.global_nav a {
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  transition: color 0.3s;
}
.global_nav a:hover {
  color: #bf0000;
}
.global_nav a.btn_inquiry {
  background: #000000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
}
.global_nav a.btn_inquiry:hover {
  background: #333333;
  color: #fff;
}
.hamburger_btn {
  display: none;
}
/* ==========================================================================
   3. トップページ専用スタイル
   ========================================================================== */
.hero_slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: #000000;
}
.hero_slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero_video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero_catch {
  position: relative;
  z-index: 2;
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 38px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.q_about_wabigaku {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 2.2;
  text-align: center;
}
.q_about_wabigaku span {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 17px;
  color: #333333;
}
.banner_section {
  position: relative;
  width: 100%;
  height: 400px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin: 60px 0 0;
  background-color: #000000;
  background-position: center top !important;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.banner_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.banner_section h2 {
  position: relative;
  z-index: 1;
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 32px;
  margin: 0;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
/* 2列カードナビゲーション */
.top_nav_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 0;
  margin: 0;
}
.top_nav_card {
  position: relative;
  height: 380px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  display: block;
}
.top_nav_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.top_nav_card:hover img {
  transform: scale(1.04);
}
.card_badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 140px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
}
.card_badge span {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  display: block;
  letter-spacing: 0.05em;
}
.top_nav_title {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.top_nav_title.pos_left {
  left: 30px;
}
.top_nav_title.pos_right {
  right: 30px;
}
/* 左右2分割セクション */
.feature_split {
  display: flex;
  width: 100%;
  min-height: 480px;
  margin: 0;
}
.feature_split.reverse {
  flex-direction: row-reverse;
}
.feature_img_box {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.feature_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.feature_img_box:hover img {
  transform: scale(1.05);
}
.feature_img_title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.feature_text_box {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  box-sizing: border-box;
  text-align: center;
}
.feature_heading {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 32px;
  margin: 0 0 30px 0;
  color: #000000;
  letter-spacing: 0.15em;
  font-weight: normal;
}
.feature_desc {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 14px;
  line-height: 2.2;
  color: #444444;
  margin: 0;
  letter-spacing: 0.05em;
}
/* 下部アクションエリア */
.bottom_action_clm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0;
}
.bottom_action_clm .action_btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
  transition: background 0.4s ease, transform 0.4s ease;
}
.bottom_action_clm .action_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bottom_action_clm .action_btn:hover::before {
  opacity: 1;
}
.bottom_action_clm .action_btn:hover .action_btn_arrow {
  transform: translateX(8px);
}
.bottom_action_clm .action_btn:hover .action_btn_sub {
  color: #fff;
  opacity: 1;
}
.action_btn_sub {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.action_btn_main {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 26px;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.action_btn_arrow {
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.bg-grad--red {
  background: linear-gradient(135deg, #8A1818 0%, #420808 100%) !important;
}
.bg-grad--yellow {
  background: linear-gradient(135deg, #A88832 0%, #594612 100%) !important;
}
/* ==========================================================================
   4. 体験一覧・汎用コンポーネント
   ========================================================================== */
.q_custom_table th {
  background-color: var(--clr-gold) !important;
  font-weight: bold !important;
}
.q_custom_heading.q_custom_heading--h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.q_custom_heading.q_custom_heading--h2 .q_custom_heading--label {
  padding: 5px;
  background-color: var(--clr-gold);
}
.q_custom_clm {
  display: grid;
}
.q_custom_clm.q_custom_clm-2col {
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .q_custom_clm.q_custom_clm-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_hero_single {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #000000;
}
.page_hero_single img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.page_hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background-color: #000000;
}
.page_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.65;
}
.page_hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.page_hero_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
}
.page_hero_inner h1 {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 34px;
  letter-spacing: 0.12em;
  margin: 0;
  font-weight: normal;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.page_hero_sub {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #C6A957;
  display: block;
  margin-bottom: 8px;
}
.page_hero_line {
  width: 40px;
  height: 1px;
  background: #C6A957;
  margin: 20px auto 0;
}
/* ==========================================================================
   5. Wabigakuについて 固有スタイル
   ========================================================================== */
.about_hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.about_hero_inner {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.about_hero_inner h1 {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 38px;
  margin: 0;
  letter-spacing: 0.15em;
  font-weight: normal;
}
.about_hero_sub {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #C6A957;
  display: block;
  margin-bottom: 8px;
}
.about_hero_line {
  width: 40px;
  height: 1px;
  background: #C6A957;
  margin: 20px auto 0;
}
.about_intro {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}
.about_container {
  max-width: 900px;
  margin: 0 auto;
}
.about_intro_title {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 32px;
  line-height: 1.6;
  margin: 0 0 35px;
  color: #111;
  font-weight: normal;
  letter-spacing: 0.08em;
}
.about_intro_body {
  font-size: 18px;
  line-height: 2.2;
  color: #555555;
}
.about_intro_lead {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #eeeeee;
  font-size: 20px;
  color: #111;
  font-family: "游明朝", "Yu Mincho", serif;
  line-height: 2;
}
.about_features {
  padding: 90px 20px;
  background: #f4f4f4;
}
.feature_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature_card {
  background: #fff;
  padding: 45px 35px;
  border: 1px solid #eaeaea;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.feature_card h2 {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 24px;
  margin: 0 0 12px;
  color: #111;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.feature_card p {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.8;
}
.feature_num {
  font-family: serif;
  font-size: 32px;
  color: #C6A957;
  display: block;
  margin-bottom: 15px;
  line-height: 1;
}
.about_strength {
  padding: 80px 20px 100px;
  background: #fff;
}
.strength_box {
  border: 1px solid #C6A957;
  padding: 50px 40px;
  background: #fafaf8;
}
.q_about_list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  gap: 25px;
}
.q_about_list li {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 18px;
  color: #222222;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.q_about_list li::before {
  content: '✓';
  color: #C6A957;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
}
/* ==========================================================================
   6. 会社情報テーブル
   ========================================================================== */
.company_container {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 20px;
}
.company_table {
  width: 100%;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.company_table th, .company_table td {
  padding: 22px 25px;
  border-bottom: 1px solid #eeeeee;
  vertical-align: top;
  text-align: left;
}
.company_table th {
  width: 28%;
  background-color: #f9f8f3;
  color: #111;
  font-weight: normal;
  font-family: "游明朝", "Yu Mincho", serif;
  letter-spacing: 0.05em;
  border-right: 1px solid #eeeeee;
}
.company_table td {
  color: #444444;
}
.company_table tr:last-child th, .company_table tr:last-child td {
  border-bottom: none;
}
/* ==========================================================================
   7. お問い合わせフォーム・プライバシーポリシー
   ========================================================================== */
.inquiry_container {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 20px;
  line-height: 1.9;
}
.wpcf7 p {
  margin-bottom: 0 !important;
}
.wpcf7-form-control-wrap[data-name="product-title"] .wpcf7-form-control.wpcf7-select {
  width: 100%;
  max-width: 100%;
}
.q_form_block {
  display: grid;
  gap: 1em;
  margin-top: 1em;
}
.q_form_input {
  display: flex;
  gap: 0.5em;
}
.q_form_input .wpcf7-form-control-wrap {
  width: 100%;
}
.q_form_input br {
  display: none;
}
.q_form_label-group {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.q_form_label-group .q_form_label-require {
  display: inline-block;
  padding: 3px;
  background-color: #FDE8E8;
  color: #cc0000;
}
.q_form_label-group .q_form_label-any {
  display: inline-block;
  padding: 3px;
  background-color: #cccccc;
  color: #333333;
}
.q_privacy_policy_box {
  border: 1px solid #e8e8e8;
  padding: 35px 30px;
  background: #fff;
  max-height: 420px;
  overflow-y: scroll;
  margin-top: 2em;
  margin-bottom: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}
.q_privacy_policy_box::-webkit-scrollbar {
  width: 6px;
}
.q_privacy_policy_box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.q_privacy_policy_box::-webkit-scrollbar-thumb {
  background: #C6A957;
}
.q_privacy_policy_box h3 {
  font-family: "游明朝", "Yu Mincho", serif;
  margin-top: 0;
  font-size: 22px;
  font-weight: normal;
  color: #111;
  border-bottom: 1px solid #C6A957;
  padding-bottom: 12px;
  margin-bottom: 25px;
  letter-spacing: 0.08em;
}
.q_privacy_content {
  font-size: 14px;
  color: #444444;
  line-height: 2;
}
.q_privacy_content h2.styled_h2 {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 16px;
  font-weight: normal;
  color: #111;
  margin-top: 30px;
  margin-bottom: 15px;
  background: #f9f8f3;
  border-left: 3px solid #C6A957;
  padding: 8px 14px;
  letter-spacing: 0.05em;
}
.q_privacy_content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.q_privacy_content li {
  margin-bottom: 8px;
}
.q_privacy_content a {
  color: #111;
  transition: color 0.3s;
}
.q_privacy_content a:hover {
  color: #C6A957;
}
.q_privacy_check {
  text-align: center;
  font-size: 17px;
  margin: 35px 0 30px;
  font-family: "游明朝", "Yu Mincho", serif;
  color: #111;
}
.q_privacy_check label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.q_privacy_check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #C6A957;
  cursor: pointer;
}
.q_form_checkbox, .q_form_radio {
  padding: 20px;
  border: 1px solid #dddddd;
  background-color: #fff;
  margin-bottom: 2em;
}
.q_form_checkbox .wpcf7-checkbox, .q_form_radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.q_form_checkbox .wpcf7-checkbox .wpcf7-list-item, .q_form_radio .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.q_form_checkbox .wpcf7-checkbox .wpcf7-list-item label, .q_form_radio .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.q_form_checkbox .wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"], .q_form_checkbox .wpcf7-checkbox .wpcf7-list-item label input[type="radio"], .q_form_radio .wpcf7-radio .wpcf7-list-item label input[type="checkbox"], .q_form_radio .wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  margin: 0;
}
.q_form_group_wrap > * {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
.q_form_btn_wrap {
  padding-bottom: 1.5em;
}
.q_form_btn_wrap > * {
  display: grid;
  gap: 0.5em;
}
.q_form_btn_wrap .wpcf7-spinner {
  order: 3;
  margin-inline: auto;
}
.q_form_btn_wrap .q_custom_button1.wpcf7-previous {
  background-color: #fff;
  border: 1px solid #ccc !important;
  color: #000000 !important;
  margin-top: 0;
}
.q_form_btn_wrap .q_custom_button1.wpcf7-previous:hover {
  background-color: #b9b9b9 !important;
}
.q_privacy-policy-area .q_custom_button3 {
  pointer-events: none;
  cursor: not-allowed;
  transition: 0.3s;
  opacity: 0.6;
}
.q_privacy-policy-area:has(input[type="checkbox"]:checked) .q_custom_button3 {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
.q_button_wrap {
  text-align: center;
  margin-top: 25px;
}
.q_custom_button3 {
  background-color: #111;
  color: #fff;
  font-size: 16px;
  font-family: "游明朝", "Yu Mincho", serif;
  letter-spacing: 0.15em;
  border-radius: 0px;
  border: 1px solid #111;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.q_custom_button3:not(:disabled):hover {
  background-color: #C6A957;
  border-color: #C6A957;
  color: #fff;
}
/* ==========================================================================
   8. フッタースタイル
   ========================================================================== */
.site_footer {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #000000;
}
.footer_bg_area {
  position: relative;
  width: 100%;
  padding: 100px 20px 80px;
  box-sizing: border-box;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../uploads/2026/06/bg_footer_20260622_圧縮-scaled-e1782116182639-2048x1062.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer_bg_area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.footer_inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.footer_logo img {
  height: 60px;
  width: auto;
  margin-bottom: 40px;
  display: inline-block;
}
.footer_nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  flex-wrap: wrap;
}
.footer_nav a {
  color: #fff;
  text-decoration: none;
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.footer_nav a:hover {
  opacity: 0.7;
}
.copyright_bar {
  background-color: #000000;
  padding: 18px 20px;
  text-align: center;
}
.copyright {
  font-size: 12px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
}
/*プライバシーポリシー */
.privacy_container {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 20px;
}
/* ポリシー全体カードボックス */
.q_privacy_policy_box {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 50px 45px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.q_privacy_policy_box h3 {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: normal;
  color: #111111;
  margin-top: 0;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #C6A957;
  letter-spacing: 0.08em;
}
/* スクロールBOX指定を完全に解除（そのまま縦いっぱいに表示） */
.q_privacy_content {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  line-height: 2.1;
  font-size: 15px;
  color: #444444;
}
.q_privacy_content p {
  margin-bottom: 25px;
}
/* 小見出しスタイル */
.q_privacy_content h2.styled_h2 {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: normal;
  color: #111111;
  background: #f9f8f3;
  border-left: 3px solid #C6A957;
  padding: 10px 18px;
  margin-top: 45px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.q_privacy_content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}
.q_privacy_content li {
  margin-bottom: 10px;
}
.q_privacy_content a {
  color: #111111;
  transition: color 0.3s;
}
.q_privacy_content a:hover {
  color: #C6A957;
}
 
/* ==========================================================================
   9. レスポンシブ表示設定 (SP用: 750px以下)
   ========================================================================== */

/* テーブルの溢れ出し防止 */
.q_custom_table {
  width: 100%;
  table-layout: fixed; /* 列幅の比率指定を強制 */
  border-collapse: collapse; /* 既存の設定を維持 */
}

@media (max-width: 750px) {
  /* 表示切替 */
  .forSP { display: block !important; }
  .forPC { display: none !important; }

  /* ヘッダー・ハンバーガー */
  .header_inner {
    flex-direction: row !important;
    padding: 12px 20px;
  }
  .hamburger_btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
  }
  .hamburger_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111111;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }
  .hamburger_btn.is_active span { background-color: #ffffff; }
  .hamburger_btn.is_active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger_btn.is_active span:nth-child(2) { opacity: 0; }
  .hamburger_btn.is_active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* スマホ用全画面ドロワーナビ（100dvh対応） */
  .global_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* iOSアドレスバー追従対応 */
    background-color: rgba(17, 17, 17, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .global_nav.is_active {
    opacity: 1;
    visibility: visible;
  }
  .global_nav ul {
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .global_nav a {
    color: #ffffff !important;
    font-size: 18px !important;
    letter-spacing: 0.15em;
    display: block;
  }
  .global_nav a.btn_inquiry {
    background: #C6A957 !important;
    color: #ffffff !important;
    padding: 12px 36px !important;
    border-radius: 0px !important;
    margin-top: 10px;
  }

  /* テーブルの溢れ出し防止 */
  .q_custom_table {
    width: 100%;
  }
  .q_custom_table th, 
  .q_custom_table td {
    padding: 10px 12px;
    font-size: 13px;
    white-space: normal;
  }

  /* 体験詳細・ヒーローエリア調整 */
  .experience_detail {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 30px auto 60px;
  }
  .page_hero_single {
    height: auto;
    max-height: 320px;
  }
  .page_hero_single img {
    height: auto;
    max-height: 320px;
    object-fit: cover;
  }

  /* レイアウト調整 */
  .hero_slider { height: 50vh; min-height: 300px; }
  .hero_catch { font-size: 24px; }
  .banner_section { height: 250px; }
  .banner_section h2 { font-size: 22px; }
  .top_nav_grid { grid-template-columns: 1fr; }
  .top_nav_card { height: 260px; }
  .top_nav_title.pos_right { left: 30px; right: auto; }
  .feature_split, .feature_split.reverse { flex-direction: column; }
  .feature_img_box { height: 280px; }
  .feature_text_box { padding: 40px 20px; }
  .feature_heading { font-size: 24px; }
  .feature_img_title { font-size: 20px; }
  .bottom_action_clm { grid-template-columns: 1fr; }
  .bottom_action_clm .action_btn { height: 140px; font-size: 22px; }
  .page_hero { height: 240px; }
  .page_hero_inner h1 { font-size: 22px; }
  .about_hero { height: 260px; }
  .about_hero_inner h1 { font-size: 26px; }
  .about_intro { padding: 60px 20px; }
  .about_intro_title { font-size: 22px; }
  .about_intro_body { font-size: 15px; }
  .about_intro_lead { font-size: 16px; margin-top: 25px; padding-top: 25px; }
  .about_features { padding: 60px 20px; }
  .feature_grid { grid-template-columns: 1fr; gap: 20px; }
  .feature_card { padding: 30px 20px; }
  .feature_card h2 { font-size: 20px; }
  .strength_box { padding: 30px 20px; }
  .q_about_list li { font-size: 15px; }
  .company_container { margin: 40px auto 60px; padding: 0 15px; }
  .company_table { font-size: 14px; }
  .company_table th, .company_table td { display: block; width: 100%; box-sizing: border-box; padding: 15px 18px; border-right: none; }
  .company_table th { background-color: #f9f8f3; border-bottom: none; padding-bottom: 6px; }
  .company_table td { padding-top: 6px; }
  .inquiry_container { margin: 40px auto 60px; padding: 0 15px; }
  .q_privacy_policy_box { padding: 25px 18px; max-height: 350px; }
  .q_privacy_policy_box h3 { font-size: 18px; }
  .q_privacy_check { font-size: 15px; }
  .footer_bg_area { padding: 60px 15px 50px; }
  .footer_logo img { height: 45px; margin-bottom: 30px; }
  .footer_nav ul { gap: 15px; flex-direction: column; }
  .footer_nav a { font-size: 13px; }
}