@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, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, 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;
}

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

body {
  line-height: 1;
}

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;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  vertical-align: top;
}

@keyframes hoverMenu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutMask {
  0% {
    opacity: 1;
    z-index: 200;
  }
  99% {
    opacity: 0.02;
    z-index: 200;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(1rem);
  }
}
@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes zoomLink {
  to {
    transform: scale(105%);
  }
}
@keyframes zoomPhoto {
  to {
    transform: scale(110%);
  }
}
@keyframes hoverBg {
  to {
    background-color: rgba(101, 100, 100, 0.2);
  }
}
/* */
@media screen and (min-width: 750px) {
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .sp_only {
    display: block;
  }
}

#mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 200;
}
#mask.action {
  animation: fadeOutMask 1s ease-in-out forwards;
}

.btn {
  color: #656464;
  line-height: 1;
  position: relative;
  padding-right: 2.6em;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 1099px) {
  .btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .btn {
    font-size: 17px;
  }
}
@media screen and (max-width: 749px) {
  .btn {
    font-size: 14px;
  }
}
.btn:before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  border-radius: 0.8em;
  background: url("../img/common/btn_arrow.svg") var(--green) no-repeat center/cover;
  position: absolute;
  top: calc(50% - 0.8em);
  right: 0;
}
.btn:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #656464;
  position: absolute;
  bottom: -1.1em;
  left: 0;
}
.btn:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 749px) {
  html {
    font-size: 14px;
  }
}
html.open {
  overflow: hidden;
}
html.open body {
  overflow: hidden;
}
html.modal {
  overflow: hidden;
}
html.modal body {
  overflow: hidden;
}

.en {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

body {
  font-family: "Yu Gothic", "YuGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  position: relative;
  width: 100%;
  font-weight: 400;
  color: #727171;
}
body p {
  line-height: 2;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 1099px) {
  header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.8125rem 0 2.5rem 0;
    max-width: 1368px;
    width: 90%;
    margin: 0 auto;
  }
  header .inner #sp_menu {
    display: none;
  }
  header .inner .box {
    width: 40%;
    max-width: 28.75rem;
  }
}
@media screen and (max-width: 1100px) {
  header .inner {
    padding: 1.375rem 0;
    position: relative;
  }
}
header .inner .logo {
  width: 100%;
  max-width: 28.75rem;
}
@media screen and (max-width: 1100px) {
  header .inner .logo {
    width: 73%;
  }
}
header .inner .logo h1 a {
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 18.4782608696%;
  background: url("../img/common/logo.svg") no-repeat center/cover;
}
@media screen and (min-width: 1099px) {
  header .inner nav {
    display: flex;
    flex-direction: column;
  }
  header .inner nav ul {
    order: 2;
    display: flex;
    justify-content: right;
    margin-top: 40px;
    gap: clamp(8px, 1.8vw, 40px);
  }
  header .inner nav ul li a {
    font-size: 18px;
    padding-left: 20px;
    color: #656464;
    line-height: 1;
    position: relative;
  }
  header .inner nav ul li a:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--green);
    position: absolute;
    top: calc(50% - 5px);
    left: 0;
  }
}
@media screen and (min-width: 1099px) and (max-width: 749px) {
  header .inner nav ul li a:before {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    top: calc(50% - 4px);
  }
}
@media screen and (min-width: 1099px) {
  header .inner nav ul li a:hover {
    opacity: 1;
  }
  header .inner nav ul li a:hover:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #656464;
    position: absolute;
    bottom: -13px;
    left: 0;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
  }
  header .inner nav address {
    order: 1;
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 1100px) {
  header .inner .box {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  header .inner .box #sp_menu {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background-color: var(--blue);
    margin-right: 0;
    margin-left: auto;
    display: flex;
  }
  header .inner .box #sp_menu:before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("../img/common/open.svg") no-repeat center/cover;
    margin: auto;
  }
  header .inner nav {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #ffffff;
    height: 100vh;
    transform: translateY(100%);
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
  }
  header .inner nav ul {
    width: 82.4%;
    margin: 0 auto;
  }
  header .inner nav ul li {
    font-size: 16px;
    margin-top: calc(1em - 1px);
  }
}
@media screen and (max-width: 1100px) and (max-width: 749px) {
  header .inner nav ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  header .inner nav ul li a {
    padding-left: calc(1em - 1px);
    display: block;
    padding-bottom: calc(1em - 1px);
    padding-top: calc(1em - 1px);
    border-bottom: 1px solid #656464;
    box-sizing: border-box;
    color: #656464;
    line-height: 1;
    position: relative;
  }
  header .inner nav ul li a:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--green);
    position: absolute;
    top: calc(50% - 5px);
    left: 0;
  }
}
@media screen and (max-width: 1100px) and (max-width: 749px) {
  header .inner nav ul li a:before {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    top: calc(50% - 4px);
  }
}
@media screen and (max-width: 1100px) {
  header .inner nav address {
    margin: 54px auto 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  header .inner nav address .btn_box {
    margin-top: 28px;
  }
}
@media screen and (min-width: 1099px) {
  header .btn_box {
    position: fixed;
    right: 0;
    top: 13.7222em;
    z-index: 999;
  }
  header .btn_box a {
    background-color: var(--blue);
    border-radius: 10px 0 0 10px;
    padding: 1.875rem 0;
    color: #fff;
    display: flex;
    font-size: 1.3333rem;
    gap: 0 0.8em;
    letter-spacing: 0.05em;
    line-height: 1;
    place-content: center;
    place-items: center;
    transition: opacity 0.2s ease;
    width: 3.75em;
    writing-mode: vertical-rl;
  }
  header .btn_box a:before {
    background: url("../img/common/icon1.svg") no-repeat center/cover;
    content: "";
    display: block;
    height: 1.1em;
    width: 1.1em;
  }
}
@media screen and (max-width: 1100px) {
  header .btn_box a {
    display: flex;
    position: relative;
    background: var(--blue);
    align-items: center;
    justify-content: center;
    padding: 14.25px 64px;
    border-radius: 25px;
    color: #ffffff;
    transition: opacity 0.3s ease-in-out;
  }
  header .btn_box a span {
    line-height: 1;
  }
  header .btn_box a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/common/icon1.svg") no-repeat center/cover;
    margin-right: 19px;
  }
  header .btn_box a:hover {
    opacity: 0.8;
  }
}
header .tel {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header .tel > span {
  display: block;
  font-size: 14px;
}
header .tel > span:before {
  content: "▼";
  color: var(--blue);
  display: inline-block;
}
header .tel a {
  display: flex;
  justify-content: left;
  align-items: baseline;
  color: var(--glay);
  margin-top: 12.5px;
}
header .tel a i {
  font-size: 16px;
  line-height: 1;
  margin-right: 0.5em;
}
header .tel a span {
  font-size: 24px;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  html.open header .box #sp_menu:before {
    background: url("../img/common/close.svg") no-repeat center/cover;
  }
  html.open header nav {
    display: block;
  }
}

