@charset "UTF-8";
/* ===============================================
基本設定
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*
$font_go: "Yu Gothic","Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
$font_yugo: "Yu Gothic","Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
*/
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px), print {
  .sp-only {
    display: none;
  }
}

.di {
  display: inline-block;
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body,
p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  /* 16px*/
  line-height: 1.8;
  font-weight: 500;
}

a {
  display: block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

html {
  font-size: 62.5%;
}

.inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.sec_title {
  font-family: "Noto Sans JP", sans-serif;
  color: #25AD4E;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sec_title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.sec_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/top_deco01.png) no-repeat center center/cover;
  width: 73px;
  height: 21px;
}
@media (max-width: 767px) {
  .sec_title::after {
    width: 63px;
    height: 18px;
  }
}

table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.9rem;
  width: 100%;
  margin-top: 8px;
  width: 100%;
  table-layout: auto;
  /* ← 固定せずテキスト量に応じて幅が決まる */
  border-collapse: collapse;
}
@media (max-width: 767px) {
  table {
    border-collapse: collapse;
  }
}

.variable_type {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  min-width: 600px;
}

th {
  font-weight: normal;
  padding: 10px 0;
  font-size: 1.6rem;
}
th:first-of-type {
  padding-left: 0.3em;
}
th:not(:first-of-type) {
  text-align: center;
}
@media (max-width: 767px) {
  th {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px), print {
  th {
    border: none;
  }
}

td {
  font-weight: normal;
  padding: 10px 0;
  font-size: 1.6rem;
}
td:first-of-type {
  padding-left: 0.3em;
}
td:not(:first-of-type) {
  text-align: center;
}
@media (max-width: 767px) {
  td {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px), print {
  td {
    border: none;
  }
}

@media (min-width: 768px), print {
  tr td,
  tr th {
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
  }
  tr:last-of-type td {
    border-bottom: none;
  }
  th:last-of-type,
  td:last-of-type {
    border-right: none;
  }
}
/* ===============================================
header
=============================================== */
header {
  min-height: 180px;
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 1023px) {
  header {
    min-height: auto;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #ffffff;
    box-shadow: 1px 1px 10px #eeeeee;
    z-index: 100;
  }
}
header .header_top {
  min-height: 90px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 10px;
}
@media (max-width: 1023px) {
  header .header_top {
    padding: 10px;
    min-height: 60px;
  }
}
header .logo {
  width: 360px;
}
@media (max-width: 1023px) {
  header .logo {
    width: 240px;
  }
}
header .logo img {
  display: block;
}
header .tel_box {
  text-align: right;
}
@media (max-width: 767px) {
  header .tel_box {
    display: none;
  }
}
header .clinic_desc {
  font-size: 1.2rem;
  cursor: default;
}
@media (max-width: 1023px) {
  header .clinic_desc {
    display: none;
  }
}
header .tel_link {
  font-size: 2.9rem;
  font-weight: bold;
  color: #25AD4E;
  cursor: default;
  display: inline;
  position: relative;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  header .tel_link {
    font-size: 3.2rem;
  }
  header .tel_link:not(.sp_tel) {
    display: none;
  }
}
header .tel_link::after {
  content: "";
  position: absolute;
  top: 57%;
  left: -17%;
  transform: translateY(-50%);
  background: url(../img/header_telicon.png) no-repeat center center/cover;
  width: 20px;
  height: 30px;
}
header .g-nav {
  max-width: 1180px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  header .g-nav {
    display: none;
  }
}
header .g-nav ul {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}
header .g-nav ul li {
  position: relative;
  width: auto;
  display: flex;
}
header .g-nav ul li a {
  font-weight: 500;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
header .g-nav ul li a:hover {
  color: #25AD4E;
  border-color: #25AD4E;
}
header .g-nav ul li + li::after {
  content: "";
  position: absolute;
  display: block;
  height: 2.5em;
  border-left: 1px solid #999;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -65px;
  margin: auto;
  transform: rotate(30deg);
}
header .menu {
  z-index: 999;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1023px) {
  header .menu {
    display: block;
  }
}
header .menu .toggle {
  position: relative;
  width: 30px;
  height: 24px;
  display: none;
}
@media screen and (max-width: 1023px) {
  header .menu .toggle {
    display: block;
  }
}
header .menu .toggle i {
  width: 100%;
  height: 3px;
  background-color: #707070;
  position: absolute;
  transition: all 0.4s;
  z-index: 999;
}
header .menu .toggle.show i {
  background-color: #707070;
}
header .menu .toggle i:nth-child(1) {
  top: 0;
}
header .menu .toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
header .menu .toggle i:nth-child(3) {
  bottom: 0;
}
header .menu .toggle.show i:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}
header .menu .toggle.show i:nth-child(2) {
  opacity: 0;
}
header .menu .toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

.sp-nav {
  width: 100%;
  background-color: rgba(37, 173, 78, 0.9);
  height: 100vh;
  padding: 60px 0;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 100;
  display: block;
}
.sp-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  gap: 30px;
  list-style: none;
}
.sp-nav ul li a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .sp-nav {
    display: block;
  }
}
.sp-nav.show {
  right: 0;
}

