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

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

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

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

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

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

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

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

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

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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: #333;
  --rgb_txt: 51, 51, 51;
  --clr_border: #ccc;
  --rgb_border: 204, 204, 204;
  --clr_shadow: #000;
  --rgb_shadow: 0, 0, 0;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_blue: #91CFE2;
  --rgb_blue: 145, 207, 226;
  --clr_blue_light: #BCDCE6;
  --rgb_blue_light: 188, 220, 230;
  --clr_blue_light02: #F5FBFC;
  --rgb_blue_light02: 245, 251, 252;
  --clr_blue_light03: #EFF8FA;
  --rgb_blue_light03: 239, 248, 250;
  --clr_blue_light04: #DFF1F6;
  --rgb_blue_light04: 223, 241, 246;
  --clr_blue_dark: #8AC2D4;
  --rgb_blue_dark: 138, 194, 212;
  --clr_blue_dark02: #64B3DF;
  --rgb_blue_dark02: 100, 179, 223;
  --clr_blue_dark03: #B0DCEA;
  --rgb_blue_dark03: 176, 220, 234;
  --clr_pink: #D1A49D;
  --rgb_pink: 209, 164, 157;
  --clr_pink_light: #F8F2F1;
  --rgb_pink_light: 248, 242, 241;
  --clr_pink_light02: #F1E5E3;
  --rgb_pink_light02: 241, 229, 227;
  --clr_brown: #866100;
  --rgb_brown: 134, 97, 0;
  --clr_brown_light: #B9A46D;
  --rgb_brown_light: 185, 164, 109;
  --clr_brown_light02: #AB914D;
  --rgb_brown_light02: 171, 145, 77;
  --clr_beige: #F1EFEC;
  --rgb_beige: 241, 239, 236;
  --clr_gray: #898989;
  --rgb_gray: 137, 137, 137;
  --clr_yellow: #FFF664;
  --rgb_yellow: 255, 246, 100;
  --clr_red: #e64b4b;
  --rgb_red: 230, 75, 75;
  --clr_LINE: #00B900;
  --rgb_LINE: 0, 185, 0;
  --clr_Instagram: #F7477D;
  --rgb_Instagram: 247, 71, 125;
  --anime-opacity: 1;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

@media screen and (min-width: 48em), print {
  .pc-txt_c {
    text-align: center !important;
  }
  .pc-txt_l {
    text-align: left !important;
  }
  .pc-txt_r {
    text-align: right !important;
  }
}
.bold {
  font-weight: 700;
}

.txt_large {
  font-size: 105%;
}
@media screen and (min-width: 48em), print {
  .txt_large {
    font-size: 110%;
  }
}

.txt_small {
  font-size: 80%;
}

.txt_brown {
  color: var(--clr_brown);
}

.txt_red {
  color: var(--clr_red);
}

.line_mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, var(--clr_yellow))) repeat scroll 0 -0.2em;
  background: linear-gradient(transparent 75%, var(--clr_yellow) 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;
  }
}
.bnr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.bnr a {
  display: block;
}
.bnr a img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bnr a:hover img {
  opacity: 0.9;
  -webkit-filter: brightness(105%);
          filter: brightness(105%);
}

.img_flex .img_content {
  width: 80%;
  margin: 1rem auto;
}
@media screen and (min-width: 48em), print {
  .img_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .img_flex .img_content {
    width: 40%;
    margin: 0;
  }
  .img_flex .txt_content {
    width: calc(60% - 2rem);
  }
  .img_flex.-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .img_flex.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .img_flex.-reverse .img_content img {
    margin: 0 0 0 auto;
  }
}

.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-size: 95%;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.8rem;
}
.tbl_time caption .cap_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.7rem 0;
  line-height: 1.8;
}
.tbl_time caption .cap_flex .cap_tit {
  width: 5em;
  text-align: center;
  margin-right: 0.5rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  background: var(--clr_brown);
  color: var(--clr_white);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.tbl_time caption .cap_flex .cap_content {
  width: calc(100% - 5.5em);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  background: var(--clr_brown);
  color: var(--clr_white);
  padding: 0.6rem 0.4rem;
  text-align: center;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_brown);
  background: var(--clr_white);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.2rem 0.4rem;
  background: var(--clr_white);
  border-bottom: 1px solid var(--clr_brown);
  color: var(--clr_brown);
  line-height: 1;
  font-size: 85%;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 100%;
  }
  .tbl_time caption {
    margin-top: 1.5rem;
    letter-spacing: 0.05rem;
  }
  .tbl_time caption .cap_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.7rem 0;
    line-height: 1.7;
  }
  .tbl_time caption .cap_flex .cap_tit {
    width: 9rem;
    text-align: center;
    margin-right: 0;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    background: var(--clr_brown);
    color: var(--clr_white);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .tbl_time caption .cap_flex .cap_content {
    width: calc(100% - 10.5rem);
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 16%;
  }
  .tbl_time tr td {
    padding: 1.7rem 0;
    font-size: 100%;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  font-size: 1.8rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  background: url(../img/logo_mark.webp) bottom -3rem right -2rem/auto 100% no-repeat, var(--clr_blue_light03);
  color: var(--clr_txt);
  font-weight: 400;
  line-height: 1.2;
  min-height: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tit_02 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  font-weight: 400;
  color: var(--clr_txt);
}
.tit_02::after {
  content: "";
  width: 1.5em;
  height: 2px;
  border-radius: 50vh;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
  border-bottom: 2px solid var(--clr_brown);
}

.tit_03 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 400;
  color: var(--clr_txt);
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--clr_blue);
  background: var(--clr_blue_light02);
  border-left-width: 3px;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  padding: 0.5rem 1.4rem 0.7rem;
  border-bottom: 1px solid var(--clr_border);
  border-left: 3px solid var(--clr_pink);
}

.tit_05 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  padding-left: 2.8rem;
  position: relative;
}
.tit_05::before, .tit_05::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
}
.tit_05::before {
  border: 1px solid var(--clr_blue);
  left: 0;
  top: 0;
  width: 1.1em;
  height: 1.1em;
}
.tit_05::after {
  background: var(--clr_blue);
  left: 0.7rem;
  top: 0.7rem;
  width: 0.85em;
  height: 0.85em;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  padding-left: 1.4rem;
  position: relative;
}
.tit_06::before {
  position: absolute;
  left: 0;
  top: 0.9rem;
  content: "";
  display: block;
  background: var(--clr_blue);
  border-radius: 50vh;
  width: 0.8rem;
  height: 2px;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.6rem;
    min-height: 20rem;
    background: url(../img/logo_mark.webp) bottom -7.6rem right calc(50% - 50rem)/20rem auto no-repeat, var(--clr_blue_light03);
  }
  .tit_01 span {
    width: calc(1200px - 10rem);
    margin: 2rem auto;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin-bottom: 6.5rem;
  }
  .tit_02::after {
    width: 48px;
    bottom: -15px;
  }
  .tit_03 {
    font-size: 3rem;
    padding: 1.2rem 2rem;
    border-left-width: 4px;
    margin-bottom: 3rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    padding: 0.5rem 2rem 1.3rem;
    margin-bottom: 3rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-left: 4rem;
  }
  .tit_05::before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .tit_05::after {
    width: 1.6rem;
    height: 1.6rem;
    top: 1.1rem;
    left: 1rem;
  }
  .tit_06 {
    font-size: 1.8rem;
    padding-left: 2.5rem;
  }
  .tit_06::before {
    width: 13px;
    height: 3px;
  }
}
.lst {
  line-height: 1.4;
}
.lst > li:not(:last-child) {
  margin-bottom: 1rem;
}

.lst_ul {
  line-height: 1.4;
}
.lst_ul > li {
  padding-left: 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_pink);
  position: absolute;
  left: 0;
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
}
.lst_ul.-check > li::before {
  font-family: "fontello";
  content: "\e805";
  font-size: 110%;
  left: 0.15rem;
  color: var(--clr_brown);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.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) ".";
  color: var(--clr_blue_dark02);
  width: 1.3em;
  height: 1.3em;
  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 {
  background: var(--clr_blue_light04);
  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 {
  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_pink_light02);
  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.-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-weight: 700;
}
.lst_dl02 dd {
  margin-bottom: 1rem;
}
.lst_dl02 dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl02 dt {
    width: 8.5em;
  }
  .lst_dl02 dd {
    width: calc(100% - 8.5em);
    padding-left: 1rem;
  }
}

.lst_anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc > li {
  width: 100%;
}
.lst_anc > li a {
  width: 100%;
  min-width: auto;
  display: block;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 95%;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 1rem 2rem;
  }
  .lst_anc > li {
    width: calc((100% - 6rem) / 4);
  }
}

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

.flow_ol {
  counter-reset: number 0;
}
.flow_ol > li {
  border: 2px solid var(--clr_blue);
  padding: 1.5rem;
  counter-increment: number 1;
  position: relative;
}
.flow_ol > li:not(:last-child) {
  margin: 0 0 6rem;
}
.flow_ol > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 1.8rem solid var(--clr_blue_dark03);
  border-right: 2.5rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2.5rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .flow_ol > li:not(:last-child)::after {
    bottom: -7.5rem;
    border-top: 3.5rem solid var(--clr_blue_dark03);
    border-right: 4.5rem solid transparent;
    border-left: 4.5rem solid transparent;
  }
}
.flow_ol > li .flow_tit {
  display: block;
  font-size: 115%;
  padding-left: 1.2em;
}
.flow_ol > li .flow_tit:not(.only) {
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--clr_border);
}
.flow_ol > li .flow_tit::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--clr_blue_dark02);
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    padding: 2rem 3rem;
  }
  .flow_ol > li .flow_tit {
    font-size: 2rem;
  }
  .flow_ol > li .flow_tit:not(.only) {
    margin-bottom: 1.5rem;
  }
  .flow_ol > li .flow_tit::before {
    top: 2rem;
    left: 3rem;
  }
}

.flex3, .flex4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.flex1 > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.flex1 > li:not(:last-child) {
  margin-bottom: inherit;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        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 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            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 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 2.5rem;
  }
}
.tel {
  display: inline-block;
  font-size: 120%;
  color: var(--clr_brown);
  border: 1px solid var(--clr_brown);
  padding: 0.75rem 1.6rem;
  background: var(--clr_white);
  text-align: center;
}
.tel::before {
  margin-right: 0.7rem;
  font-family: "fontello";
  content: "\e80b";
}
@media screen and (min-width: 48em), print {
  .tel {
    padding: 0.75rem 1.6rem;
    font-size: 2.4rem;
    letter-spacing: 0.06rem;
  }
  .tel::before {
    margin-right: 1.2rem;
  }
}

.rsv {
  display: inline-block;
  background: var(--clr_brown);
  color: var(--clr_white);
  padding: 1rem 2rem;
}
.rsv::before {
  margin-right: 0.7rem;
  font-family: "fontello";
  content: "\e808";
}
@media screen and (min-width: 48em), print {
  .rsv {
    padding: 1.44rem 3.5rem;
  }
  .rsv:hover {
    opacity: 1;
    background: var(--clr_brown_light);
  }
}

.tel_rsv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.tel_rsv > li {
  width: 60%;
}
.tel_rsv > li .tel, .tel_rsv > li .rsv {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .tel_rsv {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .tel_rsv > li {
    width: auto;
  }
}

.box {
  padding: 1.5rem;
  background: var(--clr_blue_light03);
}
.box .box_tit {
  font-size: 110%;
  margin: 0 auto 1.5rem;
}
.box.-color02 {
  background: var(--clr_pink_light);
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 2rem 3rem;
  }
}

.btn {
  color: var(--clr_white);
  background: var(--clr_blue_dark);
  padding: 0.7rem 3.2rem 0.7rem 2rem;
  text-align: center;
  position: relative;
  min-height: 5rem;
  min-width: 60%;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.25;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0.3rem;
  top: 0;
  background: var(--clr_white);
}
.btn::after {
  font-family: "fontello";
  content: "\32";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 1rem 5rem 1rem 5rem;
    min-height: 7rem;
    min-width: 30rem;
  }
  .btn::before {
    left: 0.5rem;
  }
  .btn::after {
    right: 2rem;
  }
  .btn:hover {
    opacity: 1;
    background: var(--clr_blue_light);
  }
}

