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

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

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

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

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

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

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

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

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

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

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

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

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

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

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

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

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

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

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

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

:root {
  --clr_txt: #4D4136;
  --rgb_txt: 77, 65, 54;
  --clr_border: #D1CBC5;
  --rgb_border: 209, 203, 197;
  --clr_shadow: #000000;
  --rgb_shadow: 0, 0, 0;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_green: #80B925;
  --rgb_green: 128, 185, 37;
  --clr_green_light: #EEF3E6;
  --rgb_green_light: 238, 243, 230;
  --clr_green_light02: #B5E667;
  --rgb_green_light02: 181, 230, 103;
  --clr_brown: #806C59;
  --rgb_brown: 128, 108, 89;
  --clr_brown_light: #B4A89E;
  --rgb_brown_light: 180, 168, 158;
  --clr_brown_light02: #D1CBC5;
  --rgb_brown_light02: 209, 203, 197;
  --clr_brown_dark: #A89B8F;
  --rgb_brown_dark: 168, 155, 143;
  --clr_gray: #EFEFED;
  --rgb_gray: 239, 239, 237;
  --clr_gray_light: #F7F7F6;
  --rgb_gray_light: 247, 247, 246;
  --clr_yellow: #F5E514;
  --rgb_yellow: 245, 229, 20;
  --clr_yellow_light: #FAF294;
  --rgb_yellow_light: 250, 242, 148;
  --anime-opacity: 1;
}

@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 fade_up {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up02 {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 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%;
}

.line_mark {
  background: linear-gradient(transparent 75%, var(--clr_yellow_light) 75%) repeat scroll 0 -0.2em;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}

.inline {
  display: inline-block;
}

.img_c {
  margin: 1rem auto;
}

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

.tate {
  max-width: 60%;
}

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

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

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

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

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

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

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

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

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

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

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

.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 1rem;
}
.tbl_time caption .cap {
  display: grid;
  grid-template-columns: 5em 1fr;
  line-height: 1.4;
  gap: 0.7rem 1rem;
}
.tbl_time caption .cap .cap_tit {
  text-align: center;
  border: 1px solid var(--clr_brown);
  color: var(--clr_brown);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem;
  font-size: 90%;
  background: var(--clr_brown);
  color: var(--clr_white);
  text-align: center;
  border-bottom: 1px solid var(--clr_txt);
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_border);
  background: var(--clr_white);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.5rem 0.4rem;
  color: var(--clr_brown);
  border-bottom: 1px solid var(--clr_border);
  line-height: 1;
  font-size: 85%;
  background: var(--clr_white);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 2rem;
  }
  .tbl_time caption {
    font-size: 1.8rem;
    margin-top: 1.4rem;
  }
  .tbl_time caption .cap {
    display: grid;
    grid-template-columns: 11rem 1fr;
    line-height: 1.5;
    gap: 1rem 1.5rem;
  }
  .tbl_time caption .cap .cap_tit {
    text-align: center;
    border: 1px solid var(--clr_brown);
    color: var(--clr_brown);
  }
  .tbl_time tr th[scope=col] {
    padding: 0.4rem 0;
    font-size: 100%;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 31%;
  }
  .tbl_time tr th[scope=col]:last-of-type {
    width: 12%;
    padding-right: 3%;
  }
  .tbl_time tr th.time {
    padding-left: 1%;
  }
  .tbl_time tr td {
    padding: 2.4rem 0;
    font-size: 100%;
  }
  .tbl_time tr td:last-of-type {
    width: 12%;
    padding-right: 3%;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  font-size: 2.2rem;
  padding: 6.6rem 1rem 1rem;
  text-align: center;
  margin-top: -5.6rem;
  margin-bottom: 1rem;
  background: url(../img/tit_01.webp) center/auto 100% no-repeat;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  min-height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1rem;
}

.tit_02 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  letter-spacing: 0.09rem;
}
.tit_02::after {
  content: "";
  width: 2em;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_white);
  background: var(--clr_brown_light);
  padding: 0.8rem 1.8rem;
  letter-spacing: 0.08rem;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--clr_white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.tit_04 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  letter-spacing: 0.065rem;
  padding: 0 0.5rem 0.6rem;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(to right, var(--clr_green) 2.6em, var(--clr_border) 2.6em);
  border-image-slice: 1;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 0.2rem 0 0.2rem 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.055rem;
  position: relative;
}
.tit_05::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--clr_yellow), var(--clr_green));
  position: absolute;
  top: 0;
  left: 0;
}

.tit_06 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  padding-left: 1.5rem;
  letter-spacing: 0.05rem;
  position: relative;
}
.tit_06::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background: var(--clr_brown_light);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4rem;
    min-height: 38rem;
    letter-spacing: 0.2rem;
    margin-top: -16rem;
    padding: 17rem 0 1rem;
    margin-bottom: 1.5rem;
  }
  .tit_01 span {
    width: calc(1200px - 10rem);
    margin: 2rem auto;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin-bottom: 5rem;
    letter-spacing: 0.18rem;
  }
  .tit_02::after {
    height: 3px;
    width: 60px;
    bottom: -15px;
  }
  .tit_03 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    padding: 1.6rem 3rem;
    letter-spacing: 0.16rem;
  }
  .tit_03::before {
    width: 2rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    letter-spacing: 0.13rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding: 0.7rem 0 0.7rem 1.7rem;
    letter-spacing: 0.11rem;
  }
  .tit_06 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    padding-left: 1.8rem;
  }
  .tit_06::before {
    margin-right: 1rem;
    top: 0.8rem;
  }
}
.lst {
  line-height: 1.4;
}
.lst > li:not(:last-child) {
  margin-bottom: 1rem;
}

.lst_ul {
  line-height: 1.4;
}
.lst_ul > li {
  padding-left: 1.1em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ul > li::before {
  font-family: "fontello";
  content: "\a019";
  color: var(--clr_green);
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 60%;
  font-weight: normal;
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
  font-size: 100%;
  top: inherit;
}

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

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding-left: 1.3em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ol > li::before {
  content: counter(number) ".";
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  position: absolute;
  top: 0.26rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol > li::before {
    top: 0.34rem;
  }
}

.lst_dl {
  --dl_border: var(--clr_border);
  --dl_border02:var(--clr_border);
}
.lst_dl dt {
  color: var(--clr_brown);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  background: var(--clr_gray);
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
}
.lst_dl dd {
  background: var(--clr_white);
  margin: 0 0 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
  border-bottom: 1px solid var(--dl_border);
}
.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);
}
.lst_dl.-color02 dd ul li {
  border-color: var(--dl_border02);
}
@media screen and (min-width: 48em), print {
  .lst_dl dt {
    padding: 1rem 2.5rem;
  }
  .lst_dl dd {
    padding: 1.5rem 2.5rem;
  }
  .lst_dl.-pc_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lst_dl.-pc_row dt {
    width: 30%;
    padding: 1.5rem 2.5rem;
  }
  .lst_dl.-pc_row dt:last-of-type {
    border-bottom: 1px solid var(--dl_border);
  }
  .lst_dl.-pc_row dd {
    width: 70%;
    margin: 0;
    border-top: 1px solid var(--dl_border);
    border-left: none;
    border-bottom: none;
  }
  .lst_dl.-pc_row dd:last-of-type {
    border-bottom: 1px solid var(--dl_border);
  }
  .lst_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);
  }
}

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

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.lst_anc > li {
  width: 100%;
}
.lst_anc > li a {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 1px solid var(--clr_border);
  padding: 0 2rem 1rem 0;
  line-height: 1.25;
  position: relative;
  color: var(--clr_brown) !important;
  text-decoration: none !important;
}
.lst_anc > li a::after {
  font-family: "fontello";
  content: "\a018";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  color: var(--clr_green);
  font-size: 70%;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 1.5rem 2rem;
  }
  .lst_anc > li {
    width: calc((100% - 6rem) / 4);
    min-height: 5.5rem;
    display: flex;
    align-items: flex-end;
  }
  .lst_anc > li a {
    width: 100%;
    padding: 0 2rem 1.5rem 0;
  }
  .lst_anc > li a::after {
    font-size: 45%;
    right: 1rem;
    bottom: 2rem;
  }
  .lst_anc > li a:hover {
    color: var(--clr_green) !important;
  }
  .lst_anc.-col3 > li {
    width: calc((100% - 4rem) / 3);
  }
}

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

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  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: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4.5rem;
  left: 0;
  right: 0;
  border-top: 1.5rem solid var(--clr_brown_light);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li:not(:last-child) {
    margin: 0 0 6rem;
  }
  .lst_flow > li:not(:last-child)::after {
    bottom: -5rem;
    border-top: 2.2rem solid var(--clr_brown_light);
    border-right: 4rem solid transparent;
    border-left: 4rem solid transparent;
  }
}
.lst_flow > li {
  position: relative;
  background: var(--clr_white);
}
.lst_flow > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
}
.lst_flow > li .flow_tit {
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--clr_border);
  display: block;
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  padding-left: 1.2em;
}
.lst_flow > li .flow_tit::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 2rem 3rem;
  }
  .lst_flow > li .flow_tit {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .lst_flow > li .flow_tit::before {
    top: 2rem;
    left: 3rem;
  }
}

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

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

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: calc(50% - 1rem);
    margin-top: 0 !important;
  }
  .flex2 > section:not(:last-child), .flex2 > li:not(:last-child), .flex2 > div:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex3 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3_1 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex4 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 3rem;
  }
}
.tel {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 150%;
}
.tel::before {
  font-family: "fontello";
  content: "\a001";
  margin-right: 0.6rem;
  font-size: 70%;
  display: inline-block;
  transform: translateY(-1px);
}
@media screen and (min-width: 48em), print {
  .tel::before {
    margin-right: 1.2rem;
    transform: translateY(-4px);
  }
}

.rsv {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  color: var(--clr_white);
  background: var(--clr_brown);
  border: 1px solid var(--clr_brown);
  border-radius: 6px;
  padding: 0.8rem 1.8rem;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.045rem;
  line-height: 1;
}
.rsv::before {
  font-family: "fontello";
  content: "\a003";
  font-weight: normal;
  display: block;
  font-size: 120%;
  margin-bottom: 0.9rem;
}
.rsv.-LINE {
  background: var(--clr_green);
  border-color: var(--clr_green);
}
.rsv.-LINE::before {
  font-family: "fontello";
  content: "\a002";
}
@media screen and (min-width: 48em), print {
  .rsv {
    border-radius: 10px;
    letter-spacing: 0.09rem;
    font-size: 1.8rem;
    padding: 1.04rem 2.22rem;
  }
  .rsv::before {
    font-size: 140%;
  }
  .rsv:is(:hover, :focus-visible) {
    opacity: 1;
    color: var(--clr_brown);
    background: var(--clr_white);
  }
  .rsv:is(:hover, :focus-visible).-LINE {
    color: var(--clr_green);
  }
}

.box {
  padding: 1.5rem;
  background: var(--clr_gray);
}
.box.-color02 {
  background: var(--clr_green_light);
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 2rem 3rem;
  }
}

.btn {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  border: 1px solid var(--clr_brown);
  border-radius: 50vh;
  padding: 1rem 3rem;
  min-width: 65%;
  line-height: 1.4;
  text-align: center;
  position: relative;
}
.btn::after {
  display: block;
  font-family: "fontello";
  content: "\a017";
  color: var(--clr_green);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 50%;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 1.6rem 5rem;
    min-width: 28.5rem;
  }
  .btn::after {
    right: 1.3rem;
  }
  .btn:is(:hover, :focus-visible) {
    color: var(--clr_green);
    border-color: var(--clr_green);
  }
}

.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;
}
.lnk.out::before {
  display: inline-block;
  font-family: "fontello";
  content: "\a016";
  color: var(--clr_green);
  margin-right: 0.8rem;
}
.lnk.pdf::after {
  display: inline-block;
  font-family: "fontello";
  content: "\f1c1";
  color: var(--clr_green);
  margin-left: 0.2rem;
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.4;
}
.tbl tr th {
  text-align: center;
  padding: 1rem;
  font-weight: normal;
  border: 1px solid var(--clr_border);
  background: var(--clr_green_light);
  color: var(--clr_txt);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--clr_border);
  background: var(--clr_white);
}
.tbl tr .nowrap, .tbl tr .sp_nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl thead tr th {
  background: var(--clr_brown_light);
  color: var(--clr_white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

@media screen and (min-width: 48em), print {
  .tbl tr th {
    padding: 1rem 2.5rem;
  }
  .tbl tr td {
    padding: 1rem 2.5rem;
  }
  .tbl tr .sp_nowrap {
    width: inherit;
    white-space: inherit;
  }
}
.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;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: #000;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 2.7777777778vw;
}

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 101;
  background: rgba(var(--rgb_white), 0.8);
  box-shadow: 0 5px 5px rgba(var(--rgb_shadow), 0.01);
}
.header .wrap {
  padding: 0.5rem 0;
}
.header .wrap .logo {
  width: calc(100% - 5.6rem);
  height: 4.6rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header .wrap .headR .head_tel {
  text-align: center;
}
.header .wrap .headR .rsv_lnks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto;
    padding: 1.3rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 57.5rem;
    height: 7.499rem;
  }
  .header .wrap .headR {
    width: calc(100% - 60rem);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 5rem;
  }
  .header .wrap .headR .head_tel .tel {
    font-size: 3.2rem;
  }
  .header .wrap .headR .rsv_lnks {
    justify-content: flex-end;
    gap: 1rem;
  }
}
#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: 1.2rem;
  left: 0;
  right: 0;
  width: 3.5rem;
  height: 2px;
  background-color: var(--clr_brown);
  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: 2.8rem;
}
#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(0.8rem) rotate(45deg);
  }
  50% {
    transform: translateY(0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0.8rem) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}
@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
  }
  #nav #sp_menu {
    display: none;
  }
}

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

.gnav_subnav .gnav > li {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid var(--clr_border);
}
.gnav_subnav .gnav > li a, .gnav_subnav .gnav > li .sub {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  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: "\a004";
  display: block;
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  font-weight: normal;
  font-size: 80%;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: var(--clr_white);
  box-shadow: 0 0 6px rgba(var(--rgb_shadow), 0.1);
  margin-bottom: 1rem;
}
.gnav_subnav .gnav > li .subbox .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}
.gnav_subnav .gnav > li .subbox .subnav li {
  width: calc(50% - 0.25rem);
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  color: var(--clr_txt);
  position: relative;
}
.gnav_subnav .gnav > li .subbox .subnav li a::before {
  position: absolute;
  left: 0;
  top: 1.3rem;
  font-family: "fontello";
  content: "\a017";
  font-size: 60%;
  color: var(--clr_green);
  margin-right: 0.5rem;
  padding: 0;
  line-height: 1;
}
.gnav_subnav .gnav > li .subbox .subnav li a.current {
  color: var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 1.52rem 0;
    position: static;
    background: none;
  }
  .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
  }
  .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid var(--clr_border);
  }
  .gnav_subnav .gnav > li::after {
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 55%;
    height: 1px;
    background: var(--clr_brown);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  .gnav_subnav .gnav > li:hover::after {
    transform: scale(1, 1);
  }
  .gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
    display: block;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
  }
  .gnav_subnav .gnav > li > a::after, .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 1.2rem;
    position: static;
    display: inline-block;
  }
  .gnav_subnav .gnav > li > a:hover, .gnav_subnav .gnav > li .sub:hover {
    opacity: 1;
    color: var(--clr_txt);
  }
  .gnav_subnav .gnav > li > a.current, .gnav_subnav .gnav > li .sub.current {
    color: var(--clr_txt);
    position: relative;
  }
  .gnav_subnav .gnav > li > a.current::before, .gnav_subnav .gnav > li .sub.current::before {
    position: absolute;
    top: auto;
    bottom: -0.6rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 55%;
    height: 1px;
    background: var(--clr_brown);
  }
  .gnav_subnav .gnav > li .subbox {
    width: auto;
    position: absolute;
    top: 4.5rem;
    left: 0;
    width: 40rem;
  }
  .gnav_subnav .gnav > li .subbox > .subnav {
    padding: 1rem 2rem;
    gap: 0.5rem 1.6rem;
  }
  .gnav_subnav .gnav > li .subbox > .subnav li {
    width: calc(50% - 0.8rem);
  }
  .gnav_subnav .gnav > li .subbox > .subnav li a {
    font-size: 2rem;
    padding: 0.8rem 0 0.8rem 2rem;
    display: flex;
    align-items: center;
  }
  .gnav_subnav .gnav > li .subbox > .subnav li a::before {
    top: 1.8rem;
    font-size: 55%;
  }
  .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible) {
    color: var(--clr_green);
    opacity: 1;
  }
}