@media (max-width: 1023px) {
  main {
    margin-top: 60px;
  }
}

.mainvisual {
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1180px;
}
@media (max-width: 767px) {
  .mainvisual {
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }
  .mainvisual img {
    padding: 0 4rem;
  }
}

/* ===============================================
# sec01（トップ）
=============================================== */
#sec01 {
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  #sec01 {
    padding: 60px 0 0;
  }
}
#sec01 .inner {
  max-width: 1180px;
}
#sec01 .content_area {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
}
#sec01 .dec_area {
  width: 100%;
  text-align: center;
}
@media (max-width: 1023px) {
  #sec01 .dec_area {
    max-width: none;
  }
}
#sec01 .desc_text {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  #sec01 .desc_text {
    font-size: 1.6rem;
  }
}
#sec01 .desc_text span {
  font-weight: bold;
  color: #25AD4E;
}
#sec01 .item {
  width: 48%;
}
@media (max-width: 767px) {
  #sec01 .item {
    width: 100%;
  }
}
#sec01 .item table th,
#sec01 .item table td {
  width: 12%;
  font-size: 1.4rem;
}

.schedule_info {
  padding: 80px 0;
}
.schedule_info h3 {
  color: #25AD4E;
  text-align: center;
  font-size: 24px;
}
.schedule_info .top {
  margin-top: 30px;
  text-align: center;
}
.schedule_info .schedule_area {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .schedule_info .schedule_area {
    overflow-x: scroll;
  }
}
.schedule_info .schedule_area table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #ccc;
}
.schedule_info .schedule_area table th,
.schedule_info .schedule_area table td {
  width: 11%;
  border: solid 1px #ccc;
  text-align: center;
  font-size: 1.4rem;
  padding: 10px 3px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .schedule_info .schedule_area table th,
  .schedule_info .schedule_area table td {
    font-size: 1.3rem;
  }
}
.schedule_info .schedule_area table th span,
.schedule_info .schedule_area table td span {
  display: inline-block;
}
@media (max-width: 767px) {
  .schedule_info .schedule_area table th span,
  .schedule_info .schedule_area table td span {
    display: inline;
  }
}
.schedule_info .schedule_area table th span.small_text,
.schedule_info .schedule_area table td span.small_text {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}
.schedule_info .schedule_area table th {
  background: #F8F8F8;
}
.schedule_info .note {
  margin-top: 12px;
  font-size: 1.4rem;
  text-align: left;
}
@media (max-width: 767px) {
  .schedule_info .note {
    text-align: left;
  }
}
.schedule_info .note span:first-child {
  margin-right: 10px;
}
.schedule_info .scroll-hint-icon {
  height: 90px;
}

/* ===============================================
# sec02（トップ）
=============================================== */
#sec02 {
  padding: 100px 0 0;
  background-color: #FDFFF3;
}
@media (max-width: 767px) {
  #sec02 {
    padding: 60px 0 0;
  }
}
#sec02 .content_box {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 32px;
}
@media (max-width: 767px) {
  #sec02 .content_box {
    flex-wrap: wrap;
    -moz-column-gap: 5%;
         column-gap: 5%;
    row-gap: 30px;
    margin-top: 30px;
  }
}
@media (max-width: 425px) {
  #sec02 .content_box {
    flex-direction: column;
    align-items: center;
  }
}
#sec02 .guide_box {
  text-align: center;
  margin-top: 30px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  #sec02 .guide_box {
    margin-top: 20px;
  }
}
#sec02 .guide_box .border-green {
  border: 3px solid #25AD4E;
}
#sec02 .guide_box ul {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  gap: 20px;
}
@media (max-width: 938px) {
  #sec02 .guide_box ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 624px) {
  #sec02 .guide_box ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
#sec02 .guide_box ul li {
  color: #25AD4E;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 767px) {
  #sec02 .guide_box ul li {
    font-size: 16px;
  }
}
#sec02 .guide_box ul li a {
  width: 300px;
  color: #fff;
  text-underline-offset: 6px;
  margin-top: 0;
  transition: all 0.6s ease-in-out;
}
#sec02 .guide_box ul li a:hover {
  opacity: 0.7;
}
#sec02 .department {
  display: block;
  font-size: clamp(1.8rem, 2vw, 2rem);
  color: #25AD4E;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 1px solid #25AD4E;
  border-radius: 50px;
  padding: 15px 0;
  max-width: 280px;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 425px) {
  #sec02 .department {
    padding: 10px 0;
  }
}
#sec02 .department:hover {
  background-color: #25AD4E;
  color: #ffffff;
}
#sec02 .round_button {
  max-width: 280px;
  display: block;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #25AD4E;
  border: 1px solid #25AD4E;
  border-radius: 250px;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  text-align: center;
  font-weight: bold;
  margin: 60px auto 0;
  font-size: 1.8rem;
}
#sec02 .round_button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
  transition: 0.3s all;
}
@media (max-width: 425px) {
  #sec02 .round_button {
    margin: 30px auto 0;
    font-size: 1.6rem;
  }
}
#sec02 .round_button::after {
  width: 25px;
}

/* ===============================================
# sec03（トップ）
=============================================== */
#sec03 {
  padding: 100px 0;
}
@media (max-width: 767px) {
  #sec03 {
    padding: 60px 0;
  }
}
#sec03 .content_box {
  margin-top: 60px;
}
#sec03 .content_item {
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media (max-width: 767px) {
  #sec03 .content_item {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
}
#sec03 .content_item:nth-of-type(even) {
  flex-direction: row-reverse;
  margin-top: 80px;
}
@media (max-width: 767px) {
  #sec03 .content_item:nth-of-type(even) {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    margin-top: 60px;
  }
}
#sec03 .reason_img {
  width: 44%;
}
@media (max-width: 767px) {
  #sec03 .reason_img {
    width: 60%;
  }
}
#sec03 .reason_img img {
  width: 100%;
}
#sec03 .text_area {
  width: 51%;
}
@media (max-width: 767px) {
  #sec03 .text_area {
    max-width: none;
    width: 100%;
  }
}
#sec03 .sub_catch {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #sec03 .sub_catch {
    font-size: 1.4rem;
  }
}
#sec03 .item_title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #25AD4E;
}
@media (max-width: 767px) {
  #sec03 .item_title {
    font-size: 2rem;
  }
}
#sec03 .item_text {
  font-size: 1.8rem;
  margin-top: 20px;
}
@media (max-width: 1180px) {
  #sec03 .item_text {
    font-size: 1.6rem;
  }
}
#sec03 .day_back {
  background-color: #FDFFF3;
  border: 2px solid #25AD4E;
  padding: 30px 20px 40px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  #sec03 .day_back {
    padding: 30px 20px 40px;
    margin-top: 60px;
  }
}
#sec03 .aside_inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
#sec03 .aside_title {
  text-align: center;
  color: #25AD4E;
  font-size: 2.4rem;
  position: relative;
  font-weight: bold;
}
@media (max-width: 767px) {
  #sec03 .aside_title {
    font-size: 2rem;
  }
}
#sec03 .aside_title::before, #sec03 .aside_title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 2px solid #25AD4E;
  width: 10%;
  height: 1px;
}
@media (max-width: 767px) {
  #sec03 .aside_title::before, #sec03 .aside_title::after {
    display: none;
  }
}
#sec03 .aside_title::before {
  left: calc(50% - 280px);
}
#sec03 .aside_title::after {
  right: calc(50% - 280px);
}
#sec03 .list_box {
  display: flex;
  gap: 10%;
  justify-content: center;
}
@media (max-width: 767px) {
  #sec03 .list_box {
    gap: 0;
    flex-direction: column;
  }
}
#sec03 .aside_list {
  margin: 16px 0 0;
  font-size: 2rem;
  list-style-type: disc;
  padding-left: 2.4rem;
}
@media (max-width: 767px) {
  #sec03 .aside_list {
    font-size: 1.6rem;
    padding-left: 1.5em;
  }
}
@media (max-width: 425px) {
  #sec03 .aside_list {
    width: 100%;
  }
}
#sec03 .aside_list li {
  margin: 10px 0;
}
#sec03 .aside_list .announcement {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  #sec03 .aside_list + .aside_list {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  #sec03 .aside_list + .aside_list li:first-of-type {
    margin-top: 0;
  }
}

