@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;
  font-weight: 500;
  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: 80px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  main {
    margin-top: 130px;
  }
}

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;
  position: relative;
}
@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: 80px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s ease-in-out;
  background-color: rgba(255, 244, 237, 0.95);
}
@media only screen and (min-width: 992px) {
  .l-header {
    height: 130px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}
.l-header__inner {
  height: 100%;
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-header__inner {
    padding: 25px 0 0 55px;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.l-header__ttl {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 2.6;
  color: #a89a91;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 10px;
}
@media only screen and (min-width: 992px) {
  .l-header__ttl {
    font-size: 12px;
    line-height: 2.5;
    right: initial;
    left: 30px;
  }
}
.l-header__logo img {
  width: 84px;
}
@media only screen and (min-width: 992px) {
  .l-header__logo img {
    width: 128px;
  }
}
.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: #f5b284;
  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;
  margin-top: 20px;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  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: #fff;
  -webkit-transition: inherit;
  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: #fff;
  content: "";
  -webkit-transition: inherit;
  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 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fff;
}
.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);
  clip-path: inset(50%);
  margin: -1px;
}
@media only screen and (max-width: 991px) {
  .l-header__nav {
    height: calc(100vh - 80px);
    padding: 0 15px 140px;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    background-color: #fcf5ce;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav {
    padding: 0 30px 20px 55px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column-reverse;
    border-radius: 60px 0 0 60px;
    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 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: 24px 0;
  font-size: 20px;
  line-height: 1.9;
  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__nav .l-header__list li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffdf58;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
  }
  .l-header__nav .l-header__list li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media only screen and (max-width: 575px) {
  .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, #d1b950, #d1b950 1px, transparent 1px, transparent 100%);
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: 6px 2px;
  }
}
.l-header__links {
  max-width: 345px;
  /*margin: 0 auto;*/
  display: flex;
  flex-direction: column;
  gap: 20px;
	}
.l-header__links .note{
	display: block;
  font-size: 12px;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) {
  .l-header__links {
    max-width: initial;
    margin-bottom: 5px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
}
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 15px 0;
  background-color: #faf3ef;
}
@media only screen and (min-width: 992px) {
  .l-footer {
    padding: 50px 50px 0;
  }
}
.l-footer .l-footer__logo {
  width: 121px;
  margin: 0 auto 40px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__logo {
    width: 145px;
    margin: initial;
    margin-left: 3.5%;
  }
  .l-footer .l-footer__logo img {
    width: 100%;
  }
}
.l-footer .l-footer__links {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer .l-footer__links .note{
	display: block;
  font-size: 12px;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__links {
    margin-bottom: 15px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__wrap {
    padding-right: 50px;
  }
}
.l-footer .l-footer__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 23px;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__list {
    flex-direction: row;
    gap: 30px;
  }
}
.l-footer .l-footer__list li a {
  font-weight: 700;
  color: #333;
  display: inline-block;
}
.l-footer .l-footer__list--sub {
  margin-top: 30px;
  gap: 0px;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__list--sub {
    margin-top: 10px;
    gap: 30px;
  }
}
.l-footer .l-footer__list--sub li a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.7142857143;
  text-align: center;
  color: #848484;
}
.l-footer .l-footer__copyright {
  width: 100vw;
  margin: 30px 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: 40px;
    padding: 5px 0;
    font-size: 12px;
    line-height: 2.5;
  }
}

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

.l-access {
  padding: 80px 0 40px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-access {
    padding: 100px 0 50px;
  }
}
.l-access .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  .l-access .c-ttlWrap {
    margin-bottom: 40px;
  }
}
.l-access__table {
  width: 100%;
  margin-top: 35px;
}
@media only screen and (min-width: 992px) {
  .l-access__table {
    margin-top: 50px;
  }
}
.l-access__table th,
.l-access__table td {
  text-align: center;
  vertical-align: middle;
}
.l-access__table th {
  width: 12.5%;
  padding: 10px 0;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #fff;
  background-color: #ffb284;
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .l-access__table th {
    width: 12%;
  }
}
.l-access__table th:nth-child(1) {
  width: 25%;
  border-radius: 10px 0 0 10px;
}
.l-access__table th:last-child {
  border-radius: 0 10px 10px 0;
}
@media only screen and (max-width: 575px) {
  .l-access__table th:last-child {
    width: 15%;
  }
}
.l-access__table td {
  padding: 10px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  color: #f8d083;
  border-bottom: 1px solid #d5d5d5;
}
@media only screen and (min-width: 992px) {
  .l-access__table td {
    padding: 15px 0;
    font-size: 20px;
    line-height: 1.5;
  }
}
.l-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) {
  .l-access__table td:first-child {
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6666666667;
  }
}
.l-access__notice {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media only screen and (min-width: 576px) {
  .l-access__links {
    display: flex;
    gap: 40px;
  }
}
.l-access__link {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .l-access__link {
    font-size: 30px;
    line-height: 1.0666666667;
  }
}
@media only screen and (max-width: 575px) {
  .l-access__link + .l-access__link {
    margin-top: 10px;
  }
}
.l-access__link span {
  color: #158d96;
}
.l-access__map {
  width: 100%;
  height: 245px;
  margin-bottom: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-access__map {
    width: 57.5%;
    height: 405px;
    margin-bottom: 0;
  }
}
.l-access__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-access__address {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  .l-access__address {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.875;
  }
}
.l-access__label {
  margin-bottom: 5px;
  padding: 2px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  background-color: #ffdf58;
  border-radius: 30px;
  display: inline-block;
}
.l-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) {
  .l-access__list li {
    line-height: 2.1428571429;
  }
}
.l-access__list li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #ffdcc6;
  border-radius: 50%;
}
.l-access__notice {
  margin-top: 10px;
}