.overview {
  padding: 4rem 0rem;
  font-size: 1.4rem;
  line-height: 1.8;
  background: var(--clr_green_light);
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 3rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview .gaiyo {
  line-height: 1.4;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  display: grid;
  grid-template-columns: 6em 1fr;
}
.overview .gaiyo dt {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--clr_brown);
  color: var(--clr_brown);
  display: flex;
  align-items: center;
}
.overview .gaiyo dt.space {
  letter-spacing: 1em;
}
.overview .gaiyo dd {
  padding: 1.2rem;
  border-bottom: 1px solid var(--clr_border);
}
.overview .gaiyo dd .dr_license {
  display: block;
  font-size: 85%;
  line-height: 1.6;
}
.overview .gaiyo dd .lst_dept {
  line-height: 1.4;
}
.overview .gaiyo dd .lst_dept > span {
  display: block;
  padding-left: 1.1em;
  position: relative;
}
.overview .gaiyo dd .lst_dept > span:not(:last-child) {
  margin-bottom: 1rem;
}
.overview .gaiyo dd .lst_dept > span::before {
  font-family: "fontello";
  content: "\a019";
  color: var(--clr_green);
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 60%;
  font-weight: normal;
}
.overview .tbl_time {
  margin: 2rem 0;
}
.overview .gmap iframe {
  height: 100vw;
}
.overview .btn_map {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto 0;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 11rem 0;
    font-size: 1.8rem;
    line-height: 2;
  }
  .overview .clinic_name {
    margin: 0 0 6.5rem;
  }
  .overview .clinic_name img {
    max-width: inherit;
    width: 69.1rem;
  }
  .overview .overview_content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .overview .overview_content .overviewL, .overview .overview_content .overviewR {
    width: 47.5%;
  }
  .overview .gaiyo {
    line-height: 1.6;
    grid-template-columns: 12rem 1fr;
  }
  .overview .gaiyo dt {
    padding: 1.5rem 0;
  }
  .overview .gaiyo dd {
    padding: 1.5rem 2.1rem;
  }
  .overview .gaiyo dd .dr_license {
    font-size: 90%;
  }
  .overview .gaiyo dd .lst_ul {
    margin: 0.85rem 0;
  }
  .overview .gaiyo dd .lst_ul > li:not(:last-child) {
    margin-bottom: 1.1rem;
  }
  .overview .tbl_time {
    margin: 4rem 0 0;
  }
  .overview .gmap {
    height: 100%;
    padding-top: 1rem;
  }
  .overview .gmap iframe {
    height: calc(100% - 8rem);
  }
}
#tel_up {
  width: 100%;
  height: 5.8rem;
  position: fixed;
  bottom: 0rem;
  right: 0;
  z-index: 2;
  background: rgba(var(--rgb_white), 0.8);
  box-shadow: 0px 0px 12px -3px rgba(var(--rgb_shadow), 0.1);
}
#tel_up ul {
  width: calc(100% - 0.8rem);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 0.4rem;
}
#tel_up ul li {
  height: calc(100% - 0.8rem);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#tel_up ul li .tel {
  font-size: 1.8rem;
  margin-inline: 0.6rem;
}
#tel_up ul li .rsv {
  height: 100%;
  width: 100%;
  padding: 0 1rem;
  font-size: 1.3rem;
  display: grid;
  place-content: center;
}
#tel_up ul li .rsv::before {
  margin-bottom: 0.3rem;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    height: 6rem;
    bottom: 3rem;
    right: 3rem;
    background: none;
    box-shadow: none;
    font-size: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 0.6rem;
  }
  #tel_up ul {
    display: none;
  }
}
#pageup {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  position: fixed;
  bottom: 6.4rem;
  right: 0.4rem;
}
#pageup::before {
  display: block;
  font-family: "fontello";
  content: "\a005";
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  color: var(--clr_brown);
  background: var(--clr_white);
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid var(--clr_brown_light02);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: 0.2s;
}
#pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 6rem;
    height: 6rem;
    position: relative;
    bottom: 0;
    right: 0;
  }
  #pageup::before {
    font-size: 2.3rem;
  }
  #pageup:hover::before {
    color: var(--clr_white);
    background: var(--clr_brown_light02);
    opacity: 1;
  }
}

.footer {
  text-align: center;
  background: var(--clr_white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.footer .footer_lnks {
  color: var(--clr_white);
  background: var(--clr_brown_light);
  padding: 1.5rem 1rem 6.8rem;
  border-top: 1px solid var(--clr_border);
  font-size: 1.2rem;
}
.footer .footer_lnks a {
  text-decoration: underline;
}
.footer .footer_lnks .copy {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.045rem;
}
.footer .footer_lnks .copy a {
  text-decoration: none;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 5.5rem 0 0;
  }
  .footer .footer_lnks {
    padding: 1rem 1rem 6rem;
    margin-top: 5rem;
  }
  .footer .footer_lnks .copy {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 0.09rem;
  }
  .footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0;
    margin-inline: auto;
  }
  .footer ul li {
    text-align: center;
    font-size: 1.8rem;
    padding: 0 0.9rem;
    line-height: 1;
    letter-spacing: 0.09rem;
    border-right: 1px solid var(--clr_txt);
    -webkit-text-size-adjust: none;
  }
  .footer ul li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul li.last-in-row {
    border-right-color: transparent;
  }
  .footer ul:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  margin-top: -5.6rem;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 29rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation: fade 1.4s ease-out 0.5s 1 normal forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 29rem !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
  margin: -1.8rem auto;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: var(--clr_white);
}
.keyvsl .catch_copy {
  position: absolute;
  width: 100%;
  top: 18rem;
  left: 0;
  color: var(--clr_white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.45;
  padding: 0 0 0 1.5rem;
  letter-spacing: 0.2rem;
  z-index: 1;
  display: grid;
  place-content: end start;
  text-shadow: 0 0 6px var(--clr_shadow);
  opacity: 0;
  animation: fade_up 0.4s ease-out 1.4s 1 normal forwards;
}
.keyvsl .catch_copy02 {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  font-size: 1.8rem;
  line-height: 1.45;
  color: var(--clr_green);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  opacity: 0;
  animation: fade_up 0.4s ease-out 1.6s 1 normal forwards;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin-top: -16rem;
  }
  .keyvsl #keyvsl {
    height: 95rem;
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 95rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin-top: -3rem;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .catch_copy {
    width: 1200px;
    top: 71rem;
    right: 0;
    margin-inline: auto;
    font-size: 4.8rem;
    line-height: 1.4;
    padding: 0;
    letter-spacing: 0.48rem;
    place-content: end start;
    text-shadow: 0 0 10px var(--clr_shadow);
  }
  .keyvsl .catch_copy02 {
    position: absolute;
    z-index: 1;
    color: var(--clr_green_light02);
    width: 1200px;
    top: 86rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    text-align: left;
    padding: 0;
    font-size: 3.4rem;
    line-height: 1.4;
    text-shadow: 0 0 10px var(--clr_shadow);
  }
}
.top_tit02 {
  color: var(--clr_brown);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.2;
  padding-top: 4.4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 0;
}
.top_tit02::before {
  content: attr(data-ruby);
  color: var(--clr_white);
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7rem;
  display: block;
  letter-spacing: 0.4rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
.top_tit02::after {
  content: " ";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin: 0.8rem auto 0;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
  pointer-events: none;
}
.top_tit02.-row {
  text-align: left;
  color: var(--clr_brown);
  padding: 3rem 0 3rem 4.5rem;
  margin-bottom: 2rem;
}
.top_tit02.-row::before {
  color: var(--clr_white);
  top: 0;
  left: 3rem;
}
.top_tit02.-row::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 4rem;
    margin-bottom: 3rem;
    padding-top: 10.5rem;
    letter-spacing: 0.4rem;
  }
  .top_tit02::before {
    font-size: 16rem;
    letter-spacing: 0.8rem;
  }
  .top_tit02::after {
    width: 6rem;
    height: 3px;
    margin-top: 1.6rem;
  }
  .top_tit02.-row {
    width: 1200px;
    margin: 0 auto 5rem;
    padding: 8rem 0 5rem 8rem;
  }
  .top_tit02.-row::before {
    left: auto;
    right: -21rem;
  }
  .top_tit02.-row::after {
    top: 10.8rem;
  }
}
.index_policy {
  padding: 4rem 0 32rem;
  overflow: hidden;
  position: relative;
}
.index_policy::before, .index_policy::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
}
.index_policy::before {
  width: 45%;
  height: 35rem;
  background: var(--clr_gray);
  top: 0rem;
  right: -1.5rem;
}
.index_policy::after {
  width: 55%;
  left: -2rem;
  bottom: 0;
  aspect-ratio: 7/9;
  background: url("../img/index_policy_bgL.webp") center center/cover no-repeat;
}
.index_policy .index_bnr {
  width: calc(100% - 9rem);
  margin: -2.5rem auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.index_policy .index_bnr > li {
  width: 100%;
  opacity: 0;
  animation: fade_up 0.6s ease-out 1.8s 1 normal forwards;
}
.index_policy .index_bnr > li > a {
  display: block;
}
.index_policy .index_bnr > li > a img {
  width: 100%;
  box-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.16);
  transition: 0.2s;
}
.index_policy .index_bnr > li:nth-child(1) {
  animation-delay: 2s;
}
.index_policy .index_bnr > li:nth-child(2) {
  animation-delay: 2.2s;
}
.index_policy .index_bnr > li:nth-child(3) {
  animation-delay: 2.4s;
}
.index_policy .index_bnr > li:nth-child(4) {
  animation-delay: 2.6s;
}
.index_policy .index_bnr > li:nth-child(5) {
  animation-delay: 2.8s;
}
.index_policy .index_bnr > li:nth-child(6) {
  animation-delay: 3s;
}
.index_policy .index_bnr > li:nth-child(7) {
  animation-delay: 3.2s;
}
.index_policy .index_bnr > li:nth-child(8) {
  animation-delay: 3.4s;
}
.index_policy .index_bnr > li:nth-child(9) {
  animation-delay: 3.6s;
}
.index_policy .index_bnr > li:nth-child(10) {
  animation-delay: 3.8s;
}
.index_policy .policy_tit02 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
  padding-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: -1;
  opacity: 0;
}
.index_policy .policy_tit02 .underline {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.index_policy .policy_tit02 .underline::after {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .index_policy .policy_tit02 .underline::after {
    bottom: 0.7rem;
    height: 3px;
  }
}
.index_policy .policy_tit02::before {
  content: attr(data-ruby);
  color: var(--clr_white);
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7rem;
  display: block;
  letter-spacing: 0.4rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -1.5rem;
  margin-inline: auto;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
}
.index_policy .policy_content {
  opacity: 0;
  position: relative;
}
.index_policy .policy_content::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 65%;
  right: -3rem;
  bottom: -17.5rem;
  aspect-ratio: 1/1;
  background: url("../img/index_policy_bgR.webp") center center/cover no-repeat;
}
.index_policy .policy_content .policy_tit03 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  letter-spacing: 0.065rem;
}
.index_policy .policy_content .policy_tit03::before, .index_policy .policy_content .policy_tit03::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 1px;
  flex-shrink: 0;
  background: var(--clr_brown);
}
.index_policy .policy_content p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
}
.index_policy .policy_content p:not(:first-of-type) {
  margin-top: 1.5rem;
}
.index_policy .policy_content p.txt_large {
  font-size: 1.6rem;
  letter-spacing: 0.07rem;
}
.index_policy .policy_content p.txt_large .bg_gradation {
  display: inline-block;
  padding: 0.7rem 0.4rem 0.4rem;
  letter-spacing: 0.1rem;
  font-size: 2.2rem;
  line-height: 1;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
}
.index_policy.trigger .policy_tit02 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_policy.trigger .policy_tit02::before {
  animation: fade_up 0.4s ease-out 0.6s 1 normal forwards;
}
.index_policy.trigger .policy_content {
  animation: fade_up 0.6s ease-out 0.8s 1 normal forwards;
}
.index_policy.trigger .policy_content::after {
  animation: fade_up 0.6s ease-out 1.2s 1 normal forwards;
}
.index_policy.trigger::before {
  animation: fade_up 0.6s ease-out 1s 1 normal forwards;
}
.index_policy.trigger::after {
  animation: fade_up 0.6s ease-out 1.4s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_policy {
    padding: 12rem 0 29rem;
  }
  .index_policy::before {
    width: 80rem;
    height: 65rem;
    right: calc(50% - 100rem);
  }
  .index_policy::after {
    width: 70rem;
    left: calc(50% - 100rem);
    bottom: 20.5rem;
  }
  .index_policy .index_bnr {
    width: 1200px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    margin: -4.5rem auto 7rem;
  }
  .index_policy .index_bnr > li {
    max-width: 38rem;
  }
  .index_policy .index_bnr > li > a:is(:hover, :focus-visible) img {
    filter: brightness(103%);
  }
  .index_policy .wrap {
    padding-left: 40rem;
  }
  .index_policy .wrap .policy_tit02 {
    font-size: 4.8rem;
    letter-spacing: 0.48rem;
    padding-top: 12rem;
    margin-bottom: 4.8rem;
    line-height: 1.7;
  }
  .index_policy .wrap .policy_tit02 .underline {
    display: block;
  }
  .index_policy .wrap .policy_tit02::before {
    font-size: 18rem;
    letter-spacing: 0.9rem;
    left: -25.5rem;
  }
  .index_policy .policy_content::after {
    width: 50rem;
    right: calc(50% - 80rem);
    bottom: -19rem;
  }
  .index_policy .policy_content .policy_tit03 {
    gap: 0 1rem;
    font-size: 2.6rem;
    margin-bottom: 5.5rem;
    letter-spacing: 0.13rem;
  }
  .index_policy .policy_content .policy_tit03::before, .index_policy .policy_content .policy_tit03::after {
    width: 2.6rem;
  }
  .index_policy .policy_content p {
    font-size: 2rem;
  }
  .index_policy .policy_content p:not(:first-of-type) {
    margin-top: 4rem;
  }
  .index_policy .policy_content p.txt_large {
    font-size: 2.8rem;
    letter-spacing: 0.14rem;
    margin: 3.5rem 0;
  }
  .index_policy .policy_content p.txt_large .bg_gradation {
    padding: 0.7rem 0.2rem 0.4rem;
    letter-spacing: 0.2rem;
    font-size: 4rem;
  }
}

.index_news {
  padding: 7rem 0 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.index_news::before, .index_news::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: calc(100% - 1.5rem);
}
.index_news::before {
  height: calc(100% - 9.6rem);
  background: var(--clr_gray);
  top: 0;
  left: 0;
  opacity: var(--anime-opacity);
}
.index_news::after {
  height: calc(100% - 7rem);
  background: var(--clr_white);
  bottom: 0rem;
  right: 0;
}
.index_news .top_tit02 {
  padding-top: 3rem;
  padding-bottom: 0;
  margin-bottom: 1rem;
  opacity: var(--anime-opacity);
}
.index_news .top_tit02::before {
  top: -5.5rem;
  left: -1.5rem;
  opacity: var(--anime-opacity);
}
.index_news .top_tit02::after {
  top: 4.4rem;
}
.index_news dl {
  padding: 0 1.5rem 1.5rem;
  opacity: var(--anime-opacity);
}
.index_news dl dt {
  margin: 0 0 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
  padding: 1.5rem 1rem 0 2.5rem;
  letter-spacing: 0.055rem;
  line-height: 1.4;
}
.index_news dl dt::before {
  font-family: "fontello";
  content: "\a006";
  font-weight: normal;
  position: absolute;
  top: 1.45rem;
  left: 0;
  transition: 0.2s;
}
.index_news dl dt .day {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.045rem;
}
.index_news dl dt.open::before {
  transform: scale(1, -1);
}
.index_news dl dt:not(:first-of-type) {
  border-top: 1px solid var(--clr_border);
}
.index_news dl dd {
  margin: -1rem 0 1.5rem;
  padding: 0 1rem 0 2.5rem;
  word-wrap: break-word;
}
.index_news dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.index_news dl dd a {
  color: var(--clr_green);
  text-decoration: underline;
}
.index_news dl dd a:is(:hover, :focus-visible) {
  text-decoration: none;
}
.index_news.trigger .top_tit02 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_news.trigger .top_tit02::before {
  animation: fade_up 0.4s ease-out 0.6s 1 normal forwards;
}
.index_news.trigger dl {
  animation: fade_up 0.6s ease-out 1s 1 normal forwards;
}
.index_news.trigger::before {
  animation: fade_up 0.6s ease-out 0.8s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_news {
    padding: 15rem 0 0;
  }
  .index_news::before {
    width: 100rem;
    height: 72rem;
    left: calc(50% - 100rem);
  }
  .index_news::after {
    width: 150rem;
    height: calc(100% - 15rem);
    right: calc(50% - 100rem);
  }
  .index_news .top_tit02 {
    padding-top: 4.5rem;
    margin-bottom: 3rem;
  }
  .index_news .top_tit02::before {
    top: -12.5rem;
    left: -10rem;
  }
  .index_news .top_tit02::after {
    top: 7.3rem;
  }
  .index_news .wrap {
    padding-left: 10rem;
  }
  .index_news .wrap dl {
    padding: 0 0 5.5rem 8rem;
  }
  .index_news .wrap dl dt {
    margin: 0 0 2rem;
    font-size: 2.2rem;
    padding: 2rem 1rem 0 4rem;
    letter-spacing: 0.11rem;
    line-height: 1.6;
  }
  .index_news .wrap dl dt::before {
    top: 1.8rem;
  }
  .index_news .wrap dl dt .day {
    font-size: 1.8rem;
    letter-spacing: 0.09rem;
    margin-bottom: 0.7rem;
  }
  .index_news .wrap dl dd {
    margin: -1.5rem 0 2.2rem;
    padding: 0 1rem 0 4rem;
    line-height: 1.8;
  }
}

.index_information {
  padding: 4rem 0;
  overflow: hidden;
}
.index_information .top_tit02 {
  opacity: var(--anime-opacity);
  z-index: 1;
}
.index_information .top_tit02::before {
  opacity: var(--anime-opacity);
}
.index_information .info_timetable {
  opacity: var(--anime-opacity);
}
.index_information .info_map {
  margin-top: 3rem;
  position: relative;
  z-index: 0;
  opacity: var(--anime-opacity);
}
.index_information .info_map::after {
  content: "";
  display: block;
  width: calc(100% - 1.5rem);
  height: calc(100% + 6rem);
  background: var(--clr_gray);
  position: absolute;
  right: -1.5rem;
  bottom: -4rem;
  z-index: -2;
  opacity: var(--anime-opacity);
}
.index_information .info_map .gmap {
  height: 60vw;
  margin-bottom: 2rem;
}
.index_information.trigger .top_tit02 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_information.trigger .top_tit02::before {
  animation: fade_left 0.6s ease-out 0.6s 1 normal forwards;
}
.index_information.trigger .info_timetable {
  animation: fade_up 0.6s ease-out 0.8s 1 normal forwards;
}
.index_information.trigger .info_map {
  animation: fade_up 0.6s ease-out 1s 1 normal forwards;
}
.index_information.trigger .info_map::after {
  animation: fade_right 0.4s ease-out 1.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_information {
    padding: 12.5rem 0;
  }
  .index_information .top_tit02 {
    padding-left: 8.5rem;
    margin-bottom: 3.5rem;
    z-index: 4;
  }
  .index_information .info_content {
    display: flex;
    justify-content: space-between;
  }
  .index_information .info_content > div {
    width: 47.5%;
  }
  .index_information .info_content > div.info_map {
    margin-top: 0;
  }
  .index_information .info_content > div.info_map::after {
    width: 89rem;
    height: 60.5rem;
    right: calc(50% - 68.5rem);
    bottom: -10rem;
  }
  .index_information .info_content > div.info_map .gmap {
    height: 28rem;
    margin-bottom: 3rem;
  }
  .index_information.trigger .info_timetable {
    animation: fade_right 0.6s ease-out 1s 1 normal forwards;
  }
  .index_information.trigger .info_map {
    animation: fade_left 0.6s ease-out 1s 1 normal forwards;
  }
  .index_information.trigger .info_map::after {
    animation: fade_right 0.4s ease-out 1.2s 1 normal forwards;
  }
}

.index_point {
  padding: 4rem 1.5rem 4rem 0rem;
  display: flex;
  flex-direction: column;
  gap: 4rem 0;
  counter-reset: number 0;
  overflow: hidden;
}
.index_point > section {
  padding: 17rem 1.5rem 3rem 3rem;
  color: var(--clr_white);
  counter-increment: number 1;
  position: relative;
  z-index: 0;
  margin-top: 14rem;
}
.index_point > section::before {
  content: "";
  display: block;
  width: calc(100% - 6rem);
  height: 30rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -14rem;
  right: -1.5rem;
  z-index: 1;
  opacity: var(--anime-opacity);
  pointer-events: none;
}
.index_point > section::after {
  background: var(--clr_brown_light);
  content: "Point " counter(number, decimal-leading-zero);
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_brown_dark);
  width: calc(100% + 1rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: -1rem;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: 0.4rem;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  opacity: var(--anime-opacity);
  pointer-events: none;
}
.index_point > section .point_tit02 {
  letter-spacing: 0.1rem;
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 2rem;
  opacity: var(--anime-opacity);
}
.index_point > section .point_tit02 .underline {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.index_point > section .point_tit02 .underline::after {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .index_point > section .point_tit02 .underline::after {
    bottom: 0.7rem;
    height: 3px;
  }
}
.index_point > section .point_content {
  opacity: var(--anime-opacity);
}
.index_point > section .point_content > section + section {
  margin-top: 3rem;
}
.index_point > section .point_content .point_tit03 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.8rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 1.5rem;
}
.index_point > section .point_content .point_tit03::before, .index_point > section .point_content .point_tit03::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 1px;
  flex-shrink: 0;
  background: var(--clr_white);
}
.index_point > section .point_content p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
}
.index_point > section .point_content p:not(:first-of-type) {
  margin-top: 1em;
}
.index_point > section .point_content .lst_ul.-kome {
  margin: 1rem 0 2.5rem;
}
.index_point > section .point_content .lst_ul.-kome > li {
  font-size: 1.3rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.index_point > section:nth-of-type(1)::before {
  background-image: url("../img/index_point01.webp");
}
.index_point > section:nth-of-type(2)::before {
  background-image: url("../img/index_point02.webp");
}
.index_point > section:nth-of-type(3)::before {
  background-image: url("../img/index_point03.webp");
}
.index_point > section.trigger::before {
  animation: fade_left 0.6s ease-out 0.8s 1 normal forwards;
}
.index_point > section.trigger::after {
  animation: fade 0.6s ease-out 0.2s 1 normal forwards;
}
.index_point > section.trigger .point_tit02 {
  animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
}
.index_point > section.trigger .point_content {
  animation: fade_up 0.6s ease-out 1s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_point {
    padding: 7rem 0 10rem;
    gap: 9.6rem 0;
  }
  .index_point > section {
    width: 1200px;
    margin-inline: auto;
    padding: 9.5rem 0rem 9.5rem 40rem;
    margin-top: 10.5rem;
    min-height: 84rem;
  }
  .index_point > section::before {
    width: 70rem;
    height: 84rem;
    top: -10rem;
    right: auto;
    left: calc(50% - 100rem);
  }
  .index_point > section::after {
    width: 1200px;
    height: 100%;
    left: auto;
    right: calc(50% - 80rem);
    font-size: 16rem;
    letter-spacing: 0.8rem;
    align-items: flex-start;
    line-height: 0.75;
  }
  .index_point > section .point_tit02 {
    letter-spacing: 0.2rem;
    font-size: 4rem;
    margin-bottom: 5.5rem;
    line-height: 1.65;
  }
  .index_point > section .point_content > section + section {
    margin-top: 5.5rem;
  }
  .index_point > section .point_content .point_tit03 {
    gap: 0 1rem;
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
    letter-spacing: 0.11rem;
  }
  .index_point > section .point_content .point_tit03::before, .index_point > section .point_content .point_tit03::after {
    width: 2.2rem;
  }
  .index_point > section .point_content p:not(:first-of-type) {
    margin-top: 3.5rem;
  }
  .index_point > section .point_content .lst_ul.-kome {
    margin: 1.8rem 0 5rem;
  }
  .index_point > section .point_content .lst_ul.-kome > li {
    font-size: 1.6rem;
  }
  .index_point > section:nth-of-type(even) {
    padding-right: 40rem;
    padding-left: 0rem;
  }
  .index_point > section:nth-of-type(even)::before {
    left: auto;
    right: calc(50% - 100rem);
  }
  .index_point > section:nth-of-type(even)::after {
    right: auto;
    left: calc(50% - 80rem);
    align-items: flex-end;
  }
  .index_point > section.trigger::before {
    animation: fade_right 0.6s ease-out 0.8s 1 normal forwards;
  }
  .index_point > section.trigger:nth-of-type(even)::before {
    animation: fade_left 0.6s ease-out 0.8s 1 normal forwards;
  }
}

.index_greeting {
  padding: 4rem 1.5rem 7rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.index_greeting::before, .index_greeting::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: calc(100% - 1.5rem);
}
.index_greeting::before {
  height: calc(100% - 9.6rem);
  background: var(--clr_gray);
  top: 0;
  right: 0;
  opacity: var(--anime-opacity);
}
.index_greeting::after {
  height: calc(100% - 13.8rem);
  background: var(--clr_white);
  bottom: 4rem;
  left: 0;
  opacity: var(--anime-opacity);
}
.index_greeting .top_tit02 {
  opacity: var(--anime-opacity);
}
.index_greeting .top_tit02::before {
  opacity: var(--anime-opacity);
}
.index_greeting .greeting_content .dr_img {
  opacity: var(--anime-opacity);
}
.index_greeting .greeting_content .dr_img .dr_photo {
  margin: 0 auto;
  max-width: 70%;
}
.index_greeting .greeting_content .dr_img .dr_name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.12rem;
  font-size: 1.5rem;
  color: var(--clr_brown);
}
.index_greeting .greeting_content .dr_img .dr_name .txt_large {
  margin-left: 1rem;
  letter-spacing: 0.16rem;
  font-size: 1.9rem;
}
.index_greeting .greeting_content .dr_img .dr_license .greeting_tit03 {
  color: var(--clr_green);
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
.index_greeting .greeting_content .dr_img .dr_license .greeting_tit03::before, .index_greeting .greeting_content .dr_img .dr_license .greeting_tit03::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  flex-grow: 1;
  background: var(--clr_border);
}
.index_greeting .greeting_content .dr_img .dr_license .lst_ul {
  padding: 0.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--clr_border);
}
.index_greeting .greeting_content .dr_img .dr_license .lst_ul > li {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.index_greeting .greeting_content .dr_message {
  margin-top: 3rem;
  opacity: var(--anime-opacity);
}
.index_greeting .greeting_content .dr_message p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
}
.index_greeting .greeting_content .dr_message p:not(:first-of-type) {
  margin-top: 1.5rem;
}
.index_greeting .greeting_content .dr_message .btn_base {
  text-align: center;
  margin-top: 2rem;
}
.index_greeting.trigger::before {
  animation: fade_up 0.4s ease-out 1s 1 normal forwards;
}
.index_greeting.trigger::after {
  animation: fade 0.4s ease-out 0.2s 1 normal forwards;
}
.index_greeting.trigger .top_tit02 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_greeting.trigger .top_tit02::before {
  animation: fade_up 0.4s ease-out 0.6s 1 normal forwards;
}
.index_greeting.trigger .dr_img {
  animation: fade_up 0.6s ease-out 0.8s 1 normal forwards;
}
.index_greeting.trigger .dr_message {
  animation: fade_up 0.6s ease-out 1s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_greeting {
    padding: 16rem 0 30rem;
    max-width: 200rem;
    margin-inline: auto;
  }
  .index_greeting::before, .index_greeting::after {
    width: 180rem;
    height: calc(100% - 49rem);
  }
  .index_greeting::before {
    right: calc(50% - 100rem);
    top: 10rem;
  }
  .index_greeting::after {
    left: calc(50% - 100rem);
    bottom: 20rem;
  }
  .index_greeting .greeting_content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: 5rem;
    gap: 0 6rem;
  }
  .index_greeting .greeting_content .dr_img {
    width: 39rem;
  }
  .index_greeting .greeting_content .dr_img .dr_photo {
    margin: 0.5rem auto 2rem;
    max-width: 100%;
  }
  .index_greeting .greeting_content .dr_img .dr_name {
    letter-spacing: 0.24rem;
    font-size: 2.4rem;
    margin: 2.1rem 0;
  }
  .index_greeting .greeting_content .dr_img .dr_name .txt_large {
    margin-left: 1.2rem;
    letter-spacing: 0.32rem;
    font-size: 3.2rem;
  }
  .index_greeting .greeting_content .dr_img .dr_license .greeting_tit03 {
    gap: 0 1.5rem;
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .index_greeting .greeting_content .dr_img .dr_license .lst_ul {
    padding: 0.5rem 2rem 2rem;
  }
  .index_greeting .greeting_content .dr_message {
    width: 75rem;
    margin-top: 0rem;
  }
  .index_greeting .greeting_content .dr_message p:not(:first-of-type) {
    margin-top: 3.6rem;
  }
  .index_greeting .greeting_content .dr_message .btn_base {
    margin-top: 5rem;
  }
  .index_greeting.trigger .greeting_content .dr_img {
    animation: fade_left 0.6s ease-out 1s 1 normal forwards;
  }
  .index_greeting.trigger .greeting_content .dr_message {
    animation: fade_right 0.6s ease-out 1s 1 normal forwards;
  }
}