/* ===============================================
# sec04（トップ）
=============================================== */
#sec04 {
  padding: 100px 0;
}
@media (max-width: 767px) {
  #sec04 {
    padding: 60px 0;
  }
}
#sec04 .content_box {
  margin-top: 100px;
}
#sec04 .faq_area {
  width: 80%;
  margin: 0 auto;
}
#sec04 .faq_area + .faq_area {
  margin-top: 100px;
}
@media (max-width: 767px) {
  #sec04 .faq_area {
    width: 100%;
  }
}
#sec04 .q_kind {
  font-size: 2.2rem;
  position: relative;
  padding-left: 1.5em;
}
#sec04 .q_kind::after {
  content: "";
  border-left: 8px solid #25AD4E;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 1.2em;
}
@media (max-width: 767px) {
  #sec04 .q_kind {
    font-size: 1.8rem;
    padding-left: 1em;
  }
}
#sec04 dl {
  margin-top: 70px;
}
@media (max-width: 767px) {
  #sec04 dl {
    margin-top: 30px;
  }
}
#sec04 dt,
#sec04 dd {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #sec04 dt,
  #sec04 dd {
    font-size: 1.6rem;
  }
}
#sec04 dt {
  border-bottom: 1px solid #707070;
  margin-top: 40px;
  position: relative;
  padding-left: 1.5em;
  padding-right: 1.5em;
  cursor: pointer;
}
@media (max-width: 767px) {
  #sec04 dt {
    margin: 30px 0;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
#sec04 dt::before {
  content: "Q.";
  position: absolute;
  font-weight: bold;
  color: #25AD4E;
  top: 0;
  left: 0;
}
#sec04 dt::after {
  content: "▼";
  position: absolute;
  color: #333333;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
  transform-origin: center;
}
#sec04 dt.active::after {
  transform: rotate(180deg) translateY(50%);
}
#sec04 dd {
  margin-top: 20px;
  display: none;
  position: relative;
  padding-left: 1.5em;
}
#sec04 dd::before {
  content: "A.";
  position: absolute;
  font-weight: bold;
  color: #25AD4E;
  top: 0%;
  left: 0;
}
#sec04 dd ol li {
  list-style: auto;
}
#sec04 dd ul li {
  list-style: disc;
}
#sec04 dd li {
  padding-left: 0.5em;
  margin-top: 1em;
}
#sec04 .round_button {
  max-width: 280px;
  display: block;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #25AD4E;
  border: 1px solid #25AD4E;
  border-radius: 250px;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  text-align: center;
  font-weight: bold;
  margin: 160px auto 0;
}
#sec04 .round_button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
  transition: 0.3s all;
}
#sec04 .round_button::after {
  width: 25px;
}