.no-select {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

section.blueBg {
  position: relative;
  z-index: 8;
  background: rgb(221, 240, 244);
}
section.blueBg .before,
section.blueBg .after {
  height: clamp(200px, 40vw, 800px);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: #ffffff;
}
@media screen and (max-width: 749px) {
  section.blueBg .before,
  section.blueBg .after {
    height: 130px;
  }
}
section.blueBg .before img,
section.blueBg .after img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 7;
}
section.blueBg .before {
  border-top: 8rem solid #ffffff;
  font-size: clamp(3px, 1vw, 13px);
}
section.blueBg .before:before {
  content: "";
  width: 25em;
  height: 29em;
  left: 5%;
  top: -9.5em;
  background: url("../img/common/deco1.svg") no-repeat center/cover;
  position: absolute;
}
@media screen and (max-width: 749px) {
  section.blueBg .before:before {
    top: -15.5em;
  }
}
section.blueBg .before:after {
  content: "";
  width: 25em;
  height: 29em;
  right: 5%;
  top: -9.5em;
  background: url("../img/common/deco2.svg") no-repeat center/cover;
  position: absolute;
}
@media screen and (max-width: 749px) {
  section.blueBg .before:after {
    top: -15.5em;
  }
}
section.blueBg .after {
  top: auto;
  bottom: -3.875rem;
  transform: rotate(180deg);
}
section.blueBg .inner, section.blueBg .title {
  z-index: 10;
  position: relative;
}

footer {
  position: relative;
  z-index: 8;
  background: #e1edbd;
  padding-top: 4rem;
  margin-top: 9.6875rem;
}
@media screen and (max-width: 1100px) {
  footer {
    padding-bottom: 70px;
  }
}
footer .before {
  height: clamp(200px, 40vw, 800px);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: #ffffff;
}
@media screen and (max-width: 749px) {
  footer .before {
    height: 130px;
  }
}
footer .before img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 7;
}
footer .inner {
  z-index: 10;
  position: relative;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
footer .reservation_box {
  margin-bottom: 4rem;
  background: url("../img/common/img.jpg") no-repeat center/cover;
  border-radius: 0.625rem;
  padding: 8rem 0;
}
@media screen and (max-width: 749px) {
  footer .reservation_box {
    padding: 60px 15px;
  }
}
footer .reservation_box .title {
  margin-bottom: 4rem;
  text-align: center;
}
footer .reservation_box .title span {
  font-size: var(--fs20to10);
  color: #ffffff;
}
footer .reservation_box .title h2 {
  font-size: var(--fs32to20);
  font-weight: bold;
  line-height: 1;
  margin-top: 1em;
  margin-bottom: 2em;
  color: #ffffff;
}
footer .reservation_box .title h2:after {
  display: none;
}
footer .reservation_box .title p {
  color: #ffffff;
}
@media screen and (max-width: 749px) {
  footer .reservation_box .title p {
    letter-spacing: -0.05em;
  }
}
footer .reservation_box ul {
  display: flex;
  justify-content: space-between;
  max-width: 958px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  footer .reservation_box ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 750px) {
  footer .reservation_box ul {
    position: relative;
  }
  footer .reservation_box ul:before {
    content: "";
    width: 1px;
    background: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 0.5px);
  }
}
footer .reservation_box ul li {
  width: 21.875rem;
  text-align: center;
}
@media screen and (max-width: 749px) {
  footer .reservation_box ul li {
    width: 100%;
    box-sizing: border-box;
  }
  footer .reservation_box ul li + li {
    margin-top: 30px;
    border-top: 1px solid #ffffff;
    padding-top: 30px;
  }
}
footer .reservation_box ul li h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
footer .reservation_box ul li p {
  color: #ffffff;
  margin-top: 0.75rem;
}
footer .reservation_box ul li a {
  transition: opacity 0.3s ease-in-out;
}
footer .reservation_box ul li a:hover {
  opacity: 0.8;
}
footer .reservation_box ul li.tel a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #ffffff;
  padding: 16px 0;
  width: 100%;
  border-radius: 4em;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}
footer .reservation_box ul li.tel a i {
  font-size: 20px;
  line-height: 1;
  margin-right: 0.5em;
}
@media screen and (max-width: 749px) {
  footer .reservation_box ul li.tel a i {
    font-size: 16px;
  }
}
footer .reservation_box ul li.tel a span {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 749px) {
  footer .reservation_box ul li.tel a span {
    font-size: 24px;
  }
}
footer .reservation_box ul li.web a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  width: 100%;
  color: #ffffff;
  border-radius: 4em;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 749px) {
  footer .reservation_box ul li.web a {
    font-size: 20px;
  }
}
footer .reservation_box ul li.web a span {
  line-height: 1;
}
footer .reservation_box ul li.web a:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../img/common/icon1.svg") no-repeat center/cover;
  margin-right: 19px;
}
@media screen and (max-width: 749px) {
  footer .reservation_box ul li.web a:before {
    width: 28px;
    height: 28px;
    margin-right: 17px;
  }
}
footer .info_box {
  background: #ffffff;
  width: 90%;
  padding: 4rem;
}
@media screen and (max-width: 749px) {
  footer .info_box {
    padding: 15px;
  }
}
footer .info_box .logo_box {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 749px) {
  footer .info_box .logo_box {
    display: block;
    margin-bottom: 0;
    padding: 30px;
    text-align: center;
  }
}
footer .info_box .logo_box .logo {
  width: 80%;
  max-width: 460px;
  margin-right: 4rem;
}
@media screen and (max-width: 749px) {
  footer .info_box .logo_box .logo {
    margin-right: 0;
    width: 95%;
    margin-bottom: 30px;
  }
}
footer .info_box .logo_box address {
  line-height: 2;
}
@media screen and (max-width: 749px) {
  footer .info_box .logo_box address {
    font-size: 14px;
  }
}
footer .info_box .logo_box address a {
  color: var(--glay);
  text-decoration: underline;
}
footer .info_box .flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  footer .info_box .flex_box {
    display: block;
  }
}
footer .info_box .flex_box #timeTable {
  flex-basis: 54.0441176471%;
}
footer .info_box .flex_box nav {
  flex-basis: 40.0735294118%;
}
@media screen and (max-width: 1100px) {
  footer .info_box .flex_box nav {
    margin: 30px auto 0;
    width: 80%;
  }
}
footer .info_box .flex_box nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: clamp(8px, 1.8vw, 35px);
  row-gap: 1rem;
  width: 96.3302752294%;
}
@media screen and (max-width: 1100px) {
  footer .info_box .flex_box nav ul {
    width: 100%;
    justify-content: left;
  }
}
@media screen and (max-width: 1100px) {
  footer .info_box .flex_box nav ul li {
    flex-basis: 48%;
  }
}
@media screen and (min-width: 1099px) {
  footer .info_box .flex_box nav ul li:nth-of-type(3n) {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 1099px) {
  footer .info_box .flex_box nav ul li.dummy {
    visibility: hidden;
  }
}
@media screen and (max-width: 1100px) {
  footer .info_box .flex_box nav ul li.dummy {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  footer .info_box .flex_box nav ul li:nth-of-type(1) {
    order: 1;
  }
  footer .info_box .flex_box nav ul li:nth-of-type(2) {
    order: 2;
  }
  footer .info_box .flex_box nav ul li:nth-of-type(3) {
    order: 4;
  }
  footer .info_box .flex_box nav ul li:nth-of-type(4) {
    order: 6;
  }
  footer .info_box .flex_box nav ul li:nth-of-type(5) {
    order: 3;
  }
  footer .info_box .flex_box nav ul li:nth-of-type(6) {
    order: 5;
  }
}
footer .info_box .flex_box nav ul li a {
  font-size: 18px;
  padding-left: 20px;
  color: #656464;
  line-height: 1;
  position: relative;
}
footer .info_box .flex_box nav ul li a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--green);
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
}
@media screen and (max-width: 749px) {
  footer .info_box .flex_box nav ul li a:before {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    top: calc(50% - 4px);
  }
}
@media screen and (max-width: 749px) {
  footer .info_box .flex_box nav ul li a {
    padding-left: 16px;
    font-size: 14px;
  }
}
footer .info_box .flex_box nav ul li a:hover {
  opacity: 1;
}
footer .info_box .flex_box nav span {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.375rem;
  font-weight: bold;
}
footer .info_box .flex_box nav span:before {
  content: "";
  display: block;
  height: 2px;
  inset: 0;
  margin-bottom: 1.375rem;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23656464' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
footer .info_box .flex_box nav span + ul {
  justify-content: left;
}
@media screen and (max-width: 749px) {
  footer .info_box .flex_box nav span + ul {
    justify-content: space-between;
    padding-bottom: 40px;
  }
  footer .info_box .flex_box nav span + ul li {
    flex-basis: auto;
  }
}
footer .copyright {
  text-align: center;
  padding: 0.8em 0;
}
@media screen and (max-width: 749px) {
  footer .copyright {
    font-size: 12px;
  }
}

#head_box {
  position: relative;
  margin-bottom: 8rem;
}
@media screen and (max-width: 749px) {
  #head_box {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 750px) {
  #head_box .inner {
    max-width: 1368px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: clamp(282px, 20vw, 19.125rem) 1fr;
    grid-template-rows: 15rem 1fr auto;
    column-gap: 4rem;
    grid-template-areas: "title visual" "link visual" "bread_list bread_list";
  }
}
@media screen and (min-width: 750px) and (max-width: 1100px) {
  #head_box .inner {
    grid-template-columns: clamp(190px, 20vw, 14.5rem) 1fr;
  }
}
@media screen and (min-width: 750px) {
  #head_box .inner #bread_list {
    grid-area: bread_list;
  }
  #head_box .inner .page_title {
    grid-area: title;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  #head_box .inner .page_title > div {
    z-index: 5;
    position: relative;
  }
  #head_box .inner .page_title > div span {
    position: absolute;
    bottom: 0;
    left: clamp(20px, 5vw, 76px);
    width: 8em;
  }
}
@media screen and (min-width: 750px) and (max-width: 1100px) {
  #head_box .inner .page_title > div span {
    left: 0;
  }
}
@media screen and (min-width: 750px) {
  #head_box .inner .page_title:after {
    content: "";
    position: absolute;
    letter-spacing: 0.1em;
    left: 0;
    right: calc(50% + 7.625rem);
    top: 4rem;
    height: 16rem;
    border-radius: 0 8rem 8rem 0;
    background-color: #ddf0f4;
    z-index: 2;
  }
}
@media screen and (min-width: 750px) and (max-width: 1100px) {
  #head_box .inner .page_title:after {
    right: 50%;
  }
}
@media screen and (min-width: 750px) {
  #head_box .inner .visual_box {
    grid-area: visual;
    width: 100%;
    height: 33.5rem;
  }
  #head_box .inner .page_link {
    grid-area: link;
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 4rem;
    padding-left: clamp(20px, 5vw, 76px);
  }
}
@media screen and (min-width: 750px) and (max-width: 1100px) {
  #head_box .inner .page_link {
    padding-left: 0;
  }
}
#head_box .inner .visual_box {
  border-radius: 0.625rem;
  overflow: hidden;
  background: var(--glay);
}
@media screen and (max-width: 749px) {
  #head_box .inner .visual_box {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 749px) {
  #head_box .inner .visual_box:before {
    content: "";
    padding-top: 40%;
    display: block;
  }
}
#head_box .inner .visual_box span {
  display: block;
  background-color: var(--blue);
  opacity: 1;
  height: 100%;
  animation: fadeOut 1s ease-in-out forwards;
}
@media screen and (max-width: 749px) {
  #head_box .inner .visual_box span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#head_box .inner #bread_list {
  display: flex;
  justify-content: end;
  padding-top: 2rem;
}
@media screen and (max-width: 749px) {
  #head_box .inner #bread_list {
    width: 90%;
    margin: 0 auto;
    padding-top: 12px;
    margin-bottom: 31px;
    font-size: 12px;
  }
}
#head_box .inner #bread_list a {
  color: #b2b1b1;
  text-decoration: underline;
}
#head_box .inner #bread_list li + li {
  margin-left: 1em;
}
#head_box .inner #bread_list li + li:before {
  content: "／";
  display: inline-block;
  margin-right: 1em;
}
@media screen and (max-width: 749px) {
  #head_box .inner .page_title {
    background-color: #ddf0f4;
    padding: 30px 0 30px 5%;
    margin-right: 5%;
    margin-bottom: 34px;
    border-radius: 0 60px 60px 0;
  }
}
#head_box .inner .page_title > div {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  #head_box .inner .page_title > div {
    font-size: 20px;
  }
}
#head_box .inner .page_title > div span {
  line-height: 1;
}
#head_box .inner .page_title > div span:before {
  content: "text";
  line-height: 1;
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 1em;
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 749px) {
  #head_box .inner .page_title > div span:before {
    font-size: 10px;
  }
}
@media screen and (max-width: 749px) {
  #head_box .inner .page_link {
    display: flex;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
  }
}
#head_box .inner .page_link li a {
  display: block;
  margin-bottom: 1.1em;
}
#head_box .inner .page_link li a:before {
  transform: rotate(90deg);
}

@media screen and (min-width: 1099px) {
  #reservation_link {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  #reservation_link {
    position: fixed;
    bottom: 0;
    left: 0;
    background: var(--blue);
    width: 100%;
    z-index: 200;
  }
}
#reservation_link a {
  display: flex;
  position: relative;
  background: var(--blue);
  align-items: center;
  justify-content: center;
  padding: 14.25px 64px;
  border-radius: 25px;
  color: #ffffff;
  height: 70px;
  width: 100%;
  box-sizing: border-box;
}
#reservation_link a span {
  line-height: 1;
  font-size: 18px;
}
#reservation_link a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon1.svg") no-repeat center/cover;
  margin-right: 19px;
}

#timeTable table {
  width: 100%;
  display: block;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid var(--blue);
  box-sizing: border-box;
}
#timeTable table th, #timeTable table td {
  box-sizing: border-box;
  width: 9.8639455782%;
  display: block;
}
#timeTable table th span, #timeTable table td span {
  color: var(--blue);
  font-size: 1.125rem;
}
@media screen and (max-width: 749px) {
  #timeTable table th span, #timeTable table td span {
    font-size: 14.5px;
  }
}
#timeTable table th span i, #timeTable table td span i {
  display: block;
  margin-top: 0.4em;
  font-size: 14px;
}
@media screen and (max-width: 749px) {
  #timeTable table th span i, #timeTable table td span i {
    font-size: 12px;
  }
}
#timeTable table th + td, #timeTable table th + th, #timeTable table td + td, #timeTable table td + th {
  border-left: 1px solid var(--blue);
}
#timeTable table thead {
  display: block;
}
#timeTable table thead tr {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}
#timeTable table thead th {
  padding: 0.875rem 0;
}
#timeTable table thead th span {
  display: block;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
#timeTable table thead th:first-child {
  width: 40.8163265306%;
}
#timeTable table tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#timeTable table tbody tr {
  width: 100%;
  display: flex;
  border-top: 1px solid var(--blue);
}
#timeTable table tbody tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 3.75rem;
}
#timeTable table tbody tr td span {
  text-align: center;
  line-height: 1;
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
#timeTable table tbody tr td i {
  display: block;
  text-align: center;
}
#timeTable table tbody tr td:first-child {
  width: 40.8163265306%;
}
#timeTable ul {
  margin-top: 0.8em;
}
@media screen and (max-width: 749px) {
  #timeTable ul li {
    line-height: 1.6;
  }
}
#timeTable ul li + li {
  margin-top: 0.8em;
}

#page_top a {
  position: fixed;
  bottom: 10px;
  right: 1.25rem;
  width: 1em;
  height: 1em;
  background: url("../img/common/gotop.svg") #ffffff no-repeat center/cover;
  border-radius: 0.5em;
  opacity: 0;
  transform: translateY(-100%);
  animation: fadeDown 0.5s ease-in-out forwards;
  z-index: 50;
  border: 1px solid #b4d25a;
}
@media screen and (min-width: 1099px) {
  #page_top a {
    font-size: 60px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top a {
    font-size: 50px;
  }
}
@media screen and (max-width: 749px) {
  #page_top a {
    font-size: 40px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top a {
    bottom: 80px;
  }
}
#page_top a span {
  display: block;
  text-indent: -9999em;
  overflow: hidden;
}
#page_top.on a {
  animation: fadeUp 0.5s ease-in-out forwards;
}

.home section.photo .inner {
  max-width: 1368px;
  width: 90%;
  margin: 0 auto;
}
.home section.photo .inner .slideBox > div {
  padding-top: 66.6666666667%;
}
.home section.photo .inner .swiper-wrapper {
  overflow: hidden;
  border-radius: 0.625rem;
}
.home section.photo .inner .swiper-wrapper .slide1 {
  height: 100%;
  background: url("../img/home/slide1.jpg") no-repeat center/cover;
}
.home section.photo .inner .swiper-wrapper .slide2 {
  height: 100%;
  background: url("../img/home/slide2.jpg") no-repeat center/cover;
}
.home section.photo .inner .swiper-wrapper .slide3 {
  height: 100%;
  background: url("../img/home/slide3.jpg") no-repeat center/cover;
}
.home section.photo .inner .swiper-wrapper .swiper-slide > div {
  opacity: 0;
  height: 100%;
}
.home section.photo .inner .swiper-wrapper .swiper-slide.swiper-slide-prev > div {
  animation: fadeOut 2s ease-in forwards;
}
.home section.photo .inner .swiper-wrapper .swiper-slide.swiper-slide-active > div {
  animation: fadeIn 2s ease-in forwards;
}
.home section.news {
  padding: clamp(40px, 10vw, 128px) 0;
  margin-bottom: 3.125rem;
}
.home section.news .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.home section.news .grid {
  display: grid;
  grid-template-columns: 174px 1fr;
  grid-template-rows: 13.5rem auto;
  column-gap: clamp(40px, 10vw, 128px);
  grid-template-areas: "title news" "btn news";
}
@media screen and (max-width: 749px) {
  .home section.news .grid {
    display: flex;
    flex-direction: column;
  }
}
.home section.news .grid .title {
  grid-area: title;
}
@media screen and (max-width: 749px) {
  .home section.news .grid .title {
    margin-bottom: 18px;
  }
}
.home section.news .grid .title span {
  font-size: var(--fs20to10);
  color: var(--green);
}
.home section.news .grid .title h2 {
  font-size: var(--fs32to20);
  font-weight: bold;
  line-height: 1;
  margin-top: 1em;
}
@media screen and (max-width: 749px) {
  .home section.news .grid .title h2 {
    margin-top: 0.5em;
  }
}
.home section.news .grid .list {
  grid-area: news;
  border-top: 1px solid #b2b1b1;
  border-bottom: 1px solid #b2b1b1;
  padding: 4rem 4rem 3.375rem;
  flex: 0 1 100%;
}
@media screen and (max-width: 749px) {
  .home section.news .grid .list {
    padding: 30px 14px;
  }
}
.home section.news .grid .list li {
  width: 100%;
}
.home section.news .grid .list li time {
  display: block;
  color: var(--green);
  margin-bottom: 0.5em;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 1099px) {
  .home section.news .grid .list li time {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .home section.news .grid .list li time {
    font-size: 13px;
  }
}
@media screen and (max-width: 749px) {
  .home section.news .grid .list li time {
    font-size: 10px;
  }
}
.home section.news .grid .list li h3 {
  line-height: 2;
  color: #656464;
}
.home section.news .grid .list li a {
  display: block;
}
.home section.news .grid .list li a:hover {
  opacity: 0.8;
}
.home section.news .grid .list li + li:before {
  content: "";
  display: block;
  height: 2px;
  inset: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23656464' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.home section.news .grid .btn_box {
  grid-area: btn;
}
@media screen and (max-width: 749px) {
  .home section.news .grid .btn_box {
    margin-top: 30px;
    text-align: right;
  }
}
.home section.about {
  position: relative;
}
.home section.about:before {
  content: "";
  width: 0.9375rem;
  height: 3.125rem;
  position: absolute;
  top: -3.125rem;
  left: calc(50% - 0.46875rem);
  background: url("../img/common/deco.svg") no-repeat center/cover;
}
.home section.about .title {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 749px) {
  .home section.about .title {
    margin-bottom: 50px;
    padding-top: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.home section.about .title span {
  display: block;
  padding-top: 2rem;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}
.home section.about .title h2 {
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 1099px) {
  .home section.about .title h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1100px) {
  .home section.about .title h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 749px) {
  .home section.about .title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 749px) {
  .home section.about .title h2 {
    text-align: left;
    line-height: 1.8;
  }
}
.home section.about .title h2 i {
  display: block;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 1em;
}
.home section.about #box {
  z-index: 10;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 749px) {
  .home section.about #box {
    display: block;
  }
}
.home section.about #box > div {
  flex-basis: 50%;
}
.home section.about #box .read {
  margin-left: auto;
  margin-right: 0;
  max-width: 668px;
  width: 90%;
  box-sizing: border-box;
  padding-right: 64px;
  padding-left: 60px;
}
@media screen and (max-width: 1100px) {
  .home section.about #box .read {
    padding: 0 40px 0 5%;
  }
}
@media screen and (max-width: 749px) {
  .home section.about #box .read {
    padding: 0;
    margin: 0 auto 30px;
  }
}
.home section.about #box .read p {
  line-height: 2;
  font-weight: bold;
}
.home section.about #box .read p + p {
  margin-top: 1.5em;
}
.home section.about #box .photo_box {
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  .home section.about #box .photo_box {
    margin-left: 10%;
  }
}
.home section.about #box .photo_box .slideBox {
  width: 90%;
}
.home section.about #box .photo_box .slideBox > div {
  background: red;
  border-radius: 0.625rem;
}
.home section.about #box .photo_box .slideBox > div:after {
  padding-top: 100%;
  display: block;
  content: "";
}
.home section.about #box .photo_box .slideBox .slide1 {
  height: 100%;
  background: url("../img/home/photo1.jpg") no-repeat center/cover;
}
.home section.about #box .photo_box .slideBox .slide2 {
  height: 100%;
  background: url("../img/home/photo2.jpg") no-repeat center/cover;
}
.home section.about #box .photo_box .slideBox .slide3 {
  height: 100%;
  background: url("../img/home/photo3.jpg") no-repeat center/cover;
}
.home section.about #box .photo_box .slideBox .slide4 {
  height: 100%;
  background: url("../img/home/photo4.jpg") no-repeat center/cover;
}
.home section.about #box .photo_box .swiper-pagination {
  display: flex;
  gap: 0.9375rem;
  margin-top: 2rem;
}
.home section.about #box .photo_box .swiper-pagination span {
  font-size: 12px;
  height: 1em;
  width: 1em;
  display: block;
  background-color: #d1d0d0;
  border-radius: 0.5em;
}
.home section.about #box .photo_box .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--blue);
}
.home section.about .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.home section.about .inner .subInfo {
  display: flex;
  gap: clamp(10px, 1.5vw, 32px);
}
@media screen and (max-width: 749px) {
  .home section.about .inner .subInfo {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .home section.about .inner .subInfo > div + div {
    margin-top: 20px;
  }
}
.home section.about .inner .subInfo > div a {
  position: relative;
  display: flex;
  padding: clamp(20px, 2vw, 48px);
  gap: clamp(20px, 2vw, 48px);
  border-radius: 0.625rem;
  background: #ffffff;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}
.home section.about .inner .subInfo > div a:hover {
  opacity: 0.85;
}
.home section.about .inner .subInfo > div a:before {
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  display: block;
  border-radius: 3.25rem;
  flex-shrink: 0;
}
.home section.about .inner .subInfo > div a:after {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background: url("../img/common/btn_arrow.svg") var(--blue) no-repeat center/cover;
  flex-shrink: 0;
}
@media screen and (max-width: 749px) {
  .home section.about .inner .subInfo > div a:after {
    margin-left: auto;
    margin-right: 0;
  }
}
.home section.about .inner .subInfo > div a.about:before {
  background: url("../img/home/pict1.svg") no-repeat center/cover;
}
.home section.about .inner .subInfo > div a.doctor:before {
  background: url("../img/home/pict2.svg") no-repeat center/cover;
}
.home section.about .inner .subInfo > div a > div span {
  color: var(--glay);
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.625rem;
}
.home section.about .inner .subInfo > div a > div p {
  color: var(--glay);
}
.home section.about .inner .title2 {
  margin-top: 8rem;
  display: flex;
  gap: clamp(20px, 3vw, 64px);
}
@media screen and (max-width: 749px) {
  .home section.about .inner .title2 {
    display: block;
  }
}
.home section.about .inner .title2 h2 {
  font-size: var(--fs32to20);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  .home section.about .inner .title2 h2 {
    margin-bottom: 30px;
  }
}
.home section.about .inner .title2 h2:before {
  content: "treatment";
  font-size: var(--fs20to10);
  color: var(--blue);
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: block;
}
@media screen and (max-width: 749px) {
  .home section.about .inner .title2 h2:before {
    margin-bottom: 1em;
  }
}
.home section.about .inner .treatment_list {
  display: flex;
  margin-top: 4rem;
}
@media screen and (max-width: 749px) {
  .home section.about .inner .treatment_list {
    flex-wrap: wrap;
  }
}
.home section.about .inner .treatment_list li {
  flex-basis: 50%;
  position: relative;
}
@media screen and (max-width: 749px) {
  .home section.about .inner .treatment_list li {
    flex-basis: 100%;
  }
}
.home section.about .inner .treatment_list li::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.home section.about .inner .treatment_list li a {
  position: absolute;
  box-sizing: border-box;
  padding: 4rem;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  .home section.about .inner .treatment_list li a {
    padding: 20px;
  }
}
.home section.about .inner .treatment_list li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 2;
  transition: transform 0.7s ease-in-out;
}
.home section.about .inner .treatment_list li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  background-color: rgba(101, 100, 100, 0.5);
  mix-blend-mode: multiply;
  z-index: 4;
  transition: background-color 0.7s ease-in-out;
}
.home section.about .inner .treatment_list li a:hover:after {
  transform: scale(1.1);
}
.home section.about .inner .treatment_list li a:hover:before {
  background-color: rgba(101, 100, 100, 0.2);
}
@media screen and (min-width: 750px) {
  .home section.about .inner .treatment_list li a.urology {
    border-radius: 0.625rem 0 0 0.625rem;
    border-right: 1px solid #ffffff;
  }
}
@media screen and (max-width: 749px) {
  .home section.about .inner .treatment_list li a.urology {
    border-radius: 0.625rem 0.625rem 0 0;
    border-bottom: 1px solid #ffffff;
  }
}
.home section.about .inner .treatment_list li a.urology:after {
  background: url("../img/home/img2.jpg") no-repeat center/cover;
}
@media screen and (min-width: 750px) {
  .home section.about .inner .treatment_list li a.free {
    border-radius: 0 0.625rem 0.625rem 0;
    border-left: 1px solid #ffffff;
  }
}
@media screen and (max-width: 749px) {
  .home section.about .inner .treatment_list li a.free {
    border-radius: 0 0 0.625rem 0.625rem;
    border-top: 1px solid #ffffff;
  }
}
.home section.about .inner .treatment_list li a.free:after {
  background: url("../img/home/img3.jpg") no-repeat center/cover;
}
.home section.about .inner .treatment_list li a h3 {
  z-index: 10;
  position: relative;
  color: #ffffff;
  font-size: var(--fs32to20);
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: auto;
}
.home section.about .inner .treatment_list li a p {
  z-index: 10;
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 48px);
  margin-bottom: 0;
}
.home section.about .inner .treatment_list li a p:after {
  content: "";
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  background: url("../img/common/btn_arrow.svg") no-repeat center/cover;
  flex-shrink: 0;
}
.home section.about .inner .treatment_list li a p span {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.home section.about .inner .treatment_list li a p span > i {
  flex-shrink: 0;
  line-height: 1;
}
.home section.about .inner .treatment_list li a p span > i:before {
  content: "●";
  display: inline-block;
  margin-right: 0.3em;
  transform: scale(80%);
}
.home section.access {
  margin-top: 8rem;
}
.home section.access .inner {
  display: flex;
  gap: clamp(20px, 4vw, 64px);
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  .home section.access .inner {
    display: block;
  }
}
.home section.access .inner .map {
  height: 36rem;
  flex-basis: 50%;
  max-width: 576px;
  max-height: 576px;
  flex-grow: 1;
}
@media screen and (max-width: 749px) {
  .home section.access .inner .map {
    margin-left: 0;
    height: 400px;
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
}
.home section.access .inner .map iframe {
  width: 100%;
  height: 100%;
}
.home section.access .inner .text_box {
  width: 576px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .home section.access .inner .text_box {
    width: 490px;
  }
}
@media screen and (max-width: 749px) {
  .home section.access .inner .text_box {
    width: 100%;
    margin-top: 60px;
  }
}
.home section.access .inner .text_box .title {
  margin-bottom: 4rem;
}
.home section.access .inner .text_box .title span {
  font-size: var(--fs20to10);
  color: var(--green);
}
.home section.access .inner .text_box .title h2 {
  font-size: var(--fs32to20);
  font-weight: bold;
  line-height: 1;
  margin-top: 1em;
}
@media screen and (max-width: 749px) {
  .home section.access .inner .text_box .title h2 {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 749px) {
  .home section.access .inner .text_box .title {
    margin-bottom: 18px;
  }
}
.home section.access .inner .text_box ul li {
  margin-top: 1.75rem;
  display: flex;
  gap: clamp(18px, 1.8vw, 32px);
  align-items: center;
}
.home section.access .inner .text_box ul li:before {
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  display: block;
  border-radius: 3.25rem;
  flex-shrink: 0;
}
.home section.access .inner .text_box ul li.train::before {
  background: url("../img/home/pict_train.svg") #f7f7f7 no-repeat center/cover;
}
.home section.access .inner .text_box ul li.car::before {
  background: url("../img/home/pict_car.svg") #f7f7f7 no-repeat center/cover;
}
.home section.access .inner .text_box ul li strong {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
}
.home section.access .inner .text_box ul li + li {
  position: relative;
  padding-top: 2rem;
  margin-top: 2rem;
}
.home section.access .inner .text_box ul li + li:after {
  content: "";
  display: block;
  height: 2px;
  inset: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23656464' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.home section.access .inner .text_box .btn_box {
  margin-top: 3.125rem;
  text-align: right;
}

@media screen and (min-width: 750px) {
  .about #head_box {
    margin-bottom: 4rem;
  }
}
.about #head_box .inner .page_title > div span:before {
  content: "about";
}
.about #head_box .inner .visual_box {
  background: url("../img/about/main.jpg") no-repeat center/cover;
}
.about section.content1 .inner {
  display: grid;
  grid-template-columns: 1fr clamp(400px, 50vw, 520px);
  gap: clamp(20px, 5vw, 64px);
  position: relative;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  .about section.content1 .inner {
    display: block;
  }
}
.about section.content1 .inner .photo {
  position: relative;
}
.about section.content1 .inner .photo > div {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 750px) {
  .about section.content1 .inner .photo > div {
    padding-top: 4rem;
  }
}
.about section.content1 .inner .photo > div:after {
  content: "";
  padding-top: 100%;
  border-radius: 0.625rem;
  display: block;
  position: relative;
  z-index: 5;
  background: url("../img/about/img1.jpg") no-repeat center/cover;
}
.about section.content1 .inner .photo > div span {
  position: absolute;
  top: 0;
  left: 0;
}
.about section.content1 .inner .photo > div span:before {
  content: "facility";
  display: inline-block;
  line-height: 1;
  color: var(--blue);
  position: absolute;
  top: 1em;
  left: 0;
  transform: rotate(90deg) translate(2em, 200%);
  letter-spacing: 0.1em;
  z-index: 10;
  position: relative;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(30px, 6vw, 6rem);
}
@media screen and (max-width: 749px) {
  .about section.content1 .inner .photo > div span:before {
    font-size: clamp(51px, 15vw, 5.375rem);
    transform: rotate(90deg) translate(1em, 200%);
  }
}
.about section.content1 .inner .text_box {
  counter-reset: count;
}
@media screen and (min-width: 750px) {
  .about section.content1 .inner .text_box {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 749px) {
  .about section.content1 .inner .text_box {
    margin-top: 30px;
  }
}
.about section.content1 .inner .text_box > div {
  counter-increment: count;
  position: relative;
  padding-top: 3.875rem;
}
.about section.content1 .inner .text_box > div + div {
  margin-top: 7.5rem;
}
.about section.content1 .inner .text_box > div:before {
  content: "当院の特徴";
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-weight: bold;
  font-size: 1rem;
}
.about section.content1 .inner .text_box > div:after {
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 6rem;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  color: var(--blue);
}
.about section.content1 .inner .text_box > div h2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 2.75rem;
}
.about section.content1 .inner .text_box > div h2:before {
  content: "";
  width: 5rem;
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--blue);
  margin-bottom: 1.25rem;
}
.about section.content2 {
  margin-top: 8rem;
}
.about section.content2 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.about section.content2 .inner:before {
  content: "photo gallery";
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(12px, 10vw, 96px);
  font-weight: 400;
  text-align: center;
  display: block;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.1em;
}
.about section.content2 .inner h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.875rem;
}
.about section.content2 .inner #photoArea {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 32px);
  margin-top: 4rem;
}
@media screen and (max-width: 749px) {
  .about section.content2 .inner #photoArea {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about section.content2 .inner #photoArea li {
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
  transition: opacity 0.2s ease-in;
}
.about section.content2 .inner #photoArea li:hover {
  cursor: pointer;
  opacity: 0.8;
}
.about section.content2 .inner #photoArea li img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
}

