@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: #333333;
  --rgb_txt: 51,51, 51;
  --clr_border: #707070;
  --rgb_border: 112,112, 112;
  --clr_white: #fff;
  --rgb_white: 255,255, 255;
  --clr_navy: #224077;
  --rgb_navy: 34,64, 119;
  --clr_navy_light: #5276B8;
  --rgb_navy_light: 82,118, 184;
  --clr_navy_light02: #4669A1;
  --rgb_navy_light02: 70,105, 161;
  --clr_navy_light03: #98ADCF;
  --rgb_navy_light03: 152,173, 207;
  --clr_navy_light04: #E5EEFF;
  --rgb_navy_light04: 229,238, 255;
  --clr_yellow: #CFBB13;
  --rgb_yellow: 207,187, 19;
  --clr_yellow_light: #FCFAE8;
  --rgb_yellow_light: 252,250, 232;
  --clr_yellow_light02: #D9CB52;
  --rgb_yellow_light02: 217,203, 82;
  --clr_yellow_dark: #FFE61F;
  --rgb_yellow_dark: 255,230, 31;
  --clr_yellow_dark02: #F5C72D;
  --rgb_yellow_dark02: 245,199, 45;
  --clr_yellow_dark03: #FFF56B;
  --rgb_yellow_dark03: 255,245, 107;
  --clr_gold: #7B6E00;
  --rgb_gold: 123,110, 0;
  --clr_gold_light: #9E9D97;
  --rgb_gold_light: 158,157, 151;
  --clr_gold_light02: #D8D9B4;
  --rgb_gold_light02: 216,217, 180;
  --clr_blue: #00A0E9;
  --rgb_blue: 0,160, 233;
  --clr_blue_light: #F1F6FF;
  --rgb_blue_light: 241,246, 255;
  --clr_gray: #CCCCCC;
  --rgb_gray: 204,204, 204;
  --clr_gray_light: #F7F7F7;
  --rgb_gray_light: 247,247, 247;
  --clr_gray_dark: #C3C3C3;
  --rgb_gray_dark: 195,195, 195;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flip {
  0% {
    transform: perspective(800px) rotateY(-90deg); /* 左に倒れた状態 */
    opacity: 0;
    transform-origin: left center; /* 左側面を軸に回転 */
  }
  100% {
    transform: perspective(800px) rotateY(0deg); /* 正面を向く */
    opacity: 1;
    transform-origin: left center;
  }
}
@keyframes flipR {
  0% {
    transform: perspective(800px) rotateY(90deg); /* 右に倒れた状態 */
    opacity: 0;
    transform-origin: right center; /* 右側面を軸に回転 */
  }
  100% {
    transform: perspective(800px) rotateY(0deg); /* 正面を向く */
    opacity: 1;
    transform-origin: right center;
  }
}
.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%;
}

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

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

.img_c {
  margin: 1rem auto;
}

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

.tate {
  max-width: 60%;
}

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

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

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

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

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

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

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

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

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

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

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

.tbl_time {
  padding: 2rem;
  border-radius: 1.2rem;
  color: var(--clr_navy);
  font-weight: 700;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.tbl_time::before, .tbl_time::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.tbl_time::before {
  top: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  background: var(--clr_white);
  z-index: -1;
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  border-radius: 0.8rem;
}
.tbl_time::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(160deg, var(--clr_navy_light), var(--clr_navy));
  z-index: -2;
  width: 100%;
  height: 100%;
}
.tbl_time table {
  width: 100%;
  font-size: 1.35rem;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px dashed var(--clr_navy_light03);
}
.tbl_time table tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  border-bottom: 1px dashed var(--clr_navy_light03);
}
.tbl_time table tr th[scope=col]:first-child {
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.324rem;
  padding-right: 3%;
}
.tbl_time table tr th.time {
  text-align: right;
  padding-right: 3%;
  white-space: nowrap;
  width: 30%;
}
.tbl_time table tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  line-height: 1;
  font-size: 80%;
}
.tbl_time .timetable_caption {
  font-size: 1.25rem;
  margin-top: 1rem;
  line-height: 1.6;
}
.tbl_time .timetable_caption p {
  margin: 0;
}
.tbl_time .timetable_caption .lst_ul_disc {
  margin: 0.2rem 0;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    border-radius: 2.4rem;
    padding: 2.5rem 3rem;
  }
  .tbl_time::before {
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border-radius: 2rem;
  }
  .tbl_time table {
    font-size: 2.2rem;
    width: 66rem;
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
  }
  .tbl_time table tr th[scope=col] {
    padding: 0.6rem 0;
  }
  .tbl_time table tr th[scope=col]:first-child {
    letter-spacing: 0.792rem;
    padding-right: 3rem;
    white-space: normal;
    width: 26%;
  }
  .tbl_time table tr th[scope=col]:last-child {
    width: 14%;
    padding-right: 3%;
  }
  .tbl_time table tr th.time {
    padding-right: 3rem;
    white-space: normal;
    letter-spacing: 0.132rem;
    width: auto;
  }
  .tbl_time table tr td {
    padding: 1.2rem 0;
    font-size: 100%;
  }
  .tbl_time table tr td:last-child {
    width: 14%;
    padding-right: 3%;
  }
  .tbl_time .timetable_caption {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    letter-spacing: 0.096rem;
  }
  .tbl_time .timetable_caption .lst_ul_disc {
    margin: 0rem 0;
  }
}

.gmap {
  width: 100%;
}

.tit_01 {
  font-size: 2.2rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  background: url(../img/tit_01.webp) center/auto 100% no-repeat;
  color: var(--clr_navy_light02);
  font-weight: 500;
  line-height: 1.2;
  min-height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tit_02 {
  color: var(--clr_navy_light02);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.36rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding: 2rem 0 2.8rem;
  background: url("../img/tit_02.png") center center/auto 9.2rem no-repeat;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--clr_white);
  background: var(--clr_navy);
  padding: 0.7rem 1.5rem;
  letter-spacing: 0.072rem;
}

.tit_04 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
  padding: 0.4rem 0 0.6rem 3.8rem;
  color: var(--clr_navy_light02);
  border-bottom: 1px solid var(--clr_navy_light02);
  letter-spacing: 0.066rem;
  background: url("../img/tit_04.svg") center left 0.5rem/2.6rem auto no-repeat;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 0 0 0.6rem 1rem;
  color: var(--clr_yellow);
  letter-spacing: 0.06rem;
  font-weight: 500;
  border-bottom: 1px dashed var(--clr_yellow);
}

.tit_06 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--clr_navy_light02);
  padding: 0 0 0.6rem 1rem;
  letter-spacing: 0.06rem;
  border-bottom: 1px dashed var(--clr_navy_light02);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.6rem;
    min-height: 12rem;
    background-size: 200rem 100%;
    margin-bottom: 0.5rem;
  }
  .tit_01 span {
    width: calc(1200px - 10rem);
    margin: 2rem auto;
  }
  .tit_02 {
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 1.45;
    letter-spacing: 0.72rem;
    padding: 3.4rem 0 4.4rem;
    background-size: auto 12.651rem;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding: 1.25rem 2.2rem;
    letter-spacing: 0.144rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    letter-spacing: 0.132rem;
    padding: 0.9rem 0 0.9rem 5.2rem;
    background-size: 3.4rem auto;
  }
  .tit_05 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 0 1rem 1.6rem;
    letter-spacing: 0.12rem;
  }
  .tit_06 {
    font-size: 2rem;
    padding: 0 0 1rem 1.6rem;
    letter-spacing: 0.12rem;
  }
}
.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 {
  font-family: "fontello";
  content: "\f111";
  color: var(--clr_navy_light02);
  position: absolute;
  left: 0.4rem;
  font-size: 70%;
  top: 0.4rem;
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
  left: 0;
  top: 0;
  font-size: 100%;
}

.lst_ul_disc {
  line-height: 1.4;
}
.lst_ul_disc > li {
  padding-left: 1em;
  position: relative;
}
.lst_ul_disc > li:not(:last-child) {
  margin-bottom: 0.2rem;
}
.lst_ul_disc > li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.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) "）";
  position: absolute;
  left: 0.3rem;
}

.lst_dl {
  --dl_border: var(--clr_border);
  --dl_border02: var(--clr_border);
}
.lst_dl dt {
  background: var(--clr_blue_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_gray_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 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: -moz-fit-content;
  width: fit-content;
}
.lst_anc > li a {
  color: var(--clr_white) !important;
  text-decoration: none !important;
}
.lst_anc > li a {
  display: inline-block;
  color: var(--clr_white);
  background: var(--clr_navy_light02);
  border-radius: 0.4rem;
  padding: 0.8rem 2.5rem;
  line-height: 1.4;
  padding-left: 3rem;
  padding-right: 3.5rem;
  position: relative;
}
.lst_anc > li a::before {
  font-family: "fontello";
  content: "\e80a";
  margin-right: 0.6rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lst_anc > li a {
    padding: 1.1rem 5rem;
    border-radius: 0.8rem;
  }
  .lst_anc > li a::before {
    margin-right: 0.6rem;
  }
  .lst_anc > li a:hover {
    opacity: 1;
    background: var(--clr_navy_light03);
  }
}
.lst_anc > li a::before {
  content: none;
}
.lst_anc > li a::after {
  font-family: "fontello";
  content: "\f004";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 80%;
}
@media screen and (min-width: 48em), print {
  .lst_anc > li a::after {
    right: 2rem;
  }
}

.flow > dd {
  margin: 0;
  position: relative;
}
.flow > dd:not(:last-child) {
  margin: 0 0 4rem;
}
.flow > dd:not(:last-child)::after {
  display: block;
  font-family: "fontello";
  content: "\e80c";
  text-align: center;
  line-height: 1;
  font-size: 4rem;
  color: var(--clr_navy_light02);
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow > dd:not(:last-child) {
    margin: 0 0 6.5rem;
  }
  .flow > dd:not(:last-child)::after {
    bottom: -6.5rem;
    font-size: 6.5rem;
  }
}

.flow_ol {
  counter-reset: number 0;
}
.flow_ol > li {
  background: var(--clr_blue_light);
  border-radius: 5px;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  counter-increment: number 1;
  position: relative;
}
.flow_ol > li:not(:last-child) {
  margin: 0 0 4rem;
}
.flow_ol > li:not(:last-child)::after {
  display: block;
  font-family: "fontello";
  content: "\e80c";
  text-align: center;
  line-height: 1;
  font-size: 4rem;
  color: var(--clr_navy_light02);
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li:not(:last-child) {
    margin: 0 0 6.5rem;
  }
  .flow_ol > li:not(:last-child)::after {
    bottom: -6.5rem;
    font-size: 6.5rem;
  }
}
.flow_ol > li::before {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  content: counter(number, decimal-leading-zero);
  color: var(--clr_white);
  background: url("../img/flow_step.svg") top 0.7rem center/auto 1.2rem no-repeat, var(--clr_navy_light02);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.15rem;
}
.flow_ol > li .flow_tit {
  margin-bottom: 0.2rem;
  display: block;
  font-size: 1.5rem;
  color: var(--clr_navy_light02);
  font-weight: 500;
}
@media screen and (min-width: 48em), print {
  .flow_ol {
    padding: 0 3rem 0 8rem;
    margin-left: auto;
    margin-right: auto;
  }
  .flow_ol > li {
    border-radius: 10px;
    padding: 2.5rem 3.5rem 2.5rem 7.5rem;
    min-height: 11rem;
  }
  .flow_ol > li::before {
    width: 10rem;
    height: 10rem;
    font-size: 4.3rem;
    left: -5rem;
    background: url("../img/flow_step.svg") top 1.7rem center/auto 2.5rem no-repeat, var(--clr_navy_light02);
  }
  .flow_ol > li .flow_tit {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
}

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

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

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    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 {
  letter-spacing: 0.054rem;
  color: var(--clr_navy_light02);
  font-size: 2rem;
}
.tel::before {
  display: inline-block;
  content: "TEL.";
  font-size: 56.67%;
  letter-spacing: 0.0305rem;
  font-weight: 500;
  margin-right: 0.2rem;
}
@media screen and (min-width: 48em), print {
  .tel {
    letter-spacing: 0.108rem;
    font-size: 2.6rem;
  }
  .tel::before {
    letter-spacing: 0.061rem;
  }
}

.tel02 {
  letter-spacing: 0.065rem;
  color: var(--clr_yellow_dark);
  font-size: 2rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 0 0.8rem;
  line-height: 1;
}
.tel02::before {
  display: grid;
  place-content: center;
  content: "TEL.";
  background: rgba(var(--rgb_yellow_dark), 0.29);
  color: var(--clr_white);
  font-size: 1rem;
  aspect-ratio: 1/1;
  letter-spacing: 0.025rem;
  font-weight: 400;
}
@media screen and (min-width: 48em), print {
  .tel02 {
    letter-spacing: 0.13rem;
    grid-template-columns: 4rem 1fr;
    gap: 0 1.1rem;
    font-size: 3.6rem;
  }
  .tel02::before {
    letter-spacing: 0.05rem;
    font-size: 1.4rem;
  }
}

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

.btn {
  display: inline-block;
  color: var(--clr_white);
  background: var(--clr_navy_light02);
  border-radius: 0.4rem;
  padding: 0.8rem 2.5rem;
  line-height: 1.4;
}
.btn::before {
  font-family: "fontello";
  content: "\e80a";
  margin-right: 0.6rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 1.1rem 5rem;
    border-radius: 0.8rem;
  }
  .btn::before {
    margin-right: 0.6rem;
  }
  .btn:hover {
    opacity: 1;
    background: var(--clr_navy_light03);
  }
}

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

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.4;
}
.tbl tr th {
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  border: 1px solid var(--clr_border);
  background: var(--clr_gray_light);
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--clr_border);
}
.tbl tr .nowrap, .tbl tr .sp_nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl thead tr th {
  background: var(--clr_navy_light02);
  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 tr .sp_nowrap {
    width: inherit;
    white-space: inherit;
  }
}
.tbl_scroll {
  overflow-x: scroll;
}
.tbl_scroll .tbl {
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .tbl_scroll {
    overflow: inherit;
  }
  .tbl_scroll .tbl {
    white-space: inherit;
  }
}

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

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

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--clr_navy);
}
.header .wrap {
  padding: 0.5rem 0;
  margin-left: 1rem;
  margin-right: 1rem;
}
.header .wrap .logo {
  width: calc(100% - 5.6rem);
  height: 4.6rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header .wrap .headR .add {
  color: var(--clr_white);
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.0325rem;
}

@media screen and (min-width: 48em), print {
  .header {
    position: static;
  }
  .header .wrap {
    margin: 0 auto;
    padding: 1rem 0 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 31rem;
    height: 8.7rem;
  }
  .header .wrap .headR {
    width: calc(100% - 32rem);
    padding-right: 1.8rem;
  }
  .header .wrap .headR .add {
    font-size: 1.8rem;
    text-align: right;
    letter-spacing: 0.065rem;
  }
  .header .wrap .headR .add .zip {
    margin-right: 0.6rem;
  }
  .header .wrap .headR .head_tel {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0.9rem 0 0 auto;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 3.5rem;
  height: 4.6rem;
  color: var(--clr_white);
  text-align: center;
  line-height: 1;
  font-size: 0.9rem;
  padding: 0;
  position: fixed;
  top: 0.5rem;
  right: 1.4rem;
  z-index: 102;
}
#nav #sp_menu .btn-line {
  display: block;
  position: absolute;
  top: 1.2rem;
  left: 0;
  right: 0;
  width: 3.5rem;
  height: 2px;
  background-color: var(--clr_white);
  border-radius: 1px;
  transition: all 0.4s;
  margin: 0 auto;
}
#nav #sp_menu .btn-line:nth-of-type(2) {
  top: 2rem;
}
#nav #sp_menu .btn-line:nth-of-type(3) {
  top: 2.8rem;
}
#nav #sp_menu.-active .btn-line:nth-of-type(1) {
  animation: menu-bar01 0.6s forwards;
}
#nav #sp_menu.-active .btn-line:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#nav #sp_menu.-active .btn-line:nth-of-type(3) {
  animation: menu-bar02 0.6s forwards;
}
#nav #sp_menu.-close .btn-line:nth-of-type(1) {
  animation: active-menu-bar01 0.6s forwards;
}
#nav #sp_menu.-close .btn-line:nth-of-type(2) {
  opacity: 0;
}
#nav #sp_menu.-close .btn-line:nth-of-type(3) {
  animation: active-menu-bar03 0.6s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(0.8rem) rotate(45deg);
  }
  50% {
    transform: translateY(0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
  50% {
    transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0.8rem) rotate(0);
  }
  100% {
    transform: translateY(0.8rem) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.8rem) rotate(0);
  }
  100% {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}
@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  #nav #sp_menu {
    display: none;
  }
}

.gnav_subnav {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  max-height: calc(100svh - 5.6rem);
  overflow-y: auto;
  background: var(--clr_white);
  box-shadow: 0 5px 5px rgba(var(--rgb_txt), 0.16);
  padding: 0 0 1.5rem;
  position: fixed;
  top: 5.6rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.gnav_subnav.-active {
  z-index: 9998;
  animation: active-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
}
.gnav_subnav.-close {
  animation: close-menu 0.45s cubic-bezier(0.03, 0.1, 0.15, 0.78) forwards;
}
@keyframes active-menu {
  0% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    top: 5.6rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
@keyframes close-menu {
  0% {
    top: 5.6rem;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  100% {
    top: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.gnav_subnav .add_tel {
  background: var(--clr_navy);
  padding: 0.75rem 0 1.5rem;
  margin-bottom: 1.5rem;
}
.gnav_subnav .add_tel .add {
  text-align: center;
  font-size: 1.3rem;
  color: var(--clr_white);
  letter-spacing: 0.0325rem;
}
.gnav_subnav .add_tel .add .zip {
  margin-right: 1rem;
}
.gnav_subnav .add_tel .head_tel {
  margin: 0.6rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.gnav_subnav .gnav {
  border-top: 1px solid var(--clr_yellow_dark);
  border-bottom: 1px solid var(--clr_yellow_dark);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid var(--clr_yellow_dark);
}
.gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.054rem;
}
.gnav_subnav .gnav > li > a::after, .gnav_subnav .gnav > li .sub::after {
  content: attr(data-ruby);
  color: var(--clr_gray);
  margin-left: 1rem;
  font-size: 80%;
}
.gnav_subnav .gnav > li > a.current, .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_yellow);
}
.gnav_subnav .gnav > li > a.current::after, .gnav_subnav .gnav > li .sub.current::after {
  color: var(--clr_yellow);
}
.gnav_subnav .gnav > li .sub {
  position: relative;
}
.gnav_subnav .gnav > li .sub::before {
  font-family: "fontello";
  content: "\e80c";
  display: block;
  position: absolute;
  right: 1.5rem;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::before {
  transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: var(--clr_blue_light);
  margin-bottom: 1rem;
}
.gnav_subnav .gnav > li .subbox .subnav {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}
.gnav_subnav .gnav > li .subbox .subnav li {
  width: 50%;
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 0.8rem 1.5rem 0.8rem 2.8rem;
  font-size: 1.4rem;
  line-height: 1.3;
  position: relative;
}
.gnav_subnav .gnav > li .subbox .subnav li a::before {
  font-family: "fontello";
  content: "\e807";
  position: absolute;
  left: 1.5rem;
}
.gnav_subnav .gnav > li .subbox .subnav li a.current {
  color: var(--clr_yellow);
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .gnav_subnav {
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 1.6rem 0;
    position: static;
    background: var(--clr_white);
    box-shadow: none;
  }
  .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
    border-right: 2px solid;
    border-image-source: linear-gradient(to bottom, transparent 1.5rem, var(--clr_yellow_dark) 1.5rem, var(--clr_yellow_dark) calc(100% - 1.5rem), transparent calc(100% - 1.5rem));
    border-image-slice: 1;
  }
  .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  .gnav_subnav .gnav > li:first-of-type {
    border-left: 2px solid;
    border-image-source: linear-gradient(to bottom, transparent 1.5rem, var(--clr_yellow_dark) 1.5rem, var(--clr_yellow_dark) calc(100% - 1.5rem), transparent calc(100% - 1.5rem));
    border-image-slice: 1;
  }
  .gnav_subnav .gnav > li.gnav_hide {
    display: none;
  }
  .gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.108rem;
    margin: 0;
    padding: 0 1rem;
    cursor: pointer;
    position: relative;
  }
  .gnav_subnav .gnav > li > a::after, .gnav_subnav .gnav > li .sub::after {
    display: block;
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.084rem;
    transition: 0.2s;
  }
  .gnav_subnav .gnav > li > a::before, .gnav_subnav .gnav > li .sub::before {
    content: none;
  }
  .gnav_subnav .gnav > li > a:hover, .gnav_subnav .gnav > li > a.current, .gnav_subnav .gnav > li .sub:hover, .gnav_subnav .gnav > li .sub.current {
    color: var(--clr_yellow);
  }
  .gnav_subnav .gnav > li > a:hover::after, .gnav_subnav .gnav > li > a.current::after, .gnav_subnav .gnav > li .sub:hover::after, .gnav_subnav .gnav > li .sub.current::after {
    color: var(--clr_yellow);
  }
  .gnav_subnav .gnav > li .subbox {
    width: auto;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    padding: 0;
  }
  .gnav_subnav .gnav > li .subbox > .subnav {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 100%;
  }
  .gnav_subnav .gnav > li .subbox > .subnav li a {
    font-size: 1.6rem;
    letter-spacing: 0.058rem;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
  }
  .gnav_subnav .gnav > li .subbox > .subnav li a:hover, .gnav_subnav .gnav > li .subbox > .subnav li a.current {
    opacity: 1;
    color: var(--clr_white);
    background: var(--clr_navy_light02);
  }
}

.footer .gmap {
  height: 80vw;
}
.footer .footer_bg {
  background: url("../img/overview_bg.webp") bottom center/auto 100% no-repeat;
}
.footer .overview {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0;
}
.footer .overview .wrap {
  background: rgba(var(--rgb_white), 0.8);
  padding: 0 1.5rem 2rem;
}
.footer .overview .wrap .overview_content .overviewL {
  background: var(--clr_white);
  padding: 2rem;
  text-align: center;
  width: calc(100% - 3rem);
  margin: 0 auto 2rem;
}
.footer .overview .wrap .overview_content .overviewL .clinic_name {
  margin-bottom: 2.5rem;
}
.footer .overview .wrap .overview_content .overviewL .clinic_name img {
  max-width: calc(100% - 6rem);
  margin: auto;
}
.footer .overview .wrap .overview_content .overviewL .tel {
  font-size: 2.6rem;
  line-height: 1;
}
.footer .overview .wrap .overview_content .overviewR .gaiyo {
  line-height: 1.5;
}
.footer .overview .wrap .overview_content .overviewR .gaiyo > dt {
  color: var(--clr_yellow);
  margin-bottom: 0.4rem;
}
.footer .overview .wrap .overview_content .overviewR .gaiyo > dt::before {
  font-family: "fontello";
  content: "\f006";
  margin-right: 0.4rem;
  font-size: 85%;
  display: inline-block;
  transform: translateY(-0.5px);
}
.footer .overview .wrap .overview_content .overviewR .gaiyo > dd:not(:last-of-type) {
  margin-bottom: 1rem;
}
.footer .overview .wrap .tbl_time {
  margin: 2rem 0 0;
}
.footer .footer_nav {
  display: none;
}
.footer .footer_lnks {
  background: rgba(var(--rgb_navy), 0.8);
  color: var(--clr_white);
  display: block;
  padding: 1rem 1rem 4.8rem;
  text-align: center;
}
.footer .footer_lnks .copy {
  font-size: 1.2rem;
}
@media screen and (min-width: 48em), print {
  .footer .gmap {
    height: 50rem;
  }
  .footer .overview {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .footer .overview .wrap {
    width: calc(1200px - 24rem);
    padding: 0 0 3.5rem;
  }
  .footer .overview .wrap .overview_content {
    display: flex;
  }
  .footer .overview .wrap .overview_content .overviewL {
    width: 35rem;
    height: -moz-fit-content;
    height: fit-content;
    flex-shrink: 0;
    padding: 4.5rem 0;
    margin: 0;
  }
  .footer .overview .wrap .overview_content .overviewL .clinic_name {
    margin-bottom: 6rem;
  }
  .footer .overview .wrap .overview_content .overviewL .clinic_name img {
    width: 24.5rem;
    max-width: inherit;
  }
  .footer .overview .wrap .overview_content .overviewL .tel {
    font-size: 3rem;
  }
  .footer .overview .wrap .overview_content .overviewR {
    padding: 10.2rem 5.2rem 2rem;
    flex-grow: 1;
  }
  .footer .overview .wrap .overview_content .overviewR .gaiyo {
    font-size: 1.6rem;
    line-height: 1.4;
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 1.5rem;
  }
  .footer .overview .wrap .overview_content .overviewR .gaiyo > dt {
    margin-bottom: 0;
  }
  .footer .overview .wrap .overview_content .overviewR .gaiyo > dt::before {
    margin: 0 1rem 0 0;
    font-size: 85%;
    transform: translateY(-0.5px);
  }
  .footer .overview .wrap .overview_content .overviewR .gaiyo > dd:not(:last-of-type) {
    margin-bottom: 0;
  }
  .footer .overview .wrap .tbl_time {
    margin: 3.5rem auto 0;
    padding: 2rem 3.5rem 2.5rem;
    width: 60.4rem;
  }
  .footer .overview .wrap .tbl_time table {
    font-size: 1.8rem;
    width: 52rem;
  }
  .footer .overview .wrap .tbl_time table tr th {
    padding: 0.8rem 0;
  }
  .footer .overview .wrap .tbl_time table tr th[scope=col]:first-child {
    padding-right: 2rem;
  }
  .footer .overview .wrap .tbl_time table tr th[scope=col]:last-child {
    width: auto;
    padding-right: 0;
  }
  .footer .overview .wrap .tbl_time table tr th.time {
    padding: 0.4rem 2rem 0.4rem 0;
  }
  .footer .overview .wrap .tbl_time table tr td {
    padding: 1rem 0;
  }
  .footer .overview .wrap .tbl_time table tr td:last-child {
    width: auto;
    padding-right: 0;
  }
  .footer .overview .wrap .tbl_time .timetable_caption {
    line-height: 1.55;
  }
  .footer .footer_nav {
    display: block;
    background: rgba(var(--rgb_navy), 0.8);
    padding: 3rem 0;
    color: var(--clr_white);
  }
  .footer .footer_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(1200px - 24rem);
    margin: 0 auto 1.2rem;
    gap: 0.8rem 0;
  }
  .footer .footer_nav ul li {
    text-align: center;
    font-size: 1.4rem;
    padding: 0 1.9rem;
    -webkit-text-size-adjust: none;
    border-left: 1px solid var(--clr_white);
    border-right: 1px solid transparent;
  }
  .footer .footer_nav ul li a {
    opacity: 1;
    letter-spacing: 0.084rem;
  }
  .footer .footer_nav ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_nav ul li.treatment {
    display: none;
  }
  .footer .footer_nav ul li.last-in-row {
    border-right-color: var(--clr_white);
  }
  .footer .footer_nav ul.gnav {
    margin-bottom: 3rem;
  }
  .footer .footer_lnks {
    background: var(--clr_navy);
    padding: 1rem 0;
  }
  .footer .footer_lnks .copy {
    font-size: 1.2rem;
  }
}

#tel_up {
  width: 100%;
  height: 3.8rem;
  background: var(--clr_navy);
  box-shadow: 0px 0px 12px -3px rgba(var(--rgb_txt), 0.3);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 3.8rem);
  height: 100%;
}
#tel_up ul li {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
#tel_up #pageup {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  position: relative;
}
#tel_up #pageup::before {
  font-family: "fontello";
  content: "\f005";
  font-size: 2rem;
  width: 100%;
  height: 100%;
  color: var(--clr_white);
  background: var(--clr_yellow);
  position: absolute;
  top: 0;
  right: 0;
  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: 5rem;
    height: 5rem;
    bottom: 3rem;
    right: 3rem;
    left: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    z-index: 101;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  #tel_up #pageup::before {
    font-size: 2.3rem;
    border-radius: 50%;
  }
}
@media screen and (min-width: 48em), print {
  body.index .header .wrap {
    position: relative;
  }
  body.index .header .wrap .logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 32rem;
    height: 30rem;
    background: var(--clr_navy);
    border: 5px solid var(--clr_white);
    opacity: 0;
    animation: fade_up 1s ease-out 0.5s 1 normal forwards;
  }
  body.index .header .wrap .logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/logo_tate.svg) center center/24.5rem auto no-repeat;
  }
  body.index .header .wrap .headR {
    margin: 0 0 0 auto;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation: fade 1.4s ease-out 1.2s 1 normal forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 20rem !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_white);
}
.keyvsl .catch_copy {
  width: 100%;
  pointer-events: none;
  background: rgba(var(--rgb_navy), 0.9);
  padding: 1rem 0 1rem 11.5rem;
}
.keyvsl .catch_copy p {
  margin: 0;
  letter-spacing: 0.072rem;
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--clr_white);
  opacity: 0;
  animation: fade 1s ease-out 0.5s 1 normal forwards;
}
.keyvsl .catch_copy p .line_mark {
  letter-spacing: 0.09rem;
  font-size: 125%;
  position: relative;
}
.keyvsl .catch_copy p .line_mark::after {
  content: "";
  display: block;
  width: calc(100% + 0.4rem);
  height: 0.21em;
  background: rgba(var(--rgb_yellow_dark), 0.7);
  position: absolute;
  left: -0.2rem;
  bottom: 0.06em;
}
.keyvsl .catch_copy p .line_mark .txt_small {
  padding-right: 0.2rem;
}
.keyvsl .kv_acs {
  position: absolute;
  bottom: 3rem;
  left: 1rem;
  pointer-events: none;
  z-index: 1;
  color: var(--clr_navy);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.3rem 0;
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--clr_yellow_dark) 2.9rem, var(--clr_white) 2.9rem, var(--clr_white) 5.7rem, var(--clr_yellow_dark) 5.7rem);
  border: 6px solid var(--clr_white);
  opacity: 0;
  animation: fade_up 0.6s ease-out 1.2s 1 normal forwards;
}
.keyvsl .kv_acs::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url("../img/icon_kc12.png") center center/contain no-repeat;
  position: absolute;
  top: -2rem;
  right: 0;
  bottom: auto;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}
