:root {
  --background: #ffffff;
  --background-light: #EED9D6;
  --background-beige: #fdf2e4;;
  --black: #333333;
  --light-pink: #E69FA3;
  --pink: #FF6DB6;
  --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-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-noto-serif);
}

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

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

/* ************************************ */
/* ヘッダー */
/* ************************************ */
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 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header_logo img {
  width: 70px;
}

.header_recruit {
  margin: 0;
}

.header_recruit .main-title {
  color: var(--pink);
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.header_recruit .sub-title {
  color: var(--light-pink);
  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-serif);
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

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

.header-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-pink);
  transition: width 0.3s ease;
}

.header-nav-menu li a:hover::after {
  width: 100%;
}

/* ハンバーガーメニューボタン */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.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: 280px;
  height: 100vh;
  background: var(--background);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 100px;
}

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

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

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

.mobile-menu ul li a {
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  color: var(--light-pink);
  font-family: var(--font-family-noto-serif);
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--light-pink);
  transition: background-color 0.3s ease;
}

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

/* オーバーレイ */
.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;
}

/* ************************************ */
/* フッター */
/* ************************************ */
.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_recruit {
  margin: 0;
}

.footer_recruit .main-title {
  color: var(--pink);
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.footer_recruit .sub-title {
  color: var(--light-pink);
  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: 1em 2em;
  border: none;
  border-radius: 100vh;
  text-decoration: none;
  color: var(--background);
  font-weight: 600;
  font-size: 1.8rem;
}

.btn_main {
  background: var(--light-pink);
  border: solid 1px var(--light-pink);
}

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

.btn_sub {
  background: var(--light-red);
  border: solid 1px var(--light-red);
}

.btn_sub:hover {
  background: var(--background);
  color: var(--light-red);
  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(--light-pink);
  text-decoration: underline;
}

.breadcrumb-item.current span {
  color: var(--light-pink);
  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: 5rem 0 0;
}

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

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

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

.section_title .ttl_en {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  color: var(--pink);
  letter-spacing: 4px;
  font-weight: 400;
}

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

.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(--light-pink);
  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;
}

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

.message_header {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

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

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

.message_plate {
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  left: 0;
  background: #fff;
  padding: 10px 40px;
}

.message_plate .company_name {
  margin: 0;
  color: var(--warm-pink);
  font-size: 1.6rem;
}

.message_plate .company_name span{
  color: var(--pink);
  display: block;
  font-size: 1.6rem;
}

.message_plate .name {
  margin: 0;
  font-size: 1.8rem;
}

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

.message_title {
  text-align: left;
}

.message_title .catch {
  font-size: 3.6rem;
  color: #e7b09f;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  margin: 0;
}

.message_info {
  margin: 6rem auto 0;
}

.message_info .txt p{
  font-size: 1.6rem;
  line-height: 1.8;
}

.message_tbl {
  margin: 8rem auto;
}

.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: 1px solid var(--white); */
  border: none;
}

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

.message_tbl .table td {
  background: var(--background);
  color: var(--black);
  font-size: 1.6rem;
  padding: 2rem 2rem 2rem 3rem;
  width: 75%;
}

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

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

.interview_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5rem;
}

.interview_item {
  padding: 20px;
  background: var(--background);
  border-radius: 10px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.interview_item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease;
}

.interview_img {
  position: relative;
  margin-bottom: 0;
  min-width: 250px;
}

.interview_img .message_plate {
  background: var(--light-pink);
  opacity: 0.85;
}

.interview_img .job {
  color: #fff;
  margin: 0;
}

.interview_img .job span {
  display: block;
}

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


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

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

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

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

.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: 600;
  padding: 2rem;
  text-align: left;
  width: 35%;
}

.recruit_tbl .table td {
  background: var(--background);
  color: var(--black);
  font-size: 1.6rem;
  padding: 2rem 2rem 2rem 3rem;
  width: 65%;
}

.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%;
}


@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-question99.php */
/* ************************************ */
.page-question .sectionWrap {
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.page-question .sectionWrapper {
  padding: 90px 40px 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 {
  padding: 0;
  margin: 80px auto;
}

/* 目次セクション */
.faq-menu.sub-wrapper {
  border: 2px solid var(--light-pink);
  border-radius: 10px;
  padding: 50px 40px;
  margin: 0 0 40px;
  background: var(--background);
}

.mokuji-title {
  font-family: var(--font-family-noto-serif);
  font-size: 2.4rem;
  color: var(--light-pink);
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: 1px;
}

/* 追従の目次ボタン */
.floating-mokuji-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

.floating-mokuji-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mokuji-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-pink);
  color: var(--background);
  text-decoration: none;
  padding: 25px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 159, 163, 0.3);
  transition: all 0.3s ease;
  position: relative;
  min-width: 60px;
}

.mokuji-btn:hover {
  box-shadow: 0 6px 20px rgba(230, 159, 163, 0.4);
  color: var(--background);
}

.arrow-up {
  position: relative;
  width: 0;
  height: 0;
  margin-bottom: 5px;
}

.arrow-up::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: -4px;
  bottom: 0;
  margin: auto;
}

#faq_top {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 40px;
}

#faq_top li {
  margin-bottom: 15px;
  break-inside: avoid;
}

#faq_top li a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

#faq_top li a::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--light-pink);
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

#faq_top li a:hover {
  color: var(--light-pink);
}

#faq_top li a:hover::before {
  transform: translate(5px, -50%);
}

.question_header {
  font-size: 2.8rem;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 1rem .5rem;
  position: relative;
}

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

.faq_item {
  margin-bottom: 30px;
}

.question_ttl {
  font-family: var(--font-family-noto-sans);
  font-size: 2rem;
  color: var(--light-pink);
  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 {
  padding-left: 55px;
}

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

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

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

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


/* ************************************ */
/* 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_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: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;  
  letter-spacing: 6px;
  margin: 0 0 3rem;
}

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

.contactFormSection {
  padding: 0 0 10rem;
}

.tour_caption {
  margin: 4rem 0;
}

.tour_list {
  padding: 30px 0 30px 30px;
  max-width: 450px;
  margin: 3rem auto;
  background: var(--background-beige);
  text-align: left;
}

.tour_list li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

.tour_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 6rem 0;
}



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

.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-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(--light-pink);
  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;
  }
}

.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 p {
  font-size: 1.6rem;
}

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

  .hamburger {
    display: flex;
  }

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

  main {
    padding: 3rem 0 0;
  }
}

@media (max-width: 768px) {
  p {
    font-size: var(--font-size-sm);
  }
  
  /* ***** 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 80px;
  }

  .section_title {
    font-size: 3.8rem;
  }

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

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

  /* message */
  .message_header {
    grid-template-columns: repeat(1, 1fr);
  }

  .message_img {
    width: 100%;
  }

  /* 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;
  }

  /* ***** message-table ***** */
  .message_tbl .table {
    border: none;
    width: 100%;
    /* border: 1px solid var(--yellow); */
  }

  .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;
    font-size: 1.4rem;
  }

  .message_tbl .table th {
    background-color: var(--background-light);
    color: var(--background);
    text-align: left;
    padding: 8px 10px;
  }

  .message_tbl .table td {
    padding: 12px 10px;
  }

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

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

  /* interview */
  .interview_item {
    padding: 30px 20px 40px;
  }

  .interview_item .card-link {
    flex-direction: column;
  }

  /* recruit */
  .top_recruit .btn_area {
    flex-direction: column;
  }

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

  .page_recruit .btn_area {
    flex-direction: column;
    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: left;
  }
}


