﻿@charset "UTF-8";

/* base */
:root {
  --color-primary: #a8c7bb;
  --color-primary-dark: #0bac44;
  --color-accent: #f3b45b;
  --color-bg: #f8f6f1;
  --color-bg-light: #fbfaf4;
  --color-text: #2f3f3a;
  --color-muted: #66736f;
  --color-border: #dfe9e3;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--color-bg);
  padding-bottom: 120px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 901px) {
  body {
    padding-bottom: 0;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

body.is_opening {
  overflow: hidden;
  height: 100vh;
}

.is_hidden {
  display: none !important;
}

.l_content {
  width: 100%;
  min-width: 0;
  padding: 80px 0;
}

@media screen and (min-width: 901px) {
  .l_content {
    padding: 120px 0;
  }
}

.l_container-sm {
  width: 100%;
  max-width: calc(800px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.l_container-md {
  width: 100%;
  max-width: calc(940px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.l_container {
  width: 100%;
  max-width: calc(1080px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.l_container-lg {
  width: 100%;
  max-width: calc(1200px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.l_container-xl {
  width: 100%;
  max-width: calc(1920px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.l_round_section {
  border-radius: 50px;
}

@media screen and (min-width: 768px) {
  .l_round_section {
    border-radius: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .l_round_section {
    border-radius: 200px;
  }
}

/* component */
.m_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 343px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  margin: 0 auto;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.m_button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media screen and (min-width: 768px) {
  .m_button {
    max-width: none;
  }
}

.m_button_primary {
  color: var(--color-white);
  background: var(--color-primary);
}

.m_button_outline {
  color: var(--color-primary-dark);
  background: var(--color-white);
  border-color: var(--color-primary);
}

.m_button_white {
  color: var(--color-primary-dark);
  background: var(--color-white);
}

.m_button_dark {
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.m_text_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.m_text_link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.m_page_top {
  display: none;
}

@media screen and (min-width: 901px) {
  .m_page_top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 0;
    color: #333333;
    background: #fff4cf;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .m_page_top.is_visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .m_page_top_icon {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
}

/* ========================================
  lower common
======================================== */
.m_lower_fv {
  position: relative;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  background: #e7ebe2;
}

.m_lower_fv_media,
.m_lower_fv_img {
  width: 100%;
  height: 220px;
}

.m_lower_fv_img {
  object-fit: cover;
}

.m_lower_fv_body {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-50%);
}

.m_lower_fv_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .m_lower_fv {
    min-height: 360px;
  }

  .m_lower_fv_media,
  .m_lower_fv_img {
    height: 360px;
  }

  .m_lower_fv_body {
    padding: 28px 40px;
  }

  .m_lower_fv_title {
    font-size: 28px;
  }
}

.m_lower_anchor {
  background: var(--color-bg);
}

.m_lower_anchor_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 24px 0 0;
}

.m_lower_anchor_list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 40px 10px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.5);
}

.m_lower_anchor_list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary-dark);
  transform: translateY(-65%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .m_lower_anchor_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 40px;
  }
}

.m_lower_heading {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.m_lower_heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px);
  background-size: 8px 3px;
}

@media screen and (min-width: 768px) {
  .m_lower_heading {
    margin-bottom: 36px;
    font-size: 26px;
  }
}

.m_lower_lead,
.m_lower_text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.m_lower_text p + p {
  margin-top: 18px;
}

.m_lower_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  background: var(--color-primary);
}

[data-missing-image] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 16px;
  border: 1px dashed var(--color-primary);
  border-radius: 4px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
}

.m_lower_fv_img[data-missing-image] {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.m_medical_flow_icon[data-missing-image] {
  min-height: 100%;
  border-radius: 50%;
}

/* ========================================
  page medical
======================================== */
.m_medical_section {
  scroll-margin-top: calc(var(--header-height, 0px) + 24px);
}

.m_medical_section + .m_medical_section {
  margin-top: 80px;
}

.m_medical_flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 36px 0;
}

.m_medical_flow_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.m_medical_flow_img {
  width: 150px;
  height: 150px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff4cf;
}

.m_medical_flow_icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m_medical_flow_num {
  color: var(--color-accent);
  font-family: var(--font-secondary);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.m_medical_flow_title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .m_medical_section + .m_medical_section {
    margin-top: 120px;
  }

  .m_medical_flow {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
  }
}

.m_related_links {
  margin-top: 24px;
}

.m_related_links_title {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  background: var(--color-primary);
}

.m_related_links_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.m_related_links_list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.m_related_links_list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

/* ========================================
  page inspection
======================================== */
.m_inspection_section {
  scroll-margin-top: calc(var(--header-height, 0px) + 24px);
}

.m_inspection_section + .m_inspection_section {
  margin-top: 80px;
}

.m_inspection_content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.m_inspection_detail {
  margin-top: 28px;
  font-size: 14px;
  line-height: 2;
}

.m_inspection_media {
  width: 100%;
}

.m_inspection_img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.m_inspection_gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.m_inspection_gallery_img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .m_inspection_section + .m_inspection_section {
    margin-top: 120px;
  }

  .m_inspection_content {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    gap: 48px;
  }

  .m_inspection_gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========================================
  page clinic
======================================== */
.m_clinic_section {
  scroll-margin-top: calc(var(--header-height, 0px) + 24px);
}

.m_clinic_section + .m_clinic_section {
  margin-top: 80px;
}

.m_clinic_image {
  margin-bottom: 28px;
}

.m_clinic_img {
  width: 100%;
  object-fit: cover;
}

.m_clinic_signature {
  margin-top: 24px;
  text-align: right;
}

.m_clinic_checklist {
  margin-top: 28px;
}

.m_clinic_check_group + .m_clinic_check_group {
  margin-top: 24px;
}

.m_clinic_check_title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.m_clinic_check_items {
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.8;
}

.m_clinic_check_items li {
  position: relative;
  padding-left: 24px;
}

.m_clinic_check_items li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-primary);
  border-radius: 2px;
  background: var(--color-white);
}

@media screen and (min-width: 768px) {
  .m_clinic_section + .m_clinic_section {
    margin-top: 120px;
  }
}

/* ========================================
  page access
======================================== */
.m_access_lower_section {
  scroll-margin-top: calc(var(--header-height, 0px) + 24px);
}

.m_access_lower_section + .m_access_lower_section {
  margin-top: 80px;
}

.m_access_lower_schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.m_access_table_card {
  overflow-x: auto;
  padding: 20px;
  border-radius: 24px;
  background: var(--color-white);
}

.m_access_table_card_wide {
  margin-top: 28px;
}

.m_access_table_title {
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: var(--color-primary);
}

.m_access_schedule_table,
.m_access_doctor_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.m_access_schedule_table th,
.m_access_schedule_table td,
.m_access_doctor_table th,
.m_access_doctor_table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--color-border);
}

.m_access_schedule_table th:first-child,
.m_access_doctor_table th {
  text-align: left;
  white-space: nowrap;
}

.m_access_note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.8;
}

.m_access_doctor_illust {
  max-width: 180px;
  margin: 0 auto;
}

.m_access_doctor_img {
  width: 100%;
}

.m_access_map_stack {
  display: grid;
  gap: 20px;
}

.m_access_map_img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.m_access_detail_list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.8;
}

.m_access_detail_list > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
}

.m_access_detail_list dt {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .m_access_lower_section + .m_access_lower_section {
    margin-top: 120px;
  }

  .m_access_lower_schedule {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 56px;
  }

  .m_access_table_card {
    padding: 28px;
  }
}

.section_head {
  margin-bottom: 28px;
}

.section_en {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0em;
}

.m_section_title {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px;
  color: #333333;
  font-size: 32px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: 0.03em;
  border-bottom: 6px dashed #a8c7bb;
}

@media screen and (min-width: 768px) {
  .m_section_title {
    font-size: 40px;
    line-height: 80px;
    letter-spacing: 0.03em;
  }
}

.js_fade {
  opacity: 0;
  transform: translateY(24px);
}

/* ========================================
  opening
======================================== */
.opening {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  overflow: hidden;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.opening::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/opening_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.06);
  transition: opacity 4.8s ease, filter 4.8s ease, transform 4.8s ease;
}

.opening.is_bg_visible::before {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.opening.is_done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening_inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100% - 32px, 455px);
  min-height: 250px;
}

@media screen and (min-width: 768px) {
  .opening_inner {
    min-height: 303px;
  }
}

.opening_text {
  margin-right: -34px;
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .opening_text {
    margin-right: -72px;
    font-size: 44px;
    line-height: 88px;
    letter-spacing: 0.08em;
  }
}

.opening_text_line {
  display: block;
  min-height: 1.9em;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 2.5s ease, transform 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (min-width: 768px) {
  .opening_text_line {
    min-height: 88px;
  }
}

.opening_text_line.is_visible {
  opacity: 1;
  transform: translateY(0);
}

.opening_icon {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 2.4s ease, transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (min-width: 768px) {
  .opening_icon {
    width: 150px;
    height: 150px;
    margin-bottom: 0;
  }
}

.opening_icon.is_visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* header */
.l_header {
  position: relative;
  z-index: 30;
  width: 100%;
  color: #333333;
  background: #f8f6f1;
}

.l_header_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 16px;
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .l_header_inner {
    padding: 16px;
  }
}

@media screen and (min-width: 901px) {
  .l_header_inner {
    gap: 20px;
    padding: 32px clamp(20px, 3vw, 56px);
  }
}

@media screen and (min-width: 1200px) {
  .l_header_inner {
    padding: 40px clamp(40px, 5.6vw, 80px);
  }
}

.l_header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .l_header_top {
    gap: 0;
  }
}

@media screen and (min-width: 901px) {
  .l_header_top {
    align-items: flex-end;
    gap: clamp(12px, 1.6vw, 24px);
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_top {
    gap: 32px;
    justify-content: space-between;
  }
}

.l_header_logo {
  position: relative;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

@media screen and (max-width: 900px) {
  body.no-scroll .l_header_logo {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 60;
  }

  body.no-scroll .l_header_logo::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 120px;
    background: #f8f6f1;
  }
}

.l_header_logo_sub {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
  color: #0bac44;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(60, 50, 40, 0.12);
  white-space: nowrap;
}

@media screen and (min-width: 901px) {
  .l_header_logo_sub {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.03em;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_logo_sub {
    font-size: 22px;
    line-height: 42px;
  }
}

.l_header_logo_img {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 245px;
  height: 48px;
  overflow: hidden;
  filter: drop-shadow(0 1px 3px rgba(60, 50, 40, 0.12));
}

@media screen and (min-width: 901px) {
  .l_header_logo_img {
    width: 260px;
    height: 51px;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_logo_img {
    width: 319px;
    height: 62px;
  }
}

.l_header_logo_img img {
  position: absolute;
  top: -90%;
  left: -3.89%;
  width: 272.37%;
  max-width: none;
  height: 190%;
}

.l_header_tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.l_header_tel_pc {
  display: none;
}

.l_header_tel_sp {
  display: flex;
  align-self: stretch;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 16px max(8px, env(safe-area-inset-bottom));
  background: #f8f6f1;
  border-radius: 0;
}


@media screen and (min-width: 600px) and (max-width: 900px) {
  .l_header_tel_pc {
    display: none;
  }

  .l_header_tel_sp {
    display: flex;
  }
}

@media screen and (min-width: 901px) {
  .l_header_tel_pc {
    display: flex;
    flex-shrink: 0;
    width: auto;
  }

  .l_header_tel_sp {
    display: none;
  }
}

.l_header_tel_text {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .l_header_tel_text {
    width: 260px;
    font-size: 12px;
    line-height: 24px;
  }
}

@media screen and (min-width: 600px) and (max-width: 700px) {
  .l_header_logo_sub {
    font-size: 14px;
    line-height: 24px;
  }

  .l_header_logo_img {
    width: 220px;
    height: 43px;
  }
}

@media screen and (min-width: 901px) {
  .l_header_tel_text {
    width: 270px;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_tel_text {
    width: 365px;
    font-size: 16px;
  }
}

.l_header_tel_button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 279px;
  padding: 4px 40px;
  background: #f2c94c;
  border-radius: 50px;
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .l_header_tel_button {
    min-width: 240px;
    padding: 4px 24px;
  }
}

@media screen and (min-width: 600px) and (max-width: 700px) {
  .l_header_tel_text {
    width: 260px;
    font-size: 10px;
    line-height: 20px;
  }

  .l_header_tel_button {
    min-width: 220px;
    padding: 4px 20px;
  }
}

@media screen and (min-width: 901px) {
  .l_header_tel_button {
    gap: 8px;
    min-width: 252px;
    padding: 4px 20px;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_tel_button {
    min-width: 279px;
    padding: 4px 40px;
  }
}

.l_header_tel_icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.l_header_tel_number {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media screen and (min-width: 600px) and (max-width: 900px) {
  .l_header_tel_number {
    font-size: 22px;
    line-height: 44px;
  }
}

@media screen and (min-width: 600px) and (max-width: 700px) {
  .l_header_tel_number {
    font-size: 20px;
    line-height: 40px;
  }
}

@media screen and (min-width: 901px) {
  .l_header_tel_number {
    font-size: 22px;
    line-height: 44px;
    letter-spacing: 0.03em;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_tel_number {
    font-size: 28px;
    line-height: 56px;
  }
}

.l_header_access,
.l_header_nav {
  display: none;
}

@media screen and (min-width: 901px) {
  .l_header_access {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    min-height: 76px;
    font-style: normal;
  }

  .l_header_access_address,
  .l_header_access_text {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .l_header_nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .l_header_nav_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .l_header_nav_link {
    display: block;
    color: #333333;
    font-size: 17px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .l_header_nav_item {
    position: relative;
  }

  .l_header_nav_item + .l_header_nav_item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    width: 3px;
    height: 20px;
    background: #a8c7bb;
    transform: translateY(-50%);
  }

  .l_header_child_list {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 274px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #a8c7bb;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .l_header_nav_item:hover .l_header_child_list,
  .l_header_nav_item:focus-within .l_header_child_list {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .l_header_child_link {
    display: block;
    width: 100%;
    min-height: 76px;
    padding: 22px 20px;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    border-bottom: 1px solid #a8c7bb;
    transition: background-color 0.3s ease, opacity 0.3s ease;
  }

  .l_header_child_list li:last-child .l_header_child_link {
    border-bottom: 0;
  }

  .l_header_child_link:hover,
  .l_header_child_link:focus-visible {
    opacity: 0.8;
    background: #a8c7bb;
  }
}

@media screen and (min-width: 1200px) {
  .l_header_access {
    min-height: 94px;
  }

  .l_header_access_address,
  .l_header_access_text {
    font-size: 16px;
    line-height: 32px;
  }

  .l_header_nav_list {
    gap: 32px;
  }

  .l_header_nav_link {
    font-size: 20px;
    line-height: 40px;
  }

  .l_header_nav_item + .l_header_nav_item::before {
    left: -18px;
  }
}

.l_header_line {
  display: none;
  width: 100%;
  height: 0;
  border-top: 3px solid #a8c7bb;
}

@media screen and (min-width: 901px) {
  .l_header_line {
    display: block;
  }
}

.m_hamburger_menu {
  position: relative;
  z-index: 60;
  flex-shrink: 0;
  width: 40px;
  height: 32px;
  padding: 0;
  background: #f8f6f1;
  border: 0;
}

@media screen and (max-width: 900px) {
  .m_hamburger_menu {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 72px;
    height: 64px;
    border-radius: 8px;
  }
}

.m_hamburger_menu_line {
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #333333;
  transition: top 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.m_hamburger_menu_line:nth-child(1) {
  top: 0;
}

.m_hamburger_menu_line:nth-child(2) {
  top: 16px;
}

.m_hamburger_menu_line:nth-child(3) {
  top: 32px;
}

.m_hamburger_menu.active .m_hamburger_menu_line:nth-child(1) {
  top: 16px;
  left: 6px;
  transform: rotate(45deg);
}

.m_hamburger_menu.active .m_hamburger_menu_line:nth-child(2) {
  opacity: 0;
}

.m_hamburger_menu.active .m_hamburger_menu_line:nth-child(3) {
  top: 16px;
  left: 6px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 900px) {
  .m_hamburger_menu_line {
    left: 16px;
  }

  .m_hamburger_menu_line:nth-child(1) {
    top: 16px;
  }

  .m_hamburger_menu_line:nth-child(2) {
    top: 32px;
  }

  .m_hamburger_menu_line:nth-child(3) {
    top: 48px;
  }

  .m_hamburger_menu.active .m_hamburger_menu_line:nth-child(1),
  .m_hamburger_menu.active .m_hamburger_menu_line:nth-child(3) {
    top: 32px;
    left: 22px;
  }
}

@media screen and (min-width: 901px) {
  .m_hamburger_menu,
  .l_sp_nav {
    display: none;
  }
}

.l_sp_nav {
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100vw;
  padding: 128px 24px 32px;
  background: #f8f6f1;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}

.l_sp_nav.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.l_sp_nav_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px 0 140px;
}

.l_sp_nav_link {
  display: block;
  width: 100%;
  padding: 0 0 8px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--color-primary);
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.l_sp_nav_link:hover,
.l_sp_nav_link:focus-visible,
.l_sp_nav_child_link:hover,
.l_sp_nav_child_link:focus-visible {
  opacity: 0.8;
  background: #a8c7bb;
}

.l_sp_nav_item_has_child {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
  min-height: 0;
  padding-left: 0;
  border-bottom: 0;
}

.l_sp_nav_item_has_child .l_sp_nav_link {
  white-space: nowrap;
}

.l_sp_nav_item_single {
  position: relative;
  display: block;
  min-height: 0;
  padding-left: 0;
  border-bottom: 0;
}

.l_sp_nav_item_single::before,
.l_sp_nav_item_has_child::before {
  content: none;
}

.l_sp_nav_child_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
  width: 100%;
}

.l_sp_nav_child_link {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 28px 13px 4px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--color-primary);
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.l_sp_nav_child_link::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--color-primary-dark);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

/* first view */
.l_main {
  overflow: hidden;
}

.fv_section {
  background: #f8f6f1;
}

.fv_content {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 800px;
  padding: 80px 16px 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  background-image: url("../img/top/fv_sp.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

@media screen and (min-width: 768px) {
  .fv_content {
    padding: 120px 0 0 120px;
    align-items: flex-end;
    justify-content: space-between;
    background-image: url("../img/top/fv_pc.webp");
    background-position: center top;
    background-size: cover;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv_content {
    height: auto;
    min-height: 640px;
    padding: 80px 0 0;
    align-items: stretch;
    justify-content: flex-start;
    background-position: center top;
    background-size: cover;
  }
}

.fv_overlay {
  position: absolute;
  inset: 0;
}

.fv_overlay {
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .fv_overlay {
    background: rgba(255, 255, 255, 0.15);
  }
}

.fv_title {
  position: absolute;
  top: 478px;
  left: 15px;
  z-index: 3;
  width: 100%;
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0.08em;
}

.fv_title span {
  background: linear-gradient(transparent 10%, rgba(255, 244, 207, 0.8) 10%);
}

@media screen and (min-width: 768px) {
  .fv_title {
    top: 120px;
    left: 120px;
    width: auto;
    min-width: 100%;
    font-size: 44px;
    line-height: 88px;
    letter-spacing: 0.08em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv_title {
    top: 80px;
    left: 40px;
    min-width: 0;
    font-size: 36px;
    line-height: 72px;
    letter-spacing: 0.08em;
  }
}

.m_hours_panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 16px;
  background: #f8f6f1;
  border-radius: 20px;
  box-shadow: 0 8px 12px rgba(60, 50, 40, 0.1);
}

@media screen and (min-width: 768px) {
  .m_hours_panel {
    padding: 40px;
    border-radius: 50px;
  }
}



.m_hours_title {
  width: 100%;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.03em;
  text-align: center;
  background: #a8c7bb;
  border-radius: 50px;
}

@media screen and (min-width: 768px) {
  .m_hours_title {
    font-size: 27px;
    line-height: 54px;
    letter-spacing: 0.03em;
  }
}

.m_hours_table_wrap {
  width: 100%;
}

.m_hours_table {
  display: block;
  width: 100%;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  border-collapse: collapse;
}

@media screen and (min-width: 768px) {
  .m_hours_table {
    font-size: 24px;
    line-height: 48px;
  }
}

.m_hours_table th,
.m_hours_table td {
  padding: 0;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .m_hours_table th,
  .m_hours_table td {
    line-height: 48px;
  }
}

.m_hours_table thead,
.m_hours_table tbody,
.m_hours_table tr {
  display: block;
  width: 100%;
}

.m_hours_table tr {
  display: grid;
  grid-template-columns: 88px repeat(8, minmax(0, calc((100% - 88px - 64px) / 8)));
  column-gap: 8px;
  align-items: center;
  border-bottom: 1px solid #333333;
}

@media screen and (min-width: 768px) {
  .m_hours_table tr {
    grid-template-columns: 150px repeat(8, minmax(0, calc((100% - 150px - 160px) / 8)));
    column-gap: 20px;
    padding: 4px 16px;
  }
}

.m_hours_table thead th {
  font-weight: 400;
}

.m_hours_table thead th:first-child {
  width: 88px;
  min-width: 88px;
}

.m_hours_table tbody th {
  width: 88px;
  min-width: 88px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.03em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .m_hours_table thead th:first-child {
    width: 150px;
    min-width: 150px;
  }

  .m_hours_table tbody th {
    width: 150px;
    min-width: 150px;
    line-height: 48px;
    letter-spacing: 0.03em;
    text-align: left;
  }
}

.m_hours_table .is_caution {
  color: #8c3a3a;
}

.m_hours_notes,
.m_hours_note {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.03em;
}

.m_hours_note span {
  color: #8c3a3a;
}

@media screen and (min-width: 768px) {
  .m_hours_notes,
  .m_hours_note {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.03em;
  }

  .m_hours_notes p,
  .m_hours_note {
    white-space: nowrap;
  }
}

.m_hours_notes a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.u_sp_break {
  display: block;
}

@media screen and (min-width: 768px) {
  .u_sp_break {
    display: none;
  }
}

.u_pc_break {
  display: none;
}

@media screen and (min-width: 768px) {
  .u_pc_break {
    display: block;
  }
}

/* fever guide */
.fever_section {
  background: #f8f6f1;
}

.fever_section > .l_content {
  padding: 280px 0 120px;
}

@media screen and (min-width: 768px) {
  .fever_section > .l_content {
    padding: 160px 0 120px;
  }
}

@media screen and (min-width: 900px) {
  .fever_section > .l_content {
    padding: 120px 0;
  }
}

.fever_content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 74px;
}

@media screen and (min-width: 768px) {
  .fever_content {
    gap: 74px;
  }
}

.fever_head {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 8px 0;
  border-bottom: 6px dashed #8c3a3a;
}

@media screen and (min-width: 768px) {
  .fever_head {
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
  }
}

.fever_title_icon {
  display: none;
}

@media screen and (min-width: 768px) {
  .fever_title_icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    transform: rotate(-90deg);
  }
}

.fever_title {
  color: #333333;
  font-size: 28px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .fever_title {
    font-size: 40px;
    line-height: 80px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}

.fever_title span {
  color: #8c3a3a;
}

.fever_body {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.fever_text_wrap {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
  color: #333333;
}

@media screen and (min-width: 768px) {
  .fever_text_wrap {
    max-width: 705px;
  }
}

.fever_lead {
  position: relative;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .fever_lead {
    font-size: 24px;
    line-height: 48px;
  }
}

@media screen and (min-width: 900px) {
  .fever_lead {
    white-space: nowrap;
  }
}

.fever_lead_strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
}

@media screen and (min-width: 768px) {
  .fever_lead_strong {
    font-size: 28px;
    letter-spacing: 0.03em;
  }
}

.fever_lead_caution {
  position: relative;
  display: inline-block;
  color: #8c3a3a;
}
.fv_hours {
  position: absolute;
  z-index: 4;
  bottom: -221px;
  left: 50%;
  width: min(344px, calc(100% - 32px));
  min-height: 339px;
  transform: translateX(-50%);
}

@media screen and (min-width: 600px) {
  .fv_hours {
    right: 16px;
    left: auto;
    transform: none;
  }
}

@media screen and (min-width: 768px) {
  .fv_hours {
    right: 0;
    left: auto;
    bottom: -120px;
    width: 622px;
    min-height: 0;
    margin: 420px 0 0 auto;
    padding: 40px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 8px 12px rgba(60, 50, 40, 0.1);
    transform: none;
  }
}

@media screen and (min-width: 900px) {
  .fv_hours {
    bottom: -1px;
    border-radius: 50px 0 0 0;
    box-shadow: none;
  }
}

@media screen and (min-width: 1200px) {
  .fv_hours {
    padding: 40px 80px 40px 40px;
  }
}

.fever_lead_caution::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #8c3a3a;
  border-radius: 50%;
  box-shadow: -24px 0 0 #8c3a3a, -48px 0 0 #8c3a3a, 24px 0 0 #8c3a3a, 48px 0 0 #8c3a3a;
  transform: translateX(-50%);
}

.fever_lead_tel {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .fever_lead_tel {
    font-size: 24px;
    line-height: 48px;
  }
}

.fever_lead_tel a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.fever_note {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .fever_note {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.03em;
  }
}

.fever_symptoms {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
  padding: 24px 16px;
  background: #ffffff;
  border: 3px solid #a8c7bb;
  border-radius: 20px;
}

@media screen and (max-width: 360px) {
  .fever_symptoms {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media screen and (min-width: 768px) {
  .fever_symptoms {
    position: static;
    width: 705px;
    max-width: none;
    margin: 0;
    min-height: 0;
    padding: 32px;
  }
}

.fever_symptoms_title,
.fever_symptoms_text {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 360px) {
  .fever_symptoms_title,
  .fever_symptoms_text {
    font-size: 15px;
    line-height: 30px;
  }
}

.fever_symptoms_title {
  white-space: nowrap;
}

@media screen and (max-width: 360px) {
  .fever_symptoms_title {
    white-space: normal;
  }
}

@media screen and (min-width: 768px) {
  .fever_symptoms_title,
  .fever_symptoms_text {
    font-size: 20px;
    line-height: 40px;
  }
}

.fever_symptoms_text_pc {
  display: none;
}

.fever_symptoms_text_sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .fever_symptoms_text_pc {
    display: block;
  }

  .fever_symptoms_text_sp {
    display: none;
  }
}

.fever_illust {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 192px;
  pointer-events: none;
}

@media screen and (max-width: 360px) {
  .fever_illust {
    right: 0;
    width: 145px;
  }
}

@media screen and (min-width: 768px) {
  .fever_illust {
    right: 0;
    bottom: 0;
    width: 200px;
  }
}

@media screen and (min-width: 900px) {
  .fever_illust {
    right: 0;
    bottom: 0;
    width: 337px;
  }
}

.fever_illust img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* news */
.l_news_section {
  background: rgba(217, 214, 206, 0.5);
}

.m_news {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.m_news_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.m_news_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .m_news_list {
    align-items: flex-start;
  }
}

.m_news_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 40px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 12px rgba(60, 50, 40, 0.1);
}

.m_news_meta {
  display: flex;
  gap: 24px;
  align-items: center;
}

.m_news_date {
  color: #4b4b4b;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.m_news_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 48px;
  padding: 4px 12px;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border: 4px solid #a8c7bb;
  border-radius: 10px;
}

.m_news_card_title {
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .m_news_card_title {
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}

.m_news_text {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
}

.m_news_text a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.m_news_empty,
.m_single_post_content {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.m_single_post_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.m_btn_more_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .m_btn_more_wrap {
    display: flex;
    justify-content: flex-end;
  }
}

.m_btn_more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 343px;
  height: 72px;
  margin: 0 auto;
  padding: 16px 56px;
  color: #333333;
  background: #fff4cf;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(60, 50, 40, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.m_btn_more:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(60, 50, 40, 0.14);
}

@media screen and (min-width: 768px) {
  .m_btn_more {
    width: 366px;
    max-width: none;
    height: 96px;
    margin: 0;
    padding: 24px 64px;
  }
}

.m_btn_more_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .m_btn_more_text {
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0.03em;
  }
}

.m_btn_more_icon {
  position: absolute;
  right: 16px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .m_btn_more_icon {
    right: 24px;
  }
}

/* medical guide */
.l_medical_guide_section {
  background: #f8f6f1;
}

.m_medical_guide {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.m_medical_guide_head {
  display: flex;
  align-items: flex-start;
}

.m_medical_guide_lead {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .m_medical_guide_lead {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.03em;
  }
}

.m_medical_guide_list {
  display: grid;
  grid-template-columns: minmax(0, 343px);
  gap: 80px;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 760px) {
  .m_medical_guide_list {
    grid-template-columns: repeat(2, minmax(0, 343px));
    gap: 48px 32px;
  }
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .m_medical_guide_list {
    grid-template-columns: minmax(0, 100%);
    gap: 48px;
    justify-content: stretch;
  }
}

@media screen and (min-width: 900px) {
  .m_medical_guide_list {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
}

.m_medical_guide_card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 343px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border-top: 10px solid #a8c7bb;
  border-radius: 20px;
  box-shadow: 0 8px 12px rgba(60, 50, 40, 0.1);
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .m_medical_guide_card {
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
    max-width: none;
    margin: 0;
    padding: 24px;
    border-top: 0;
    border-left: 10px solid #a8c7bb;
  }
}

@media screen and (min-width: 900px) {
  .m_medical_guide_card {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 32px;
    border-top: 0;
    border-left: 10px solid #a8c7bb;
  }
}

@media screen and (min-width: 1200px) {
  .m_medical_guide_card {
    gap: 40px;
    padding: 40px 64px;
  }
}

.m_medical_guide_img_wrap {
  order: 2;
  width: 100%;
  height: 256px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .m_medical_guide_img_wrap {
    order: 1;
    flex-shrink: 0;
    width: 36%;
    max-width: 240px;
    height: auto;
    min-height: 220px;
    border-radius: 0 0 0 20px;
  }
}

@media screen and (min-width: 900px) {
  .m_medical_guide_img_wrap {
    order: 1;
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 0;
  }
}

@media screen and (min-width: 1200px) {
  .m_medical_guide_img_wrap {
    width: 240px;
    height: 240px;
  }
}

.m_medical_guide_img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.m_medical_guide_img_wrap_fever .m_medical_guide_img {
  object-position: 40% 50%;
}

.m_medical_guide_img_wrap_internal .m_medical_guide_img {
  object-position: 48% 50%;
}

.m_medical_guide_img_wrap_breast .m_medical_guide_img,
.m_medical_guide_img_wrap_vaccine .m_medical_guide_img {
  object-position: 52% 50%;
}

.m_medical_guide_img_wrap_checkup .m_medical_guide_img {
  object-position: 35% 50%;
}

.m_medical_guide_body {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .m_medical_guide_body {
    order: 2;
    flex: 1 1 auto;
    gap: 16px;
    min-width: 0;
  }
}

@media screen and (min-width: 900px) {
  .m_medical_guide_body {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
  }
}

.m_medical_guide_card_title {
  width: fit-content;
  padding: 8px 16px;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0.03em;
  border-bottom: 3px dashed #a8c7bb;
}

@media screen and (min-width: 900px) {
  .m_medical_guide_card_title {
    font-size: 32px;
    line-height: 64px;
    letter-spacing: 0.03em;
  }
}

.m_medical_guide_text {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 900px) {
  .m_medical_guide_text {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.03em;
  }
}

.m_medical_guide_note {
  font-size: 15px;
  line-height: 30px;
}

@media screen and (min-width: 900px) {
  .m_medical_guide_note {
    font-size: 16px;
    line-height: 32px;
  }
}

.m_medical_guide_actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .m_medical_guide_actions {
    margin-top: auto;
  }
}

@media screen and (min-width: 900px) {
  .m_medical_guide_actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1200px) {
  .m_medical_guide_actions {
    flex-wrap: nowrap;
    gap: 24px;
  }
}

.m_medical_guide_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 343px;
  height: 72px;
  margin: 0 auto;
  padding: 13px 52px 13px 32px;
  color: #333333;
  background: #f8f6f1;
  border: 3px solid #a8c7bb;
  border-radius: 50px;
  box-shadow: 0 8px 12px rgba(60, 50, 40, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .m_medical_guide_btn {
    max-width: 280px;
    height: 64px;
    margin: 0;
    padding: 10px 48px 10px 28px;
  }
}

@media screen and (min-width: 900px) {
  .m_medical_guide_btn {
    width: 220px;
    max-width: none;
    height: 64px;
    margin: 0;
    padding: 10px 48px 10px 28px;
    gap: 8px;
  }
}

@media screen and (min-width: 1200px) {
  .m_medical_guide_btn {
    width: 280px;
    height: 86px;
    padding: 13px 60px 13px 36px;
  }
}

.m_medical_guide_btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(60, 50, 40, 0.14);
}

.m_medical_guide_btn_tel {
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  background: #fff4cf;
  border-color: #f2c94c;
}

@media screen and (min-width: 900px) {
  .m_medical_guide_btn_tel {
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1200px) {
  .m_medical_guide_btn_tel {
    padding: 13px 37px;
  }
}

.m_medical_guide_btn_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media screen and (min-width: 900px) {
  .m_medical_guide_btn_text {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.03em;
  }
}

@media screen and (min-width: 1200px) {
  .m_medical_guide_btn_text {
    font-size: 24px;
    line-height: 48px;
  }
}

.m_medical_guide_btn_icon {
  position: absolute;
  right: 13px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.m_medical_guide_btn_tel .m_medical_guide_btn_icon,
.m_medical_guide_btn_tel .m_medical_guide_btn_call {
  position: static;
}

.m_medical_guide_btn_call {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ========================================
  director message
======================================== */
.l_director_section {
  position: relative;
  overflow: hidden;
  background-color: #f8f6f1;
  background-image: none;
}

.l_director_section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 150px;
  left: 50%;
  width: min(100%, 393px);
  aspect-ratio: 393 / 520;
  background-image: url("../img/top/top_clinic-bg_sp.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transform: translateX(-50%);
}

@media screen and (min-width: 600px) {
  .l_director_section::before {
    top: 120px;
    width: min(100%, 560px);
  }
}

@media screen and (min-width: 768px) {
  .l_director_section::before {
    top: 240px;
    width: min(120vw, 1564px);
    aspect-ratio: 1564 / 640;
    background-image: url("../img/top/top_clinic-bg_pc.webp");
  }
}

.m_director {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.m_director_head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

.m_director_body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

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

.m_director_copy {
  position: relative;
  width: fit-content;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.03em;
}

.m_director_copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 9px;
  width: 166px;
  height: 16px;
  background: rgba(168, 199, 187, 0.5);
}

@media screen and (min-width: 768px) {
  .m_director_copy {
    font-size: 30px;
    line-height: 60px;
    letter-spacing: 0.03em;
  }

  .m_director_copy::before {
    bottom: 13px;
    left: -13px;
    width: 215px;
    height: 24px;
  }
}

.m_director_text {
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .m_director_text {
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0.03em;
  }
}

.m_director_img_wrap {
  width: 100%;
  height: 192px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(60, 50, 40, 0.1);
}

@media screen and (min-width: 768px) {
  .m_director_img_wrap {
    height: 400px;
  }
}

.m_director_img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* ========================================
  schedule
======================================== */
.l_schedule_section {
  background: rgba(217, 214, 206, 0.5);
}

.m_schedule {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.m_schedule_head {
  display: flex;
  align-items: flex-start;
}

.m_schedule_hours_area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.m_schedule_hours {
  max-width: 343px;
}

@media screen and (min-width: 768px) {
  .m_schedule_hours {
    max-width: 548px;
  }
}

.m_schedule_panel_doctor {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 24px 16px;
  background: #f8f6f1;
  border-radius: 20px;
  box-shadow: 0 8px 12px rgba(60, 50, 40, 0.1);
  overflow: hidden;
}

@media screen and (max-width: 360px) {
  .m_schedule_panel_doctor {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 600px) {
  .m_schedule_panel_doctor {
    padding: 32px 60px;
  }
}

@media screen and (min-width: 768px) {
  .m_schedule_panel_doctor {
    gap: 16px;
    min-height: 358px;
    padding: 24px 24px;
    border-radius: 50px;
  }
}

@media screen and (min-width: 900px) {
  .m_schedule_panel_doctor {
    gap: 16px;
    min-height: 358px;
    padding: 24px 40px;
    border-radius: 50px;
  }
}

.m_schedule_panel_title {
  width: 100%;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.03em;
  text-align: center;
  background: #a8c7bb;
  border-radius: 50px;
}

@media screen and (min-width: 768px) {
  .m_schedule_panel_title {
    font-size: 27px;
    line-height: 54px;
    letter-spacing: 0.03em;
  }
}

.m_schedule_table {
  width: 100%;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  border-collapse: collapse;
}

@media screen and (min-width: 768px) {
  .m_schedule_table {
    font-size: 24px;
  }
}

.m_schedule_table th,
.m_schedule_table td {
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #333333;
}

.m_schedule_table .is_caution {
  color: #8c3a3a;
}

.m_schedule_doctor_img {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.pc_schedule_doctor_img {
  display: none;
}

@media screen and (min-width: 600px) {
  .pc_schedule_doctor_img {
    left: calc(343px + ((100% - 343px - 150px) / 2));
    bottom: 0;
    display: block;
    width: 150px;
    height: 213px;
    object-fit: contain;
  }
}

@media screen and (min-width: 768px) {
  .pc_schedule_doctor_img {
    left: calc(548px + ((100% - 548px - 190px) / 2));
    width: 190px;
    height: 270px;
  }
}

@media screen and (min-width: 900px) {
  .pc_schedule_doctor_img {
    left: calc(548px + ((100% - 548px - 220px) / 2));
    width: 220px;
    height: 312px;
  }
}

@media screen and (min-width: 1000px) {
  .pc_schedule_doctor_img {
    left: calc(548px + ((100% - 548px - 247px) / 2));
    bottom: 0;
    display: block;
    width: 247px;
    height: 350px;
    object-fit: contain;
  }
}

.sp_schedule_doctor_img {
  right: 16px;
  bottom: 0;
  width: 100px;
  height: 142px;
  object-fit: contain;
}

@media screen and (max-width: 360px) {
  .sp_schedule_doctor_img {
    right: 8px;
    width: 88px;
    height: auto;
  }
}

@media screen and (min-width: 600px) {
  .sp_schedule_doctor_img {
    display: none;
  }
}

.m_schedule_doctor_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .m_schedule_doctor_pc {
    display: block;
    width: 100%;
  }
}

.m_schedule_table_doctor {
  table-layout: fixed;
}

.m_schedule_table_doctor th {
  padding: 16px 0;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.03em;
}

.m_schedule_table_doctor tbody td {
  height: 160px;
  padding: 10px 4px;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.03em;
  border-bottom: 0;
}

.m_schedule_week_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 32px;
  padding: 0 8px;
  margin-right: 8px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.03em;
  text-align: center;
  background: #fff4cf;
  border-radius: 20px;
}

@media screen and (max-width: 360px) {
  .m_schedule_week_label {
    min-width: 76px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
  }
}

.m_schedule_table_doctor .m_schedule_week_label {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 4px 0;
}

.m_schedule_doctor_sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .m_schedule_doctor_sp {
    display: none;
  }
}

.m_schedule_doctor_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.m_schedule_doctor_item {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-bottom: 0;
  border-bottom: 1px solid #333333;
}

@media screen and (max-width: 360px) {
  .m_schedule_doctor_item {
    gap: 12px;
  }
}

.m_schedule_doctor_item dt,
.m_schedule_doctor_item dd {
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 360px) {
  .m_schedule_doctor_item dt,
  .m_schedule_doctor_item dd {
    font-size: 18px;
    line-height: 36px;
  }
}

.m_schedule_doctor_item dt {
  flex-shrink: 0;
  width: 103px;
}

@media screen and (max-width: 360px) {
  .m_schedule_doctor_item dt {
    width: 86px;
  }
}

.m_schedule_doctor_item dd {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.m_schedule_doctor_item .is_caution {
  color: #8c3a3a;
}

.m_schedule_doctor_row {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
}

@media screen and (max-width: 360px) {
  .m_schedule_doctor_row {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 8px;
    white-space: nowrap;
  }
}

.m_schedule_footer_note {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
  .m_schedule_footer_note {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.03em;
  }
}

/* ========================================
  access
======================================== */
.l_access_section {
  background: var(--color-bg);
}

.m_access {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.m_access_head {
  display: flex;
  align-items: flex-start;
}

.m_access_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .m_access_wrap {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .m_access_wrap {
    gap: 40px;
  }
}

.m_access_map_frame {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border: 1px solid #a8c7bb;
  border-radius: 50px;
}

@media screen and (min-width: 900px) {
  .m_access_map_frame {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 400px;
  }
}

@media screen and (min-width: 1200px) {
  .m_access_map_frame {
    flex: 0 0 520px;
    width: 520px;
  }
}

.m_access_map_iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.m_access_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 900px) {
  .m_access_info {
    flex: 1 1 0;
    justify-content: space-between;
    align-self: stretch;
    gap: 32px;
    min-width: 0;
    max-width: none;
    margin: 0;
  }
}

.m_access_info_table {
  width: 100%;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
  border-collapse: collapse;
}

@media screen and (min-width: 768px) {
  .m_access_info_table {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.03em;
  }
}

.m_access_info_table tr + tr th,
.m_access_info_table tr + tr td {
  padding-top: 24px;
}

@media screen and (min-width: 768px) {
  .m_access_info_table tr + tr th,
  .m_access_info_table tr + tr td {
    padding-top: 28px;
  }
}

.m_access_info_table th,
.m_access_info_table td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

.m_access_info_table th {
  width: 80px;
  font-weight: 500;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .m_access_info_table th {
    width: 102px;
  }
}

.m_access_info_table td {
  padding-left: 16px;
}

@media screen and (min-width: 768px) {
  .m_access_info_table td {
    padding-left: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .m_access_info_table td {
    white-space: nowrap;
  }
}

.m_access_tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 343px;
  min-height: 56px;
  margin: 0 auto;
  padding: 4px 40px;
  color: #333333;
  background: #f2c94c;
  border-radius: 50px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.m_access_tel:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media screen and (min-width: 900px) {
  .m_access_tel {
    width: 240px;
    max-width: none;
    min-height: 56px;
    margin: 0 auto;
    padding: 4px 20px;
    gap: 8px;
  }
}

@media screen and (min-width: 1200px) {
  .m_access_tel {
    width: 279px;
    min-height: 64px;
    padding: 4px 40px;
  }
}

.m_access_tel_icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.m_access_tel_number {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media screen and (min-width: 900px) {
  .m_access_tel_number {
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0.03em;
  }
}

/* contact */
.contact_section {
  background: var(--color-bg);
}

.contact_section > .l_content {
  padding: 72px 0;
}

.contact_content {
  padding: 36px 24px;
  color: var(--color-white);
  text-align: center;
  background: var(--color-primary);
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .contact_content {
    padding: 56px;
  }
}

.contact_label {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.contact_title {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .contact_title {
    font-size: 36px;
  }
}

.contact_text {
  margin-top: 14px;
}

.contact_buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media screen and (min-width: 768px) {
  .contact_buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ========================================
  footer
======================================== */
.l_footer {
  display: flex;
  flex-direction: column;
  gap: 64px;
  color: #333333;
  background: #f8f6f1;
  border-top: 3px solid #a8c7bb;
}

.l_footer > .l_content {
  padding: 120px 0 0;
}

.l_footer_content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media screen and (min-width: 600px) {
  .l_footer_content {
    gap: 48px;
    align-items: center;
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 900px) {
  .l_footer_content {
    display: flex;
    max-width: none;
    margin: 0;
    align-items: center;
  }
}

.l_footer_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

@media screen and (min-width: 900px) {
  .l_footer_logo {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }
}

.l_footer_logo_sub {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
  color: #0bac44;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(60, 50, 40, 0.12);
  white-space: nowrap;
}

@media screen and (min-width: 900px) {
  .l_footer_logo_sub {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0.03em;
  }
}

.l_footer_logo_img {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 245px;
  height: 48px;
  overflow: hidden;
  filter: drop-shadow(0 1px 3px rgba(60, 50, 40, 0.12));
}

@media screen and (min-width: 900px) {
  .l_footer_logo_img {
    width: 319px;
    height: 62px;
  }
}

.l_footer_logo_img img {
  position: absolute;
  top: -90%;
  left: -3.89%;
  width: 272.37%;
  max-width: none;
  height: 190%;
}

.l_footer_nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .l_footer_nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
    max-width: 720px;
  }
}

@media screen and (min-width: 900px) {
  .l_footer_nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1080px;
  }
}

.l_footer_nav_group {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--color-text);
}

.l_footer_nav_group::before {
  content: none;
}

.l_footer_nav_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border-bottom: 1px solid var(--color-primary);
}

@media screen and (min-width: 900px) {
  .l_footer_nav_head {
    border-bottom: 0;
  }
}

.l_footer_nav_title {
  display: block;
  flex: 1 1 auto;
  padding: 0 0 8px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media screen and (min-width: 900px) {
  .l_footer_nav_title {
    padding: 0;
    font-size: 18px;
    line-height: 36px;
  }
}

.l_footer_nav_toggle {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
}

.l_footer_nav_toggle::before,
.l_footer_nav_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-primary-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.l_footer_nav_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.l_footer_nav_toggle.is_open::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (min-width: 900px) {
  .l_footer_nav_toggle {
    display: none;
  }
}

.l_footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
  width: 100%;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 899px) {
  .l_footer_nav_list[hidden] {
    display: none;
  }
}

.l_footer_nav_list a {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 28px 13px 4px;
  border-bottom: 1px solid var(--color-primary);
}

.l_footer_nav_list a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--color-primary-dark);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
  .l_footer_nav_list {
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 28px;
    white-space: nowrap;
  }

  .l_footer_nav_list a {
    width: fit-content;
    padding: 0;
    border-bottom: 0;
  }

  .l_footer_nav_list a::after {
    content: none;
  }
}

.pc_footer_nav_item {
  display: list-item;
}

.l_footer_copy_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
}

.l_footer_copy_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 3px;
  background: #a8c7bb;
}

.l_footer_copy {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 900px) {
  .l_footer_copy {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.03em;
  }
}