.keyvsl .kv_acs .acs_line {
  font-size: 1.3rem;
}
.keyvsl .kv_acs .acs_station {
  font-size: 1.5rem;
}
.keyvsl .kv_acs .acs_walk {
  font-size: 1.2rem;
}
.keyvsl .kv_acs .acs_walk .num {
  font-size: 1.8rem;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 80rem;
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 80rem !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 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 1.2rem 0;
  }
  .keyvsl .catch_copy p {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.4rem;
    letter-spacing: 0.144rem;
    text-align: center;
  }
  .keyvsl .catch_copy p .line_mark {
    letter-spacing: 0.18rem;
    font-size: 3rem;
  }
  .keyvsl .catch_copy p .line_mark .txt_small {
    font-size: 2.4rem;
  }
  .keyvsl .kv_acs {
    bottom: 3rem;
    left: calc(50% - 57rem);
    gap: 0.5rem 0;
    height: 15.8rem;
    width: 15.8rem;
    background: linear-gradient(to bottom, var(--clr_yellow_dark) 4.5rem, var(--clr_white) 4.5rem, var(--clr_white) 8.5rem, var(--clr_yellow_dark) 8.5rem);
    border-width: 10px;
  }
  .keyvsl .kv_acs::before {
    width: 4.4rem;
    height: 4.5rem;
    top: -3rem;
    right: 0;
    bottom: auto;
    left: 0;
  }
  .keyvsl .kv_acs .acs_line {
    font-size: 1.9rem;
  }
  .keyvsl .kv_acs .acs_station {
    font-size: 2.2rem;
    padding-top: 0.4rem;
  }
  .keyvsl .kv_acs .acs_station .txt_small {
    font-size: 1.7rem;
  }
  .keyvsl .kv_acs .acs_walk {
    font-size: 1.8rem;
  }
  .keyvsl .kv_acs .acs_walk .num {
    font-size: 3.1rem;
  }
}
.top_tit02 {
  color: var(--clr_navy_light02);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.36rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding: 2rem 0;
  background: url("../img/tit_02.png") center center/auto 9.2rem no-repeat;
}
.top_tit02::after {
  display: block;
  margin-top: 0.4rem;
  content: attr(data-ruby);
  color: var(--clr_navy_light03);
  letter-spacing: 0.168rem;
  font-size: 1rem;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 3rem;
    margin-bottom: 5rem;
    letter-spacing: 0.72rem;
    padding: 4rem 0 3rem;
    background-size: auto 12.651rem;
  }
  .top_tit02::after {
    font-size: 1.4rem;
    letter-spacing: 0.336rem;
  }
}
.index_timetable {
  padding: 4rem 0;
}
.index_timetable .tbl_time {
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}
.index_timetable.trigger .tbl_time {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_timetable {
    padding: 1.5rem 0 5rem;
  }
  .index_timetable .tbl_time {
    width: 75rem;
  }
}

.info_blog {
  background: url("../img/a_bg.webp") top center/150% auto repeat-y;
  padding: 2rem 0;
}
.info_blog .index_info, .info_blog .index_blog {
  padding: 2rem 0;
}
.info_blog .index_info .top_tit02, .info_blog .index_blog .top_tit02 {
  opacity: 0;
}
.info_blog .index_info .info_lst, .info_blog .index_info .blog_lst, .info_blog .index_blog .info_lst, .info_blog .index_blog .blog_lst {
  border-top: 1px solid var(--clr_navy_light02);
  padding: 0 1rem;
  max-height: 60vh;
  overflow-y: scroll;
  opacity: 0;
}
.info_blog .index_info .info_lst::-webkit-scrollbar, .info_blog .index_info .blog_lst::-webkit-scrollbar, .info_blog .index_blog .info_lst::-webkit-scrollbar, .info_blog .index_blog .blog_lst::-webkit-scrollbar {
  background: transparent;
  width: 2px;
}
.info_blog .index_info .info_lst::-webkit-scrollbar-thumb, .info_blog .index_info .blog_lst::-webkit-scrollbar-thumb, .info_blog .index_blog .info_lst::-webkit-scrollbar-thumb, .info_blog .index_blog .blog_lst::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, transparent 1rem, var(--clr_gray) 1rem);
}
.info_blog .index_info.trigger .top_tit02, .info_blog .index_blog.trigger .top_tit02 {
  animation: fade 0.6s ease-out 0.2s 1 normal forwards;
}
.info_blog .index_info.trigger .info_lst, .info_blog .index_info.trigger .blog_lst, .info_blog .index_blog.trigger .info_lst, .info_blog .index_blog.trigger .blog_lst {
  animation: fade_up 0.6s ease-out 0.4s 1 normal forwards;
}
.info_blog .info_lst dt {
  color: var(--clr_navy);
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 1rem 1rem 1rem 1.5rem;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.053rem;
}
.info_blog .info_lst dt .date {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.047rem;
}
.info_blog .info_lst dt::before {
  font-family: "fontello";
  content: "\e80b";
  font-weight: normal;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.info_blog .info_lst dt.close::before {
  transform: scale(1, -1) translateY(-2px);
}
.info_blog .info_lst dt:not(:first-of-type) {
  border-top: 1px dashed var(--clr_gray_dark);
}
.info_blog .info_lst dd {
  letter-spacing: 0.047rem;
  margin: -0.5rem 0 1.5rem;
  padding: 0 1rem 0 1.5rem;
  word-wrap: break-word;
}
.info_blog .info_lst dd a {
  color: var(--clr_navy_light02);
  text-decoration: underline;
}
.info_blog .info_lst dd a:hover {
  color: var(--clr_yellow_dark02);
}
.info_blog .blog_lst > li {
  font-size: 1.5rem;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
  padding-top: 1.5rem;
  letter-spacing: 0.053rem;
}
.info_blog .blog_lst > li::before {
  font-family: "fontello";
  content: "\e807";
  font-weight: normal;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.info_blog .blog_lst > li .date {
  color: var(--clr_navy);
  font-weight: 700;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.047rem;
}
@media screen and (min-width: 48em), print {
  .info_blog {
    background: url("../img/a_bg.webp") top center/200rem auto repeat;
    padding: 7rem 0 8.5rem;
  }
  .info_blog .wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 0 4rem;
  }
  .info_blog .index_info, .info_blog .index_blog {
    width: 56rem;
    padding: 0;
  }
  .info_blog .index_info .top_tit02, .info_blog .index_blog .top_tit02 {
    margin-bottom: 1.2rem;
  }
  .info_blog .index_info .info_lst, .info_blog .index_info .blog_lst, .info_blog .index_blog .info_lst, .info_blog .index_blog .blog_lst {
    max-height: 40rem;
    padding: 0.8rem 3rem 0;
  }
  .info_blog .index_info .info_lst::-webkit-scrollbar-thumb, .info_blog .index_info .blog_lst::-webkit-scrollbar-thumb, .info_blog .index_blog .info_lst::-webkit-scrollbar-thumb, .info_blog .index_blog .blog_lst::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, transparent 1.5rem, var(--clr_gray) 1.5rem);
  }
  .info_blog .index_info.trigger .info_lst, .info_blog .index_blog.trigger .info_lst {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
  }
  .info_blog .index_info.trigger .blog_lst, .info_blog .index_blog.trigger .blog_lst {
    animation: fade_up 0.6s ease-out 0.4s 1 normal forwards;
  }
  .info_blog .info_lst dt {
    font-size: 1.8rem;
    padding: 1rem 1rem 1rem 2rem;
    letter-spacing: 0.106rem;
  }
  .info_blog .info_lst dt .date {
    font-size: 1.6rem;
    margin: 0 4rem 0 0;
    display: inline-block;
    letter-spacing: 0.094rem;
  }
  .info_blog .info_lst dt.close::before {
    transform: scale(1, -1) translateY(-2px);
  }
  .info_blog .info_lst dd {
    margin: -0.5rem 0 1.5rem;
    padding: 0 1rem 0 2rem;
    letter-spacing: 0.094rem;
    line-height: 1.5;
  }
  .info_blog .blog_lst > li {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 1.2rem 0 1.1rem 2rem;
    letter-spacing: 0.106rem;
  }
  .info_blog .blog_lst > li .date {
    font-size: 1.6rem;
    letter-spacing: 0.094rem;
  }
  .info_blog .blog_lst > li a:is(:hover,.focus-visible) {
    color: var(--clr_yellow_dark02);
  }
  .info_blog .blog_lst > li a:is(:hover, :focus-visible) {
    color: var(--clr_yellow_dark02);
  }
}