.l-mv {
  position: relative;
}
.l-mv::before {
  content: "";
  width: 100%;
  height: calc(100% - 7px);
  background-color: #fff4ed;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .l-mv::before {
    height: calc(100% - 35px);
  }
}
.l-mv::after {
  content: "";
  width: 100%;
  aspect-ratio: 375/25;
  position: absolute;
  left: 0;
  top: calc(100% - 7px);
  background: center/cover no-repeat url(../img/common/bg_mv_sp.png);
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .l-mv::after {
    background-image: url(../img/common/bg_mv.png);
    top: calc(100% - 35px);
  }
}
.l-mv .l-mv__ttl {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.15em;
  line-height: 1.25;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .l-mv .l-mv__ttl {
    font-size: 36px;
    line-height: 1;
    top: 50%;
    left: 100px;
  }
}
.l-mv .l-mv__ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-color: #ffe86c;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.l-mv .l-mv__img {
  width: calc(100% - 70px);
  margin-left: auto;
}
@media only screen and (min-width: 992px) {
  .l-mv .l-mv__img {
    width: calc(100% - 400px);
  }
}
.l-mv .l-mv__img img {
  width: 100%;
}

.l-breadcrumb {
  max-width: 1536px;
  margin: 0 auto;
  padding: 5px 30px;
}
.l-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-breadcrumb__item {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: normal;
  line-height: 2.5;
  color: #959595;
}
.l-breadcrumb__item:not(:first-child)::before {
  content: ">";
  margin: 0 2px;
  color: #999;
  vertical-align: baseline;
  transform: translateY(-1px);
  display: inline-block;
}
.l-breadcrumb__item a {
  color: #959595;
}
.l-breadcrumb__link {
  text-decoration: none;
  transition: opacity 0.3s;
}
.l-breadcrumb__link:hover {
  opacity: 0.7;
}

.l-doctor {
  padding: 80px 0 105px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-doctor {
    padding: 105px 0 200px;
  }
}
.l-doctor .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  .l-doctor .c-ttlWrap {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-column {
    max-width: 830px;
    margin: 0 auto;
  }
}
.l-doctor .c-btn {
  margin: 40px auto 0;
}
@media only screen and (min-width: 992px) {
  .l-doctor .c-btn {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .l-doctor .l-doctor__imgWrap {
    width: calc(100% - 40px);
    margin: 0 auto 35px;
  }
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__imgWrap {
    width: 38.5%;
  }
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__txtWrap {
    width: 55.5%;
  }
}
.l-doctor .l-doctor__txt {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  .l-doctor .l-doctor__txt {
    font-size: 16px;
    line-height: 1.875;
  }
}
.l-doctor .l-doctor__name {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
.l-doctor .l-doctor__name::after {
  content: attr(data-name);
  margin-left: 10px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  color: #de8047;
}
.l-doctor .l-doctor__info {
  margin-top: 35px;
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 2%;
  }
}
@media only screen and (min-width: 992px) {
  .l-doctor .l-doctor__info {
    margin-top: 50px;
  }
}
.l-doctor .l-doctor__wrap {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__wrap {
    width: 49%;
  }
}
@media only screen and (min-width: 992px) {
  .l-doctor .l-doctor__wrap {
    padding: 25px 30px;
  }
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__wrap:first-child {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__wrap.w-100 {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .l-doctor .l-doctor__wrap + .l-doctor__wrap {
    margin-top: 20px;
  }
}
.l-doctor .l-doctor__label {
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #de8047;
}
@media only screen and (min-width: 992px) {
  .l-doctor .l-doctor__label {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 1.6666666667;
  }
}
.l-doctor .l-doctor__table {
  width: 100%;
  border-collapse: collapse;
}
.l-doctor .l-doctor__heading {
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .l-doctor .l-doctor__heading {
    display: block;
    line-height: 2.1428571429;
  }
}
@media only screen and (max-width: 575px) {
  .l-doctor .l-doctor__data {
    margin-top: -7px;
    display: block;
  }
}
.l-doctor .l-doctor__list li:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .l-doctor .l-doctor__list li:not(:last-child) {
    margin-bottom: 0;
  }
}

.l-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .l-pagination {
    margin-top: 80px;
  }
}
.l-pagination .page-numbers {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #333;
  display: inline-block;
}
.l-pagination .page-numbers.prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: #de8047;
  position: relative;
}
.l-pagination .page-numbers.prev::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}
.l-pagination .page-numbers.next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: #de8047;
  position: relative;
}
.l-pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}
.l-pagination .page-numbers.current {
  color: #de8047;
}

.l-fixed__nav {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #faf3ef;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s, visibility 0.3s;
}
.l-fixed__nav .note{
	display: block;
  font-size: 12px;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  .l-fixed__nav {
    display: none;
  }
}
.l-fixed__nav .l-fixed__nav__btn{
  width: calc(50% - 1px);
  text-align: center;
  background-color: #ffb284;
  color: #fff;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 700;
}
.l-fixed__nav .l-fixed__nav__btn:nth-child(2) {
  background-color: #ffdf58;
  color: #333;
  padding: 15px 0;
}
/*.l-fixed__nav__btn.no-reserve {
  width: 100%;
  display: block;
  text-align: center;
  background: #fff;         
  color: #333;             
  font-size: 14px;
  font-weight: bold;
  border-top: #ffb284;
}*/
.c-btn {
  max-width: 300px;
  width: 100%;
  padding: 10px 0;
  background: #ffb284;
  border: 4px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  display: block;
  position: relative;
}
.c-btn::before {
  content: "";
  width: 15px;
  aspect-ratio: 15/11.35;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}

.c-btn__tel {
  /*padding: 11px 25px;*/
  padding: 5px 25px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 27px;
  display: block;
}
.c-btn__tel.insta{
	background-color: transparent;
}
.c-btn__tel img{
	margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .c-btn__tel {
    max-height: 54px;
    /*padding: 12px 15px;*/
	padding: 5px 15px;
    font-size: 18px;
    letter-spacing: 0.1em;
    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;
  }
}
@media only screen and (min-width: 992px) {
  .c-btn__tel--header {
    padding: 4px 23px;
  }
}

.c-btn__link {
  padding: 12px 25px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3636363636;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 27px;
  display: block;
}
.c-btn__link.insta{
	background-color:transparent;
}
@media only screen and (min-width: 992px) {
  .c-btn__link {
    padding: 12px 25px;
    font-size: 20px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 991px) {
  .c-btn__link--header {
    color: #333;
    background-color: #ffdf58;
  }
}
@media only screen and (min-width: 992px) {
  .c-btn__link--header {
    /*padding: 5px 28px;*/
	padding: 12px 28px;
  }
}

.c-btn-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .c-btn-nav {
    gap: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .c-btn-nav {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .c-btn-nav .c-btn {
    max-width: 250px;
  }
}
.c-btn-nav__item {
  width: 26px;
  height: 26px;
  text-decoration: none;
  background-color: #de8047;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
}
.c-btn-nav__item::after {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}
@media only screen and (min-width: 992px) {
  .c-btn-nav__item::after {
    right: 20px;
  }
}
.c-btn-nav__item--prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.c-btn-nav__item span {
  visibility: hidden;
}

.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--sec {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .c-ttl--sec {
    font-size: 34px;
    line-height: 1.5294117647;
  }
}
.c-ttl--sec span {
  display: inline-block;
  position: relative;
}
.c-ttl--sec span::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #ffe86c;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.c-ttlWrap {
  display: flex;
  flex-direction: column-reverse;
}
.c-ttlWrap .c-ttl {
  padding-top: 32px;
  padding-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .c-ttlWrap .c-ttl {
    font-size: 36px;
    line-height: 1;
  }
}
.c-ttlWrap .c-ttl::before {
  content: "";
  width: 67px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: center/contain no-repeat url(../img/common/icon_01.svg);
}
.c-ttlWrap .c-ttl--en {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #158d96;
}
@media only screen and (min-width: 992px) {
  .c-ttlWrap .c-ttl--en {
    margin-bottom: 5px;
    line-height: 1.5;
  }
}

#top .p-mv {
  position: relative;
}
#top .p-mv .p-mv__img {
  position: relative;
  z-index: 2;
}
#top .p-mv .p-mv__wrap {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__wrap {
    width: 393px;
    height: 393px;
    top: 50%;
  }
}
#top .p-mv .p-mv__wrap::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #ffdcc6;
  border-radius: 50%;
  z-index: -1;
}
#top .p-mv .p-mv__ttl {
  padding-top: 20px;
  font-size: 20px;
  letter-spacing: 0.15em;
  line-height: 1.3870967742;
  color: #333;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__ttl {
    padding-top: 30px;
    font-size: 30px;
    line-height: 1.380952381;
  }
}
#top .p-mv .p-mv__ttl span {
  font-size: 30px;
  line-height: 1.1621621622;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__ttl span {
    font-size: 42px;
    line-height: 1.16;
  }
}
#top .p-mv .p-mv__ttl::before {
  content: "";
  width: 51px;
  height: 11px;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: center/contain no-repeat url(../img/common/icon_01.svg);
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__ttl::before {
    width: 67px;
    height: 15px;
  }
}
#top .p-mv .p-mv__preview {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.6666666667;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__preview {
    margin-top: 30px;
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 1.6363636364;
  }
}
#top .p-mv .p-mv__preview::before {
  content: "";
  width: 240px;
  height: 3px;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%);
  background-color: #ffdcc6;
}
@media only screen and (min-width: 992px) {
  #top .p-mv .p-mv__preview::before {
    width: 300px;
    top: -15px;
  }
}
#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 {
    font-size: 36px;
  }
}
#top .p-news {
  padding: 80px 0 40px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-news {
    padding: 100px 0 0;
  }
}
#top .p-news::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff4ed;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-news::before {
    height: calc(100% - 50px);
  }
}
#top .p-news::after {
  content: "";
  width: 100%;
  aspect-ratio: 375/25;
  position: absolute;
  top: calc(100% - 50px);
  background: center/cover no-repeat url(../img/common/bg_mv_sp.png);
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-news::after {
    background-image: url(../img/common/bg_mv.png);
  }
}
#top .p-news .c-btn {
  margin: 40px auto 0;
}
@media only screen and (min-width: 992px) {
  #top .p-news .c-btn {
    margin-top: 45px;
  }
}
#top .p-news .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  #top .p-news .c-ttlWrap {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-news .p-news__list {
    max-width: 830px;
    margin: 0 auto;
  }
}
#top .p-news .p-news__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
}
@media only screen and (min-width: 992px) {
  #top .p-news .p-news__item {
    padding: 13px 25px 13px 30px;
    border-radius: 30px;
  }
}
#top .p-news .p-news__item:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  #top .p-news .p-news__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
#top .p-news .p-news__link {
  color: #333;
}
@media only screen and (min-width: 992px) {
  #top .p-news .p-news__link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
#top .p-news .p-news__date {
  color: #ea9f28;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  #top .p-news .p-news__date {
    width: 90px;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-news .p-news__ttl {
    width: calc(100% - 90px);
  }
}
#top .p-news .p-news__img {
  width: 345px;
  position: absolute;
  top: 21%;
  left: 50%;
  transform: translateX(-228%);
}
#top .p-news .p-news__img--sec {
  width: 262px;
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translateX(188%);
}
#top .p-reserve {
  padding: 60px 0 40px;
}
@media only screen and (min-width: 992px) {
  #top .p-reserve {
    padding: 150px 0 50px;
  }
}
#top .p-reserve .p-reserve__ttlWrap {
  margin-bottom: 80px;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  #top .p-reserve .p-reserve__ttlWrap {
    margin-bottom: 110px;
  }
}
#top .p-reserve .p-reserve__ttl {
  display: inline-block;
  position: relative;
}
#top .p-reserve .p-reserve__ttl span {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  position: absolute;
  top: calc(100% - 18px);
  left: 0;
}
@media only screen and (min-width: 992px) {
  #top .p-reserve .p-reserve__ttl span {
    font-size: 24px;
    line-height: 1.25;
    top: calc(100% - 15px);
  }
}
#top .p-reserve .p-reserve__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
}
@media only screen and (min-width: 576px) {
  #top .p-reserve .p-reserve__list {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}
#top .p-reserve .p-reserve__item {
  position: relative;
}
@media only screen and (min-width: 576px) {
  #top .p-reserve .p-reserve__item {
    width: calc(50% - 10px);
  }
}
#top .p-reserve .p-reserve__num {
  width: 57px;
  height: 54px;
  padding-bottom: 5px;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: center/contain no-repeat url(../img/top/bg_point.png);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #716730;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  #top .p-reserve .p-reserve__num {
    width: 82px;
    height: 77px;
    font-size: 30px;
    top: -38px;
  }
}
#top .p-reserve .p-reserve__txt {
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
#top .p-about {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-about {
    padding: 55px 0 50px;
  }
}
#top .p-about::before {
  content: "";
  width: 100%;
  height: 465px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-about::before {
    height: 425px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .l-column {
    flex-direction: row-reverse;
  }
}
#top .p-about .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 576px) {
  #top .p-about .c-ttlWrap {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-about .c-ttlWrap {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .c-ttlWrap .c-ttl::after {
    left: 0;
    transform: none;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .c-ttlWrap .c-ttl--en {
    text-align: left;
  }
}
#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%;
  }
}
@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: 35px;
}
@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: 35px 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: 40.5%;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li:nth-child(1) {
    width: 50%;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li:nth-child(2) {
    margin-top: 205px;
  }
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__list li:nth-child(3) {
    margin-left: 17%;
  }
}
#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/top/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: 15px;
  }
}
#top .p-about .p-about__desc {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  #top .p-about .p-about__desc {
    font-size: 16px;
    line-height: 1.875;
  }
}
#top .p-about .p-about__bg {
  width: 136%;
  position: absolute;
  right: 48.5%;
  transform: translateX(50%);
  bottom: 15px;
  z-index: -1;
}
@media only screen and (min-width: 576px) {
  #top .p-about .p-about__bg {
    width: 1657px;
    right: 54%;
    transform: translateX(50%);
    bottom: 5px;
  }
}
#top .p-gallery {
  padding: 40px 0;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-gallery {
    padding: 45px 0 100px;
  }
}
#top .p-gallery::after {
  content: "";
  width: 100%;
  height: 250px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff2bc;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  #top .p-gallery::after {
    height: 430px;
  }
}
#top .p-gallery .c-ttl--sec {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  #top .p-gallery .c-ttl--sec {
    margin-bottom: 90px;
  }
}
#top .p-gallery .c-btn {
  margin: 40px auto 0;
}
@media only screen and (min-width: 992px) {
  #top .p-gallery .c-btn {
    margin-top: 90px;
  }
}
#top .p-gallery .swiper {
  overflow: visible;
}
#top .p-medical {
  padding: 80px 0;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-medical {
    padding: 100px 0;
  }
}
#top .p-medical .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .c-ttlWrap {
    margin-bottom: 35px;
  }
}
#top .p-medical .p-medical__wrap {
  margin-bottom: 35px;
  padding: 40px 20px;
  background-color: #fff5ce;
  border-radius: 30px;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__wrap {
    margin-bottom: 50px;
    padding: 50px 50px;
  }
}
#top .p-medical .p-medical__ttl {
  margin-bottom: 20px;
  padding: 7px 40px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  text-align: center;
  border-radius: 22px;
  background-color: #ffdf58;
  display: inline-block;
}
#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: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}
@media only screen and (min-width: 576px) {
  #top .p-medical .p-medical__list {
    padding: 0 50px;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px 40px;
  }
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__list.un-center {
    justify-content: center;
  }
}
#top .p-medical .p-medical__list li {
  padding-left: 20px;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__list li {
    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: 7px;
  left: 0;
  background-color: #d1b950;
  border-radius: 50%;
}
#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: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  #top .p-medical .p-medical__other {
    font-size: 24px;
    letter-spacing: 0.15em;
    line-height: 1.25;
  }
}
#top .p-medical .p-medical__other span {
  border-bottom: 3px solid #ffdf58;
}
#top .p-column {
  padding: 80px 0;
  background-color: #fff4ed;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #top .p-column {
    padding: 5px 0 100px;
  }
}
#top .p-column::before {
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  background-color: #fff4ed;
  clip-path: ellipse(50% 100% at 50% 100%);
}
@media only screen and (min-width: 992px) {
  #top .p-column::before {
    height: 100px;
    top: -99px;
  }
}
#top .p-column .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  #top .p-column .c-ttlWrap {
    margin-bottom: 35px;
  }
}
#top .p-column .c-btn {
  margin: 35px auto 0;
}
@media only screen and (min-width: 992px) {
  #top .p-column .c-btn {
    margin-top: 15px;
  }
}
#top .p-column .p-column__list {
  width: calc(100% - 25px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 576px) {
  #top .p-column .p-column__list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px 2%;
  }
}
#top .p-column .p-column__item {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  #top .p-column .p-column__item {
    width: 32%;
  }
}
#top .p-column .p-column__img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 320/225;
}
#top .p-column .p-column__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top .p-column .p-column__ttl {
  margin-top: 10px;
  color: #333;
}