.doctor h2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2rem;
}
.doctor h2 span {
  margin-top: 1.125rem;
  display: block;
  line-height: 1;
  font-size: 1rem;
  color: var(--blue);
}
.doctor h2:after {
  content: "";
  width: 5rem;
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--blue);
  margin-top: 1.25rem;
}
.doctor #head_box .inner .page_title > div span:before {
  content: "doctor";
}
.doctor #head_box .inner .visual_box {
  background: url("../img/doctor/main.jpg") no-repeat center/cover;
}
.doctor section.content1 .inner {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: clamp(20px, 5vw, 64px);
  position: relative;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  .doctor section.content1 .inner {
    display: block;
  }
}
.doctor section.content1 .inner .photo > div {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 749px) {
  .doctor section.content1 .inner .photo > div {
    width: 80%;
    margin: 0 auto;
  }
}
.doctor section.content1 .inner .photo > div:after {
  content: "";
  padding-top: 150%;
  border-radius: 0.625rem;
  display: block;
  position: relative;
  z-index: 5;
  background: url("../img/doctor/img1.jpg") no-repeat center/cover;
}
.doctor section.content1 .inner .text_box {
  counter-reset: count;
}
@media screen and (max-width: 749px) {
  .doctor section.content1 .inner .text_box {
    margin-top: 30px;
  }
}
.doctor section.content1 .inner .text_box > div {
  counter-increment: count;
  position: relative;
}
.doctor section.content1 .inner .text_box > div > span {
  line-height: 1;
  margin-bottom: 2rem;
  display: block;
}
.doctor section.content1 .inner .text_box > div p + p {
  margin-top: 2em;
}
.doctor section.content1 .inner .text_box > div ol {
  line-height: 2;
  list-style: decimal;
  color: var(--blue);
  font-weight: bold;
  margin-left: 1.3em;
}
.doctor section.content2 {
  margin-top: 8rem;
}
.doctor section.content2 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.doctor section.content2 .inner .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
}
@media screen and (max-width: 749px) {
  .doctor section.content2 .inner .grid_box {
    grid-template-columns: 1fr;
  }
}
.doctor section.content2 .inner .grid_box > div {
  background-color: #f1f9fb;
  border-radius: 0.625rem;
  padding: clamp(30px, 5vw, 64px);
}
.doctor section.content2 .inner .grid_box > div > span {
  display: block;
  color: var(--blue);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.doctor section.content2 .inner .grid_box dl {
  line-height: 1.5;
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  column-gap: 1em;
  row-gap: 0.625rem;
}
.doctor section.content2 .inner .grid_box ul {
  margin-top: -0.5rem;
}
.doctor section.content2 .inner .grid_box li {
  line-height: 2;
}

.access #head_box .inner .page_title > div span:before {
  content: "access";
}
.access #head_box .inner .visual_box {
  background: url("../img/access/main.jpg") no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  .access section.content1 h2 {
    line-height: 2;
  }
}
.access section.content1 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.access section.content1 .inner .map {
  margin-top: 1rem;
  width: 100 .access section.content1 .inner .map;
  height: 31.25rem;
}
@media screen and (max-width: 749px) {
  .access section.content1 .inner .map {
    height: 350px;
  }
}
.access section.content1 .inner .map iframe {
  width: 100%;
  height: 100%;
}
.access section.content1 .inner .text_box {
  margin-top: var(--px64to20);
}
.access section.content1 .inner .text_box > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 64px);
}
@media screen and (max-width: 749px) {
  .access section.content1 .inner .text_box > ul {
    grid-template-columns: 1fr;
  }
}
.access section.content1 .inner .text_box > ul li {
  display: flex;
  gap: clamp(18px, 1.8vw, 32px);
  align-items: center;
  background-color: #f7faee;
  border-radius: 0.625rem;
  padding: clamp(16px, 1.6vw, 32px);
}
.access section.content1 .inner .text_box > ul li:before {
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  display: block;
  border-radius: 3.25rem;
  flex-shrink: 0;
}
.access section.content1 .inner .text_box > ul li.train::before {
  background: url("../img/home/pict_train.svg") #ffffff no-repeat center/cover;
}
.access section.content1 .inner .text_box > ul li.car::before {
  background: url("../img/home/pict_car.svg") #ffffff no-repeat center/cover;
}
.access section.content1 .inner .text_box > ul li strong {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
}