.index_feature {
  padding: 4rem 0;
}
.index_feature .top_tit02 {
  opacity: 0;
}
.index_feature .feature_lst {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.index_feature .feature_lst > section {
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}
.index_feature .feature_lst > section .feature_tit03 {
  margin-bottom: 1.8rem;
  height: 27rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.index_feature .feature_lst > section .feature_tit03 span {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 1rem;
  min-height: 7rem;
  line-height: 1.3;
  display: grid;
  place-content: center;
  color: var(--clr_navy);
  background: rgba(var(--rgb_white), 0.9);
  opacity: 0;
}
.index_feature .feature_lst > section .feature_tit03::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  top: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
  border: 1px solid var(--clr_navy_light02);
  z-index: 1;
  opacity: 0;
}
.index_feature .feature_lst > section .feature_content {
  border-top: 1px solid var(--clr_navy_light02);
  padding: 1.4rem 1rem 0;
  opacity: 0;
}
.index_feature .feature_lst > section .feature_content p {
  font-size: 1.45rem;
  line-height: 1.6;
  margin: 0;
}
.index_feature .feature_lst > section .feature_content p:not(:first-of-type) {
  margin-top: 1em;
}
.index_feature .feature_lst > section:nth-child(1) .feature_tit03 {
  background-image: url("../img/index_feature01.jpg");
}
.index_feature .feature_lst > section:nth-child(2) .feature_tit03 {
  background-image: url("../img/index_feature02.jpg");
}
.index_feature .feature_lst > section:nth-child(3) .feature_tit03 {
  background-image: url("../img/index_feature03.jpg");
}
.index_feature .feature_lst > section:nth-child(4) .feature_tit03 {
  background-image: url("../img/index_feature04.jpg");
}
.index_feature .feature_lst > section:nth-child(5) .feature_tit03 {
  background-image: url("../img/index_feature05.jpg");
}
.index_feature .feature_lst > section:nth-child(6) .feature_tit03 {
  background-image: url("../img/index_feature06.jpg");
}
.index_feature .feature_lst > section:nth-child(7) .feature_tit03 {
  background-image: url("../img/index_feature07.jpg");
}
.index_feature .feature_lst > section:nth-child(8) .feature_tit03 {
  background-image: url("../img/index_feature08.jpg");
}
.index_feature .feature_lst > section:nth-child(9) .feature_tit03 {
  background-image: url("../img/index_feature09.jpg");
}
.index_feature .feature_lst > section:nth-child(10) .feature_tit03 {
  background-image: url("../img/index_feature010.jpg");
}
.index_feature .feature_lst > section:nth-child(11) .feature_tit03 {
  background-image: url("../img/index_feature011.jpg");
}
.index_feature .feature_lst > section:nth-child(12) .feature_tit03 {
  background-image: url("../img/index_feature012.jpg");
}
.index_feature .feature_lst > section:nth-child(13) .feature_tit03 {
  background-image: url("../img/index_feature013.jpg");
}
.index_feature .feature_lst > section:nth-child(14) .feature_tit03 {
  background-image: url("../img/index_feature014.jpg");
}
.index_feature .feature_lst > section:nth-child(15) .feature_tit03 {
  background-image: url("../img/index_feature015.jpg");
}
.index_feature .feature_lst > section:nth-child(16) .feature_tit03 {
  background-image: url("../img/index_feature016.jpg");
}
.index_feature .feature_lst > section:nth-child(17) .feature_tit03 {
  background-image: url("../img/index_feature017.jpg");
}
.index_feature .feature_lst > section:nth-child(18) .feature_tit03 {
  background-image: url("../img/index_feature018.jpg");
}
.index_feature .feature_lst > section:nth-child(19) .feature_tit03 {
  background-image: url("../img/index_feature019.jpg");
}
.index_feature .feature_lst > section:nth-child(20) .feature_tit03 {
  background-image: url("../img/index_feature020.jpg");
}
.index_feature .feature_lst > section.trigger .feature_tit03 span {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_feature .feature_lst > section.trigger .feature_tit03::after {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_feature .feature_lst > section.trigger .feature_content {
  animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
}
.index_feature.trigger .top_tit02 {
  animation: fade 0.6s ease-out 0.2s 1 normal forwards;
}
@media screen and (min-width: 48em), print {
  .index_feature {
    padding: 7rem 0 9rem;
  }
  .index_feature .feature_lst {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8rem 4.1rem;
    width: calc(1200px - 3.8rem);
  }
  .index_feature .feature_lst > section {
    width: 36rem;
  }
  .index_feature .feature_lst > section .feature_tit03 {
    height: 34rem;
    margin-bottom: 1.8rem;
  }
  .index_feature .feature_lst > section .feature_tit03 span {
    font-size: 2.2rem;
    padding: 0.5rem 1rem;
    min-height: 10rem;
  }
  .index_feature .feature_lst > section .feature_tit03::after {
    width: calc(100% - 1.2rem);
    height: calc(100% - 1.2rem);
    top: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
  }
  .index_feature .feature_lst > section .feature_content {
    border-top: 1px solid var(--clr_navy_light02);
    padding: 1.8rem 1rem 0;
  }
  .index_feature .feature_lst > section .feature_content p {
    font-size: 1.8rem;
    line-height: 1.65;
  }
  .index_feature.trigger .feature_lst > section:nth-child(1) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 0.4s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(1) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 0.4s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(1) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 0.6s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(2) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 0.6s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(2) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 0.6s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(2) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 0.8s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(3) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 0.8s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(3) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 0.8s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(3) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 1s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(4) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(4) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(4) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 1.2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(5) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(5) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(5) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 1.4s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(6) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.4s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(6) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.4s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(6) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 1.6s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(7) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.6s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(7) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.6s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(7) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 1.8s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(8) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.8s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(8) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 1.8s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(8) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(9) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(9) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(9) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 2.2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(10) .feature_tit03 span {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 2.2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(10) .feature_tit03::after {
    animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
    animation-delay: 2.2s;
  }
  .index_feature.trigger .feature_lst > section:nth-child(10) .feature_content {
    animation: fade_up 0.6s ease-out 0.6s 1 normal forwards;
    animation-delay: 2.4s;
  }
}

.index_treatment {
  padding-bottom: 2rem;
}
.index_treatment .treatment_nav {
  --bg_color: var(--clr_blue_light);
  background: linear-gradient(to bottom, transparent 10.5rem, var(--bg_color) 10.5rem, var(--bg_color) calc(100% - 3.5rem), transparent calc(100% - 3.5rem));
  position: relative;
  padding-bottom: 4rem;
}
.index_treatment .treatment_nav::before, .index_treatment .treatment_nav::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.index_treatment .treatment_nav::before {
  height: 8rem;
  background-image: url("../img/index_treatment_internal_top.svg");
  background-position: left -25rem top;
  top: 3rem;
}
.index_treatment .treatment_nav::after {
  height: 4rem;
  background-image: url("../img/index_treatment_internal_bottom.svg");
  background-position: left -25rem bottom;
  bottom: 0rem;
}
.index_treatment .treatment_nav .wrap {
  margin-left: 0;
  margin-right: 0;
}
.index_treatment .treatment_nav .wrap .treat_tit {
  color: var(--clr_white);
  font-weight: 500;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
  padding: 9.8rem 2.2rem 3rem 0;
  width: 10rem;
  height: 20rem;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.index_treatment .treatment_nav .wrap .treat_tit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/index_internal_tit.svg") top 4.5rem left 2.1rem/3.6rem auto no-repeat, url("../img/index_treatment_titL.svg") center left/contain no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.index_treatment .treatment_nav .wrap .treat_tit::after {
  content: attr(data-ruby);
  display: block;
  color: var(--clr_yellow_dark);
  font-size: 1.3rem;
  letter-spacing: 0.057rem;
}
.index_treatment .treatment_nav .wrap .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}
.index_treatment .treatment_nav .wrap .subnav > li {
  width: calc((100% - 1.5rem) / 2);
  position: relative;
  z-index: 0;
  opacity: 0;
}
.index_treatment .treatment_nav .wrap .subnav > li::before {
  content: "";
  display: block;
  width: 38vw;
  height: 38vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--clr_gold_light02);
  background-color: var(--clr_white);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.index_treatment .treatment_nav .wrap .subnav > li a {
  display: block;
  text-align: center;
  color: var(--clr_navy);
  letter-spacing: 0.066rem;
  font-size: 1.5rem;
}
.index_treatment .treatment_nav .wrap .subnav > li a::before {
  content: "";
  display: block;
  width: 38vw;
  height: 38vw;
  margin: 0 auto 0.2rem;
  border-radius: 50%;
  background-position: center center;
  background-size: auto 60%;
  background-repeat: no-repeat;
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_internal::before {
  background-image: url("../img/icon_internal.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_gastro::before {
  background-image: url("../img/icon_gastro.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_hepatobiliary_and_pancreatic::before {
  background-image: url("../img/icon_hepatobiliary_and_pancreatic.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_echo::before {
  background-image: url("../img/icon_echo.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_lifestyle_related::before {
  background-image: url("../img/icon_lifestyle_related.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_checkup::before {
  background-image: url("../img/icon_checkup.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_vaccination::before {
  background-image: url("../img/icon_vaccination.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_ophthalmology::before {
  background-image: url("../img/icon_ophthalmology.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_cataract::before {
  background-image: url("../img/icon_cataract.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_glaucoma::before {
  background-image: url("../img/icon_glaucoma.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_retinal_disease::before {
  background-image: url("../img/icon_retinal_disease.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_allergic_conjunctival_disease::before {
  background-image: url("../img/icon_allergic_conjunctival_disease.svg");
}
.index_treatment .treatment_nav .wrap .subnav > li a.icon_contact_lens::before {
  background-image: url("../img/icon_contact_lens.svg");
}
.index_treatment .treatment_nav.-ophthalmology {
  --bg_color: var(--clr_yellow_light);
}
.index_treatment .treatment_nav.-ophthalmology::before {
  background-image: url("../img/index_treatment_ophthalmology_top.svg");
}
.index_treatment .treatment_nav.-ophthalmology::after {
  background-image: url("../img/index_treatment_ophthalmology_bottom.svg");
}
.index_treatment .treatment_nav.-ophthalmology .wrap .treat_tit {
  margin: 0 0 0 auto;
  padding: 9rem 0 3rem 2rem;
}
.index_treatment .treatment_nav.-ophthalmology .wrap .treat_tit::before {
  background: url("../img/index_ophthalmology_tit.svg") top 6.5rem right 1rem/5.5rem auto no-repeat, url("../img/index_treatment_titR.svg") center right/contain no-repeat;
}
.index_treatment .treatment_nav.-ophthalmology .wrap .treat_tit::after {
  font-size: 1rem;
  letter-spacing: 0.042rem;
}
.index_treatment .treatment_nav.-ophthalmology .wrap .subnav > li a {
  color: var(--clr_gold);
}
.index_treatment .treatment_nav.trigger .wrap .treat_tit {
  animation: flip 1.2s ease 0.2s forwards;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li {
  animation: fade_up 0.6s ease-out 0.2s 1 normal forwards;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(1) {
  animation-delay: 0.4s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(2) {
  animation-delay: 0.6s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(3) {
  animation-delay: 0.8s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(4) {
  animation-delay: 1s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(5) {
  animation-delay: 1.2s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(6) {
  animation-delay: 1.4s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(7) {
  animation-delay: 1.6s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(8) {
  animation-delay: 1.8s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(9) {
  animation-delay: 2s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(10) {
  animation-delay: 2.2s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(11) {
  animation-delay: 2.4s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(12) {
  animation-delay: 2.6s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(13) {
  animation-delay: 2.8s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(14) {
  animation-delay: 3s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(15) {
  animation-delay: 3.2s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(16) {
  animation-delay: 3.4s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(17) {
  animation-delay: 3.6s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(18) {
  animation-delay: 3.8s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(19) {
  animation-delay: 4s;
}
.index_treatment .treatment_nav.trigger .wrap .subnav > li:nth-child(20) {
  animation-delay: 4.2s;
}
.index_treatment .treatment_nav.trigger.-ophthalmology .wrap .treat_tit {
  animation: flipR 1.2s ease 0.2s forwards;
}
@media screen and (min-width: 48em), print {
  .index_treatment {
    padding-bottom: 0.5rem;
  }
  .index_treatment .treatment_nav {
    background: linear-gradient(to bottom, transparent 22rem, var(--bg_color) 22rem, var(--bg_color) calc(100% - 6.5rem), transparent calc(100% - 6.5rem));
    padding: 5.5rem 0 0;
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .index_treatment .treatment_nav::before, .index_treatment .treatment_nav::after {
    width: 200rem;
    left: calc(50% - 100rem);
  }
  .index_treatment .treatment_nav::before {
    height: 15.446rem;
    background-position: center top;
    top: 7rem;
  }
  .index_treatment .treatment_nav::after {
    height: 6.9rem;
    background-position: center bottom;
    bottom: 0rem;
  }
  .index_treatment .treatment_nav .wrap {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  .index_treatment .treatment_nav .wrap .treat_tit {
    font-size: 3.8rem;
    width: 15.8rem;
    height: 31.6rem;
    line-height: 1.4;
    padding: 15.2rem 2.2rem 3.5rem 0;
    flex-shrink: 0;
  }
  .index_treatment .treatment_nav .wrap .treat_tit::before {
    background: url("../img/index_internal_tit.svg") top 6.3rem left 3.9rem/auto 7.7rem no-repeat, url("../img/index_treatment_titL.svg") center left/contain no-repeat;
  }
  .index_treatment .treatment_nav .wrap .treat_tit::after {
    font-size: 1.9rem;
    letter-spacing: 0.114rem;
  }
  .index_treatment .treatment_nav .wrap .subnav {
    gap: 8rem 1.5rem;
    width: 95rem;
    margin: 10rem 5.5rem 0 0;
    padding-bottom: 10rem;
    justify-content: center;
  }
  .index_treatment .treatment_nav .wrap .subnav > li {
    width: calc((100% - 4.5rem) / 4);
  }
  .index_treatment .treatment_nav .wrap .subnav > li::before {
    width: 18rem;
    height: 18rem;
  }
  .index_treatment .treatment_nav .wrap .subnav > li a {
    letter-spacing: 0.132rem;
    font-size: 2.2rem;
    position: relative;
    z-index: 0;
  }
  .index_treatment .treatment_nav .wrap .subnav > li a::before {
    width: 18rem;
    height: 18rem;
    margin: 0 auto 0.5rem;
    background-size: auto 55%;
  }
  .index_treatment .treatment_nav .wrap .subnav > li a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    content: "";
    display: block;
    border-radius: 50%;
    width: 18rem;
    height: 18rem;
    z-index: -1;
    transition: 0.4s;
    transform: scale(0.6);
  }
  .index_treatment .treatment_nav .wrap .subnav > li a:hover:after {
    border: 3px solid var(--clr_navy);
    transform: scale(1);
  }
  .index_treatment .treatment_nav.-ophthalmology .wrap {
    flex-direction: row-reverse;
  }
  .index_treatment .treatment_nav.-ophthalmology .wrap .treat_tit {
    margin-top: -5.5rem;
    padding-top: 14.8rem;
    padding-left: 2.5rem;
  }
  .index_treatment .treatment_nav.-ophthalmology .wrap .treat_tit::before {
    background: url("../img/index_ophthalmology_tit.svg") top 10.5rem right 2.2rem/auto 3.2rem no-repeat, url("../img/index_treatment_titR.svg") center right/contain no-repeat;
  }
  .index_treatment .treatment_nav.-ophthalmology .wrap .treat_tit::after {
    font-size: 1.4rem;
    letter-spacing: 0.084rem;
  }
  .index_treatment .treatment_nav.-ophthalmology .wrap .subnav {
    margin-top: 23.5rem;
    margin-left: 6rem;
    margin-right: 0;
    padding-bottom: 11rem;
  }
  .index_treatment .treatment_nav.-ophthalmology .wrap .subnav > li a:hover::after {
    border-color: var(--clr_gold);
  }
}

.slider {
  margin: 4rem 0;
}
.slider .loopslider {
  width: 100%;
  height: 12.5rem;
  position: relative;
  overflow: hidden;
}
.slider .loopslider ul {
  height: 100%;
  display: inline;
  overflow: hidden;
}
.slider .loopslider ul li {
  width: 18.75rem;
  height: 100%;
  display: inline-block;
  overflow: hidden;
}
.slider .loopslider ul li img {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .slider {
    margin: 8rem 0;
  }
  .slider .loopslider {
    height: 25rem;
  }
  .slider .loopslider ul li {
    width: 37.5rem;
  }
}

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

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

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

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
  line-height: 1;
}
.gallery .gallery_slider div {
  position: relative;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: var(--clr_white);
  min-height: 3rem;
  line-height: 1.3;
  display: grid;
  place-items: center;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(var(--rgb_navy), 0.7);
}
.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: "\f006";
  color: var(--clr_navy);
  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: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0.8rem auto;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_navy);
}
.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_navy);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
    line-height: 0;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    min-height: 6rem;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 5rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 5rem;
    margin: 1.4rem auto;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_navy);
  }
}
.access .main .gmap {
  height: 70vw;
}
.access .footer .gmap {
  display: none;
}
@media screen and (min-width: 48em), print {
  .access .main .gmap {
    height: 50rem;
  }
  .access .main .tbl_time {
    font-size: 2rem;
    width: 75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

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