/* ===============================================
# sec05（トップ）
=============================================== */
#sec05 {
  padding: 100px 0;
  background-color: #FDFFF3;
}
@media (max-width: 767px) {
  #sec05 {
    padding: 60px 0;
  }
}
#sec05 .map_area {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #sec05 .map_area {
    margin-top: 40px;
  }
}
#sec05 .map_area iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  #sec05 .map_area iframe {
    aspect-ratio: 1/1;
    height: 320px;
  }
}
#sec05 .about_box {
  margin-top: 100px;
  padding: 0 14%;
}
@media (max-width: 1000px) {
  #sec05 .about_box {
    padding: 4% 4% 6%;
  }
}
#sec05 .about_box h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 2px solid #25AD4E;
}
#sec05 .about_box p {
  margin-top: 16px;
}
#sec05 .about_box .txt_area {
  margin-top: 20px;
  text-align: center;
}
#sec05 .about_box .txt_area h3 {
  font-size: 2.4rem;
  color: #25AD4E;
  font-weight: bold;
  display: inline-block;
  border-bottom: 4px dotted #25AD4E;
}
#sec05 .about_box .txt_area ul {
  margin-top: 20px;
}
#sec05 .about_box .txt_area ul li {
  list-style: disc;
  text-align: left;
  margin-left: 8%;
}
#sec05 .access_box {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 30px;
}
@media (max-width: 767px) {
  #sec05 .access_box {
    flex-direction: column;
    align-items: center;
  }
}
#sec05 .access_case {
  width: 48%;
}
@media (max-width: 767px) {
  #sec05 .access_case {
    margin: 0 auto;
    width: 100%;
  }
}
#sec05 .access_title {
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: #25AD4E;
  border-bottom: 2px solid #25AD4E;
  padding-bottom: 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  #sec05 .access_title {
    font-size: 1.8rem;
  }
}
#sec05 .access_text {
  font-size: 1.8rem;
  margin-top: 16px;
}
@media (max-width: 767px) {
  #sec05 .access_text {
    font-size: 1.6rem;
  }
}

.small {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .small {
    font-size: 1.4rem;
  }
}

/* ===============================================
# footer
=============================================== */
footer {
  border-top: solid 1px #eee;
}
@media (max-width: 1023px) {
  footer {
    margin-bottom: 60px;
  }
}
footer .clinic_schedule {
  padding: 60px 0 0;
}
footer .clinic_schedule .schedule_info {
  padding: 60px 0 0;
}
footer .clinic_schedule .schedule_area {
  margin: 0;
}
footer .logo {
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
footer .logo img {
  display: block;
}
footer .content_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  gap: 30px;
}
@media (max-width: 767px) {
  footer .content_box {
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
    margin: 0 auto;
  }
}
footer .adress {
  font-size: 1.6rem;
  margin-top: 20px;
  cursor: default;
}
footer .clinic_tel {
  cursor: default;
  text-align: left;
}
@media (max-width: 767px) {
  footer .clinic_tel {
    width: 100%;
  }
}
footer .tel_link {
  font-size: 2.9rem;
  font-weight: bold;
  color: #25AD4E;
  margin-top: 20px;
  display: inline;
  position: relative;
  margin-left: 1em;
}
footer .tel_link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translateY(-50%);
  background: url(../img/header_telicon.png) no-repeat center center/cover;
  width: 24px;
  height: 36px;
}
footer .tel_time {
  font-size: 1.5rem;
  margin-top: 20px;
}
@media (max-width: 767px) {
  footer .tel_time {
    margin-top: 30px;
  }
}
footer small {
  background-color: #25AD4E;
  color: #fff;
  text-align: center;
  display: block;
}
footer small p {
  background-color: #25AD4E;
  padding: 10px 0;
  font-size: 1.2rem;
}

#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  opacity: 0.9;
  z-index: 99;
  background-color: #25AD4E;
  text-align: center;
  min-height: 60px;
  display: none;
}
@media (max-width: 1023px) {
  #sp-fixed-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#sp-fixed-menu a {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
}
#sp-fixed-menu a .tel_text {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.8rem;
  display: inline;
  padding: 20px;
  position: relative;
}
#sp-fixed-menu a .tel_text::before {
  content: "";
  background: url(../img/header_telicon_sp.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 27px;
  height: 45px;
}

/* ===============================================
# 12/20 追加
=============================================== */
.f_logo {
  width: 70%;
}

/* ===============================================
# 25/04/17 追加
=============================================== */
.cl-red {
  color: #f00;
}

.pl-space {
  padding-left: 36px;
}

.mt-10 {
  margin-top: 10px;
}

.font-sm {
  font-size: 1.4rem;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */