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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

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

:root {
  --clr_txt: #333;
  --rgb_txt: 51, 51, 51;
  --clr_border: #DCDCDC;
  --rgb_border: 220, 220, 220;
  --clr_shadow: #000000;
  --rgb_shadow: 0, 0, 0;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_blue: #7BB1ED;
  --rgb_blue: 123, 177, 237;
  --clr_blue_light: #E5F0F7;
  --rgb_blue_light: 229, 240, 247;
  --clr_blue_dark: #0071C1;
  --rgb_blue_dark: 0, 113, 193;
  --clr_green: #A8D84D;
  --rgb_green: 168, 216, 77;
  --clr_green_light: #EDF6DB;
  --rgb_green_light: 237, 246, 219;
  --clr_yellow: #FDCC1A;
  --rgb_yellow: 253, 204, 26;
  --clr_yellow_light: #FFF5D1;
  --rgb_yellow_light: 255, 245, 209;
  --clr_yellow_light02: #F8F2E1;
  --rgb_yellow_light02: 248, 242, 225;
  --clr_red: #FF9D9D;
  --rgb_red: 255, 157, 157;
  --anime-opacity: 1;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes active-menu {
  0% {
    right: -120%;
  }
  100% {
    right: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_catchcopy {
  0% {
    opacity: 0;
    transform: translate(-10rem, 0.5rem);
  }
  100% {
    opacity: 1;
    transform: translate(-10rem, 0rem);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

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

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.line_mark {
  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;
  border-radius: 8px;
}

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

.tate {
  max-width: 60%;
}

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

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

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

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

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

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

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

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

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

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

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

.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.8rem;
  font-size: 1.15rem;
}
.tbl_time caption .blue {
  color: var(--clr_blue);
}
.tbl_time caption .green {
  color: var(--clr_green);
}
.tbl_time caption .cap_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.tbl_time caption .cap_flex .cap_tit {
  color: var(--clr_white);
  background: var(--clr_red);
  border-radius: 6px;
  padding: 0.1rem 0.4rem;
  width: 6em;
  text-align: center;
}
.tbl_time caption .cap_flex .cap_content {
  padding: 0.1rem 0;
  width: calc(100% - 6em - 1rem);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem;
  text-align: center;
  background: var(--clr_blue);
  color: var(--clr_white);
}
.tbl_time tr th[scope=col]:first-child {
  width: 33%;
}
.tbl_time tr th.time {
  border-bottom: 1px dashed var(--clr_blue);
  background: var(--clr_white);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px dashed var(--clr_blue);
  line-height: 1;
  font-size: 80%;
  background: var(--clr_white);
  color: var(--clr_blue);
}
.tbl_time tr:first-of-type th:first-of-type {
  border-radius: 6px 0 0 0;
}
.tbl_time tr:first-of-type th:last-of-type {
  border-radius: 0 6px 0 0;
}
.tbl_time tr:last-of-type .time, .tbl_time tr:last-of-type td {
  border-bottom-style: solid;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
  }
  .tbl_time caption {
    font-size: 1.8rem;
  }
  .tbl_time caption .cap_flex {
    margin-bottom: 0.5rem;
  }
  .tbl_time caption .cap_flex .cap_tit {
    padding: 0rem 0.4rem;
    width: 12.1rem;
    text-align: center;
  }
  .tbl_time caption .cap_flex .cap_content {
    padding: 0;
    width: calc(100% - 12.1rem - 1.5rem);
  }
  .tbl_time tr th[scope=col] {
    padding: 1.2rem 0;
    font-size: 2rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 22%;
  }
  .tbl_time tr th[scope=col]:last-of-type {
    width: 12%;
    padding-right: 3%;
  }
  .tbl_time tr th.time {
    font-size: 2rem;
    padding-left: 1rem;
  }
  .tbl_time tr td {
    padding: 3.1rem 0;
    font-size: 100%;
  }
  .tbl_time tr td:last-of-type {
    width: 12%;
    padding-right: 3%;
  }
}
.timetable > dt {
  color: var(--clr_blue_dark);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.timetable > dt::before {
  content: "●";
  margin-right: 0.4rem;
  color: var(--clr_blue);
}
.timetable.-old > dt::before {
  color: var(--clr_green);
}
.timetable.-old > dd .tbl_time tr th[scope=col] {
  background: var(--clr_green);
}
.timetable.-old > dd .tbl_time tr td {
  color: var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .timetable > dt {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}

.gmap {
  width: 100%;
}

.tit_01 {
  font-size: 2rem;
  padding: 5.6rem 1rem 1rem;
  text-align: center;
  background: url(../img/tit_01.webp) center/auto 100% no-repeat;
  color: var(--clr_blue_dark);
  font-weight: 700;
  line-height: 1.2;
  min-height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tit_01 span {
  background: var(--clr_white);
  padding: 0.5rem;
}

.tit_02 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  position: relative;
  font-weight: 400;
}
.tit_02::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0rem;
  background: url("../img/tit_02.png") center left/contain repeat-x;
}

.tit_03 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 400;
  color: var(--clr_blue_dark);
  padding: 0.7rem 1.2rem;
  background: var(--clr_blue_light);
  border-radius: 8px;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(to right, var(--clr_green) 5em, var(--clr_border) 5em);
  border-image-slice: 1;
}

.tit_05 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  padding-left: 1rem;
  color: var(--clr_red);
  position: relative;
}
.tit_05::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--clr_red);
  border-radius: 2px;
  width: 0.4rem;
  height: 100%;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: var(--clr_white);
  background: var(--clr_blue);
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.4rem;
    padding: 9rem 0 1rem;
    min-height: 30rem;
  }
  .tit_01 span {
    max-width: calc(1100px - 10rem);
    margin: 0 auto;
    padding: 1.2rem;
  }
  .tit_02 {
    font-size: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
  .tit_02::after {
    height: 0.4rem;
  }
  .tit_03 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    padding: 1.4rem 2rem;
    border-radius: 12px;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    border-width: 3px;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-left: 1.7rem;
  }
  .tit_05::before {
    width: 0.8rem;
  }
  .tit_06 {
    font-size: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    padding: 0.6rem 1.2rem;
  }
}
.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_blue);
  position: absolute;
  left: 0;
  font-size: 80%;
  top: 0.2em;
}
.lst_ul.-color02 > li::before {
  content: "■";
  color: var(--clr_yellow);
  top: 0.3em;
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
  font-size: 100%;
  top: inherit;
}
.lst_ul.-check > li::before {
  font-family: "fontello";
  content: "\e80a";
  left: 0.15rem;
  color: var(--clr_yellow);
  font-size: 100%;
  transform: translateY(1px);
  top: inherit;
}

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

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding-left: 1.3em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ol > li::before {
  content: counter(number) ".";
  color: var(--clr_green);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  position: absolute;
  top: 0.17em;
  left: 0;
}
.lst_ol.-black > li::before {
  content: counter(number) ")";
  color: var(--clr_txt);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  top: inherit;
}

.lst_dl {
  --dl_border: var(--clr_border);
  --dl_border02: var(--clr_border);
}
.lst_dl dt {
  background: var(--clr_green_light);
  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_yellow_light);
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dt:first-of-type {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dt:last-of-type {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dd {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dd:last-of-type {
  border-color: var(--dl_border02);
}
.lst_dl.-color02 dd ul li {
  border-color: var(--dl_border02);
}
@media screen and (min-width: 48em), print {
  .lst_dl dt {
    padding: 1rem 2.5rem;
  }
  .lst_dl dd {
    padding: 1.5rem 2.5rem;
  }
  .lst_dl.-pc_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lst_dl.-pc_row dt {
    width: 30%;
    padding: 1.5rem 2.5rem;
  }
  .lst_dl.-pc_row dt:last-of-type {
    border-bottom: 1px solid var(--dl_border);
  }
  .lst_dl.-pc_row dd {
    width: 70%;
    margin: 0;
    border-top: 1px solid var(--dl_border);
    border-left: none;
    border-bottom: none;
  }
  .lst_dl.-pc_row dd:last-of-type {
    border-bottom: 1px solid var(--dl_border);
  }
  .lst_dl.-color02 dt {
    border-color: var(--dl_border02);
  }
  .lst_dl.-color02 dt:last-of-type {
    border-color: var(--dl_border02);
  }
  .lst_dl.-color02 dd:first-of-type {
    border-color: var(--dl_border02);
  }
  .lst_dl.-color02 dd:last-of-type {
    border-color: var(--dl_border02);
  }
}

.lst_dl02 dt {
  font-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: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl02 dt {
    width: 8.5em;
  }
  .lst_dl02 dd {
    width: calc(100% - 8.5em);
    padding-left: 1rem;
  }
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc > li {
  width: 100%;
}
.lst_anc > li a {
  color: var(--clr_white) !important;
  text-decoration: none !important;
}
.lst_anc > li a {
  color: var(--clr_white);
  background: var(--clr_yellow);
  border: 1px solid var(--clr_yellow);
  border-radius: 50vh;
  transition: 0.2s;
  padding: 0.5rem 3rem;
  min-width: 55%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  min-height: 4rem;
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.2;
  min-height: 4.8rem;
  display: grid;
  place-items: center;
  width: 100%;
}
.lst_anc > li a::before {
  font-family: "fontello";
  content: "\f006";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 85%;
}
.lst_anc > li a::after {
  content: "";
  display: block;
  border: 1px solid rgba(var(--rgb_white), 0.5);
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  border-radius: 50vh;
  transition: 0.2s;
}
@media screen and (min-width: 48em), print {
  .lst_anc > li a {
    padding: 0.5rem 4rem;
    font-size: 2rem;
    min-width: 28rem;
    min-height: 6rem;
  }
  .lst_anc > li a::before {
    right: 1.8rem;
  }
  .lst_anc > li a:hover {
    background: var(--clr_white);
    color: var(--clr_yellow);
  }
  .lst_anc > li a:hover:after {
    border-color: var(--clr_yellow);
  }
}
.lst_anc > li a::before {
  font-family: "fontello";
  content: "\f004";
}
@media screen and (min-width: 48em), print {
  .lst_anc > li {
    width: calc((100% - 2rem) / 3);
  }
  .lst_anc > li a:hover {
    color: var(--clr_yellow) !important;
  }
  .lst_anc.-col4 > li {
    width: calc((100% - 3rem) / 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_yellow);
  border-right: 3.5rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3.5rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow > dd:not(:last-child) {
    margin: 0 0 7rem;
  }
  .flow > dd:not(:last-child)::after {
    bottom: -6.5rem;
    border-top: 3rem solid var(--clr_yellow);
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
  }
}

.flow_ol {
  counter-reset: number 0;
}
.flow_ol > li {
  border: 2px solid var(--clr_green);
  border-radius: 10px;
  padding: 1rem;
  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_yellow);
  border-right: 3.5rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3.5rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li:not(:last-child) {
    margin: 0 0 7rem;
  }
  .flow_ol > li:not(:last-child)::after {
    bottom: -6.5rem;
    border-top: 3rem solid var(--clr_yellow);
    border-right: 7rem solid transparent;
    border-left: 7rem solid transparent;
  }
}
.flow_ol > li .flow_tit {
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--clr_blue);
  display: block;
  font-size: 115%;
  color: var(--clr_blue);
  font-weight: 700;
  padding-left: 1.2em;
}
.flow_ol > li .flow_tit::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    border-radius: 20px;
    border-width: 3px;
    padding: 2rem 3rem;
  }
  .flow_ol > li .flow_tit {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .flow_ol > li .flow_tit::before {
    top: 2rem;
    left: 3rem;
  }
}

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

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

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    margin-top: 0 !important;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: calc(50% - 1rem);
  }
  .flex2 > section:not(:last-child), .flex2 > li:not(:last-child), .flex2 > div:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex3 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3_1 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex4 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 3rem;
  }
}
.tel {
  color: var(--clr_white);
  background: var(--clr_yellow);
  border: 1px solid var(--clr_yellow);
  border-radius: 50vh;
  transition: 0.2s;
  padding: 0.5rem 3rem;
  min-width: 55%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  min-height: 4rem;
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  background: var(--clr_blue);
  border-color: var(--clr_blue);
  letter-spacing: 0.1rem;
}
.tel::before {
  font-family: "fontello";
  content: "\f006";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 85%;
}
.tel::after {
  content: "";
  display: block;
  border: 1px solid rgba(var(--rgb_white), 0.5);
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  border-radius: 50vh;
  transition: 0.2s;
}
@media screen and (min-width: 48em), print {
  .tel {
    padding: 0.5rem 4rem;
    font-size: 2rem;
    min-width: 28rem;
    min-height: 6rem;
  }
  .tel::before {
    right: 1.8rem;
  }
  .tel:hover {
    background: var(--clr_white);
    color: var(--clr_yellow);
  }
  .tel:hover:after {
    border-color: var(--clr_yellow);
  }
}
.tel::before {
  position: static;
  font-family: "fontello";
  content: "\e80b";
  margin-right: 0.4rem;
  display: inline-block;
  transform: translateY(1px);
  line-height: 1;
  font-size: 90%;
  font-weight: 400;
}
@media screen and (min-width: 48em), print {
  .tel {
    letter-spacing: 0.1rem;
    font-size: 2.8rem;
    min-width: 25.8rem;
  }
  .tel::before {
    font-size: 85%;
    transform: translateY(0px);
    margin-right: 0.7rem;
  }
  .tel::after {
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    top: 0.4rem;
    left: 0.4rem;
  }
  .tel:hover {
    background: var(--clr_blue);
    color: var(--clr_white);
  }
  .tel:hover::after {
    border-color: rgba(var(--rgb_white), 0.5);
  }
}

.rsv {
  color: var(--clr_white);
  background: var(--clr_yellow);
  border: 1px solid var(--clr_yellow);
  border-radius: 50vh;
  transition: 0.2s;
  padding: 0.5rem 3rem;
  min-width: 55%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  min-height: 4rem;
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr_green);
  border-color: var(--clr_green);
}
.rsv::before {
  font-family: "fontello";
  content: "\f006";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 85%;
}
.rsv::after {
  content: "";
  display: block;
  border: 1px solid rgba(var(--rgb_white), 0.5);
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  border-radius: 50vh;
  transition: 0.2s;
}
@media screen and (min-width: 48em), print {
  .rsv {
    padding: 0.5rem 4rem;
    font-size: 2rem;
    min-width: 28rem;
    min-height: 6rem;
  }
  .rsv::before {
    right: 1.8rem;
  }
  .rsv:hover {
    background: var(--clr_white);
    color: var(--clr_yellow);
  }
  .rsv:hover:after {
    border-color: var(--clr_yellow);
  }
}
.rsv::before {
  position: static;
  font-family: "fontello";
  content: "\e809";
  margin-right: 0.6rem;
  display: inline-block;
  transform: translateY(1px);
  line-height: 1;
  font-size: 120%;
  margin-right: 0.8rem;
}
@media screen and (min-width: 48em), print {
  .rsv {
    min-width: 16.6rem;
  }
  .rsv::after {
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    top: 0.4rem;
    left: 0.4rem;
  }
  .rsv:hover {
    opacity: 1;
    color: var(--clr_green);
    background: var(--clr_white);
  }
  .rsv:hover::after {
    border-color: var(--clr_green);
  }
}

.tel_rsv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  line-height: 1.6;
}
.tel_rsv > li .tel, .tel_rsv > li .rsv {
  width: 100% !important;
}
.tel_rsv.-row {
  flex-direction: row;
}
.tel_rsv.-row > li {
  width: calc(50% - 0.4rem);
}
.tel_rsv.-row > li .tel, .tel_rsv.-row > li .rsv {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 48em), print {
  .tel_rsv {
    line-height: 1.8;
    flex-direction: row;
  }
}

.box {
  padding: 1rem;
  border-radius: 20px;
  background: var(--clr_blue_light);
}
.box .box_tit {
  font-size: 110%;
  margin: 0 auto 1rem;
}
.box.-color02 {
  background: var(--clr_yellow_light);
}
.box.-border {
  background: none;
  border: 2px solid var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 3rem;
    border-radius: 30px;
  }
  .box.-fit_content {
    width: -moz-fit-content;
    width: fit-content;
  }
  .box.-right {
    margin: 0 0 0 auto;
  }
}

.btn {
  color: var(--clr_white);
  background: var(--clr_yellow);
  border: 1px solid var(--clr_yellow);
  border-radius: 50vh;
  transition: 0.2s;
  padding: 0.5rem 3rem;
  min-width: 55%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  min-height: 4rem;
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.btn::before {
  font-family: "fontello";
  content: "\f006";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 85%;
}
.btn::after {
  content: "";
  display: block;
  border: 1px solid rgba(var(--rgb_white), 0.5);
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  border-radius: 50vh;
  transition: 0.2s;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 0.5rem 4rem;
    font-size: 2rem;
    min-width: 28rem;
    min-height: 6rem;
  }
  .btn::before {
    right: 1.8rem;
  }
  .btn:hover {
    background: var(--clr_white);
    color: var(--clr_yellow);
  }
  .btn:hover:after {
    border-color: var(--clr_yellow);
  }
}

.txt_r[\:has\(\%3E\%20.btn\)] .btn {
  margin-left: auto;
  margin-right: 0;
}

.txt_r:has(> .btn) .btn {
  margin-left: auto;
  margin-right: 0;
}

.txt_l[\:has\(\%3E\%20.btn\)] .btn {
  margin-right: 0;
  margin-left: auto;
}

.txt_l:has(> .btn) .btn {
  margin-right: 0;
  margin-left: auto;
}

.lnk {
  text-decoration: none !important;
}

.lnk {
  display: inline-block;
  cursor: pointer;
  color: var(--clr_blue);
}
.lnk::before {
  content: "≫";
  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;
  }
}
.lnk:hover {
  color: var(--clr_green);
  opacity: 1;
}
.lnk.out::after {
  font-family: "fontello";
  content: "\f08e";
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.tbl caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl tr th {
  text-align: center;
  padding: 1rem;
  font-weight: normal;
  border: 1px solid var(--clr_border);
  background: var(--clr_yellow_light);
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--clr_border);
  background: var(--clr_white);
}
.tbl tr .nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl thead tr th {
  background: var(--clr_green);
  color: var(--clr_white);
}

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

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

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

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

.main {
  font-size: 1.3rem;
  line-height: 1.75;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1100px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    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: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
:target {
  scroll-margin-top: var(--scroll-margin);
}

.header {
  position: absolute;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, var(--clr_white) 0.1rem, transparent);
  padding: 1rem 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header .logo {
  width: calc(100% - 6.6rem);
  height: 2.6rem;
  margin-top: 1.2rem;
  margin-left: 1rem;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}

@media screen and (min-width: 48em), print {
  .header {
    height: 16rem;
    padding: 2.5rem 3rem;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  .header {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48em), print {
  .header .logo {
    width: 31.5rem;
    height: 4.3rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_blue);
  color: var(--clr_white);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  border-radius: 6px;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 102;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 3.4rem;
  margin: -0.4rem 0;
  transition: 0.2s;
}
#nav #sp_menu::after {
  content: "MENU";
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  #nav {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48em), print {
  #nav #sp_menu {
    display: none;
  }
}

.gnav_subnav {
  display: none;
  width: calc(100% - 5rem);
  height: 100vh;
  overflow-y: auto;
  background: var(--clr_blue);
  border-bottom: 1px solid var(--clr_yellow);
  box-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.2);
  position: fixed;
  top: 0;
}
.gnav_subnav.-active {
  display: block;
  z-index: 12;
  animation: active-menu 0.4s forwards;
}
.gnav_subnav .gnav {
  height: calc(100svh - 6.1em);
  overflow-y: auto;
  margin-top: 6.1rem;
}
.gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1.5rem;
  font-size: 1.3rem;
  color: var(--clr_white);
  display: flex;
  align-items: center;
}
.gnav_subnav .gnav > li > a.current, .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_yellow);
}
.gnav_subnav .gnav > li > a::before, .gnav_subnav .gnav > li .sub::before {
  content: "";
  display: inline-block;
  width: 3em;
  height: 3em;
  background-color: var(--clr_white);
  background-size: 70% auto;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-right: 1rem;
}
.gnav_subnav .gnav > li > a.icon_home::before, .gnav_subnav .gnav > li .sub.icon_home::before {
  background-image: url("../img/gnav/icon_home.svg");
}
.gnav_subnav .gnav > li > a.icon_doctor::before, .gnav_subnav .gnav > li .sub.icon_doctor::before {
  background-image: url("../img/gnav/icon_doctor.svg");
}
.gnav_subnav .gnav > li > a.icon_clinic::before, .gnav_subnav .gnav > li .sub.icon_clinic::before {
  background-image: url("../img/gnav/icon_clinic.svg");
}
.gnav_subnav .gnav > li > a.icon_first::before, .gnav_subnav .gnav > li .sub.icon_first::before {
  background-image: url("../img/gnav/icon_first.svg");
}
.gnav_subnav .gnav > li > a.icon_cardiology::before, .gnav_subnav .gnav > li .sub.icon_cardiology::before {
  background-image: url("../img/gnav/icon_cardiology.svg");
}
.gnav_subnav .gnav > li > a.icon_internal::before, .gnav_subnav .gnav > li .sub.icon_internal::before {
  background-image: url("../img/gnav/icon_internal.svg");
}
.gnav_subnav .gnav > li > a.icon_access::before, .gnav_subnav .gnav > li .sub.icon_access::before {
  background-image: url("../img/gnav/icon_access.svg");
}
.gnav_subnav .gnav > li .sub {
  position: relative;
}
.gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\f004";
  display: block;
  position: absolute;
  right: 1rem;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: var(--clr_white);
  margin: 0 1rem;
  padding: 1rem;
  border-radius: 6px;
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  font-size: 1.3rem;
  display: block;
  padding: 0.5rem 1rem;
  color: var(--clr_txt);
}
.gnav_subnav .gnav > li .subbox .subnav li a.current {
  background: var(--clr_yellow);
  border-radius: 4px;
  color: var(--clr_white);
}
.gnav_subnav .gnav > li.lnk_privacypolicy {
  margin-top: 3rem;
}
.gnav_subnav .gnav > li.lnk_privacypolicy a {
  text-decoration: underline;
  font-size: 1.1rem;
  display: inline-block;
  text-align: center;
}
.gnav_subnav .gnav > li.lnk_privacypolicy a::before {
  content: none;
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
  }
  .gnav_subnav {
    width: 100%;
    height: inherit;
    overflow-y: visible;
    padding: 0.5rem 0 0;
    position: static;
  }
  .gnav_subnav .gnav {
    width: 1100px;
    height: auto;
    overflow-y: visible;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  .gnav_subnav .gnav li {
    position: relative;
  }
  .gnav_subnav .gnav li.hide {
    display: none;
  }
  .gnav_subnav .gnav li::after {
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 100%;
    height: 4px;
    background: var(--clr_yellow);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  .gnav_subnav .gnav li:hover::after {
    transform: scale(1, 1);
  }
  .gnav_subnav .gnav li > a, .gnav_subnav .gnav li .sub {
    display: block;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
  }
  .gnav_subnav .gnav li > a::before, .gnav_subnav .gnav li .sub::before {
    width: 5rem;
    height: 5rem;
    display: block;
    margin: 0 auto;
  }
  .gnav_subnav .gnav li > a::after, .gnav_subnav .gnav li .sub::after {
    display: inline-block;
    position: static;
    margin: 0 0 0 1rem;
  }
  .gnav_subnav .gnav li > a:hover, .gnav_subnav .gnav li .sub:hover {
    opacity: 1;
    color: var(--clr_yellow);
  }
  .gnav_subnav .gnav li > a.current, .gnav_subnav .gnav li .sub.current {
    background: none;
    color: var(--clr_yellow);
    position: relative;
    border: none;
  }
  .gnav_subnav .gnav li > a.current::after, .gnav_subnav .gnav li .sub.current::after {
    position: absolute;
    top: auto;
    bottom: 0rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 100%;
    height: 4px;
    background: var(--clr_yellow);
  }
  .gnav_subnav .gnav li .subbox {
    position: absolute;
    top: 10.2rem;
    left: -2rem;
    width: 24.5rem;
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.16);
  }
  .gnav_subnav .gnav li .subbox > .subnav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.4rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav li::after {
    content: none;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a {
    font-size: 2rem;
    padding: 0.7rem 1.7rem;
    text-align: left;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a::after {
    display: none;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    opacity: 1;
    background: var(--clr_yellow);
    border-radius: 5px;
    color: var(--clr_white);
  }
}

.pc_rsv {
  display: none;
}
@media screen and (min-width: 48em), print {
  .pc_rsv {
    width: 100%;
    display: block;
    position: fixed;
    top: 27.5rem;
    right: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  .pc_rsv {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48em), print {
  .pc_rsv > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
  .pc_rsv > ul > li {
    pointer-events: all;
  }
  .pc_rsv > ul > li .rsv, .pc_rsv > ul > li .tel {
    min-width: inherit;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 1.5rem;
    border-radius: 50vh 0 0 50vh;
  }
  .pc_rsv > ul > li .rsv::after, .pc_rsv > ul > li .tel::after {
    width: calc(100% - 0.5rem);
    height: calc(100% - 1rem);
    border-radius: 50vh 0 0 50vh;
    border-right: none;
    top: 0.5rem;
    right: 0;
    left: auto;
  }
  .pc_rsv > ul > li .rsv {
    width: 16.5rem;
    font-size: 2rem;
  }
  .pc_rsv > ul > li .tel {
    width: 26.6rem;
    font-size: 2.8rem;
  }
  .pc_rsv > ul > li .tel::before {
    font-size: 80%;
  }
}

.overview {
  padding: 3rem 0 0;
  font-size: 1.3rem;
  line-height: 1.45;
  background: url("../img/overview_bg.webp") center top/auto calc(100% - 80vw) no-repeat;
}
@media screen and (min-width: 48em), print {
  .overview {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.overview .clinic_name {
  margin: 0 auto 2rem;
  border-bottom: 1px solid var(--clr_blue);
  padding-bottom: 1.5rem;
}
.overview .clinic_name img {
  max-width: 70%;
  margin: 0 auto 1.5rem;
}
.overview .clinic_name .tel_rsv {
  margin: 1.5rem auto 0;
}
.overview .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem 0.6rem;
}
.overview .gaiyo dt {
  width: 6em;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  border-radius: 5px;
  padding: 0.3rem 0;
  color: var(--clr_txt);
  background: var(--clr_blue);
  color: var(--clr_white);
}
.overview .gaiyo dd {
  width: calc(100% - 6em - 1rem);
  padding: 0.3rem 0;
}
.overview .gaiyo dd.acs span {
  display: inline-block;
}
.overview .parking_dl {
  border: 1px solid var(--clr_red);
  display: flex;
  margin: 1rem 0;
  border-radius: 6px;
}
.overview .parking_dl > dt {
  color: var(--clr_white);
  background: var(--clr_red);
  display: grid;
  place-items: center;
  width: 5em;
  border-radius: 5px 0 0 5px;
}
.overview .parking_dl > dd {
  background: var(--clr_white);
  width: calc(100% - 5em);
  padding: 0.6rem 1rem;
  border-radius: 0 5px 5px 0;
  line-height: 1.65;
}
.overview .timetable {
  margin: 1.5rem 0;
}
.overview .img_map {
  margin: 2rem 0;
}
.overview .gmap {
  height: 80vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 7rem 0 0;
    font-size: 1.8rem;
    background-size: 200rem auto;
  }
  .overview .clinic_name {
    margin: 0 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
  }
  .overview .clinic_name img {
    width: 31.562rem;
    max-width: inherit;
  }
  .overview .clinic_name .tel_rsv {
    margin: 0;
    justify-content: flex-end;
  }
  .overview .clinic_name .tel_rsv > li {
    width: -moz-fit-content;
    width: fit-content;
  }
  .overview .overview_flex {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .overview .overview_flex .overviewL, .overview .overview_flex .overviewR {
    width: 49%;
  }
  .overview .gaiyo {
    gap: 1.9rem 1rem;
  }
  .overview .gaiyo dt {
    padding: 0.3rem;
    width: 10rem;
    border-radius: 6px;
  }
  .overview .gaiyo dd {
    width: calc(100% - 10rem - 1rem);
    padding: 0.3rem;
  }
  .overview .parking_dl {
    margin: 2rem 0 4rem;
  }
  .overview .parking_dl > dt {
    width: 10rem;
  }
  .overview .parking_dl > dd {
    width: calc(100% - 10rem);
    padding: 1.4rem 1.5rem 2rem;
    line-height: 1.65;
  }
  .overview .timetable {
    margin: 2rem 0;
    table-layout: fixed;
  }
  .overview .timetable caption {
    font-size: 1.8rem;
  }
  .overview .timetable caption .cap_flex {
    margin-bottom: 0.8rem;
  }
  .overview .timetable caption .cap_flex .cap_content {
    width: calc(100% - 12.1rem - 1rem);
  }
  .overview .timetable tr th[scope=col] {
    padding: 1.4rem 0;
  }
  .overview .timetable tr th[scope=col]:first-child {
    width: 33%;
  }
  .overview .timetable tr th[scope=col]:last-of-type {
    width: 15%;
    padding-right: 3%;
  }
  .overview .timetable tr th.time {
    padding-left: 1rem;
  }
  .overview .timetable tr td {
    padding: 3.1rem 0;
  }
  .overview .timetable tr td:last-of-type {
    width: 15%;
    padding-right: 3%;
  }
  .overview .timetable:not(:first-of-type) {
    margin-bottom: 3rem;
  }
  .overview .img_map {
    margin: 0;
  }
  .overview .gmap {
    margin-top: 4.5rem;
    height: 50rem;
  }
}
#tel_up {
  width: 100%;
  height: 3.8rem;
  position: fixed;
  bottom: 0.2rem;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 4.1rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  gap: 0;
}
#tel_up ul li {
  width: calc((100% - 1.2rem) / 2);
  height: 100%;
}
#tel_up ul li .tel, #tel_up ul li .rsv {
  height: 100%;
  font-size: 1.2rem;
  padding: 0;
  min-height: inherit;
  box-shadow: 0 0 6px rgba(var(--rgb_shadow), 0.2);
}
#tel_up ul li:first-of-type[\:has\(.tel\)] {
  width: calc(100% - 0.6rem);
}
#tel_up ul li:first-of-type:has(.tel) {
  width: calc(100% - 0.6rem);
}
#tel_up ul li:first-of-type[\:has\(.tel\)] .tel {
  font-size: 1.3rem;
}
#tel_up ul li:first-of-type:has(.tel) .tel {
  font-size: 1.3rem;
}
#tel_up #pageup {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  margin-right: 0.3rem;
  position: relative;
  background: var(--clr_white);
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(var(--rgb_shadow), 0.2);
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
  font-size: 1.4rem;
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  color: var(--clr_blue_dark);
  background: var(--clr_white);
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  border: 1px solid rgba(var(--rgb_blue_dark), 0.5);
  border-radius: 7px;
  display: grid;
  place-items: center;
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 100%;
    bottom: 3rem;
    right: 0;
    left: 0;
    background: none;
    box-shadow: none;
    padding: 0;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  #tel_up {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48em), print {
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 5.8rem;
    height: 5.8rem;
    margin: 0 3rem 0 auto;
    box-shadow: 0 0 10px rgba(var(--rgb_shadow), 0.2);
  }
  #tel_up #pageup::before {
    font-size: 2.3rem;
  }
}
.footer {
  padding: 0 0 4rem;
  background: var(--clr_green);
}
.footer .copy {
  display: block;
  text-align: center;
  color: var(--clr_white);
  padding: 1rem;
  font-size: 1.2rem;
}
.footer .footer_nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4rem 0 0;
  }
  .footer .copy {
    padding: 2.5rem 1rem;
    font-size: 1.8rem;
    margin-top: 5rem;
    border-top: 1px solid var(--clr_white);
  }
  .footer .footer_nav {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    color: var(--clr_white);
  }
  .footer .footer_nav .gnav {
    width: 36rem;
  }
  .footer .footer_nav .gnav > li:not(:last-of-type) {
    margin-bottom: 0.2rem;
  }
  .footer .footer_nav .gnav > li.treatment {
    display: none;
  }
  .footer .footer_nav .gnav > li a {
    font-size: 1.8rem;
  }
  .footer .footer_nav .subnav {
    width: calc(100% - 42rem);
    margin-top: 0;
  }
  .footer .footer_nav .subnav > dt {
    border-bottom: 1px solid var(--clr_white);
    font-size: 1.8rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .footer .footer_nav .subnav > dd > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer .footer_nav .subnav > dd > ul > li {
    width: calc((100% - 4.5rem) / 4);
    padding-left: 1rem;
    -webkit-text-size-adjust: none;
    position: relative;
  }
  .footer .footer_nav .subnav > dd > ul > li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 5px;
    height: 2px;
    background: var(--clr_white);
  }
  .footer .footer_nav .subnav > dd > ul > li a {
    font-size: 1.6rem;
  }
  .footer .footer_nav .subnav > dd > ul:not(:first-of-type) {
    margin-top: 1rem;
  }
  .footer .footer_nav li a {
    opacity: 1;
  }
  .footer .footer_nav li a:hover {
    text-decoration: underline;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  opacity: 0;
  animation: fade 1s ease-out 0.4s 1 normal forwards;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 28rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 28rem !important;
}
.keyvsl #keyvsl .slick-list div img {
  width: 100%;
  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_yellow);
}
.keyvsl .catch_copy {
  color: var(--clr_blue_dark);
  font-size: 1.45rem;
  line-height: 1.35;
  padding: 3rem 2rem 1rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  text-shadow: 0 0 5px var(--clr_white), 0 0 5px var(--clr_white), 0 0 5px var(--clr_white), 0 0 5px var(--clr_white), 0 0 5px var(--clr_white);
  background: url("../img/kv_txt_deco.png") top left/50% auto no-repeat;
  position: absolute;
  top: 16.5rem;
  left: 0;
  opacity: 0;
  animation: fade_up 0.8s ease-out 1s 1 normal forwards;
}
.keyvsl .open_nairan {
  background: repeating-linear-gradient(90deg, var(--clr_blue_light), var(--clr_blue_light) 0.8rem, rgba(var(--rgb_white), 0.25) 0.8rem, rgba(var(--rgb_white), 0.25) 1.6rem), var(--clr_blue_light);
  padding: 1.5rem 0;
}
.keyvsl .open_nairan .open {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 1.5rem 0rem;
  line-height: 1.6;
  letter-spacing: 0.15rem;
  color: var(--clr_blue_dark);
  background: url("../img/kv_info_bg.webp") center center/cover no-repeat;
  position: relative;
  font-size: 1.6rem;
  border-radius: 10px;
  border: 3px solid var(--clr_white);
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
  opacity: 0;
  animation: fade_up 0.8s ease-out 1.3s 1 normal forwards;
}
.keyvsl .open_nairan .open .day {
  color: var(--clr_white);
  text-shadow: none;
  font-size: 80%;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.keyvsl .open_nairan .open .day::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: var(--clr_blue_dark);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -0.35rem;
  z-index: -1;
}
.keyvsl .open_nairan .open .renewal {
  display: block;
  font-weight: 700;
}
.keyvsl .open_nairan .open::after {
  content: "";
  display: block;
  width: 5rem;
  height: 7rem;
  background: url("../img/kv_info_deco.svg") center center/contain no-repeat;
  position: absolute;
  bottom: -1rem;
  right: -1.4rem;
}
.keyvsl .open_nairan .nairan {
  text-align: center;
  padding: 0.5rem;
  width: 60%;
  margin: 1.3rem auto 0;
  color: var(--clr_white);
  background: var(--clr_yellow);
  border-radius: 10px;
  font-size: 1.4rem;
}
.keyvsl .open_nairan.trigger > li {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.keyvsl .open_nairan.trigger > li:nth-child(2) {
  animation-delay: 0.4s;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 85rem;
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 85rem !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: 3rem;
    line-height: 1.5;
    margin: 0 auto;
    width: 1100px;
    top: auto;
    bottom: 4rem;
    right: 0;
    padding: 6.5rem 0 0 10rem;
    background-size: 33.7rem;
    transform: translateX(-10rem);
    animation: fade_catchcopy 0.8s ease-out 0.5s 1 normal forwards;
  }
  .keyvsl .open_nairan {
    position: absolute;
    bottom: 2.5rem;
    right: 0;
    left: 0;
    width: 1100px;
    margin: 0 auto;
    background: none;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
  }
  .keyvsl .open_nairan .open {
    width: 32.7rem;
    border-radius: 20px;
    font-size: 3rem;
    line-height: 1.6;
    padding: 1.6rem 0 2.4rem;
    margin: 0 0 0 auto;
    border-width: 4px;
    letter-spacing: 0rem;
  }
  .keyvsl .open_nairan .open::after {
    width: 10.2rem;
    height: 12.3rem;
  }
  .keyvsl .open_nairan .open .day {
    font-size: 2rem;
  }
  .keyvsl .open_nairan .open .day::after {
    top: 0.1rem;
    left: -0.5rem;
    width: 3rem;
    height: 3rem;
  }
  .keyvsl .open_nairan .open .txt_small {
    font-size: 2rem;
  }
  .keyvsl .open_nairan .open .renewal .txt_small {
    font-size: 2.4rem;
  }
  .keyvsl .open_nairan .nairan {
    text-align: center;
    padding: 0.5rem;
    width: 60%;
    margin: 0 0 0 2rem;
    color: var(--clr_white);
    background: var(--clr_yellow);
    border-radius: 6px;
    font-size: 2.4rem;
    width: 51rem;
  }
  .keyvsl .open_nairan.trigger > li {
    animation: fade_up 0.8s ease-out 1.2s 1 normal forwards;
  }
  .keyvsl .open_nairan.trigger > li:nth-child(2) {
    animation-delay: 1.5s;
  }
}
.top_tit02 {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 0;
}
.top_tit02::after {
  content: attr(data-ruby);
  color: var(--clr_white);
  font-size: 4.2rem;
  display: block;
  letter-spacing: 0.4rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  line-height: 1;
}
.top_tit02::before {
  content: " ";
  display: block;
  width: 0.8em;
  height: 0.8em;
  margin: 0 auto 0.3rem;
  background: url("../img/top_tit02.svg") center center/contain no-repeat;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 4rem;
    margin-bottom: 4.5rem;
  }
  .top_tit02::after {
    font-size: 10rem;
    letter-spacing: 1rem;
    bottom: -1.5rem;
  }
  .top_tit02::before {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 1rem;
  }
}
.index_info {
  padding: 4rem 0;
  background: url("../img/a_bgL.webp") top 0 left 0/60% auto no-repeat, url("../img/a_bgR.webp") bottom 0 right 0/60% auto no-repeat, var(--clr_green_light);
}
@media screen and (min-width: 48em), print {
  .index_info {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.index_info .info_tit {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  margin-bottom: 2rem;
  opacity: var(--anime-opacity);
}
.index_info .info_tit::before, .index_info .info_tit::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.index_info .info_tit::before {
  background-image: url("../img/tit_infoL.svg");
}
.index_info .info_tit::after {
  background-image: url("../img/tit_infoR.svg");
}
.index_info .info_lst {
  line-height: 1.4;
  border-top: 1px solid var(--clr_blue);
  border-bottom: 1px solid var(--clr_blue);
  margin-bottom: 2rem;
  opacity: var(--anime-opacity);
}
.index_info .info_lst dt {
  margin: 0 0 1.5rem;
  color: var(--clr_blue_dark);
  cursor: pointer;
  font-size: 1.4rem;
  position: relative;
  padding: 1.5rem 1rem 0 1.8rem;
}
.index_info .info_lst dt::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url("../img/info_arrow.svg") center center/contain no-repeat;
  position: absolute;
  top: 1.8rem;
  left: 0.2rem;
  transition: 0.2s;
}
.index_info .info_lst dt.open::before {
  transform: scale(1, -1);
}
.index_info .info_lst dt:not(:first-of-type) {
  border-top: 1px dashed var(--clr_blue);
}
.index_info .info_lst dd {
  margin: -0.5rem 0 1.6rem;
  padding: 0 1rem 0 1.8rem;
  word-wrap: break-word;
}
.index_info .info_lst dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.index_info .info_lst dd a {
  color: var(--clr_blue);
  text-decoration: underline;
}
.index_info .info_lst dd a:hover {
  color: var(--clr_green);
  text-decoration: underline;
}
.index_info .timetable {
  opacity: var(--anime-opacity);
}
.index_info .timetable:not(:first-of-type) {
  margin-top: 1.5rem;
}
.index_info .timetable.trigger {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_info.trigger .info_tit {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_info.trigger .info_lst {
  animation: fade_up 0.8s ease-out 0.4s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_info {
    padding: 10rem 0;
    background: url("../img/a_bgL.webp") top 0 left calc(50% - 61rem)/78.3rem auto no-repeat, url("../img/a_bgR.webp") bottom 0 right calc(50% - 61.5rem)/76.4rem auto no-repeat, var(--clr_green_light);
  }
  .index_info > .wrap {
    width: 80.05rem;
  }
  .index_info .info_tit {
    gap: 0 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.15rem;
  }
  .index_info .info_tit::before, .index_info .info_tit::after {
    width: 2.2rem;
    height: 1rem;
  }
  .index_info .info_lst {
    margin-bottom: 5.5rem;
  }
  .index_info .info_lst dt {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding-left: 2.5rem;
    padding-top: 3rem;
  }
  .index_info .info_lst dt::before {
    top: 3.5rem;
  }
  .index_info .info_lst dd {
    font-size: 1.8rem;
    margin: -1rem 0 2.5rem;
    padding-left: 2.5rem;
    line-height: 1.6;
  }
  .index_info .timetable:not(:first-of-type) {
    margin-top: 3rem;
  }
}

.index_symptoms {
  background: repeating-linear-gradient(135deg, rgba(var(--rgb_yellow), 0.5), rgba(var(--rgb_yellow), 0.5) 1px, var(--clr_yellow_light02) 1px, var(--clr_yellow_light02) 6px), var(--clr_yellow_light02);
  padding: 4.5rem 0 8.5rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .index_symptoms {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.index_symptoms::after {
  margin-top: 20rem;
  content: "";
  display: block;
  width: 42%;
  height: 11rem;
  background: url("../img/index_symptoms_img.webp") center center/contain no-repeat;
  position: absolute;
  bottom: 0rem;
  right: 0;
}
.index_symptoms > .wrap {
  margin: 0 1.5rem;
  padding: 0 1.5rem 2.5rem;
  background: var(--clr_white);
  border-radius: 20px;
  border: 1px solid var(--clr_green);
  box-shadow: 0 0 0 0.5rem var(--clr_white);
  position: relative;
  opacity: var(--anime-opacity);
}
.index_symptoms > .wrap::after {
  content: "";
  display: block;
  width: 10rem;
  height: 5rem;
  background: url("../img/index_symptoms_fukidashi.svg") center center/contain no-repeat;
  position: absolute;
  bottom: -6rem;
  right: calc(42% - 0.5rem);
}
.index_symptoms > .wrap .symptoms_tit {
  line-height: 1.3;
  color: var(--clr_white);
  background: var(--clr_green);
  border-radius: 0 0 20px 20px;
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}
.index_symptoms > .wrap .lst_ul.-check > li {
  border-bottom: 1px dashed var(--clr_blue);
  padding-bottom: 0.6rem;
  width: -moz-fit-content;
  width: fit-content;
}
.index_symptoms.trigger > .wrap {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_symptoms {
    padding: 10rem 0 12rem;
  }
  .index_symptoms::after {
    margin-top: 20rem;
    width: 34.2rem;
    height: 27.9rem;
    right: calc(50% - 45rem);
  }
  .index_symptoms > .wrap {
    width: 90rem;
    margin: 0 auto;
    padding: 0 5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 0 0 1rem var(--clr_white);
  }
  .index_symptoms > .wrap::after {
    width: 14.1rem;
    height: 6rem;
    bottom: -8rem;
    right: calc(50% - 14rem);
  }
  .index_symptoms > .wrap .symptoms_tit {
    line-height: 1.3;
    border-radius: 0 0 30px 30px;
    font-size: 2.8rem;
    padding: 2rem 6rem;
    margin: 0 auto 2rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .index_symptoms > .wrap .lst_ul.-check > li {
    padding-bottom: 0.6rem;
    letter-spacing: 0.2rem;
  }
  .index_symptoms > .wrap .lst_ul.-check > li:not(:last-of-type) {
    margin-bottom: 1.8rem;
  }
}

.index_features {
  background: url("../img/index_features_bg01.svg") top 2rem left/40% auto no-repeat, url("../img/index_features_bg02.svg") top 132rem right -2rem/40% auto no-repeat, url("../img/index_features_bg03.svg") bottom 0rem left/40% auto no-repeat, repeating-linear-gradient(90deg, var(--clr_blue_light), var(--clr_blue_light) 0.8rem, rgba(var(--rgb_white), 0.25) 0.8rem, rgba(var(--rgb_white), 0.25) 1.6rem), var(--clr_blue_light);
  counter-reset: number 0;
  padding: 4rem 0 8rem;
}
@media screen and (min-width: 48em), print {
  .index_features {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.index_features .feature_content {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem 0;
  margin-top: 3.5rem;
}
.index_features .feature_content > section {
  width: 100%;
  background: var(--clr_white);
  border-radius: 10px;
  padding: 3rem 2rem 2rem;
  counter-increment: number 1;
  position: relative;
  opacity: var(--anime-opacity);
}
.index_features .feature_content > section::before {
  color: var(--clr_white);
  background: var(--clr_green);
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  display: inline-block;
  content: "Feature." counter(number, decimal-leading-zero);
  border-radius: 50vh;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  padding: 0rem 2rem;
  letter-spacing: 0.08rem;
}
.index_features .feature_content > section .feature_tit03 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 0rem 0 1.5rem;
  color: var(--clr_blue);
  line-height: 1.4;
}
.index_features .feature_content > section .feature_img {
  width: 100%;
  margin: 1.5rem auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 0 3px rgba(var(--rgb_green), 0.5);
}
.index_features .feature_content > section .feature_img img {
  width: 100%;
}
.index_features .feature_content > section p {
  margin-bottom: 0;
}
.index_features .feature_content > section:nth-of-type(even)::before {
  background: var(--clr_yellow);
}
.index_features .feature_content > section:nth-of-type(even) .feature_img {
  box-shadow: 4px 4px 0 3px rgba(var(--rgb_yellow), 0.5);
}
.index_features .feature_content > section.trigger {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_features {
    background: url("../img/index_features_bg01.svg") top 16rem left calc(50% - 60.5rem)/36.8rem auto no-repeat, url("../img/index_features_bg02.svg") top 85rem right calc(50% - 54.5rem)/25.5rem auto no-repeat, url("../img/index_features_bg03.svg") bottom 26rem left calc(50% - 58rem)/29.8rem auto no-repeat, repeating-linear-gradient(90deg, var(--clr_blue_light), var(--clr_blue_light) 0.8rem, rgba(var(--rgb_white), 0.25) 0.8rem, rgba(var(--rgb_white), 0.25) 1.6rem), var(--clr_blue_light);
    padding: 14rem 0 26rem;
  }
  .index_features .feature_content {
    justify-content: center;
    gap: 6rem 1rem;
    margin-top: 6rem;
  }
  .index_features .feature_content > section {
    width: calc((100% - 2rem) / 3);
    border-radius: 20px;
    padding: 3.5rem 2.6rem 3rem;
  }
  .index_features .feature_content > section::before {
    top: -1.8rem;
    font-size: 2rem;
    padding: 0.2rem 3rem;
  }
  .index_features .feature_content > section .feature_tit03 {
    font-size: 2.4rem;
    margin: 0rem 0 1.2rem;
    line-height: 1.4;
    height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .index_features .feature_content > section .feature_img {
    width: 30rem;
    margin: 0 auto 1.2rem;
  }
  .index_features .feature_content > section p {
    line-height: 1.6;
  }
  .index_features .feature_content.trigger > section {
    animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
  }
  .index_features .feature_content.trigger > section:nth-child(1) {
    animation-delay: 0.3s;
  }
  .index_features .feature_content.trigger > section:nth-child(2) {
    animation-delay: 0.6s;
  }
  .index_features .feature_content.trigger > section:nth-child(3) {
    animation-delay: 0.9s;
  }
  .index_features .feature_content.trigger > section:nth-child(4) {
    animation-delay: 1.2s;
  }
  .index_features .feature_content.trigger > section:nth-child(5) {
    animation-delay: 1.5s;
  }
  .index_features .feature_content.trigger > section:nth-child(6) {
    animation-delay: 1.8s;
  }
  .index_features .feature_content.trigger > section:nth-child(7) {
    animation-delay: 2.1s;
  }
  .index_features .feature_content.trigger > section:nth-child(8) {
    animation-delay: 2.4s;
  }
  .index_features .feature_content.trigger > section:nth-child(9) {
    animation-delay: 2.7s;
  }
  .index_features .feature_content.trigger > section:nth-child(10) {
    animation-delay: 3s;
  }
  .index_features .feature_content.trigger > section:nth-child(11) {
    animation-delay: 3.3s;
  }
  .index_features .feature_content.trigger > section:nth-child(12) {
    animation-delay: 3.6s;
  }
  .index_features .feature_content.trigger > section:nth-child(13) {
    animation-delay: 3.9s;
  }
  .index_features .feature_content.trigger > section:nth-child(14) {
    animation-delay: 4.2s;
  }
  .index_features .feature_content.trigger > section:nth-child(15) {
    animation-delay: 4.5s;
  }
  .index_features .feature_content.trigger > section:nth-child(16) {
    animation-delay: 4.8s;
  }
}

.index_greeting {
  padding: 6rem 0 4rem;
  background: url("../img/index_greeting_bgL.svg") bottom left/60% auto no-repeat, linear-gradient(to bottom, transparent 4.8rem, var(--clr_yellow_light) 4.8rem);
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: -6rem;
}
@media screen and (min-width: 48em), print {
  .index_greeting {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.index_greeting::before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: url("../img/index_greeting_top.svg") top center/100% auto no-repeat;
  position: absolute;
  top: 0rem;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.index_greeting::after {
  content: "";
  display: block;
  width: 45vw;
  height: 55vw;
  background: url("../img/index_greeting_bgR.svg") center center/contain no-repeat;
  position: absolute;
  top: 2rem;
  right: -5rem;
  z-index: -1;
}
.index_greeting .greeting_content .dr_message {
  line-height: 1.75;
  opacity: var(--anime-opacity);
}
.index_greeting .greeting_content .dr_message .dr_name {
  text-align: right;
  font-size: 105%;
}
.index_greeting .greeting_content .dr_img {
  margin: 2rem auto 0;
  opacity: var(--anime-opacity);
}
.index_greeting .greeting_content .dr_img .dr_photo {
  position: relative;
  width: 70%;
  margin: 0 auto 1.5rem;
  position: relative;
}
.index_greeting .greeting_content .dr_img .dr_photo::after {
  content: "";
  display: block;
  width: 50%;
  height: 70%;
  background: url("../img/index_doctor_deco.svg") bottom right/contain no-repeat;
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
}
.index_greeting .greeting_content .dr_img .dr_photo img {
  border-radius: 14px;
}
.index_greeting.trigger .dr_message {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_greeting.trigger .dr_img {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_greeting {
    background: url("../img/index_greeting_bgL.svg") bottom left calc(50% - 63.5rem)/72.5rem auto no-repeat, linear-gradient(to bottom, transparent 36rem, var(--clr_yellow_light) 36rem);
    padding: 27rem 0 13.5rem;
    margin-top: -30rem;
  }
  .index_greeting::before {
    width: 200rem;
    height: 36.7rem;
    background: url("../img/index_greeting_top.svg") top center/100% auto no-repeat;
  }
  .index_greeting::after {
    width: 43.6rem;
    height: 39.8rem;
    top: 25rem;
    right: calc(50% - 108rem);
  }
  .index_greeting .greeting_content {
    display: flex;
    justify-content: space-between;
  }
  .index_greeting .greeting_content .dr_message {
    width: 70rem;
  }
  .index_greeting .greeting_content .dr_message p {
    line-height: 2;
  }
  .index_greeting .greeting_content .dr_message .dr_name {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
  .index_greeting .greeting_content .dr_img {
    margin: 2rem 0 0 auto;
  }
  .index_greeting .greeting_content .dr_img .dr_photo {
    width: 36rem;
    margin-bottom: 2rem;
  }
  .index_greeting .greeting_content .dr_img .dr_photo::after {
    width: 16.7rem;
    height: 23.4rem;
    right: -3rem;
    bottom: -2.5rem;
  }
  .index_greeting .greeting_content .dr_img .dr_photo img {
    border-radius: 20px;
  }
  .index_greeting.trigger .dr_message {
    animation: fade_right 0.8s ease-out 0.2s 1 normal forwards;
  }
  .index_greeting.trigger .dr_img {
    animation: fade_left 0.8s ease-out 0.2s 1 normal forwards;
  }
}

.index_medical {
  padding: 4rem 0;
  background: url("../img/index_medical_bgL.svg") top 6rem left -1rem/40% auto no-repeat, url("../img/index_medical_bgR.svg") bottom -0.5rem right 0rem/70% auto no-repeat, var(--clr_green_light);
}
@media screen and (min-width: 48em), print {
  .index_medical {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.index_medical .medical_lst > dt {
  border-radius: 6px;
  text-align: center;
  color: var(--clr_white);
  background: var(--clr_green);
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.index_medical .medical_lst > dt.-internal {
  background: var(--clr_green);
}
.index_medical .medical_lst > dt.-cardiology {
  background: var(--clr_blue);
}
.index_medical .medical_lst > dd > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.index_medical .medical_lst > dd > ul > li {
  width: calc(50% - 0.5rem);
  background: var(--clr_white);
  opacity: var(--anime-opacity);
}
.index_medical .medical_lst > dd > ul > li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1.5rem 0rem 0.5rem;
  line-height: 1.35;
}
.index_medical .medical_lst > dd > ul > li a::before {
  content: "";
  display: block;
  border-radius: 50vh;
  width: 75%;
  aspect-ratio: 9/7;
  margin: 0 auto 1rem;
  background-size: 55% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--clr_yellow_light02);
}
.index_medical .medical_lst > dd > ul > li a::after {
  font-family: "fontello";
  content: "\f006";
  color: var(--clr_yellow);
  margin-left: 0.7rem;
  font-size: 90%;
}
.index_medical .medical_lst > dd > ul > li a.icon_internal::before {
  background-image: url("../img/icon_internal.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_lifestyle_related::before {
  background-image: url("../img/icon_lifestyle_related.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_high_blood_pressure::before {
  background-image: url("../img/icon_high_blood_pressure.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_diabetes::before {
  background-image: url("../img/icon_diabetes.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_dyslipidemia::before {
  background-image: url("../img/icon_dyslipidemia.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_fatty_liver::before {
  background-image: url("../img/icon_fatty_liver.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_gout::before {
  background-image: url("../img/icon_gout.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_vaccination::before {
  background-image: url("../img/icon_vaccination.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_heart_failure::before {
  background-image: url("../img/icon_heart_failure.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_arrhythmia::before {
  background-image: url("../img/icon_arrhythmia.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_fertility::before {
  background-image: url("../img/icon_fertility.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_myocardial_infarction::before {
  background-image: url("../img/icon_myocardial_infarction.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_angina_pectoris::before {
  background-image: url("../img/icon_angina_pectoris.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_pad::before {
  background-image: url("../img/icon_pad.svg");
}
.index_medical .medical_lst > dd > ul > li a.icon_arteriosclerosis::before {
  background-image: url("../img/icon_arteriosclerosis.svg");
}
.index_medical .medical_lst > dd:not(:last-of-type) {
  margin-bottom: 3rem;
}
.index_medical .medical_lst > dd.trigger > ul li {
  animation: fade_up 0.8s ease-out 0.2s 1 normal forwards;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(1) {
  animation-delay: 0.3s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(2) {
  animation-delay: 0.6s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(3) {
  animation-delay: 0.9s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(4) {
  animation-delay: 1.2s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(5) {
  animation-delay: 1.5s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(6) {
  animation-delay: 1.8s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(7) {
  animation-delay: 2.1s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(8) {
  animation-delay: 2.4s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(9) {
  animation-delay: 2.7s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(10) {
  animation-delay: 3s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(11) {
  animation-delay: 3.3s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(12) {
  animation-delay: 3.6s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(13) {
  animation-delay: 3.9s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(14) {
  animation-delay: 4.2s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(15) {
  animation-delay: 4.5s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(16) {
  animation-delay: 4.8s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(17) {
  animation-delay: 5.1s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(18) {
  animation-delay: 5.4s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(19) {
  animation-delay: 5.7s;
}
.index_medical .medical_lst > dd.trigger > ul li:nth-child(20) {
  animation-delay: 6s;
}
@media screen and (min-width: 48em), print {
  .index_medical {
    padding: 13.5rem 0 12rem;
    background: url("../img/index_medical_bgL.svg") top 46rem left calc(50% - 77rem)/36.6rem auto no-repeat, url("../img/index_medical_bgR.svg") bottom 14rem right calc(50% - 69rem)/46rem auto no-repeat, var(--clr_green_light);
  }
  .index_medical .medical_lst {
    width: 103rem;
    margin-top: 6.5rem;
  }
  .index_medical .medical_lst > dt {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .index_medical .medical_lst > dd > ul > li {
    width: calc((100% - 4rem) / 4);
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .index_medical .medical_lst > dd > ul > li::before, .index_medical .medical_lst > dd > ul > li::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .index_medical .medical_lst > dd > ul > li::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 4px solid var(--clr_white);
  }
  .index_medical .medical_lst > dd > ul > li::after {
    border-radius: 50vh;
    width: 18rem;
    height: 14rem;
    margin: 0 auto 1rem;
    background-size: 55% auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--clr_yellow_light02);
    top: 3.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
  }
  .index_medical .medical_lst > dd > ul > li::after {
    transition: 0.4s;
  }
  .index_medical .medical_lst > dd > ul > li a {
    font-size: 2rem;
    padding: 3.5rem 0 1rem;
  }
  .index_medical .medical_lst > dd > ul > li a::before {
    width: 18rem;
    height: 14rem;
    background-size: 10rem;
    margin-bottom: 1.7rem;
    transition: 0.4s;
  }
  .index_medical .medical_lst > dd > ul > li a::after {
    margin-left: 1.2rem;
  }
  .index_medical .medical_lst > dd > ul > li a:hover::before {
    background-color: var(--clr_white);
  }
  .index_medical .medical_lst > dd > ul > li:hover::after {
    transform: scale(210%);
  }
  .index_medical .medical_lst > dd > ul > li[\:has\(\%3E\%20a\[href\%3D\%22\%22\]\)]::after, .index_medical .medical_lst > dd > ul > li[\:has\(\%3E\%20a\:not\(\[href\]\)\)]::after {
    display: none;
  }
  .index_medical .medical_lst > dd > ul > li:has(> a[href=""])::after, .index_medical .medical_lst > dd > ul > li:has(> a:not([href]))::after {
    display: none;
  }
  .index_medical .medical_lst > dd:not(:last-of-type) {
    margin-bottom: 5rem;
  }
}

body:not(.index) .main {
  padding: 4rem 1rem 1rem;
  background: url("../img/a_bgL.webp") top 0 left 0/60% auto no-repeat, url("../img/a_bgR.webp") bottom 0 right 0/60% auto no-repeat, var(--clr_yellow_light);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]) {
  color: var(--clr_blue);
  text-decoration: underline;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]):hover {
  color: var(--clr_green);
  text-decoration: underline;
}
body:not(.index) .main > section, body:not(.index) .main > div:not(.box) {
  background: var(--clr_white);
  border-radius: 20px;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    padding: 10rem 0 2rem;
    background: url("../img/a_bgL.webp") top 0 left calc(50% - 61rem)/78.3rem auto no-repeat, url("../img/a_bgR.webp") bottom 0 right calc(50% - 61.5rem)/76.4rem auto no-repeat, var(--clr_yellow_light);
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  body:not(.index) .main {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main > section, body:not(.index) .main > div:not(.box) {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    padding: 6rem 5rem;
  }
}

.breadcrumb {
  display: flex;
  font-size: 1.2rem;
  margin: 4rem 0rem 1rem;
  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_txt) !important;
  text-decoration: none !important;
}

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

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div {
  position: relative;
}
.gallery .gallery_slider div div {
  border-radius: 20px;
  overflow: hidden;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: var(--clr_white);
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(var(--rgb_green), 0.5);
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\e4a2";
  color: var(--clr_blue);
  font-size: 2rem;
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\e4a1";
}
.gallery .gallery_slider .slick-dots {
  display: flex;
  justify-content: 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);
}
.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;
  border-radius: 8px;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div div {
    border-radius: 30px;
  }
  .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;
    border-radius: 12px;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_green);
  }
}
.access .main .acs_dl dd {
  margin-bottom: 2rem;
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .acs_flex {
    display: flex;
    justify-content: space-between;
  }
  .access .main .acs_flex > div, .access .main .acs_flex > section, .access .main .acs_flex > dl {
    width: 48%;
  }
  .access .main .acs_flex .acs_dl dd {
    margin-bottom: 4rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

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