@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}

input, textarea {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  font-weight: 500;
  color: #333;
}
@media only screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.875;
  }
}

main {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) {
  main {
    margin-top: 100px;
  }
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.u-sp {
  display: block !important;
}
@media only screen and (min-width: 576px) {
  .u-sp {
    display: none !important;
  }
}

.u-tab {
  display: none !important;
}
@media only screen and (min-width: 576px) {
  .u-tab {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .u-pc {
    display: block !important;
  }
}

@media only screen and (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

.c-txt-left {
  text-align: left;
}

.c-txt-center {
  text-align: center;
}

.c-txt-right {
  text-align: right;
}

/* ==================================
レイアウト
===================================== */
.l-container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
@media only screen and (min-width: 576px) {
  .l-container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .l-container {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: content-box;
  }
}

@media only screen and (min-width: 576px) {
  .l-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) {
  .l-column.rev {
    flex-direction: row-reverse;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.95);
}
@media only screen and (min-width: 992px) {
  .l-header {
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}
.l-header__inner {
  height: 100%;
  padding-right: 5px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .l-header__inner {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 0 0 50px;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__logo img {
  width: 195px;
}
@media only screen and (min-width: 992px) {
  .l-header__logo img {
    width: 312px;
  }
}
.l-header .c-button {
  position: relative;
  background-color: transparent;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .l-header .c-button {
    display: none;
  }
}
.l-header .p-hamburger {
  width: 50px;
  height: 50px;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.l-header .p-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 1px;
  background-color: #725724;
  transition: inherit;
  z-index: 2;
}
.l-header .p-hamburger__line::before,
.l-header .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #725724;
  content: "";
  transition: inherit;
}
.l-header .p-hamburger__line::before {
  top: -9px;
}
.l-header .p-hamburger__line::after {
  top: 9px;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  background-color: #244474;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  transform: rotate(45deg);
  background-color: #725724;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  transform: rotate(-45deg);
  background-color: #725724;
}
.l-header .u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
@media only screen and (max-width: 991px) {
  .l-header__nav {
    max-width: 600px;
    width: 100%;
    height: calc(100dvh - 60px);
    padding: 20px 15px;
    position: fixed;
    top: 60px;
    right: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav {
    padding: 20px 30px 20px 55px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column-reverse;
    position: relative;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 30px;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list li:first-child {
    border-top: 1px solid #ddd8d0;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list li:not(:last-child) {
    border-bottom: 1px solid #ddd8d0;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child) {
    position: relative;
  }
}
.l-header__nav .l-header__list li a {
  padding: 17px 0 17px 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6666666667;
  color: #333;
  display: block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li a {
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.875;
    color: #333;
    border: none;
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list li a::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: center/contain no-repeat url(../img/icon_arrow.svg);
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list li a::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: radial-gradient(circle at 1px center, #fff, #fff 1px, transparent 1.5px, transparent 100%);
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: 8px 2px;
  }
}
.l-header__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .l-header__links {
    margin-bottom: 5px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
}
.l-header__logo--sec {
  width: 120px;
  margin: 50px auto 0;
}
@media only screen and (min-width: 992px) {
  .l-header__logo--sec {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .l-header .p-access__table {
    display: none;
  }
}

body.is-drawerActive {
  overflow: hidden;
}
body.is-drawerActive .l-header {
  background-color: #fff;
}
body.is-drawerActive .l-header__nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  padding: 40px 0 10px;
  background-color: #e5e0d8;
}
@media only screen and (min-width: 992px) {
  .l-footer {
    padding: 40px 0 15px;
  }
}
.l-footer .l-footer__logo {
  width: 195px;
  margin: 0 auto 15px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__logo {
    width: 234px;
    margin: 0 auto 15px;
  }
}
.l-footer .l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.l-footer .l-footer__list li {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 15px;
    background-color: #333;
    transform: translateY(-50%);
  }
}
.l-footer .l-footer__list li a {
  color: #333;
}
.l-footer .l-footer__copyright {
  width: 100vw;
  margin: 30px calc(50% - 50vw) 0;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 3;
  text-align: center;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__copyright {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 2.5;
  }
}

.c-bg {
  background-color: #f4f8f8;
}

.c-btn__tel {
  padding: 7px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 25px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .c-btn__tel {
    padding: 4px 18px;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}
.c-btn__tel span {
  font-size: 24px;
  line-height: 1.25;
}
@media only screen and (min-width: 992px) {
  .c-btn__tel span {
    font-size: 22px;
    line-height: 1.3636363636;
  }
}

.c-btn__link {
  padding: 10px 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3636363636;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 25px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .c-btn__link {
    padding: 5px 28px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.c-fw--lt {
  font-weight: 300;
}
.c-fw--rg {
  font-weight: 400;
}
.c-fw--m {
  font-weight: 500;
}
.c-fw--sbd {
  font-weight: 600;
}
.c-fw--b {
  font-weight: 700;
}
.c-fw--bk {
  font-weight: 900;
}

.c-al--l {
  text-align: left;
}
.c-al--c {
  text-align: center;
}
.c-al--r {
  text-align: right;
}

.c-ttl {
  padding-top: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  color: #725724;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .c-ttl {
    padding-top: 45px;
    font-size: 40px;
    line-height: 1.2;
  }
}
.c-ttl::before {
  content: attr(data-title-en);
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Satisfy", cursive;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 3;
  text-align: center;
  color: #f0aa25;
}
@media only screen and (min-width: 992px) {
  .c-ttl::before {
    font-size: 24px;
    line-height: 2;
  }
}

.p-mv {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .p-mv {
    max-width: 1536px;
    margin: 0 auto;
  }
}
.p-mv .p-mv__img {
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__img {
    width: calc(100% - 40px);
  }
}
.p-mv .p-mv__open {
  width: calc(100% - 80px);
  margin: -50vw auto 0;
  padding: 20px 0;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .p-mv .p-mv__open {
    max-width: 430px;
    margin-top: -15vw;
  }
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__open {
    width: 430px;
    margin: initial;
    padding: 30px 0;
    position: absolute;
    top: 36%;
    left: 0;
  }
}
.p-mv .p-mv__logo {
  width: 120px;
  margin: 0 auto 25px;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__logo {
    width: 147px;
    margin-bottom: 0;
  }
}
.p-mv .p-mv__date {
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 29px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__date {
    font-size: 37px;
  }
}
.p-mv .p-mv__date .border {
  position: relative;
  z-index: 2;
}
.p-mv .p-mv__date .border::after {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffe4b1;
  z-index: -1;
}
.p-mv .p-mv__date .num {
  font-size: 38px;
  line-height: 1.3684210526;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__date .num {
    font-size: 49px;
    letter-spacing: 0.1em;
  }
}
.p-mv .p-mv__date .day {
  font-size: 17px;
  line-height: 3.0588235294;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__date .day {
    font-size: 22px;
  }
}
.p-mv .p-mv__date .txt {
  font-size: 20px;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__date .txt {
    font-size: 28px;
  }
}
.p-mv .p-mv__pre {
  width: calc(100% - 20px);
  margin: 0 auto;
  padding: 0 0 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  background-color: #fff6c6;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__pre {
    max-width: 330px;
  }
}
.p-mv .p-mv__pre .num {
  font-size: 30px;
  line-height: 1.3333333333;
}
.p-mv .p-mv__pre .txt {
  font-size: 16px;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__pre .txt {
    font-size: 20px;
  }
}

.p-mind {
  padding: 30px 0 100px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .p-mind {
    padding: 70px 0 140px;
  }
}
.p-mind .l-container {
  position: relative;
}
.p-mind .c-ttl {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .p-mind .c-ttl {
    margin-bottom: 40px;
  }
}
.p-mind .p-mind__lead {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 2.0454545455;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-mind .p-mind__lead {
    margin-bottom: 20px;
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 2;
  }
}
.p-mind .p-mind__txt {
  margin-bottom: 35px;
  line-height: 2.1428571429;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-mind .p-mind__txt {
    line-height: 2.5;
  }
}
.p-mind .p-mind__txt::before {
  content: "mind";
  font-family: "Satisfy", cursive;
  font-size: 200px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #e3a839;
  opacity: 0.1;
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .p-mind .p-mind__txt::before {
    font-size: 300px;
    top: -150px;
  }
}
.p-mind .p-mind__img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media only screen and (min-width: 992px) {
  .p-mind .p-mind__img.sp {
    display: none;
  }
}
.p-mind .p-mind__img--01 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .p-mind .p-mind__img--01 {
    width: 268px;
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translateX(-750px);
    display: block;
  }
}
.p-mind .p-mind__img--02 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .p-mind .p-mind__img--02 {
    width: 268px;
    position: absolute;
    top: -4%;
    right: 50%;
    transform: translateX(750px);
    display: block;
  }
}

.p-about {
  padding: 45px 0 40px;
  background: linear-gradient(to bottom, #fff6c6, #ffd4a2);
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-about {
    padding: 90px 0 85px;
  }
}
.p-about::before {
  content: "";
  width: 100%;
  aspect-ratio: 375/24;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: center/cover no-repeat url(../img/mask_about_sp.webp);
}
@media only screen and (min-width: 576px) {
  .p-about::before {
    aspect-ratio: 1536/50;
    background-image: url(../img/mask_about.webp);
  }
}
.p-about .c-ttl {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .p-about .c-ttl {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) {
  .p-about .l-column {
    flex-direction: row-reverse;
  }
}
.p-about .p-about__list {
  padding: 40px 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__list {
    padding: 55px 80px 35px;
  }
}
.p-about .p-about__list::before {
  content: "";
  width: calc(100% - 40px);
  height: 100px;
  position: absolute;
  bottom: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  -webkit-clip-path: ellipse(50% 100% at 50% 100%);
          clip-path: ellipse(50% 100% at 50% 100%);
}
@media only screen and (min-width: 576px) {
  .p-about .p-about__list::before {
    max-width: 514px;
  }
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__list::before {
    height: 152px;
    bottom: calc(100% - 20px);
  }
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__list {
    gap: 35px;
  }
}
.p-about .p-about__list li {
  padding-bottom: 40px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .p-about .p-about__list li {
    display: grid;
    grid-template-columns: 42% 55%;
    justify-content: end;
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__list li {
    padding-bottom: 35px;
    grid-template-columns: 523px 55%;
    gap: 55px;
  }
}
.p-about .p-about__list li:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: radial-gradient(circle at 1.5px center, #eddbb3, #eddbb3 1.5px, transparent 1.5px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 8px 3px;
}
@media only screen and (min-width: 576px) {
  .p-about .p-about__list li:nth-child(even) {
    grid-template-columns: 55% 42%;
    justify-content: start;
  }
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__list li:nth-child(even) {
    grid-template-columns: 55% 523px;
  }
}
@media only screen and (min-width: 576px) {
  .p-about .p-about__list li:nth-child(even) .p-about__txtWrap {
    order: 1;
  }
}
@media only screen and (min-width: 576px) {
  .p-about .p-about__list li:nth-child(even) .p-about__imgWrap {
    order: 2;
  }
}
.p-about .p-about__num {
  font-family: "Satisfy", cursive;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.8461538462;
  text-align: center;
  color: #f0aa25;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__num {
    font-size: 30px;
    line-height: 1.6;
  }
}
.p-about .p-about__num span {
  margin-right: 5px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 3;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__num span {
    font-size: 20px;
    line-height: 2.4;
  }
}
.p-about .p-about__img {
  margin-bottom: 10px;
}
.p-about .p-about__ttl {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__ttl {
    margin-top: -5px;
    margin-bottom: 15px;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
  }
}

.p-medical {
  padding-bottom: 75px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-medical {
    padding-bottom: 80px;
  }
}
.p-medical .c-ttl {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.p-medical .c-ttl::before {
  color: #fff;
}
.p-medical .p-medical__ttl {
  width: 180px;
  height: 180px;
  margin: -90px auto 20px;
  background-color: #f0aa25;
  border-radius: 50%;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__ttl {
    margin: -40px auto 0 0;
  }
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__ttl {
    width: 220px;
    height: 220px;
  }
}
.p-medical .p-medical__img {
  max-width: 460px;
  width: 75%;
  margin: 0 auto 50px;
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__img {
    margin-bottom: 95px;
  }
}
.p-medical .p-medical__list {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__list {
    max-width: 475px;
    margin: -100px 0 0 auto;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 38px 20px;
  }
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__list {
    max-width: 745px;
  }
}
.p-medical .p-medical__list:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__list:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.p-medical .p-medical__list li {
  width: 100%;
  padding: 0 0 4px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1428571429;
  border-bottom: 1px solid #ddd8d0;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__list li {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__list li {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-medical .p-medical__list li::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #f0aa25;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__list li::before {
    width: 14px;
    height: 14px;
  }
}
.p-medical .p-medical__other {
  margin-top: 25px;
  padding: 4px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__other {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__other {
    margin-top: 55px;
    padding: 6px 0;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
}
.p-medical .p-medical__other span {
  display: inline-block;
  position: relative;
}
.p-medical .p-medical__other span::after {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffe4b1;
  z-index: -1;
}

.p-doctor {
  padding: 65px 0 80px;
}
@media only screen and (min-width: 992px) {
  .p-doctor {
    padding: 70px 0 85px;
  }
}
.p-doctor .c-ttl {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) {
  .p-doctor .c-ttl {
    margin-bottom: 40px;
  }
}
.p-doctor .p-doctor__lead {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__lead {
    font-size: 22px;
  }
}
.p-doctor .p-doctor__txt {
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .p-doctor .p-doctor__txt {
    max-width: 830px;
    margin: 0 auto 15px;
  }
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__txt {
    line-height: 2.125;
  }
}
.p-doctor .p-doctor__list {
  margin-bottom: 35px;
}
@media only screen and (min-width: 576px) {
  .p-doctor .p-doctor__list {
    max-width: 830px;
    margin: 0 auto 50px;
  }
}
.p-doctor .p-doctor__position {
  font-size: 12px;
  line-height: 1.6666666667;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__position {
    max-width: 235px;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.p-doctor .p-doctor__name {
  font-size: 18px;
  line-height: 1.6666666667;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__name {
    max-width: 235px;
    margin-left: auto;
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-doctor .p-doctor__name::after {
  content: attr(data-en);
  margin-left: 10px;
  font-size: 12px;
  line-height: 1.6666666667;
  color: #f0aa25;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__name::after {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.p-doctor .p-doctor__ttl {
  margin-bottom: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  line-height: 2.4;
  color: #725724;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__ttl {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 2;
  }
}
.p-doctor .p-doctor__ttl span {
  display: inline-block;
  position: relative;
}
.p-doctor .p-doctor__ttl span::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  background-color: #725724;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__ttl span::after {
    width: 50px;
  }
}
.p-doctor .p-doctor__wrap {
  padding: 30px 20px 40px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-doctor .p-doctor__wrap {
    padding: 45px 0px 40px;
  }
}
.p-doctor .p-doctor__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: center/cover no-repeat url(../img/img_message.webp);
  border-radius: 20px;
  z-index: -1;
}
@media only screen and (min-width: 1240px) {
  .p-doctor .p-doctor__wrap::before {
    width: 1200px;
    border-radius: 40px;
  }
}
@media only screen and (min-width: 576px) {
  .p-doctor .p-doctor__list--sec {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.p-doctor .p-doctor__list--sec li {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd8d0;
}
@media only screen and (min-width: 576px) {
  .p-doctor .p-doctor__list--sec li {
    display: flex;
  }
}
.p-doctor .p-doctor__list--sec li:not(:last-child) {
  margin-bottom: 15px;
}
.p-doctor .p-doctor__year {
  font-size: 16px;
  line-height: 1.875;
  color: #e3a839;
}
@media only screen and (min-width: 576px) {
  .p-doctor .p-doctor__year {
    min-width: 75px;
  }
}
.p-access {
  padding: 35px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .p-access {
    padding: 70px 0 80px;
  }
}
@media only screen and (min-width: 576px) {
  .p-access .l-container {
    max-width: 830px;
  }
}
.p-access .c-ttl {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) {
  .p-access .c-ttl {
    margin-bottom: 45px;
  }
}
.p-access__table {
  width: 100%;
  margin-top: 20px;
  background-color: #fff;
}
@media only screen and (min-width: 992px) {
  .p-access__table {
    margin-top: 40px;
  }
}
.p-access__table tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
.p-access__table tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
.p-access__table tr:last-child td {
  border-bottom: none;
}
.p-access__table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.p-access__table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.p-access__table th,
.p-access__table td {
  text-align: center;
  vertical-align: middle;
}
.p-access__table th {
  width: 12.3333333333%;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8571428571;
  background-color: #ffe3b1;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  .p-access__table th {
    width: 11.1666666667%;
    height: 60px;
    font-size: 16px;
    padding: 10px 0;
    line-height: 1.875;
  }
}
.p-access__table th:nth-child(1) {
  width: 26%;
  color: #725724;
}
@media only screen and (min-width: 992px) {
  .p-access__table th:nth-child(1) {
    width: 33%;
  }
}
.p-access__table th:not(:first-child) {
  border-left: 1px solid #ead5af;
}
.p-access__table td {
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  color: #f0aa25;
  background-color: #fbf6f0;
  border-bottom: 1px solid #ead5af;
}
@media only screen and (min-width: 992px) {
  .p-access__table td {
    height: 60px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.p-access__table td:first-child {
  font-size: 12px;
  letter-spacing: normal;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-access__table td:first-child {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.p-access__table td:not(:first-child) {
  border-left: 1px solid #ead5af;
}
.p-access__table td span {
  color: #333;
}
.p-access .p-access__logo {
  max-width: 195px;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__logo {
    max-width: 234px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__links {
    display: flex;
    gap: 40px;
  }
}
.p-access .p-access__link {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__link {
    font-size: 30px;
    line-height: 1.0666666667;
  }
}
@media only screen and (max-width: 575px) {
  .p-access .p-access__link + .p-access__link {
    margin-top: 10px;
  }
}
.p-access .p-access__link span {
  color: #f0aa25;
}
.p-access .p-access__mapWrap {
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__mapWrap {
    width: 57.5%;
    margin-bottom: 0;
  }
}
.p-access .p-access__map {
  width: 100%;
  height: 215px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__map {
    height: 305px;
  }
}
.p-access .p-access__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__info {
    width: 37.5%;
  }
}
.p-access .p-access__line {
  width: 100%;
  height: 1px;
  margin: 15px 0;
  background-color: #ddd8d0;
  border: none;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__line {
    margin: 20px 0;
  }
}
.p-access .p-access__address {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__address {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.625;
  }
}
.p-access .p-access__label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #e3a839;
}
.p-access .p-access__list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  padding-left: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__list li {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-access .p-access__list li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #70b544;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__list li::before {
    top: 10px;
  }
}
.p-access .p-access__notice {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: normal;
  line-height: 2.1666666667;
  color: #666;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__notice {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.8571428571;
  }
}

.p-recruit {
  padding: 70px 0 75px;
  background: center/cover no-repeat url(../img/img_recruit.jpg);
}
@media only screen and (min-width: 992px) {
  .p-recruit {
    padding: 70px 0 80px;
  }
}
.p-recruit .c-ttl {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) {
  .p-recruit .c-ttl {
    margin-bottom: 45px;
  }
}
.p-recruit .p-recruit__wrap {
  padding: 5px 20px 20px;
  background-color: #fff;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__wrap {
    padding: 10px 30px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__wrap {
    padding: 25px 50px 40px;
    border-radius: 40px;
  }
}
.p-recruit .p-recruit__table {
  width: 100%;
}
.p-recruit .p-recruit__heading {
  padding-top: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  text-align: left;
  color: #f0aa25;
}
@media only screen and (max-width: 575px) {
  .p-recruit .p-recruit__heading {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__heading {
    padding: 16px 0;
    border-bottom: 1px solid #dedede;
  }
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__heading {
    min-width: 130px;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__heading {
    min-width: 150px;
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-recruit .p-recruit__data {
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  border-bottom: 1px solid #dedede;
}
@media only screen and (max-width: 575px) {
  .p-recruit .p-recruit__data {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__data {
    padding: 16px 0;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__data {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-recruit .p-recruit__entry {
  margin-top: 20px;
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__entry {
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__entry {
    margin-top: 20px;
    padding: 50px 20px 40px;
    border-radius: 40px;
  }
}
.p-recruit .p-recruit__label {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  color: #725724;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__label {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1;
  }
}
.p-recruit .p-recruit__label span {
  display: inline-block;
  position: relative;
}
.p-recruit .p-recruit__label span::after {
  content: "";
  width: 100%;
  height: 9px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #ffe4b1;
  z-index: -1;
}
.p-recruit .p-recruit__txt {
  text-align: center;
}
.p-recruit .p-recruit__txt a {
  color: #333;
}/*# sourceMappingURL=style.css.map */