.news #head_box .inner .page_title > div span:before {
  content: "news";
}
.news #head_box .inner .visual_box {
  background: url("../img/news/main.jpg") no-repeat center/cover;
}
.news section.content1 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.news section.content1 .inner > ul.list > li {
  padding-top: var(--fs20to10);
}
.news section.content1 .inner > ul.list > li time {
  display: block;
  color: var(--green);
  margin-bottom: clamp(10px, 1.6vw, 16px);
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
}
.news section.content1 .inner > ul.list > li h2 {
  font-size: var(--fs32to20);
  margin-bottom: clamp(15px, 3vw, 42px);
  font-weight: bold;
  line-height: 2;
}
.news section.content1 .inner > ul.list > li p + p {
  margin-top: 1.5em;
}
.news section.content1 .inner > ul.list > li + li {
  padding-top: var(--px64to20);
  margin-top: var(--px64to20);
  position: relative;
}
.news section.content1 .inner > ul.list > li + li:before {
  content: "";
  display: block;
  height: 2px;
  inset: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23656464' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

.treatment #head_box .inner .page_title > div span:before {
  content: "treatment";
}
.treatment #head_box .inner .visual_box {
  background: url("../img/treatment/main.jpg") no-repeat center/cover;
}
.treatment.private #head_box .inner .visual_box {
  background: url("../img/treatment/private.jpg") no-repeat center/cover;
}
.treatment section.content3 .title {
  margin-bottom: 4rem;
}
.treatment section.content3 .title:after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 3.125rem;
  background: url("../img/common/deco.svg") no-repeat center/cover;
  margin: 2rem auto 0;
}
.treatment section.content3 .title span {
  display: block;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--glay);
}
.treatment section.content3 .title h2 {
  text-align: center;
  font-weight: bold;
  color: var(--green);
}
@media screen and (min-width: 1099px) {
  .treatment section.content3 .title h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1100px) {
  .treatment section.content3 .title h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 749px) {
  .treatment section.content3 .title h2 {
    font-size: 28px;
  }
}
.treatment section.content3 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.treatment section.content3 .inner .list {
  border-radius: 0.625rem;
  border: 1px solid var(--blue);
  padding: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 749px) {
  .treatment section.content3 .inner .list {
    padding: 30px 20px;
  }
}
.treatment section.content3 .inner .list h3 {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1;
}
@media screen and (max-width: 749px) {
  .treatment section.content3 .inner .list h3 {
    margin-bottom: 20px;
    line-height: 1.8;
  }
}
.treatment section.content3 .inner .list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  row-gap: 2rem;
}
@media screen and (max-width: 749px) {
  .treatment section.content3 .inner .list ul {
    grid-template-columns: 1fr;
  }
}
.treatment section.content3 .inner .list ul li {
  line-height: 2;
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 1.125rem;
}
.treatment section.content3 .inner .list ul li:before {
  content: "";
  display: inline-block;
  background-color: var(--green);
  width: 1em;
  height: 1em;
  font-size: 0.5rem;
  border-radius: 0.5em;
  position: absolute;
  top: 1.5em;
  left: 1em;
}
.treatment section.content3 .inner .list ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='3' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23b2b1b1' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left;
}
.treatment section.content4 {
  margin-top: 8rem;
}
.treatment section.content4 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.treatment section.content4 .inner .title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4rem;
  text-align: center;
}
.treatment section.content4 .inner .title:after {
  content: "";
  width: 5rem;
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--blue);
  margin: 1.25rem auto 0;
}
.treatment section.content4 .inner .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media screen and (max-width: 749px) {
  .treatment section.content4 .inner .grid {
    grid-template-columns: 1fr;
  }
}
.treatment section.content4 .inner .grid > div {
  border-radius: 0.625rem;
  background: var(--lightBlue);
  padding: 4rem;
}
@media screen and (max-width: 749px) {
  .treatment section.content4 .inner .grid > div {
    padding: 30px 20px;
  }
}
.treatment section.content4 .inner .grid > div h2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}
.treatment section.content4 .inner .grid > div h3 {
  position: relative;
  padding-left: 0.625rem;
  margin-top: 1.625rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
}
.treatment section.content4 .inner .grid > div h3:before {
  content: "";
  width: 3px;
  height: 1.1875rem;
  border-radius: 1.5px;
  background-color: var(--blue);
  position: absolute;
  left: 0;
  top: 0;
}
.treatment section.content4 .inner .grid ul li {
  line-height: 2;
  position: relative;
  padding-left: 1.5rem;
}
.treatment section.content4 .inner .grid ul li:before {
  content: "";
  display: inline-block;
  background-color: var(--blue);
  width: 1em;
  height: 1em;
  font-size: 0.5rem;
  border-radius: 0.5em;
  position: absolute;
  top: 1.5em;
  left: 1em;
}

.treatment.private section.content1 .title {
  margin-bottom: 4rem;
}
.treatment.private section.content1 .title:after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 3.125rem;
  background: url("../img/common/deco.svg") no-repeat center/cover;
  margin: 2rem auto 0;
}
.treatment.private section.content1 .title span {
  display: block;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--glay);
}
.treatment.private section.content1 .title h2 {
  text-align: center;
  font-weight: bold;
  color: var(--green);
}
@media screen and (min-width: 1099px) {
  .treatment.private section.content1 .title h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1100px) {
  .treatment.private section.content1 .title h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 749px) {
  .treatment.private section.content1 .title h2 {
    font-size: 28px;
  }
}
.treatment.private section.content1 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.treatment.private section.content1 .inner .map {
  margin-top: 1rem;
  width: 100 .treatment.private section.content1 .inner .map;
  height: 31.25rem;
}
@media screen and (max-width: 749px) {
  .treatment.private section.content1 .inner .map {
    height: 350px;
  }
}
.treatment.private section.content1 .inner .map iframe {
  width: 100%;
  height: 100%;
}
.treatment.private section.content1 .inner .note {
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
  background: var(--lightBlue);
  padding: 1.5rem;
  gap: 0.625rem;
}
@media screen and (max-width: 749px) {
  .treatment.private section.content1 .inner .note {
    flex-direction: column;
  }
}
.treatment.private section.content1 .inner .note:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/common/icon2.svg") no-repeat center/cover;
  display: block;
  font-size: 2rem;
  flex: 0 1 1em;
}
.treatment.private section.content2 {
  margin-top: 8rem;
}
.treatment.private section.content2 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.treatment.private section.content2 .inner h2 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 749px) {
  .treatment.private section.content2 .inner h2 {
    align-items: flex-start;
    line-height: 2;
  }
}
.treatment.private section.content2 .inner h2:before {
  content: "";
  display: block;
  width: 3px;
  border-radius: 1.5px;
  height: 1.6875rem;
  background-color: var(--blue);
}
@media screen and (max-width: 749px) {
  .treatment.private section.content2 .inner h2:before {
    margin-top: 9px;
  }
}
.treatment.private section.content2 .inner h2 span {
  font-size: 1.5rem;
  font-weight: bold;
}
.treatment.private section.content2 .inner strong {
  font-weight: bold;
  color: var(--blue);
}
.treatment.private section.content2 .inner .note {
  border-radius: 0.625rem;
  background: var(--lightBlue);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.treatment.private section.content2 .inner h3 {
  margin-top: 5.625rem;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 1em;
  border-bottom: 1px solid #b2b1b1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.treatment.private section.content2 .inner h3 span + span {
  font-size: 1rem;
  font-weight: normal;
  color: var(--glay);
}
.treatment.private section.content2 .inner h3 + p {
  margin-top: 2.5rem;
}
.treatment.private section.content2 .inner > h4 {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 3rem;
}
.treatment.private section.content2 .inner .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--px64to20);
}
@media screen and (max-width: 749px) {
  .treatment.private section.content2 .inner .grid {
    grid-template-columns: 1fr;
  }
}
.treatment.private section.content2 .inner table {
  width: 100%;
  margin-top: 1.25rem;
  align-self: flex-start;
  height: auto;
}
.treatment.private section.content2 .inner table th {
  background-color: var(--blue);
  color: #ffffff;
  padding: 1rem;
  line-height: 1;
  vertical-align: middle;
}
.treatment.private section.content2 .inner table th + th {
  border-left: 1px solid #ffffff;
}
.treatment.private section.content2 .inner table td {
  padding: 0.625rem 1rem;
  background-color: var(--lightBlue);
  text-align: right;
  vertical-align: middle;
  line-height: 2;
}
.treatment.private section.content2 .inner table td + td {
  border-left: 1px solid var(--blue);
}
.treatment.private section.content2 .inner table tr + tr {
  border-top: 1px solid var(--blue);
}
.treatment.private section.content2 .inner .flow_box {
  display: flex;
  gap: 0.6375rem;
  margin-top: 3rem;
}
@media screen and (max-width: 749px) {
  .treatment.private section.content2 .inner .flow_box {
    flex-direction: column;
  }
}
.treatment.private section.content2 .inner .flow_box > :not(.arrow) {
  background-color: var(--lightBlue);
  box-sizing: border-box;
  padding: var(--fs32to20);
  border-radius: 0.625rem;
  flex: 1;
}
.treatment.private section.content2 .inner .flow_box .arrow {
  width: 1em;
  height: 1.25em;
  background: url("../img/common/flow_arrow.svg") no-repeat center/cover;
  font-size: 1.75rem;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .treatment.private section.content2 .inner .flow_box .arrow {
    margin-top: 6.625rem;
  }
}
@media screen and (max-width: 749px) {
  .treatment.private section.content2 .inner .flow_box .arrow {
    transform: rotate(90deg);
  }
}
.treatment.private section.content2 .inner .flow_box h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.6em;
  line-height: 2;
}
.treatment.private section.content2 .inner dl {
  display: flex;
  gap: 1rem;
  line-height: 2;
  margin-top: 2.5rem;
}
.treatment.private section.content2 .inner dl dt {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-weight: bold;
  color: var(--blue);
}
.treatment.private section.content2 .inner dl + dl {
  margin-top: 1em;
}

#modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
}

#modalbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  z-index: 11000;
}

#modal {
  max-width: 1080px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12000;
  box-sizing: border-box;
}
#modal .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90vw;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  #modal .img_box {
    width: 100%;
  }
}
#modal .img_box img {
  width: 100%;
  height: auto;
  margin: auto;
  display: block;
  border-radius: 0.625rem;
}
#modal p {
  font-size: 1rem;
  color: #3c3c3c;
  text-align: center;
}
#modal #close {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 1.25rem;
  width: 10rem;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0.625rem 1.25rem 0.5rem;
  display: flex;
  gap: 0.4375rem;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
#modal #close span {
  font-size: 1.25rem;
  line-height: 1;
}
#modal #close i {
  content: "";
  width: 1em;
  height: 1em;
  font-size: 1rem;
  display: block;
  background: url("../img/common/close.svg") no-repeat center/cover;
}
#modal #close:hover {
  cursor: pointer;
  opacity: 0.8;
}
#modal .btn_box {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  justify-content: center;
}
#modal .btn_box > div {
  box-sizing: border-box;
  gap: 1.25rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#modal .btn_box > div#prev, #modal .btn_box > div#next {
  background: var(--blue);
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/common/modal_arrow.svg") var(--blue) no-repeat center/cover;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
#modal .btn_box > div#prev:hover, #modal .btn_box > div#next:hover {
  opacity: 0.8;
}
#modal .btn_box > div#next {
  transform: rotate(180deg);
}
#modal .btn_box > div#dot {
  display: flex;
  font-size: 0.75rem;
  gap: 1em;
}
#modal .btn_box > div#dot span {
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background-color: #d1d0d0;
  display: block;
  overflow: hidden;
}
#modal .btn_box > div#dot span.active {
  background-color: var(--blue);
}
#modal .btn_box > div#dot span:hover {
  opacity: 0.8;
  background-color: var(--blue);
}
#modal .btn_box > div.disable {
  opacity: 0.4;
  cursor: not-allowed;
}

:root {
  --baseWitdh:1218px;
  --blue: #76c2d3;
  --lightBlue:#f1f9fb;
  --glay:#656464;
  --green:#b4d25a;
  --fs32to20:clamp(20px,3vw,32px);
  --fs20to10:clamp(10px,1.8vw,20px);
  --px64to20:clamp(20px,3vw,64px);
}

/*
.comfortaa-<uniquifier> {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
column-gap: clamp(80px,15vw,128px);
gap:clamp(16px,1.6vw,32px);
gap:clamp(20px,2vw,48px);
gap:clamp(20px,3vw,64px);
*/
/*# sourceMappingURL=style.css.map */