.lnk {
  display: inline-block;
  text-decoration: none !important;
  letter-spacing: 0.05rem;
  cursor: pointer;
  color: var(--clr_blue_dark);
}
.lnk::before {
  font-family: "fontello";
  content: "\32";
  padding-right: 0.2rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::before {
    padding-right: 0.4rem;
  }
}
.lnk::after {
  padding-left: 0.3rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::after {
    padding-left: 0.6rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.lnk:hover {
  color: var(--clr_brown);
  opacity: 1;
}
.lnk.scr::before {
  font-family: "fontello";
  content: "\e803";
}
.lnk.out::after {
  font-family: "fontello";
  content: "\f08e";
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}

.btn_sns {
  display: inline-block;
  color: var(--clr_white);
  padding: 1.15rem 0.5rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  min-width: calc(50% - 0.3rem);
}
.btn_sns::before {
  margin-right: 0.4rem;
  font-size: 120%;
  display: inline-block;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.btn_sns.-Instagram {
  background: var(--clr_Instagram);
  font-size: 1.2rem;
}
.btn_sns.-Instagram::before {
  font-family: "fontello";
  content: "\e80c";
}
.btn_sns.-LINE {
  background: var(--clr_LINE);
}
.btn_sns.-LINE::before {
  font-family: "fontello";
  content: "\e80a";
}
@media screen and (min-width: 48em), print {
  .btn_sns {
    font-size: 1.8rem;
    line-height: 1.8;
    min-width: 25rem;
  }
  .btn_sns::before {
    margin-right: 0.8rem;
  }
  .btn_sns.-Instagram {
    font-size: 1.8rem;
  }
  .btn_sns:hover {
    opacity: 0.7;
  }
}

.sns_lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.sns_lst > li {
  width: calc(50% - 0.3rem);
}
.sns_lst > li a {
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .sns_lst {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.2rem;
  }
  .sns_lst > li {
    width: 25rem;
  }
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.tbl caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl tr th {
  text-align: left;
  padding: 1rem;
  font-weight: normal;
  border: 1px solid var(--clr_border);
  background: var(--clr_blue_light03);
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--clr_border);
}
.tbl tr .nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl thead tr th {
  background: var(--clr_blue_dark);
  color: var(--clr_white);
}
.tbl.-price tr th {
  background: var(--clr_pink_light);
}
.tbl.-price tr td:last-child {
  text-align: right;
  width: 28%;
}
.tbl.-price thead tr th {
  background: var(--clr_pink);
}

@media screen and (min-width: 48em), print {
  .tbl tr th {
    padding: 1rem 2.5rem;
  }
  .tbl tr td {
    padding: 1rem 2.5rem;
  }
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: 3.125vw;
}

body {
  background: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: url("../img/logo_mark.webp") bottom -4rem right -2rem/50% auto no-repeat, rgba(var(--rgb_beige), 0.9);
  backdrop-filter: blur(0.6rem);
  position: fixed;
  top: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  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.3rem;
  line-height: 1.6;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .main {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .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: relative;
  z-index: 101;
  background: var(--clr_white);
}
.header .wrap {
  padding: 0.5rem 0;
}
.header .wrap .logo {
  width: 100%;
  height: 4.6rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat center center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto;
    padding: 1.8rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .wrap .logo {
    width: 52rem;
    height: 6.5rem;
  }
  .header .wrap .headR {
    width: calc(100% - 52rem - 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header .wrap .headR .tel {
    width: 24rem;
    font-size: 2.4rem;
    padding: 0.6rem 1rem;
  }
}
#sp_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 8px 7px rgba(var(--rgb_gray), 0.1);
          box-shadow: 0 8px 7px rgba(var(--rgb_gray), 0.1);
}
#sp_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
#sp_nav > ul > li {
  width: 20%;
  text-align: center;
  font-size: 1rem;
  line-height: 1.15;
  background: var(--clr_blue);
}
#sp_nav > ul > li:nth-of-type(even) {
  background: var(--clr_pink);
}
#sp_nav > ul > li > a {
  display: block;
  height: 100%;
  color: var(--clr_white);
  padding-bottom: 0.3rem;
}
#sp_nav > ul > li > a::before {
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-family: "fontello";
  content: "\f1c1";
  height: 3rem;
  line-height: 1;
  font-size: 1.8rem;
}
#sp_nav > ul > li > a.icon_home::before {
  font-family: "fontello";
  content: "\a800";
}
#sp_nav > ul > li > a.icon_tel::before {
  font-family: "fontello";
  content: "\e80b";
}
#sp_nav > ul > li > a.icon_rsv::before {
  font-family: "fontello";
  content: "\e808";
}
#sp_nav > ul > li > a.icon_acs::before {
  font-family: "fontello";
  content: "\e809";
}
#sp_nav > ul > li #nav #sp_menu {
  width: 100%;
  background: var(--clr_blue);
  color: var(--clr_white);
  text-align: center;
  padding: 0 0 0.2rem;
  position: relative;
}
#sp_nav > ul > li #nav #sp_menu .btn-line {
  display: block;
  position: absolute;
  top: 0.7rem;
  left: 0;
  right: 0;
  width: 2.6rem;
  height: 3px;
  border-radius: 50vh;
  background-color: var(--clr_white);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 auto;
}
#sp_nav > ul > li #nav #sp_menu .btn-line:nth-of-type(2) {
  top: 1.5rem;
}
#sp_nav > ul > li #nav #sp_menu .btn-line:nth-of-type(3) {
  top: 2.3rem;
}
#sp_nav > ul > li #nav #sp_menu.-active .btn-line:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.6s forwards;
          animation: menu-bar01 0.6s forwards;
}
#sp_nav > ul > li #nav #sp_menu.-active .btn-line:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#sp_nav > ul > li #nav #sp_menu.-active .btn-line:nth-of-type(3) {
  -webkit-animation: menu-bar02 0.6s forwards;
          animation: menu-bar02 0.6s forwards;
}
#sp_nav > ul > li #nav #sp_menu.-close .btn-line:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.6s forwards;
          animation: active-menu-bar01 0.6s forwards;
}
#sp_nav > ul > li #nav #sp_menu.-close .btn-line:nth-of-type(2) {
  opacity: 0;
}
#sp_nav > ul > li #nav #sp_menu.-close .btn-line:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.6s forwards;
          animation: active-menu-bar03 0.6s forwards;
}
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(0.8rem) rotate(45deg);
            transform: translateY(0.8rem) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0.8rem) rotate(0);
            transform: translateY(0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(0.8rem) rotate(45deg);
            transform: translateY(0.8rem) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0.8rem) rotate(0);
            transform: translateY(0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
            transform: translateY(-0.8rem) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-0.8rem) rotate(0);
            transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
            transform: translateY(-0.8rem) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-0.8rem) rotate(0);
            transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0.8rem) rotate(0);
            transform: translateY(0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.8rem) rotate(45deg);
            transform: translateY(0.8rem) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(0.8rem) rotate(0);
            transform: translateY(0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0.8rem) rotate(45deg);
            transform: translateY(0.8rem) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-0.8rem) rotate(0);
            transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
            transform: translateY(-0.8rem) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-0.8rem) rotate(0);
            transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
            transform: translateY(-0.8rem) rotate(-45deg);
  }
}
#sp_nav > ul > li #nav #sp_menu::before {
  content: "";
  display: block;
  height: 3rem;
}
#sp_nav > ul > li #nav #sp_menu::after {
  content: "MENU";
}
#sp_nav > ul > li #nav #sp_menu.-close::after {
  content: "CLOSE";
}
#sp_nav > ul > li #nav #sp_menu span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #sp_nav {
    display: none;
  }
  #sp_nav > ul > li:not(:last-of-type) {
    display: none;
  }
  #sp_nav > ul > li:has(#nav) {
    width: 100%;
  }
  #sp_nav > ul > li #sp_menu {
    display: none;
  }
}

.gnav_subnav {
  width: 100%;
  max-height: calc(100svh - 11rem);
  overflow-y: auto;
  background: var(--clr_white);
  padding: 1rem;
  position: absolute;
  top: 4.4rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}
.gnav_subnav.-active {
  z-index: -1;
  -webkit-animation: active-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
          animation: active-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
}
.gnav_subnav.-close {
  -webkit-animation: close-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
          animation: close-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
}
@-webkit-keyframes active-menu {
  0% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    top: 4.4rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@keyframes active-menu {
  0% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    top: 4.4rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@-webkit-keyframes close-menu {
  0% {
    top: 4.4rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes close-menu {
  0% {
    top: 4.4rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.gnav_subnav .gnav > li {
  position: relative;
}
.gnav_subnav .gnav > li a, .gnav_subnav .gnav > li .sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0.5rem;
  font-size: 1.3rem;
}
.gnav_subnav .gnav > li a.current, .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_brown);
}
.gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\f004";
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 80%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::after {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: var(--clr_brown);
}
.gnav_subnav .gnav > li .subbox .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 1.5rem;
}
.gnav_subnav .gnav > li .subbox .subnav li {
  width: 50%;
}
.gnav_subnav .gnav > li .subbox .subnav li.subnav_tit {
  width: 100%;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid var(--clr_brown_light02);
}
.gnav_subnav .gnav > li .subbox .subnav li.subnav_tit a {
  font-size: 1.45rem;
}
.gnav_subnav .gnav > li .subbox .subnav li.subnav_tit:not(:first-of-type) {
  margin-top: 0.5rem;
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  font-size: 1.2rem;
  display: block;
  padding: 1rem 0.5rem 1rem 1.1rem;
  color: var(--clr_white);
  position: relative;
}
.gnav_subnav .gnav > li .subbox .subnav li a::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0.9rem;
}
.gnav_subnav .gnav > li .subbox.-large > .subnav > li:not(.subnav_tit) a {
  padding-left: 2.1rem;
}
.gnav_subnav .gnav > li .subbox.-large > .subnav > li:not(.subnav_tit) a::before {
  left: 1rem;
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    opacity: 1;
    visibility: visible;
    overflow-y: inherit;
    padding: 0;
    position: static;
    background: none;
    margin-right: 3rem;
    z-index: 0;
  }
  .gnav_subnav .gnav {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0 3rem;
  }
  .gnav_subnav .gnav li {
    position: relative;
  }
  .gnav_subnav .gnav li::after {
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--clr_brown);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .gnav_subnav .gnav li:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .gnav_subnav .gnav li a, .gnav_subnav .gnav li .sub {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    cursor: pointer;
    letter-spacing: 0.02rem;
    position: relative;
  }
  .gnav_subnav .gnav li a.current, .gnav_subnav .gnav li .sub.current {
    position: relative;
  }
  .gnav_subnav .gnav li a.current::before, .gnav_subnav .gnav li .sub.current::before {
    position: absolute;
    top: auto;
    bottom: -0.75rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--clr_brown);
  }
  .gnav_subnav .gnav li a:hover, .gnav_subnav .gnav li .sub:hover {
    opacity: 1;
  }
  .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 6.4rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 24rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav {
    padding: 2rem 3rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav li {
    width: 100%;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a {
    text-align: left;
    font-size: 1.8rem;
    padding-left: 1.8rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    opacity: 0.8;
  }
  .gnav_subnav .gnav li .subbox.-large {
    width: 67.4rem;
    left: auto;
    right: 0;
    -webkit-transform: inherit;
            transform: inherit;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav {
    padding: 3rem 4rem 8rem;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav > li {
    width: 33.3333333333%;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav > li.subnav_tit {
    width: 100%;
    margin-bottom: 1rem;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav > li.subnav_tit:not(:first-of-type) {
    margin-top: 1.7rem;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav > li.subnav_tit a {
    font-size: 2.4rem;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav > li:not(.subnav_tit) a {
    padding-left: 3.5rem;
  }
  .gnav_subnav .gnav li .subbox.-large > .subnav > li:not(.subnav_tit) a::before {
    left: 2rem;
  }
}

#scroll_nav {
  display: none;
  position: fixed;
  top: 0rem;
  z-index: 100;
  width: 100%;
  background: rgba(var(--rgb_white), 0.8);
  backdrop-filter: blur(0.6rem);
  -webkit-box-shadow: 0px 10px 13px -10px rgba(var(--rgb_txt), 0.2);
          box-shadow: 0px 10px 13px -10px rgba(var(--rgb_txt), 0.2);
}
#scroll_nav .gnav_subnav {
  padding: 1rem 0 1.5rem;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#scroll_nav .gnav_subnav .gnav {
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#scroll_nav .gnav_subnav .gnav > li .subbox {
  top: 4.2rem;
}

.pc_rsv {
  position: fixed;
  width: 6rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 20rem;
  right: 0;
  z-index: 100;
}
.pc_rsv .rsv {
  font-size: 2.4rem;
  padding: 2.5rem;
  letter-spacing: 0.15rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  border-right: none;
}
.pc_rsv .rsv::before {
  margin: 0 0 1.6rem;
}

.overview {
  padding: 3rem 0 0;
  font-size: 1.3rem;
  line-height: 1.6;
  background: var(--clr_beige);
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2.5rem;
}
.overview .clinic_name img {
  max-width: 85%;
  margin: auto;
}
.overview .overviewL, .overview .overviewR {
  margin-bottom: 2rem;
}
.overview .gaiyo > dt {
  padding: 0.6rem;
  margin-bottom: 1rem;
  color: var(--clr_txt);
  background: var(--clr_white);
  text-align: center;
}
.overview .gaiyo > dd {
  padding: 0 0.5rem;
}
.overview .gaiyo > dd:not(:last-of-type) {
  margin-bottom: 2rem;
}
.overview .gaiyo > dd .license_lst {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.overview .gaiyo > dd .license_lst dt::before {
  content: "■";
  margin-right: 0.2rem;
}
.overview .tbl_time {
  margin: 2.5rem 0;
}
.overview .gmap {
  height: 100vw;
}
.overview .btn_map {
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 6rem 0 0;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    width: 66rem;
  }
  .overview .overview_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
  .overview .overview_flex .overviewL, .overview .overview_flex .overviewR {
    width: calc((100% - 6rem) / 2);
    margin: 0;
  }
  .overview .gaiyo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
  .overview .gaiyo > dt {
    width: 10.4rem;
    padding: 0.5rem 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 0;
  }
  .overview .gaiyo > dd {
    width: calc(100% - 10.4rem - 2rem);
    padding: 0.5rem 1rem 0.5rem 0;
    letter-spacing: 0.05rem;
  }
  .overview .gaiyo > dd:not(:last-of-type) {
    margin-bottom: 0;
  }
  .overview .gaiyo > dd .license_lst {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .overview .gaiyo > dd .license_lst li:not(:last-of-type) {
    margin-bottom: 0.1rem;
  }
  .overview .tbl_time {
    margin: 2rem 0 4.5rem;
  }
  .overview .gmap {
    margin-top: 3rem;
    height: 40rem;
  }
}
#pageup {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  position: fixed;
  bottom: 0;
  right: 0;
}
#pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
  font-size: 1.4rem;
  width: 100%;
  height: 100%;
  color: var(--clr_white);
  background: var(--clr_blue_dark02);
  position: absolute;
  top: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
#pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 6rem;
    height: 6rem;
  }
  #pageup::before {
    font-size: 2.3rem;
  }
}

.footer {
  padding: 2rem 0 0;
  background: var(--clr_beige);
}
.footer .footer_nav dt {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05rem;
}
.footer .footer_nav dd {
  font-size: 1.2rem;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer_nav dd > ul {
  width: 50%;
  border-left: 1px solid var(--clr_border);
  padding: 0.5rem 0.5rem 0 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.footer .footer_nav dd > ul a {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer .sns_lst {
  margin: 3rem 1rem 2rem;
}
.footer .copy {
  display: block;
  text-align: center;
  color: var(--clr_white);
  background: var(--clr_blue_dark);
  padding: 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3.5rem 0 0;
  }
  .footer .copy {
    padding: 1.65rem 1rem;
    font-size: 1.8rem;
  }
  .footer .footer_nav {
    width: 75rem;
    margin: 0 auto;
  }
  .footer .footer_nav dt {
    display: none;
  }
  .footer .footer_nav dd {
    display: block;
  }
  .footer .footer_nav dd > ul, .footer .footer_nav dd > div {
    width: auto;
    border-left: none;
    padding: 0;
  }
  .footer .footer_nav dd > ul a, .footer .footer_nav dd > div a {
    display: inline-block;
    margin-bottom: 0;
  }
  .footer .footer_nav dd ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem 1.6rem;
    margin-bottom: 0.5rem;
  }
  .footer .footer_nav dd ul li {
    text-align: center;
    font-size: 1.8rem;
    -webkit-text-size-adjust: none;
    position: relative;
  }
  .footer .footer_nav dd ul li::after {
    content: "|";
    width: 1rem;
    position: absolute;
    top: 0;
    right: calc(var(--after-offset) / 2 - 0.5rem);
  }
  .footer .footer_nav dd ul li a {
    opacity: 1;
  }
  .footer .footer_nav dd ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_nav dd ul li.last-in-row::after {
    content: none;
  }
  .footer .sns_lst {
    margin: 4rem auto;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-animation: fade 1s ease-out 0.4s 1 normal forwards;
          animation: fade 1s ease-out 0.4s 1 normal forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 20rem !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 {
  color: var(--clr_white);
  text-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.1), 0 0 10px rgba(var(--rgb_shadow), 0.1), 0 0 10px rgba(var(--rgb_shadow), 0.1), 0 0 10px rgba(var(--rgb_shadow), 0.1), 0 0 10px rgba(var(--rgb_shadow), 0.1), 0 0 10px rgba(var(--rgb_shadow), 0.1);
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0;
  padding: 0 1.5rem;
  letter-spacing: 0.1rem;
  position: absolute;
  width: 100%;
  top: 9.5rem;
  left: 0;
  opacity: 0;
}
.keyvsl .catch_copy.trigger {
  -webkit-animation: fade_up 0.8s ease-out 0.8s 1 normal forwards;
          animation: fade_up 0.8s ease-out 0.8s 1 normal forwards;
}
.keyvsl .open_nairan {
  margin: 2rem 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  pointer-events: none;
}
.keyvsl .open_nairan li {
  min-width: calc(50% - 0.5rem);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  padding: 1.2rem 0.4rem;
  line-height: 1.35;
  color: var(--clr_white);
  background: var(--clr_blue);
  -webkit-box-shadow: inset 0px 0px 0px 4px var(--clr_blue), inset 0 0 0 5px var(--clr_white);
          box-shadow: inset 0px 0px 0px 4px var(--clr_blue), inset 0 0 0 5px var(--clr_white);
  font-size: 1.4rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  opacity: 0;
}
.keyvsl .open_nairan li .num {
  display: inline-block;
  font-size: 140%;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.keyvsl .open_nairan.trigger > li {
  -webkit-animation: fade_up 0.8s ease-out 1s 1 normal forwards;
          animation: fade_up 0.8s ease-out 1s 1 normal forwards;
}
.keyvsl .open_nairan.trigger > li:nth-child(2) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 79rem;
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 79rem !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 {
    font-size: 3.6rem;
    line-height: 1.65;
    letter-spacing: 0.35rem;
    width: 1200px;
    top: 46%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }
  .keyvsl .open_nairan {
    position: absolute;
    z-index: 1;
    bottom: -3rem;
    left: 0;
    right: 0;
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .keyvsl .open_nairan li {
    min-width: inherit;
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
    width: 18rem;
    height: 18rem;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.07rem;
  }
  .keyvsl .open_nairan li .num {
    font-size: 3.6rem;
    line-height: 1;
    margin-bottom: 0rem;
  }
}
.top_tit02 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--clr_brown);
}
.top_tit02::before {
  content: attr(data-ruby);
  color: var(--clr_txt);
  padding: 0 0 0.5rem;
  font-size: 3rem;
  display: block;
  letter-spacing: 0.25rem;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }
  .top_tit02::before {
    font-size: 4.8rem;
    letter-spacing: 0.5rem;
    padding-bottom: 0.8rem;
  }
}
.top_contetnt {
  padding: 4rem 0.5rem;
  background: var(--clr_white);
}
.top_contetnt .top_contetnt_tit {
  text-align: center;
  position: relative;
  padding: 0.5rem;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: var(--anime-opacity);
}
.top_contetnt .top_contetnt_tit::before, .top_contetnt .top_contetnt_tit::after {
  content: "";
  display: block;
  pointer-events: none;
  width: 1rem;
  height: 2rem;
  position: absolute;
}
.top_contetnt .top_contetnt_tit::before {
  border-top: 1px solid var(--clr_txt);
  border-left: 1px solid var(--clr_txt);
  top: 0;
  left: 0;
}
.top_contetnt .top_contetnt_tit::after {
  border-right: 1px solid var(--clr_txt);
  border-bottom: 1px solid var(--clr_txt);
  bottom: 0;
  right: 0;
}
.top_contetnt .top_contetnt_txt {
  opacity: var(--anime-opacity);
}
.top_contetnt .top_contetnt_txt p {
  margin: 0;
  font-size: 1.3rem;
}
.top_contetnt .top_contetnt_txt p:not(:first-of-type) {
  margin-top: 0.5rem;
}
.top_contetnt.trigger .top_contetnt_tit {
  -webkit-animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.top_contetnt.trigger .top_contetnt_txt {
  -webkit-animation: fade_up 0.8s ease-out 0.4s 1 normal forwards;
          animation: fade_up 0.8s ease-out 0.4s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .top_contetnt {
    padding: 11rem 0 12rem;
  }
  .top_contetnt .top_contetnt_tit {
    width: 95rem;
    font-size: 3.6rem;
    margin: 0 auto 4.5rem;
    padding: 0;
    letter-spacing: 0.38rem;
    line-height: 1.32;
  }
  .top_contetnt .top_contetnt_tit::before, .top_contetnt .top_contetnt_tit::after {
    border-width: 2px;
  }
  .top_contetnt .top_contetnt_tit::before {
    top: 1rem;
  }
  .top_contetnt .top_contetnt_tit::after {
    bottom: 0.5rem;
  }
  .top_contetnt .top_contetnt_txt p {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 0.05rem;
    line-height: 1.3;
  }
}

.index_treatment {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--clr_beige)), to(var(--clr_white)));
  background: linear-gradient(to bottom, var(--clr_beige) calc(100% - 10rem), var(--clr_white) calc(100% - 10rem));
  padding: 4rem 1rem 3rem;
}
.index_treatment nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.index_treatment nav .treat_lst {
  width: calc(50% - 0.5rem);
  background: var(--clr_blue);
  padding: 0 1rem 1.5rem;
  min-height: 20rem;
  opacity: var(--anime-opacity);
}
.index_treatment nav .treat_lst:nth-of-type(even) {
  background: var(--clr_pink);
}
.index_treatment nav .treat_lst::before {
  content: "";
  display: block;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-bottom: 1.5rem;
  height: 10rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.index_treatment nav .treat_lst.-urology::before {
  background-image: url("../img/index_treatment-urology.webp");
}
.index_treatment nav .treat_lst.-nephrology::before {
  background-image: url("../img/index_treatment-nephrology.webp");
}
.index_treatment nav .treat_lst.-transplant::before {
  background-image: url("../img/index_treatment-transplant.webp");
}
.index_treatment nav .treat_lst.-private::before {
  background-image: url("../img/index_treatment-private.webp");
}
.index_treatment nav .treat_lst.-home_medical_care::before {
  background-image: url("../img/index_treatment-home_medical_care.webp");
}
.index_treatment nav .treat_lst > li {
  opacity: var(--anime-opacity);
}
.index_treatment nav .treat_lst > li a {
  color: var(--clr_white);
  position: relative;
  padding-left: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.index_treatment nav .treat_lst > li a::before {
  font-family: "fontello";
  content: "\32";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  left: 0rem;
  font-size: 120%;
  line-height: 1;
}
.index_treatment nav .treat_lst > li:not(:last-of-type) {
  margin-bottom: 0.6rem;
}
.index_treatment nav .treat_lst > li.subnav_tit {
  margin-bottom: 1.2rem;
}
.index_treatment nav .treat_lst > li.subnav_tit a {
  font-size: 1.5rem;
}
.index_treatment.trigger nav .treat_lst {
  -webkit-animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_treatment.trigger nav .treat_lst:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.index_treatment.trigger nav .treat_lst:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.index_treatment.trigger nav .treat_lst:nth-child(3) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.index_treatment.trigger nav .treat_lst:nth-child(4) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.index_treatment.trigger nav .treat_lst:nth-child(5) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.index_treatment.trigger nav .treat_lst:nth-child(6) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.index_treatment.trigger nav .treat_lst:nth-child(7) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.index_treatment.trigger nav .treat_lst:nth-child(8) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.index_treatment.trigger nav .treat_lst:nth-child(9) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.index_treatment.trigger nav .treat_lst:nth-child(10) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.index_treatment.trigger nav .treat_lst > li {
  -webkit-animation: fade_up 0.6s ease-out 0.4s 1 normal forwards;
          animation: fade_up 0.6s ease-out 0.4s 1 normal forwards;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(1) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(2) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(3) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(4) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(5) {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(6) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(7) {
  -webkit-animation-delay: 1.45s;
          animation-delay: 1.45s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(9) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(10) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(11) {
  -webkit-animation-delay: 2.05s;
          animation-delay: 2.05s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(12) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(13) {
  -webkit-animation-delay: 2.35s;
          animation-delay: 2.35s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(14) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(15) {
  -webkit-animation-delay: 2.65s;
          animation-delay: 2.65s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(16) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(17) {
  -webkit-animation-delay: 2.95s;
          animation-delay: 2.95s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(18) {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(19) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(20) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(21) {
  -webkit-animation-delay: 3.55s;
          animation-delay: 3.55s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(22) {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(23) {
  -webkit-animation-delay: 3.85s;
          animation-delay: 3.85s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(24) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(25) {
  -webkit-animation-delay: 4.15s;
          animation-delay: 4.15s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(26) {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(27) {
  -webkit-animation-delay: 4.45s;
          animation-delay: 4.45s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(28) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(29) {
  -webkit-animation-delay: 4.75s;
          animation-delay: 4.75s;
}
.index_treatment.trigger nav .treat_lst > li:nth-child(30) {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}
@media screen and (min-width: 48em), print {
  .index_treatment {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--clr_beige)), to(var(--clr_white)));
    background: linear-gradient(to bottom, var(--clr_beige) calc(100% - 30rem), var(--clr_white) calc(100% - 30rem));
    padding: 9rem 0 10rem;
  }
  .index_treatment nav {
    gap: 0.8rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index_treatment nav .treat_lst {
    width: calc((100% - 3.4rem) / 5);
    padding: 0 3rem 3rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .index_treatment nav .treat_lst::before {
    width: calc(100% + 6rem);
    margin-left: -3rem;
    margin-bottom: 3rem;
    height: 23rem;
  }
  .index_treatment nav .treat_lst > li:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
  .index_treatment nav .treat_lst > li a {
    padding-left: 2rem;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.05rem;
  }
  .index_treatment nav .treat_lst > li a::before {
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
  .index_treatment nav .treat_lst > li a:hover {
    color: var(--clr_brown);
  }
  .index_treatment nav .treat_lst > li.subnav_tit {
    margin-bottom: 2rem;
  }
  .index_treatment nav .treat_lst > li.subnav_tit a {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
  }
  .index_treatment nav .treat_lst.-dark {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
  }
}

.index_greeting {
  padding: 3rem 1rem 4rem;
  background: var(--clr_white);
}
.index_greeting .dr_message {
  position: relative;
  z-index: 0;
  padding-bottom: 24rem;
  opacity: var(--anime-opacity);
}
.index_greeting .dr_message .signature {
  margin: 2rem 0;
}
.index_greeting .dr_message .signature .dr_name {
  display: inline-block;
  font-size: 1.6rem;
  margin-left: 1rem;
}
.index_greeting .dr_message::before, .index_greeting .dr_message::after {
  content: "";
  display: block;
  width: 70vw;
  height: 70vw;
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: var(--anime-opacity);
}
.index_greeting .dr_message::before {
  background: url("../img/index_greeting_bg02.webp") center center/cover no-repeat;
  bottom: 8rem;
  right: -2rem;
}
.index_greeting .dr_message::after {
  background: url("../img/index_greeting_bg.webp") center center/cover no-repeat;
  bottom: 0;
  right: 4rem;
}
.index_greeting .bnr {
  margin-top: 4rem;
  opacity: 0;
}
.index_greeting.trigger .dr_message {
  -webkit-animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.index_greeting.trigger .dr_message::before {
  -webkit-animation: fade_up 0.8s ease-out 0.8s 1 normal forwards;
          animation: fade_up 0.8s ease-out 0.8s 1 normal forwards;
}
.index_greeting.trigger .dr_message::after {
  -webkit-animation: fade_up 0.8s ease-out 0.6s 1 normal forwards;
          animation: fade_up 0.8s ease-out 0.6s 1 normal forwards;
}
.index_greeting.trigger .bnr {
  -webkit-animation: fade_up 0.4s ease-out 1.2s 1 normal forwards;
          animation: fade_up 0.4s ease-out 1.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_greeting {
    overflow: hidden;
    padding: 3rem 0 12rem;
  }
  .index_greeting .wrap {
    width: calc(1200px - 12rem);
  }
  .index_greeting .top_tit02 {
    width: 57rem;
  }
  .index_greeting .dr_message {
    width: 57rem;
    padding-bottom: 0;
  }
  .index_greeting .dr_message::before, .index_greeting .dr_message:after {
    width: 54rem;
    height: 54rem;
  }
  .index_greeting .dr_message::before {
    right: -97rem;
    bottom: auto;
    top: -15rem;
  }
  .index_greeting .dr_message::after {
    right: -63rem;
    bottom: auto;
    top: -0.5rem;
  }
  .index_greeting .dr_message p {
    letter-spacing: 0.05rem;
    line-height: 2;
  }
  .index_greeting .dr_message .signature {
    margin: 2.5rem 0 4rem;
    letter-spacing: 0.05rem;
  }
  .index_greeting .dr_message .signature .dr_name {
    font-size: 2.4rem;
    margin-left: 2rem;
    margin-top: 0rem;
    line-height: 1.2;
    letter-spacing: 0.05rem;
  }
  .index_greeting .bnr_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index_greeting .bnr {
    margin-top: 10rem;
    margin-inline: 0;
  }
}

.info {
  padding: 4rem 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--clr_beige)), to(transparent));
  background: linear-gradient(to bottom, var(--clr_beige) calc(100% - 4.1rem), transparent calc(100% - 4.1rem));
}
.info dl {
  line-height: 1.55;
  background: var(--clr_white);
  padding: 0.6rem 1.5rem 0;
  position: relative;
  opacity: var(--anime-opacity);
}
.info dl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--clr_border);
}
.info dl dt {
  margin: 0 0 1.4rem;
  color: var(--clr_brown);
  cursor: pointer;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  position: relative;
  padding: 1.4rem 1rem 0 2rem;
  font-weight: 700;
  line-height: 1.3;
  opacity: var(--anime-opacity);
}
.info dl dt .day {
  color: var(--clr_gray);
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 1.15rem;
}
.info dl dt::before {
  font-family: "fontello";
  content: "\e800";
  font-weight: normal;
  position: absolute;
  top: 1.45rem;
  left: 0;
  display: inline-block;
  font-size: 105%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.info dl dt.open::before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.info dl dt:not(:first-of-type) {
  border-top: 1px solid var(--clr_border);
}
.info dl dd {
  margin: -0.6rem 0 1.6rem;
  word-wrap: break-word;
  opacity: var(--anime-opacity);
}
.info dl dd:not(:nth-of-type(-n+2)) {
  display: none;
}
.info dl dd a {
  text-decoration: underline;
  color: var(--clr_blue_dark);
}
.info dl dd a:hover {
  color: var(--clr_brown);
  opacity: 1;
  text-decoration: underline;
}
.info.trigger dl {
  -webkit-animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.info.trigger dl dt {
  -webkit-animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.info.trigger dl dd {
  -webkit-animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 7.5rem 0 16.5rem;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--clr_beige)), to(transparent));
    background: linear-gradient(to bottom, var(--clr_beige) calc(100% - 16.5rem), transparent calc(100% - 16.5rem));
  }
  .info .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info .wrap .top_tit02 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 1rem 2.5rem;
  }
  .info .wrap dl {
    width: 90rem;
    padding: 4rem 6rem 0;
  }
  .info .wrap dl dt {
    font-size: 2rem;
    margin: 0 0 2.5rem;
    padding: 2.5rem 3rem 0;
    letter-spacing: 0.1rem;
  }
  .info .wrap dl dt::before {
    font-size: 115%;
    top: 2.6rem;
  }
  .info .wrap dl dt .day {
    font-size: 1.6rem;
    margin-left: 0.5rem;
  }
  .info .wrap dl dt.open::before {
    -webkit-transform: scale(1, -1) translateY(3px);
            transform: scale(1, -1) translateY(3px);
  }
  .info .wrap dl dd {
    font-size: 1.8rem;
    margin: -1rem 0 2.5rem;
    letter-spacing: 0.05rem;
  }
}
.index_calendar .outPatient {
  background: #fceded;
}
.index_calendar .open {
  background: #fff;
}
.index_calendar .amOnly {
  background: #e6f1f5;
}
.index_calendar .pmOnly {
  background: #e8f3dd;
}
.index_calendar .openSat {
  background: #f1efec;
}
.index_calendar .cal_note {
  text-align: center;
  margin: -1em 0 3rem;
}
.index_calendar .cal_note li {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.2em 0.6em;
  margin: 1em 0.5em 0;
}
.index_calendar .cal_note li.open {
  border: 1px solid #ddd;
}
.index_calendar .cal_wrap > div {
  margin-bottom: 3rem;
}
.index_calendar .cal_wrap > div table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--clr_white);
}
.index_calendar .cal_wrap > div table tr.month th, .index_calendar .cal_wrap > div table tr.week th {
  font-weight: normal;
  background: var(--clr_brown);
  color: var(--clr_white);
  padding: 0.6rem 0.4rem;
  text-align: center;
  border-bottom: 1px solid var(--clr_white);
}
.index_calendar .cal_wrap > div table tr.month th:not(:last-of-type), .index_calendar .cal_wrap > div table tr.week th:not(:last-of-type) {
  border-right: 1px solid var(--clr_white);
}
.index_calendar .cal_wrap > div table tr td {
  text-align: center;
  padding: 1.2rem 0.4rem;
  border-bottom: 1px solid var(--clr_brown);
  line-height: 1;
}
.index_calendar .cal_wrap > div table tr td:not(:last-of-type) {
  border-right: 1px solid var(--clr_white);
}
.index_calendar .cal_wrap > div table tr td .shortTitle {
  display: none;
}
.index_calendar .cal_wrap > div table tr td.Sunday, .index_calendar .cal_wrap > div table tr td.holiday {
  color: var(--clr_red);
}
.index_calendar .cal_wrap > div table tr td.today {
  font-weight: bold;
}
.index_calendar .cal_wrap > div .monthlynotes {
  margin-top: 1em;
}

@media screen and (min-width: 48em), print {
  .index_calendar .cal_note {
    margin: -1em 0 6rem;
  }
  .index_calendar .cal_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index_calendar .cal_wrap > div {
    width: 48.5%;
    margin-bottom: 6rem;
  }
  .index_calendar .cal_wrap > div table tr.month th, .index_calendar .cal_wrap > div table tr.week th {
    padding: 1rem;
  }
  .index_calendar .cal_wrap > div table tr td {
    padding: 1.7rem 0;
  }
}
.feature {
  padding: 4rem 0rem;
  overflow: hidden;
  background: url("../img/index_feature_bg.webp") top center/cover no-repeat;
}
.feature .top_tit02 {
  color: var(--clr_white);
}
.feature .top_tit02::before {
  color: var(--clr_white);
}
.feature .feature_lst li > section {
  padding: 0 2rem 2rem;
  opacity: var(--anime-opacity);
  position: relative;
  margin: 0;
}
.feature .feature_lst li > section::before {
  content: " ";
  display: block;
  width: calc(100% + 4rem);
  height: 15rem;
  margin-left: -2rem;
  margin-bottom: 2rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.feature .feature_lst li > section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--clr_blue);
  z-index: -1;
}
.feature .feature_lst li > section .feature_tit03 {
  z-index: 0;
  color: var(--clr_white);
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 1rem;
  line-height: 1.35;
  letter-spacing: 0.05rem;
  opacity: var(--anime-opacity);
}
.feature .feature_lst li > section p {
  margin: 0;
  color: var(--clr_white);
  opacity: var(--anime-opacity);
}
.feature .feature_lst li > section p:not(:first-of-type) {
  margin-top: 1em;
}
.feature .feature_lst li:not(:last-of-type) {
  margin-bottom: 2rem;
}
.feature .feature_lst li:nth-of-type(1) > section::before {
  background-image: url("../img/index_feature01.webp");
}
.feature .feature_lst li:nth-of-type(2) > section::before {
  background-image: url("../img/index_feature02.webp");
}
.feature .feature_lst li:nth-of-type(3) > section::before {
  background-image: url("../img/index_feature03.webp");
}
.feature .feature_lst li:nth-of-type(4) > section::before {
  background-image: url("../img/index_feature04.webp");
}
.feature .feature_lst li:nth-of-type(5) > section::before {
  background-image: url("../img/index_feature05.webp");
}
.feature .feature_lst li:nth-of-type(6) > section::before {
  background-image: url("../img/index_feature06.webp");
}
.feature .feature_lst li:nth-of-type(7) > section::before {
  background-image: url("../img/index_feature07.webp");
}
.feature .feature_lst li:nth-of-type(8) > section::before {
  background-image: url("../img/index_feature08.webp");
}
.feature .feature_lst li:nth-of-type(9) > section::before {
  background-image: url("../img/index_feature09.webp");
}
.feature .feature_lst li:nth-of-type(10) > section::before {
  background-image: url("../img/index_feature010.webp");
}
.feature .feature_lst li.trigger > section {
  -webkit-animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.feature .feature_lst li.trigger > section .feature_tit03 {
  -webkit-animation: fade_up 0.6s ease-out 0.4s 1 normal forwards;
          animation: fade_up 0.6s ease-out 0.4s 1 normal forwards;
}
.feature .feature_lst li.trigger > section p {
  -webkit-animation: fade_up 0.6s ease-out 0.5s 1 normal forwards;
          animation: fade_up 0.6s ease-out 0.5s 1 normal forwards;
}
.feature .feature_lst li:nth-of-type(even) > section::after {
  background: var(--clr_pink);
}
@media screen and (min-width: 48em), print {
  .feature {
    padding: 8.5rem 0 12rem;
  }
  .feature .feature_lst li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 25rem;
  }
  .feature .feature_lst li > section {
    padding: 3rem 0rem 3rem 53rem;
    position: relative;
  }
  .feature .feature_lst li > section::before {
    width: 50rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .feature .feature_lst li > section::after {
    width: max(100% + 2rem, (100vw - 1200px) / 2 + 1200px);
  }
  .feature .feature_lst li > section .feature_tit03 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .feature .feature_lst li > section p {
    letter-spacing: 0.05rem;
    line-height: 1.7;
  }
  .feature .feature_lst li:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .feature .feature_lst li:nth-of-type(even) > section {
    padding-left: 0;
    padding-right: 53rem;
  }
  .feature .feature_lst li:nth-of-type(even) > section::before, .feature .feature_lst li:nth-of-type(even) > section::after {
    left: auto;
    right: 0;
  }
}

.index_symptoms {
  background: url("../img/index_symptoms_bg.webp") top center/cover no-repeat;
  padding: 4rem 0;
}
.index_symptoms .symptoms_tit {
  text-align: center;
  font-size: 1.7rem;
  color: var(--clr_white);
  margin-bottom: 2rem;
  line-height: 1.35;
  font-weight: 400;
}
.index_symptoms .symptoms_lst {
  background: var(--clr_white);
  margin: 0 1rem;
  padding: 2rem 1.5rem;
  opacity: var(--anime-opacity);
}
.index_symptoms .symptoms_lst .lst_ul.-check > li {
  opacity: var(--anime-opacity);
}
.index_symptoms .symptoms_lst .lst_ul.-check > li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.index_symptoms.trigger .symptoms_lst {
  -webkit-animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li {
  -webkit-animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
          animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(9) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(10) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(11) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(12) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(13) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(14) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(15) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(16) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(17) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(18) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(19) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(20) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(21) {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(22) {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(23) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(24) {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(25) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(26) {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(27) {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(28) {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(29) {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}
.index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(30) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
@media screen and (min-width: 48em), print {
  .index_symptoms {
    padding: 6rem 0 8rem;
  }
  .index_symptoms .symptoms_tit {
    font-size: 3.6rem;
    margin-bottom: 3rem;
    line-height: 1.35;
    letter-spacing: 0.35rem;
  }
  .index_symptoms .symptoms_lst {
    padding: 4.5rem 6rem;
    width: 84rem;
    margin-inline: auto;
  }
  .index_symptoms .symptoms_lst .lst_ul.-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.6rem 6rem;
  }
  .index_symptoms .symptoms_lst .lst_ul.-check > li {
    width: calc(50% - 3rem);
    padding-left: 3rem;
    letter-spacing: 0.05rem;
  }
  .index_symptoms .symptoms_lst .lst_ul.-check > li::before {
    font-size: 120%;
  }
  .index_symptoms .symptoms_lst .lst_ul.-check > li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .index_symptoms.trigger .symptoms_lst {
    -webkit-animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
            animation: fade_up 0.5s ease-out 0.2s 1 normal forwards;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li {
    -webkit-animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
            animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(1) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(2) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(3) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(4) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(5) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(6) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(7) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(8) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(9) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(10) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(11) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(12) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(13) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(14) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(15) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(16) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(17) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(18) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(19) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(20) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(21) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(22) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(23) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(24) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(25) {
    -webkit-animation-delay: 2.6s;
            animation-delay: 2.6s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(26) {
    -webkit-animation-delay: 2.6s;
            animation-delay: 2.6s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(27) {
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(28) {
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(29) {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
  .index_symptoms.trigger .symptoms_lst .lst_ul.-check > li:nth-child(30) {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
}

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_blue_dark);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]):hover {
  color: var(--clr_brown);
  opacity: 1;
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 1200px;
    margin: 0 auto 8rem;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  margin: 0 1rem 3rem;
  white-space: nowrap;
  overflow-x: scroll;
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  content: ">";
  margin: 0 0.4rem;
}
.breadcrumb li br {
  display: none;
}
.breadcrumb li a {
  color: var(--clr_blue_dark);
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.8rem;
    width: 1200px;
    margin: 0 auto 5rem;
    white-space: inherit;
    overflow-x: inherit;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 0.8rem;
  }
  .breadcrumb li a:hover {
    opacity: 1;
    color: var(--clr_brown);
    text-decoration: underline !important;
  }
}
.doctor .dr_name {
  text-align: right;
}
.doctor .dr_name span {
  display: block;
}

.clinic .network_lst .lst_ul > li a.out {
  color: var(--clr_txt);
}
.clinic .network_lst .lst_ul > li a.out::before {
  content: none;
}
.clinic .network_lst .lst_ul > li a.out::after {
  color: var(--clr_blue);
}
@media screen and (min-width: 48em), print {
  .clinic .network_lst .lst_ul > li a:hover {
    color: var(--clr_brown);
  }
  .clinic .network_lst .lst_ul > li a:hover::after {
    color: var(--clr_brown);
  }
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: var(--clr_white);
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  background: rgba(var(--rgb_blue_dark02), 0.5);
}
.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: "\f006";
  color: var(--clr_blue_dark02);
  font-size: 3rem;
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.gallery .gallery_slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0.5rem auto 0.8rem;
}
.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_blue_dark02);
}
.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_blue_dark02);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .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: 1rem auto 1.4rem;
  }
  .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_blue_dark02);
  }
}
.first .first_flex .img {
  max-width: 80%;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .first .first_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .first .first_flex .img {
    max-width: 35%;
    margin: 0 0 0 auto;
  }
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}
/*# sourceMappingURL=style.css.map */