@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: "Zen Maru Gothic", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  font-weight: 500;
  color: #111;
}
@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: 0;
  }
}

img {
  display: block;
}

.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: #fff4ed;
}
@media only screen and (min-width: 992px) {
  .l-header {
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: transparent;
  }
}
.l-header__inner {
  height: 100%;
  padding-right: 10px;
  padding-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .l-header__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.l-header__logo img {
  width: 95px;
}
@media only screen and (min-width: 992px) {
  .l-header__logo img {
    width: 160px;
  }
}
.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: #fff;
  cursor: pointer;
  border-radius: 50%;
}
@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: 2px;
  background-color: #111;
  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: #111;
  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: #111;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  transform: rotate(-45deg);
  background-color: #111;
}
.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 {
    height: calc(100vh - 60px);
    padding: 0 15px 140px;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background-color: #fff4ed;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav {
    padding: 12px 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column-reverse;
    background-color: #fff;
    border-radius: 50px;
    position: relative;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
  }
}
@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 28px;
  }
}
@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:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    right: -18px;
    background-color: #000;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child)::after {
    display: none;
  }
}
.l-header__nav .l-header__list li a {
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  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;
  }
}
.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;
  }
}
body.is-drawerActive {
  overflow: hidden;
}
body.is-drawerActive .l-header__nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  padding-top: 40px;
  background-color: #faf3ef;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .l-footer {
    padding-top: 55px;
  }
}
@media only screen and (min-width: 992px) {
  .l-footer .l-container {
    max-width: 1436px;
  }
}
.l-footer .l-footer__logo {
  width: 160px;
  margin: 0 auto 40px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__logo {
    width: 160px;
    margin: initial;
    margin-left: 3.5%;
  }
}
.l-footer .l-footer__links {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__links {
    margin-top: 15px;
    margin-bottom: 15px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.l-footer .l-footer__list {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 20px;
  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 {
    width: auto;
    border-radius: 40px;
    flex-direction: row;
    gap: 30px;
  }
}
.l-footer .l-footer__list li a {
  font-weight: 700;
  color: #333;
  display: inline-block;
}
.l-footer .l-footer__copyright {
  width: 100vw;
  margin: 40px calc(50% - 50vw) 0;
  font-size: 10px;
  line-height: 3;
  text-align: center;
  color: #fff;
  display: block;
  background-color: #c9b7ad;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__copyright {
    margin-top: 55px;
    font-size: 12px;
    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: 25px 0;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.1538461538;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .c-ttl {
    font-size: 36px;
    letter-spacing: 0.15em;
    line-height: 1;
  }
}
.c-ttl::before {
  content: "";
  width: 80px;
  height: 75px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: center/contain no-repeat url(../img/bg_title.webp);
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .c-ttl::before {
    width: 92px;
    height: 86px;
  }
}

#top .p-mv {
  padding-bottom: 110px;
  background-color: #fff4ed;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  #top .p-mv {
    padding-top: 0;
    padding-bottom: 90px;
  }
}
#top .p-mv::after {
  content: "";
  width: 140.8%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: center/contain no-repeat url(../img/bg_mv.webp);
  aspect-ratio: 843/593;
}
@media only screen and (min-width: 576px) {
  #top .p-mv::after {
    width: 54.8828125%;
    bottom: 5%;
    left: -9%;
    transform: none;
  }
}
#top .p-mv .p-mv__img {
  width: calc(100% - 30px);
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  #top .p-mv .p-mv__img {
    width: calc(100% - 100px);
  }
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__img {
    width: 85.4166666667%;
  }
}
#top .p-mv .p-mv__wrap {
  width: 186px;
  height: 158px;
  position: absolute;
  bottom: 4%;
  left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  #top .p-mv .p-mv__wrap {
    width: 292px;
    height: 240px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__wrap {
    width: 458px;
    height: 389px;
    bottom: 0;
    left: 3.5%;
  }
}
#top .p-mv .p-mv__wrap::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: center/contain no-repeat url(../img/bg_preview.webp);
  aspect-ratio: 186/158;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__wrap::before {
    aspect-ratio: 458/389;
  }
}
#top .p-mv .p-mv__ttl {
  padding-top: 5px;
  font-size: 17px;
  letter-spacing: 0.15em;
  line-height: 1.2903225806;
  color: #fff;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__ttl {
    padding-top: 15px;
    font-size: 30px;
    line-height: 1;
  }
}
#top .p-mv .p-mv__ttl span {
  font-size: 28px;
  line-height: 1.0810810811;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__ttl span {
    font-size: 50px;
    line-height: 1.16;
  }
}
#top .p-mv .p-mv__ttl span.txt {
  font-size: 22px;
  line-height: 1.8181818182;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__ttl span.txt {
    font-size: 40px;
  }
}
#top .p-mv .p-mv__preview {
  width: 200px;
  margin-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__preview {
    width: 292px;
    font-size: 21px;
    line-height: 1.3;
  }
}
#top .p-mv .p-mv__preview span {
  font-size: 21px;
  line-height: 1.4285714286;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__preview span {
    font-size: 30px;
    line-height: 1;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__preview span.txt {
    font-size: 16px;
    line-height: 1.875;
  }
}
#top .p-mv .p-mv__preOpen {
  width: 136px;
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
  color: #e57165;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  bottom: 12%;
  right: 5%;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  #top .p-mv .p-mv__preOpen {
    display: none;
  }
}
#top .p-mv .p-mv__preOpen .txt {
  line-height: 2.4166666667;
}
#top .p-mv .p-mv__preOpen .date {
  font-size: 16px;
  line-height: 1;
}
#top .p-about {
  padding: 50px 0 100px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-about {
    padding: 10px 0 195px;
  }
}
#top .p-about::before {
  content: "";
  width: 100%;
  height: 265px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff4ed;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-about::before {
    height: 425px;
  }
}
#top .p-about::after {
  content: "";
  width: 100%;
  aspect-ratio: 750/49;
  position: absolute;
  top: 265px;
  right: 0;
  left: 0;
  background: center/contain no-repeat url(../img/bg_02.png);
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-about::after {
    top: 425px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-about .l-container {
    max-width: 1165px;
  }
}
#top .p-about__container {
  position: relative;
}
@media only screen and (min-width: 576px) {
  #top .p-about .l-column {
    flex-direction: row-reverse;
  }
}
#top .p-about .c-ttl {
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  #top .p-about .c-ttl {
    margin-bottom: 30px;
  }
}
#top .p-about .p-about__wrap {
  position: relative;
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__imgWrap {
    width: 49%;
  }
}
@media only screen and (max-width: 575px) {
  #top .p-about .p-about__txtWrap {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__txtWrap {
    width: 46%;
  }
}
#top .p-about .p-about__feature {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #e57165;
}
@media only screen and (min-width: 992px) {
  #top .p-about .p-about__feature {
    font-size: 20px;
    line-height: 2;
  }
}
#top .p-about .p-about__feature span {
  display: inline-block;
  border-bottom: 1px solid #e57165;
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__txt {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 2;
  }
}
#top .p-about .p-about__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px 5%;
  }
}
#top .p-about .p-about__list li {
  padding-top: 30px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li {
    width: 34.7639484979%;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li:nth-child(1) {
    width: 49.356223176%;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li:nth-child(2) {
    width: 42.0600858369%;
    margin-top: 120px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li:nth-child(3) {
    width: 63.9484978541%;
    margin-left: 14.5%;
  }
}
#top .p-about .p-about__num {
  width: 82px;
  height: 77px;
  padding-bottom: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: center/contain no-repeat url(../img/bg_point.png);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #716730;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#top .p-about .p-about__num span {
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: #716730;
}
#top .p-about .p-about__img {
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  #top .p-about .p-about__img {
    margin-bottom: 5px;
  }
}
#top .p-about .p-about__desc {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.625;
}
@media only screen and (min-width: 992px) {
  #top .p-about .p-about__desc {
    font-size: 20px;
    line-height: 1.5;
  }
}
#top .p-about .p-about__bg--01 {
  width: 460px;
  position: absolute;
  bottom: -95px;
  left: -499px;
  z-index: -1;
  display: none;
}
@media only screen and (min-width: 992px) {
  #top .p-about .p-about__bg--01 {
    display: block;
  }
}
#top .p-about .p-about__bg--02 {
  width: 237px;
  position: absolute;
  bottom: 35px;
  right: -45px;
  z-index: -1;
  display: none;
}
@media only screen and (min-width: 992px) {
  #top .p-about .p-about__bg--02 {
    display: block;
  }
}
#top .p-medical {
  padding: 80px 0;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-medical {
    padding: 90px 0 130px;
  }
}
#top .p-medical::before {
  content: "";
  width: 100%;
  height: 468px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: center/cover no-repeat url(../img/bg_medical.webp);
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  #top .p-medical::before {
    display: none;
  }
}
#top .p-medical .c-ttl {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .c-ttl {
    margin-bottom: 45px;
  }
}
#top .p-medical .p-medical__wrap {
  margin-bottom: 15px;
  padding: 15px 20px;
  background-color: #fff5ce;
  border-radius: 30px;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__wrap {
    margin-bottom: 55px;
    padding: 40px 50px 50px;
  }
}
#top .p-medical .p-medical__img {
  max-width: 460px;
  width: 75%;
  margin: 0 auto 50px;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__img {
    margin-bottom: 95px;
  }
}
#top .p-medical .p-medical__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
@media only screen and (min-width: 576px) {
  #top .p-medical .p-medical__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__list {
    gap: 23px 20px;
  }
}
#top .p-medical .p-medical__list li {
  width: 100%;
  padding-left: 20px;
  line-height: 2.1428571429;
  border-bottom: 1px solid #eae1c3;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__list li {
    padding: 5px 0 5px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.875;
  }
}
#top .p-medical .p-medical__list li::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #f2b25a;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__list li::before {
    top: 13px;
  }
}
#top .p-medical .p-medical__list li img {
  width: 50px;
  margin: 0 auto;
}
#top .p-medical .p-medical__list li span {
  margin-top: 5px;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #fff;
  display: block;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__list li span {
    font-size: 18px;
    line-height: 1.8888888889;
  }
}
#top .p-medical .p-medical__list li span.un-txt {
  font-size: 16px;
  line-height: 1.5;
}
#top .p-medical .p-medical__line {
  margin: 35px 0 40px;
  border: none;
  border-top: 1px solid #ddd1a4;
  height: 1px;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__line {
    margin: 27px 0 28px;
  }
}
#top .p-medical .p-medical__other {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.9166666667;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__other {
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
#top .p-medical .p-medical__other span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
#top .p-medical .p-medical__other span::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffeb7c;
  z-index: -1;
}
#top .p-message {
  padding: 55px 0 75px;
  background-color: #fff4ed;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-message {
    padding: 5px 0 75px;
  }
}
#top .p-message::before {
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  background-color: #fff4ed;
  -webkit-clip-path: ellipse(50% 100% at 50% 100%);
          clip-path: ellipse(50% 100% at 50% 100%);
}
@media only screen and (min-width: 992px) {
  #top .p-message::before {
    height: 100px;
    top: -99px;
  }
}
#top .p-message .c-ttl {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) {
  #top .p-message .c-ttl {
    margin-top: -20px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-message .l-column {
    max-width: 830px;
    margin: 0 auto;
  }
}
#top .p-message .p-message__txt {
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  #top .p-message .p-message__txt {
    margin-bottom: 15px;
  }
}
#top .p-message .p-message__name {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.875;
  text-align: right;
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  #top .p-message .p-message__name {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-message .p-message__name {
    font-size: 20px;
    line-height: 1.5;
  }
}
#top .p-message .p-message__name::after {
  content: attr(data-name);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  color: #de8047;
}
@media only screen and (min-width: 992px) {
  #top .p-message .p-message__name::after {
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
#top .p-message .p-message__info {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media only screen and (min-width: 576px) {
  #top .p-message .p-message__info {
    align-items: baseline;
    flex-direction: row;
  }
}
#top .p-message .p-message__position {
  margin-right: 10px;
  font-size: 14px;
  line-height: 1.8571428571;
}
#top .p-access {
  padding: 80px 0 40px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-access {
    padding: 45px 0 50px;
  }
}
#top .p-access::before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255, 244, 237) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-access .l-container {
    max-width: 830px;
  }
}
#top .p-access .c-ttl {
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) {
  #top .p-access .c-ttl {
    margin-bottom: 60px;
  }
}
#top .p-access .p-access__table {
  width: 100%;
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__table {
    margin-top: 50px;
  }
}
#top .p-access .p-access__table th,
#top .p-access .p-access__table td {
  text-align: center;
  vertical-align: middle;
}
#top .p-access .p-access__table th {
  width: 11.1666666667%;
  padding: 10px 0;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #fff;
  background-color: #f4988e;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__table th {
    width: 12.3333333333%;
  }
}
#top .p-access .p-access__table th:nth-child(1) {
  width: 33%;
  border-radius: 10px 0 0 10px;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__table th:nth-child(1) {
    width: 26%;
  }
}
#top .p-access .p-access__table th:last-child {
  border-radius: 0 10px 10px 0;
}
#top .p-access .p-access__table td {
  padding: 5px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #f2b25a;
  border-bottom: 1px solid #d5d5d5;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__table td {
    padding: 15px 0;
    font-size: 20px;
    line-height: 1.5;
  }
}
#top .p-access .p-access__table td:first-child {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: normal;
  line-height: 2.1428571429;
  color: #746957;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__table td:first-child {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6666666667;
  }
}
#top .p-access .p-access__table td span {
  color: #746957;
}
#top .p-access .p-access__table td span.time {
  font-size: 13px;
  line-height: 1.5384615385;
  color: #f2b25a;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__table td span.time {
    font-size: 16px;
  }
}
#top .p-access .p-access__notice {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5714285714;
  color: #746957;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__notice {
    font-size: 16px;
    line-height: 1.875;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-access .p-access__links {
    display: flex;
    gap: 40px;
  }
}
#top .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) {
  #top .p-access .p-access__link {
    font-size: 30px;
    line-height: 1.0666666667;
  }
}
@media only screen and (max-width: 575px) {
  #top .p-access .p-access__link + .p-access__link {
    margin-top: 10px;
  }
}
#top .p-access .p-access__link span {
  color: #158d96;
}
#top .p-access .p-access__map {
  width: 100%;
  height: 245px;
  margin-bottom: 10px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__map {
    height: 415px;
    margin-bottom: 10px;
  }
}
#top .p-access .p-access__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top .p-access .p-access__address {
  font-size: 14px;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  #top .p-access .p-access__address {
    font-size: 16px;
    line-height: 1.875;
  }
}
#top .p-access .p-access__label {
  margin-bottom: 5px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  background-color: #ffdf58;
  border-radius: 30px;
  display: inline-block;
}
#top .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) {
  #top .p-access .p-access__list li {
    line-height: 2.1428571429;
  }
}
#top .p-access .p-access__list li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #ffdcc6;
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */