@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-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;
}

*: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;
          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;
  object-fit: contain;
}

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

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

:root {
  --clr_txt: #111111;
  --rgb_txt: 17,17, 17;
  --clr_border: #CEDADE;
  --rgb_border: 206,218, 222;
  --clr_white: #fff;
  --rgb_white: 255,255, 255;
  --clr_green: #5DA9BA;
  --rgb_green: 93,169, 186;
  --clr_green_light: #F5F8F9;
  --rgb_green_light: 245,248, 249;
  --clr_green_light02: #84D8CD;
  --rgb_green_light02: 132,216, 205;
  --clr_green_light03: #EAF4F3;
  --rgb_green_light03: 234,244, 243;
  --clr_green_light04: #C2E3DC;
  --rgb_green_light04: 194,227, 220;
  --clr_green_light05: #BEE0DC;
  --rgb_green_light05: 190,224, 220;
  --clr_green_dark: #436876;
  --rgb_green_dark: 67,104, 118;
  --clr_yellow: #F9F092;
  --rgb_yellow: 249,240, 146;
  --clr_red: #FE1F54;
  --rgb_red: 254,31, 84;
  --breakpoint: 768px;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flip {
  0% {
    transform: perspective(800px) translate3d(0, 0, 0) rotateY(-75deg);
    opacity: 0;
  }
  100% {
    transform: perspective(800px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip02 {
  0% {
    transform: perspective(800px) translate3d(0, 0, 0) rotateY(-15deg);
    opacity: 0;
  }
  100% {
    transform: perspective(800px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.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%;
}

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

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

.img_c {
  max-width: 80%;
  margin: 1.5rem auto;
}
.img_c.-full {
  max-width: 100%;
}

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

.tate, .midd {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_c {
    max-width: min(70%, 75rem);
  }
  .img_c.-full {
    max-width: 100%;
  }
  .img_l {
    float: left;
    margin: 0 clamp(2rem, -1.5556rem + 4.63vw, 4rem) 2rem 0;
    max-width: 40%;
    height: auto;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem clamp(2rem, -1.5556rem + 4.63vw, 4rem);
    max-width: 40%;
    height: auto;
  }
  .tate {
    max-width: 25% !important;
  }
  .midd {
    max-width: 30% !important;
  }
}
.img_flex .img_content {
  width: 80%;
  margin: 1.5rem auto;
}
.img_flex.-tate .img_content, .img_flex.-midd .img_content, .img_flex.-small .img_content {
  width: 60%;
}
@media screen and (min-width: 48em), print {
  .img_flex {
    display: flex;
    justify-content: space-between;
  }
  .img_flex .img_content {
    width: 40%;
    margin: 0;
  }
  .img_flex .txt_content {
    width: calc(60% - clamp(2rem, -1.5556rem + 4.63vw, 4rem));
  }
  .img_flex.-center {
    align-items: center;
  }
  .img_flex.-reverse {
    flex-direction: row-reverse;
  }
  .img_flex.-reverse .img_content img {
    margin: 0 0 0 auto;
  }
  .img_flex.-tate .img_content {
    width: 25% !important;
  }
  .img_flex.-tate .txt_content {
    width: calc(75% - clamp(2rem, -1.5556rem + 4.63vw, 4rem));
  }
  .img_flex.-small .img_content {
    width: 20% !important;
  }
  .img_flex.-small .txt_content {
    width: calc(80% - clamp(2rem, -1.5556rem + 4.63vw, 4rem));
  }
  .img_flex.-midd .img_content {
    width: 30% !important;
  }
  .img_flex.-midd .txt_content {
    width: calc(70% - clamp(2rem, -1.5556rem + 4.63vw, 4rem));
  }
}

.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: calc(clamp(1.5rem, 0.6111rem + 1.157vw, 2rem) * 0) !important;
  }
  .mt10 {
    margin-top: calc(clamp(1.5rem, 0.6111rem + 1.157vw, 2rem) * 1) !important;
  }
  .mt20 {
    margin-top: calc(clamp(1.5rem, 0.6111rem + 1.157vw, 2rem) * 2) !important;
  }
  .mt30 {
    margin-top: calc(clamp(1.5rem, 0.6111rem + 1.157vw, 2rem) * 3) !important;
  }
  .mt40 {
    margin-top: calc(clamp(1.5rem, 0.6111rem + 1.157vw, 2rem) * 4) !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: clamp(6rem, 2.4444rem + 4.63vw, 8rem);
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: clamp(4.5rem, 1.8333rem + 3.472vw, 6rem);
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: clamp(3rem, 1.2222rem + 2.315vw, 4rem);
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: clamp(3rem, 1.2222rem + 2.315vw, 4rem);
  }
}

.tbl_time {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 1rem;
  line-height: 1.6;
}
.tbl_time caption .cap {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.tbl_time caption .cap .cap_tit {
  text-align: center;
  border: 1px solid var(--clr_green);
  color: var(--clr_green);
  display: grid;
  place-content: center;
}
.tbl_time tr th {
  border: 1px solid var(--clr_border);
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem;
  text-align: center;
  font-weight: 500;
  color: var(--clr_white);
}
.tbl_time tr th[scope=col]:first-child {
  width: 33%;
}
.tbl_time tr th.time {
  font-weight: 700;
  background: var(--clr_green_light03);
  color: var(--clr_green);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.7rem 0.4rem;
  border: 1px solid var(--clr_border);
  line-height: 1;
  font-size: 80%;
}
.tbl_time tr td.close {
  color: var(--clr_red);
}
.tbl_time tr:first-of-type {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
  }
  .tbl_time caption {
    margin-top: clamp(1rem, 0.2889rem + 0.926vw, 1.4rem);
    line-height: 1.6;
  }
  .tbl_time caption .cap {
    grid-template-columns: 5.5em 1fr;
    gap: clamp(0.8rem, 0.0889rem + 0.926vw, 1.2rem);
    margin-bottom: 0.6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: clamp(0.8rem, 0.1778rem + 0.81vw, 1.15rem) 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 23%;
  }
  .tbl_time tr td {
    padding: clamp(2rem, 0.8444rem + 1.505vw, 2.65rem) 0;
  }
}
.schedule_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  display: grid;
  grid-template-columns: 6em 1fr 1fr;
}
.schedule_table thead, .schedule_table tbody, .schedule_table tr {
  display: contents;
}
.schedule_table th, .schedule_table td {
  min-height: 5rem;
  padding: 0.5rem;
  border-right: 1px solid var(--clr_border);
  border-bottom: 1px solid var(--clr_border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}
.schedule_table thead th {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  color: var(--clr_white);
}
.schedule_table tbody th {
  background: var(--clr_green_light03);
  color: var(--clr_green);
  border-top: 1px solid var(--clr_border);
}
.schedule_table .close {
  color: var(--clr_red);
}

.schedule_table thead th:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.schedule_table thead th:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.schedule_table thead th:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}
.schedule_table thead th:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
}
.schedule_table thead th:nth-child(5) {
  grid-column: 1;
  grid-row: 5;
}
.schedule_table thead th:nth-child(6) {
  grid-column: 1;
  grid-row: 6;
}
.schedule_table thead th:nth-child(7) {
  grid-column: 1;
  grid-row: 7;
}
.schedule_table thead th:nth-child(8) {
  grid-column: 1;
  grid-row: 8;
}
.schedule_table thead th:nth-child(9) {
  grid-column: 1;
  grid-row: 9;
}
.schedule_table tbody tr:nth-child(1) > th {
  grid-column: 2;
  grid-row: 1;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(1) {
  grid-column: 2;
  grid-row: 2;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(2) {
  grid-column: 2;
  grid-row: 3;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(3) {
  grid-column: 2;
  grid-row: 4;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(4) {
  grid-column: 2;
  grid-row: 5;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(5) {
  grid-column: 2;
  grid-row: 6;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(6) {
  grid-column: 2;
  grid-row: 7;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(7) {
  grid-column: 2;
  grid-row: 8;
}
.schedule_table tbody tr:nth-child(1) > td:nth-of-type(8) {
  grid-column: 2;
  grid-row: 9;
}
.schedule_table tbody tr:nth-child(2) > th {
  grid-column: 3;
  grid-row: 1;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(1) {
  grid-column: 3;
  grid-row: 2;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(2) {
  grid-column: 3;
  grid-row: 3;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(3) {
  grid-column: 3;
  grid-row: 4;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(4) {
  grid-column: 3;
  grid-row: 5;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(5) {
  grid-column: 3;
  grid-row: 6;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(6) {
  grid-column: 3;
  grid-row: 7;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(7) {
  grid-column: 3;
  grid-row: 8;
}
.schedule_table tbody tr:nth-child(2) > td:nth-of-type(8) {
  grid-column: 3;
  grid-row: 9;
}
@media screen and (min-width: 48em), print {
  .schedule_table {
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .schedule_table thead {
    display: table-header-group;
  }
  .schedule_table thead tr {
    background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
    color: var(--clr_white);
  }
  .schedule_table thead tr th {
    background: none;
  }
  .schedule_table thead tr th:first-child {
    width: 17%;
  }
  .schedule_table tbody {
    display: table-row-group;
  }
  .schedule_table tr {
    display: table-row;
  }
  .schedule_table th, .schedule_table td {
    display: table-cell;
    min-height: 0;
    padding: 1.6rem 0.2rem;
    vertical-align: middle;
  }
}

.caption {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.caption .caption_tit {
  text-align: center;
  border: 1px solid var(--clr_green);
  color: var(--clr_green);
  display: grid;
  place-content: center;
}
@media screen and (min-width: 48em), print {
  .caption {
    margin-top: 1.5rem;
  }
}

.gmap {
  width: 100%;
}

.tit_01 {
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  background: url(../img/tit_01.webp) center/auto 100% no-repeat;
  color: var(--clr_white);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  min-height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tit_02 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 700;
}
.tit_02::before {
  content: "";
  width: 2.3em;
  height: 2px;
  display: block;
  margin: 0 auto 1.4rem;
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.tit_02 + p {
  margin-top: 0;
}

.tit_03 {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(to right, var(--clr_green), var(--clr_green_light02) 3em, var(--clr_border) 3em);
  border-image-slice: 1;
}
.tit_03 + p {
  margin-top: 0;
}
.tit_03 .tit03_subtit {
  display: block;
  color: var(--clr_green);
  font-size: 90%;
  letter-spacing: 0;
  line-height: 1.3;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
.tit_03 .tit03_subtit .num {
  margin-left: 0.5rem;
  font-size: 130%;
}

.tit_04 {
  font-size: 1.6rem;
  color: var(--clr_white);
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding: 0.4rem 1rem 0.4rem 1.5rem;
  position: relative;
}
.tit_04::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--clr_white);
  position: absolute;
  top: 0;
  left: 0.3rem;
}
.tit_04 + p {
  margin-top: 0;
}

.tit_05 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 1.1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
.tit_05::before {
  font-family: "fontello";
  content: "\e817";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  color: var(--clr_green);
  font-size: 70%;
  font-weight: normal;
}
.tit_05 + p {
  margin-top: 0;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
  background-image: linear-gradient(to right, var(--clr_green) 50%, transparent 0);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.tit_06 + p {
  margin-top: 0;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: clamp(2.4rem, -0.4444rem + 3.704vw, 4rem);
    min-height: clamp(15rem, -4.5556rem + 25.463vw, 26rem);
    margin-bottom: clamp(1rem, 0.1111rem + 1.157vw, 1.5rem);
  }
  .tit_01 span {
    max-width: min(1200px, 100% - 4rem);
    width: 100%;
    margin: 2rem auto;
  }
  .tit_02 {
    font-size: clamp(2.2rem, -0.2889rem + 3.241vw, 3.6rem);
    margin-bottom: clamp(2.5rem, -0.1667rem + 3.472vw, 4rem);
  }
  .tit_02::before {
    height: clamp(0.3rem, 0.1222rem + 0.231vw, 0.4rem);
    margin: 0 auto clamp(1.2rem, 0.4889rem + 0.926vw, 1.6rem);
  }
  .tit_03 {
    font-size: clamp(2rem, 0.5778rem + 1.852vw, 2.8rem);
    margin-bottom: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
    padding-bottom: clamp(0.8rem, -0.4444rem + 1.62vw, 1.5rem);
    border-bottom: 3px solid;
  }
  .tit_04 {
    font-size: clamp(1.8rem, 0.3778rem + 1.852vw, 2.6rem);
    padding: clamp(0.6rem, 0.2444rem + 0.463vw, 0.8rem) clamp(1.6rem, 0.8889rem + 0.926vw, 2rem);
    margin-bottom: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
  }
  .tit_04::before {
    left: clamp(0.3rem, 0.1222rem + 0.231vw, 0.4rem);
  }
  .tit_05 {
    font-size: clamp(1.6rem, 0.5333rem + 1.389vw, 2.2rem);
    margin-bottom: clamp(1.6rem, 0.8889rem + 0.926vw, 2rem);
  }
  .tit_06 {
    font-size: clamp(1.5rem, 0.6111rem + 1.157vw, 2rem);
    margin-bottom: clamp(1.6rem, 0.8889rem + 0.926vw, 2rem);
  }
}
.lst {
  line-height: 1.5;
}
.lst > li:not(:last-child) {
  margin-bottom: 0.6em;
}

.lst_ul {
  line-height: 1.5;
}
.lst_ul > li {
  padding-left: 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 0.6em;
}
.lst_ul > li::before {
  content: "";
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--clr_green), var(--clr_green_light02));
  position: absolute;
  left: 0;
  top: 0.45em;
}
.lst_ul.-kome > li {
  padding-left: 1em;
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
  width: auto;
  top: 0;
  font-size: 100%;
  background: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul.col2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  .lst_ul.col2 > * {
    margin: 0;
    width: calc((100% - 1rem) / 2);
    min-width: 30rem;
  }
}
@media screen and (min-width: 48em), print {
  .lst_ul.col3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  .lst_ul.col3 > * {
    margin: 0;
    width: calc((100% - 2rem) / 3);
    min-width: 20rem;
  }
}

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

.lst_ol {
  line-height: 1.5;
  counter-reset: number 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding-left: 2em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin-bottom: 0.6em;
}
.lst_ol > li::before {
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_green);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 105%;
  transform: translateY(1px);
}

.lst_ol_brackets {
  line-height: 1.5;
  counter-reset: number 0;
}
.lst_ol_brackets > li {
  counter-increment: number 1;
  padding-left: 1.5em;
  position: relative;
}
.lst_ol_brackets > li:not(:last-child) {
  margin-bottom: 0.6em;
}
.lst_ol_brackets > li::before {
  content: counter(number) "）";
  line-height: 1;
  position: absolute;
  top: 0.26rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol_brackets > li::before {
    top: 0.34rem;
  }
}

.lst_dl {
  --dl_border: var(--clr_border);
  --dl_border02:var(--clr_border);
}
.lst_dl dt {
  background: var(--clr_green_light03);
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
}
.lst_dl dd {
  margin: 0 0 0.5rem;
  padding: 0.8rem 1.5rem;
  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);
}
.lst_dl.-color02 dt {
  background: var(--clr_green_light);
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dt:first-of-type {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dt:last-of-type {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dd {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dd:last-of-type {
  border-color: var(--dl_border02);
}
@media screen and (min-width: 48em), print {
  .lst_dl dt {
    padding: clamp(1.4rem, 0.8667rem + 0.694vw, 1.7rem) clamp(2rem, 1.1111rem + 1.157vw, 2.5rem);
  }
  .lst_dl dd {
    padding: clamp(1.4rem, 0.8667rem + 0.694vw, 1.7rem) clamp(2rem, 1.1111rem + 1.157vw, 2.5rem);
  }
  .lst_dl.-color02 dt {
    border-color: var(--dl_border02);
  }
  .lst_dl.-color02 dt:last-of-type {
    border-color: var(--dl_border02);
  }
  .lst_dl.-color02 dd:first-of-type {
    border-color: var(--dl_border02);
  }
  .lst_dl.-color02 dd:last-of-type {
    border-color: var(--dl_border02);
  }
}

.dl_box .dl_tit {
  background: var(--clr_green_light);
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--clr_border);
  border-right: 1px solid var(--clr_border);
  border-left: 1px solid var(--clr_border);
}
.dl_box .dl_body {
  margin: 0 0 0.5rem;
  padding: 0.8rem 1.5rem;
  border-top: 1px solid var(--clr_border);
  border-right: 1px solid var(--clr_border);
  border-left: 1px solid var(--clr_border);
  border-bottom: 1px solid var(--clr_border);
}
@media screen and (min-width: 48em), print {
  .dl_box .dl_tit, .dl_box .dl_body {
    padding: clamp(1.4rem, 0.8667rem + 0.694vw, 1.7rem) clamp(2rem, 1.1111rem + 1.157vw, 2.5rem);
  }
}

.lst_dl02 dt {
  font-weight: 700;
}
.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: grid;
    grid-template-columns: 8.5em 1fr;
    gap: 1rem;
  }
  .lst_dl02 dd {
    margin-bottom: 0 !important;
  }
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lst_anc > li {
  width: 100%;
}
.lst_anc > li a {
  color: var(--clr_green) !important;
  text-decoration: none !important;
}
.lst_anc > li a {
  display: grid;
  place-items: center start;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 4.5rem;
  padding: 0.2rem 3rem 0.2rem 0;
  border-bottom: 1px solid var(--clr_border);
  position: relative;
}
.lst_anc > li a::after {
  font-family: "fontello";
  content: "\cc15";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0.5rem;
  font-size: 90%;
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    display: grid;
    grid-template-columns: repeat(auto-fit, clamp(20rem, 4.8889rem + 19.676vw, 28.5rem));
    justify-content: center;
    gap: clamp(1rem, -0.7778rem + 2.315vw, 2rem);
  }
  .lst_anc > li {
    width: auto;
  }
  .lst_anc > li > a {
    min-height: clamp(5rem, 3.2222rem + 2.315vw, 6rem);
    transition: 0.2s;
  }
  .lst_anc > li > a:is(:hover,.focus-visible) {
    color: var(--clr_green_dark) !important;
  }
  .lst_anc > li > a:is(:hover,.focus-visible) {
    border-color: var(--clr_green);
  }
  .lst_anc > li > a:is(:hover, :focus-visible) {
    color: var(--clr_green_dark) !important;
  }
  .lst_anc > li > a:is(:hover, :focus-visible) {
    border-color: var(--clr_green);
  }
  .lst_anc.-col2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .lst_anc.-col2 > * {
    width: calc((100% - clamp(1rem, -0.7778rem + 2.315vw, 2rem)) / 2);
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  border: 1px solid var(--clr_green);
  background: var(--clr_white);
  padding: 1.5rem;
  counter-increment: number 1;
  position: relative;
}
.lst_flow > li:not(:last-child) {
  margin: 0 0 5rem;
}
.lst_flow > li:not(:last-child)::after {
  display: block;
  width: 5rem;
  aspect-ratio: 3/1;
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: 0;
  right: 0;
  margin: auto;
  background: url("../img/icon_flow.png") center center/contain no-repeat;
}
.lst_flow > li .flow_tit {
  padding-bottom: 0.2rem;
  margin: 0 0 0.8rem;
  border-bottom: 1px solid var(--clr_border);
  display: block;
  font-size: 1.5rem;
  padding-left: 2.2em;
}
.lst_flow > li .flow_tit::before {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_green);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 115%;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
  }
  .lst_flow > li:not(:last-child) {
    margin: 0 0 clamp(5rem, 3.2222rem + 2.315vw, 6rem);
  }
  .lst_flow > li:not(:last-child)::after {
    bottom: clamp(-4.5rem, -1.7222rem + -2.315vw, -3.5rem);
    width: clamp(5rem, 3.2222rem + 2.315vw, 6rem);
  }
  .lst_flow > li .flow_tit {
    font-size: clamp(1.6rem, 0.8889rem + 0.926vw, 2rem);
    padding-bottom: clamp(0.4rem, 0.0444rem + 0.463vw, 0.6rem);
    margin-bottom: clamp(1rem, 0.1111rem + 1.157vw, 1.5rem);
  }
  .lst_flow > li .flow_tit::before {
    top: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
    left: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
    font-size: 110%;
  }
}

.lst_btn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lst_btn > li > a {
  color: var(--clr_green) !important;
  text-decoration: none !important;
}
.lst_btn > li > a {
  border-radius: 50vh;
  padding: 1.3rem 2.8rem;
  line-height: 1.3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--clr_border);
}
.lst_btn.-out > li > a::after {
  font-family: "fontello";
  content: "\e80c";
  margin-left: 0.5em;
  display: inline-block;
  transform: translateY(2px);
}
@media screen and (min-width: 48em), print {
  .lst_btn {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 0.1111rem + 1.157vw, 1.5rem);
  }
  .lst_btn > li > a {
    padding: clamp(1.2rem, 0.3111rem + 1.157vw, 1.7rem) clamp(2rem, 0.5778rem + 1.852vw, 2.8rem);
  }
  .lst_btn > li > a:hover {
    background: var(--clr_green_light03);
  }
}

.lst_faq .faq_tit, .lst_faq .faq_body {
  padding-left: 3rem;
  position: relative;
}
.lst_faq .faq_tit::before, .lst_faq .faq_body::before {
  position: absolute;
  left: 0;
  display: block;
  font-size: 2rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_green);
  letter-spacing: 0;
  width: 3rem;
  text-align: center;
}
.lst_faq .faq_tit {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 0.6em;
  padding-right: 1.5rem;
  border-bottom: 2px solid var(--clr_border);
  margin-bottom: 0;
  line-height: 1.3;
  color: var(--clr_green);
  cursor: pointer;
}
.lst_faq .faq_tit::before {
  top: -0.1em;
  content: "Q.";
}
.lst_faq .faq_tit::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: "fontello";
  content: "\cc16";
  font-size: 70%;
  line-height: 1;
  transition: 0.2s;
}
.lst_faq .faq_tit.open:after {
  transform: translateY(-50%) scale(1, -1);
}
.lst_faq .faq_body {
  opacity: 0;
  display: none;
  margin-top: 1rem;
  transition: opacity 0.8s;
}
.lst_faq .faq_body p {
  margin: 0;
}
.lst_faq .faq_body::before {
  top: -0.25em;
  content: "A.";
}
.lst_faq .faq_body.open {
  opacity: 1;
}
@media screen and (min-width: 48em), print {
  .lst_faq .faq_tit, .lst_faq .faq_body {
    padding-left: clamp(3rem, -0.5556rem + 4.63vw, 5rem);
  }
  .lst_faq .faq_tit::before, .lst_faq .faq_body::before {
    width: clamp(3rem, -0.5556rem + 4.63vw, 5rem);
    font-size: clamp(2rem, 0.5778rem + 1.852vw, 2.8rem);
  }
  .lst_faq .faq_tit {
    font-size: clamp(1.6rem, 0.5333rem + 1.389vw, 2.2rem);
    padding-right: 2.5rem;
    padding-bottom: 0.9em;
    cursor: pointer;
  }
  .lst_faq .faq_tit::before {
    top: -0.1em;
  }
  .lst_faq .faq_body {
    margin-top: clamp(1.2rem, 0.1333rem + 1.389vw, 1.8rem);
  }
  .lst_faq .faq_body::before {
    top: -0.25em;
  }
}

.lst_sns {
  display: flex;
  gap: 15px;
  padding: 15px;
}
.lst_sns > li {
  width: 30px;
  height: 30px;
}
.lst_sns > li a {
  display: block;
  width: 100%;
  height: 100%;
}
.lst_sns > li a img {
  width: 100%;
  height: 100%;
}

.tel {
  display: inline-flex;
  align-items: center;
  color: var(--clr_green);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.6rem;
}
.tel::before {
  content: "Tel.";
  font-size: 70%;
  margin-right: 0.2rem;
  transform: translateY(1px);
}
@media screen and (min-width: 48em), print {
  .tel {
    font-size: clamp(1.8rem, 0.7333rem + 1.389vw, 2.4rem);
  }
  .tel::before {
    margin-right: 0.4rem;
  }
}

.rsv {
  color: var(--clr_white);
  font-weight: 700;
  border-radius: 50vh;
  padding: 1rem 3.5rem;
  min-height: 4.7rem;
  line-height: 1;
  font-size: 1.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.rsv::before {
  display: inline-block;
  font-family: "fontello";
  content: "\cc03";
  font-weight: normal;
  font-size: 120%;
  margin-right: 0.7rem;
  line-height: 1;
  transform: translateY(1px);
}
@media screen and (min-width: 48em), print {
  .rsv {
    min-width: clamp(19.5rem, 5.2778rem + 18.519vw, 27.5rem);
    min-height: clamp(4.5rem, 1.8333rem + 3.472vw, 6rem);
    font-size: clamp(1.4rem, 0.3333rem + 1.389vw, 2rem);
  }
  .rsv::before {
    margin-right: 0.9rem;
  }
  .rsv:is(:hover,.focus-visible) {
    opacity: 1;
    filter: brightness(1.1);
  }
  .rsv:is(:hover, :focus-visible) {
    opacity: 1;
    filter: brightness(1.1);
  }
}

.tel_rsv {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: clamp(40rem, 9.7778rem + 39.352vw, 57rem);
}
.tel_rsv > li {
  width: calc((100% - 1rem) / 2);
  min-height: 4.7rem;
}
.tel_rsv > li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50vh;
  width: 100%;
  height: 100%;
  padding: 0;
  line-height: 1;
}
.tel_rsv > li > *:not(.rsv) {
  border: 1px solid var(--clr_border);
  background: var(--clr_white);
}
.tel_rsv > li > *.rsv {
  width: 100%;
  min-width: auto;
}
.tel_rsv > li .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 48em), print {
  .tel_rsv {
    gap: clamp(1rem, 0.1111rem + 1.157vw, 1.5rem);
  }
  .tel_rsv > li {
    min-height: clamp(4.5rem, 1.8333rem + 3.472vw, 6rem);
  }
}

.box {
  padding: 1.5rem;
  background: var(--clr_green_light03);
}
.box.-color02 {
  background: var(--clr_green_light);
}
.box, .box .-hidden {
  overflow: hidden;
}
@media screen and (min-width: 48em), print {
  .box {
    padding: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.btn::after {
  font-family: "fontello";
  content: "\cc15";
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  width: 3em;
  aspect-ratio: 1/1;
  font-size: 90%;
  font-weight: normal;
  transition: 0.3s;
}
@media screen and (min-width: 48em), print {
  .btn {
    gap: clamp(1rem, -0.2444rem + 1.62vw, 1.7rem);
    position: relative;
    z-index: 0;
  }
  .btn::after {
    width: clamp(3.6rem, -0.6667rem + 5.556vw, 6rem);
    background: none;
  }
  .btn::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
    width: clamp(3.6rem, -0.6667rem + 5.556vw, 6rem);
    aspect-ratio: 1/1;
    border-radius: 50%;
    content: "";
    display: block;
    z-index: -1;
    transition: 0.3s;
  }
  .btn:hover {
    color: var(--clr_green);
  }
  .btn:hover::before {
    transform: translateY(-50%) scale(0.85);
  }
}

.lnk {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
  color: var(--clr_green);
}
.lnk::after {
  padding-left: 0.3rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::after {
    padding-left: 0.6rem;
  }
}
.lnk:is(:hover,.focus-visible) {
  text-decoration: none;
  opacity: 1;
}
.lnk:is(:hover, :focus-visible) {
  text-decoration: none;
  opacity: 1;
}
.lnk.out::after {
  font-family: "fontello";
  content: "\e80c";
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\e80b";
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.4;
}
.tbl tr th {
  text-align: center;
  padding: 0.8rem 1rem;
  font-weight: normal;
  border: 1px solid var(--clr_border);
  background: var(--clr_green_light03);
}
.tbl tr td {
  text-align: left;
  padding: 0.8rem 1rem;
  border: 1px solid var(--clr_border);
}
.tbl tr td.price {
  text-align: right;
  width: 9em;
}
.tbl tr .nowrap, .tbl tr .sp_nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl thead tr {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.tbl thead tr th {
  color: var(--clr_white);
  background: none;
}
.tbl.-color02 tr th {
  background: var(--clr_green_light);
}
.tbl.-color02 thead tr {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.tbl.-color02 thead tr th {
  color: var(--clr_white);
  background: none;
}
.tbl th.bg, .tbl td.bg {
  background: rgba(var(--rgb_green_light04), 0.5) !important;
}
.tbl.-th_fixed tr th {
  width: 35%;
}
.tbl.-th_fixed thead tr th {
  width: auto;
}

@media screen and (min-width: 48em), print {
  .tbl tr th {
    padding: clamp(1.4rem, 0.8667rem + 0.694vw, 1.7rem) clamp(2rem, 1.1111rem + 1.157vw, 2.5rem);
  }
  .tbl tr td {
    padding: clamp(1.4rem, 0.8667rem + 0.694vw, 1.7rem) clamp(2rem, 1.1111rem + 1.157vw, 2.5rem);
  }
  .tbl tr .sp_nowrap {
    width: inherit;
    white-space: inherit;
  }
  .tbl.-th_fixed tr th {
    width: 30%;
  }
}
.tbl_scroll {
  overflow-x: scroll;
}
.tbl_scroll .tbl {
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .tbl_scroll {
    overflow: inherit;
  }
  .tbl_scroll .tbl {
    white-space: inherit;
  }
}

.checklist {
  padding: 1.5rem;
  border: 1px solid var(--clr_border);
}
.checklist ul {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-bottom: 1.5rem;
}
.checklist ul li {
  line-height: 1.5;
  border-bottom: 1px solid var(--clr_border);
  padding-bottom: 0.8em;
}
.checklist ul li .check_item {
  cursor: pointer;
}
.checklist ul li .chk {
  width: 0.8em;
  height: 0.8em;
}
.checklist ul li .txt {
  display: block;
}
.checklist .count_result {
  text-align: center;
  padding: 1rem;
  background: var(--clr_green_light03);
  margin: 0;
  font-size: 110%;
}
.checklist .count_result .count {
  line-height: 1;
  font-size: 150%;
  display: inline-block;
  margin: 0 0.2em;
  color: var(--clr_green);
  transform: translateY(2px);
}
@media screen and (min-width: 48em), print {
  .checklist {
    padding: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
  }
  .checklist ul {
    margin-bottom: clamp(2.4rem, 1.3333rem + 1.389vw, 3rem);
  }
  .checklist ul li .check_item {
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
    cursor: pointer;
  }
  .checklist ul li .check_item .chk {
    width: 1em;
    height: 1em;
    transform: translateY(clamp(0.1rem, -0.2556rem + 0.463vw, 0.3rem));
  }
  .checklist ul li .check_item .q {
    white-space: nowrap;
  }
  .checklist ul li .check_item .txt {
    flex: 1;
  }
  .checklist .count_result {
    font-size: 120%;
  }
}

.flex1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.flex1.lst_ul > li {
  margin: 0 !important;
}
.flex1.lst_ul > li {
  padding-left: 1em;
}
@media screen and (min-width: 48em), print {
  .flex1 {
    gap: 1rem clamp(1.5rem, 0.6111rem + 1.157vw, 2rem);
  }
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, -1.5556rem + 4.63vw, 4rem);
  }
  .flex2 > * {
    margin-top: 0 !important;
  }
  .flex2 > * {
    width: calc((100% - clamp(2rem, -1.5556rem + 4.63vw, 4rem)) / 2);
  }
  .flex2.-fit_content > * {
    height: -moz-fit-content;
    height: fit-content;
  }
}

.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;
  border-radius: 50%;
  background: var(--clr_white);
}
.slick-dots li button:is(:hover,.focus-visible) {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.slick-dots li button:is(:hover, :focus-visible) {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.slick-dots li.slick-active button {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}

@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: 500;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_green_light03), 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;
}

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

.main {
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:is(:hover,.focus-visible), button:is(:hover,.focus-visible) {
    opacity: 0.8;
  }
  a:is(:hover, :focus-visible), button:is(:hover, :focus-visible) {
    opacity: 0.8;
  }
  .wrap {
    max-width: min(1200px, 100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
  .main {
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
  }
  .main a:not([class*=btn]):is(:hover,.focus-visible) {
    opacity: 1;
    text-decoration: none;
  }
  .main a:not([class*=btn]):is(:hover, :focus-visible) {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: var(--scroll-margin);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr_white);
  box-shadow: 0 0 10px rgba(var(--rgb_txt), 0.15);
}
.header .wrap {
  padding: 1rem 0;
}
.header .wrap .logo {
  width: calc(100% - 5.6rem);
  height: 4rem;
}
.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 .head_lnks {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    max-width: min(200rem, 100% - clamp(2rem, -8.6667rem + 13.889vw, 8rem));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, -0.3889rem + 1.157vw, 1rem);
  }
  .header .wrap .logo {
    width: clamp(17rem, 25vw, 42.6rem);
    height: auto;
    aspect-ratio: 42.6/5.4;
    flex-shrink: 0;
  }
  .header .wrap .headR {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: clamp(0.5rem, -0.3889rem + 1.157vw, 1rem);
  }
  .header .wrap .headR .head_lnks {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 clamp(1rem, -0.7778rem + 2.315vw, 2rem);
  }
  .header .wrap .headR .head_lnks .lnk_lst {
    padding-top: clamp(0.3rem, -0.0556rem + 0.463vw, 0.5rem);
  }
  .header .wrap .headR .head_lnks .lnk_lst > li {
    font-size: clamp(1.2rem, 0.4889rem + 0.926vw, 1.6rem);
  }
  .header .wrap .headR .head_lnks .lnk_lst > li a:hover {
    color: var(--clr_green);
    opacity: 1;
  }
  .header .wrap .headR .head_lnks .tel_rsv {
    justify-content: flex-end;
    gap: clamp(0.6rem, -0.1111rem + 0.926vw, 1rem);
  }
  .header .wrap .headR .head_lnks .tel_rsv > li {
    width: clamp(14rem, -0.2222rem + 18.519vw, 22rem);
    height: clamp(3.5rem, 0.8333rem + 3.472vw, 5rem);
    min-height: auto;
  }
  .header .wrap .headR .head_lnks .tel_rsv > li > * {
    font-size: clamp(1.2rem, 0.1333rem + 1.389vw, 1.8rem);
    min-height: auto;
  }
  .header .wrap .headR .head_lnks .tel_rsv > li .tel {
    font-size: clamp(1.4rem, 0.3333rem + 1.389vw, 2rem);
  }
  .header .wrap .headR .head_lnks .tel_rsv > li .tel::before {
    font-size: clamp(1rem, -0.0667rem + 1.389vw, 1.6rem);
    transform: translateY(clamp(0.2rem, 0.0222rem + 0.231vw, 0.3rem));
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 3.5rem;
  height: 4rem;
  color: var(--clr_brown);
  text-align: center;
  line-height: 1;
  font-size: 0.9rem;
  padding: 0;
  position: fixed;
  top: 0.8rem;
  right: 1.5rem;
  z-index: 102;
}
#nav #sp_menu .btn-line {
  display: block;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  width: 3.5rem;
  height: 2px;
  background-color: var(--clr_green_dark);
  border-radius: 1px;
  transition: all 0.4s;
  margin: 0 auto;
}
#nav #sp_menu .btn-line:nth-of-type(2) {
  top: 2rem;
}
#nav #sp_menu .btn-line:nth-of-type(3) {
  top: 3rem;
}
#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;
  }
}

.nav_info {
  background: var(--clr_green_light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}
.nav_info .nav_info_lst {
  margin-bottom: 0.6rem;
}
.nav_info .nav_info_lst > li:not(:last-of-type) {
  margin-bottom: 0.2em;
}
.nav_info .nav_info_cap {
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: 0.5em 1rem;
}
.nav_info .nav_info_cap .captit {
  text-align: center;
  color: var(--clr_green);
  border: 1px solid var(--clr_green);
  background: var(--clr_white);
}
@media screen and (min-width: 48em), print {
  .nav_info {
    display: none;
  }
}

.gnav_subnav {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-height: calc(100svh - 10rem);
  overflow-y: auto;
  background: var(--clr_white);
  padding: 1.5rem;
  position: fixed;
  top: 10rem;
  left: 0;
  right: 0;
  margin: auto;
}
.gnav_subnav.-active {
  z-index: 99;
  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: 9rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    top: 10rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
@keyframes close-menu {
  0% {
    top: 10rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  100% {
    top: 9rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0rem;
  font-size: 1.4rem;
}
.gnav_subnav .gnav > li > a.current, .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_green);
}
.gnav_subnav .gnav > li .sub {
  position: relative;
}
.gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\cc16";
  display: block;
  position: absolute;
  right: 0rem;
  bottom: 1rem;
  font-size: 70%;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  background: var(--clr_white);
  display: none;
}
.gnav_subnav .gnav > li .subbox .subnav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0 1.5rem;
  margin-bottom: 1rem;
}
.gnav_subnav .gnav > li .subbox .subnav > li {
  width: 100%;
}
.gnav_subnav .gnav > li .subbox .subnav > li > a {
  display: block;
  width: 100%;
  padding: 1rem 2.4rem 1rem 0rem;
  border-bottom: 1px solid var(--clr_green_light04);
  font-size: 1.3rem;
  color: var(--clr_txt);
  line-height: 1.35;
  position: relative;
}
.gnav_subnav .gnav > li .subbox .subnav > li > a::after {
  font-family: "fontello";
  content: "\cc15";
  color: var(--clr_green);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.gnav_subnav .gnav > li .subbox .subnav > li > a.current {
  color: var(--clr_green);
  border-color: var(--clr_green);
}
.gnav_subnav .gnav > li .subbox .subnav > li > .subnav {
  padding-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.gnav_subnav .gnav > li .subbox .subnav > li > .subnav > li > a {
  padding: 0.5rem 0 0.5rem 1.5rem;
  border: none;
}
.gnav_subnav .gnav > li .subbox .subnav > li > .subnav > li > a::before {
  content: "・";
  position: absolute;
  left: 0;
}
.gnav_subnav .gnav > li .subbox .subnav > li > .subnav > li > a::after {
  content: none;
}
.gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  padding: 0.6rem 0;
  margin: 2rem 0 0;
  background: var(--clr_green);
  color: var(--clr_white);
}
.gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\cc02";
  margin: 0 0.6rem 0 0;
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .gnav_subnav {
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 0;
    position: static;
    background: none;
  }
  .gnav_subnav .gnav {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: clamp(0.8rem, 0.4444rem + 0.463vw, 1rem) clamp(0.8rem, -2.9333rem + 4.861vw, 2.9rem);
  }
  .gnav_subnav .gnav > li {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
  }
  .gnav_subnav .gnav > li.pc-gnav_n {
    display: none;
  }
  .gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
    text-align: center;
    font-size: clamp(1.2rem, 0.1333rem + 1.389vw, 1.8rem);
    margin: 0;
    cursor: pointer;
    position: relative;
  }
  .gnav_subnav .gnav > li > a > span, .gnav_subnav .gnav > li .sub > span {
    display: inline-block;
  }
  .gnav_subnav .gnav > li > a::before, .gnav_subnav .gnav > li .sub::before {
    position: absolute;
    top: auto;
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 100%;
    height: 2px;
    transition: 0.2s;
  }
  .gnav_subnav .gnav > li > a:is(:hover,.focus-visible), .gnav_subnav .gnav > li .sub:is(:hover,.focus-visible) {
    color: var(--clr_green);
    opacity: 1;
  }
  .gnav_subnav .gnav > li > a:is(:hover, :focus-visible), .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible) {
    color: var(--clr_green);
    opacity: 1;
  }
  .gnav_subnav .gnav > li > a:is(:hover,.focus-visible)::before, .gnav_subnav .gnav > li .sub:is(:hover,.focus-visible)::before {
    background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  }
  .gnav_subnav .gnav > li > a:is(:hover, :focus-visible)::before, .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible)::before {
    background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  }
  .gnav_subnav .gnav > li .sub::after {
    position: static;
    display: inline-block;
    margin-left: 0.6rem;
    transform: translateY(-2px);
    font-size: 50%;
  }
  .gnav_subnav .gnav > li .subbox {
    position: absolute;
    top: 100%;
    width: clamp(40rem, -0.8889rem + 53.241vw, 63rem);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 10px rgba(var(--rgb_txt), 0.05);
  }
  .gnav_subnav .gnav > li .subbox > .subnav {
    padding: clamp(1.5rem, -1.1667rem + 3.472vw, 3rem);
    flex-direction: row;
    margin-bottom: 0;
    gap: clamp(0.5rem, -0.0333rem + 0.694vw, 0.8rem) clamp(1.5rem, 0.6111rem + 1.157vw, 2rem);
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li {
    width: calc(50% - clamp(0.8rem, 0.4444rem + 0.463vw, 1rem));
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li > a {
    font-size: clamp(1.2rem, 0.1333rem + 1.389vw, 1.8rem);
    padding: clamp(0.5rem, -1.2778rem + 2.315vw, 1.5rem) clamp(1.6rem, 0.1778rem + 1.852vw, 2.4rem) clamp(0.5rem, -1.2778rem + 2.315vw, 1.5rem) 0;
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li > a:is(:hover,.focus-visible) {
    color: var(--clr_green);
    border-color: var(--clr_green);
    opacity: 1;
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li > a:is(:hover, :focus-visible) {
    color: var(--clr_green);
    border-color: var(--clr_green);
    opacity: 1;
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li .subnav {
    margin: clamp(0.4rem, 0.0444rem + 0.463vw, 0.6rem) 0 0;
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li .subnav > li > a {
    font-size: clamp(1.2rem, 0.1333rem + 1.389vw, 1.8rem);
    padding: clamp(0.4rem, 0.0444rem + 0.463vw, 0.6rem) 0 clamp(0.4rem, 0.0444rem + 0.463vw, 0.6rem) clamp(1rem, -0.7778rem + 2.315vw, 2rem);
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li .subnav > li > a:hover {
    opacity: 1;
    color: var(--clr_green);
  }
  .gnav_subnav #menu_close {
    display: none;
  }
}

#sp_nav {
  position: relative;
  z-index: 99;
}
#sp_nav > ul {
  display: flex;
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--clr_border);
  border-bottom: 1px solid var(--clr_border);
}
#sp_nav > ul > li {
  width: 33.3333333333%;
  height: 4rem;
}
#sp_nav > ul > li > a {
  display: grid;
  place-content: center;
  height: 100%;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.15;
  padding: 0.5rem 0;
}
#sp_nav > ul > li > a.icon_rsv {
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  color: var(--clr_white);
}
#sp_nav > ul > li > a.icon_tel {
  background: var(--clr_white);
  color: var(--clr_green);
  border-right: 1px solid var(--clr_border);
  border-left: 1px solid var(--clr_border);
}
#sp_nav > ul > li > a.icon_acs {
  background: var(--clr_green_light03);
}
@media screen and (min-width: 48em), print {
  #sp_nav {
    display: none;
  }
}

.overview {
  padding: 4rem 0rem 3.5rem;
  font-size: 1.4rem;
  line-height: 2;
}
.overview .tbl_time {
  margin-bottom: 2rem;
}
.overview .tel_rsv {
  margin: 2rem auto;
}
.overview .gaiyo {
  line-height: 1.6;
  display: grid;
  grid-template-columns: calc(6em + 2rem) 1fr;
}
.overview .gaiyo dt {
  padding: 1rem;
  border-bottom: 1px solid var(--clr_border);
  color: var(--clr_green);
}
.overview .gaiyo dt.space {
  letter-spacing: 1em;
}
.overview .gaiyo dd {
  padding: 1rem;
  border-bottom: 1px solid var(--clr_border);
}
.overview .gaiyo dd .tel {
  font-size: 120%;
}
.overview .add {
  margin: 2rem 0;
  background: var(--clr_green_light03);
  line-height: 1.4;
  padding: 1rem 1rem 1rem 2rem;
  position: relative;
}
.overview .add::before {
  font-family: "fontello";
  content: "\cc04";
  color: var(--clr_green);
  position: absolute;
  top: 1rem;
  left: 0.5rem;
}
.overview .gmap {
  height: calc(100vw - 3rem);
}
.overview .gmap_btn {
  margin-top: 2rem;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: clamp(6rem, -4.6667rem + 13.889vw, 12rem) 0 clamp(6rem, -3.7778rem + 12.731vw, 11.5rem);
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
  }
  .overview .tbl_time {
    margin-bottom: clamp(2rem, -1.5556rem + 4.63vw, 4rem);
  }
  .overview .tel_rsv {
    margin: 2rem auto clamp(2rem, -1.5556rem + 4.63vw, 4rem);
  }
  .overview .overview_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(42rem, 1fr));
    margin: 0 auto;
    gap: clamp(1.5rem, -6.5rem + 10.417vw, 6rem);
  }
  .overview .gaiyo {
    grid-template-columns: calc(6em + clamp(2rem, -1.9111rem + 5.093vw, 4.2rem)) 1fr;
  }
  .overview .gaiyo dt {
    padding: clamp(1rem, 0.2889rem + 0.926vw, 1.4rem) clamp(1rem, -0.9556rem + 2.546vw, 2.1rem);
  }
  .overview .gaiyo dd {
    padding: clamp(1rem, 0.2889rem + 0.926vw, 1.4rem) clamp(0.5rem, -0.3889rem + 1.157vw, 1rem);
  }
  .overview .add {
    margin: 0;
    text-align: center;
    padding: clamp(2rem, 1.6444rem + 0.463vw, 2.2rem) clamp(1rem, -0.7778rem + 2.315vw, 2rem);
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
  }
  .overview .add span {
    display: inline-block;
  }
  .overview .add::before {
    position: static;
    display: inline-block;
    font-size: 135%;
    margin-right: clamp(0.4rem, 0.2222rem + 0.231vw, 0.5rem);
    line-height: 1;
    transform: translateY(1px);
  }
  .overview .overviewR {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 0.2222rem + 2.315vw, 3rem);
  }
  .overview .overviewR .gmap {
    height: auto;
    flex-grow: 1;
    margin-top: clamp(0.5rem, -0.3889rem + 1.157vw, 1rem);
    min-height: clamp(30rem, 12.2222rem + 23.148vw, 40rem);
  }
  .overview .overviewR .gmap_btn {
    margin-top: 0;
  }
}
#pageup {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  display: block;
  width: 4rem;
  aspect-ratio: 1/1;
}
#pageup::before {
  display: block;
  font-family: "fontello";
  content: "\cc15";
  border-radius: 50%;
  transform: rotate(270deg);
  font-size: 1.5rem;
  width: 100%;
  height: 100%;
  color: var(--clr_green);
  background: var(--clr_white);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid var(--clr_border);
  display: grid;
  place-items: center;
}
#pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: clamp(4.8rem, 0.8889rem + 5.093vw, 7rem);
  }
  #pageup::before {
    font-size: clamp(1.8rem, 0.5556rem + 1.62vw, 2.5rem);
    transition: 0.2s;
  }
  #pageup:hover {
    opacity: 1;
  }
  #pageup:hover::before {
    color: var(--clr_green_light04);
  }
}

.footer {
  text-align: center;
  background: var(--clr_green_light);
}
.footer .footer_lnks {
  padding: 1.5rem;
  font-size: 1.2rem;
}
.footer .footer_lnks a {
  text-decoration: underline;
}
.footer .footer_lnks .copy {
  display: block;
  font-size: 1.3rem;
  color: var(--clr_green);
}
.footer .footer_lnks .copy a {
  text-decoration: none;
}
.footer .footer_nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer .footer_nav {
    display: block;
    padding: clamp(4rem, -0.4444rem + 5.787vw, 6.5rem) 0;
  }
  .footer .footer_nav > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 0.1111rem + 1.157vw, 1.5rem) 0;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer_nav > ul > li {
    text-align: center;
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
    padding: 0 clamp(0.6rem, 0.0667rem + 0.694vw, 0.9rem);
    line-height: 1;
    border-right: 1px solid var(--clr_txt);
  }
  .footer .footer_nav > ul > li > a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .footer .footer_nav > ul > li.treatment {
    display: none;
  }
  .footer .footer_nav > ul > li.last-in-row {
    border-right-color: transparent;
  }
  .footer .footer_nav > ul.subnav {
    margin-top: clamp(1rem, -0.4222rem + 1.852vw, 1.8rem);
    width: clamp(60rem, 42.2222rem + 23.148vw, 70rem);
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer_nav > ul.subnav .subnav {
    display: none;
  }
  .footer .footer_lnks {
    padding: clamp(2rem, 0.2222rem + 2.315vw, 3rem) 1rem clamp(4rem, 2.2222rem + 2.315vw, 5rem);
    border-top: 1px solid var(--clr_border);
  }
  .footer .footer_lnks .copy {
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
  }
}
body.index .main .overview .overview_content .overviewL, body.index .main .overview .overview_content .overviewR {
  opacity: 0;
}
body.index .main .overview .overview_content .overviewL.trigger, body.index .main .overview .overview_content .overviewR.trigger {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  body.index .main .overview.trigger .overview_content .overviewL, body.index .main .overview.trigger .overview_content .overviewR {
    animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
  }
  body.index .main .overview.trigger .overview_content .overviewR {
    animation-delay: 0.4s;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 120vw;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation: fade 1.4s ease-out 0.4s 1 normal forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 120vw !important;
}
.keyvsl #keyvsl .slick-list div img {
  width: 100%;
  object-fit: cover;
  object-position: 38%;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
  margin: -2rem auto;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.4rem;
}
.keyvsl .catch_copy {
  width: 100%;
  height: 120vw;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-content: end start;
  padding: 4rem 1.5rem;
  pointer-events: none;
  color: var(--clr_white);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.8;
  text-shadow: 0 0 10px rgba(var(--rgb_txt), 0.8);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fade_up 0.8s ease-out 1s 1 normal forwards;
}
.keyvsl .catch_copy .txt_small {
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: clamp(40rem, -36.4444rem + 99.537vw, 83rem);
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: clamp(40rem, -36.4444rem + 99.537vw, 83rem) !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin-top: clamp(-5.8rem, 3.3667rem + -7.639vw, -2.5rem);
  }
  .keyvsl #keyvsl .slick-dots li {
    width: clamp(1.2rem, 0.6667rem + 0.694vw, 1.5rem);
    height: clamp(1.2rem, 0.6667rem + 0.694vw, 1.5rem);
    margin: 0 clamp(0.8rem, 0.4444rem + 0.463vw, 1rem);
  }
  .keyvsl .catch_copy {
    height: clamp(40rem, -36.4444rem + 99.537vw, 83rem);
    font-size: clamp(3.1rem, -2.4111rem + 7.176vw, 6.2rem);
    margin: 0 auto;
    line-height: 1.6;
    max-width: min(1200px, 100% - 4rem);
    padding: clamp(5rem, -7.4444rem + 16.204vw, 12rem) 0;
  }
  .keyvsl .catch_copy .txt_small {
    font-size: clamp(1.7rem, -1.3222rem + 3.935vw, 3.4rem);
  }
}
.top_tit02 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.top_tit02::before {
  content: attr(data-ruby);
  color: var(--clr_green);
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 0 0.5rem;
  font-size: 3rem;
  display: block;
  letter-spacing: 0rem;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: clamp(1.8rem, 1.0889rem + 0.926vw, 2.2rem);
    margin-bottom: clamp(4rem, 1.3333rem + 3.472vw, 5.5rem);
  }
  .top_tit02::before {
    font-size: clamp(4rem, -0.2667rem + 5.556vw, 6.4rem);
    padding-bottom: clamp(0.8rem, 0.0889rem + 0.926vw, 1.2rem);
  }
}
.index_info {
  background: var(--clr_green_light);
  padding: 4rem 0 3.5rem;
}
.index_info .top_tit02 {
  opacity: 0;
}
.index_info .top_tit02::before {
  opacity: 0;
}
.index_info.trigger .top_tit02 {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_info.trigger .top_tit02::before {
  animation: fade_up 0.6s ease-out 0.5s 1 normal forwards;
}
.index_info.trigger .info_more, .index_info.trigger .info_tab {
  animation: fade_up 0.8s ease-out 0.7s 1 normal forwards;
}
.index_info.trigger .info_tab_area {
  animation: fade_up 0.8s ease-out 0.9s 1 normal forwards;
}
.index_info.trigger .info_tab_area .info_tab_content {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_info .info_more {
  text-align: right;
  margin-top: 2rem;
  opacity: 0;
}
.index_info .info_tab {
  display: flex;
  border-bottom: 1px solid var(--clr_border);
  gap: 1rem;
  margin-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
}
.index_info .info_tab > li a {
  display: block;
  font-weight: 700;
  opacity: 0.61;
  line-height: 1.25;
  height: 100%;
  padding-bottom: 1.2rem;
  font-size: 1.25rem;
  position: relative;
}
.index_info .info_tab > li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  transition: 0.2s;
  opacity: 0;
}
.index_info .info_tab > li a.-active {
  opacity: 1;
}
.index_info .info_tab > li a.-active::after {
  opacity: 1;
}
.index_info .info_tab_area {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
}
.index_info .info_tab_area::before, .index_info .info_tab_area::after {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: calc(100% - 1.5rem);
  height: 0.1rem;
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
}
.index_info .info_tab_area::before {
  top: 0;
}
.index_info .info_tab_area::after {
  bottom: 0;
}
.index_info .info_tab_area .info_tab_content {
  max-height: 50vh;
  overflow-y: scroll;
  padding: 0rem 1rem 0 0;
  display: none;
  opacity: 0;
}
.index_info .info_tab_area .info_tab_content::-webkit-scrollbar {
  background: var(--clr_green_light05);
  width: 0.5rem;
}
.index_info .info_tab_area .info_tab_content::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--clr_green), var(--clr_green_light02));
}
.index_info .info_tab_area .js-tab_content {
  display: none;
}
.index_info .info_tab_area .js-tab_content.-active {
  display: block;
}
@media screen and (min-width: 48em), print {
  .index_info {
    padding: clamp(5rem, -8.3333rem + 17.361vw, 12.5rem) 0;
  }
  .index_info .info_btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: clamp(3rem, -1.9778rem + 6.481vw, 5.8rem);
  }
  .index_info .info_more {
    margin: 0;
  }
  .index_info .info_tab {
    gap: clamp(2rem, -1.5556rem + 4.63vw, 4rem);
    margin: 0;
  }
  .index_info .info_tab > li a {
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
    padding-bottom: clamp(1.5rem, 0.0778rem + 1.852vw, 2.3rem);
  }
  .index_info .info_tab > li a::after {
    height: clamp(0.3rem, 0.1222rem + 0.231vw, 0.4rem);
  }
  .index_info .info_tab_area::before, .index_info .info_tab_area::after {
    width: calc(100% - 1.5rem);
  }
  .index_info .info_tab_area .info_tab_content {
    max-height: clamp(34rem, 19.7778rem + 18.519vw, 42rem);
    padding: 0rem 1rem 0 0;
    display: none;
  }
  .index_info .info_tab_area .info_tab_content::-webkit-scrollbar {
    width: clamp(0.6rem, -0.1111rem + 0.926vw, 1rem);
  }
}

.accordion-container {
  width: 100%;
  margin: 0;
}
.accordion-container .accordion-item {
  width: 100%;
  border-radius: 0;
  color: var(--clr_txt);
  border-bottom: 1px solid var(--clr_border);
}
.accordion-container .accordion-item summary.accordion-header {
  padding: 1.5rem 1.5rem 1.5rem 0.5rem;
  letter-spacing: 0;
  cursor: pointer;
  list-style: none;
}
.accordion-container .accordion-item summary.accordion-header::-webkit-details-marker {
  display: none;
}
.accordion-container .accordion-item .accordion-badge,
.accordion-container .accordion-item .accordion-date,
.accordion-container .accordion-item .accordion-title {
  display: inline-block;
  padding: 0;
  margin-right: 0.5em;
}
.accordion-container .accordion-item .accordion-badge {
  background-color: red;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
}
.accordion-container .accordion-item .accordion-date {
  color: var(--clr_green);
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.1;
}
.accordion-container .accordion-item .accordion-title {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}
.accordion-container .accordion-item .accordion-content {
  margin-top: -1rem;
  padding: 0 0 1.5rem 0.5rem;
  letter-spacing: 0;
}
.accordion-container .accordion-item .accordion-content p {
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  .accordion-container {
    max-height: 42rem;
  }
  .accordion-container .accordion-item {
    border-radius: 0;
    overflow: hidden;
  }
  .accordion-container .accordion-item summary.accordion-header {
    padding: clamp(2rem, 0.2222rem + 2.315vw, 3rem) 1rem clamp(2rem, 0.2222rem + 2.315vw, 3rem) 0;
  }
  .accordion-container .accordion-item .accordion-date {
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
    width: clamp(12rem, 4.8889rem + 9.259vw, 16rem);
    margin: 0;
  }
  .accordion-container .accordion-item .accordion-title {
    font-size: clamp(1.6rem, 0.5333rem + 1.389vw, 2.2rem);
  }
  .accordion-container .accordion-item .accordion-badge {
    font-size: 0.75rem;
    border-radius: 4px;
  }
  .accordion-container .accordion-item .accordion-content {
    padding: 0 1rem clamp(2rem, 0.2222rem + 2.315vw, 3rem) clamp(12rem, 4.8889rem + 9.259vw, 16rem);
    margin-top: clamp(-1.5rem, -0.1111rem + -1.157vw, -1rem);
  }
}
.treatment_menu {
  padding: 4rem 0;
}
.treatment_menu .top_tit02 {
  opacity: 0;
}
.treatment_menu .top_tit02::before {
  opacity: 0;
}
.treatment_menu.trigger .top_tit02 {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.treatment_menu.trigger .top_tit02::before {
  animation: fade_up 0.6s ease-out 0.5s 1 normal forwards;
}
.treatment_menu.trigger .subnav > li {
  animation: fade_up 1s ease-out 0.4s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(1) {
  animation-delay: 0.6s;
}
.treatment_menu.trigger .subnav > li:nth-child(1) a::before {
  animation: flip 1s ease-out 1.1s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(2) {
  animation-delay: 0.8s;
}
.treatment_menu.trigger .subnav > li:nth-child(2) a::before {
  animation: flip 1s ease-out 1.3s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(3) {
  animation-delay: 1s;
}
.treatment_menu.trigger .subnav > li:nth-child(3) a::before {
  animation: flip 1s ease-out 1.5s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(4) {
  animation-delay: 1.2s;
}
.treatment_menu.trigger .subnav > li:nth-child(4) a::before {
  animation: flip 1s ease-out 1.7s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(5) {
  animation-delay: 1.4s;
}
.treatment_menu.trigger .subnav > li:nth-child(5) a::before {
  animation: flip 1s ease-out 1.9s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(6) {
  animation-delay: 1.6s;
}
.treatment_menu.trigger .subnav > li:nth-child(6) a::before {
  animation: flip 1s ease-out 2.1s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(7) {
  animation-delay: 1.8s;
}
.treatment_menu.trigger .subnav > li:nth-child(7) a::before {
  animation: flip 1s ease-out 2.3s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(8) {
  animation-delay: 2s;
}
.treatment_menu.trigger .subnav > li:nth-child(8) a::before {
  animation: flip 1s ease-out 2.5s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(9) {
  animation-delay: 2.2s;
}
.treatment_menu.trigger .subnav > li:nth-child(9) a::before {
  animation: flip 1s ease-out 2.7s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(10) {
  animation-delay: 2.4s;
}
.treatment_menu.trigger .subnav > li:nth-child(10) a::before {
  animation: flip 1s ease-out 2.9s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(11) {
  animation-delay: 2.6s;
}
.treatment_menu.trigger .subnav > li:nth-child(11) a::before {
  animation: flip 1s ease-out 3.1s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(12) {
  animation-delay: 2.8s;
}
.treatment_menu.trigger .subnav > li:nth-child(12) a::before {
  animation: flip 1s ease-out 3.3s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(13) {
  animation-delay: 3s;
}
.treatment_menu.trigger .subnav > li:nth-child(13) a::before {
  animation: flip 1s ease-out 3.5s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(14) {
  animation-delay: 3.2s;
}
.treatment_menu.trigger .subnav > li:nth-child(14) a::before {
  animation: flip 1s ease-out 3.7s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(15) {
  animation-delay: 3.4s;
}
.treatment_menu.trigger .subnav > li:nth-child(15) a::before {
  animation: flip 1s ease-out 3.9s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(16) {
  animation-delay: 3.6s;
}
.treatment_menu.trigger .subnav > li:nth-child(16) a::before {
  animation: flip 1s ease-out 4.1s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(17) {
  animation-delay: 3.8s;
}
.treatment_menu.trigger .subnav > li:nth-child(17) a::before {
  animation: flip 1s ease-out 4.3s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(18) {
  animation-delay: 4s;
}
.treatment_menu.trigger .subnav > li:nth-child(18) a::before {
  animation: flip 1s ease-out 4.5s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(19) {
  animation-delay: 4.2s;
}
.treatment_menu.trigger .subnav > li:nth-child(19) a::before {
  animation: flip 1s ease-out 4.7s forwards;
}
.treatment_menu.trigger .subnav > li:nth-child(20) {
  animation-delay: 4.4s;
}
.treatment_menu.trigger .subnav > li:nth-child(20) a::before {
  animation: flip 1s ease-out 4.9s forwards;
}
.treatment_menu .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
  counter-reset: number 0;
}
.treatment_menu .subnav > li {
  width: calc((100% - 1.5rem) / 2);
  counter-increment: number 1;
  opacity: 0;
  position: relative;
}
.treatment_menu .subnav > li::before, .treatment_menu .subnav > li::after {
  display: inline-block;
  position: absolute;
  top: -0.5em;
  line-height: 1;
  color: var(--clr_green);
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  z-index: 1;
}
.treatment_menu .subnav > li::before {
  content: "Treatment";
  right: 4rem;
  font-size: 1.4rem;
  text-align: right;
  transform: translateY(1px);
}
.treatment_menu .subnav > li::after {
  content: counter(number, decimal-leading-zero);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  width: 4rem;
  right: 0;
  text-align: left;
  font-size: 2rem;
  padding-left: 0.5rem;
}
.treatment_menu .subnav > li > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.4;
  background: var(--clr_green_light03);
  padding: 2rem 1.5rem 0;
  position: relative;
  z-index: 0;
}
.treatment_menu .subnav > li > a > span {
  display: grid;
  place-content: center start;
  border-top: 1px solid var(--clr_green_light04);
  min-height: 5rem;
  padding-right: 1rem;
  position: relative;
}
.treatment_menu .subnav > li > a > span > span {
  display: inline-block;
}
.treatment_menu .subnav > li > a > span::before {
  content: "";
  display: block;
  width: 2em;
  height: 0.25rem;
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  position: absolute;
  left: 0;
  top: 0;
}
.treatment_menu .subnav > li > a > span::after {
  color: var(--clr_green);
  font-family: "fontello";
  content: "\cc15";
  position: absolute;
  font-size: 90%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.treatment_menu .subnav > li > a::before, .treatment_menu .subnav > li > a::after {
  aspect-ratio: 1/1;
}
.treatment_menu .subnav > li > a::before {
  width: 75%;
  font-family: "fontello";
  content: "\cc05";
  color: var(--clr_green);
  display: grid;
  place-content: center;
  font-size: 5rem;
  margin: 0 auto 1.5rem;
  opacity: 0;
}
.treatment_menu .subnav > li > a::after {
  content: "";
  display: block;
  width: calc((100% - 3rem) * 0.75);
  border-radius: 50%;
  background: var(--clr_white);
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}
.treatment_menu .subnav > li > a.icon_internal::before {
  font-family: "fontello";
  content: "\cc05";
}
.treatment_menu .subnav > li > a.icon_respiratory::before {
  font-family: "fontello";
  content: "\cc06";
}
.treatment_menu .subnav > li > a.icon_lifestyle_related::before {
  font-family: "fontello";
  content: "\cc07";
}
.treatment_menu .subnav > li > a.icon_sas::before {
  font-family: "fontello";
  content: "\cc08";
}
.treatment_menu .subnav > li > a.icon_checkup::before {
  font-family: "fontello";
  content: "\cc09";
}
.treatment_menu .subnav > li > a.icon_vaccination::before {
  font-family: "fontello";
  content: "\cc10";
}
.treatment_menu .subnav > li > a.icon_diabetes::before {
  font-family: "fontello";
  content: "\cc12";
}
.treatment_menu .subnav > li > a.icon_surgery::before {
  font-family: "fontello";
  content: "\cc11";
}
.treatment_menu .subnav > li > a.icon_antismoking::before {
  font-family: "fontello";
  content: "\e823";
}
.treatment_menu .subnav > li > a.icon_thyroid::before {
  font-family: "fontello";
  content: "\cc13";
}
.treatment_menu .subnav > li > a.icon_caution::before {
  font-family: "fontello";
  content: "\cc14";
}
.treatment_menu .subnav > li.large {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.treatment_menu .subnav > li.large::before {
  right: calc((100% - 1.5rem) / 2 + 5.5rem);
}
.treatment_menu .subnav > li.large::after {
  right: calc((100% - 1.5rem) / 2 + 1.5rem);
}
.treatment_menu .subnav > li.large > a {
  width: calc((100% - 1.5rem) / 2);
}
.treatment_menu .subnav > li.large > .subnav {
  width: calc((100% - 1.5rem) / 2);
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  margin: 0;
}
.treatment_menu .subnav > li.large > .subnav > li {
  width: 100%;
  flex-grow: 1;
}
.treatment_menu .subnav > li.large > .subnav > li::before, .treatment_menu .subnav > li.large > .subnav > li::after {
  content: none;
}
.treatment_menu .subnav > li.large > .subnav > li > a {
  padding-top: 1.5rem;
}
.treatment_menu .subnav > li.large > .subnav > li > a::before {
  content: none;
}
.treatment_menu .subnav > li.large > .subnav > li > a::after {
  opacity: 0;
}
.treatment_menu .subnav > li.large > .subnav > li > a span {
  min-height: 3.5rem;
}
@media screen and (min-width: 48em), print {
  .treatment_menu {
    padding: clamp(5rem, -6.5556rem + 15.046vw, 11.5rem) 0 clamp(5rem, -8.3333rem + 17.361vw, 12.5rem);
  }
  .treatment_menu .subnav {
    gap: clamp(2.5rem, -3.7222rem + 8.102vw, 6rem) clamp(1.5rem, -2.9444rem + 5.787vw, 4rem);
    margin-top: clamp(4rem, -4rem + 10.417vw, 8.5rem);
  }
  .treatment_menu .subnav > li {
    width: calc((100% - clamp(4.5rem, -8.8333rem + 17.361vw, 12rem)) / 4);
  }
  .treatment_menu .subnav > li::before, .treatment_menu .subnav > li::after {
    top: -0.5em;
  }
  .treatment_menu .subnav > li::before {
    right: clamp(4.8rem, 0.8889rem + 5.093vw, 7rem);
    font-size: clamp(1.5rem, 0.2556rem + 1.62vw, 2.2rem);
    transform: translateY(1px);
  }
  .treatment_menu .subnav > li::after {
    width: clamp(4.8rem, 0.8889rem + 5.093vw, 7rem);
    font-size: clamp(2.2rem, 0.4222rem + 2.315vw, 3.2rem);
    padding-left: 0.5rem;
  }
  .treatment_menu .subnav > li > a {
    font-size: clamp(1.4rem, 0.3333rem + 1.389vw, 2rem);
    padding: clamp(2rem, 0.2222rem + 2.315vw, 3rem) clamp(1rem, -0.7778rem + 2.315vw, 2rem) 0;
    overflow: hidden;
  }
  .treatment_menu .subnav > li > a > span {
    min-height: clamp(7rem, 1.6667rem + 6.944vw, 10rem);
    padding-right: clamp(1.5rem, -0.2778rem + 2.315vw, 2.5rem);
    transition: 0.2s;
  }
  .treatment_menu .subnav > li > a > span::before {
    width: 2em;
    height: 0.3rem;
    transition: 0.2s;
  }
  .treatment_menu .subnav > li > a::before {
    width: 70%;
    font-size: clamp(6rem, 2.4444rem + 4.63vw, 8rem);
    margin: 0 auto clamp(1.5rem, -0.6333rem + 2.778vw, 2.7rem);
    border-radius: 50%;
    transition: 0.5s;
  }
  .treatment_menu .subnav > li > a::after {
    width: calc((100% - clamp(2rem, -1.5556rem + 4.63vw, 4rem)) * 0.7);
    top: clamp(2rem, 0.2222rem + 2.315vw, 3rem);
    transition: 0.6s;
  }
  .treatment_menu .subnav > li > a:hover {
    color: var(--clr_white);
  }
  .treatment_menu .subnav > li > a:hover > span {
    border-color: var(--clr_white);
  }
  .treatment_menu .subnav > li > a:hover > span::before {
    background: var(--clr_white);
  }
  .treatment_menu .subnav > li > a:hover > span::after {
    color: var(--clr_white);
  }
  .treatment_menu .subnav > li > a:hover::before {
    background: var(--clr_white);
  }
  .treatment_menu .subnav > li > a:hover::after {
    transform: scale(3.5);
    background-image: radial-gradient(circle, var(--clr_white) 6%, rgba(var(--rgb_green_light02), 0.9), rgba(var(--rgb_green), 0.8) 80%);
  }
  .treatment_menu .subnav > li.large {
    width: calc((100% - clamp(1.5rem, -2.9444rem + 5.787vw, 4rem)) / 2);
    gap: clamp(0.8rem, 0.4444rem + 0.463vw, 1rem);
  }
  .treatment_menu .subnav > li.large::before {
    right: calc((100% - clamp(0.5rem, -0.3889rem + 1.157vw, 1rem)) / 2 + clamp(5.6rem, 1.3333rem + 5.556vw, 8rem));
  }
  .treatment_menu .subnav > li.large::after {
    right: calc((100% - clamp(0.5rem, -0.3889rem + 1.157vw, 1rem)) / 2 + clamp(0.8rem, 0.4444rem + 0.463vw, 1rem));
  }
  .treatment_menu .subnav > li.large > a {
    width: calc((100% - clamp(1.5rem, -2.9444rem + 5.787vw, 4rem)) / 2);
  }
  .treatment_menu .subnav > li.large > .subnav {
    gap: clamp(0.8rem, 0.4444rem + 0.463vw, 1rem);
    width: auto;
    flex-grow: 1;
  }
  .treatment_menu .subnav > li.large > .subnav > li > a {
    padding-top: clamp(1.5rem, 0.6111rem + 1.157vw, 2rem);
  }
  .treatment_menu .subnav > li.large > .subnav > li > a span {
    min-height: clamp(4.5rem, -0.8333rem + 6.944vw, 7.5rem);
  }
  .treatment_menu .subnav > li.large > .subnav > li > a::after {
    top: 0;
    border-radius: 0.5rem;
  }
  .treatment_menu .subnav > li.large > .subnav > li > a:hover::after {
    opacity: 1;
    transform: scale(2);
    background: rgba(var(--rgb_green_light02), 0.9);
  }
}

.index_greeting {
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.index_greeting::after {
  content: "";
  display: block;
  width: 27%;
  height: calc(100% - 14rem);
  position: absolute;
  right: 0;
  bottom: 6rem;
  background: var(--clr_green_light);
  z-index: -2;
  opacity: 0;
}
.index_greeting.trigger::after {
  animation: fade_up 0.8s ease-out 1s 1 normal forwards;
}
.index_greeting.trigger .top_tit02 {
  animation: fade_up 0.8s ease-out 0.4s 1 normal forwards;
}
.index_greeting.trigger .top_tit02::before {
  animation: fade_up 0.6s ease-out 0.7s 1 normal forwards;
}
.index_greeting.trigger .top_tit02::after {
  animation: fade_up 0.8s ease-out 0.4s 1 normal forwards;
}
.index_greeting.trigger .dr_photo {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_greeting.trigger .greeting_tit03 {
  animation: fade_up 0.8s ease-out 0.7s 1 normal forwards;
}
.index_greeting.trigger .dr_message {
  animation: fade_up 0.8s ease-out 0.9s 1 normal forwards;
}
.index_greeting .top_tit02 {
  opacity: 0;
  color: var(--clr_white);
  text-align: left;
  padding: 4rem 0 2rem;
  position: relative;
  z-index: -1;
  margin-bottom: 0;
}
.index_greeting .top_tit02::before {
  color: var(--clr_white);
  opacity: 0;
}
.index_greeting .top_tit02::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 4rem);
  position: absolute;
  top: 0;
  right: 1.5rem;
  background: linear-gradient(to right, var(--clr_green), var(--clr_green_light02));
  z-index: -1;
  opacity: 0;
}
.index_greeting .dr_photo {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.index_greeting .dr_photo img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.index_greeting .greeting_tit03 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin: 2rem 0 1.5rem;
  opacity: 0;
}
.index_greeting .greeting_tit03 .clinic_name {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  display: block;
}
.index_greeting .greeting_tit03 .dr_name_ruby {
  color: var(--clr_green);
  letter-spacing: 0.05em;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 1rem;
  font-size: 1.5rem;
}
.index_greeting .dr_message {
  opacity: 0;
}
.index_greeting .dr_message p {
  margin: 0;
}
.index_greeting .dr_message p:not(:first-of-type) {
  margin-top: 1rem;
}
.index_greeting .dr_message .btn_base {
  margin-top: 1rem;
  text-align: right;
}
@media screen and (min-width: 48em), print {
  .index_greeting {
    padding-bottom: clamp(5rem, -2.1111rem + 9.259vw, 9rem);
  }
  .index_greeting::after {
    width: max(10rem, 100vw - 120rem - (100vw - 120rem) / 2 + 9rem);
    height: calc(100% - 32rem);
    bottom: clamp(5.5rem, -11.3889rem + 21.991vw, 15rem);
  }
  .index_greeting .top_tit02 {
    padding: clamp(4rem, -10.2222rem + 18.519vw, 12rem) 0 clamp(3rem, -6.7778rem + 12.731vw, 8.5rem);
  }
  .index_greeting .top_tit02::after {
    width: calc(66.7% + (100vw - 100%) / 2);
    height: calc(100% + clamp(6rem, -4.6667rem + 13.889vw, 12rem));
    right: auto;
    left: calc((100vw - 100%) / 2 * -1);
  }
  .index_greeting .greeting_content {
    display: grid;
    grid-template-columns: clamp(24rem, -22.2222rem + 60.185vw, 50rem) 1fr;
    gap: clamp(2rem, -5.1111rem + 9.259vw, 6rem);
  }
  .index_greeting .greeting_content .dr_photo img {
    width: 100%;
  }
  .index_greeting .greeting_content > section {
    margin-top: clamp(8rem, -6.2222rem + 18.519vw, 16rem);
  }
  .index_greeting .greeting_content > section .greeting_tit03 {
    font-size: clamp(2.2rem, 0.4222rem + 2.315vw, 3.2rem);
    margin: clamp(1.5rem, 0.6111rem + 1.157vw, 2rem) 0 clamp(2rem, 0.2222rem + 2.315vw, 3rem);
  }
  .index_greeting .greeting_content > section .greeting_tit03 .clinic_name {
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
  }
  .index_greeting .greeting_content > section .greeting_tit03 .dr_name_ruby {
    margin-left: clamp(1.4rem, 0.3333rem + 1.389vw, 2rem);
    font-size: clamp(1.5rem, 0.6111rem + 1.157vw, 2rem);
  }
  .index_greeting .greeting_content > section .dr_message p {
    margin: 0;
  }
  .index_greeting .greeting_content > section .dr_message p:not(:first-of-type) {
    margin-top: clamp(2rem, -0.6667rem + 3.472vw, 3.5rem);
  }
  .index_greeting .greeting_content > section .dr_message .btn_base {
    margin-top: clamp(2rem, -0.6667rem + 3.472vw, 3.5rem);
  }
}

.index_lnks .index_lnk > a {
  display: grid;
  place-content: center;
  min-height: 40vw;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  color: var(--clr_white);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.index_lnks .index_lnk > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(var(--rgb_green_dark), 0.41);
  transition: 0.2s;
  z-index: -1;
}
.index_lnks .index_lnk > a .lnk_tit {
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.index_lnks .index_lnk > a .lnk_tit::before {
  content: attr(data-ruby);
  display: block;
  font-size: 3.4rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: 0;
}
.index_lnks .index_lnk.-patients a {
  background-image: url("../img/index_links_patients.webp");
}
.index_lnks .index_lnk.-about a {
  background-image: url("../img/index_lnks_about.webp");
}
@media screen and (min-width: 48em), print {
  .index_lnks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(46rem, 1fr));
  }
  .index_lnks .index_lnk > a {
    min-height: clamp(26rem, -16.6667rem + 55.556vw, 50rem);
    padding: clamp(2rem, 0.2222rem + 2.315vw, 3rem);
  }
  .index_lnks .index_lnk > a .lnk_tit {
    font-size: clamp(1.6rem, 0.5333rem + 1.389vw, 2.2rem);
  }
  .index_lnks .index_lnk > a .lnk_tit::before {
    font-size: clamp(4rem, -0.2667rem + 5.556vw, 6.4rem);
    margin-bottom: clamp(0.8rem, 0.4444rem + 0.463vw, 1rem);
  }
  .index_lnks .index_lnk > a:hover::after {
    background: rgba(var(--rgb_green_dark), 0.8);
  }
}

body:not(.index) .main {
  margin: 0 auto 6rem;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]) {
  text-decoration: underline;
  color: var(--clr_green);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]):is(:hover,.focus-visible) {
  text-decoration: none;
}
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) > .wrap .main {
    margin: 0 auto clamp(8rem, 0.8889rem + 9.259vw, 12rem);
  }
}

.breadcrumb {
  display: flex;
  font-size: 1.3rem;
  margin: 1rem 0rem 4rem;
  white-space: nowrap;
  overflow-x: scroll;
}
.breadcrumb li {
  letter-spacing: 0;
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  content: "＞";
  margin: 0 0.6rem;
}
.breadcrumb li br {
  display: none;
}
.breadcrumb li a {
  color: var(--clr_green);
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: clamp(1.2rem, 0.4889rem + 0.926vw, 1.6rem);
    max-width: min(1200px, 100% - 4rem);
    margin: clamp(1rem, 0.1111rem + 1.157vw, 1.5rem) 0 clamp(3rem, -1.9778rem + 6.481vw, 5.8rem);
    white-space: inherit;
    overflow-x: inherit;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 clamp(0.8rem, -0.0889rem + 1.157vw, 1.3rem);
  }
  .breadcrumb li a:is(:hover,.focus-visible) {
    text-decoration: underline !important;
  }
  .breadcrumb li a:is(:hover, :focus-visible) {
    text-decoration: underline !important;
  }
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.gallery > section {
  margin-top: 0 !important;
}
.gallery > section {
  width: 100%;
}
.gallery > section img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}
@media screen and (min-width: 48em), print {
  .gallery {
    gap: clamp(2rem, -1.5556rem + 4.63vw, 4rem);
  }
  .gallery > section {
    width: calc((100% - clamp(2rem, -1.5556rem + 4.63vw, 4rem)) / 2);
  }
  .gallery > section img {
    max-width: 100%;
  }
}

.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

.signature_box {
  padding: 1.5rem;
  border: 1px solid var(--clr_border);
}
@media screen and (min-width: 48em), print {
  .signature_box {
    padding: 3rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 auto;
  }
}

#news_lst .fullview-container {
  width: 100%;
  margin: 0;
}
#news_lst .fullview-container dl > div {
  border-bottom: 1px solid var(--clr_border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
#news_lst .fullview-container dl dt .fullview-day {
  color: var(--clr_green);
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.1;
}
#news_lst .fullview-container dl dt .fullview-title {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}
#news_lst .fullview-container dl .fullview-body {
  letter-spacing: 0;
}
#news_lst .fullview-container dl .fullview-body p {
  margin: 0;
  line-height: 1.6;
}
@media screen and (min-width: 48em), print {
  #news_lst .fullview-container dl > div {
    padding-bottom: clamp(2rem, -1.5556rem + 4.63vw, 4rem);
    margin-bottom: clamp(2rem, -1.5556rem + 4.63vw, 4rem);
  }
  #news_lst .fullview-container dl dt .fullview-day {
    font-size: clamp(1.3rem, 0.4111rem + 1.157vw, 1.8rem);
    width: clamp(12rem, 4.8889rem + 9.259vw, 16rem);
  }
  #news_lst .fullview-container dl dt .fullview-title {
    font-size: clamp(1.6rem, 0.5333rem + 1.389vw, 2.2rem);
  }
}

.tbl.-calc tbody th {
  width: 50%;
  height: 4em;
}
.tbl.-calc input {
  height: 2.5em;
  width: calc(100% - 2em);
  padding: 0 0.5rem;
  margin-right: 0.5rem;
}
.tbl.-calc input::placeholder {
  color: #aaa;
}
.tbl.-calc .calc_btn {
  color: var(--clr_white) !important;
  text-decoration: none !important;
}
.tbl.-calc .calc_btn {
  background: var(--clr_green);
  border-radius: 50vh;
  padding: 1.2rem 2.8rem;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  display: block;
  border: 1px solid var(--clr_border);
}
@media screen and (min-width: 48em), print {
  .tbl.-calc .calc_btn {
    padding: clamp(1.4rem, 0.8667rem + 0.694vw, 1.7rem) clamp(2rem, 0.5778rem + 1.852vw, 2.8rem);
  }
}

/*# sourceMappingURL=style.css.map */