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

.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: 0 0 1em;
}
p:last-child {
  margin: 0;
}

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

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

:root {
  --clr_txt: #333;
  --rgb_txt: 51 51 51;
  --clr_green_dark: #189856;
  --rgb_green_dark: 24 152 86;
  --clr_green_dark2: #288E3A;
  --rgb_green_dark2: 40 142 58;
  --clr_green: #84C255;
  --rgb_green: 132 194 85;
  --clr_green_light: #DBEDCE;
  --rgb_green_light: 219 237 206;
  --clr_green_light2: #EDF6E6;
  --rgb_green_light2: 237 246 230;
  --clr_green_light3: #F4F9F0;
  --rgb_green_light3: 244 249 240;
  --clr_green_light4: #A7D385;
  --rgb_green_light4: 167 211 133;
  --clr_yellow_dark: #F2B900;
  --rgb_yellow_dark: 242 185 0;
  --clr_yellow: #FBEBB6;
  --rgb_yellow: 251 235 182;
  --clr_yellow_light: #F8F5ED;
  --rgb_yellow_light: 248 245 237;
  --clr_yellow_light2: #FDF9E9;
  --rgb_yellow_light2: 253 249 233;
  --clr_pink_dark: #D14679;
  --rgb_pink_dark: 209 70 121;
  --clr_pink_dark2: #F44865;
  --rgb_pink_dark2: 244 72 101;
  --clr_pink: #E284A6;
  --rgb_pink: 226 132 166;
  --clr_brown: #926643;
  --rgb_brown: 146 102 67;
  --clr_gray: #CCCCCC;
  --rgb_gray: 204 204 204;
  --breakpoint: 576px;
}

:root {
  --padding100: calc((100% - 100rem) / 2);
}

:root {
  --padding110: calc((100% - 110rem) / 2);
}

:root {
  --padding120: calc((100% - 120rem) / 2);
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}
@keyframes fuwafuwa-pc {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}
.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;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_green {
  color: var(--clr_green_dark2) !important;
}

.txt_green2 {
  color: var(--clr_green) !important;
}

.txt_yellow {
  color: var(--clr_yellow_dark) !important;
}

.txt_strong {
  background: linear-gradient(to bottom, transparent 60%, var(--clr_yellow) 60%);
}

.img_c {
  margin: 1rem auto;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  .img_c {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto 2rem;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  .img_l, .img_r {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}

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

.img_wrap img {
  width: auto;
  max-width: 90%;
  margin: auto;
}
.img_wrap img:not(:last-of-type) {
  margin: 0 auto 2rem;
}

.bnr {
  display: block;
  width: fit-content;
  margin: auto;
}

@media screen and (min-width: 36em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 0;
  }
  .img_wrap img {
    margin: 0;
    max-width: 48%;
  }
  .img_wrap img:not(:last-of-type) {
    margin: 0;
  }
}
.sp_n {
  display: none;
}

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

.mt40 {
  margin-top: 4rem !important;
}

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

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

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

body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
  margin-top: 5rem;
}
body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
  margin-top: 4rem;
}
body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
  margin-top: 3rem;
}
body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

.mth2 {
  margin-top: 5rem !important;
}

.mth3 {
  margin-top: 4rem !important;
}

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

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

@media screen and (min-width: 36em), print {
  .mt50 {
    margin-top: 10rem !important;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: clamp(6rem, 2.3077rem + 6.41vw, 10rem);
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: clamp(5rem, 2.2308rem + 4.808vw, 8rem);
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: clamp(4rem, 2.1538rem + 3.205vw, 6rem);
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: clamp(3rem, 2.0769rem + 1.603vw, 4rem);
  }
  .mth2 {
    margin-top: clamp(6rem, 2.3077rem + 6.41vw, 10rem) !important;
  }
  .mth3 {
    margin-top: clamp(5rem, 2.2308rem + 4.808vw, 8rem) !important;
  }
  .mth4 {
    margin-top: clamp(4rem, 2.1538rem + 3.205vw, 6rem) !important;
  }
  .mth5 {
    margin-top: clamp(3rem, 2.0769rem + 1.603vw, 4rem) !important;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.3rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media screen and (min-width: 36em), print {
  .tbl_time {
    border-radius: 1rem 1rem 0 0;
  }
}
.tbl_time {
  overflow: hidden;
  letter-spacing: 0.025em;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 1em;
}
.tbl_time caption p span {
  border: 1px solid var(--clr_green);
  border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
}
@media screen and (min-width: 36em), print {
  .tbl_time caption p span {
    border-radius: 0.6rem 0.6rem 0.6rem 0.6rem;
  }
}
.tbl_time caption p span {
  display: inline-block;
  margin: 0 1.2em 0 0;
  padding: 0 0.8em;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  background: var(--clr_green);
  color: #fff;
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 30%;
}
.tbl_time tr th[scope=row] {
  font-weight: 400;
  border-bottom: 1px solid var(--clr_gray);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--clr_gray);
  line-height: 1;
  color: var(--clr_green_dark);
}

@media screen and (min-width: 36em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .tbl_time tr th[scope=col] {
    padding: 0.6em 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 22%;
  }
  .tbl_time tr th[scope=col]:last-child {
    width: 11.5%;
    padding-right: clamp(0.1em, -1.192em + calc(0.224em * 1vw / 1px), 1.5em);
  }
  .tbl_time tr td {
    padding: 1.3em 0;
  }
  .tbl_time tr td:last-child {
    padding-right: clamp(0.1em, -1.192em + calc(0.224em * 1vw / 1px), 1.5em);
  }
}
.tbl_basic {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.tbl_basic tr th {
  border: 1px solid #ccc;
  padding: 0.4rem;
}
.tbl_basic tr th[scope=col] {
  background: var(--clr_txt);
  color: #fff;
}
.tbl_basic tr th[scope=row] {
  background: #ccc;
}
.tbl_basic tr td {
  padding: 0.4rem;
  border: 1px solid #ccc;
}

@media screen and (min-width: 36em), print {
  .tbl_basic {
    font-size: inherit;
  }
  .tbl_basic tr th {
    padding: 1rem;
  }
  .tbl_basic tr td {
    padding: 1rem;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 15rem;
  background: var(--clr_yellow_light) url(../img/tit_01.svg) no-repeat center bottom/auto 4rem;
  color: var(--clr_green);
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  position: relative;
}
.tit_01::before {
  content: "";
  width: 5rem;
  aspect-ratio: 180/148;
  background: url(../img/a_index_keyv_deco3.webp) no-repeat center/contain;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.tit_01::after {
  content: "";
  width: 6.5rem;
  aspect-ratio: 240/168;
  background: url(../img/a_index_keyv_deco1.webp) no-repeat center/contain;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.tit_02 {
  width: fit-content;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: 0 auto 1.8em;
  padding: 0 2.5em;
  color: var(--clr_brown);
  font-weight: 500;
  background: url(../img/tit_02_lower.png) no-repeat center left/2em auto, url(../img/tit_02_lower-2.png) no-repeat center right/2em auto;
  position: relative;
}

body:not(.index) .tit_02::after {
  content: "";
  width: 2em;
  height: 2px;
  background: var(--clr_green);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6em;
  margin: auto;
}

body:is(.index) .tit_02::after {
  content: attr(data-txt);
  color: var(--clr_green);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
  position: absolute;
  bottom: -2em;
  left: 0;
  right: 0;
  margin: auto;
}

.tit_03 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 0.5em;
  background: var(--clr_green);
  color: #fff;
  padding: 0.3em 1em;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
@media screen and (min-width: 36em), print {
  .tit_03 {
    border-radius: 1rem 1rem 1rem 1rem;
  }
}
.tit_03 {
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
.tit_03::before {
  content: "";
  width: 4px;
  height: calc(100% - 1.1em);
  background: var(--clr_green_light4);
  border-radius: 100vh;
  position: absolute;
  left: 0.4em;
  top: 50%;
  transform: translateY(-50%);
}

.tit_04 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 0.5em;
  padding: 0.25em 1.5em;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
@media screen and (min-width: 36em), print {
  .tit_04 {
    border-radius: 1rem 1rem 1rem 1rem;
  }
}
.tit_04 {
  color: var(--clr_brown);
  background: var(--clr_green_light);
  position: relative;
}
.tit_04::before {
  content: "";
  width: 4px;
  height: calc(100% - 0.8em);
  background: var(--clr_green_light4);
  border-radius: 100vh;
  position: absolute;
  left: 0.7em;
  top: 50%;
  transform: translateY(-50%);
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 0.5em;
  color: var(--clr_brown);
}

.tit_06 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 0.5em;
  color: var(--clr_brown);
}

@media screen and (min-width: 36em), print {
  .tit_01 {
    min-height: clamp(20rem, 8.9231rem + 19.231vw, 32rem);
    background: var(--clr_yellow_light) url(../img/tit_01.svg) no-repeat center bottom/auto clamp(14rem, 10.3077rem + 6.41vw, 18rem);
    font-size: clamp(3.8rem, 2.8769rem + 1.603vw, 4.8rem);
    overflow-x: clip;
  }
  .tit_01::before {
    width: clamp(10rem, 2.6154rem + 12.821vw, 18rem);
    left: calc(50% - clamp(32rem, 6.1538rem + 44.872vw, 60rem));
    top: clamp(3rem, -0.6923rem + 6.41vw, 7rem);
  }
  .tit_01::after {
    width: clamp(14rem, 4.7692rem + 16.026vw, 24rem);
    bottom: clamp(3rem, -3.4615rem + 11.218vw, 10rem);
    right: calc(50% - clamp(35rem, 11.9231rem + 40.064vw, 60rem));
  }
  .tit_02 {
    font-size: clamp(3.8rem, 2.8769rem + 1.603vw, 4.8rem);
    padding: 0 2.8em;
  }
  body:is(.index) .tit_02::after {
    font-size: 37.5%;
    margin: 0.5em 0 0;
  }
  .tit_03 {
    font-size: clamp(3rem, 2.2615rem + 1.282vw, 3.8rem);
  }
  .tit_03::before {
    width: 6px;
  }
  .tit_04 {
    font-size: clamp(2.4rem, 1.8462rem + 0.962vw, 3rem);
  }
  .tit_04::before {
    width: 6px;
  }
  .tit_05 {
    font-size: clamp(2rem, 1.6308rem + 0.641vw, 2.4rem);
  }
  .tit_06 {
    font-size: clamp(1.8rem, 1.6154rem + 0.321vw, 2rem);
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 0.3em;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_green);
  font-size: 90%;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.lst_ul.kome > li {
  padding: 0 0 0 1.2em;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
  font-size: 100%;
  top: 0;
}
.lst_ul.kome2 > li {
  padding: 0;
}
.lst_ul.kome2 > li::before {
  content: "※";
  color: var(--clr_txt);
  font-size: 100%;
  position: static;
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 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, decimal-leading-zero) ".";
  color: var(--clr_yellow_dark);
  font-weight: 500;
  position: absolute;
  left: 0;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.dt1em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt1em > dt {
  width: 1em;
}
.lst_dl01.dt1em > dd {
  width: calc(100% - 1em);
}
.lst_dl01.dt2em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt2em > dt {
  width: 2em;
}
.lst_dl01.dt2em > dd {
  width: calc(100% - 2em);
}
.lst_dl01.dt3em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt3em > dt {
  width: 3em;
}
.lst_dl01.dt3em > dd {
  width: calc(100% - 3em);
}
.lst_dl01.dt4em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt4em > dt {
  width: 4em;
}
.lst_dl01.dt4em > dd {
  width: calc(100% - 4em);
}
.lst_dl01.dt5em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt5em > dt {
  width: 5em;
}
.lst_dl01.dt5em > dd {
  width: calc(100% - 5em);
}
.lst_dl01.dt6em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt6em > dt {
  width: 6em;
}
.lst_dl01.dt6em > dd {
  width: calc(100% - 6em);
}
.lst_dl01.dt7em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt7em > dt {
  width: 7em;
}
.lst_dl01.dt7em > dd {
  width: calc(100% - 7em);
}
.lst_dl01.dt8em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt8em > dt {
  width: 8em;
}
.lst_dl01.dt8em > dd {
  width: calc(100% - 8em);
}
.lst_dl01.dt9em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt9em > dt {
  width: 9em;
}
.lst_dl01.dt9em > dd {
  width: calc(100% - 9em);
}
.lst_dl01.dt10em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt10em > dt {
  width: 10em;
}
.lst_dl01.dt10em > dd {
  width: calc(100% - 10em);
}
@media screen and (min-width: 36em), print {
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}

.lst_dl02 {
  border: 1px solid var(--clr_gray);
  border-top: none;
  margin: 1em 0;
}
.lst_dl02 dt {
  padding: 0.5rem 1rem;
  text-align: center;
  border-top: 1px solid var(--clr_gray);
  border-bottom: 1px solid var(--clr_gray);
  background: var(--clr_green_light3);
}
.lst_dl02 dd {
  padding: 1rem;
}
@media screen and (min-width: 36em), print {
  .lst_dl02 {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--clr_gray);
  }
  .lst_dl02 dt, .lst_dl02 dd {
    width: 50%;
    padding: 1rem 2rem;
  }
  .lst_dl02 dt {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    border-right: 1px solid var(--clr_gray);
  }
  .lst_dl02 dt:last-of-type {
    border-bottom: none;
  }
  .lst_dl02 dd:not(:last-of-type) {
    border-bottom: 1px solid var(--clr_gray);
  }
  .lst_dl02.dt_small dt {
    width: 30%;
  }
  .lst_dl02.dt_small dd {
    width: 70%;
  }
}

.lst_flow {
  counter-reset: number 0;
  margin: 1em 0;
}
.lst_flow > li {
  border: 4px solid var(--clr_green_light);
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .lst_flow > li {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.lst_flow > li {
  padding: 1rem;
  position: relative;
}
.lst_flow > li .tit {
  font-size: 1.8rem;
  color: var(--clr_green_dark2);
  margin: 0 0 0.5em;
}
.lst_flow > li .tit::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) ". ";
}
.lst_flow > li:not(:last-of-type) {
  margin: 0 0 3rem;
}
.lst_flow > li:not(:last-of-type)::after {
  content: "";
  width: 5rem;
  aspect-ratio: 90/28;
  background: var(--clr_green_light);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 36em), print {
  .lst_flow > li {
    padding: 2rem 3rem;
  }
  .lst_flow > li .tit {
    font-size: clamp(1.9rem, 1.4385rem + 0.801vw, 2.4rem);
  }
  .lst_flow > li:not(:last-of-type) {
    margin: 0 0 5rem;
  }
  .lst_flow > li:not(:last-of-type)::after {
    width: 9rem;
    bottom: -4.5rem;
  }
}

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

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

@media screen and (min-width: 36em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .main {
    container: tab/inline-size;
  }
  @container tab (width > 650px) {
    .main .flex2 {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .main .flex2 > section, .main .flex2 > li, .main .flex2 > div {
      width: 48%;
      margin-top: 0 !important;
    }
    .main .flex2.lst_ul > li:nth-last-child(2) {
      margin-bottom: 0;
    }
    .main .flex2.gap {
      gap: 4rem;
    }
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel_style {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.5em;
  border: 2px solid var(--clr_green_dark);
  color: var(--clr_green_dark);
  line-height: 1.4;
  padding: 0.8em 2em;
  border-radius: 100vh;
  font-weight: 500;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e80d";
  font-size: 120%;
  line-height: 1;
}

a:has(.tel_style) {
  width: 100%;
  height: 100%;
}

.box_1, .box_2 {
  padding: 1rem;
  margin: 1em 0;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  .box_1, .box_2 {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}
@media screen and (min-width: 36em), print {
  .box_1, .box_2 {
    padding: 3rem;
  }
}

.box_1 {
  background: var(--clr_green_light3);
}

.box_2 {
  background: var(--clr_yellow_light2);
}

.btn_rsv, .btn_acs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.5em;
  color: #fff;
  border-radius: 100vh;
  line-height: 1.4;
  padding: 0.9em 2em;
  font-weight: 500;
}
.btn_rsv::before, .btn_acs::before {
  font-size: 120%;
  line-height: 1;
}
@media screen and (min-width: 36em), print {
  .btn_rsv:is(:hover, :focus-visible), .btn_acs:is(:hover, :focus-visible) {
    filter: brightness(110%);
    opacity: 1;
  }
}

.btn_rsv {
  background: var(--clr_pink_dark2);
  border: 2px solid var(--clr_pink_dark2);
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e802";
}

.btn_acs {
  background: var(--clr_green);
  border: 2px solid var(--clr_green);
}
.btn_acs::before {
  font-family: "fontello";
  content: "\e80c";
}

.btn1, .btn2 {
  display: inline-block;
  padding: 0.9em 4em;
  line-height: 1.4;
  text-decoration: none !important;
  border-radius: 100vh;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  position: relative;
  transition: 0.2s;
}
.btn1::after, .btn2::after {
  font-family: "fontello";
  content: "\e809";
  width: 1.8em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55%;
  position: absolute;
  right: 1.6em;
  top: 50%;
  transform: translateY(-50%);
  padding: 1px 0 0;
}
@media screen and (min-width: 36em), print {
  .btn1:is(:hover, :focus-visible), .btn2:is(:hover, :focus-visible) {
    opacity: 1;
    color: #fff;
  }
}
.btn1.pdf::after, .btn2.pdf::after {
  font-family: "fontello";
  content: "\cc04";
  font-size: 100%;
  background: none !important;
  width: auto;
  height: auto;
  color: inherit;
  border-radius: 0;
  padding: 0;
}
@media screen and (min-width: 36em), print {
  .btn1.pdf:is(:hover, :focus-visible)::after, .btn2.pdf:is(:hover, :focus-visible)::after {
    color: inherit !important;
  }
}
.btn1.noicon::after, .btn2.noicon::after {
  display: none;
}
.btn1.close::after, .btn2.close::after {
  font-family: "fontello";
  content: "\cc02";
}

.btn1 {
  border: 2px solid var(--clr_green);
  color: var(--clr_green);
}
.btn1::after {
  background: var(--clr_green);
}
@media screen and (min-width: 36em), print {
  .btn1:is(:hover, :focus-visible) {
    background: var(--clr_green);
    color: #fff;
  }
  .btn1:is(:hover, :focus-visible)::after {
    color: var(--clr_green);
    background: #fff;
  }
}

.btn2 {
  border: 2px solid var(--clr_yellow_dark);
  color: var(--clr_yellow_dark);
}
.btn2::after {
  background: var(--clr_yellow_dark);
}
@media screen and (min-width: 36em), print {
  .btn2:is(:hover, :focus-visible) {
    background: var(--clr_yellow_dark);
    color: #fff;
  }
  .btn2:is(:hover, :focus-visible)::after {
    color: var(--clr_yellow_dark);
    background: #fff;
  }
}

.txt_link {
  display: inline-block;
  color: var(--clr_yellow_dark);
  text-decoration: none !important;
}
.txt_link::before {
  font-family: "fontello";
  content: "\e805";
  margin-right: 0.3em;
}
.txt_link.linkout::after {
  font-family: "fontello";
  content: "\cc05";
  margin-left: 0.3em;
}
.txt_link.pdf::after {
  font-family: "fontello";
  content: "\cc04";
}
@media screen and (min-width: 36em), print {
  .txt_link:hover {
    text-decoration: underline !important;
  }
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc li a {
  display: block;
  color: var(--clr_yellow_dark);
  background: #fff;
  border: 2px solid var(--clr_yellow_dark);
  border-radius: 100vh;
  line-height: 1.4;
  padding: 0.4em 3em;
  text-decoration: none !important;
  position: relative;
  text-align: center;
}
.lst_anc li a::after {
  font-family: "fontello";
  content: "\e803";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 36em), print {
  .lst_anc {
    gap: 2rem;
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    opacity: 0.8;
  }
}

.link_bnr {
  margin: 2rem 0;
  display: block;
}
@media screen and (min-width: 36em), print {
  .link_bnr {
    margin: 4rem auto;
    max-width: 60%;
    width: fit-content;
  }
  .link_bnr img {
    transition: 0.3s;
  }
  .link_bnr:is(:hover, :focus-visible) img {
    transform: scale(1.05);
  }
}

@media screen and (min-width: 36em), print {
  .slick-arrow {
    position: absolute;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    width: 5rem;
    height: 5rem;
    top: clamp(14rem, 2.9231rem + 19.231vw, 26rem);
  }
  .slick-arrow::before {
    font-size: clamp(3.4rem, 1.9231rem + 2.564vw, 5rem);
    color: var(--clr_green);
    transition: 0.3s;
  }
  .slick-arrow.slick-prev {
    left: -11%;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\e804";
  }
  .slick-arrow.slick-next {
    right: -11%;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\e805";
  }
  .slick-arrow.slick-disabled {
    cursor: auto;
  }
  .slick-arrow.slick-disabled::before {
    display: none;
  }
}
.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(--clr_green);
}
.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: 36em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 2.7777777778vw;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgb(var(--rgb_brown)/0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

@media screen and (min-width: 36em), print {
  html {
    font-size: 62.5%;
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    max-width: 1200px;
    margin: auto;
  }
  .main {
    font-size: clamp(1.5rem, 1.2231rem + 0.481vw, 1.8rem);
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 1rem;
}
@media screen and (min-width: 36em), print {
  :target {
    scroll-margin-top: 7rem;
  }
}

.header {
  position: relative;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  background: #fff;
}
.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 {
  display: none;
}

@media screen and (min-width: 36em), print {
  .header > .wrap {
    width: min(120rem, 100% - 2rem);
    padding: clamp(1rem, -1.7692rem + 4.808vw, 4rem) 0 1rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 2rem;
    position: relative;
  }
  .header > .wrap .logo {
    width: 51.6%;
    height: auto;
    aspect-ratio: 620/64;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    flex-shrink: 0;
  }
  .header > .wrap .headR .tel_rsv {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 41.66%;
    min-width: 35rem;
  }
  .header > .wrap .headR .tel_rsv li {
    width: 50%;
    height: clamp(5rem, 4.0769rem + 1.603vw, 6rem);
  }
  .header > .wrap .headR .tel_rsv li .tel_style, .header > .wrap .headR .tel_rsv li .btn_rsv {
    font-size: clamp(1.8rem, 1.2462rem + 0.962vw, 2.4rem);
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .header > .wrap .headR .tel_rsv li .tel_style::before, .header > .wrap .headR .tel_rsv li .btn_rsv::before {
    font-size: 100%;
  }
  .header > .wrap .headR .tel_rsv li .tel_style {
    border-radius: 0 0 0 2rem;
    border: none;
    background: var(--clr_green_light2);
  }
  .header > .wrap .headR .tel_rsv li .btn_rsv {
    border-radius: 0 0 2rem 0;
  }
  .header > .wrap .headR .add_acs {
    margin: 3.5rem 0 0;
  }
  .header > .wrap .headR .add_acs li {
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    display: flex;
    align-items: first baseline;
    gap: 0.2em;
    margin: 0 0 0.5em;
  }
  .header > .wrap .headR .add_acs li::before {
    color: var(--clr_green);
  }
  .header > .wrap .headR .add_acs li.add::before {
    font-family: "fontello";
    content: "\e80c";
  }
  .header > .wrap .headR .add_acs li.acs::before {
    font-family: "fontello";
    content: "\e80b";
  }
  .header > .wrap .headR .add_acs li br {
    display: none;
  }
  .header {
    container: tab/inline-size;
  }
  @container tab (width < 89rem) {
    .header > .wrap {
      flex-direction: column;
    }
    .header > .wrap .logo {
      min-width: 40rem;
    }
    .header > .wrap .headR {
      align-items: center;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem 2rem;
      margin: 1rem 0 0;
    }
    .header > .wrap .headR .tel_rsv {
      position: static;
    }
    .header > .wrap .headR .tel_rsv li .tel_style {
      border-radius: 2rem 0 0 2rem;
    }
    .header > .wrap .headR .tel_rsv li .btn_rsv {
      border-radius: 0 2rem 2rem 0;
    }
    .header > .wrap .headR .add_acs {
      margin: 1rem 0 0;
    }
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_green);
  border-radius: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  transition: 0.5s;
}
#nav #sp_menu span {
  width: 2.5rem;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}
#nav #sp_menu span:nth-of-type(1) {
  top: 33%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(2) {
  top: 50%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(3) {
  top: 67%;
  left: 50%;
}
#nav #sp_menu.close span {
  top: 50%;
}
#nav #sp_menu.close span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
#nav #sp_menu.close span:nth-of-type(2) {
  opacity: 0;
}
#nav #sp_menu.close span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}
#nav .gnav_subnav {
  display: none;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  background: #fff;
  padding: 7rem 1.6rem 1.6rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
#nav .gnav_subnav .gnav > li a span, #nav .gnav_subnav .gnav > li .sub span {
  display: block;
  position: relative;
}
#nav .gnav_subnav .gnav > li a span::after, #nav .gnav_subnav .gnav > li .sub span::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  background: var(--clr_green);
  transform: scale(0, 1);
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_green);
}
#nav .gnav_subnav .gnav > li a.current span::after, #nav .gnav_subnav .gnav > li .sub.current span::after {
  transform: scale(1, 1);
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.5em;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e803";
  color: var(--clr_green);
  margin: 0.2em 0 0;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e806";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  border: 1px solid var(--clr_green);
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  gap: 0.5em;
  justify-content: flex-start;
  padding: 1rem;
  color: var(--clr_txt);
  text-align: left;
  font-weight: 400;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  font-family: "fontello";
  content: "\e805";
  color: var(--clr_green);
  margin: 0.2em 0 0;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a br, #nav .gnav_subnav .gnav > li .subbox > .subnav li a span::after {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: var(--clr_green);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  background: var(--clr_yellow_light);
  text-align: center;
  padding: 1rem;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\cc02";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 36em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  #nav.hide {
    transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    flex: auto;
  }
  #nav .gnav_subnav .gnav > li.pc_gnav_n {
    display: none;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
    margin: 0;
    padding: 1.5rem 1rem 2rem;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a span::after, #nav .gnav_subnav .gnav > li .sub span::after {
    transition: 0.3s;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: var(--clr_green);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current) span::after, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) span::after {
    transform: scale(1, 1);
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    max-width: 120rem;
    width: 100%;
    position: absolute;
    left: 50%;
    top: calc(100% - 1rem);
    transform: translateX(-50%);
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 0 2rem;
    padding: 2.2rem clamp(2rem, -1.6923rem + 6.41vw, 6rem);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: calc((100% - 4rem) / 3);
    min-width: 23rem;
    flex-grow: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 0.5em 0;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    color: var(--clr_green);
    opacity: 1;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
  #nav {
    container: tab/inline-size;
  }
  @container tab (width < 89rem) {
    #nav .gnav_subnav .gnav {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem 0;
      padding: 1rem 0;
    }
    #nav .gnav_subnav .gnav > li {
      flex: none;
      width: auto;
      min-width: 20%;
    }
    #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
      padding: 0 1rem;
    }
  }
}
.overview {
  padding: 4rem 1rem;
  margin: 6rem 0 0;
  font-size: 1.3rem;
  line-height: 1.6;
  background: var(--clr_green_light2);
  position: relative;
}
.overview::before {
  content: "";
  width: 100%;
  height: 6rem;
  background: url(../img/overview_deco.png) no-repeat center/auto 100%;
  position: absolute;
  top: -6rem;
  left: 0;
  right: 0;
}
.overview > .wrap {
  background: #fff;
  padding: 3rem 1rem;
  border-radius: 3rem 3rem 3rem 3rem;
}
@media screen and (min-width: 36em), print {
  .overview > .wrap {
    border-radius: 6rem 6rem 6rem 6rem;
  }
}
.overview > .wrap .clinic_name {
  margin: 0 0 2rem;
}
.overview > .wrap .clinic_name img {
  max-width: 90%;
  margin: 0 auto 2rem;
}
.overview > .wrap .clinic_name ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.overview > .wrap .clinic_name ul li {
  font-size: 1.6rem;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 30%;
  color: var(--clr_txt);
  font-weight: 500;
}
.overview > .wrap .overviewL .gaiyo dt span {
  background: var(--clr_green_light2);
  display: block;
  text-align: center;
  padding: 0.3em;
  border-radius: 3px 3px 3px 3px;
}
@media screen and (min-width: 36em), print {
  .overview > .wrap .overviewL .gaiyo dt span {
    border-radius: 6px 6px 6px 6px;
  }
}
.overview > .wrap .overviewL .gaiyo dt span {
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 70%;
  padding: 0.3em 0.3em 0.3em 1em;
  letter-spacing: 0.025em;
}
.overview > .wrap .overviewL .gaiyo dt, .overview > .wrap .overviewL .gaiyo dd {
  margin: 0 0 1.1em;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 2rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0;
}
.overview > .wrap .gmap {
  height: 100vw;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  .overview > .wrap .gmap {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}
.overview > .wrap .gmap {
  overflow: hidden;
}

@media screen and (min-width: 36em), print {
  .overview {
    padding: 8rem 0 6rem;
    margin: clamp(11rem, 3.6154rem + 12.821vw, 19rem) 0 0;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .overview::before {
    height: clamp(11rem, 3.6154rem + 12.821vw, 19rem);
    top: calc(-1 * clamp(11rem, 3.6154rem + 12.821vw, 19rem));
    margin: auto;
  }
  .overview > .wrap {
    width: min(120rem, 100% - 2rem);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(2rem, 0.1538rem + 3.205vw, 4rem) clamp(1rem, -3.6154rem + 8.013vw, 6rem);
    padding: clamp(4rem, 0.3077rem + 6.41vw, 8rem) clamp(2rem, -3.5385rem + 9.615vw, 8rem);
  }
  .overview > .wrap .clinic_name {
    margin: 0 0 2rem;
    width: 100%;
  }
  .overview > .wrap .clinic_name img {
    max-width: 70rem;
    width: 70%;
    margin: 0 auto 3rem;
  }
  .overview > .wrap .clinic_name ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .overview > .wrap .clinic_name ul li {
    font-size: clamp(1.7rem, 1.0538rem + 1.122vw, 2.4rem);
    min-width: clamp(20rem, 14.4615rem + 9.615vw, 26rem);
  }
  .overview > .wrap .clinic_name ul li .tel_style, .overview > .wrap .clinic_name ul li .btn_rsv, .overview > .wrap .clinic_name ul li .btn_acs {
    width: 100%;
    padding: 0.8em 1em;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    min-width: 38rem;
    flex: 1;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 29%;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 71%;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time th[scope=col]:first-child {
    width: 27%;
  }
  .overview > .wrap .overviewR .tbl_time th[scope=col]:last-child {
    width: 13.5%;
    padding-right: 0.5em;
  }
  .overview > .wrap .overviewR .tbl_time td:last-child {
    padding-right: 0.5em;
  }
  .overview > .wrap .gmap {
    height: 40rem;
    margin: 2rem 0 0;
  }
}
#tel_up {
  width: 100%;
  height: 6rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.4rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li .tel_style, #tel_up ul li .btn_rsv, #tel_up ul li .btn_acs {
  height: 100%;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  border-radius: 0;
  padding: 0;
}
#tel_up ul li .tel_style::before, #tel_up ul li .btn_rsv::before, #tel_up ul li .btn_acs::before {
  font-size: 180%;
}
#tel_up ul li.up_wrap {
  width: 6rem;
  flex: none;
}
#tel_up ul li.up_wrap #pageup {
  display: block;
  width: 6rem;
  height: 100%;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: var(--clr_gray);
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up ul li.up_wrap #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e80a";
}
#tel_up ul li.up_wrap #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: 36em), print {
  #tel_up {
    width: clamp(6rem, 4.1538rem + 3.205vw, 8rem);
    height: auto;
    bottom: 4rem;
    right: 0;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    z-index: 100;
  }
  #tel_up ul {
    flex-direction: column;
    gap: 4px;
  }
  #tel_up ul li {
    width: 100%;
  }
  #tel_up ul li .tel_style, #tel_up ul li .btn_rsv, #tel_up ul li .btn_acs {
    flex-direction: column;
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
    padding: 1.2em 0.8em;
    border-radius: 100vw;
    gap: 0.5em;
    overflow-wrap: anywhere;
  }
  #tel_up ul li .tel_style::before, #tel_up ul li .btn_rsv::before, #tel_up ul li .btn_acs::before {
    font-size: 135%;
  }
  #tel_up ul li .tel_style {
    background: #fff;
  }
  #tel_up ul li .btn_rsv, #tel_up ul li .btn_acs {
    border: 2px solid #fff;
    padding: 1.4em 0.5em;
  }
  #tel_up ul li.up_wrap {
    width: 100%;
  }
  #tel_up ul li.up_wrap #pageup {
    width: 100%;
    aspect-ratio: 1/1;
    font-size: clamp(2.8rem, 1.6923rem + 1.923vw, 4rem);
    border-radius: 50%;
    background: rgb(var(--rgb_gray)/0.9);
  }
}
.footer {
  text-align: center;
  padding: 0 0 6rem;
}
.footer .copy {
  display: block;
  background: var(--clr_green);
  color: #fff;
  padding: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 36em), print {
  .footer {
    padding: 0;
    background: var(--clr_green_light2);
  }
  .footer .copy {
    margin: 4.5rem 0 0;
    padding: 3.5rem 1rem;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    width: min(95rem, 100% - 2rem);
    margin: auto;
  }
  .footer ul.gnav {
    margin: 0 auto 3rem;
  }
  .footer ul li {
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    margin: 0 0 0.5rem;
  }
  .footer ul li:not(:last-child, .last-in-row)::after {
    content: "|";
    margin: 0 0.8rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment, .footer ul li br {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl::after {
  content: "";
  width: 100%;
  height: 4rem;
  position: absolute;
  top: 23.1rem;
  left: 0;
  right: 0;
  background: url(../img/index_kv_wave.svg) no-repeat center/auto 100%;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 27rem;
  overflow: hidden;
  visibility: hidden;
  position: relative;
}
.keyvsl #keyvsl::before {
  content: "";
  width: 5rem;
  aspect-ratio: 180/148;
  background: url(../img/a_index_keyv_deco3.webp) no-repeat center/contain;
  position: absolute;
  top: 7rem;
  left: 2rem;
  z-index: 1;
  animation: fuwafuwa 3s -0.5s normal infinite;
}
.keyvsl #keyvsl::after {
  content: "";
  width: 7rem;
  aspect-ratio: 240/168;
  background: url(../img/a_index_keyv_deco1.webp) no-repeat center/contain;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  animation: fuwafuwa 2.5s normal infinite;
}
.keyvsl #keyvsl .slick-list div img {
  height: 27rem !important;
  object-fit: cover;
  margin: auto;
}
.keyvsl > .wrap {
  background: var(--clr_yellow_light);
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.keyvsl > .wrap::before {
  content: "";
  width: 7rem;
  height: 13rem;
  background: url(../img/index_keyv_deco2.webp) no-repeat center right/auto 100%;
  position: absolute;
  left: 0;
  top: -14rem;
}
.keyvsl > .wrap::after {
  content: "";
  width: 7rem;
  height: 8rem;
  background: url(../img/index_keyv_deco4.webp) no-repeat center left/auto 100%;
  position: absolute;
  right: 0;
  top: -8rem;
}
.keyvsl > .wrap .catch_wrap {
  position: absolute;
  top: -9rem;
  left: 0;
  right: 0;
}
.keyvsl > .wrap .catch_wrap p {
  background: #fff;
  border-radius: 100vh;
  padding: 0.25em 1em;
  line-height: 1.4;
  font-size: 1.6rem;
  color: var(--clr_brown);
  font-weight: 700;
  letter-spacing: 0.025em;
  width: fit-content;
  margin: 0;
  white-space: nowrap;
}
.keyvsl > .wrap .catch_wrap p.catch1 {
  margin: 0 0 0.2em;
}
.keyvsl > .wrap .catch_wrap p span {
  font-size: 133.3%;
  line-height: 1;
  letter-spacing: 0.025em;
}
.keyvsl > .wrap .catch_wrap p i {
  font-style: normal;
}
.keyvsl > .wrap .catch_wrap p i.open {
  margin-left: -0.5em;
}
.keyvsl > .wrap .catch_wrap p i.close {
  margin-right: -0.5em;
}
.keyvsl > .wrap .kv_feat {
  width: 12rem;
  aspect-ratio: 1/1;
  color: #fff;
  background: var(--clr_pink_dark);
  border: 5px solid var(--clr_pink);
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  position: relative;
}
.keyvsl > .wrap .kv_feat::after {
  content: "";
  width: 6rem;
  aspect-ratio: 110/84;
  background: url(../img/index_keyv_deco5.webp) no-repeat center/contain;
  position: absolute;
  top: -1.5rem;
  right: -4px;
}

@media screen and (min-width: 36em), print {
  .keyvsl {
    overflow-x: clip;
  }
  .keyvsl::after {
    height: clamp(14rem, 10.3077rem + 6.41vw, 18rem);
    top: auto;
    bottom: -1px;
  }
  .keyvsl #keyvsl {
    height: clamp(45rem, 25.6154rem + 33.654vw, 66rem);
  }
  .keyvsl #keyvsl::before {
    width: clamp(10rem, 2.6154rem + 12.821vw, 18rem);
    top: clamp(15rem, 6.6923rem + 14.423vw, 24rem);
    left: calc(50% - clamp(35rem, 11.9231rem + 40.064vw, 60rem));
    animation: fuwafuwa-pc 3s -0.5s normal infinite;
  }
  .keyvsl #keyvsl::after {
    width: clamp(13rem, 2.8462rem + 17.628vw, 24rem);
    top: 2rem;
    right: calc(50% - clamp(35rem, 11.9231rem + 40.064vw, 60rem));
    animation: fuwafuwa 2.5s normal infinite;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: clamp(45rem, 25.6154rem + 33.654vw, 66rem) !important;
  }
  .keyvsl > .wrap {
    background: none;
    width: min(120rem, 100% - 2rem);
    padding: 0;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1rem, 0.0769rem + 1.603vw, 2rem);
    z-index: 1;
  }
  .keyvsl > .wrap::before {
    width: clamp(30rem, 20.7692rem + 16.026vw, 40rem);
    height: auto;
    aspect-ratio: 400/302;
    z-index: -1;
    left: -26rem;
    top: calc(-1 * clamp(4rem, 0.3077rem + 6.41vw, 8rem));
  }
  .keyvsl > .wrap::after {
    width: clamp(18rem, 10.6154rem + 12.821vw, 26rem);
    height: auto;
    aspect-ratio: 260/183;
    z-index: -1;
    right: calc(-1 * clamp(8rem, 7.0769rem + 1.603vw, 9rem));
    top: 3rem;
  }
  .keyvsl > .wrap .catch_wrap {
    position: static;
  }
  .keyvsl > .wrap .catch_wrap p {
    font-size: clamp(2rem, 0.5231rem + 2.564vw, 3.6rem);
  }
  .keyvsl > .wrap .kv_feat {
    width: clamp(18rem, 14.3077rem + 6.41vw, 22rem);
    border: 8px solid var(--clr_pink);
    font-size: clamp(2rem, 0.8923rem + 1.923vw, 3.2rem);
    margin: 0 0 1rem;
  }
  .keyvsl > .wrap .kv_feat::after {
    width: clamp(7rem, 3.3077rem + 6.41vw, 11rem);
    top: -3rem;
    right: -8px;
  }
}
.bg_yellow {
  background: var(--clr_yellow_light);
}

.info {
  padding: 4rem 1rem;
}
.info .tit_02 {
  background: url(../img/tit_02A.png) no-repeat center left/2em auto, url(../img/tit_02A-2.png) no-repeat center right/2em auto;
}
.info .info_container {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 3rem 3rem 3rem 3rem;
}
@media screen and (min-width: 36em), print {
  .info .info_container {
    border-radius: 6rem 6rem 6rem 6rem;
  }
}
.info .info_container .accordion-container {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  scrollbar-color: var(--clr_green) var(--clr_gray);
  scrollbar-width: thin;
}
.info .info_container .accordion-container::-webkit-scrollbar {
  width: 8px;
}
.info .info_container .accordion-container ::-webkit-scrollbar-track {
  background: var(--clr_gray);
}
.info .info_container .accordion-container ::-webkit-scrollbar-thumb {
  background: var(--clr_green);
  border-radius: 100vw;
}
.info .info_container .accordion-container .accordion-item {
  padding: 0 0 1.8em;
}
.info .info_container .accordion-container .accordion-item:not(:first-of-type) {
  padding: 1.5em 0;
  border-top: 1px solid var(--clr_gray);
}
.info .info_container .accordion-container .accordion-item .accordion-header {
  display: block;
  margin: 0 0 0.9em;
  color: var(--clr_green);
  cursor: pointer;
  position: relative;
}
.info .info_container .accordion-container .accordion-item .accordion-header .accordion-title {
  font-size: 122.2%;
  display: flex;
  gap: 0.3em;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.4;
}
.info .info_container .accordion-container .accordion-item .accordion-header .accordion-title::before {
  font-family: "fontello";
  content: "\e803";
  flex-shrink: 0;
  padding: 0 0 0 1px;
}
.info .info_container .accordion-container .accordion-item .accordion-header .accordion-date {
  display: block;
  margin: 0 0 0.8em;
}
.info .info_container .accordion-container .accordion-item .accordion-content {
  line-height: 1.8;
}
.info .info_container .accordion-container .accordion-item .accordion-content .content-inner {
  font-size: clamp(1.5rem, 1.2231rem + 0.481vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
.info .info_container .accordion-container .accordion-item[open] .accordion-header .accordion-title::before {
  font-family: "fontello";
  content: "\e806";
}

@media screen and (min-width: 36em), print {
  .info {
    padding: clamp(5rem, 2.2308rem + 4.808vw, 8rem) 1rem;
  }
  .info .info_container {
    width: min(120rem, 100% - 2rem);
    padding: clamp(4rem, 0.3077rem + 6.41vw, 8rem) clamp(2rem, -3.5385rem + 9.615vw, 8rem);
    margin: auto;
  }
  .info .info_container .accordion-item .accordion-header {
    transition: 0.3s;
  }
  .info .info_container .accordion-item .accordion-header:is(:hover, :focus-visible) {
    color: var(--clr_green_dark);
  }
  .info .info_container .accordion-container {
    max-height: clamp(40rem, 21.9077rem + 31.41vw, 59.6rem);
  }
}
.drsfile {
  padding: 2rem 1rem 4rem;
}
.drsfile .tit {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  line-height: 1.4;
  margin: 0 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
.drsfile .tit::before, .drsfile .tit::after {
  content: "";
  width: 1.3em;
  aspect-ratio: 1/1;
  background: url(../img/index_drsfile_tit.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.drsfile .tit::after {
  transform: rotateY(150deg);
}
.drsfile .tit .txt_green {
  font-size: 125%;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}

@media screen and (min-width: 36em), print {
  .drsfile {
    padding: 2rem 0 clamp(5rem, 2.2308rem + 4.808vw, 8rem);
    background: url(../img/index_drsfile_starL.png) no-repeat top 9rem left calc(50% - 41rem)/clamp(10rem, 4.4615rem + 9.615vw, 16rem) auto, url(../img/index_drsfile_starR.png) no-repeat top 14rem left calc(50% + 41rem)/clamp(10rem, 4.4615rem + 9.615vw, 16rem) auto;
  }
  .drsfile .tit {
    font-size: clamp(2rem, 1.6308rem + 0.641vw, 2.4rem);
  }
  .drsfile a {
    display: block;
    width: min(50rem, 100% - 2rem);
    margin: auto;
  }
  .drsfile a img {
    width: 100%;
    transition: 0.3s;
  }
  .drsfile a:is(:hover, :focus-visible) img {
    filter: brightness(110%);
  }
}
.time {
  background: #fff;
  padding: 6rem 1rem 4rem;
  margin: 4rem 1rem;
  border-radius: 3rem 3rem 3rem 3rem;
}
@media screen and (min-width: 36em), print {
  .time {
    border-radius: 6rem 6rem 6rem 6rem;
  }
}
.time {
  position: relative;
}
.time::before {
  content: "";
  width: 17em;
  aspect-ratio: 301/88;
  background: url(../img/index_time_deco.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -48%);
}
.time .tit_02 {
  background: none;
  padding: 0;
}
.time .btn1 {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
}

.modal_box {
  border: none;
}
.modal_box::backdrop {
  background: rgb(var(--rgb_brown)/0.6);
  backdrop-filter: blur(0.6rem);
}
.modal_box #close_modal {
  margin: 2rem auto 0;
  display: block;
  width: fit-content;
}

@media screen and (min-width: 36em), print {
  .time {
    padding: clamp(5rem, 1.3077rem + 6.41vw, 9rem) clamp(2rem, -3.5385rem + 9.615vw, 8rem) clamp(4rem, 0.3077rem + 6.41vw, 8rem);
    width: min(120rem, 100% - 2rem);
    margin: clamp(4rem, 0.3077rem + 6.41vw, 8rem) auto clamp(5rem, -1.4615rem + 11.218vw, 12rem);
  }
  .time .btn1 {
    margin: 3rem auto 0;
    min-width: 28rem;
  }
  .modal_box {
    width: min(80rem, 100% - 2rem);
  }
}
.feature {
  padding: 2rem 1rem 4rem;
  background: url(../img/index_feat_wave.svg) no-repeat center top/auto 6rem, linear-gradient(to bottom, transparent 6rem, #fff 6rem);
}
.feature .tit_02 {
  background: url(../img/tit_02B.png) no-repeat center left/2em auto, url(../img/tit_02B-2.png) no-repeat center right/2em auto;
}
.feature ol {
  padding: 2rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  counter-reset: number 0;
}
.feature ol li {
  position: relative;
}
.feature ol li::before {
  content: "";
  width: 100%;
  aspect-ratio: 372/232;
  display: block;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  .feature ol li::before {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}
.feature ol li::before {
  margin: 0 0 1rem;
}
.feature ol li.feat1::before {
  background: url(../img/index_feat1.jpg) no-repeat center/cover;
}
.feature ol li.feat2::before {
  background: url(../img/index_feat2.jpg) no-repeat center/cover;
}
.feature ol li.feat3::before {
  background: url(../img/index_feat3.jpg) no-repeat center/cover;
}
.feature ol li.feat4::before {
  background: url(../img/index_feat4.jpg) no-repeat center/cover;
}
.feature ol li.feat5::before {
  background: url(../img/index_feat5.jpg) no-repeat center/cover;
}
.feature ol li.feat6::before {
  background: url(../img/index_feat6.jpg) no-repeat center/cover;
}
.feature ol li::after {
  content: counter(number);
  counter-increment: number 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  width: 6rem;
  aspect-ratio: 66/74;
  padding: 0 0 0.9rem;
  position: absolute;
  top: -2rem;
  left: 0;
  background: url(../img/index_feat_bubble_yellow.svg) no-repeat center/contain;
}
.feature ol li .tit {
  letter-spacing: 0.025em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.33;
  margin: 0 0 0.5em;
  color: var(--clr_yellow_dark);
}
.feature ol li .tit::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  margin: 0.5em 0 0;
  background: linear-gradient(to right, var(--clr_yellow_dark) 3px, transparent 3px, transparent 10px) repeat-x left center/10px auto;
}
.feature ol li p {
  line-height: 1.778;
}
.feature ol li:nth-child(2n)::after {
  background: url(../img/index_feat_bubble_green.svg) no-repeat center/contain;
}
.feature ol li:nth-child(2n) .tit {
  color: var(--clr_green);
}
.feature ol li:nth-child(2n) .tit::after {
  background: linear-gradient(to right, var(--clr_green) 3px, transparent 3px, transparent 10px) repeat-x left center/10px auto;
}

@media screen and (min-width: 36em), print {
  .feature {
    padding: clamp(5rem, 2.2308rem + 4.808vw, 8rem) 0 clamp(10rem, 8.1538rem + 3.205vw, 12rem);
    background: url(../img/index_feat_wave.svg) no-repeat center top/auto clamp(10rem, 2.6154rem + 12.821vw, 18rem), linear-gradient(to bottom, transparent clamp(10rem, 2.6154rem + 12.821vw, 18rem), #fff clamp(10rem, 2.6154rem + 12.821vw, 18rem));
    position: relative;
    overflow-x: clip;
  }
  .feature::before {
    content: "";
    width: clamp(10rem, 4.4615rem + 9.615vw, 16rem);
    aspect-ratio: 160/133;
    background: url(../img/index_feat_deco.png) no-repeat center/contain;
    position: absolute;
    top: clamp(3rem, 0.2308rem + 4.808vw, 6rem);
    left: calc(50% + 44rem);
  }
  .feature ol {
    width: min(120rem, 100% - 2rem);
    margin: auto;
    padding: 2.5rem 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(4rem, 0.5846rem + 5.929vw, 7.7rem) clamp(2rem, -0.1231rem + 3.686vw, 4.3rem);
  }
  .feature ol li {
    width: calc((100% - clamp(4rem, -0.2462rem + 7.372vw, 8.6rem)) / 3);
    min-width: 24rem;
    flex-grow: 1;
  }
  .feature ol li::before {
    margin: 0 0 1.5rem;
  }
  .feature ol li::after {
    font-size: clamp(3.8rem, 2.8769rem + 1.603vw, 4.8rem);
    width: clamp(5.5rem, 4.4846rem + 1.763vw, 6.6rem);
    padding: 0 0 1.4rem;
  }
  .feature ol li .tit {
    font-size: clamp(2rem, 1.0769rem + 1.603vw, 3rem);
  }
}
.tre {
  padding: 2rem 1rem 4rem;
  background: url(../img/index_tre_wave.svg) no-repeat center top/auto 6rem, linear-gradient(to bottom, #fff 6rem, var(--clr_yellow_light) 6rem);
}
.tre .tit_02 {
  background: url(../img/tit_02C.png) no-repeat center left/2em auto, url(../img/tit_02C-2.png) no-repeat center right/2em auto;
}
.tre .subnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.tre .subnav li {
  width: 13rem;
  aspect-ratio: 1/1;
}
.tre .subnav li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
  text-align: center;
  text-decoration: none;
  background: url(../img/index_tre_circle_yellow.svg) no-repeat center/contain;
  line-height: 1.27;
  position: relative;
  padding: 0 0 1rem;
}
.tre .subnav li a::before {
  content: "";
  width: 30%;
  aspect-ratio: 1/1;
}
.tre .subnav li a.ear::before {
  background: url(../img/index_tre_ear.svg) no-repeat center/100% auto;
}
.tre .subnav li a.nose::before {
  background: url(../img/index_tre_nose.svg) no-repeat center/100% auto;
}
.tre .subnav li a.throat::before {
  background: url(../img/index_tre_throat.svg) no-repeat center/100% auto;
}
.tre .subnav li a.neck::before {
  background: url(../img/index_tre_neck.svg) no-repeat center/100% auto;
}
.tre .subnav li a.pediatric::before {
  background: url(../img/index_tre_pediatric.svg) no-repeat center/100% auto;
}
.tre .subnav li a.allergy::before {
  background: url(../img/index_tre_allergy.svg) no-repeat center/100% auto;
}
.tre .subnav li a.dizziness::before {
  background: url(../img/index_tre_dizziness.svg) no-repeat center/100% auto;
}
.tre .subnav li a.sas::before {
  background: url(../img/index_tre_sas.svg) no-repeat center/100% auto;
}
.tre .subnav li a.hearing_loss::before {
  background: url(../img/index_tre_hearing_loss.svg) no-repeat center/100% auto;
}
.tre .subnav li a.vaccination::before {
  background: url(../img/index_tre_vaccination.svg) no-repeat center/100% auto;
}
.tre .subnav li a::after {
  font-family: "fontello";
  content: "\e809";
  width: 2em;
  aspect-ratio: 1/1;
  background: var(--clr_yellow_dark);
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tre .subnav li a span {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tre .subnav li:nth-child(2n) a {
  background: url(../img/index_tre_circle_green.svg) no-repeat center/contain;
}
.tre .subnav li:nth-child(2n) a::after {
  background: var(--clr_green);
}

@media screen and (min-width: 36em), print {
  .tre {
    padding: clamp(5rem, 2.2308rem + 4.808vw, 8rem) 0 clamp(10rem, 8.1538rem + 3.205vw, 12rem);
    background: url(../img/index_tre_wave.svg) no-repeat center top/auto clamp(10rem, 2.6154rem + 12.821vw, 18rem), linear-gradient(to bottom, #fff clamp(10rem, 2.6154rem + 12.821vw, 18rem), var(--clr_yellow_light) clamp(10rem, 2.6154rem + 12.821vw, 18rem));
    position: relative;
  }
  .tre::before {
    content: "";
    width: clamp(10rem, 4.4615rem + 9.615vw, 16rem);
    aspect-ratio: 160/151;
    background: url(../img/index_tre_deco.png) no-repeat center/contain;
    position: absolute;
    top: 4.5rem;
    left: calc(50% - 60rem);
  }
  .tre .subnav {
    width: min(120rem, 100% - 2rem);
    margin: auto;
    gap: clamp(2rem, 0.1538rem + 3.205vw, 4rem);
  }
  .tre .subnav li {
    width: calc((100% - clamp(8rem, 0.6154rem + 12.821vw, 16rem)) / 5);
    min-width: 18rem;
  }
  .tre .subnav li a {
    font-size: clamp(1.8rem, 1.4308rem + 0.641vw, 2.2rem);
    gap: clamp(0.5rem, -0.4231rem + 1.603vw, 1.5rem);
    padding: 0;
    transition: 0.5s;
  }
  .tre .subnav li a::after {
    font-size: clamp(1.9rem, 1.6231rem + 0.481vw, 2.2rem);
    transition: 0.5s;
  }
  .tre .subnav li a span {
    min-height: clamp(4rem, 2.1538rem + 3.205vw, 6rem);
  }
  .tre .subnav li a:is(:hover, :focus-visible) {
    transform: scale(105%);
  }
  .tre .subnav li a:is(:hover, :focus-visible)::after {
    transform: rotateX(180deg);
  }
}
.greeting {
  padding: 4rem 1rem;
  background: #fff url(../img/index_greeting_wave.svg) no-repeat center top/auto 6rem;
}
.greeting .tit_02 {
  background: url(../img/tit_02D.png) no-repeat center left/2em auto, url(../img/tit_02D-2.png) no-repeat center right/2em auto;
}
.greeting .img_name {
  margin: 0 0 2rem;
}
.greeting .img_name .img_box {
  max-width: 60%;
  margin: 0 auto 1.5rem;
  position: relative;
}
.greeting .img_name .img_box::after {
  content: "";
  width: 10rem;
  aspect-ratio: 220/187;
  background: url(../img/index_greeting_deco2.png) no-repeat center/contain;
  position: absolute;
  bottom: -0.5rem;
  right: -2rem;
}
.greeting .img_name .img_box img {
  border-radius: 3rem 3rem 3rem 3rem;
}
@media screen and (min-width: 36em), print {
  .greeting .img_name .img_box img {
    border-radius: 6rem 6rem 6rem 6rem;
  }
}
.greeting .img_name p {
  text-align: center;
  line-height: 1.4;
}
.greeting .img_name p span {
  font-size: 133.3%;
}
.greeting .txt_wrap .btn1 {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
}
.greeting .txt_wrap p {
  letter-spacing: 0.025em;
}

@media screen and (min-width: 36em), print {
  .greeting {
    padding: clamp(5rem, 2.2308rem + 4.808vw, 8rem) 0;
    background: #fff url(../img/index_greeting_wave.svg) no-repeat center top/auto clamp(10rem, 2.6154rem + 12.821vw, 18rem);
    position: relative;
    overflow-x: clip;
  }
  .greeting::before {
    content: "";
    width: clamp(15rem, 8.5385rem + 11.218vw, 22rem);
    aspect-ratio: 220/126;
    background: url(../img/index_greeting_deco.png) no-repeat center/contain;
    position: absolute;
    top: -6.5rem;
    left: calc(50% + 30rem);
  }
  .greeting .flex_box {
    width: min(120rem, 100% - 2rem);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: clamp(4rem, 0.3077rem + 6.41vw, 8rem);
  }
  .greeting .flex_box .img_name {
    margin: 0;
    width: 40%;
    min-width: 38rem;
  }
  .greeting .flex_box .img_name .img_box {
    max-width: 100%;
    margin: 0 0 2rem;
  }
  .greeting .flex_box .img_name .img_box::after {
    width: clamp(1.7rem, -17.0385rem + 32.532vw, 22rem);
    right: -4rem;
    bottom: -1rem;
  }
  .greeting .flex_box .txt_wrap {
    flex: 1;
    min-width: 50rem;
  }
  .greeting .flex_box .txt_wrap .btn1 {
    min-width: 28rem;
    margin: 4rem auto 0;
  }
}
.bg_white {
  background: #fff;
  padding: 8rem 1rem 4rem;
  overflow-x: clip;
}
.bg_white .symptoms {
  background: var(--clr_yellow_light);
  padding: 14rem 1rem 2rem;
  border-radius: 3rem 3rem 3rem 3rem;
}
@media screen and (min-width: 36em), print {
  .bg_white .symptoms {
    border-radius: 6rem 6rem 6rem 6rem;
  }
}
.bg_white .symptoms {
  position: relative;
}
.bg_white .symptoms::before, .bg_white .symptoms::after {
  content: "";
  width: 8rem;
  aspect-ratio: 160/143;
  background: url(../img/index_symptoms_deco1.svg) no-repeat center/contain;
  position: absolute;
}
.bg_white .symptoms::before {
  top: -3rem;
  left: -3rem;
}
.bg_white .symptoms::after {
  bottom: -3rem;
  right: -3rem;
}
.bg_white .symptoms .tit_02 {
  background: none;
  text-align: left;
  width: 100%;
  margin: 0 0 1em;
  padding: 0;
}
.bg_white .symptoms .img_box {
  width: 80%;
  position: absolute;
  right: 0;
  top: -6rem;
}
.bg_white .symptoms .img_box::before, .bg_white .symptoms .img_box::after {
  content: "";
  width: 10rem;
  aspect-ratio: 161/112;
  position: absolute;
  background: url(../img/index_symptoms_deco2.png) no-repeat center/contain;
}
.bg_white .symptoms .img_box::before {
  top: -1.5rem;
  left: -1.5rem;
}
.bg_white .symptoms .img_box::after {
  bottom: -1.5rem;
  right: -1.5rem;
  transform: rotate(180deg);
}
.bg_white .symptoms .img_box img {
  border-radius: 3rem 3rem 3rem 3rem;
}
@media screen and (min-width: 36em), print {
  .bg_white .symptoms .img_box img {
    border-radius: 6rem 6rem 6rem 6rem;
  }
}
.bg_white .symptoms .lst_ul {
  margin: 0;
}
.bg_white .symptoms .lst_ul > li {
  line-height: 2.3;
}

@media screen and (min-width: 36em), print {
  .bg_white {
    padding: 12rem 0;
  }
  .bg_white .symptoms {
    padding: 8rem clamp(2rem, -3.5385rem + 9.615vw, 8rem);
    margin: auto;
    width: min(120rem, 100% - 2rem);
  }
  .bg_white .symptoms::before, .bg_white .symptoms::after {
    width: clamp(10rem, 4.4615rem + 9.615vw, 16rem);
  }
  .bg_white .symptoms::before {
    top: calc(-1 * clamp(3rem, -1.4308rem + 7.692vw, 7.8rem));
    left: calc(-1 * clamp(2rem, -1.6923rem + 6.41vw, 6rem));
  }
  .bg_white .symptoms::after {
    bottom: calc(-1 * clamp(3rem, -1.4308rem + 7.692vw, 7.8rem));
    right: calc(-1 * clamp(2rem, -1.6923rem + 6.41vw, 6rem));
  }
  .bg_white .symptoms .tit_02 {
    font-size: clamp(3.4rem, 2.6615rem + 1.282vw, 4.2rem);
    margin: 0 0 1.5em;
  }
  .bg_white .symptoms .img_box {
    width: clamp(30rem, 10.6154rem + 33.654vw, 51rem);
    top: -8rem;
  }
  .bg_white .symptoms .img_box::before, .bg_white .symptoms .img_box::after {
    width: clamp(10rem, 4.4615rem + 9.615vw, 16rem);
  }
  .bg_white .symptoms .img_box::before {
    top: -2rem;
    left: -2rem;
  }
  .bg_white .symptoms .img_box::after {
    bottom: -2rem;
    right: -2rem;
  }
  .bg_white .symptoms .ul_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 clamp(2rem, -1.6923rem + 6.41vw, 6rem);
  }
  .bg_white .symptoms .ul_wrap .lst_ul {
    min-width: 30rem;
    flex: 1;
  }
  .bg_white .symptoms .ul_wrap .lst_ul > li:not(:last-child) {
    margin: 0 0 0.1em;
  }
  .bg_white {
    container: tab/inline-size;
  }
  @container tab (width < 110rem) {
    .bg_white .symptoms {
      padding: 12rem clamp(2rem, -3.5385rem + 9.615vw, 8rem) 8rem;
      margin: 6rem auto 0;
    }
    .bg_white .symptoms .img_box {
      top: calc(-1 * clamp(10rem, 2.6154rem + 12.821vw, 18rem));
    }
  }
}
.bnr_box {
  padding: 4rem 1rem;
  background: #fff;
}

@media screen and (min-width: 36em), print {
  .bnr_box {
    padding: clamp(5rem, 2.2308rem + 4.808vw, 8rem) 0;
  }
  .bnr_box img {
    width: min(80rem, 100% - 2rem);
    margin: auto;
  }
}
.loopslider {
  width: 100%;
  padding: 4rem 0;
  background: #fff;
}
.loopslider #loopslider {
  max-width: 100%;
  overflow: hidden;
}
.loopslider #loopslider .slick-list .slick-slide {
  margin: 0 0.5rem;
}
.loopslider #loopslider .slick-list .slick-slide.is-even {
  margin: 1rem 0.5rem 0;
}
.loopslider #loopslider .slick-list .slick-slide img {
  width: 15rem;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  .loopslider #loopslider .slick-list .slick-slide img {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}

@media screen and (min-width: 36em), print {
  .loopslider {
    padding: clamp(3rem, 0.2308rem + 4.808vw, 6rem) 0;
  }
  .loopslider #loopslider .slick-list .slick-slide {
    margin: 0 1rem;
  }
  .loopslider #loopslider .slick-list .slick-slide.is-even {
    margin: 2rem 1rem 0;
  }
  .loopslider #loopslider .slick-list .slick-slide img {
    width: clamp(30rem, 22.6154rem + 12.821vw, 38rem);
    height: auto;
  }
}
body:not(.index) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 3rem 1rem 6rem;
}
body:not(.index) .main .tel_style {
  font-size: 120%;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], .lst_anc > li > a) {
  color: var(--clr_yellow_dark);
}
@media screen and (min-width: 36em), print {
  body:not(.index) .main {
    width: min(120rem, 100% - 2rem);
    margin: clamp(5rem, 2.2308rem + 4.808vw, 8rem) auto;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  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;
  color: var(--clr_green);
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin: 0 0.6rem;
}

@media screen and (min-width: 36em), print {
  .breadnav {
    width: min(120rem, 100% - 2rem);
    margin: 1rem auto clamp(15rem, 6.6923rem + 14.423vw, 24rem);
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: clamp(1.5rem, 1.2231rem + 0.481vw, 1.8rem);
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.gallery {
  width: 90%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap, .gallery .route_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_yellow_light);
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap, .gallery .route_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap, .gallery .route_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_thum div img, .gallery .route_thum div img {
  cursor: pointer;
  filter: brightness(50%);
}
.gallery .gallery_thum .slick-current div img, .gallery .route_thum .slick-current div img {
  filter: brightness(100%);
}

@media screen and (min-width: 36em), print {
  .gallery {
    max-width: 75rem;
    width: 80%;
    margin: auto;
  }
  .gallery .gallery_slider, .gallery .route_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap, .gallery .route_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum, .gallery .route_thum {
    width: 100%;
  }
}
body.access .main .gmap {
  height: 100vw;
  border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 36em), print {
  body.access .main .gmap {
    border-radius: 3rem 3rem 3rem 3rem;
  }
}
body.access .main .gmap {
  overflow: hidden;
}
@media screen and (min-width: 36em), print {
  body.access .main .gmap {
    height: clamp(30rem, 20.7692rem + 16.026vw, 40rem);
  }
}

@media print {
  body {
    width: 1300px !important;
    zoom: 0.8;
  }
}/*# sourceMappingURL=style.css.map */