@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  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;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  word-wrap: break-word;
}

button {
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  margin: 0;
}

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

:root {
  --clr_txt: #111;
  --main1: #4B96CF;
  --sub1: #E5F2F8;
  --sub2:#BFDDF0;
  --sub3:#5CAC8D;
  --sub4:#DCDCDC;
  --sub5:#E2F2EC;
  --sub6:#F5F5F5;
  --sub7:#E8F3F6;
  --bg1: #E8F5D8;
  --line1: #DCDCDC;
  --line_table: #DCDCDC;
  --line_menu: #DCDCDC;
  --lcolor: #4B96CF;
  --lcolor_h: #5CAC8D;
  --notes:#D50000;
  --pcolor: #ff6;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.txt_u {
  text-decoration: underline;
}

.txt_s {
  text-decoration: line-through;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.img_c {
  margin: 1rem auto;
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto;
  border-radius: 1rem;
}

img.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
    box-sizing: content-box;
    background: #fff;
    position: relative;
    z-index: 1;
    border-radius: 2rem;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
    box-sizing: content-box;
    background: #fff;
    position: relative;
    z-index: 1;
    border-radius: 2rem;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt40 {
  margin-top: 4rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.main:where(section ~ section) {
  padding-top: 5rem;
}
.main > section {
  margin-top: 5rem;
}
.main > section:where(section ~ section) {
  margin-top: 5rem;
}
.main > section > section {
  margin-top: 4rem;
}
.main > section > section:where(section ~ section) {
  margin-top: 4rem;
}
.main > section > section > section {
  margin-top: 3rem;
}
.main > section > section > section:where(section ~ section) {
  margin-top: 3rem;
}
.main > section > section > section > section {
  margin-top: 3rem;
}
.main > section > section > section > section:where(section ~ section) {
  margin-top: 3rem;
}
.main > section > section > section > section > section {
  margin-top: 2rem;
}
.main > section > section > section > section > section:where(section ~ section) {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main:where(section ~ section) {
    margin-top: 10rem;
  }
  .main > section {
    margin-top: 10rem;
  }
  .main > section:where(section ~ section) {
    margin-top: 10rem;
  }
  .main > section > section {
    margin-top: 8rem;
  }
  .main > section > section:where(section ~ section) {
    margin-top: 8rem;
  }
  .main > section > section > section {
    margin-top: 6rem;
  }
  .main > section > section > section:where(section ~ section) {
    margin-top: 6rem;
  }
  .main > section > section > section > section {
    margin-top: 4rem;
  }
  .main > section > section > section > section:where(section ~ section) {
    margin-top: 4rem;
  }
  .main > section > section > section > section > section {
    margin-top: 3rem;
  }
  .main > section > section > section > section > section:where(section ~ section) {
    margin-top: 3rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption span {
  padding: 0 0.5em;
  margin-right: 0.5em;
  color: var(--main1);
  border: 1px solid;
  border-radius: 0.5rem;
}
.tbl_time tr:not(:last-child) th[scope=row], .tbl_time tr:not(:last-child) td {
  border-bottom: 1px dotted var(--main1);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  background: var(--sub1);
  color: var(--main1);
  border-bottom: 1px solid;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 0.5rem 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 0.5rem 0 0;
}
.tbl_time tr th[scope=row] {
  border-bottom: 1px solid var(--main1);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--main1);
  line-height: 1;
  color: var(--main1);
  font-size: 80%;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 100%;
    margin-top: 1.5rem;
  }
  .tbl_time caption span {
    padding: 0 1em;
    margin-right: 1em;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
    font-size: 100%;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
    border-radius: 1rem 0 0 0;
  }
  .tbl_time tr th[scope=col]:last-child {
    border-radius: 0 1rem 0 0;
  }
  .tbl_time tr td {
    padding: 2rem 0;
    font-size: 100%;
  }
}
.table_0 {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
}
.table_0:not(:first-child) {
  margin-top: 2rem;
}
.table_0:not(:last-child) {
  margin-bottom: 2rem;
}
.table_0 .lst_ul li {
  margin: 0;
}
.table_0 .lst_ul li:not(:last-child) {
  margin: 0;
}
.table_0 caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.5rem;
  font-size: 90%;
}
.table_0:not(:last-child) {
  margin-bottom: 2rem;
}
.table_0 tr:first-child th, .table_0 tr:first-child td {
  border-top: 1px solid var(--line1);
}
.table_0 tr:first-child th:first-child, .table_0 tr:first-child td:first-child {
  border-top-left-radius: 1rem;
}
.table_0 tr:first-child th:last-child, .table_0 tr:first-child td:last-child {
  border-top-right-radius: 1rem;
}
.table_0 tr:last-child th:first-child, .table_0 tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}
.table_0 tr:last-child th:last-child, .table_0 tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}
.table_0 th, .table_0 td {
  border-left: 1px solid var(--line1);
  border-bottom: 1px solid var(--line1);
  padding: 0 0.5rem;
}
.table_0 th:last-child, .table_0 td:last-child {
  border-right: 1px solid var(--line1);
}
.table_0 th[scope=col] {
  background: var(--main1);
  color: #fff;
}
.table_0 th[scope=row] {
  background: var(--sub6);
}
.table_0.price {
  font-size: 90%;
}
.table_0.price th[scope=row] {
  width: 40%;
}
.table_0.price td {
  text-align: center;
}
.table_0.price td:last-child {
  text-align: right;
  white-space: nowrap;
}
.table_0.color tr:nth-child(odd) td {
  background: var(--sub1);
}
.table_0.t-cnter {
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .table_0:not(:first-child) {
    margin-top: 2rem;
  }
  .table_0:not(:last-child) {
    margin-bottom: 2rem;
  }
  .table_0 th, .table_0 td {
    padding: 1rem 1.5rem;
  }
  .table_0.price {
    font-size: 100%;
  }
}
.scroll-hint {
  width: 100%;
  table-layout: inherit;
  white-space: inherit;
  -webkit-overflow-scrolling: touch; /* スマホでなめらかスクロール */
  overflow-x: scroll; /* 横スクロール処理 */
  white-space: nowrap; /* 自動改行させない */
}

@media screen and (min-width: 48em), print {
  .scroll-hint {
    overflow-x: auto; /* 横スクロール処理 */
    white-space: inherit; /* 自動改行させない */
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: var(--main1);
  font-weight: 500;
  padding: 1rem;
  text-align: center;
}

.tit_02 {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 2rem;
  position: relative;
  font-weight: 500;
}
.tit_02::after {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  margin: 1rem auto 0;
}

.top_tit_02 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.top_tit_02 span {
  display: block;
  font-size: 3rem;
  font-family: "Cormorant Infant", sans-serif;
  width: fit-content;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #4B96CF, #8CC9B2) 1;
  font-weight: 500;
  padding: 0.5rem 0;
}

.top_tit_03 {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}
.top_tit_03::before {
  content: "";
  display: block;
  background: url("../img/icon_h3.svg") center center no-repeat;
  background-size: contain;
  aspect-ratio: 35/5;
  height: 0.3rem;
  margin: 0 auto 0.3rem;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #4B96CF, #8CC9B2) 1;
  padding-left: 0.5rem;
  font-weight: 500;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  font-weight: 500;
  color: var(--main1);
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  font-weight: 500;
  color: var(--sub3);
  display: flex;
}
.tit_06::before {
  content: "■";
  margin-right: 0.3rem;
  font-size: 70%;
  margin-top: 0.2em;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 24rem;
    background: url(../img/tit_01.jpg) no-repeat center center/auto;
    font-size: 4rem;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin: 0 auto 4rem;
  }
  .tit_02::after {
    margin-top: 1.6rem;
  }
  .top_tit_02 {
    font-size: 2rem;
    margin-bottom: 6rem;
  }
  .top_tit_02 span {
    font-size: 5.6rem;
  }
  .tit_03 {
    font-size: 3.2rem;
    margin: 0 0 3rem;
    padding: 1.2rem 0;
  }
  .top_tit_03 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
  .top_tit_03::before {
    height: 0.5rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
    padding-left: 1.2rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 1rem;
  }
  .tit_06::before {
    margin-right: 0.8rem;
    font-size: 60%;
    margin-top: 0.4em;
  }
}
.lst_ul {
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
  line-height: 1.7;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--main1);
  position: absolute;
  left: 0;
}
.lst_ul.lst_ul_2 > li::before {
  color: var(--main1);
}
.lst_ul.check > li::before {
  font-family: "fontello";
  content: "\e808";
}
.lst_ul.kome > li {
  padding-left: 1em;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
.lst_ul.notes {
  color: var(--notes);
}
.lst_ul.notes > li::before {
  color: var(--notes);
}

.notes:where(:not(ul)) {
  color: var(--notes);
}

.kome:where(:not(ul)) {
  padding-left: 1em;
  position: relative;
}
.kome:where(:not(ul))::before {
  content: "※";
  position: absolute;
  left: 0;
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: var(--main1);
}

.lst_ol {
  counter-reset: number 0;
}
.lst_ol:not(:first-child) {
  margin: 1em 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number) ".";
  color: var(--main1);
  font-weight: bold;
  position: absolute;
  width: 1.5em;
  text-align: right;
  left: 0;
}
.lst_ol.lst_ol_circle > li::before {
  content: counter(number);
  width: 1.3em;
  aspect-ratio: 1/1;
  line-height: 0;
  padding-bottom: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  font-size: 90%;
  top: 0.2em;
}
@media screen and (min-width: 48em), print {
  .lst_ol.lst_ol_circle > li::before {
    width: 2rem;
    padding-bottom: 0.2rem;
    font-size: 90%;
  }
}

.lst_dl01 dt {
  font-weight: bold;
  color: var(--main1);
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.lst_dl02 dt, .lst_dl01.lst_dl02 dd {
  padding: 0 0.5rem;
}
.lst_dl03 dt, .lst_dl03 dd {
  padding: 0.5rem 1rem;
}
.lst_dl03 dt {
  background: var(--main1);
  color: #fff;
}
.lst_dl03 dd {
  border: 1px solid var(--main1);
}

@media screen and (min-width: 48em), print {
  .lst_ul.lst_ul_col2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  .lst_ul.lst_ul_col2 > li {
    width: calc((100% - 1rem) / 2);
  }
  .lst_ul.lst_ul_col3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  .lst_ul.lst_ul_col3 > li {
    width: calc((100% - 2rem) / 3);
  }
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 6em;
  }
  .lst_dl01 dd {
    width: calc(100% - 6em);
    padding: 0 0 0 1rem;
  }
  .lst_dl01.lst_dl02 dt, .lst_dl01.lst_dl02 dd {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  .lst_dl01.lst_dl02 dt {
    width: 7em;
    text-align: center;
  }
  .lst_dl01.lst_dl02 dd {
    width: calc(100% - 7em);
  }
  .lst_dl03 {
    display: grid;
    grid-template-columns: 15em auto;
    margin: 1em 0;
  }
  .lst_dl03 dt, .lst_dl03 dd {
    padding: 1rem 1.5rem;
  }
  .lst_dl03 dt {
    text-align: center;
  }
  .lst_dl03 dt:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .lst_dl03 dd:not(:first-of-type) {
    border-top: none;
  }
}
.lst_dl_t dt {
  background: var(--main1);
  color: #fff;
  padding: 1rem;
  border: 1px solid var(--main1);
}
.lst_dl_t dd {
  border: 1px solid var(--main1);
  padding: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl_t.lst_dl_t_flex {
    display: flex;
    flex-wrap: wrap;
  }
  .lst_dl_t.lst_dl_t_flex dt {
    width: 10em;
    margin-bottom: 0.5rem;
  }
  .lst_dl_t.lst_dl_t_flex dd {
    width: calc(100% - 10em);
  }
}

.lst_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 1em;
}
.lst_flex li {
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .lst_flex {
    gap: 1rem 3rem;
  }
  .lst_flex li {
    width: auto;
  }
}

.tit_no {
  counter-reset: number 0;
}
.tit_no section, .tit_no div {
  counter-increment: number 1;
}
.tit_no section .no::before, .tit_no div .no::before {
  content: counter(number) ".";
  margin-right: 0.5em;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

.flex2 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
}
.flex2 > section, .flex2 > li, .flex2 > div {
  width: 100%;
}
.flex2.flex2_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 4rem;
}
.flex2.flex2_ul li {
  width: 100%;
}

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    justify-content: space-between;
    gap: 6rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
  }
  .flex2 > section:nth-child(-n+2), .flex2 > li:nth-child(-n+2), .flex2 > div:nth-child(-n+2) {
    margin-top: 0 !important;
  }
  .flex2.flex2_ul {
    gap: 3rem;
    margin-top: 1rem;
  }
  .flex2.flex2_ul li {
    width: auto;
  }
  .flex2.flex2_ul li .btn_detail {
    margin: 0;
  }
  .flex3 {
    justify-content: center;
    gap: 2rem;
  }
  .flex3 li {
    width: 31%;
  }
}
.js-tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.4rem;
}
.js-tel a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.box_ {
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_ {
    padding: 3rem;
  }
}

.btn_rsv {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  color: #fff;
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\f111";
  font-size: 50%;
  line-height: 1;
  padding-top: 0.2rem;
}
.btn_detail {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main1);
  text-decoration: none !important;
  margin: auto;
  width: fit-content;
}
.btn_detail::before {
  font-family: "fontello";
  content: "\e81d";
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 70%;
  margin-right: 0.5rem;
  line-height: 1;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--main1);
  width: 3em;
  height: 3em;
  border-radius: 50%;
}
@media screen and (min-width: 48em), print {
  .btn_detail {
    padding: 0;
  }
  .btn_detail::before {
    width: 100%;
    width: 4rem;
    height: 4rem;
    margin-right: 1.8rem;
  }
  .btn_detail:is(:hover, :focus-visible) {
    opacity: 1;
  }
  .btn_detail:is(:hover, :focus-visible)::before {
    background: var(--main1);
    color: #fff;
  }
}

.btn_detail2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 2rem;
  color: #fff;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  background-color: var(--main1);
  width: fit-content;
  margin: auto;
  border-radius: 1.5em;
  text-decoration: none !important;
}
.btn_detail2::before {
  font-family: "fontello";
  content: "\f111";
  font-size: 50%;
  margin-right: 0.5rem;
  line-height: 1;
  padding-top: 0.2rem;
}
.btn_detail2.line {
  background: var(--lcolor_h);
}
@media screen and (min-width: 48em), print {
  .btn_detail2 {
    padding: 0.8rem 3rem;
    min-width: 28.5rem;
  }
  .btn_detail2:is(:hover, :focus-visible) {
    background-image: none;
  }
  .btn_detail2.line:is(:hover, :focus-visible) {
    background: var(--lcolor);
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: none !important;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 1rem;
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--main1);
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--main1);
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: var(--main1);
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--main1);
}
.slick-dots li button:is(:hover, :focus-visible) {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.slide-items {
  width: 100%;
  height: 100%;
}
.slide-items img {
  width: 100%;
  object-fit: cover;
}

.marker {
  background: linear-gradient(transparent 60%, var(--pcolor) 60%);
  width: fit-content;
}

/* fadeIn */
.fadein {
  opacity: 0;
  transition: 1.2s;
}

.fade_left {
  transform: translate(-80px, 0);
}

.fade_right {
  transform: translate(80px, 0);
}

.fade_up {
  transform: translate(0, 80px);
}

.fade_scale {
  transform: scale(0.5, 0.5);
}

.fadein.parallax {
  opacity: 1;
  transform: translate(0, 0);
}

.txt_box {
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 1rem;
}
.txt_box:last-child {
  margin: 0;
}
.txt_box.txt_box1 {
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
}
.txt_box.txt_box2 {
  background-image: linear-gradient(180deg, #EBF6F2, #D4EBE2);
}

@media screen and (min-width: 48em), print {
  .txt_box {
    padding: 2.5rem 3rem;
    border-radius: 2rem;
  }
}
.nav_menu_box {
  margin-top: 4rem;
}
@media screen and (min-width: 48em), print {
  .nav_menu_box {
    margin-top: 10rem;
  }
}

.nav_menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav_menu li {
  width: calc(100% - 1rem);
  text-align: center;
  margin-top: 0.5rem;
}
.nav_menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: var(--lcolor);
  color: #fff;
  border-radius: 3rem;
  padding: 0.5rem 2em;
  text-decoration: none !important;
  position: relative;
}
.nav_menu li a::after {
  font-family: "fontello";
  content: "\34";
  position: absolute;
  right: 1rem;
  letter-spacing: 0;
}
@media screen and (min-width: 48em), print {
  .nav_menu li {
    width: calc((100% - 3rem) / 4);
  }
  .nav_menu li a {
    height: 6rem;
  }
  .nav_menu li a:hover {
    background: var(--lcolor_h);
    color: #fff !important;
  }
  .nav_menu li a::after {
    right: 1em;
  }
}

.fixed_reserve {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_reserve {
    display: flex;
    gap: 1rem;
    position: fixed;
    right: 12rem;
    bottom: 4rem;
    z-index: 50;
  }
  .fixed_reserve li.rsv a {
    background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  }
  .fixed_reserve li.line a {
    background: var(--lcolor_h);
    width: 28.6rem;
  }
  .fixed_reserve li.line a:is(:hover, :focus-visible) {
    background: var(--lcolor);
  }
  .fixed_reserve li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lcolor);
    color: #fff;
    font-size: 1.8rem;
    width: 24rem;
    height: 6rem;
    padding: 0;
    border-radius: 3rem;
    transition: all 0.3s ease;
  }
  .fixed_reserve li a::before {
    font-family: "fontello";
    content: "\f111";
    font-weight: normal;
    margin-right: 0.5rem;
  }
  .fixed_reserve li a:is(:hover, :focus-visible) {
    background: var(--lcolor_h);
    opacity: 1;
  }
}
.lt1 {
  padding-left: 1em;
  letter-spacing: 1em;
}

.phtxt_box {
  margin-bottom: 2rem;
}
.phtxt_box .ph {
  margin-bottom: 1rem;
}

@media screen and (min-width: 48em), print {
  .phtxt_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 4rem;
  }
  .phtxt_box .ph {
    width: 40rem;
    flex-shrink: 0;
  }
  .phtxt_box .txt {
    flex: 1 1 auto;
  }
  .phtxt_box.phtxt_box_r .ph {
    order: 1;
  }
}
.point::before {
  content: "≫";
  margin-right: 0.5em;
}

.other::after {
  font-family: "fontello";
  content: "\f08e";
  margin-left: 0.5rem;
}

.faq:not(:first-child) {
  margin: 1em 0;
}
.faq:not(:first-child) dt {
  background: var(--main1);
  color: #fff;
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem calc(1.5em + 0.5rem);
  margin-bottom: 0.5rem;
}
.faq:not(:first-child) dt::before {
  content: "Q.";
  margin-right: 0.5rem;
  position: absolute;
  left: 0.5rem;
}
.faq:not(:first-child) dd:not(:last-of-type) {
  margin-bottom: 3rem;
}
.faq:not(:first-child) dd {
  padding: 0.5rem 0.5rem 0.5rem calc(1.5em + 0.5rem);
  position: relative;
}
.faq:not(:first-child) dd::before {
  content: "A.";
  margin-right: 0.5rem;
  position: absolute;
  left: 0.5rem;
  color: var(--main1);
}
@media screen and (min-width: 48em), print {
  .faq:not(:first-child) dt {
    padding-left: calc(1.5em + 1rem);
    padding-right: 1rem;
    margin-bottom: 1rem;
  }
  .faq:not(:first-child) dt::before {
    left: 1rem;
  }
  .faq:not(:first-child) dd:not(:last-of-type) {
    margin-bottom: 4rem;
  }
  .faq:not(:first-child) dd {
    padding-left: calc(1.5em + 1rem);
    padding-right: 1rem;
  }
  .faq:not(:first-child) dd::before {
    left: 1rem;
  }
}

@media print {
  .header {
    position: absolute !important;
  }
}
html {
  font-size: 3.125vw;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(51, 51, 51, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

p:where(:first-of-type) {
  margin-top: 0;
}
p:where(:last-of-type) {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

i {
  font-style: normal;
}

b {
  font-weight: normal;
}

.js-tel {
  font-family: "Cormorant Infant", sans-serif;
}
.js-tel::before {
  content: "tel.";
  font-size: 80%;
  color: var(--main1);
}

.main {
  font-size: 1.4rem;
  line-height: 1.8;
}
.main a:where(:not([class*=btn], [href*="tel:"])) {
  color: var(--lcolor);
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    line-height: 2;
  }
  .main a:where(:not([class*=btn])) img {
    transition: all 0.3s ease;
  }
  .main a:where(:not([class*=btn])):hover {
    opacity: 1;
    text-decoration: none;
    color: var(--lcolor_h);
  }
  .main a:where(:not([class*=btn])):hover img {
    opacity: 0.8;
  }
}
.anchor-target {
  scroll-margin-top: 7rem; /* ヘッダーの高さに合わせて調整 */
}
@media screen and (min-width: 48em), print {
  .anchor-target {
    scroll-margin-top: 12rem;
  }
}

:target {
  scroll-margin-top: 2rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 13rem;
  }
}

.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem 0;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: 0.5s;
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  margin: 5.6rem 0 0;
}

ul.acs_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
  position: relative;
  padding-right: 5.5rem;
}
ul.acs_tel li .js-tel {
  font-size: 1.8rem;
  background: #fff;
  color: var(--main1);
  padding: 0.3rem 1rem;
  align-items: flex-end;
  outline: 1px solid;
  outline-offset: -3px;
  border-radius: 1.5em;
  font-family: "Cormorant Infant", sans-serif;
}
ul.acs_tel li .js-tel::before {
  margin-bottom: 0.3rem;
}
ul.acs_tel li.acs {
  font-size: 1.3rem;
  background: var(--sub1);
  color: var(--clr_txt);
  padding: 0 1rem 0 0;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 1.5em;
}
ul.acs_tel li.acs div {
  padding-bottom: 0.3rem;
}
ul.acs_tel li.acs .station {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 1.5em;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  height: 100%;
}
ul.acs_tel li.acs .toho {
  font-size: 130%;
}
ul.acs_tel li.insta {
  position: absolute;
  right: 0.5rem;
}
ul.acs_tel li.insta a {
  background: #fff;
  display: block;
  padding: 15px;
  border-radius: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .header {
    position: sticky;
    top: 0;
    background: #fff;
    height: 13rem;
    box-sizing: border-box;
    z-index: 100;
  }
  .header > .wrap {
    padding: 1.5rem 6rem 0;
    width: 100%;
    height: 100%;
    min-width: 1200px;
    display: flex;
    justify-content: space-between;
  }
  .header > .wrap .logo {
    width: 35.2rem;
    height: 7rem;
    margin: 1.5rem 0;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    flex: 1 1 auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header > .wrap .headR .acs_tel {
    gap: 2rem;
  }
  .header > .wrap .headR .acs {
    font-size: 1.8rem;
    padding: 0 2.3rem 0 0;
  }
  .header > .wrap .headR .acs .station {
    padding: 0.5rem 2.3rem;
  }
  .header > .wrap .headR .acs .toho {
    font-size: 2.4rem;
  }
  .header > .wrap .headR .js-tel {
    font-size: 2.6rem;
    padding: 0.3rem 2.3rem 0.4rem;
    background: var(--main1);
    color: #fff;
  }
  .header > .wrap .headR .js-tel::before {
    color: #fff;
  }
  ul.acs_tel {
    justify-content: flex-end;
    padding-right: 8rem;
  }
  ul.acs_tel li {
    height: 5rem;
  }
  ul.acs_tel li .js-tel {
    height: 100%;
    font-size: 2.6rem;
  }
  ul.acs_tel li.acs {
    margin-bottom: 0;
  }
  ul.acs_tel li.insta {
    position: absolute;
    right: 0;
    top: -0.5rem;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  transition: 0.5s;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2.6rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(var(--vh, 1vh) * 100 - 8rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  border-radius: 1rem;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
  color: var(--clr_txt);
}
#nav .gnav_subnav .gnav > li a .nav_n, #nav .gnav_subnav .gnav > li .sub .nav_n {
  display: none;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--main1);
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\34";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  color: var(--main1);
}
#nav .gnav_subnav .gnav > li .sub.close {
  color: var(--main1);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\33";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  background: var(--sub1);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  padding: 1rem;
  color: var(--main1);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  font-family: "fontello";
  content: "\e81d";
  margin-right: 0.5rem;
  font-size: 50%;
  width: 2em;
  line-height: 1;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid;
}
#nav .gnav_subnav .gnav > li.beauty a {
  color: var(--sub3);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: var(--main1);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
  border-radius: 1.5em;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: relative;
    z-index: 100;
    transition: 0.8s;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    border-radius: 0;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    width: fit-content;
    background: none;
    position: static;
    margin: 0 0 0 auto;
  }
  #nav .gnav_subnav .gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: none;
    gap: 2rem;
  }
  #nav .gnav_subnav .gnav > li {
    position: relative;
    padding: 0;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: 1.8rem;
    padding: 1.9rem 0.5rem;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 0.8rem;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: var(--main1);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a.close::after, #nav .gnav_subnav .gnav > li .sub.close::after {
    content: "";
    height: 1em;
  }
  #nav .gnav_subnav .gnav > li .sub::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
    background: var(--main1);
  }
  #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible)::after {
    height: 1em;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 100%;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    background: var(--sub1);
    padding: 4rem 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    width: 1200px;
    padding: 0 6rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 25%;
    color: var(--clr_txt);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1rem 0;
    font-size: 1.8rem;
    text-align: left;
    color: var(--main1) !important;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
    font-size: 1.6rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    color: var(--lcolor_h) !important;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current)::before {
    background: var(--lcolor_h) !important;
    color: #fff;
    border-color: var(--lcolor_h) !important;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
@media screen and (min-width: 12rem) and (max-width: 130rem), print {
  #nav .gnav_subnav .gnav {
    gap: 0.7vw;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    font-size: clamp(1.2rem, 0.4vw + 1rem, 1.8rem);
  }
}
.overview {
  margin-top: 4rem;
  padding: 4rem 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
  position: relative;
}
.overview::before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/bg_overview_wave.svg") center top no-repeat;
  background-size: 150%;
}
.overview .clinic_name {
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview .overview_top_r .gaiyo {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview .overview_top_r .gaiyo dt {
  width: 5.5em;
  margin-bottom: 0.4rem;
  color: var(--main1);
  border-right: 1px solid;
}
.overview .overview_top_r .gaiyo dt.lt1 {
  padding-left: 1em;
  letter-spacing: 1em;
}
.overview .overview_top_r .gaiyo dd {
  width: calc(100% - 5.5em);
  padding: 0 0 0 1rem;
  margin-bottom: 0.4rem;
}
.overview .overview_top_r .gaiyo dd .js-tel {
  font-size: 120%;
}
.overview > .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.overview .overviewL, .overview .overviewR {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem 1rem;
  border-radius: 1rem;
  width: 100%;
}
.overview .overviewL .tbl_time {
  margin: 2rem 0;
}
.overview .overviewR p {
  margin: 1em 0;
}
.overview .overviewR img {
  border: 1px solid var(--line1);
  border-radius: 1rem;
}
.overview .overviewR .btn_detail {
  margin-top: 1rem;
}
.overview .footer_bnr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 2rem;
  gap: 1rem;
}

.gmap {
  height: 35rem;
}

.acs_train {
  font-size: 90%;
}
.acs_train li {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin-top: 12rem;
    padding: 12rem 0 8rem;
    font-size: 1.8rem;
  }
  .overview::before {
    background-size: auto;
  }
  .overview .overview_top {
    width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8rem;
  }
  .overview .clinic_name {
    margin: 0;
    width: 56.5rem;
  }
  .overview .clinic_name img {
    max-width: 100%;
  }
  .overview .acs_tel {
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .overview .acs_tel .acs {
    font-size: 1.8rem;
    background: #fff;
    margin: 0;
  }
  .overview .acs_tel .acs .station {
    padding: 1rem 2.1rem;
  }
  .overview .acs_tel .js-tel {
    background: #fff;
    color: var(--main1);
    font-family: "Cormorant Infant", sans-serif;
    font-size: 2.6rem;
    padding: 0.5rem 2rem;
  }
  .overview .overview_top_r {
    flex: 1;
  }
  .overview .overview_top_r .gaiyo dt {
    padding: 0;
  }
  .overview .overview_top_r .gaiyo dt:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .overview .overview_top_r .gaiyo dd {
    padding: 0;
    padding: 0 0 0 2rem;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 57rem;
    padding: 4rem 3rem;
    border-radius: 2rem;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR img {
    width: 80%;
    margin: auto;
  }
  .overview > .wrap .overviewR .btn_detail {
    margin-top: 3rem;
  }
  .overview .footer_bnr {
    margin: 4rem 0 0;
    gap: 1.3rem 1rem;
  }
  .overview .footer_bnr li {
    gap: 2rem;
    height: 9rem;
    width: calc((100% - 6rem) / 4);
  }
  .overview .footer_bnr li a {
    width: fit-content;
    display: block;
    height: 100%;
  }
  .overview .footer_bnr li img {
    height: 100%;
    margin: 0;
    width: auto;
  }
  .overview .footer_bnr .drs {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
  .overview .footer_bnr .drs a {
    margin: auto;
  }
  .overview .footer_bnr .drs img {
    height: auto;
  }
  .gmap {
    height: 45rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
  height: 100%;
  text-align: center;
  width: calc((100% - 5rem) / 2);
}
#tel_up ul li.footer_tel {
  flex: auto;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.8rem;
  width: 5rem;
}
#tel_up ul li.footer_tel::before {
  display: none;
}
#tel_up ul li.footer_tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  gap: 0 0.4rem;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: var(--sub7);
}
#tel_up ul li.footer_tel a span {
  display: block;
  position: absolute;
  left: -100%;
}
#tel_up ul li.footer_tel a::before {
  font-family: "fontello";
  content: "\e801";
  color: var(--main1);
  padding-top: 0.5rem;
  position: absolute;
}
#tel_up ul li .btn_rsv {
  height: 100%;
  display: flex;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  color: #fff;
  border-left: 1px solid;
}
#tel_up ul li .btn_rsv.line {
  background: var(--lcolor_h);
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--main1);
  overflow: hidden;
  position: relative;
  z-index: 101;
  color: var(--main1);
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e81e";
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    height: 6rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    font-size: 2rem;
    border-radius: 50%;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    background: var(--lcolor_h);
    opacity: 1;
    color: #fff;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background-image: linear-gradient(90deg, #76B4DB, #B8DECF);
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 6rem 0 0;
  }
  .footer .copy {
    padding: 3rem 0;
    font-size: 1.8rem;
    width: 1200px;
    margin: 6rem auto 0;
    border-top: 1px solid;
  }
  .footer ul {
    display: block;
    text-align: center;
    color: #fff;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.gnav li:not(:first-child)::before {
    content: "|";
    margin: 0 1rem;
  }
  .footer ul.subnav li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
}
body.index .header {
  position: absolute;
  color: #fff;
  width: 100%;
  z-index: 100;
}
body.index .header > .wrap {
  position: relative;
  z-index: 1;
}
body.index .header > .wrap .logo {
  background: none;
  transition: all 0.3s ease;
}
body.index .header > .wrap .logo a {
  background-image: url("../img/logo-white.svg");
}
body.index .header > .wrap .headR {
  position: absolute;
  top: 24rem;
}
body.index .header.bgcolor > .wrap .logo {
  background: #fff;
}
body.index .header.bgcolor > .wrap .logo a {
  background-image: url("../img/logo.svg");
}
@media screen and (min-width: 48em), print {
  body.index > .wrap {
    width: 100%;
  }
  body.index .header {
    background: none;
    position: fixed;
    transition: all 0.3s ease;
  }
  body.index .header > .wrap .headR {
    position: static;
  }
  body.index .header > .wrap .headR .js-tel {
    background: #fff;
    color: var(--main1);
    transition: all 0.3s ease;
  }
  body.index .header > .wrap .headR .js-tel::before {
    color: var(--main1);
    transition: all 0.3s ease;
  }
  body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li a, body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li .sub {
    color: #fff;
  }
  body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: #fff;
    opacity: 0.8;
  }
  body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li > a, body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li .sub {
    text-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 10px #000, 0 0 10px #000;
  }
  body.index .header > .wrap .headR #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    color: var(--clr_txt);
  }
  body.index .header.bgcolor {
    background: #fff;
  }
  body.index .header.bgcolor > .wrap .headR .js-tel {
    background: var(--main1);
    color: #fff;
  }
  body.index .header.bgcolor > .wrap .headR .js-tel::before {
    color: #fff;
  }
  body.index .header.bgcolor > .wrap .headR #nav .gnav_subnav .gnav > li a, body.index .header.bgcolor > .wrap .headR #nav .gnav_subnav .gnav > li .sub {
    color: var(--clr_txt);
  }
  body.index .header.bgcolor > .wrap .headR #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), body.index .header.bgcolor > .wrap .headR #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: var(--main1);
    opacity: 1;
  }
  body.index .header.bgcolor > .wrap .headR #nav .gnav_subnav .gnav > li > a, body.index .header.bgcolor > .wrap .headR #nav .gnav_subnav .gnav > li .sub {
    text-shadow: none;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl::before {
  content: "";
  display: block;
  background: url("../img/bg_kv_wave.png") center bottom no-repeat;
  background-size: cover;
  position: absolute;
  margin: auto;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1rem;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 30rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 30rem !important;
  object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  position: absolute;
  color: #fff;
  top: 16rem;
  left: 1rem;
  right: 1rem;
  margin: auto;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 0 10px #000, 0 0 10px #000;
}
.keyvsl > .wrap .catch {
  font-size: 1.6rem;
}
.keyvsl > .wrap .catch span {
  font-size: 70%;
}
@media screen and (min-width: 48em), print {
  .keyvsl::before {
    height: 2rem;
    background-size: auto;
  }
  .keyvsl #keyvsl {
    height: 94rem;
  }
  .keyvsl #keyvsl .slick-list div {
    font-size: 0;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 94rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .keyvsl > .wrap .catch {
    max-width: 170rem;
    width: 100%;
    margin: auto;
    font-size: 4.4rem;
    padding-top: 15rem;
  }
  .keyvsl > .wrap .catch span {
    font-size: 3.2rem;
  }
}
.information {
  padding: 8rem 1rem 4rem;
  position: relative;
  z-index: 2;
  background: url("../img/bg_info.jpg") center top no-repeat;
  background-size: cover;
}
.information .information_box {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.information .information_box > div {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 2rem 1rem;
  border-radius: 1rem;
}
.information .information_box img {
  border: 1px solid var(--line1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.information .information_visit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}
.information .top_tit_03 {
  margin-bottom: 1rem;
}
@media screen and (min-width: 48em), print {
  .information {
    padding: 11rem 0 12rem;
    background-size: cover;
  }
  .information .information_box {
    gap: 6rem;
  }
  .information .information_box > div {
    width: 57rem;
    padding: 4rem 3rem;
    border-radius: 2rem;
  }
  .information .information_box img {
    margin: 0 auto 1rem;
  }
  .information .information_box .information_visit {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .information .information_box .information_visit .top_tit_03 {
    margin-bottom: 0;
    width: 28rem;
    flex-shrink: 0;
  }
  .information .information_box .information_visit ul {
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  .information .top_tit_03 {
    margin-bottom: 3rem;
  }
}

.info {
  padding: 4rem 1rem;
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
}
.info .wrap dl {
  max-height: calc(100vw + 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
}
.info .wrap dl dt {
  display: flex;
  align-items: flex-start;
  gap: 0 0.2rem;
  margin: 0 0 0.6rem;
  color: var(--main1);
  cursor: pointer;
}
.info .wrap dl dt::before {
  font-family: "fontello";
  content: "\e80d";
  width: 1.1em;
  text-align: center;
  flex-shrink: 0;
}
.info .wrap dl dt.close::before {
  transform: rotate(180deg);
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line1);
}
.info .wrap dl dd {
  margin: 0 0 1.6rem;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 12rem 0;
  }
  .info .wrap {
    display: flex;
    align-items: flex-start;
  }
  .info .wrap .top_tit_02 {
    width: 31rem;
  }
  .info .wrap .info_box {
    flex: 1;
  }
  .info .wrap dl {
    max-height: 60rem;
    line-height: 1.7;
  }
  .info .wrap dl dt {
    margin: 0 0 1rem;
    font-size: 2.2rem;
  }
  .info .wrap dl dt::before {
    margin-right: 1rem;
  }
  .info .wrap dl dt:not(:first-of-type) {
    margin: 3rem 0 0.6rem;
    padding: 3rem 0 0;
  }
  .info .wrap dl dt:hover div {
    text-decoration: underline;
  }
  .info .wrap dl dd {
    margin: 0 0 1.6rem;
    padding-left: 4.2rem;
  }
  .info .wrap dl dd img {
    width: 95%;
  }
}
.top_column {
  overflow: hidden;
  padding: 1rem;
}
.top_column .swiper {
  /*スライダーの幅と高さを調整*/
  width: min(100%, 600px);
  height: 25rem;
  overflow: visible;
}
.top_column .swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
}
.top_column .swiper_box ul li {
  width: 15rem;
}
.top_column .swiper_box ul li img {
  border-radius: 1rem;
  margin-bottom: 1rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.top_column .swiper_box ul li h3 {
  line-height: 1.5;
  font-size: 100%;
  color: var(--main1);
}
.top_column .swiper_box ul li span {
  font-size: 90%;
}
.top_column .swiper_box .swiper-scrollbar {
  background: var(--sub2);
  height: 1px;
}
.top_column .swiper_box .swiper-scrollbar-drag {
  background: var(--main1);
}
.top_column .btn_detail {
  margin-top: 1rem;
}
@media screen and (min-width: 48em), print {
  .top_column {
    padding: 12rem 0;
  }
  .top_column .top_tit_02 {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .top_column .swiper {
    width: 1200px;
    margin: auto;
    height: 43.3rem;
  }
  .top_column .swiper .swiper-scrollbar-horizontal {
    width: calc(100vw - (50% - 60rem));
    left: calc(50% - 60rem);
    bottom: -5rem;
  }
  .top_column .swiper_box ul li {
    width: 30rem;
    margin: 0;
    box-sizing: content-box;
  }
  .top_column .swiper_box ul li img {
    margin-bottom: 2rem;
    width: 30rem;
    max-width: inherit;
    border-radius: 2rem;
  }
  .top_column .swiper_box ul li h3 {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .top_column .swiper_box ul li span {
    font-size: 1.8rem;
  }
  .top_column .btn {
    width: 1200px;
    margin: 9.7rem auto 0;
  }
  .top_column .btn .btn_detail {
    margin: 0 0 0 auto;
  }
}

.policy {
  margin: 0;
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
  padding: 5rem 0 4rem 1rem;
  position: relative;
}
.policy::before, .policy::after {
  content: "";
  display: block;
  position: absolute;
  background: center center no-repeat;
  background-size: cover;
}
.policy::before {
  background-image: url("../img/index_policy_right.png");
  aspect-ratio: 380/610;
  width: 10rem;
  right: 0;
  top: -1rem;
}
.policy::after {
  background-image: url("../img/index_policy_left.jpg");
  aspect-ratio: 600/970;
  width: 10rem;
  left: 0;
  top: 15rem;
}
.policy h2 {
  color: #fff;
  font-family: "Cormorant Infant", sans-serif;
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 5rem;
  font-weight: 500;
}
.policy h2 span {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  display: block;
  width: fit-content;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.policy .wrap > p {
  position: relative;
  z-index: 1;
  font-size: 130%;
  text-align: left;
  padding-left: 4em;
}
.policy .wrap > p span {
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  font-size: 80%;
  background: url("../img/line_wave.svg") left bottom repeat-x;
  background-size: 4%;
}
.policy .reason {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 2rem 3rem 2rem 2rem;
  border-radius: 1rem 0 0 1rem;
}
.policy .reason h3 {
  font-weight: 500;
  margin-bottom: 2rem;
}
.policy .reason h3 span {
  display: block;
  line-height: 1.5;
}
.policy .reason h3 .tit {
  font-size: 3rem;
  font-family: "Cormorant Infant", sans-serif;
  width: fit-content;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.policy .reason ol {
  counter-reset: number 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.policy .reason ol li {
  counter-increment: number 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.policy .reason ol li i {
  font-style: normal;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 5em;
  line-height: 1.2;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background: radial-gradient(circle, rgb(229, 242, 248) 0%, rgba(229, 242, 248, 0) 80%);
  color: var(--main1);
}
.policy .reason ol li i::after {
  content: counter(number, decimal-leading-zero);
  font-size: 1.4rem;
  display: block;
}
.policy .reason ol li p {
  margin: 0;
}
.policy .reason ol li:nth-child(2n) i {
  background: radial-gradient(circle, rgb(226, 242, 236) 0%, rgba(226, 242, 236, 0) 80%);
  color: var(--sub3);
}
@media screen and (min-width: 48em), print {
  .policy {
    padding: 4.8rem 0 12rem;
  }
  .policy::before {
    width: 100%;
    background-size: auto;
    background-position: left calc(50% + 57rem) top;
    top: -2rem;
    border-radius: 1rem 1rem 0 0;
    right: auto;
    left: 0;
  }
  .policy::after {
    width: 60rem;
    top: 20rem;
    border-radius: 0 2rem 2rem 0;
    left: auto;
    right: calc(50% + 40rem);
  }
  .policy h2 {
    font-size: 20rem;
    line-height: 1;
  }
  .policy h2 span {
    font-size: 4rem;
    bottom: -1rem;
  }
  .policy .wrap {
    width: 100%;
  }
  .policy .wrap > p {
    font-size: 4rem;
    line-height: 1.6;
    margin: 4rem 0 8rem;
    text-align: center;
    padding-left: 0;
  }
  .policy .wrap > p span {
    font-size: 3.2rem;
    background-size: auto;
    margin-bottom: 3rem;
  }
  .policy .reason {
    border-radius: 2rem 0 0 2rem;
    margin-left: calc(50% - 60rem);
    padding: 6rem calc(50% - 60rem) 6rem 31rem;
    position: relative;
  }
  .policy .reason h3 {
    position: absolute;
    left: 6rem;
    top: 6rem;
  }
  .policy .reason h3 .tit {
    font-size: 5.6rem;
    margin-bottom: 3rem;
  }
  .policy .reason h3 .txt {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: auto;
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
  .policy .reason ol {
    gap: 2rem;
  }
  .policy .reason ol li {
    font-size: 2rem;
    gap: 1rem;
  }
  .policy .reason ol li i {
    width: 10rem;
    font-size: 1.6rem;
  }
  .policy .reason ol li i::after {
    font-size: 2.8rem;
  }
  .policy .reason ol li:nth-child(3n+2), .policy .reason ol li:nth-child(3n) {
    margin-left: 4rem;
  }
}

.index_greeting {
  padding: 0 1rem;
  background: url("../img/bg_mark.svg") left bottom no-repeat;
  background-size: contain;
}
.index_greeting .img {
  text-align: center;
}
.index_greeting .img img {
  border: 1px solid var(--line1);
  border-radius: 1rem;
  width: 60%;
  margin: 0 auto 1rem;
}
.index_greeting .img b {
  font-weight: 500;
}
.index_greeting .img span {
  font-size: 130%;
}
.index_greeting .img {
  margin-bottom: 1rem;
}
.index_greeting .txt h3 {
  font-weight: 500;
  width: fit-content;
  background-image: linear-gradient(90deg, #4B96CF, #8CC9B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 48em), print {
  .index_greeting {
    padding: 13rem 0 12rem;
    background: none;
    position: relative;
    overflow: hidden;
  }
  .index_greeting::before {
    content: "";
    display: block;
    right: calc(50% + 30.2rem);
    position: absolute;
    bottom: -4rem;
    width: 69.8rem;
    height: 86rem;
    background: url("../img/bg_mark.svg") center top no-repeat;
    background-size: contain;
  }
  .index_greeting .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .index_greeting .wrap .top_tit_02 {
    width: 100%;
  }
  .index_greeting .img {
    width: 40rem;
    order: 1;
  }
  .index_greeting .img img {
    width: 100%;
    border-radius: 2rem;
  }
  .index_greeting .img b {
    font-size: 2.4rem;
  }
  .index_greeting .img b span {
    font-size: 3.2rem;
  }
  .index_greeting .txt {
    width: 72rem;
  }
  .index_greeting .txt h3 {
    font-size: 3.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
  }
  .index_greeting .txt .btn_detail {
    margin: 4rem auto 0 0;
  }
}
.tre {
  padding: 4rem 1rem;
  background: url("../img/bg_menu.jpg") center top no-repeat;
  background-size: cover;
}
.tre .wrap > div {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem;
  border-radius: 1rem;
}
.tre .top_tit_02 {
  text-align: center;
}
.tre .top_tit_02 span {
  margin: auto;
}
.tre .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tre .subnav li {
  width: calc((100% - 1rem) / 2);
}
.tre .subnav li a {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  aspect-ratio: 1/1;
  height: 100%;
  font-size: 1.3rem;
  padding: 1rem;
  border-radius: 1rem;
  line-height: 1.3;
  color: var(--main1);
  border: 1px solid;
  padding-top: 60%;
}
.tre .subnav li a::before {
  font-family: "fontello";
  content: "\f111";
  font-size: 60%;
}
.tre .subnav li a::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  line-height: 1;
  order: -1;
  aspect-ratio: 1/1;
  background: center center no-repeat;
  background-size: contain;
  width: 50%;
  margin: auto;
  position: absolute;
  top: 1.5rem;
}
.tre .subnav .dermatology a::after {
  background-image: url("../img/tre_insurance01.svg");
}
.tre .subnav .plastic_surgery a::after {
  background-image: url("../img/tre_insurance02.svg");
}
.tre .subnav .pediatric_dermatology a::after {
  background-image: url("../img/tre_insurance03.svg");
}
.tre .subnav .allergy_department a::after {
  background-image: url("../img/tre_insurance04.svg");
}
.tre .subnav .picolaser a::after {
  background-image: url("../img/tre_beauty_01.svg");
}
.tre .subnav .botox a::after {
  background-image: url("../img/tre_beauty_02.svg");
}
.tre .subnav .vbeam a::after {
  background-image: url("../img/tre_beauty_03.svg");
}
.tre .subnav .peeling a::after {
  background-image: url("../img/tre_beauty_04.svg");
}
.tre .subnav .aga a::after {
  background-image: url("../img/tre_beauty_05.svg");
}
.tre .subnav .woman a::after {
  background-image: url("../img/tre_beauty_06.svg");
}
.tre .subnav .wart a::after {
  background-image: url("../img/tre_beauty_07.svg");
}
.tre .subnav .cosmetics a::after {
  background-image: url("../img/tre_beauty_08.svg");
}
.tre .subnav .isotretinoin a::after {
  background-image: url("../img/tre_beauty_09.svg");
}
.tre .subnav .earrings a::after {
  background-image: url("../img/tre_beauty_10.svg");
}
.tre .subnav .light_therapy a::after {
  background-image: url("../img/tre_beauty_11.svg");
}
.tre .subnav .hife a::after {
  background-image: url("../img/tre_beauty_12.svg");
}
.tre .subnav .electroporation a::after {
  background-image: url("../img/tre_beauty_13.svg");
}
.tre .subnav .water a::after {
  background-image: url("../img/tre_beauty_14.svg");
}
.tre .subnav .dermapen a::after {
  background-image: url("../img/tre_beauty_15.svg");
}
.tre .subnav .skin a::after {
  background-image: url("../img/tre_beauty_16.svg");
}
.tre .subnav .injection a::after {
  background-image: url("../img/tre_beauty_17.svg");
}
.tre .subnav .permanent a::after {
  background-image: url("../img/tre_beauty_18.svg");
}
.tre .subnav .internal a::after {
  background-image: url("../img/tre_beauty_19.svg");
}
.tre .subnav .others a::after {
  background-image: url("../img/tre_beauty_20.svg");
}
.tre .insurance {
  margin-bottom: 2rem;
}
.tre .beauty li a {
  color: var(--sub3);
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 11rem 0 12rem;
  }
  .tre .top_tit_02 {
    margin-bottom: 7rem;
  }
  .tre .wrap > div {
    padding: 4rem 4.5rem;
  }
  .tre .subnav {
    gap: 3rem;
  }
  .tre .subnav li {
    width: 25.5rem;
  }
  .tre .subnav li a {
    font-size: 2.2rem;
    border-radius: 2rem;
  }
  .tre .subnav li a::after {
    width: 12rem;
    top: 2rem;
    transition: all 0.3s ease;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--main1);
    color: #fff;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current)::after {
    filter: brightness(0) invert(1);
  }
  .tre .beauty li a:is(:hover, :focus-visible, .current) {
    background: var(--sub3);
  }
}
.symptom {
  margin: 4rem 1rem;
}
.symptom .top_tit_02 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.symptom .top_tit_02 span {
  margin: auto;
}
.symptom .tab-list {
  display: flex;
  width: 100%;
}
.symptom .tab-list .tab-list-item {
  width: 50%;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.symptom .tab-list .tab-list-item.is-btn-active {
  opacity: 1;
}
.symptom .tab-list .insurance {
  color: var(--main1);
}
.symptom .tab-list .beauty {
  color: var(--sub3);
}
.symptom .tab-contents {
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
}
.symptom .tab-contents li {
  width: calc((100% - 1rem) / 2);
}
.symptom .tab-contents li a {
  background: var(--sub1);
  color: var(--main1);
  padding: 0.8rem 0 0.8rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  height: 100%;
  line-height: 1.3;
}
.symptom .tab-contents li a::before {
  font-family: "fontello";
  content: "\f111";
  font-size: 60%;
  margin-right: 0.3rem;
}
.symptom .tab-contents .insect_bite a, .symptom .tab-contents .sunburn a, .symptom .tab-contents .nail a, .symptom .tab-contents .mole a, .symptom .tab-contents .boils a {
  pointer-events: none;
}
.symptom .tab-contents.is-contents-active {
  display: flex;
}
.symptom .tab-contents.beauty li a {
  background: var(--sub5);
  color: var(--sub3);
  pointer-events: none;
}
@media screen and (min-width: 48em), print {
  .symptom {
    margin: 12rem 0 12rem;
  }
  .symptom .tab-list {
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
  .symptom .tab-list .tab-list-item {
    padding: 0 0 1.8rem;
  }
  .symptom .tab-contents {
    gap: 2rem;
  }
  .symptom .tab-contents li {
    width: calc((100% - 6rem) / 4);
  }
  .symptom .tab-contents li a {
    font-size: 2.2rem;
    padding: 1.5rem;
    border-radius: 2rem;
  }
  .symptom .tab-contents li a::before {
    margin-right: 1rem;
    padding-top: 0.3rem;
    line-height: 1;
  }
  .symptom .tab-contents li a:is(:hover, :focus-visible) {
    background: var(--main1);
    color: #fff;
  }
  .symptom .tab-contents.beauty li a:is(:hover, :focus-visible) {
    background: var(--sub3);
  }
}

.feature {
  padding: 4rem 2rem;
  position: relative;
}
.feature::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: top right no-repeat;
  background-size: 3rem;
  left: 0;
  top: 1rem;
}
.feature .wrap {
  position: relative;
  z-index: 1;
}
.feature h2 {
  font-weight: 500;
  line-height: 1.5;
}
.feature ol {
  counter-reset: number 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
}
.feature ol li {
  counter-increment: number 1;
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.feature ol li::before {
  content: "";
  display: block;
  aspect-ratio: 46/28;
  background: center center no-repeat;
  background-size: cover;
}
.feature ol li h3 {
  margin-bottom: 1rem;
  font-weight: 500;
}
.feature ol li div {
  position: relative;
  padding: 1rem 1rem 1.5rem;
}
.feature ol li i {
  font-style: normal;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 1;
  right: 1rem;
  text-align: center;
  line-height: 1.3;
  font-size: 1rem;
  top: 0.5rem;
}
.feature ol li i::before {
  content: "";
  display: block;
  position: absolute;
  width: 70%;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  left: -2rem;
  top: -0.5rem;
}
.feature ol li i::after {
  content: counter(number, decimal-leading-zero);
  display: block;
  font-size: 2rem;
}
.feature ol li p {
  margin: 0;
}
.feature ol .feature1_total::before {
  background-image: url("../img/index_feature1_01.jpg");
}
.feature ol .feature1_dermatology::before {
  background-image: url("../img/index_feature1_02.jpg");
}
.feature ol .feature1_both::before {
  background-image: url("../img/index_feature1_03.jpg");
}
.feature ol .feature1_day::before {
  background-image: url("../img/index_feature1_04.jpg");
}
.feature ol .feature1_laser::before {
  background-image: url("../img/index_feature1_05.jpg");
}
.feature ol .feature2_botox::before {
  background-image: url("../img/index_feature2_01.jpg");
}
.feature ol .feature2_laser::before {
  background-image: url("../img/index_feature2_02.jpg");
}
.feature ol .feature2_dermatron::before {
  background-image: url("../img/index_feature2_03.jpg");
}
.feature ol .feature2_beam::before {
  background-image: url("../img/index_feature2_04.jpg");
}
.feature ol .feature2_suggestion::before {
  background-image: url("../img/index_feature2_05.jpg");
}
.feature.feature1 {
  background: url("../img/bg_feature1.jpg") left top no-repeat;
  background-size: auto 100%;
  background-attachment: fixed;
}
.feature.feature1::before {
  background-image: url("../img/bg_feature1_txt.svg");
}
.feature.feature1 ol li {
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
}
.feature.feature1 ol li i {
  color: var(--main1);
}
.feature.feature1 h2 {
  color: var(--main1);
}
.feature.feature2 h2 {
  color: var(--sub3);
}
.feature.feature2::before {
  background-image: url("../img/bg_feature2_txt.svg");
}
.feature.feature2 ol li {
  background-image: linear-gradient(180deg, #EBF6F2, #D4EBE2);
}
.feature.feature2 ol li i {
  color: var(--sub3);
}
.feature.feature2 {
  background: url("../img/bg_feature2.jpg") left top no-repeat;
  background-size: auto 100%;
  background-attachment: fixed;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 12rem 0;
  }
  .feature::before {
    max-width: 142rem;
    margin: auto;
    left: 0;
    right: 0;
    background-size: auto;
  }
  .feature .wrap {
    display: flex;
    align-items: flex-start;
  }
  .feature .wrap > div {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    display: flex;
    align-items: flex-end;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    position: sticky;
    top: 14rem;
  }
  .feature .wrap > div h2 {
    font-size: 3.2rem;
  }
  .feature .wrap > div p {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 4rem;
  }
  .feature ol {
    margin: 0 0 0 auto;
    width: 100rem;
    gap: 8rem;
  }
  .feature ol li {
    width: 46rem;
    border-radius: 2rem;
    position: relative;
  }
  .feature ol li:nth-child(2n) {
    top: 8rem;
  }
  .feature ol li i {
    font-size: 1.6rem;
    right: 4rem;
    line-height: 1;
  }
  .feature ol li i::before {
    width: 4rem;
    left: -3rem;
  }
  .feature ol li i::after {
    font-size: 3.2rem;
    margin-top: 0.5rem;
    top: 1rem;
  }
  .feature ol li div {
    padding: 4rem;
  }
  .feature ol li div h3 {
    font-size: 2.4rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}
.top_treatment {
  margin: 4rem 1rem;
}
.top_treatment .treatment_lst {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.top_treatment .treatment_lst li {
  width: 100%;
}
.top_treatment .treatment_lst a {
  text-decoration: none;
  padding: 1rem;
  color: var(--clr_txt);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1rem;
  height: 9em;
  background: center right no-repeat;
  background-size: cover;
}
.top_treatment .treatment_lst a::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-image: linear-gradient(180deg, #EFF7FB, #D8EAF6);
  width: 100%;
  border-radius: 50%;
  position: absolute;
  left: -35%;
  top: 50%;
  transform: translateY(-50%);
}
.top_treatment .treatment_lst a::after {
  font-family: "fontello";
  content: "\e81d";
  line-height: 1;
  aspect-ratio: 1/1;
  font-size: 80%;
  color: #fff;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border-radius: 50%;
  background: var(--main1);
  width: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main1);
  transition: all 0.3s ease;
}
.top_treatment .treatment_lst a h3 {
  font-weight: 500;
  color: var(--main1);
  line-height: 1.5;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.top_treatment .treatment_lst a p {
  margin: 0;
  position: relative;
  z-index: 1;
}
.top_treatment .treatment_lst .uvb a {
  background-image: url("../img/index_treatment01.jpg");
}
.top_treatment .treatment_lst .day a {
  background-image: url("../img/index_treatment02.jpg");
}
.top_treatment .treatment_lst .beam a {
  background-image: url("../img/index_treatment03.jpg");
}
.top_treatment .treatment_lst .laser a {
  background-image: url("../img/index_treatment04.jpg");
}
@media screen and (min-width: 48em), print {
  .top_treatment {
    margin: 12rem 0;
  }
  .top_treatment .treatment_lst {
    gap: 4rem 6rem;
    margin-bottom: 6rem;
  }
  .top_treatment .treatment_lst li {
    width: 57rem;
  }
  .top_treatment .treatment_lst li a {
    height: 22rem;
    padding: 4rem 3rem;
    border-radius: 2rem;
  }
  .top_treatment .treatment_lst li a::before {
    width: 60rem;
    left: -25rem;
    transition: all 0.3s ease;
  }
  .top_treatment .treatment_lst li a::after {
    right: 2rem;
    bottom: 2rem;
  }
  .top_treatment .treatment_lst li a h3 {
    height: 4em;
    font-size: 2.4rem;
  }
  .top_treatment .treatment_lst li a:is(:hover, :focus-visible) h3 {
    color: #fff;
  }
  .top_treatment .treatment_lst li a:is(:hover, :focus-visible) {
    color: #fff;
  }
  .top_treatment .treatment_lst li a:is(:hover, :focus-visible)::before {
    background: var(--main1);
    color: #fff;
  }
  .top_treatment .treatment_lst li a:is(:hover, :focus-visible)::after {
    background: #fff;
    color: var(--main1);
  }
}

.cooperation {
  padding: 4rem 0 4rem 8rem;
  position: relative;
}
.cooperation::before {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("../img/index_cooperation.jpg") right bottom no-repeat;
  background-size: cover;
  border-radius: 0 1rem 1rem 0;
}
.cooperation .wrap {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem 0 0 1rem;
}
.cooperation ul li {
  border-bottom: 1px solid var(--line1);
}
.cooperation a {
  text-decoration: none;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.cooperation a::after {
  font-family: "fontello";
  content: "\e81d";
  display: inline-block;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 48em), print {
  .cooperation {
    padding: 4rem 0;
  }
  .cooperation::before {
    width: 50%;
    left: 0;
    height: 70rem;
    border-radius: 0 2rem 2rem 0;
  }
  .cooperation .wrap {
    margin: auto;
    background: none;
    padding: 0 0 0 68rem;
  }
  .cooperation a {
    font-size: 2.4rem;
    padding: 2rem;
  }
}

body:where(:not(.index)) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:where(:not(.index)) .breadnav a {
  color: var(--lcolor);
}
body:where(:not(.index)) .main {
  margin: 0 1rem 6rem;
}
body:where(:not(.index)) .main .js-tel {
  font-size: 120%;
}
body:where(:not(.index)) .main .js-tel::before {
  color: var(--main1);
}
body:where(:not(.index)) .main img {
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  body:where(:not(.index)) .breadnav a:is(:hover, :focus-visible) {
    color: var(--lcolor_h);
  }
  body:where(:not(.index)) .main {
    width: 100rem;
    margin: 0 auto 8rem;
  }
  body:where(:not(.index)) .main img {
    border-radius: 2rem;
  }
  body:where(:not(.index)) .main .cf .img_l, body:where(:not(.index)) .main .cf .img_r {
    max-width: 35%;
    height: auto;
  }
  body:where(:not(.index)) .main .cf .img_l.img_s, body:where(:not(.index)) .main .cf .img_r.img_s {
    max-width: 30%;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
@media screen and (min-width: 48em), print {
  .doctor .img_r {
    width: 35%;
  }
}

.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--main1);
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--main1);
}
.gallery .gallery_thum .slick-track {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 48em), print {
  .device {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .device li {
    width: 32%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 48em), print {
  .first .flex2 {
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  .first .flex2 li {
    width: auto;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow dt {
  counter-increment: number 1;
  position: relative;
  padding-left: 1.8em;
  padding: 1rem 1rem 1rem calc(1.8em + 2rem);
  display: flex;
  align-items: center;
  border: solid var(--sub2);
  border-width: 2px 2px 0;
  border-radius: 1rem 1rem 0 0;
}
.lst_flow dt::before {
  display: inline-block;
  content: counter(number);
  color: #fff;
  border-radius: 50%;
  background: var(--main1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  font-weight: bold;
  position: absolute;
  left: 1rem;
  line-height: 1;
}
.lst_flow dd {
  margin: 0;
  position: relative;
  padding: 0 1rem 1rem;
  border: solid var(--sub2);
  border-width: 0 2px 2px;
  border-radius: 0 0 1rem 1rem;
}
.lst_flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: var(--sub2);
  height: 2rem;
  width: 4rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(180deg);
  margin: auto;
}
.lst_flow > li {
  counter-increment: number 1;
  position: relative;
  padding: 1rem;
  border: 2px solid var(--sub2);
  border-radius: 1rem;
}
.lst_flow > li .tit_lst_flow {
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2.3em;
}
.lst_flow > li .tit_lst_flow::before {
  display: inline-block;
  content: counter(number);
  color: #fff;
  background: var(--main1);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  width: 2em;
  aspect-ratio: 1/1;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.lst_flow > li p:first-of-type {
  margin-top: 0;
}
.lst_flow > li:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: var(--sub2);
  height: 2rem;
  width: 4rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(180deg);
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow dt {
    padding: 4rem 4rem 2rem calc(2.5em + 4rem);
    font-size: 2.4rem;
    border-radius: 2rem 2rem 0 0;
  }
  .lst_flow dt::before {
    left: 4rem;
  }
  .lst_flow dd {
    padding: 0 4rem 4rem;
    border-radius: 0 0 2rem 2rem;
  }
  .lst_flow dd:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow dd:not(:last-child)::after {
    bottom: -7rem;
    width: 6rem;
    height: 3rem;
  }
  .lst_flow > li {
    padding: 3rem;
    border-radius: 2rem;
  }
  .lst_flow > li .tit_lst_flow {
    font-size: 2rem;
    padding-left: 3em;
  }
  .lst_flow > li .tit_lst_flow::before {
    font-size: 2.5rem;
    width: 2em;
    padding-bottom: 0.4rem;
  }
  .lst_flow > li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow > li:not(:last-child)::after {
    bottom: -7rem;
    width: 6rem;
    height: 3rem;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
body.access .main .mov {
  margin-top: 2rem;
}
body.access .main .mov iframe {
  aspect-ratio: 4/2.24;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .js-tel {
    font-size: 2.5rem;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
  body.access .main .mov {
    width: 80%;
    margin: 3rem auto 0;
  }
}

.anc li {
  display: flex;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.anc li::before {
  font-family: "fontello";
  content: "\e80c";
  color: var(--clr_txt);
  margin-right: 0.4rem;
}
.anc li a {
  color: var(--clr_txt);
  display: inline-block;
  text-decoration: none !important;
}

@media screen and (min-width: 48em), print {
  .anc {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 2rem;
  }
  .anc li {
    font-size: 110%;
    margin: 0 0 1.6rem;
  }
  .anc li::before {
    margin-right: 0.8rem;
  }
  .anc li a:hover {
    text-decoration: underline !important;
  }
}
body.vaccination .table_1 tr {
  display: flex;
  flex-wrap: wrap;
}
body.vaccination .table_1 th, body.vaccination .table_1 td {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  font-size: 90%;
}
body.vaccination .table_1 th {
  justify-content: center;
}
body.vaccination .table_1 th[scope=col]:first-child {
  width: 100%;
}
body.vaccination .table_1 th[scope=col]:nth-child(2) {
  width: 45%;
}
body.vaccination .table_1 th[scope=col]:nth-child(3) {
  width: 55%;
}
body.vaccination .table_1 th[scope=row] {
  width: 100%;
}
body.vaccination .table_1 td {
  display: block;
}
body.vaccination .table_1 td:nth-child(2) {
  width: 45%;
}
body.vaccination .table_1 td:nth-child(3) {
  width: 55%;
}
@media screen and (min-width: 48em), print {
  body.vaccination .table_1 tr {
    display: table-row;
  }
  body.vaccination .table_1 th, body.vaccination .table_1 td {
    display: table-cell;
    font-size: 100%;
  }
  body.vaccination .table_1 th {
    justify-content: center;
  }
  body.vaccination .table_1 th[scope=col]:first-child {
    width: 30%;
  }
  body.vaccination .table_1 th[scope=col]:nth-child(2) {
    width: 30%;
  }
  body.vaccination .table_1 th[scope=col]:nth-child(3) {
    width: 40%;
  }
  body.vaccination .table_1 th[scope=row] {
    width: 30%;
  }
  body.vaccination .table_1 td:nth-child(2) {
    width: 30%;
  }
  body.vaccination .table_1 td:nth-child(3) {
    width: 40%;
  }
}

@counter-style p-decimal {
  system: extends decimal;
  prefix: "";
  suffix: " ) ";
  speak-as: number;
}
@counter-style p-brackets {
  system: extends decimal;
  prefix: "(";
  suffix: ") ";
  speak-as: number;
}
.privacypolicy .lead {
  margin-bottom: 4.5rem;
}
.privacypolicy h2, .privacypolicy h3 {
  margin-bottom: 0.5em;
}
.privacypolicy ul ul, .privacypolicy ul ol, .privacypolicy ol ul, .privacypolicy ol ol {
  margin-block: 0.5em;
}
.privacypolicy .lst_ul > li::before {
  color: inherit;
  transform: scale(0.4);
  content: "●";
}
.privacypolicy .lst_ol > li {
  list-style-type: p-decimal;
  padding: 0;
  margin-left: 1.4em;
}
.privacypolicy .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
.privacypolicy .lst_ol > li::before {
  content: none;
}
.privacypolicy .lst_ol > li:not(:last-child) {
  margin-left: 1.4em;
}
.privacypolicy .lst_ol > li .lst_ol > li {
  list-style-type: p-brackets;
  padding: 0;
  margin-left: 2em;
}
.privacypolicy .lst_ol > li .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
.privacypolicy .lst_ol > li .lst_ol > li::before {
  content: none;
}
.privacypolicy .lst_ol > li .lst_ol > li:not(:last-child) {
  margin-left: 2em;
}
.privacypolicy .dl_num dt ~ dt {
  margin-top: 0.8em;
}
.privacypolicy .dl_num > dd {
  padding-left: 1.5em;
}
@media screen and (min-width: 48em), print {
  .privacypolicy .lead {
    margin-bottom: 90px;
  }
  .privacypolicy .pp_sign {
    margin-top: 100px;
  }
  .privacypolicy .pp_contactus {
    margin-top: 25px;
  }
  .privacypolicy .pp_contactus div {
    text-align: right;
  }
}

.dermatology .flex3 {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.dermatology .flex3 li {
  width: calc((100% - 4rem) / 3);
  margin: 0;
  text-align: center;
}
.dermatology .flex3 li img {
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .dermatology .flex3 li img {
    border-radius: 2rem;
  }
}/*# sourceMappingURL=style.css.map */