#about .p-about {
  padding: 40px 0 110px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #about .p-about {
    padding: 65px 0 165px;
  }
}
@media only screen and (min-width: 576px) {
  #about .p-about .l-column {
    flex-direction: row-reverse;
  }
}
#about .p-about .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 576px) {
  #about .p-about .c-ttlWrap {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) {
  #about .p-about .c-ttlWrap {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) {
  #about .p-about .c-ttlWrap .c-ttl::after {
    left: 0;
    transform: none;
  }
}
@media only screen and (min-width: 576px) {
  #about .p-about .c-ttlWrap .c-ttl--en {
    text-align: left;
  }
}
#about .p-about .p-about__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 75px;
}
@media only screen and (min-width: 576px) {
  #about .p-about .p-about__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 90px 5%;
  }
}
#about .p-about .p-about__list li {
  padding-top: 30px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  #about .p-about .p-about__list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
#about .p-about .p-about__list li:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -40px;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 9px 3px;
}
@media only screen and (min-width: 576px) {
  #about .p-about .p-about__list li:nth-child(even) {
    flex-direction: row-reverse;
  }
}
#about .p-about .p-about__num {
  width: 82px;
  height: 77px;
  padding-bottom: 5px;
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 2;
  background: center/contain no-repeat url(../img/top/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;
}
#about .p-about .p-about__num span {
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: #716730;
}
#about .p-about .p-about__imgWrap {
  margin-bottom: 8px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  #about .p-about .p-about__imgWrap {
    width: 49%;
  }
}
@media only screen and (min-width: 576px) {
  #about .p-about .p-about__txtWrap {
    width: 46%;
  }
}
#about .p-about .p-about__ttl {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #de8047;
}
@media only screen and (min-width: 992px) {
  #about .p-about .p-about__ttl {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.25;
  }
}
#about .p-about .p-about__desc {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  #about .p-about .p-about__desc {
    font-size: 16px;
    line-height: 1.875;
  }
}
#about .l-doctor {
  padding: 40px 0 80px;
  background-color: #fff8dd;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #about .l-doctor {
    padding: 50px 0 100px;
  }
}
#about .l-doctor::before {
  content: "";
  width: 100%;
  aspect-ratio: 375/30;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: center/contain no-repeat url(../img/about/bg_doctor_sp.png);
}
@media only screen and (min-width: 576px) {
  #about .l-doctor::before {
    aspect-ratio: 1536/70;
    background-image: url(../img/about/bg_doctor.png);
  }
}
#about .p-gallery {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  #about .p-gallery {
    padding: 105px 0 100px;
  }
}
#about .p-gallery.bg {
  background-color: #fff4ed;
}
#about .p-gallery .c-ttlWrap {
  margin-bottom: 25px;
}
@media only screen and (min-width: 576px) {
  #about .p-gallery .c-ttlWrap {
    margin-bottom: 35px;
  }
}
#about .p-gallery .p-gallery__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  #about .p-gallery .p-gallery__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px 5%;
  }
}
@media only screen and (min-width: 992px) {
  #about .p-gallery .p-gallery__list {
    gap: 50px 5%;
  }
}
@media only screen and (min-width: 576px) {
  #about .p-gallery .p-gallery__list li {
    width: 47.5%;
  }
}
#about .p-gallery .p-gallery__desc {
  margin-top: 6px;
  text-align: center;
}

.p-hours {
  padding: 35px 0 40px;
}
@media only screen and (min-width: 992px) {
  .p-hours {
    padding: 65px 0 80px;
  }
}
.p-hours .l-access__table {
  margin-top: 35px;
}

.p-access {
  padding: 60px 0 70px;
  background-color: #fff8dd;
}
@media only screen and (min-width: 992px) {
  .p-access {
    padding: 100px 0 50px;
  }
}
.p-access .c-ttlWrap {
  margin-bottom: 35px;
}
.p-access .l-container {
  max-width: 830px;
}
.p-access .p-access__map {
  margin-bottom: 20px;
  height: 300px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__map {
    height: 515px;
  }
}
.p-access .p-access__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-access .p-access__address {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__address {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.875;
  }
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__access {
    padding-right: 40px;
  }
}
.p-access .p-access__label {
  margin-bottom: 5px;
  padding: 1px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  background-color: #ffdf58;
  border-radius: 30px;
  display: inline-block;
}
.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 {
    line-height: 2.1428571429;
  }
}
.p-access .p-access__list li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #ffdcc6;
  border-radius: 50%;
}

.p-faq {
  padding-top: 25px;
}
@media only screen and (min-width: 992px) {
  .p-faq {
    padding-top: 50px;
  }
}
.p-faq__group + .p-faq__group {
  margin-top: 50px;
}
@media only screen and (min-width: 992px) {
  .p-faq__group + .p-faq__group {
    margin-top: 85px;
  }
}
.p-faq__ttl {
  margin-bottom: 30px;
  padding: 15px 0;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  position: relative;
}
.p-faq__ttl::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 10px 3px;
}
.p-faq__item + .p-faq__item {
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .p-faq__item + .p-faq__item {
    margin-top: 25px;
  }
}
.p-faq__button {
  position: relative;
  width: 100%;
  padding: 10px 50px 10px 35px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-faq__button {
    padding: 20px 80px 20px 50px;
  }
}
.p-faq__button::before {
  content: "Q.";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #de8047;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media only screen and (min-width: 992px) {
  .p-faq__button::before {
    top: 20px;
    left: 20px;
  }
}
.p-faq__button.is-show .p-faq__btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__btn {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 10px;
  top: 15px;
  border-radius: 50%;
  background-color: #ffb284;
}
@media only screen and (min-width: 992px) {
  .p-faq__btn {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 20px;
  }
}
.p-faq__btn::before, .p-faq__btn::after {
  content: "";
  width: 14px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: transform 0.3s;
}
.p-faq__btn::after {
  width: 1px;
  height: 14px;
}
.p-faq__term {
  background-color: #fff8dd;
  border-radius: 15px;
}
@media only screen and (min-width: 992px) {
  .p-faq__term {
    border-radius: 50px;
  }
}
.p-faq__desc {
  padding: 10px 20px 0 35px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-faq__desc {
    padding: 10px 20px 0 50px;
  }
}
.p-faq__desc::before {
  content: "A.";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #de8047;
  position: absolute;
  left: 10px;
  top: 10px;
}
@media only screen and (min-width: 992px) {
  .p-faq__desc::before {
    left: 20px;
    top: 10px;
  }
}

#medical .p-medical {
  margin-top: -25px;
}
#medical .p-medical .c-btn {
  max-width: initial;
}
@media only screen and (max-width: 575px) {
  #medical .p-medical .c-btn {
    height: 52px;
    padding: 0 10px 0 0;
    font-size: 14px;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  #medical .p-medical .c-btn::before {
    right: 10px;
  }
}
#medical .p-medical .p-medical__group {
  padding: 35px 0 40px;
}
@media only screen and (min-width: 992px) {
  #medical .p-medical .p-medical__group {
    padding: 75px 0;
  }
}
#medical .p-medical .p-medical__group.bg {
  background-color: #fff8dd;
}
#medical .p-medical .p-medical__ttl {
  margin-bottom: 30px;
  padding: 10px 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #medical .p-medical .p-medical__ttl {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
}
#medical .p-medical .p-medical__ttl::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 10px 3px;
}
#medical .p-medical .p-medical__ttl img {
  width: 60px;
}
@media only screen and (min-width: 992px) {
  #medical .p-medical .p-medical__ttl img {
    width: 80px;
  }
}
#medical .p-medical .p-medical__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}
@media only screen and (min-width: 576px) {
  #medical .p-medical .p-medical__list {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px 2%;
  }
}
#medical .p-medical .p-medical__item {
  width: calc(50% - 2.5px);
}
@media only screen and (min-width: 576px) {
  #medical .p-medical .p-medical__item {
    width: 49%;
  }
}
@media only screen and (min-width: 992px) {
  #medical .p-medical .p-medical__item {
    width: 32%;
  }
}
@media only screen and (max-width: 575px) {
  #medical .p-medical .p-medical__item.w-100 {
    width: 100%;
  }
}

.l-content > * {
  margin-top: 25px;
}
@media only screen and (min-width: 992px) {
  .l-content > * {
    margin-top: 35px;
  }
}
.l-content .wp-block-column > :first-child {
  margin-top: 0;
}
.l-content h2 {
  margin-top: 50px;
  padding: 15px 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.1818181818;
  color: #fff;
  background-color: #ffb284;
}
@media only screen and (min-width: 992px) {
  .l-content h2 {
    padding: 5px 20px;
    font-size: 24px;
    letter-spacing: 0.15em;
    line-height: 1.4166666667;
  }
}
.l-content h3 {
  margin-top: 45px;
  margin-bottom: 15px;
  padding: 4px 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.4444444444;
  color: #746957;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-content h3 {
    font-size: 20px;
    line-height: 1.7;
  }
}
.l-content h3::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 9px 3px;
}
.l-content h4 {
  margin-top: 40px;
  margin-bottom: 15px;
  padding-left: 25px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #746957;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-content h4 {
    padding-left: 28px;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.8888888889;
  }
}
.l-content h4::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  left: 0;
  background-color: #ffe86c;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .l-content h4::before {
    top: 10px;
  }
}
.l-content h5 {
  margin-top: 45px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #de8047;
}
@media only screen and (min-width: 992px) {
  .l-content h5 {
    line-height: 1.875;
  }
}
.l-content p {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-content a {
  text-decoration: underline;
}
.l-content sup {
  vertical-align: super;
}
.l-content a.wp-block-button__link {
  text-decoration: none;
}
.l-content ol {
  counter-reset: item;
  list-style-type: none;
}
.l-content ol li {
  padding: 2px 0 2px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.875;
  position: relative;
}
.l-content ol li::before {
  width: 22px;
  height: 22px;
  padding-left: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  counter-increment: item;
  content: counter(item);
  background-color: #ffe86c;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.l-content ol li ol,
.l-content ol li ul {
  margin-top: 0;
  padding-left: 0;
}
.l-content ul li {
  font-size: 16px;
  padding-left: 20px;
  letter-spacing: 0.1em;
  line-height: 1.875;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-content ul li {
    padding-left: 25px;
  }
}
.l-content ul li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #ffb284;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .l-content ul li::before {
    width: 16px;
    height: 16px;
    top: 8px;
  }
}
.l-content ul li ul li::before {
  background-color: #fff;
  border: 1px solid #ffb284;
}
.l-content ul li ol,
.l-content ul li ul {
  margin-top: 0;
}
.l-content ul.c-list-01 li {
  position: relative;
}
.l-content ul.c-list-01 li::before {
  content: "";
  width: 12px;
  height: 6px;
  position: absolute;
  top: 12px;
  left: 0;
  border-bottom: 2px solid #ffb284;
  border-left: 2px solid #ffb284;
  transform: rotate(-40deg);
  background: transparent;
  border-radius: 0;
}
.l-content ul.c-list-01 li ul li::before {
  background: transparent;
  border-top: none;
  border-right: none;
}
.l-content .c-button-01 a {
  min-width: 250px;
  width: 100%;
  padding: 10px 35px 10px 20px;
  background: #ffb284;
  border: 4px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  display: block;
  position: relative;
}
.l-content .c-button-01 a::before {
  content: "";
  width: 15px;
  aspect-ratio: 15/11.35;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}
.l-content .smb-accordion__item__title {
  line-height: 1.6;
  color: #fff;
  background-color: #ffb284;
}
.l-content .smb-accordion__item__body {
  background-color: #fff8dd;
}
.l-content .wp-block-table {
  margin-top: 30px;
}
.l-content .wp-block-table tr:nth-child(even) td {
  background-color: #fff8dd;
}
.l-content .wp-block-table th {
  padding: 12px 10px;
  color: #fff;
  background-color: #ffb284;
  border-color: #bebebe;
}
.l-content .wp-block-table td {
  padding: 24px 10px;
  vertical-align: middle;
  border-color: #bebebe;
}
.l-content .wp-block-table thead {
  border: none;
}

.l-column__list {
  width: calc(100% - 25px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 576px) {
  .l-column__list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 35px 2%;
  }
}
.l-column__item {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .l-column__item {
    width: 32%;
  }
}
.l-column__img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 320/225;
}
.l-column__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-column__ttl {
  margin-top: 10px;
  color: #333;
}

#column .p-column {
  padding-top: 50px;
}
@media only screen and (min-width: 992px) {
  #column .p-column {
    padding-top: 100px;
  }
}

#news .p-news {
  padding-top: 10px;
}
@media only screen and (min-width: 992px) {
  #news .p-news {
    padding-top: 30px;
  }
}
#news .p-news__link {
  padding: 20px 40px 20px 0;
  display: block;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  #news .p-news__link {
    padding: 27px 50px 27px 0;
  }
}
#news .p-news__link::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: #de8047;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#news .p-news__link::after {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}
@media only screen and (min-width: 992px) {
  #news .p-news__link:hover {
    background-color: rgba(222, 128, 71, 0.08);
  }
}
#news .p-news__item {
  position: relative;
}
#news .p-news__item::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 9px 3px;
}
#news .p-news__date {
  color: #ea9f28;
}
#news .p-news__ttl {
  color: #333;
}
#news .p-news__empty {
  padding: 60px 0 20px;
}
@media only screen and (min-width: 992px) {
  #news .p-news__empty {
    padding: 60px 0;
  }
}

#news-single .p-news {
  padding-top: 15px;
}
@media only screen and (min-width: 992px) {
  #news-single .p-news {
    padding-top: 25px;
  }
}
#news-single .p-news__date {
  color: #ea9f28;
}
#news-single .p-news__ttl {
  margin-top: 5px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

#medical-cosme .p-cosme {
  padding-top: 30px;
}
@media only screen and (min-width: 992px) {
  #medical-cosme .p-cosme {
    padding-top: 60px;
  }
}
#medical-cosme .p-cosme__tabs {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  #medical-cosme .p-cosme__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  #medical-cosme .p-cosme__tabs:has(> *:nth-child(4)) {
    justify-content: flex-start;
  }
  #medical-cosme .p-cosme__tabs:has(> *:nth-child(4)) > * {
    width: calc((100% - 40px) / 3);
  }
  #medical-cosme .p-cosme__tabs:not(:has(> *:nth-child(4))) {
    justify-content: center;
  }
  #medical-cosme .p-cosme__tabs:not(:has(> *:nth-child(4))) > * {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (min-width: 992px) {
  #medical-cosme .p-cosme__tabs {
    margin-bottom: 50px;
  }
}
#medical-cosme .p-cosme__tab {
  padding: 11px 0;
  font-weight: 500;
  text-align: center;
  color: #333;
  background-color: #fff8dd;
  border-radius: 10px;
}
#medical-cosme .p-cosme__tab.is-active {
  background-color: #ffe86c;
}
#medical-cosme .p-cosme__list {
  width: calc(100% - 25px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (min-width: 576px) {
  #medical-cosme .p-cosme__list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px 2%;
  }
}
#medical-cosme .p-cosme__item {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  #medical-cosme .p-cosme__item {
    width: 32%;
  }
}
#medical-cosme .p-cosme__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 320/370;
}
#medical-cosme .p-cosme__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#medical-cosme .p-cosme__ttl {
  margin-top: 5px;
  color: #333;
  text-align: center;
}
#medical-cosme .p-cosme__btn {
  width: 100%;
  margin-top: 5px;
  padding: 5px 0;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border: none;
  border-radius: 40px;
  display: block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #medical-cosme .p-cosme__btn {
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}
#medical-cosme .p-cosme__btn::after {
  content: "";
  width: 15px;
  aspect-ratio: 15/11.35;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/common/icon_arrow_right.svg);
}

#medical-cosme-detail .p-cosme {
  padding-top: 30px;
}
@media only screen and (min-width: 992px) {
  #medical-cosme-detail .p-cosme {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 576px) {
  #medical-cosme-detail .p-cosme .l-column {
    justify-content: flex-end;
    gap: 5%;
  }
}
#medical-cosme-detail .p-cosme__category {
  min-width: 320px;
  margin-bottom: 30px;
  padding: 11px 0;
  font-weight: 500;
  text-align: center;
  color: #333;
  background-color: #ffe86c;
  border-radius: 10px;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  #medical-cosme-detail .p-cosme__category {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  #medical-cosme-detail .p-cosme__imgWrap {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) {
  #medical-cosme-detail .p-cosme__imgWrap {
    width: 40.5%;
  }
}
@media only screen and (min-width: 576px) {
  #medical-cosme-detail .p-cosme__txtWrap {
    width: 46%;
  }
}
#medical-cosme-detail .p-cosme__ttl {
  margin-bottom: 25px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
}
#medical-cosme-detail .p-cosme__ttl::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1.5px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 8px 3px;
}
#medical-cosme-detail .p-cosme__price {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
}
#medical-cosme-detail .p-cosme__tax {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
}
#medical-cosme-detail .p-cosme__desc {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  #medical-cosme-detail .p-cosme__desc {
    margin-top: 40px;
  }
}
#medical-cosme-detail .p-cosme__product {
  margin-top: 60px;
  padding: 60px 0;
  background-color: #fff8dd;
}
@media only screen and (min-width: 992px) {
  #medical-cosme-detail .p-cosme__product {
    margin-top: 100px;
    padding: 100px 0;
  }
}
#medical-cosme-detail .p-cosme .c-ttlWrap {
  margin-bottom: 15px;
}
#medical-cosme-detail .p-cosme__table th,
#medical-cosme-detail .p-cosme__table td {
  position: relative;
}
@media only screen and (max-width: 575px) {
  #medical-cosme-detail .p-cosme__table th,
  #medical-cosme-detail .p-cosme__table td {
    display: block;
  }
}
#medical-cosme-detail .p-cosme__table th::after,
#medical-cosme-detail .p-cosme__table td::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1.5px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 8px 3px;
}
#medical-cosme-detail .p-cosme__table th {
  min-width: 115px;
  padding-top: 15px;
  font-weight: 500;
  text-align: left;
  color: #ea9f28;
}
@media only screen and (min-width: 576px) {
  #medical-cosme-detail .p-cosme__table th {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 575px) {
  #medical-cosme-detail .p-cosme__table th::after {
    display: none;
  }
}
#medical-cosme-detail .p-cosme__table td {
  padding-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  #medical-cosme-detail .p-cosme__table td {
    padding: 25px 0;
  }
}
#medical-cosme-detail .p-cosme .c-btn {
  margin: 60px auto 0;
}
@media only screen and (min-width: 992px) {
  #medical-cosme-detail .p-cosme .c-btn {
    margin-top: 80px;
  }
}

#privacy .p-privacy {
  padding-top: 40px;
}
@media only screen and (min-width: 992px) {
  #privacy .p-privacy {
    padding-top: 55px;
  }
}
#privacy .p-privacy__ttl {
  padding-left: 20px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.5;
  color: #de8047;
  position: relative;
}
#privacy .p-privacy__ttl::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 13px;
  left: 0;
  background-color: #de8047;
  border-radius: 50%;
}
#privacy .p-privacy__ttl:not(:first-child) {
  margin-top: 35px;
}
#privacy .p-privacy__txt, #privacy .p-privacy__list li {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
#privacy .p-privacy__txt a, #privacy .p-privacy__list li a {
  color: #333;
}
#privacy .p-privacy__list li {
  padding-left: 15px;
  position: relative;
}
#privacy .p-privacy__list li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 5px;
}

#recruit .p-recruit {
  padding-top: 40px;
}
@media only screen and (min-width: 992px) {
  #recruit .p-recruit {
    padding-top: 60px;
  }
}
#recruit .p-recruit__table {
  width: 100%;
}
#recruit .p-recruit__table tr:first-child th::before,
#recruit .p-recruit__table tr:first-child td::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 9px 3px;
}
@media only screen and (max-width: 575px) {
  #recruit .p-recruit__table tr:first-child td::before {
    display: none;
  }
}
#recruit .p-recruit__table th,
#recruit .p-recruit__table td {
  padding: 15px 0;
  font-weight: 500;
  text-align: left;
  position: relative;
}
@media only screen and (max-width: 575px) {
  #recruit .p-recruit__table th,
  #recruit .p-recruit__table td {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  #recruit .p-recruit__table th,
  #recruit .p-recruit__table td {
    padding: 27px 0;
  }
}
#recruit .p-recruit__table th::after,
#recruit .p-recruit__table td::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle at 1.5px center, #ffb284, #ffb284 1.5px, transparent 1px, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 9px 3px;
}
#recruit .p-recruit__table th a,
#recruit .p-recruit__table td a {
  color: #333;
}
#recruit .p-recruit__table th {
  color: #ea9f28;
}
@media only screen and (max-width: 575px) {
  #recruit .p-recruit__table th {
    padding: 20px 0 3px;
  }
  #recruit .p-recruit__table th::after {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  #recruit .p-recruit__table th {
    min-width: 170px;
  }
}
@media only screen and (max-width: 575px) {
  #recruit .p-recruit__table td {
    padding: 3px 0 20px;
  }
}
#recruit .p-recruit__wrap {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  border: 2px solid #ffe86c;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) {
  #recruit .p-recruit__wrap {
    max-width: 560px;
    margin: 50px auto 0;
    padding: 50px 20px 45px;
  }
}
#recruit .p-recruit__btn {
  min-width: 230px;
  display: inline-block;
  padding: 6px 20px 6px 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 22px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  #recruit .p-recruit__btn {
    min-width: 300px;
  }
}
#recruit .p-recruit__btn::before {
  content: "";
  width: 23px;
  height: 17.5px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(../img/common/icon_mail.svg);
}
#recruit .p-recruit__txt {
  margin-top: 20px;
  line-height: 1.75;
}

#page .p-page .c-btn {
  margin: 70px auto 0;
}

.p-404 {
  padding-top: 60px;
}
@media only screen and (min-width: 992px) {
  .p-404 {
    padding-top: 100px;
  }
}
.p-404__text {
  text-align: center;
}
.p-404 .c-btn {
  margin: 50px auto 0;
}