.index_symptom {
  padding: 3rem 0 4rem;
  background: url("../img/index_symptom_bg.webp") center center/220% auto no-repeat, linear-gradient(to bottom, var(--clr_brown_light), var(--clr_brown_light02));
}
.index_symptom .top_tit02 {
  color: var(--clr_white);
  padding-left: 6rem;
  opacity: var(--anime-opacity);
}
.index_symptom .top_tit02::before {
  color: var(--clr_brown_dark);
  opacity: var(--anime-opacity);
}
.index_symptom .top_tit02::after {
  left: 1.5rem;
}
.index_symptom .symptom_chart {
  position: relative;
}
.index_symptom .symptom_chart .img_body {
  width: 60%;
  margin-inline: auto;
  position: relative;
}
.index_symptom .symptom_chart .img_body img {
  opacity: var(--anime-opacity);
}
.index_symptom .symptom_chart .img_body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/index_symptom_line.png") center center/cover no-repeat;
  opacity: var(--anime-opacity);
}
.index_symptom .symptom_chart .symptom_lst {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index_symptom .symptom_chart .symptom_lst .parts {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  opacity: var(--anime-opacity);
}
.index_symptom .symptom_chart .symptom_lst .parts a {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  background: var(--clr_white);
  box-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.16);
  border-radius: 50vh;
  padding: 0.8rem 2.5rem 0.8rem 4rem;
  line-height: 1.4;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.055rem;
  position: relative;
  overflow: hidden;
}
.index_symptom .symptom_chart .symptom_lst .parts a::before {
  color: var(--clr_brown_light);
  font-size: 220%;
  font-weight: normal;
  position: absolute;
  bottom: -0.2rem;
  left: 0.7rem;
  line-height: 1;
}
.index_symptom .symptom_chart .symptom_lst .parts a::after {
  display: block;
  font-family: "fontello";
  content: "\a017";
  color: var(--clr_green);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 50%;
}
.index_symptom .symptom_chart .symptom_lst .parts.-neck {
  top: 3rem;
  left: 0;
}
.index_symptom .symptom_chart .symptom_lst .parts.-neck a::before {
  font-family: "fontello";
  content: "\a008";
}
.index_symptom .symptom_chart .symptom_lst .parts.-shoulder {
  top: 4rem;
  right: 0;
}
.index_symptom .symptom_chart .symptom_lst .parts.-shoulder a::before {
  font-family: "fontello";
  content: "\a009";
}
.index_symptom .symptom_chart .symptom_lst .parts.-back_hips {
  top: 10.8rem;
  left: -1rem;
}
.index_symptom .symptom_chart .symptom_lst .parts.-back_hips a::before {
  font-family: "fontello";
  content: "\a010";
}
.index_symptom .symptom_chart .symptom_lst .parts.-elbow {
  top: 10.5rem;
  right: -1rem;
}
.index_symptom .symptom_chart .symptom_lst .parts.-elbow a::before {
  font-family: "fontello";
  content: "\a011";
}
.index_symptom .symptom_chart .symptom_lst .parts.-crotch {
  top: 16.3rem;
  left: -1rem;
}
.index_symptom .symptom_chart .symptom_lst .parts.-crotch a::before {
  font-family: "fontello";
  content: "\a012";
}
.index_symptom .symptom_chart .symptom_lst .parts.-hand {
  top: 16.2rem;
  right: -1rem;
}
.index_symptom .symptom_chart .symptom_lst .parts.-hand a::before {
  font-family: "fontello";
  content: "\a013";
}
.index_symptom .symptom_chart .symptom_lst .parts.-feet {
  bottom: 4rem;
  left: 0;
}
.index_symptom .symptom_chart .symptom_lst .parts.-feet a::before {
  font-family: "fontello";
  content: "\a014";
}
.index_symptom .symptom_chart .symptom_lst .parts.-knees {
  bottom: 5rem;
  right: 0;
}
.index_symptom .symptom_chart .symptom_lst .parts.-knees a::before {
  font-family: "fontello";
  content: "\a015";
}
.index_symptom.trigger .top_tit02 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_symptom.trigger .top_tit02::before {
  animation: fade_left 0.6s ease-out 0.6s 1 normal forwards;
}
.index_symptom.trigger .symptom_chart .img_body img {
  animation: fade 0.6s ease-out 0.6s 1 normal forwards;
}
.index_symptom.trigger .symptom_chart .img_body::after {
  animation: fade 0.4s ease-out 2.2s 1 normal forwards;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li {
  animation: fade_up 0.5s ease-out 1s 1 normal forwards;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(1) {
  animation-delay: 1.08s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(2) {
  animation-delay: 1.16s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(3) {
  animation-delay: 1.24s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(4) {
  animation-delay: 1.32s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(5) {
  animation-delay: 1.4s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(6) {
  animation-delay: 1.48s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(7) {
  animation-delay: 1.56s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(8) {
  animation-delay: 1.64s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(9) {
  animation-delay: 1.72s;
}
.index_symptom.trigger .symptom_chart .symptom_lst > li:nth-child(10) {
  animation-delay: 1.8s;
}
@media screen and (min-width: 48em), print {
  .index_symptom {
    padding: 2.8rem 0 10rem;
    max-width: 200rem;
    margin-inline: auto;
    background: url("../img/index_symptom_bg.webp") center center/200rem auto no-repeat, linear-gradient(to bottom, var(--clr_brown_light), var(--clr_brown_light02));
    overflow: hidden;
  }
  .index_symptom .top_tit02 {
    padding-left: 8rem;
    margin-bottom: 3.5rem;
  }
  .index_symptom .top_tit02::before {
    top: 1.2rem;
    right: -11rem;
  }
  .index_symptom .top_tit02::after {
    left: 0;
  }
  .index_symptom .symptom_chart .img_body {
    width: 42rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts a {
    padding: 2.3rem 4rem 2.5rem 9rem;
    font-size: 2.2rem;
    min-width: 32rem;
    border: 1px solid transparent;
  }
  .index_symptom .symptom_chart .symptom_lst .parts a::before {
    font-size: 310%;
    left: 1.2rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts a::after {
    right: 1.5rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts a:is(:hover, :focus-visible) {
    color: var(--clr_green);
    border-color: var(--clr_green);
  }
  .index_symptom .symptom_chart .symptom_lst .parts a:is(:hover, :focus-visible)::before {
    color: var(--clr_green);
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-neck {
    top: 6rem;
    left: 11rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-shoulder {
    top: 8rem;
    right: 11rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-back_hips {
    top: 20.2rem;
    left: 7rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-elbow {
    top: 22.3rem;
    right: 7rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-crotch {
    top: 34.2rem;
    left: 7rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-hand {
    top: 36rem;
    right: 7rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-feet {
    bottom: 8rem;
    left: 11rem;
  }
  .index_symptom .symptom_chart .symptom_lst .parts.-knees {
    bottom: 10rem;
    right: 11rem;
  }
}

.index_feature {
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.index_feature::before, .index_feature::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  height: calc(100% - 9.6rem);
  width: calc(100% - 1.5rem);
  opacity: var(--anime-opacity);
}
.index_feature::before {
  background: var(--clr_gray);
  top: 0;
  left: 0;
}
.index_feature::after {
  background: var(--clr_white);
  bottom: 0;
  right: 0;
}
.index_feature .top_tit02 {
  opacity: var(--anime-opacity);
}
.index_feature .top_tit02::before {
  opacity: var(--anime-opacity);
}
.index_feature .feature_txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
  opacity: var(--anime-opacity);
}
.index_feature .feature_txt p {
  margin: 0;
}
.index_feature .feature_lst {
  display: flex;
  flex-direction: column;
  counter-reset: number 0;
  gap: 3rem;
  margin-top: 3rem;
}
.index_feature .feature_lst > li {
  position: relative;
  padding-top: 12rem;
}
.index_feature .feature_lst > li > section .feature_tit03 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
  counter-increment: number 1;
  letter-spacing: 0.05rem;
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: var(--anime-opacity);
}
.index_feature .feature_lst > li > section .feature_tit03::before {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  content: "Feature." counter(number, decimal-leading-zero);
  color: var(--clr_brown_light);
  letter-spacing: 0.1rem;
  font-size: 1.7rem;
  opacity: var(--anime-opacity);
}
.index_feature .feature_lst > li > section .feature_tit03 .underline, .index_feature .feature_lst > li > section .feature_tit03 .sp_underline {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.index_feature .feature_lst > li > section .feature_tit03 .underline::after, .index_feature .feature_lst > li > section .feature_tit03 .sp_underline::after {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .index_feature .feature_lst > li > section .feature_tit03 .underline::after, .index_feature .feature_lst > li > section .feature_tit03 .sp_underline::after {
    bottom: 0.7rem;
    height: 3px;
  }
}
.index_feature .feature_lst > li > section .feature_content {
  opacity: var(--anime-opacity);
}
.index_feature .feature_lst > li > section .feature_content p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
  font-size: 1.5rem;
}
.index_feature .feature_lst > li > section .feature_content p:not(:first-of-type) {
  margin-top: 1em;
}
.index_feature .feature_lst > li::before {
  content: "";
  display: block;
  width: 65%;
  height: 14rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: var(--anime-opacity);
}
.index_feature .feature_lst > li:nth-child(1)::before {
  background-image: url("../img/index_feature01.webp");
}
.index_feature .feature_lst > li:nth-child(2)::before {
  background-image: url("../img/index_feature02.webp");
}
.index_feature .feature_lst > li:nth-child(3)::before {
  background-image: url("../img/index_feature03.webp");
}
.index_feature .feature_lst > li:nth-child(4)::before {
  background-image: url("../img/index_feature04.webp");
}
.index_feature .feature_lst > li:nth-child(5)::before {
  background-image: url("../img/index_feature05.webp");
}
.index_feature .feature_lst > li:nth-child(6)::before {
  background-image: url("../img/index_feature06.webp");
}
.index_feature .feature_lst > li:nth-child(7)::before {
  background-image: url("../img/index_feature07.webp");
}
.index_feature .feature_lst > li:nth-child(8)::before {
  background-image: url("../img/index_feature08.webp");
}
.index_feature .feature_lst > li:nth-child(9)::before {
  background-image: url("../img/index_feature09.webp");
}
.index_feature .feature_lst > li.trigger::before {
  animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
}
.index_feature .feature_lst > li.trigger .feature_tit03 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_feature .feature_lst > li.trigger .feature_tit03::before {
  animation: fade_up 0.4s ease-out 0.3s 1 normal forwards;
}
.index_feature .feature_lst > li.trigger .feature_content {
  animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
}
.index_feature.trigger .top_tit02 {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_feature.trigger .top_tit02::before {
  animation: fade_up 0.4s ease-out 0.6s 1 normal forwards;
}
.index_feature.trigger::before {
  animation: fade_up 0.4s ease-out 0.8s 1 normal forwards;
}
.index_feature.trigger::after {
  animation: fade 0.4s ease-out 0.2s 1 normal forwards;
}
.index_feature.trigger .feature_txt {
  animation: fade_up 0.6s ease-out 0.8s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_feature {
    padding: 26rem 0 10rem;
    max-width: 200rem;
    margin-inline: auto;
  }
  .index_feature::before, .index_feature::after {
    height: calc(100% - 20rem);
    width: 180rem;
  }
  .index_feature::before {
    left: calc(50% - 100rem);
    top: 20rem;
    height: calc(100% - 40rem);
  }
  .index_feature::after {
    right: calc(50% - 100rem);
    height: calc(100% - 39rem);
  }
  .index_feature .feature_txt {
    font-size: 2.2rem;
    text-align: center;
    margin: 6rem auto;
  }
  .index_feature .feature_lst {
    gap: 5.8rem;
  }
  .index_feature .feature_lst > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40rem;
    gap: 0 6rem;
    margin: 0;
    padding: 0;
  }
  .index_feature .feature_lst > li > section {
    min-height: 29.7rem;
  }
  .index_feature .feature_lst > li > section .feature_tit03 {
    font-size: 4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .index_feature .feature_lst > li > section .feature_tit03::before {
    font-size: 3.2rem;
    letter-spacing: 0.16rem;
    margin-bottom: 1rem;
  }
  .index_feature .feature_lst > li > section .feature_tit03 .sp_underline::after {
    content: none !important;
  }
  .index_feature .feature_lst > li > section .feature_tit03 .underline, .index_feature .feature_lst > li > section .feature_tit03 .pc_underline {
    display: block;
    position: relative;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .index_feature .feature_lst > li > section .feature_tit03 .underline::after, .index_feature .feature_lst > li > section .feature_tit03 .pc_underline::after {
    width: 100%;
    height: 2px;
    content: "";
    display: block;
    background: linear-gradient(to right, var(--clr_yellow), var(--clr_green));
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  .index_feature .feature_lst > li > section .feature_tit03 .underline::after, .index_feature .feature_lst > li > section .feature_tit03 .pc_underline::after {
    bottom: 0.7rem;
    height: 3px;
  }
}
@media screen and (min-width: 48em), print {
  .index_feature .feature_lst > li > section .feature_tit03 .underline::after, .index_feature .feature_lst > li > section .feature_tit03 .pc_underline::after {
    bottom: 0.3rem;
  }
  .index_feature .feature_lst > li > section .feature_content p {
    font-size: 2.2rem;
  }
  .index_feature .feature_lst > li::before {
    width: 40rem;
    height: 40rem;
    position: static;
    flex-shrink: 0;
  }
  .index_feature .feature_lst > li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .index_feature .feature_lst > li:nth-of-type(even).trigger::before {
    animation: fade_left 0.6s ease-out 0.6s 1 normal forwards;
  }
  .index_feature .feature_lst > li:nth-of-type(odd).trigger::before {
    animation: fade_right 0.6s ease-out 0.6s 1 normal forwards;
  }
}

.partner_hospitals {
  background: var(--clr_gray_light);
  padding: 4rem 0;
  opacity: var(--anime-opacity);
}
.partner_hospitals .partner_tit {
  text-align: center;
  color: var(--clr_green);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
}
.partner_hospitals .partner_tit::before, .partner_hospitals .partner_tit::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--clr_border);
  flex-grow: 1;
}
.partner_hospitals .partner_lst {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--clr_border);
}
.partner_hospitals .partner_lst > li {
  font-size: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_brown);
}
.partner_hospitals .partner_lst > li a::before {
  display: inline-block;
  font-family: "fontello";
  content: "\a016";
  color: var(--clr_green);
  margin-right: 0.8rem;
  font-weight: normal;
}
.partner_hospitals.trigger {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .partner_hospitals {
    padding: 13rem 0;
  }
  .partner_hospitals .partner_tit {
    font-size: 3.2rem;
    letter-spacing: 0.32rem;
  }
  .partner_hospitals .partner_lst {
    flex-direction: row;
    padding: 3.5rem 4rem 5rem;
    gap: 1rem 3rem;
  }
  .partner_hospitals .partner_lst > li {
    width: calc((100% - 6rem) / 3);
    font-size: 2.2rem;
    letter-spacing: 0.11rem;
  }
  .partner_hospitals .partner_lst > li a:is(:hover, :focus-visible) {
    color: var(--clr_green);
  }
}

body:not(.index) .main {
  margin: 0 1rem 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;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 1200px;
    margin: 0 auto 8rem;
  }
}

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

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.8rem;
    width: 1200px;
    margin: 0 auto 6.5rem;
    white-space: inherit;
    overflow-x: inherit;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 1.2rem;
  }
  .breadcrumb li a:hover {
    text-decoration: underline !important;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
  line-height: 1;
}
.gallery .gallery_slider div {
  position: relative;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: var(--clr_white);
  min-height: 3rem;
  line-height: 1.3;
  display: grid;
  place-items: center;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(var(--rgb_green), 0.5);
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\a004";
  color: var(--clr_green);
  font-size: 3rem;
  transform: rotate(270deg);
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  transform: rotate(90deg);
}
.gallery .gallery_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0.8rem auto;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_green);
}
.gallery .gallery_slider .slick-dots li button:hover, .gallery .gallery_slider .slick-dots li button:focus {
  opacity: 0.8;
}
.gallery .gallery_slider .slick-dots li.slick-active button {
  opacity: 0.75;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid var(--clr_green);
}
.gallery.few .slick-track {
  transform: translate3d(0px, 0px, 0px) !important;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
    line-height: 0;
  }
  .gallery .gallery_slider {
    font-size: 2.4rem;
  }
  .gallery .gallery_slider div .cap {
    min-height: 6rem;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 5rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 5rem;
    margin: 1.4rem auto;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_green);
  }
  .gallery.few .gallery_thum .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
.gallery_lst {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem;
}
.gallery_lst li {
  text-align: center;
}
.gallery_lst li img {
  margin: 0 auto 0.6rem;
  max-width: 85%;
}
.gallery_lst li .device_tit {
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 48em), print {
  .gallery_lst {
    flex-direction: row;
    gap: 4rem 2rem;
  }
  .gallery_lst > li {
    width: calc(50% - 1rem);
  }
  .gallery_lst > li .device_tit {
    font-size: 2.4rem;
  }
}

.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .tbl_time tr th[scope=col] {
    padding: 1.2rem 0;
  }
  .access .main .tbl_time tr td {
    padding: 3rem 0;
  }
  .access .main .gmap {
    height: 45rem;
  }
}/*# sourceMappingURL=style.css.map */