:root {
  --background: #ffffff;
  --background-light: #FFF5F9;
  --background-beige: #FFFAF8;
  --black: #333333;
  --light-pink: #FFF5F9;
  --main-color: #E72E79;
  --pink: #FF6DB6;
  --sub-pink: #F4A4C4;
  --warm-pink: #e7b09f;
  --light-red: #B74B5D;
  --yellow: #fcee09;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-noto-serif: "Noto Serif JP", serif;
  --font-family-noto-sans: "Noto Sans JP", sans-serif;
  --font-family-zen-maru: "Zen Maru Gothic", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2l: 24px;
}

html{
  font-size: 62.5%;
  height: 100%;
}

body{
  background: var(--background);
  font-family: var(--font-family-noto-sans);
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-family-zen-maru);
}

p {
  line-height: 1.6;
  letter-spacing: 0.06rem;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* ************************************ */
/* ヘッダー */
/* ************************************ */
header {
  background: var(--background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール時のヘッダー */
header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.hide {
  transform: translateY(-100%);
}

.header-container {
  margin: 0 auto;
  padding: 1rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.header-inner .logo-link {
  text-decoration: none;
  cursor: pointer;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_logo--img {
  margin: 0;
  max-width: 80px;
}

.header_recruit {
  margin: 0;
}

.header_recruit .main-title {
  color: var(--main-color);
  display: block;
  font-family: var(--font-family-zen-maru);
  font-size: 2.8rem;
  font-weight: 900;
  margin-top: -5px;
}

.header_recruit .sub-title {
  color: #F4A4C4;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}

/* ロゴ */
.logo {
  letter-spacing: 0.15rem;
}

.header_logo {
  margin: 0;
}

/* PCナビゲーション */
.header-nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header-nav-menu li a {
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-family-noto-sans);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav-menu li a:hover {
  color: var(--main-color);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav_entry {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.nav_entry .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin: 0 auto;
  padding: 0.5em 1em;
  border: none;
  border-radius: 100vh;
  text-decoration: none;
  color: var(--background);
  font-weight: 600;
  font-size: 1.6rem;
}

.nav_entry .btn_main {
  background: var(--main-color);
  border: solid 1px var(--main-color);
}

.nav_entry .btn_main:hover {
  background: var(--background);
  color: var(--main-color);
  transition: background 0.4s ease, color 0.4s ease;
}

.nav_entry .btn_sub {
  background: var(--white);
  border: solid 1px var(--main-color);
  color: var(--main-color);
}

.nav_entry .btn_sub:hover {
  background: var(--main-color);
  border: solid 1px var(--main-color);
  color: var(--white);
  transition: background 0.4s ease, color 0.4s ease;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E72E79;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--light-pink);
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 100px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  padding: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-family-noto-sans);
  font-size: 1.4rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.mobile-menu ul li a:hover {
  background-color: #f8f9fa;
  color: var(--main-color);
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .header_recruit .main-title {
    font-size: 2.2rem;
  }

  .header_logo--img {
    max-width: 60px;
  }
}
/* ************************************ */
/* フッター */
/* ************************************ */
.footer {
  background: var(--background-light);
  color: var(--black);
  padding: 40px 0 0;
  position: sticky;
  top: 100vh;
  width: 100%;
}

.footer-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* フッターロゴ */
.footer-inner .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer_logo img {
  width: 80px;
}

.footer_recruit {
  margin: 0;
}

.footer_recruit .main-title {
  color: var(--main-color);
  display: block;
  font-family: var(--font-family-zen-maru);
  font-size: 2.8rem;
  font-weight: 900;
}

.footer_recruit .sub-title {
  color: #F4A4C4;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}

.footer-info p {
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.footer-info .tel {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 1rem;
}

.footer-info .f-hour {
  margin-bottom: 2rem;
}

/* フッターナビゲーション */
.footer-nav {
  border-top: solid 1px #eaeaea;
  max-width: 980px;
  margin: 5rem auto 0;
  padding: 2rem;
}

.footer-nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  padding-left: 0;
}

.footer-nav-menu li a {
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-family-noto-sans);
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-nav-menu li a:hover {
  opacity: 0.8;
}

/* copyright */
.copyright {
  background-color: var(--background);
  text-align: center;
  padding: 20px 0;
  color: var(--black);
  font-size: 1rem;
}

.copyrightWrap {
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px;
}

.copyright-link {
  color: var(--black);
  text-decoration: none;
  margin-bottom: 1rem;
}

.copyright p {
  margin: 0;
}

/* ************************************ */
/* button */
/* ************************************ */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 0 auto;
  padding: 12px 2em;
  border: none;
  border-radius: 100vh;
  text-decoration: none;
  color: var(--background);
  font-weight: 600;
  font-size: 1.8rem;
}

.btn_main {
  background: var(--main-color);
  border: solid 1px var(--main-color);
}

.btn_main:hover {
  background: var(--background);
  color: var(--main-color);
  transition: background 0.4s ease, color 0.4s ease;
}

.btn_sub {
  background: var(--white);
  border: solid 1px var(--main-color);
  color: var(--main-color);
}

.btn_sub:hover {
  background: var(--main-color);
  border: solid 1px var(--main-color);
  color: var(--white);
  transition: background 0.4s ease, color 0.4s ease;
}


/* ************************************ */
/* breadcrumb */
/* ************************************ */
.breadcrumb {
  margin: 20px 0;
  font-size: 14px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1240px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #999;
  font-weight: normal;
}

.breadcrumb-item a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.breadcrumb-item.current span {
  color: var(--main-color);
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .breadcrumb {
      font-size: 12px;
      margin: 15px 0;
  }
  
  .breadcrumb-item:not(:last-child)::after {
      margin: 0 4px;
  }
}


/* ************************************ */
/* メインコンテンツ（front-page.php） */
/* ************************************ */
#front-page {
  background: var(--background);
}

main {
  padding: 8rem 0 0;
  position: relative;
  z-index: 0;
}

.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.mainVisual-wrapper {
  position: relative;
}

.mainVisual img {
  width: 100%;
  height: auto;
  display: block;
}

/* .mainVisual-overlay {
  display: none;
} */
@media (min-width: 1600px) {
  .mainVisual-overlay {
    bottom: 220px!important;
  }
}
@media (min-width: 1100px) {
  .mv-main {
    font-size: 32px;
  }
}

@media (min-width: 769px) {
  .mainVisual img {
    max-height: 60vw;
    object-fit: cover;
  }

  .mainVisual-overlay {
    display: block;
    position: absolute;
    bottom: 40px;
    transform: translateX(-50%);
    left: 50%;
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
  }

  .mv-sub {
    font-family: var(--font-family-noto-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #333;
    margin: 0 0 16px;
    text-decoration: underline;
    text-decoration-color: #FFFC92;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
  }

  .mv-main {
    font-family: var(--font-family-noto-sans);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-align: center;
    color: #E72E79;
    margin: 0;
  }
}
@media (max-width: 1000px) {
  .mainVisual-overlay {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .mainVisual-wrapper {
    background: var(--background-light);
    padding-bottom: 100px;
  }
  .mainVisual-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: 90%;
  }

  .mv-sub {
    font-family: var(--font-family-noto-sans);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #333;
    margin: 0 0 16px;
    text-decoration: underline;
    text-decoration-color: #FFFC92;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
  }

  .mv-main {
    font-family: var(--font-family-noto-sans);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-align: center;
    color: #E72E79;
    margin: 0;
  }
}

.section_title {
  text-align: center;
  position: relative;
}

.section_title .ttl_en {
  font-family: var(--font-family-zen-maru);
  font-size: 1.5rem;
  color: var(--sub-pink);
  letter-spacing: 4px;
  font-weight: 400;
}

.section_title .ttl_jp {
  font-family: var(--font-family-zen-maru);
  font-size: 3rem;
  color: var(--black);
  letter-spacing: 6px;
  font-weight: 900;
}

.content-section {
  padding: 80px 40px;
}

.sectionWrapper {
  padding: 90px 40px 80px;
  position: relative;
  overflow: hidden;
}
.section_title h2 {
  margin:0 0 5rem;
}

.ttl_en, .ttl_jp {
  margin: 0;
}

/* support */
.top_support {
  background: var(--background-beige);
}

.support_content {
  position: relative;
  z-index: 1;
}

.support_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  justify-content: space-between;
  margin-top: 60px;
}

.support_item {
  background: var(--background);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}


.support_num {
  font-family: "Roboto", sans-serif;
  font-size: 4.4rem;
  color: var(--main-color);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 4px;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 30px;
  margin: 0;
}

.support_img {
  margin-bottom: 0;
}

.support_img img {
  border-radius: 10px 10px 0 0;
}

.support_info {
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  padding: 3.5rem 1.5rem;
}

.support_info .main_txt {
  color: var(--black);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}

.support_info .main_txt span {
  background: linear-gradient(transparent 70%, #fff83c 50%);
}

.support_info .sub_txt {
  color: var(--black);
  font-size: 1.6rem;
}

/* =========================== */

/* support new */

/* =========================== */
.top-support {
  background: var(--background-light);
}
.top-support__header {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
}

.top-support__header-sub {
  font-family: var(--font-family-zen-maru, 'Zen Maru Gothic', sans-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--sub-pink);
  margin: 0 0 8px;
}

.top-support__header-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  margin: 0;
  line-height: 1;
}

.top-support__header-clinic {
  font-family: var(--font-family-zen-maru, 'Zen Maru Gothic', sans-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--main-color);
}

.top-support__header-suffix {
  font-family: var(--font-family-noto-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--black);
}

.top-support__header-deco {
  position: absolute;
  right: 35%;
  transform: translateX(-50%);
  bottom: 0;
}

.top-support__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.top-support__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background-color: var(--white);
  overflow: hidden;
  border-radius: 10px;
}

.top-support__card-image {
  margin: 0;
  padding: 0;
  height: 100%;
}

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

.top-support__card-body {
  padding: 30px 40px;
  box-sizing: border-box;
}

.top-support__card-number {
  font-family: var(--font-family-roboto);
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  color: var(--main-color);
  text-decoration: underline;
  text-decoration-color: var(--main-color);
  margin: 0 0 8px;
}

.top-support__card-title {
  font-family: var(--font-family-zen-maru);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--black);
  /* 黄色の下線 */
  display: inline;
  background: linear-gradient(transparent 60%, #FFE566 60%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.top-support__card-text {
  font-family: var(--font-family-noto-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--black);
  margin: 16px 0 0;
  text-align: justify;
}

.top-support__card--img-left .top-support__card-image {
  order: 1;
}
.top-support__card--img-left .top-support__card-body {
  order: 2;
}

.top-support__card--img-right .top-support__card-image {
  order: 2;
}
.top-support__card--img-right .top-support__card-body {
  order: 1;
}

@media (max-width: 768px) {

  .top-support__header {
    margin-bottom: 32px;
  }

  .top-support__content {
    gap: 32px;
  }

  .top-support__card {
    grid-template-columns: 1fr;
  }

  .top-support__card--img-left .top-support__card-image,
  .top-support__card--img-right .top-support__card-image {
    order: 1;
  }

  .top-support__card--img-left .top-support__card-body,
  .top-support__card--img-right .top-support__card-body {
    order: 2;
  }

  .top-support__card-body {
    padding: 20px;
  }

  .top-support__card-number {
    font-size: 24px;
    line-height: 32px;
  }

  .top-support__card-title {
    font-size: 16px;
  }
}


/* =========================== */

/* message */

/* =========================== */
.top_message .container {
  max-width: 1000px;
  padding: 0;
}

.top-message__content {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.message_img {
  position: relative;
  max-width: 460px;
  margin-bottom: 16px;
}

.message_img img {
  border-radius: 10px;
}

.message_plate {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  bottom: 20px;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 40px;
}

.message_plate .company_name {
  margin: 0;
  color: var(--main-color);
  font-family: var(--font-family-zen-maru);
  font-size: 1.3rem;
  font-weight: 500;
}

.message_plate .name {
  margin: 0;
  font-family: var(--font-family-noto-sans);
  font-size: 1.3rem;
  font-weight: 400;
}

.message_plate .name span {
  margin-right: 1rem;
}

.message_title {
  text-align: left;
  margin-bottom: 40px;
}

.message_title .catch {
  background: linear-gradient(transparent 70%, #FFF5F9 70%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-family: var(--font-family-zen-maru);
  font-size: 3.6rem;
  color: #3b3b3b;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
}

.message_info {
  margin: 5rem auto 0;
  width: 58%;
}

.message_info .txt {
  margin-bottom: 6.4rem;
}

.message_info .txt p{
  font-size: 1.6rem;
  line-height: 32px;
  text-align: justify;
}

.message_info .txt-p {
  color: var(--main-color);
  margin-bottom: 0;
}

.message_header {
  width: 40%;
}

.message_tbl {
  background: #FFF7F4;
  border-radius: 5px;
  padding: 16px;
}

.message_tbl-title {
  color: #F18802;
  font-family: var(--font-family-noto-sans);
  font-size: 11px;
  font-weight: 400;
  margin-top: 0;
}

.message_tbl .table {
  border-collapse: collapse;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.message_tbl .table, .message_tbl .table th, .message_tbl .table td {
  border: none;
}

.message_tbl .table th {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  width: 25%;
}

.message_tbl .table td {
  color: var(--black);
  font-size: 1.1rem;
  width: 75%;
}

.top_message .btn_area {
  display: flex;
  gap: 4rem;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.top_message .btn_area .btn_message {
  background: #F18802;
  border: solid 1px #F18802;
  color: var(--white);
}

.top_message .btn_area .btn_message:hover {
  background: var(--white);
  border: solid 1px #F18802;
  color: #F18802;
  transition: background 0.4s ease, color 0.4s ease;
}

@media (max-width: 768px) {
  .top-message__content {
    flex-direction: column;
    gap: 4rem;
  }

  .message_title .catch {
    font-size: 2rem;
  }

  .message_info {
    width: 100%;
  }

  .message_header {
    width: 100%;
  }

  .message_img {
    width: 100%;
  }

  .message_info .txt {
    margin-bottom: 3rem;
  }

  /* ***** message-table ***** */
  .message_tbl .table {
    border: none;
    width: 100%;
  }

  .message_tbl .table thead {
    display: none;
  }

  .message_tbl .table tr {
    display: block;
    border: none;
  }

  .message_tbl .table th, .message_tbl .table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
  }

  .message_tbl .table th {
    text-align: left;
  }

  .message_tbl .table tr:last-child td {
    border-bottom: none;
  }

  .top_message .btn_area {
    flex-direction: column;
  }
}


/* =========================== */

/* interview */

/* =========================== */
.top_interview {
  background: var(--background-beige);
}

.top_interview .sectionInner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.interview-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
}

.interview-card__icon {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  /* 正方形を維持 */
  width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

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

.interview-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.interview-card__label {
  display: inline-block; /* テキスト幅に合わせる */
  align-self: flex-start;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  padding: 4px 10px;
  font-family: var(--font-family-noto-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
  margin: 0;
  white-space: nowrap;
}

.interview-card__text {
  font-family: var(--font-family-noto-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #333;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .top_interview .sectionInner {
    gap: 40px;
  }

  .top-support__header-deco {
    position: absolute;
    right: -15px;
    transform: none;
    bottom: 0;
  }

  .interview-card {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center; /* アイコンを中央寄せ */
  }

  .interview-card__icon {
    width: 100px;
  }

  .interview-card__body {
    width: 100%;
    padding-top: 0;
    align-items: flex-start;
  }
}

/* =========================== */

/* recruit */

/* =========================== */
.top_recruit .tab-container {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit_desc {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.tab-header {
  display: flex;
  background: var(--background-light);
}

.tab-button {
  flex: 1;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family-noto-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.tab-button.active {
  color: #fff;
  background: var(--main-color);
}

.tab-content {
  background: var(--background);
  padding: 6rem 3.2rem 4.8rem;
  min-height: 400px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

.recruit_tbl .table {
  border-collapse: collapse;
  max-width: 980px;
  margin: 0 auto 6rem;
  width: 100%;
}

.recruit_tbl .table, .recruit_tbl .table th, .recruit_tbl .table td {
  border: 1px solid var(--black);
}

.recruit_tbl .table th {
  background: var(--background-light);
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 2rem;
  text-align: left;
  width: 25%;
}

.recruit_tbl .table td {
  color: var(--black);
  font-size: 1.6rem;
  padding: 2rem 2rem 2rem 3rem;
  text-align: justify;
}

.recruit_tbl .label-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.recruit_tbl-list {
  padding-left: 1em;
  margin: 0 0 5px;
}

.recruit_tbl-list li:not(:last-child) {
  margin-bottom: 3px;
}

.recruit_tbl .tbl-content:not(:last-of-type) {
  margin-bottom: 4rem;
}

.recruit_tbl .tbl-content .tbl-content_title {
  font-family: var(--font-family-noto-sans);
  font-weight: bold;
  margin: 0 0 1rem;
}

.recruit_tbl .tbl-content .tbl-content_subtitle {
  margin-bottom: 1rem;
}

.recruit_tbl .tbl-content ul {
  padding-left: 2rem;
  margin: 0;
}

.recruit_tbl .tbl-content_list {
  padding-left: 2rem;
  margin: 5px 0;
}

.top_recruit .btn_area {
  display: flex;
  gap: 4rem;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.page_recruit .btn_area {
  /* display: flex;
  gap: 4rem;
  max-width: 650px;
  margin: 0 auto;
  width: 100%; */
  display: none;
}

.page_recruit .tab-content,
.page_tour .tab-content {
  padding-bottom: 0;
}

@media (max-width: 768px) {
/* recruit */
  .top_recruit .btn_area {
    flex-direction: column-reverse;
  }

  .page_recruit .sectionWrapper {
    padding: 60px 0 40px!important;
  }

  .page_recruit .btn_area {
    flex-direction: column;
    gap: 3rem;
  }

  .recruit_tbl .table th {
    font-size: 1.3rem;
    padding: 2rem .5rem 2rem 1rem;
    width: 30%;
  }
  
  .recruit_tbl .table td {
    font-size: 1.3rem;
    padding: 2rem 1rem;
    width: 70%;
  }
}


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.contactWrap {
  text-align: center;
}

.contactWrap p{
  color: var(--yellow);
  font-size: 1.6rem;
  padding: 30px 0;
}


/* ************************************ */

/* 404.php */

/* ************************************ */
.page-404 {
  text-align: center;
}

.page-404,
.page-404 h1,
.page-404 p {
  color: var(--white);
}

.page-404 h1 {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

.page-404 p {
  font-size: var(--font-size-md);
  margin-bottom: 3rem;
}

.page-404 .return-link {
  color: var(--yellow);
  font-size: var(--font-size-md);
}

/* ************************************ */

/* page-fv.php */

/* ************************************ */
.page-fv-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDF3F6;
  padding: 0 40px 0 40px;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom: 5px solid #E72E79;
  text-align: center;
  min-height: 200px;
}

/* テキストエリア */
.page-fv-header__text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.page-fv-header__sub {
  font-family: var(--font-family-zen-maru);
  font-weight: 500;
  font-size: 14px;
  color: #E72E79;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.page-fv-header__title {
  font-family: var(--font-family-zen-maru);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.04em; /* 4% */
  color: #3F3F3F;
  margin: 0;
}

.page-fv-header__image {
  position: absolute;
  right: 200px;
  bottom: 0;
  width: 130px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -5px;
}

.page-fv-header__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .page-fv-header {
    padding: 28px 20px 0 20px;
  }

  .page-fv-header__sub {
    font-size: 12px;
  }

  .page-fv-header__title {
    font-size: 24px;
    line-height: 32px;
  }

  .page-fv-header__text {
    padding-bottom: 24px;
  }

  .page-fv-header__image {
    right: 16px;
    width: 110px;
    height: 80px;
  }
}


/* ************************************ */

/* page-question99.php */

/* ************************************ */
.page-question .sectionWrap,
.page-faq .sectionWrap {
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.page-question .sectionInner,
.page-faq .sectionInner {
  padding:0 0 10px;
}

.page_header.question {
  height: 300px;
  background: url(../images/question/page-bg.png) no-repeat center bottom;
  background-size: cover;
}

.page_header.question .title-header {
  padding-top: 120px;
}

.page_header.question .section_title {
  color: var(--background);
  font-size: 30px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333;
}

.page__question .question_container,
.page__faq .question_container {
  padding: 0;
  margin: 80px auto;
}
/*  */
/* 目次セクション */
/*  */
.faq-menu {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #FFF8FB;
  box-sizing: border-box;
  padding: 24px;
}

/* グリッドレイアウト: 2列 */
.faq-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  gap: 16px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#que-mokuji .faq-menu__list {
  grid-template-rows: repeat(3, auto);
}

#faq-mokuji .faq-menu__list {
  grid-template-rows: repeat(8, auto);
}

/* 各アイテム */
.faq-menu__item {
  background-color: #fff;
}

/* リンク全体 */
.faq-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.faq-menu__link:hover {
  opacity: 0.7;
}

/* Theme + 番号のブロック */
.faq-menu__theme {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
}

/* 「Theme」テキスト */
.faq-menu__theme-label {
  font-family: var(--font-family-roboto);
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #E72E79;
  white-space: nowrap;
}

/* 「01」番号 */
.faq-menu__theme-number {
  font-family: var(--font-family-roboto);
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #E72E79;
}

/* タイトルテキスト */
.faq-menu__title {
  font-family: var(--font-family-zen-maru);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  flex: 1;
}

/* 下矢印 (CSSボーダーで描画) */
.faq-menu__arrow {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 6px;
  position: relative;
  margin-left: auto;
}

.faq-menu__arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-left: 3px solid #E72E79;
  border-bottom: 3px solid #E72E79;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  box-sizing: border-box;
}

/* ===========================
   レスポンシブ: 768px以下
=========================== */
@media (max-width: 768px) {

  .page-question .sectionInner,
  .page-faq .sectionInner {
    padding: 0;
  }

  .faq-menu {
    padding: 16px;
  }

  /* 1列に変更 question99 */
  #que-mokuji .faq-menu__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 12px;
  }

  /* 1列に変更 faq */
  #faq-mokuji .faq-menu__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(15, auto);
    gap: 12px;
  }
}

/*  */

.question_main_title {
  font-size: 2.4rem;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 0;
  position: relative;
  margin: 0;
}

.question_header {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  line-height: 1.2;
  margin-bottom: 4em;
  padding-bottom: 1.6em;
}

.question_header::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-gradient(linear, left top, right top, from(#E72E79), to(#FFE23C));
  background-image: -webkit-linear-gradient(left, #E72E79 0%, #FFE23C 100%);
  background-image: linear-gradient(to right, #E72E79 0%, #FFE23C 100%);
}

.question_inner {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.faq_item {
  margin-bottom: 32px;
}

.question_ttl {
  font-family: var(--font-family-noto-sans);
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 700;
  margin: 0 0 10px;
  position: relative;
  padding-left: 55px;
}

.question_ttl span {
  position: absolute;
  display: inline-block;
  width: 55px;
  text-align: left;
  top: 0;
  left: 0;
}

.answer_txt {
  margin: 0;
}

.answer p {
  font-size: 1.6rem;
  margin: 0;
}

.page__question .answer {
  padding-left: 55px;
}

.page__faq .answer {
  display: flex;
  align-items: flex-start;
  gap: 3.4em;
  padding-left: 2px;
}

.page__faq .answer span {
  font-size: 2rem;
  line-height: 1.3;
}

.btn_return a {
  text-decoration: underline;
  color: var(--pink);
}

@media screen and (max-width: 768px) {
  .page-question .sectionWrapper {
    padding: 40px 20px 0;
  }

  .question_header {
    align-items: center;
  }

  .question_main_title {
    font-size: 2.1rem;
  }

  .page__question .question_ttl {
    font-size: 1.8rem;
    padding-left: 50px;
  }

  .page__faq .question_ttl {
    font-size: 1.8rem;
    padding-left: 36px;
  }

  .answer {
    gap: 1.6em;
  }

  .page__faq .answer {
    gap: 1.6em;
  }
}


/* ************************************ */
/* recruit.php */
/* ************************************ */
.page_recruit{
  padding: 0 2rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

/* ************************************ */
/* page-recruit-form.php */
/* ************************************ */
.recruit-form  .page_recruit{
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .recruit-form  .page_recruit{
    padding: 0 2rem 4rem;
  }
}

/* ************************************ */
/* page-clinic-tour.php */
/* ************************************ */
.page_tour{
  padding: 0 2rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.page_header.clinic-tour {
  height: 300px;
  background: url(../images/tour/tour-001.jpg) no-repeat center center;
  background-size: cover;
  background-color:rgba(224,224,224,0.6);
  background-blend-mode:lighten;
}

.page_header.clinic-tour .title-header {
  padding-top: 120px;
}

.page_header.clinic-tour .section_title {
  color: var(--background);
  font-size: 30px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333;
}

.page-contact p {
  font-size: 1.6rem;
}

.page-contact .title-header {
  text-align: center;
}

.page-contact .sectionWrapper {
  padding: 20px 20px 40px;
}

.contactPageTitle {
  color: var(--black);
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;  
  letter-spacing: 6px;
  margin: 0 0 3rem;
}

.page-contact .lead p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}

.contactTitle {
  color: var(--black);
  font-family: var(--font-family-zen-maru);
  font-size: 2.4rem;
  font-weight: 700;  
  letter-spacing: 6px;
  margin: 0 0 3rem;
}


/* ===========================
  NEW
=========================== */
.page_tour .btn_area {
  display: flex;
  gap: 4rem;
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.tour-section {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.tour-section__caption {
  margin: 4rem 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #3F3F3F;
}

.tour-section__list {
  list-style: none;
  margin: 3rem auto;
  padding: 0;
  max-width: 480px;
  background-color: #FFF5F9;
  border-radius: 12px;
  border: 1px solid #E72E79;
  overflow: hidden;
  text-align: left;
}

.tour-section__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #3F3F3F;
  position: relative;
}

.tour-section__list-icon {
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E72E79;
  position: relative;
}

.tour-section__list-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  box-sizing: border-box;
}

.tour-section__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 6rem 0;
  padding: 0;
}

.tour-section__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .page_tour .sectionWrapper {
    padding: 60px 0 40px!important;
  }

  .page_tour .btn_area {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .tour-section__caption {
    margin: 2.4rem 0;
    font-size: 1.4rem;
  }

  .tour-section__list {
    max-width: 100%;
    margin: 2rem auto;
  }

  .tour-section__list-item {
    font-size: 1.4rem;
    padding: 12px 16px;
  }

  .tour-section__images {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 3rem 0;
  }
}

.contactSection {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contactFormSection {
  padding: 0 0 10rem;
}

/* ************************************ */
/* コンタクトフォーム */
/* ************************************ */
.contactFormContainer {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contactFormContainer .wpcf7-list-item-label {
  font-size: 1.6rem;
}

.contact-form--inner {
  margin-top: 50px;
}

.contact-checklist--wrapper {
  margin-left: -1em;
}

.contact-form--date {
  border-bottom: solid 0.5px #e1e1e1;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.form-label--wrapper {
  margin-bottom: 10px;
}

.form-label--wrapper p{
  display: flex;
  align-items: center;
}

.contact-form--customer {
  width: 100%;
}

.contact-form--label,
.contact-form--customenr__label {
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-customer--input input {
  width: 100%;
}

.re-required {
  margin-left: 1em;
  border: solid 1px #ff0000;
  border-radius: 2px;
  font-size: 10px;
  padding: 0 6px;
  color: #ff0000;
}

.re-any {
  margin-left: 1em;
  border: solid 1px #1e90ff;
  border-radius: 2px;
  font-size: 10px;
  padding: 0 6px;
  color: #1e90ff;
}

.form-date--wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}

.form-date {
  width: 30%;
}

.form-date input {
  border: solid 1px #e1e1e1;
  outline: 0;
}

.form-date--wrapper .form-date input {
  padding: 10px 5px;
  width: 100%;
}

.form-time select {
  border: solid 1px #e1e1e1;
  outline: 0;
}

.form-date--wrapper .form-time select {
  padding: 9px 5px;
  width: 100%;
}

.contact-form--item,
.contact-form--checkbox,
.contact-form--customer__content {
  border-bottom: solid 0.5px #e1e1e1;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.contact-form--checkbox.border-none {
  border-bottom: 0;
}

.contact-form--item input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.contact-form--item .wpcf7-list-item.first {
  margin-left: 0!important;
}

.contact-form--item .wpcf7-list-item-label {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.refom-form--content .wpcf7-radio .wpcf7-list-item {
  margin: 1em 0 0 1em;
}

.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
  color: #ffffff;
  background: #FDB800;
  border-color: #FDB800;
}

.contact-form--item .wpcf7-form-control-wrap {
  padding: 0 5px;
}

.contact-form--number {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.wpcf7-form-control.wpcf7-number {
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: 0;
  padding: 10px 5px;
}

.contact-details input,
.contact-reason input {
  width: 16px;
  height: 16px;
}

.contact-details .wpcf7-list-item,
.contact-reason .wpcf7-list-item {
  margin: 0 0 1em 2em;
}

.contact-details--wrapper {
  margin-left: -2em;
}

.contact-form-textarea textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: 0;
  padding: 5px;
  width: 100%;
}

.form-text-etc {
  margin-left: 1em;
}

.contact-customer--header {
  background-color: #e1e1e1;
  border-bottom: solid 1.5px #6c272d;
  padding: 10px;
  margin-bottom: 20px;
}

.contact-customer--header h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.contact-customer--input input,
.contact-customer--input select {
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: 0;
  padding: 10px;
}
.contact-checklist--wrapper .wpcf7-not-valid-tip {
  margin-left: 1em;
}
.contact-form--coupon__checkbox .wpcf7-not-valid-tip {
  margin-left: 1em;
}

.contact-form--coupon__text {
  margin-left: 1em;
}

.contact-form--register__wrapper {  
  text-align: center;
  border-bottom: solid 0.5px #e1e1e1;
  padding: 50px 0;
}

.form-register--mail {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.register-mail--checkbox {
  color: #FDB800;
  font-weight: 600;
}

.contact-mailmag input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.contact-mailmag .wpcf7-list-item-label,
.register-mail--checkbox__text p {
  font-weight: 600;
}

.contact-form--policy__wrapper {
  margin: 50px auto 20px;
  text-align: center;
}

.contact-form--policy__wrapper .underline {
  color: #0000ee;
  text-decoration: underline;
}

.contact-form--submit__wrapper {
  text-align: center;
}

.contact-form--submit__wrapper input[type="submit"]:disabled {
  opacity: 0.5;
}

.contact-submit {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  max-width: 300px;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  background-color: var(--main-color);
  border: none;
  color: #fff;
  cursor: pointer;
}

span.wpcf7-spinner {
  display: none;
}

.recruit-select--form {
  text-align: left;
}


@media screen and (max-width: 640px) {
  .contact-form--item .wpcf7-list-item {
    display: block;
    margin: 0 0 1em 0!important;
  }

  .contact-form--item .wpcf7-list-item-label {
    display: block;
  }

  .contact-details--wrapper .wpcf7-list-item {
    display: block;
  }

  .form-register--mail {
    flex-direction: column;
  }

  .contactFormSection {
    padding: 0 0 5rem;
  }
}

.wpcf7-form-control.h-captcha {
  max-width: 600px;
  margin: 0 auto;
} 

/* contact-form-thanks */
.contact-thanks .contact-form--header {
  margin-bottom: 50px;
}

.contact-form--header {
  text-align: center;
  margin: 30px 0;
}

.contact-form--header h2 {
  font-weight: 600;
}



@media screen and (max-width: 768px) {
  .contact-top--button__wrapper {
    max-width: 100%;
  }
}

/* residence-contact */
.residence .section_title {
  margin-bottom: 50px;
}

.residence-subtitle {
  margin-left: 1em;
  font-size: 18px;
}

#extra-field {
  display: none;
}

#resi-extra-field {
  display: none;
}

/* Thanks message */
.wpcf7-response-output{
  display: none;
}


/* ************************************ */
/* コンタクトサンクスページ */
/* ************************************ */
.page-contact-thanks .sectionInner {
  max-width: 600px;
  margin: 0 auto;
  padding: 5rem 0;
}

.page-contact-thanks .pageContactContainer {
  text-align: center;
}

.page-contact-thanks .pageContactContainer p {
  font-size: 1.6rem;
  line-height: 32px;
}

/* ************************************ */
/* レスポンシブデザイン */
/* ************************************ */
@media (max-width: 1250px) {
  /* ***** header ***** */
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-container {
    padding: 0 15px;
  }

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

  main {
    padding: 8rem 0 0;
  }
}

@media (max-width: 768px) {
  p {
    font-size: var(--font-size-sm);
  }
  
  .pc-only {
    display: none;
  }
  
  .sp-only {
    display: block;
  }

  /* ***** footer ***** */
  /* フッターモバイル対応 */
  .footer-container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    padding: 0 15px;
  }

  /* .footer-logo {
    font-size: 3.5rem;
    margin-bottom: 10px;
  } */

  .footer-nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 1rem;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .footer-nav-menu li {
    width: 100%;
  }

  .footer-nav-menu li a {
    display: block;
    padding: 5px 0;
  }

  .footer-copyright {
    margin-top: 20px;
  }

  .sectionWrap {
    padding: 10px 0 0;
  }

  .sectionWrapper {
    padding: 60px 20px;
  }

  .section_title {
    font-size: 3rem;
  }

  /* support */
  .top_support .container {
    padding: 0;
  }

  .support_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }

  /* business */
  .tab-button {
    padding: 12px 6px;
    font-size: 14px;
    font-weight: 700;
  }

  .tab-content {
    padding: 20px 0;
  }

  .tab-panel.active {
    flex-direction: column;
    gap: 20px;
  }

  .tab-image, .tab-text {
    max-width: 100%;
  }

  .tab-text p {
    font-size: var(--font-size-md);
  }

  /* works */
  .col-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }

  #faq_top {
    column-count: 1;
    column-gap: 0;
  }
  
  .faq-menu.sub-wrapper {
    padding: 40px 15px;
  }
  
  .mokuji-title {
    font-size: 2rem;
  }

  /* page-clinic-tour.php */
  .page-contact .lead p {
    text-align: center;
  }
}


/* map */
/* ===========================
   アクセスマップ セクション
   access-map
=========================== */

.access-map__container {
  position: relative;
  width: 100%;
  /* iframeのheight指定に合わせる（height属性と揃える） */
  height: 450px;
  background-color: #FFF5F9;
  border-radius: 8px;
  overflow: hidden;
}

/* iframe本体 */
.access-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* 読み込み完了後にフェードイン */
.access-map__iframe.is-loaded {
  opacity: 1;
}

/* 読み込み前プレースホルダー */
.access-map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF5F9;
  pointer-events: none;
}

.access-map__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #E72E79;
}

.access-map__placeholder-inner p {
  font-size: 1.4rem;
  color: #E72E79;
  margin: 0;
}

/* ===========================
   レスポンシブ: 768px以下
=========================== */
@media (max-width: 768px) {
  .access-map .sectionWrapper {
    padding: 0 20px 80px;
  }
  .access-map__container {
    height: 300px;
  }
}