@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  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;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  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]) {
  -webkit-text-decoration-skip: ink;
          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%;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

a[href=""], a[href*=privacy_policy] {
  pointer-events: none;
}

:root {
  --clr_txt: #703D10;
  --rgb_txt: 112,61, 16;
  --clr_border: #C9C4BE;
  --rgb_border: 201,196, 190;
  --clr_shadow: #000000;
  --rgb_shadow: 0,0, 0;
  --clr_white: #fff;
  --rgb_white: 255,255, 255;
  --clr_orange: #F69C00;
  --rgb_orange: 246,156, 0;
  --clr_orange_light: #FEF3DA;
  --rgb_orange_light: 254,243, 218;
  --clr_orange_light02: #F8D27A;
  --rgb_orange_light02: 248,210, 122;
  --clr_orange_light03: #FFD8B7;
  --rgb_orange_light03: 255,216, 183;
  --clr_orange_light04: #ECCCB0;
  --rgb_orange_light04: 236,204, 176;
  --clr_orange_light05: #F3DAC4;
  --rgb_orange_light05: 243,218, 196;
  --clr_orange_dark: #F6AB00;
  --rgb_orange_dark: 246,171, 0;
  --clr_orange_dark02: #FFC84A;
  --rgb_orange_dark02: 255,200, 74;
  --clr_green: #92B168;
  --rgb_green: 146,177, 104;
  --clr_green_light: #BFDC98;
  --rgb_green_light: 191,220, 152;
  --clr_green_light02: #DBECC3;
  --rgb_green_light02: 219,236, 195;
  --clr_green_light03: #AACC7C;
  --rgb_green_light03: 170,204, 124;
  --clr_green_light04: #EEF9DF;
  --rgb_green_light04: 238,249, 223;
  --clr_green_light05: #DEF3C0;
  --rgb_green_light05: 222,243, 192;
  --clr_green_light06: #C3D6C7;
  --rgb_green_light06: 195,214, 199;
  --clr_green_dark: #81B88E;
  --rgb_green_dark: 129,184, 142;
  --clr_green_dark02: #449156;
  --rgb_green_dark02: 68,145, 86;
  --clr_green_dark03: #9DC567;
  --rgb_green_dark03: 157,197, 103;
  --clr_red: #F26B6B;
  --rgb_red: 242,107, 107;
  --clr_red_light: #FEE4E4;
  --rgb_red_light: 254,228, 228;
  --clr_red_light02: #F39191;
  --rgb_red_light02: 243,145, 145;
  --clr_red_light03: #FECFCF;
  --rgb_red_light03: 254,207, 207;
  --clr_red_light04: #FFCFCF;
  --rgb_red_light04: 255,207, 207;
  --clr_red_dark: #F9A1A1;
  --rgb_red_dark: 249,161, 161;
  --clr_brown: #703D10;
  --rgb_brown: 112,61, 16;
  --clr_brown_dark: #574E4A;
  --rgb_brown_dark: 87,78, 74;
  --clr_brown_dark02: #655549;
  --rgb_brown_dark02: 101,85, 73;
  --clr_gray: #DDDDDD;
  --rgb_gray: 221,221, 221;
  --clr_gray_light: #EEEEEE;
  --rgb_gray_light: 238,238, 238;
}

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

@media screen and (min-width: 48em), print {
  .pc-txt_c {
    text-align: center !important;
  }
  .pc-txt_l {
    text-align: left !important;
  }
  .pc-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);
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: var(--clr_green_light05);
  text-underline-offset: -0.1em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.d-inline {
  display: inline-block;
}

.zen {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

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

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

.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
    max-width: 40%;
    height: auto;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
    max-width: 40%;
    height: auto;
  }
  .tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

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

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

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

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

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

.mt05 {
  margin-top: 0.5rem !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.pt00 {
  padding-top: 0 !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt05 {
    margin-top: 1rem !important;
  }
}
body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
  margin-top: 4rem;
}
body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
  margin-top: 3rem;
}
body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
  margin-top: 2rem;
}
body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: 8rem;
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
}

.tbl_time {
  font-size: 1.4rem;
  line-height: 1.8;
}
.tbl_time > table {
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 1rem;
  border-spacing: 0;
}
@media screen and (min-width: 48em), print {
  .tbl_time > table {
    border-radius: 2rem;
  }
}
.tbl_time > table tr th {
  font-weight: normal;
  line-height: 1.2;
}
.tbl_time > table tr th[scope=col] {
  padding: 1rem 0 0.8rem;
  text-align: center;
  background: var(--clr_green_light);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.tbl_time > table tr th[scope=col]:first-child {
  width: 35%;
  text-align: right;
  padding-right: 2%;
}
.tbl_time > table tr th[scope=col]:last-of-type {
  width: 15%;
  padding-right: 4%;
}
.tbl_time > table tr th.time {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
  background: var(--clr_orange_light);
  color: var(--clr_brown_dark);
  text-align: right;
  padding-right: 2.5%;
  font-size: 95%;
}
.tbl_time > table tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  line-height: 1;
  color: var(--clr_orange_dark);
  background: var(--clr_orange_light);
  font-size: 90%;
}
.tbl_time > table tr td.close {
  color: var(--clr_txt);
}
.tbl_time > table tr td:last-of-type {
  width: 15%;
  padding-right: 4%;
}
.tbl_time > table tr:not(:last-of-type) td {
  border-bottom: 1px solid var(--clr_orange_light04);
}
.tbl_time > table tr:not(:last-of-type) td:last-of-type {
  border-bottom: 1px solid;
  border-image-source: linear-gradient(to right, var(--clr_orange_light04) calc(100% - 1rem), transparent calc(100% - 1rem));
  border-image-slice: 1;
}
.tbl_time > table tr:not(:last-of-type) .time {
  border-bottom: 1px solid;
  border-image-source: linear-gradient(to left, var(--clr_orange_light04) calc(100% - 1rem), transparent calc(100% - 1rem));
  border-image-slice: 1;
}
.tbl_time .tbl_caption {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 1rem;
  color: var(--clr_brown_dark);
}
.tbl_time .tbl_caption .cap {
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: 0.8rem;
}
.tbl_time .tbl_caption .cap .cap_tit {
  color: var(--clr_white);
  text-align: center;
  border-radius: 5px;
  background: var(--clr_red);
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 2.2rem;
  }
  .tbl_time table tr th[scope=col] {
    padding: 1.2rem 0;
  }
  .tbl_time table tr th[scope=col]:first-child {
    width: 35%;
    text-align: right;
    padding-right: 2%;
  }
  .tbl_time table tr th[scope=col]:last-of-type {
    width: 15%;
    padding-right: 1%;
  }
  .tbl_time table tr th.time {
    font-size: 2rem;
    letter-spacing: 0.05em;
    padding-right: 4.5%;
  }
  .tbl_time table td {
    padding: 1.4rem 0.4rem;
    font-size: 90%;
  }
  .tbl_time table td:last-of-type {
    width: 15%;
    padding-right: 1%;
  }
  .tbl_time .tbl_caption {
    margin-top: 1.8rem;
  }
  .tbl_time .tbl_caption .cap {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 1.3rem;
  }
  .tbl_time .tbl_caption .txt_green {
    margin-right: 1rem;
  }
}

.gmap {
  width: 100%;
}

.map_img {
  text-align: center;
  width: calc(100vw - 5rem);
  margin-inline: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.map_img dt {
  text-align: center;
  font-size: 1.8rem;
  padding: 1rem 1rem 0.4rem;
  letter-spacing: 0.1em;
  width: 65%;
  margin: 0 auto;
  background: var(--clr_orange_light02);
  mask-image: url("../img/tit_map.svg");
  mask-position: bottom center;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-image: url("../img/tit_map.svg");
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
}
.map_img dd img, .map_img dd iframe {
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}
.map_img dd iframe {
  aspect-ratio: 750/778;
}
.map_img dd p {
  margin: 0;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--clr_brown_dark);
}
.map_img dd p:not(:first-of-type) {
  margin-top: 1em;
}
.map_img dd .btn {
  margin-top: 1.5rem;
}
.map_img.-green dt {
  background: var(--clr_green_light);
}
@media screen and (min-width: 48em), print {
  .map_img {
    width: 50rem;
  }
  .map_img dt {
    font-size: 3rem;
    width: 31.42rem;
    height: 7rem;
    padding: 1.8rem 2rem 0rem 1rem;
  }
  .map_img dd img, .map_img dd iframe {
    border-radius: 3rem;
    margin-bottom: 1.8rem;
  }
  .map_img dd p {
    font-size: 2.2rem;
  }
  .map_img dd .btn {
    margin-top: 2.2rem;
  }
}

.tit_01 {
  font-size: 2.2rem;
  padding: 1rem;
  text-align: left;
  margin-bottom: 4rem;
  background: url(../img/tit_01.webp) center/auto 100% no-repeat;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  min-height: 11rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}

.tit_02 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding-bottom: 1.8rem;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  background: url("../img/tit_02.svg") center bottom/1.5em auto no-repeat;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: var(--clr_orange_light02);
  padding: 0.7rem 1.4rem;
  border-radius: 0.5rem;
  letter-spacing: 0.1em;
}

.tit_04 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0 0.5rem 0.6rem;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(to right, var(--clr_green_dark) 2em, var(--clr_gray) 2em);
  border-image-slice: 1;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 0rem 0 0.2rem 2.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  background: url("../img/tit_05.svg") left top/1.4em auto no-repeat;
}

.tit_06 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_green_dark02);
  letter-spacing: 0.1em;
  padding-left: 1.6rem;
  position: relative;
}
.tit_06::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 3px;
  background: var(--clr_green_dark02);
  border-radius: 50vh;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 5.2rem;
    min-height: 35.5rem;
    margin-bottom: 7rem;
  }
  .tit_01 span {
    width: calc(1200px - 2rem);
    margin: 3rem auto 2rem;
  }
  .tit_02 {
    font-size: 5.2rem;
    margin-bottom: 4.5rem;
    padding-bottom: 3.2rem;
    background-size: 6.4rem auto;
  }
  .tit_03 {
    font-size: 3.4rem;
    margin-bottom: 3rem;
    border-radius: 1rem;
    padding: 1.5rem 1.7rem;
  }
  .tit_04 {
    font-size: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 0.9rem;
  }
  .tit_05 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    padding: 0.2rem 0 0.2rem 5rem;
    background-size: 3.627rem;
  }
  .tit_06 {
    font-size: 2.2rem;
    padding-left: 2.6rem;
  }
  .tit_06::before {
    width: 1rem;
    left: 0.8rem;
  }
}
.lst {
  line-height: 1.4;
}
.lst > li:not(:last-child) {
  margin-bottom: 1rem;
}

.lst_ul {
  line-height: 1.4;
}
.lst_ul > li {
  padding-left: 1.4em;
  position: relative;
  color: var(--clr_brown_dark02);
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_orange_dark);
  font-size: 70%;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.lst_ul.-kome > li {
  color: var(--clr_txt);
}
.lst_ul.-kome > li::before {
  content: "※";
  color: var(--clr_txt);
  top: 0;
  font-size: 100%;
}

.lst_ul_disc {
  line-height: 1.4;
  padding-left: 2rem;
}
.lst_ul_disc > li {
  color: var(--clr_brown_dark02);
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ul_disc > li::marker {
  color: var(--clr_txt);
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  color: var(--clr_brown_dark02);
}
.lst_ol > li {
  counter-increment: number 1;
  padding-left: 1.3em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ol > li::before {
  content: counter(number) ".";
  color: var(--clr_orange_dark);
  line-height: 1;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0.45rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol > li::before {
    top: 0.6rem;
  }
}

.lst_dl {
  --dl_border: var(--clr_border);
}
.lst_dl > dt {
  background: var(--clr_green_light04);
  color: var(--clr_brown_dark);
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
}
.lst_dl > dd {
  color: var(--clr_brown_dark02);
  margin: 0 0 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
  border-bottom: 1px solid var(--dl_border);
}
@media screen and (min-width: 48em), print {
  .lst_dl > dt {
    padding: 1rem 2.5rem;
  }
  .lst_dl > dd {
    padding: 1.5rem 2.5rem;
  }
  .lst_dl.-pc_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lst_dl.-pc_row > dt {
    width: 30%;
    padding: 1.5rem 2.5rem;
  }
  .lst_dl.-pc_row > dt:last-of-type {
    border-bottom: 1px solid var(--dl_border);
  }
  .lst_dl.-pc_row > dd {
    width: 70%;
    margin: 0;
    border-top: 1px solid var(--dl_border);
    border-left: none;
    border-bottom: none;
  }
  .lst_dl.-pc_row > dd:last-of-type {
    border-bottom: 1px solid var(--dl_border);
  }
}

.lst_dl02 > dt {
  font-weight: bold;
}
.lst_dl02 > dd {
  margin-bottom: 1rem;
}
.lst_dl02 > dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl02 > dt {
    width: 8.5em;
  }
  .lst_dl02 > dd {
    width: calc(100% - 8.5em);
    padding-left: 1rem;
  }
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc > li a {
  display: inline-block;
  border: 1px solid var(--clr_brown);
  color: var(--clr_txt);
  background: var(--clr_white);
  border-radius: 50vh;
  padding: 1.2rem 2.5rem;
  line-height: 1.4;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  display: block;
  text-decoration: none !important;
  color: var(--clr_brown_dark) !important;
}
.lst_anc > li a::before {
  font-family: "fontello";
  content: "\a014";
  margin-right: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lst_anc > li a {
    padding: 1.8rem 5.4rem;
    min-width: 32.8rem;
    font-size: 2.4rem;
  }
  .lst_anc > li a::before {
    margin-right: 0.6rem;
  }
}
.lst_anc > li a::before {
  font-family: "fontello";
  content: "\f103";
  color: var(--clr_orange_dark);
}
@media screen and (min-width: 48em), print {
  .lst_anc > li a {
    min-width: auto;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  .lst_anc > li a:is(:hover, :focus-visible) {
    opacity: 1;
    background: var(--clr_green_light);
    border-color: var(--clr_green_light);
  }
}

.bnr_lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.bnr_lst > li {
  width: 100%;
}
.bnr_lst > li > a {
  display: block;
}
.bnr_lst > li > a.bnr_instagram {
  border-radius: 1rem;
  border: 1px solid var(--clr_brown);
  overflow: hidden;
}
@media screen and (min-width: 48em), print {
  .bnr_lst {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .bnr_lst > li {
    width: auto;
    max-width: calc((100% - 2rem) / 2);
  }
  .bnr_lst > li > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .bnr_lst > li > a.bnr_instagram {
    border-radius: 2rem;
  }
  .bnr_lst > li > a img {
    margin-inline: auto;
    transition: 0.2s;
  }
  .bnr_lst > li > a:hover {
    border-color: rgba(var(--rgb_brown), 0.6);
  }
  .bnr_lst > li > a:hover img {
    opacity: 0.8;
    filter: brightness(105%);
  }
}

.flow > dd {
  margin: 0;
  position: relative;
}
.flow > dd:not(:last-child) {
  margin: 0 0 6rem;
}
.flow > dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 1.8rem solid var(--clr_green_light);
  border-right: 1.3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.3rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow > dd:not(:last-child) {
    margin: 0 0 9rem;
  }
  .flow > dd:not(:last-child)::after {
    bottom: -7rem;
    border-top: 3rem solid var(--clr_green_light);
    border-right: 2rem solid transparent;
    border-left: 2rem solid transparent;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  background: var(--clr_green_light04);
  padding: 4.5rem 1.5rem 1.5rem;
  counter-increment: number 1;
  border-radius: 1rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    border-radius: 2rem;
  }
}
.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: -5rem;
  left: 0;
  right: 0;
  border-top: 1.8rem solid var(--clr_green_light);
  border-right: 1.3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.3rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li:not(:last-child) {
    margin: 0 0 9rem;
  }
  .lst_flow > li:not(:last-child)::after {
    bottom: -7rem;
    border-top: 3rem solid var(--clr_green_light);
    border-right: 2rem solid transparent;
    border-left: 2rem solid transparent;
  }
}
.lst_flow > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero);
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  background: var(--clr_green_light);
  border-radius: 50%;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  width: 2em;
  height: 2em;
  display: grid;
  place-content: center;
}
.lst_flow > li .flow_tit {
  padding-bottom: 0.4rem;
  padding-left: 2.2em;
  margin-top: -3rem;
  margin-bottom: 0.4rem;
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 2.8rem 4rem 3rem 9rem;
  }
  .lst_flow > li::before {
    top: 1.8rem;
    left: 2.3rem;
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
  }
  .lst_flow > li .flow_tit {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
    line-height: 1.9;
    margin-top: -1.5rem;
  }
}

.flex3, .flex4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex3 > li, .flex4 > li {
  width: calc(50% - 0.5rem);
}
.flex3 > li:not(:last-child), .flex4 > li:not(:last-child) {
  margin-bottom: inherit;
}

.flex1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
}
.flex1 > li {
  width: -moz-fit-content;
  width: fit-content;
}
.flex1 > li:not(:last-child) {
  margin-bottom: inherit;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: calc(50% - 1rem);
    margin-top: 0 !important;
  }
  .flex2 > section:not(:last-child), .flex2 > li:not(:last-child), .flex2 > div:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex3 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3_1 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex4 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 3rem;
  }
}
.tel {
  display: inline-block;
  border: 1px solid var(--clr_brown);
  color: var(--clr_txt);
  background: var(--clr_white);
  border-radius: 50vh;
  padding: 1.2rem 2.5rem;
  line-height: 1.4;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.65rem;
}
.tel::before {
  font-family: "fontello";
  content: "\a014";
  margin-right: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .tel {
    padding: 1.8rem 5.4rem;
    min-width: 32.8rem;
    font-size: 2.4rem;
  }
  .tel::before {
    margin-right: 0.6rem;
  }
}
.tel::before {
  font-family: "fontello";
  content: "\a002";
  color: var(--clr_green_dark);
}
@media screen and (min-width: 48em), print {
  .tel {
    font-size: 2.6rem;
  }
  .tel::before {
    margin-right: 0.5rem;
  }
}

.rsv {
  display: inline-block;
  border: 1px solid var(--clr_brown);
  color: var(--clr_txt);
  background: var(--clr_white);
  border-radius: 50vh;
  padding: 1.2rem 2.5rem;
  line-height: 1.4;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: var(--clr_orange_light02);
  border-color: var(--clr_orange_light02);
  color: var(--clr_txt);
  font-size: 1.5rem;
}
.rsv::before {
  font-family: "fontello";
  content: "\a014";
  margin-right: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .rsv {
    padding: 1.8rem 5.4rem;
    min-width: 32.8rem;
    font-size: 2.4rem;
  }
  .rsv::before {
    margin-right: 0.6rem;
  }
}
.rsv::before {
  font-family: "fontello";
  content: "\a003";
  font-size: 130%;
}
@media screen and (min-width: 48em), print {
  .rsv {
    font-size: 2.4rem;
  }
  .rsv:is(:hover, :focus-visible) {
    opacity: 1;
    background: var(--clr_orange_light);
  }
}

.tel_rsv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.tel_rsv > li {
  height: 5rem;
  width: 55vw;
}
.tel_rsv > li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.tel_rsv > li .tel {
  padding: 0.3rem 0 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_rsv > li .tel::before {
  transform: translateY(-2px);
}
@media screen and (min-width: 48em), print {
  .tel_rsv {
    flex-direction: row;
    gap: 0 1.5rem;
  }
  .tel_rsv > li {
    width: 32.8rem;
    height: 7.6rem;
  }
  .tel_rsv > li a {
    font-size: 2.4rem;
  }
  .tel_rsv > li .tel {
    font-size: 3.2rem;
    padding-top: 0.6rem;
  }
}

.box {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--clr_green_light04);
  color: var(--clr_brown_dark02);
}
@media screen and (min-width: 48em), print {
  .box {
    border-radius: 2rem;
  }
}
.box.-color02 {
  background: var(--clr_orange_light);
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 2rem 3rem;
  }
}

.btn {
  display: inline-block;
  border: 1px solid var(--clr_brown);
  color: var(--clr_txt);
  background: var(--clr_white);
  border-radius: 50vh;
  padding: 1.2rem 2.5rem;
  line-height: 1.4;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.btn::before {
  font-family: "fontello";
  content: "\a014";
  margin-right: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 1.8rem 5.4rem;
    min-width: 32.8rem;
    font-size: 2.4rem;
  }
  .btn::before {
    margin-right: 0.6rem;
  }
}
.btn:is(:hover, :focus-visible) {
  opacity: 1;
  background: var(--clr_green_light);
  border-color: var(--clr_green_light);
}
.btn.-map::before {
  font-family: "fontello";
  content: "\a010";
  font-size: 130%;
  transform: translateY(-1px);
}
.btn.-first {
  background: var(--clr_green_light);
  border-color: var(--clr_green_light);
}
.btn.-first::before {
  font-family: "fontello";
  content: "\a009";
  font-size: 130%;
  transform: translateY(1px);
}
.btn.-first:is(:hover, :focus-visible) {
  background: var(--clr_green_light02);
}

.lnk {
  display: inline-block;
  text-decoration: underline;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--clr_orange_dark);
}
.lnk::after {
  content: "≫";
}
.lnk:is(:hover, :focus-visible) {
  text-decoration: none;
  opacity: 1;
}
.lnk.out::after {
  font-family: "fontello";
  content: "\f08e";
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.4;
  color: var(--clr_brown_dark02);
}
.tbl:has(thead) {
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.tbl tr th {
  text-align: center;
  padding: 1rem 0.6rem;
  font-weight: normal;
  border-bottom: 1px solid var(--clr_green_light06);
  border-right: 1px solid var(--clr_green_light06);
  background: var(--clr_orange_light);
}
.tbl tr th:first-of-type {
  border-top: 1px solid var(--clr_green_light06);
}
.tbl tr td {
  text-align: left;
  padding: 1rem 0.6rem;
  border-bottom: 1px solid var(--clr_green_light06);
}
.tbl tr td:not(:first-of-type) {
  border-left: 1px solid var(--clr_green_light06);
}
.tbl tr td.unit {
  width: 5em;
  text-align: center;
}
.tbl tr td.price {
  text-align: right;
  width: 8em;
}
.tbl tr .nowrap, .tbl tr .sp_nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl tr:first-of-type td {
  border-top: 1px solid var(--clr_green_light06);
}
.tbl thead tr th {
  background: var(--clr_green_light);
  border-color: var(--clr_white);
}

@media screen and (min-width: 48em), print {
  .tbl:has(thead) {
    border-radius: 2rem 2rem 0 0;
  }
  .tbl tr th {
    padding: 1rem 2rem;
  }
  .tbl tr td {
    padding: 1rem 2rem;
  }
  .tbl tr td.unit {
    width: 14rem;
  }
  .tbl tr td.price {
    width: 28rem;
  }
  .tbl tr .sp_nowrap {
    width: inherit;
    white-space: inherit;
  }
  .tbl thead tr {
    border-radius: 2rem 2rem 0 0;
  }
}
.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: #000;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  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;
  }
}
html {
  font-size: 2.7777777778vw;
}

body {
  background: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_white), 0.8);
  -webkit-backdrop-filter: blur(0.6rem);
          backdrop-filter: blur(0.6rem);
  position: fixed;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
body.spnav_modal {
  height: 100%;
  overflow: hidden;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

.main {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.wrap {
  margin-right: 1rem;
  margin-left: 1rem;
}

@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;
  }
  .main {
    font-size: 2rem;
    line-height: 1.65;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .wrap {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
:target {
  scroll-margin-top: var(--scroll-margin);
}

.header {
  background: var(--clr_white);
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.16);
}
.header .wrap {
  padding: 1rem 0;
}
.header .wrap .logo {
  width: calc(100% - 5.6rem);
  height: 4.6rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  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 .add {
  text-align: center;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  color: var(--clr_brown_dark);
}
.header .wrap .headR .add .zip {
  display: none;
}
.header .wrap .headR .add .add01, .header .wrap .headR .add .add02 {
  display: block;
}
.header .wrap .headR .acs_tel .acs {
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_brown_dark);
  margin-top: 0.4rem;
  text-align: center;
}
.header .wrap .headR .acs_tel .acs::before {
  font-family: "fontello";
  content: "\a001";
  color: var(--clr_orange_dark);
  font-size: 150%;
  margin-right: 0.4rem;
  display: inline-block;
  transform: translateY(2px);
}
.header .wrap .headR .acs_tel .acs .num {
  line-height: 1;
  color: var(--clr_white);
  font-size: 140%;
  width: 1.4em;
  height: 1.4em;
  margin: 0 0.3rem;
  text-align: center;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
}
.header .wrap .headR .acs_tel .acs .num::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr_brown);
  border-radius: 50%;
  position: absolute;
  top: -0.2em;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 48em), print {
  .header {
    padding: 1.5rem 0 1rem;
  }
  .header .wrap {
    padding: 0 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 46rem;
    height: 7.6rem;
  }
  .header .wrap .headR {
    width: calc(100% - 46rem);
  }
  .header .wrap .headR .add {
    text-align: right;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .header .wrap .headR .add .zip {
    display: inline-block;
  }
  .header .wrap .headR .add .add01, .header .wrap .headR .add .add02 {
    display: inline-block;
  }
  .header .wrap .headR .acs_tel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  .header .wrap .headR .acs_tel .acs {
    font-size: 2rem;
  }
  .header .wrap .headR .acs_tel .acs::before {
    transform: translateY(3px);
    margin-right: 0.4rem;
    font-size: 140%;
  }
  .header .wrap .headR .acs_tel .acs .num {
    font-size: 3.4rem;
    width: 4.4rem;
    height: 4.4rem;
    margin: 0 0.3rem;
  }
  .header .wrap .headR .acs_tel .acs .num::after {
    top: -0.2em;
  }
  .header .wrap .headR .acs_tel .tel {
    font-size: 2.8rem;
    min-width: auto;
    width: 28.2rem;
    padding: 0.6rem 0 0.4rem 0.6rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 3.5rem;
  height: 4.6rem;
  color: var(--clr_orange_dark);
  text-align: center;
  line-height: 1;
  font-size: 0.9rem;
  padding: 0;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 102;
}
#nav #sp_menu .btn-line {
  display: block;
  position: absolute;
  top: 1.1rem;
  left: 0;
  right: 0;
  width: 3.5rem;
  height: 2px;
  background-color: var(--clr_orange_dark);
  border-radius: 50vh;
  transition: all 0.4s;
  margin: 0 auto;
}
#nav #sp_menu .btn-line:nth-of-type(2) {
  top: 2.1rem;
}
#nav #sp_menu .btn-line:nth-of-type(3) {
  top: 3.1rem;
}
#nav #sp_menu.-active .btn-line:nth-of-type(1) {
  animation: menu-bar01 0.6s forwards;
}
#nav #sp_menu.-active .btn-line:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#nav #sp_menu.-active .btn-line:nth-of-type(3) {
  animation: menu-bar02 0.6s forwards;
}
#nav #sp_menu.-close .btn-line:nth-of-type(1) {
  animation: active-menu-bar01 0.6s forwards;
}
#nav #sp_menu.-close .btn-line:nth-of-type(2) {
  opacity: 0;
}
#nav #sp_menu.-close .btn-line:nth-of-type(3) {
  animation: active-menu-bar03 0.6s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(1rem) rotate(45deg);
  }
  50% {
    transform: translateY(1rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-1rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-1rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(1rem) rotate(0);
  }
  100% {
    transform: translateY(1rem) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1rem) rotate(0);
  }
  100% {
    transform: translateY(-1rem) rotate(-45deg);
  }
}
@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
  }
  #nav #sp_menu {
    display: none;
  }
}

.gnav_subnav {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-height: calc(100svh - 8rem);
  overflow-y: auto;
  background: var(--clr_white);
  box-shadow: 0 10px 10px rgba(var(--rgb_shadow), 0.06);
  padding: 1.5rem;
  position: fixed;
  top: 7rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.gnav_subnav.-active {
  z-index: 9998;
  animation: active-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
}
.gnav_subnav.-close {
  animation: close-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
}
@keyframes active-menu {
  0% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    top: 5.9rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
@keyframes close-menu {
  0% {
    top: 5.9rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  100% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 2rem 0;
    position: static;
    background: var(--clr_white);
  }
}

.gnav_subnav {
  width: 100%;
  max-height: calc(100svh - 6.6rem - 5rem - 1rem);
  box-shadow: none;
  overflow-y: auto;
  padding: 0.5rem 1.5rem 1.5rem;
  position: fixed;
  top: 6.4rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: calc(infinity);
}
.gnav_subnav .clinic_info {
  color: var(--clr_brown_dark);
}
.gnav_subnav .clinic_info .add {
  text-align: center;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.gnav_subnav .clinic_info .add .zip {
  display: none;
}
.gnav_subnav .clinic_info .add .add01, .gnav_subnav .clinic_info .add .add02 {
  display: block;
}
.gnav_subnav .clinic_info .acs_tel .acs {
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 0.4rem;
  text-align: center;
}
.gnav_subnav .clinic_info .acs_tel .acs::before {
  font-family: "fontello";
  content: "\a001";
  color: var(--clr_orange_dark);
  font-size: 150%;
  margin-right: 0.4rem;
  display: inline-block;
  transform: translateY(2px);
}
.gnav_subnav .clinic_info .acs_tel .acs .num {
  line-height: 1;
  color: var(--clr_white);
  font-size: 140%;
  width: 1.4em;
  height: 1.4em;
  margin: 0 0.3rem;
  text-align: center;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
}
.gnav_subnav .clinic_info .acs_tel .acs .num::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr_brown);
  border-radius: 50%;
  position: absolute;
  top: -0.2em;
  left: 0;
  z-index: -1;
}
.gnav_subnav .gnav {
  padding-top: 1rem;
}
.gnav_subnav .gnav > li a, .gnav_subnav .gnav > li .sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1rem;
  font-size: 1.5rem;
  color: var(--clr_brown_dark);
}
.gnav_subnav .gnav > li a.current, .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_orange_dark);
}
.gnav_subnav .gnav > li .sub {
  position: relative;
}
.gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\a012";
  color: var(--clr_brown);
  display: block;
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: var(--clr_orange_light);
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .gnav_subnav .gnav > li .subbox {
    border-radius: 2rem;
  }
}
.gnav_subnav .gnav > li .subbox .subnav {
  padding: 1rem;
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  font-size: 1.3rem;
  padding: 0.7rem 0.5rem;
  color: var(--clr_brown_dark);
}
.gnav_subnav .gnav > li .subbox .subnav li a::before {
  font-family: "fontello";
  content: "\a014";
  margin-right: 0.5rem;
  padding: 0;
  color: var(--clr_brown);
}
.gnav_subnav .gnav > li .subbox .subnav li a.current {
  color: var(--clr_orange_dark);
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 0 2rem;
  }
  .gnav_subnav .gnav li {
    position: relative;
  }
  .gnav_subnav .gnav li a, .gnav_subnav .gnav li .sub {
    display: block;
    text-align: center;
    font-size: 2.2rem;
    margin: 0;
    cursor: pointer;
  }
  .gnav_subnav .gnav li a::after, .gnav_subnav .gnav li .sub::after {
    position: static;
    display: inline-block;
    margin-left: 1rem;
  }
  .gnav_subnav .gnav li a:hover, .gnav_subnav .gnav li .sub:hover {
    color: var(--clr_orange_dark);
  }
  .gnav_subnav .gnav li a.current, .gnav_subnav .gnav li .sub.current {
    color: var(--clr_orange_dark);
  }
  .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 4.5rem;
    width: 51.5rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 10px 0px rgba(var(--rgb_shadow), 0.06);
  }
  .gnav_subnav .gnav li .subbox > .subnav {
    padding: 1.5rem 2.5rem;
    display: flex;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
  }
  .gnav_subnav .gnav li .subbox > .subnav li {
    width: calc((100% - 1rem) / 2);
  }
  .gnav_subnav .gnav li .subbox > .subnav li a {
    text-align: left;
    font-size: 1.8rem;
    padding: 1rem 0.5rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a::before {
    margin-right: 0.6rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a:is(:hover, :focus-visible), .gnav_subnav .gnav li .subbox > .subnav li a.current {
    color: var(--clr_orange_dark);
  }
}

.pc_rsv {
  position: fixed;
  height: 28.8rem;
  top: 27.5rem;
  right: 0;
  z-index: 100;
}
.pc_rsv .rsv {
  border-radius: 1rem 0 0 1rem;
  min-width: auto;
  margin: 0 0 0 auto;
  padding: 0rem 0 0.6rem;
  width: 6rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0;
  box-shadow: 0px 3px 6px 0px rgba(var(--rgb_shadow), 0.16);
  border-right: none;
}
.pc_rsv .rsv::before {
  margin: 0 0 1rem;
}

.overview {
  padding: 10rem 0rem 4rem;
  font-size: 1.4rem;
  line-height: 1.8;
  background: var(--clr_orange_light);
  color: var(--clr_brown_dark);
}
.overview .wrap {
  background: var(--clr_white);
  padding: 0 1.5rem 6rem;
  border-radius: 3rem;
  position: relative;
}
.overview .wrap::after {
  content: "";
  display: block;
  width: calc(100% - 4rem);
  height: 1rem;
  background: url("../img/overview_repeat_happa.svg") center left 0/contain repeat-x;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5rem;
}
.overview .wrap .clinic_name {
  text-align: center;
  margin: 0 0 -6rem;
  position: relative;
  top: -7rem;
}
.overview .wrap .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview .wrap .clinic_name::before, .overview .wrap .clinic_name::after {
  display: block;
  content: "";
  width: 7rem;
  height: 1rem;
  background: url("../img/overview_repeat_happa.svg") center left/contain repeat-x;
  position: absolute;
  bottom: 6rem;
}
.overview .wrap .clinic_name::before {
  left: 0.5rem;
}
.overview .wrap .clinic_name::after {
  right: 0rem;
}
.overview .wrap .overview_add {
  margin: 0;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.overview .wrap .tel_rsv {
  margin: 2rem auto;
}
.overview .wrap .gaiyo {
  line-height: 1.4;
  width: 100%;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 2rem 0.5rem;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.overview .wrap .gaiyo dt {
  padding: 0.8rem 0.4rem;
  background: var(--clr_green_light02);
  border-radius: 0.5rem;
  text-align: center;
  display: grid;
  place-content: center;
}
.overview .wrap .gaiyo dd {
  padding: 0.8rem 0;
}
.overview .wrap .gaiyo dd .num {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 110%;
}
.overview .tbl_time {
  margin: 3rem 0;
}
.overview .overview_maps {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.overview .overview_maps .map_img dd p {
  font-size: 1.4rem;
}
@media screen and (min-width: 48em), print {
  .overview {
    padding: 19rem 0rem 8rem;
    font-size: 2.2rem;
    line-height: 1.65;
    overflow: hidden;
  }
  .overview .wrap {
    padding: 0 6.5rem 16.6rem;
    border-radius: 6rem;
    width: calc(1200px - 2rem);
  }
  .overview .wrap::before {
    display: none;
  }
  .overview .wrap::after {
    width: calc(100% - 10.4rem);
    height: 2.6rem;
    bottom: 8rem;
    background-position: center left 1rem;
  }
  .overview .wrap .clinic_name {
    margin: 0 auto -9rem;
    top: -11rem;
    width: 42.1rem;
  }
  .overview .wrap .clinic_name img {
    max-width: inherit;
  }
  .overview .wrap .clinic_name::before, .overview .wrap .clinic_name::after {
    width: 37.5rem;
    height: 2.6rem;
    bottom: 7.5rem;
  }
  .overview .wrap .clinic_name::before {
    left: -31rem;
  }
  .overview .wrap .clinic_name::after {
    right: -33.5rem;
  }
  .overview .wrap .tel_rsv {
    margin: 3.4rem auto 5rem;
  }
  .overview .wrap .overview_content {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0 3.5rem;
  }
  .overview .wrap .overview_content .overviewL, .overview .wrap .overview_content .overviewR {
    width: 50rem;
  }
  .overview .wrap .gaiyo {
    margin: 0;
    grid-template-columns: 14.2rem 1fr;
    align-items: center;
    gap: 2.5rem 1.5rem;
  }
  .overview .wrap .gaiyo dt {
    padding: 1.6rem 0.4rem;
    border-radius: 1rem;
    height: 100%;
  }
  .overview .wrap .gaiyo dd {
    padding: 1rem 2px 1rem 0;
  }
  .overview .wrap .gaiyo dd .num {
    font-size: 2.4rem;
  }
  .overview .tbl_time {
    margin: 0.5rem 0 0;
  }
  .overview .overview_maps {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem 0;
    margin-top: 3rem;
  }
  .overview .overview_maps .map_img {
    margin: 0;
  }
  .overview .overview_maps .map_img dd iframe {
    margin-bottom: 1rem;
  }
  .overview .overview_maps .map_img dd .btn {
    margin-top: 0;
  }
  .overview .overview_maps .map_img dd p {
    font-size: 2.2rem;
  }
}

#tel_up {
  width: 100%;
  height: 5rem;
  background: var(--clr_white);
  box-shadow: 0px 0px 12px -3px rgba(var(--rgb_txt), 0.3);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#tel_up ul {
  width: calc(100% - 1rem);
  margin-inline: auto;
  height: 100%;
  flex-direction: row;
  gap: 0.5rem;
}
#tel_up ul li {
  width: calc((100% - 0.5rem) / 2);
  height: calc(100% - 0.8rem);
  display: flex;
  align-items: center;
}
#tel_up ul li a {
  font-size: 1.4rem;
}
#tel_up ul li a.tel {
  font-size: 1.5rem;
}
@media screen and (min-width: 48em), print {
  #tel_up {
    display: none;
  }
}

#pageup {
  position: fixed;
  bottom: 5.5rem;
  right: 0.5rem;
  display: grid;
  place-content: start center;
  width: 5.6rem;
  height: 5.6rem;
  margin-right: 0.4rem;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  box-shadow: 0 3px 6px rgba(var(--rgb_shadow), 0.16);
  background: url("../img/totop.png") bottom -0.4rem center/75% auto no-repeat, var(--clr_white);
  border-radius: 1rem;
  font-size: 1rem;
  padding: 0;
  letter-spacing: 0;
}
#pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e8a3";
}
@media screen and (min-width: 48em), print {
  #pageup {
    bottom: 3rem;
    right: 3rem;
    width: 8.3rem;
    height: 8.3rem;
    font-size: 1.6rem;
  }
}

.footer {
  text-align: center;
  padding: 0 0 4.5rem;
  background: var(--clr_orange);
  color: var(--clr_white);
}
.footer .footer_lnks {
  padding: 1.5rem;
  font-size: 1.2rem;
}
.footer .footer_lnks a {
  text-decoration: underline;
}
.footer .footer_lnks .copy {
  display: block;
  margin-top: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.footer .footer_lnks .copy a {
  text-decoration: none;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 5.5rem 0 8.5rem;
  }
  .footer .footer_lnks {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
  .footer .footer_lnks .copy {
    font-size: 2.2rem;
  }
  .footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 0;
    margin-inline: auto;
  }
  .footer ul li {
    text-align: center;
    font-size: 2.2rem;
    padding: 0 1.2rem;
    line-height: 1;
    letter-spacing: 0.1em;
    border-right: 1px solid var(--clr_white);
    -webkit-text-size-adjust: none;
  }
  .footer ul li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul li.last-in-row {
    border-right-color: transparent;
  }
  .footer ul.subnav {
    width: 78rem;
  }
  .footer ul:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 100vw;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 100vw;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 44%;
     object-position: 44%;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
  margin: -1.8rem auto;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: var(--clr_white);
}
.keyvsl .kv_point {
  padding: 2rem 0;
  background: var(--clr_green_light04);
}
.keyvsl .kv_point .point_lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: calc(44vw - 5.5rem) 0 0;
}
.keyvsl .kv_point .point_lst > li {
  width: min(44vw, 27rem);
  aspect-ratio: 27.031/24.433;
}
.keyvsl .kv_point .point_lst > li a {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  padding-top: 0.7rem;
  background-position: top 2.5rem center;
  background-size: auto 1.8rem;
  background-repeat: no-repeat;
  mask-image: url("../img/kv_point_bg.svg");
  mask-position: bottom center;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-image: url("../img/kv_point_bg.svg");
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
}
.keyvsl .kv_point .point_lst > li a::before {
  font-family: "fontello";
  content: "\a005";
  font-size: 2.2rem;
}
.keyvsl .kv_point .point_lst > li a .txt_small {
  font-size: 1.5rem;
}
.keyvsl .kv_point .point_lst > li a .num {
  line-height: 1;
  color: var(--clr_white);
  font-size: 120%;
  width: 1.1em;
  height: 1.1em;
  margin: 0 0.3rem;
  text-align: center;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 0;
}
.keyvsl .kv_point .point_lst > li a .num::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr_brown);
  border-radius: 50%;
  position: absolute;
  top: -0.05em;
  left: 0;
  z-index: -1;
}
.keyvsl .kv_point .point_lst > li:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.keyvsl .kv_point .point_lst > li:nth-of-type(1) a {
  background-image: url("../img/kv_point01_text.svg");
  background-color: rgba(var(--rgb_green_light), 0.9);
}
.keyvsl .kv_point .point_lst > li:nth-of-type(1) a::before {
  font-family: "fontello";
  content: "\a004";
}
.keyvsl .kv_point .point_lst > li:nth-of-type(2) {
  margin-right: -0.75rem;
  position: relative;
  z-index: 1;
}
.keyvsl .kv_point .point_lst > li:nth-of-type(2) a {
  background-image: url("../img/kv_point02_text.svg");
  background-color: rgba(var(--rgb_orange_light02), 0.9);
}
.keyvsl .kv_point .point_lst > li:nth-of-type(2) a::before {
  font-family: "fontello";
  content: "\a005";
}
.keyvsl .kv_point .point_lst > li:nth-of-type(3) {
  margin-left: -0.75rem;
}
.keyvsl .kv_point .point_lst > li:nth-of-type(3) a {
  background-image: url("../img/kv_point03_text.svg");
  background-color: rgba(var(--rgb_red_dark), 0.9);
}
.keyvsl .kv_point .point_lst > li:nth-of-type(3) a::before {
  font-family: "fontello";
  content: "\a006";
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 76.5rem;
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 76.5rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin-top: -3rem;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .kv_point {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: min(100%, 200rem);
    display: flex;
    justify-content: flex-start;
    padding: 0 0 0 3rem;
    bottom: 6rem;
    background: none;
  }
  .keyvsl .kv_point .point_lst {
    padding: 18rem 0 0;
  }
  .keyvsl .kv_point .point_lst > li a {
    font-size: 3.2rem;
    padding-top: 0.7rem;
    background-position: top 2.8rem center;
    background-size: auto 3rem;
    line-height: 1.3;
  }
  .keyvsl .kv_point .point_lst > li a::before {
    font-size: 4rem;
  }
  .keyvsl .kv_point .point_lst > li a .txt_small {
    font-size: 2.8rem;
  }
  .keyvsl .kv_point .point_lst > li a .num {
    width: 4.4rem;
    height: 4.4rem;
    margin: 0 0.2rem 0 0.4rem;
  }
  .keyvsl .kv_point .point_lst > li a .num::after {
    top: -0.05em;
  }
  .keyvsl .kv_point .point_lst > li a:hover {
    opacity: 1;
    filter: brightness(110%);
  }
  .keyvsl .kv_point .point_lst > li:nth-of-type(1) {
    transform: translateX(1rem);
    top: 0;
  }
  .keyvsl .kv_point .point_lst > li:nth-of-type(2) {
    margin-right: -0.5rem;
  }
  .keyvsl .kv_point .point_lst > li:nth-of-type(3) {
    margin-left: -0.5rem;
  }
}
.top_tit02 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.top_tit02::after {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  content: attr(data-ruby);
  color: var(--clr_green_light03);
  font-size: 1.1rem;
  display: block;
  padding-top: 0.5rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 5.2rem;
    margin-bottom: 4rem;
  }
  .top_tit02::after {
    font-size: 2.2rem;
    padding-top: 1rem;
  }
}
.index_bnr {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.index_bnr .top_bnr {
  background: var(--clr_orange_light);
  border-radius: 1.5rem;
  padding: 3rem 1.5rem;
}
.index_bnr .top_bnr dt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  text-align: center;
  border-bottom: 2px solid var(--clr_orange_light05);
  padding-bottom: 1.5rem;
  letter-spacing: 0;
}
.index_bnr .top_bnr dt::before {
  content: "";
  width: 6.4rem;
  height: 6.4rem;
  font-size: 3.4rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  display: flex;
  font-weight: normal;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  color: var(--clr_white);
  background: var(--clr_orange_dark);
  mask-image: url("../img/index_bnr_tit.svg");
  mask-position: top center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../img/index_bnr_tit.svg");
  -webkit-mask-position: top center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  font-weight: normal;
}
.index_bnr .top_bnr dd .bg {
  background: var(--clr_orange_light03);
}
.index_bnr .top_bnr.-red {
  background: var(--clr_red_light);
}
.index_bnr .top_bnr.-red dt {
  border-color: var(--clr_red_light03);
}
.index_bnr .top_bnr.-red dt::before {
  background: var(--clr_red_light02);
}
.index_bnr .top_bnr.-red dd .bg {
  background-color: var(--clr_red_light04);
}
.index_bnr .top_bnr.-reserv dt::before {
  font-family: "fontello";
  content: "\a007";
  padding-left: 0.5rem;
}
.index_bnr .top_bnr.-fever dt::before {
  font-family: "fontello";
  content: "\a008";
}
@media screen and (min-width: 48em), print {
  .index_bnr {
    padding: 6.5rem 0 4rem;
    gap: 3.5rem 0;
  }
  .index_bnr .top_bnr {
    border-radius: 3rem;
    padding: 5rem 3rem 6rem;
    display: grid;
    grid-template-columns: 40rem 1fr;
    align-items: center;
    width: calc(100% - 2rem);
    margin-inline: auto;
  }
  .index_bnr .top_bnr dt {
    font-size: 3rem;
    border-bottom: none;
    padding: 0 2.5rem 3.5rem 0;
  }
  .index_bnr .top_bnr dt::before {
    width: 12rem;
    height: 12rem;
    font-size: 6.8rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1rem;
  }
  .index_bnr .top_bnr dd {
    border-left: 2px solid var(--clr_orange_light05);
    padding: 0.5rem 3.5rem 1.2rem;
    min-height: 20rem;
    display: flex;
    align-items: center;
  }
  .index_bnr .top_bnr dd p {
    margin: 0;
  }
  .index_bnr .top_bnr dd p:not(:first-of-type) {
    margin-top: 3.5rem;
  }
  .index_bnr .top_bnr.-reserv dt::before {
    padding-left: 0.5rem;
  }
  .index_bnr .top_bnr.-fever {
    padding-top: 2.8rem;
    padding-bottom: 3.7rem;
  }
  .index_bnr .top_bnr.-fever dt {
    padding-bottom: 3rem;
  }
  .index_bnr .top_bnr.-fever dd {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.index_accessmap {
  padding: 4rem 0;
  background: url("../img/index_accessmap_deco_green.png") top 28rem right 3rem/6rem auto no-repeat, url("../img/index_accessmap_deco_orange.png") top 34rem right -3rem/8rem auto no-repeat, url("../img/index_accessmap_deco_green.png") bottom 25rem left -1rem/6rem auto no-repeat;
}
.index_accessmap .hours_map {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 0;
}
.index_accessmap .rsv_btns {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.index_accessmap .rsv_btns > li {
  min-width: 70%;
}
.index_accessmap .rsv_btns > li .btn, .index_accessmap .rsv_btns > li .rsv {
  font-size: 1.7rem;
  padding: 1.6rem 2.5rem;
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .index_accessmap {
    padding: 3rem 0 7.5rem;
    background: url("../img/index_accessmap_deco_orange.png") top 32.5rem left calc(50% - 88.5rem)/15.133rem auto no-repeat, url("../img/index_accessmap_deco_green.png") top 33rem right calc(50% - 73rem)/13.711rem auto no-repeat, url("../img/index_accessmap_deco_orange02.png") top 60rem right calc(50% - 93rem)/24rem auto no-repeat, url("../img/index_accessmap_deco_green.png") bottom 48rem left calc(50% - 63rem)/13.4rem auto no-repeat;
  }
  .index_accessmap .hours_map {
    flex-direction: row;
  }
  .index_accessmap .hours_map > div {
    width: 50%;
  }
  .index_accessmap .hours_map > div .timetable {
    width: 50rem;
    margin: 7.5rem auto;
  }
  .index_accessmap .rsv_btns {
    margin-top: 7.5rem;
    gap: 3.3rem;
    flex-direction: row;
  }
  .index_accessmap .rsv_btns > li {
    min-width: auto;
  }
  .index_accessmap .rsv_btns > li .btn, .index_accessmap .rsv_btns > li .rsv {
    font-size: 2.9rem;
    padding: 3.8rem 4.6rem;
  }
  .index_accessmap .rsv_btns > li .btn::before, .index_accessmap .rsv_btns > li .rsv::before {
    font-size: 165%;
    line-height: 1;
    margin-right: 1.5rem;
  }
}

.index_info {
  padding: 4rem 0;
  background: var(--clr_orange_light);
}
.index_info .wrap {
  border-radius: 1.5rem;
  border: 1px solid var(--clr_brown);
  padding: 1.5rem 1.5rem 3rem;
  margin-top: 1.5rem;
}
.index_info .wrap .top_tit02 {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: var(--clr_orange_light);
  padding: 0 2rem;
  position: relative;
  top: -3rem;
  margin-bottom: -1rem;
}
.index_info .wrap dl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.index_info .wrap dl > div {
  background: var(--clr_white);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .index_info .wrap dl > div {
    border-radius: 2rem;
  }
}
.index_info .wrap dl > div dt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7rem;
  line-height: 1.4;
  padding: 0.5rem 0;
  cursor: pointer;
}
.index_info .wrap dl > div dt .date {
  color: var(--clr_green_dark02);
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.6rem;
}
.index_info .wrap dl > div dt .tit {
  padding-left: 2.2rem;
  position: relative;
}
.index_info .wrap dl > div dt .tit::before {
  font-family: "fontello";
  content: "\a012";
  position: absolute;
  left: 0;
  top: 0.15rem;
  transition: 0.2s;
}
.index_info .wrap dl > div dt.open .tit::before {
  transform: scale(1, -1);
}
.index_info .wrap dl > div dd {
  margin: 0.5rem 0 1.5rem;
  word-wrap: break-word;
  display: none;
}
.index_info .wrap dl > div dd a {
  color: var(--clr_orange_dark);
  text-decoration: underline;
}
.index_info .wrap dl > div dd a:is(:hover, :focus-visible) {
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  .index_info {
    padding: 6.2rem 0 10.5rem;
  }
  .index_info .wrap {
    border-radius: 3rem;
    padding: 9.7rem 8rem 8.8rem;
    margin-top: 3rem;
    width: calc(1200px - 10rem);
  }
  .index_info .wrap .top_tit02 {
    padding: 0 3.5rem;
    top: -13.5rem;
    margin-bottom: -10rem;
  }
  .index_info .wrap dl {
    gap: 2.5rem 0;
  }
  .index_info .wrap dl > div {
    padding: 2rem 5.6rem;
  }
  .index_info .wrap dl > div dt {
    font-size: 2.6rem;
    line-height: 1.4;
    padding: 1rem 0;
  }
  .index_info .wrap dl > div dt .date {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
  .index_info .wrap dl > div dt .tit {
    padding-left: 3rem;
  }
  .index_info .wrap dl > div dt .tit::before {
    top: 0.15rem;
  }
  .index_info .wrap dl > div dd {
    margin: 0rem 0 1.5rem;
  }
}

.index_medical {
  padding: 4rem 0;
}
.index_medical .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1.5rem;
  width: calc(100% - 1rem);
  margin-inline: auto;
}
.index_medical .subnav > li {
  width: calc(50% - 1rem);
  --clr_medical: var(--clr_green_light);
}
.index_medical .subnav > li a {
  display: block;
}
.index_medical .subnav > li a::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  border-radius: 1rem;
  width: calc(100% - 3rem);
  margin-inline: auto;
  aspect-ratio: 1/1;
  background-color: var(--clr_medical);
  border: 3px solid var(--clr_medical);
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .index_medical .subnav > li a::before {
    border-radius: 2rem;
  }
}
.index_medical .subnav > li a .medical_tit {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin: 1.4rem auto 1rem;
  padding-left: 1.3em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.index_medical .subnav > li a .medical_tit::before {
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-family: "fontello";
  content: "\a014";
  color: var(--clr_medical);
  line-height: 1;
}
.index_medical .subnav > li a .medical_tit .txt_small {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.index_medical .subnav > li a .medical_txt {
  width: calc(100% - 1rem);
  margin-inline: auto;
}
.index_medical .subnav > li a .medical_txt p {
  margin: 0;
  font-size: 1.3rem;
}
.index_medical .subnav > li a .medical_txt p:not(:first-of-type) {
  margin-top: 1em;
}
.index_medical .subnav > li a.icon_urology::before {
  font-family: "fontello";
  content: "\a022";
}
.index_medical .subnav > li a.icon_male_urology::before {
  font-family: "fontello";
  content: "\a015";
}
.index_medical .subnav > li a.icon_female-urology::before {
  font-family: "fontello";
  content: "\a017";
}
.index_medical .subnav > li a.icon_padiatric_urology::before {
  font-family: "fontello";
  content: "\a016";
}
.index_medical .subnav > li a.icon_urinary_stones::before {
  font-family: "fontello";
  content: "\a023";
}
.index_medical .subnav > li a.icon_urinary_tract_cancer::before {
  font-family: "fontello";
  content: "\a024";
}
.index_medical .subnav > li a.icon_checkup::before {
  font-family: "fontello";
  content: "\a021";
}
.index_medical .subnav > li a.icon_private::before {
  font-family: "fontello";
  content: "\a020";
}
.index_medical .subnav > li:nth-of-type(even) {
  --clr_medical: var(--clr_orange_dark02);
}
@media screen and (min-width: 48em), print {
  .index_medical {
    padding: 6rem 0 7.5rem;
  }
  .index_medical .top_tit02 {
    margin-bottom: 3rem;
  }
  .index_medical .subnav {
    gap: 3.5rem 0rem;
    width: calc(100% - 2rem);
  }
  .index_medical .subnav > li {
    width: 25%;
  }
  .index_medical .subnav > li a::before {
    font-size: 14rem;
    width: 19.4rem;
    transition: 0.4s;
  }
  .index_medical .subnav > li a .medical_tit {
    font-size: 3rem;
    line-height: 1.25;
    margin: 1rem auto 1.9rem;
    transition: 0.4s;
  }
  .index_medical .subnav > li a .medical_tit::before {
    top: 0.45rem;
  }
  .index_medical .subnav > li a .medical_tit .txt_small {
    font-size: 2.2rem;
  }
  .index_medical .subnav > li a .medical_txt {
    width: calc(100% - 7.4rem);
  }
  .index_medical .subnav > li a .medical_txt p {
    font-size: 2rem;
    line-height: 2;
  }
  .index_medical .subnav > li a:is(:hover, :focus-visible) .medical_tit {
    color: var(--clr_orange_dark);
  }
  .index_medical .subnav > li a:is(:hover, :focus-visible)::before {
    background: var(--clr_white);
  }
  .index_medical .subnav > li:nth-of-type(even) {
    margin-top: 3.5rem;
  }
}

.index_feature {
  padding: 4rem 0;
  background: var(--clr_green_light04);
  position: relative;
}
.index_feature::before {
  content: "";
  display: block;
  width: 7rem;
  height: 7rem;
  background: url("../img/index_feature_decoL.svg") center center/contain no-repeat;
  position: absolute;
  top: -1rem;
  left: 3rem;
}
.index_feature .feature_content {
  counter-reset: number 0;
  width: calc(100% - 5rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
.index_feature .feature_content > section {
  counter-increment: number 1;
  position: relative;
}
.index_feature .feature_content > section::before {
  content: "";
  display: block;
  border-radius: 1.5rem;
  width: 100%;
  height: 35rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.index_feature .feature_content > section::after {
  position: absolute;
  top: -2rem;
  left: 1rem;
  content: counter(number, decimal-leading-zero);
  background: var(--clr_orange_dark);
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  width: 5.4rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 2rem;
  padding: 0.2rem 0 0 0.2rem;
  mask-image: url("../img/index_feature_num.svg");
  mask-position: bottom center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../img/index_feature_num.svg");
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.index_feature .feature_content > section:nth-child(1)::before {
  background-image: url("../img/index_feature01.jpg");
}
.index_feature .feature_content > section:nth-child(2)::before {
  background-image: url("../img/index_feature02.jpg");
}
.index_feature .feature_content > section:nth-child(3)::before {
  background-image: url("../img/index_feature03.jpg");
}
.index_feature .feature_content > section:nth-child(4)::before {
  background-image: url("../img/index_feature04.jpg");
}
.index_feature .feature_content > section:nth-child(5)::before {
  background-image: url("../img/index_feature05.jpg");
}
.index_feature .feature_content > section:nth-child(6)::before {
  background-image: url("../img/index_feature06.jpg");
}
.index_feature .feature_content > section:nth-child(7)::before {
  background-image: url("../img/index_feature07.jpg");
}
.index_feature .feature_content > section:nth-child(8)::before {
  background-image: url("../img/index_feature08.jpg");
}
.index_feature .feature_content > section:nth-child(9)::before {
  background-image: url("../img/index_feature09.jpg");
}
.index_feature .feature_content > section .feature_tit03 {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 2rem 0 1.5rem;
}
.index_feature .feature_content > section .feature_txt {
  padding: 3rem 0 0;
  background: url(../img/index_feature_deco.svg) top center/auto 2rem no-repeat;
}
.index_feature .feature_content > section .feature_txt p {
  letter-spacing: 0.1em;
  margin: 0;
}
.index_feature .feature_content > section .feature_txt p:not(:first-of-type) {
  margin-top: 1em;
}
.index_feature .feature_content > section:nth-of-type(even)::after {
  background: var(--clr_green_light);
}
@media screen and (min-width: 48em), print {
  .index_feature {
    padding: 5rem 0;
    background: url("../img/index_feature_decoL.svg") top 50rem left calc(50% - 80rem)/12.8rem auto no-repeat, url("../img/index_feature_decoR.svg") top 50rem right calc(50% - 80rem)/12.8rem auto no-repeat, var(--clr_green_light04);
  }
  .index_feature::before {
    width: 12.693rem;
    height: 13.94rem;
    top: -2rem;
    left: calc(50% - 51rem);
  }
  .index_feature .feature_content {
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    gap: 5rem 0.5rem;
    margin-top: 8rem;
  }
  .index_feature .feature_content > section {
    width: 29rem;
  }
  .index_feature .feature_content > section::before {
    border-radius: 3rem;
    height: 31.6rem;
    width: calc(100% - 2rem);
    margin-inline: auto;
  }
  .index_feature .feature_content > section::after {
    top: -3.5rem;
    left: 2.5rem;
    width: 8rem;
    font-size: 2.8rem;
    padding: 0.2rem 0 0 0.2rem;
  }
  .index_feature .feature_content > section .feature_tit03 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 1rem 0 2.2rem;
    min-height: 10.8rem;
    display: grid;
    place-content: center center;
  }
  .index_feature .feature_content > section .feature_txt {
    width: calc(100% - 2rem);
    margin-inline: auto;
    padding: 5rem 0 0;
    background: url(../img/index_feature_deco.svg) top center/auto 2.6rem no-repeat;
  }
  .index_feature .feature_content > section .feature_txt p {
    font-size: 2rem;
    line-height: 1.85;
  }
}

.index_partner_lst {
  padding: 4rem 0;
}
.index_partner_lst .partner_lst {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem 0;
  width: calc(100% - 5rem);
  margin-inline: auto;
}
.index_partner_lst .partner_lst > li a {
  box-shadow: 0 0 0 1px var(--clr_border);
  display: block;
}
@media screen and (min-width: 48em), print {
  .index_partner_lst {
    padding: 4.5rem 0 7.5rem;
  }
  .index_partner_lst .partner_lst {
    width: 1200px;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
  .index_partner_lst .partner_lst > li a:hover {
    opacity: 0.7;
    box-shadow: 0 0 0 1px var(--clr_border), 0 0 10px rgba(var(--rgb_shadow), 0.2);
  }
}

body:not(.index) .main {
  margin: 0 1rem 2rem;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]) {
  text-decoration: underline;
  color: var(--clr_orange_dark);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]):is(:hover, :focus-visible) {
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: calc(1200px - 20rem);
    margin: 0 auto 5.6rem;
  }
}

.breadcrumb {
  display: flex;
  font-size: 1.2rem;
  margin: 4rem 0 0rem;
  white-space: nowrap;
  overflow-x: scroll;
}
.breadcrumb li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_brown_dark02);
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  font-family: "fontello";
  content: "\a014";
  color: var(--clr_brown);
  margin: 0 0.4rem;
}
.breadcrumb li br {
  display: none;
}
.breadcrumb li a {
  color: var(--clr_brown_dark02) !important;
  text-decoration: none !important;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.8rem;
    margin: 8rem auto 0rem;
    white-space: inherit;
    overflow-x: inherit;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 0.8rem;
  }
  .breadcrumb li a:hover {
    color: var(--clr_orange_dark) !important;
  }
}
.doctor .img_c.-doctor {
  width: 80%;
}
@media screen and (min-width: 48em), print {
  .doctor .img_c.-doctor {
    width: 50rem;
    margin-inline: auto;
  }
}
.doctor .dr_name {
  text-align: right;
}
.doctor .dr_name span {
  display: block;
}
.doctor .lst_group {
  padding-left: 1.8em;
  position: relative;
}
.doctor .lst_group::before {
  position: absolute;
  top: 0.1rem;
  left: 0.5em;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-bottom: 1px solid var(--clr_brown);
  border-left: 1px solid var(--clr_brown);
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
  line-height: 1;
}
.gallery .gallery_slider {
  font-size: 1.3rem;
}
.gallery .gallery_slider div {
  position: relative;
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .gallery .gallery_slider div {
    border-radius: 2rem;
  }
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  min-height: 3rem;
  line-height: 1.3;
  display: grid;
  place-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(var(--rgb_orange_light02), 0.8);
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\a014";
  color: var(--clr_orange_light02);
  font-size: 2.2rem;
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\a011";
}
.gallery .gallery_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0.8rem auto;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_orange_light02);
}
.gallery .gallery_slider .slick-dots li button:hover, .gallery .gallery_slider .slick-dots li button:focus {
  opacity: 0.8;
}
.gallery .gallery_slider .slick-dots li.slick-active button {
  opacity: 0.75;
}
.gallery .gallery_thum div img {
  border-radius: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid var(--clr_orange_light02);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
    line-height: 0;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    min-height: 6rem;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 5rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 5rem;
    margin: 1.4rem auto;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    border-radius: 1rem;
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_orange_light02);
  }
}
.first .lst_flow.-img > li {
  padding-bottom: 14rem;
  background-position: bottom 1.5rem center;
  background-size: auto 12rem;
  background-repeat: no-repeat;
}
.first .lst_flow.-img > li:nth-of-type(1) {
  background-image: url("../img/first_flow01.svg");
}
.first .lst_flow.-img > li:nth-of-type(2) {
  background-image: url("../img/first_flow02.svg");
}
.first .lst_flow.-img > li:nth-of-type(3) {
  background-image: url("../img/first_flow03.svg");
}
.first .lst_flow.-img > li:nth-of-type(4) {
  background-image: url("../img/first_flow04.svg");
}
.first .lst_flow.-img > li.-img_n {
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 48em), print {
  .first .lst_flow.-img > li {
    min-height: 30.5rem;
    padding-bottom: 3rem;
    padding-right: 28.5rem;
    background-position: right 4rem top 7rem;
    background-size: 21rem auto;
  }
  .first .lst_flow.-img > li.-img_n {
    padding-right: 4rem;
    padding-bottom: 3rem;
  }
}

.access .main .acs_dl dd {
  margin-bottom: 2rem;
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 48em), print {
  .access .main .gmap {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time table tr th[scope=col] {
    padding: 2.2rem 0;
  }
  .access .main .tbl_time table tr th[scope=col]:first-child {
    width: 25%;
    padding-right: 3.5%;
  }
  .access .main .tbl_time table tr th.time {
    font-size: 2.2rem;
  }
  .access .main .tbl_time table td {
    padding: 3rem 0.4rem;
    font-size: 100%;
  }
  .access .main .tbl_time .tbl_caption {
    margin-top: 2.4rem;
  }
  .access .main .tbl_time .tbl_caption .cap {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .access .main .tbl_time .tbl_caption .txt_green {
    margin-right: 1rem;
  }
  .access .main .acs_content {
    display: flex;
    justify-content: space-between;
  }
  .access .main .acs_content > div, .access .main .acs_content > section, .access .main .acs_content > dl {
    width: 48%;
  }
  .access .main .acs_content .acs_dl dd {
    margin-bottom: 4rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

@media screen and (min-width: 48em), print {
  body.recruit .main {
    width: 1200px;
  }
  body.recruit .main h2.tit_03 {
    font-size: 3rem;
  }
  body.recruit .main h3.tit_04 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */