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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  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%;
}

body {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 0 0 1em;
}
p:last-child {
  margin: 0;
}

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

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

a[class*=line], a[class*=btn_youtube] {
  pointer-events: none;
}
a[class*=line]:focus-visible, a[class*=btn_youtube]:focus-visible {
  outline: 1px solid #999;
  opacity: 0.5;
}

:root {
  --clr_txt: #333;
  --rgb_txt: 51, 51, 51;
  --clr_blue_dark: #004DA0;
  --rgb_blue_dark: 0, 77, 160;
  --clr_blue_dark2: #1DADE5;
  --rgb_blue_dark2: 29, 173, 229;
  --clr_blue_dark3: #29B9B5;
  --rgb_blue_dark3: 41, 185, 181;
  --clr_blue_dark4: #4180C5;
  --rgb_blue_dark4: 65, 128, 197;
  --clr_blue_dark5: #5DC2D0;
  --rgb_blue_dark5: 93, 194, 208;
  --clr_blue_dark6: #6284D1;
  --rgb_blue_dark6: 98, 132, 209;
  --clr_blue_dark7: #3C85D4;
  --rgb_blue_dark7: 60, 133, 212;
  --clr_blue_dark8: #0255AF;
  --rgb_blue_dark8: 2, 85, 175;
  --clr_blue: #64A0E1;
  --rgb_blue: 100, 160, 225;
  --clr_blue_light: #D1E6FB;
  --rgb_blue_light: 209, 230, 251;
  --clr_blue_light2: #D8F1FB;
  --rgb_blue_light2: 216, 241, 251;
  --clr_blue_light3: #DEEDFE;
  --rgb_blue_light3: 222, 237, 254;
  --clr_blue_light4: #EEF5FC;
  --rgb_blue_light4: 238, 245, 252;
  --clr_blue_light5: #E6EEFF;
  --rgb_blue_light5: 230, 238, 255;
  --clr_blue_light6: #DFF2F2;
  --rgb_blue_light6: 223, 242, 242;
  --clr_blue_light7: #EBFCFF;
  --rgb_blue_light7: 235, 252, 255;
  --clr_pink: #EB91A7;
  --rgb_pink: 235, 145, 167;
  --clr_pink_light: #F9DBDC;
  --rgb_pink_light: 249, 219, 220;
  --clr_gray_dark: #666666;
  --rgb_gray_dark: 102, 102, 102;
  --clr_gray: #707070;
  --rgb_gray: 112, 112, 112;
  --clr_gray_light: #F5F5F5;
  --rgb_gray_light: 245, 245, 245;
  --clr_gray_light2: #EBE8E8;
  --rgb_gray_light2: 235, 232, 232;
  --clr_orange: #F6AB89;
  --rgb_orange: 246, 171, 137;
  --clr_green: #D4F1DE;
  --rgb_green: 212, 241, 222;
  --clr_red: #DE0000;
  --rgb_red: 222, 0, 0;
  --clr_red_light: #C94A4A;
  --rgb_red_light: 201, 74, 74;
}

:root {
  --padding120: calc((100% - 120rem) / 2);
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes balloon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.6rem);
  }
}
@keyframes airball {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes clip_center {
  0% {
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_left {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_right {
  0% {
    clip-path: polygon(100% 0, 100% 1%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_top {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
    filter: brightness(100%);
  }
  50% {
    transform: scale(1.2);
    filter: brightness(105%);
  }
  100% {
    transform: scale(1);
    filter: brightness(100%);
  }
}
.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;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_strong {
  background: linear-gradient(to bottom, transparent 60%, var(--clr_txt) 60%);
}

.txt_red {
  color: var(--clr_red_light) !important;
}

.img_c {
  margin: 1rem auto 2rem;
  border-radius: 0.5rem;
}
.img_c.w40 {
  max-width: 80%;
}

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

img.tate {
  max-width: 60%;
}

.img_wrap img {
  width: auto;
  max-width: 90%;
  margin: auto;
}
.img_wrap img:not(:last-of-type) {
  margin: 0 auto 2rem;
}

@media screen and (min-width: 48em), print {
  .img_c.w40 {
    max-width: 40%;
  }
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  .img_l, .img_r, .img_c {
    border-radius: 1rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 0;
  }
  .img_wrap img {
    margin: 0;
    max-width: 48%;
  }
  .img_wrap img:not(:last-of-type) {
    margin: 0;
  }
}
.sp_n {
  display: none;
}

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

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

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

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

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

body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
  margin-top: 5rem;
}
body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
  margin-top: 4rem;
}
body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
  margin-top: 3rem;
}
body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

.mth2 {
  margin-top: 5rem !important;
}

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

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

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

@media screen and (min-width: 48em), print {
  .mt50 {
    margin-top: 10rem !important;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: 10rem;
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: 8rem;
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: 6rem;
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
  .mth2 {
    margin-top: 10rem !important;
  }
  .mth3 {
    margin-top: 8rem !important;
  }
  .mth4 {
    margin-top: 6rem !important;
  }
  .mth5 {
    margin-top: 4rem !important;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.2rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.5rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--clr_blue);
  color: #fff;
  text-align: center;
}
.tbl_time tr th[scope=col]:first-child {
  width: 30%;
  border-radius: 3px 0 0 3px;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 3px 3px 0;
}
.tbl_time tr th[scope=row] {
  border-bottom: 1px solid var(--clr_blue);
  font-size: 1.3rem;
}
.tbl_time tr th[scope=row] span {
  line-height: 1.2;
  display: block;
  font-size: 1.1rem;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--clr_blue);
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 2rem;
  }
  .tbl_time caption {
    margin-top: 1rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 26%;
  }
  .tbl_time tr th[scope=col]:last-child {
    width: 15%;
    padding: 0 5% 0 0;
  }
  .tbl_time tr th[scope=row] {
    font-size: 2.1rem;
  }
  .tbl_time tr th[scope=row] span {
    font-size: 1.8rem;
  }
  .tbl_time tr td {
    padding: 3rem 0;
  }
  .tbl_time tr td:last-child {
    padding: 0 5% 0 0;
  }
}
.tbl_basic {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1rem;
}
.tbl_basic tr th {
  border: 1px solid var(--clr_gray);
  padding: 0.4rem;
}
.tbl_basic tr th[scope=col] {
  background: var(--clr_blue_dark2);
  color: #fff;
  border-left: none;
}
.tbl_basic tr th[scope=col]:last-child {
  border-right: none;
}
.tbl_basic tr th[scope=row] {
  background: var(--clr_blue_light7);
  border-left: none;
}
.tbl_basic tr td {
  padding: 0.4rem;
  border: 1px solid var(--clr_gray);
}
.tbl_basic tr td:last-child {
  border-right: none;
}

@media screen and (min-width: 48em), print {
  .tbl_basic {
    font-size: inherit;
  }
  .tbl_basic tr th {
    padding: 1rem;
  }
  .tbl_basic tr td {
    padding: 1rem;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: 14rem;
  background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0.8) 2.5rem, transparent 6rem), url(../img/tit_01.jpg) no-repeat center/auto 100%;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  padding: 1rem;
  text-align: center;
  position: relative;
  margin-top: -4rem;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.tit_01::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/tit_01_oval.svg) no-repeat center/auto 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
}
.tit_01::after {
  content: "";
  width: 6rem;
  height: 9rem;
  background: url(../img/icon_dr.svg) no-repeat center bottom/100% auto;
  z-index: 2;
}

.tit_02 {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
  margin: 0 auto 2rem;
  padding: 0 1.6em;
  position: relative;
}
.tit_02::before, .tit_02::after {
  font-family: "fontello";
  content: "\e926";
  font-size: 1.3em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr_blue_dark);
}
.tit_02::before {
  left: 0;
}
.tit_02::after {
  right: 0;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 2rem;
  color: var(--clr_blue_dark);
  font-weight: 500;
}
.tit_03::after {
  content: "";
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, var(--clr_blue_dark) 50%, var(--clr_blue_dark2) 50%);
  display: block;
  margin: 0.3rem 0 0;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 2rem;
  padding: 0 0 0.3rem;
  font-weight: 500;
  color: var(--clr_blue);
  border-bottom: 2px solid var(--clr_blue);
}

.tit_05 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding: 0 0 0.3rem;
  font-weight: 500;
  color: var(--clr_blue_dark2);
  border-bottom: 2px dotted var(--clr_blue_dark2);
}

.tit_06 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 500;
  color: var(--clr_blue);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 64rem;
    background: linear-gradient(to bottom, #fff 0, transparent 30rem), url(../img/tit_01.jpg) no-repeat center/200rem auto;
    font-size: 4rem;
    margin-top: -16.6rem;
    padding: 16.5rem var(--padding120) 5rem;
    gap: 4rem;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  }
  .tit_01::before {
    background-size: 200rem auto;
  }
  .tit_01::after {
    width: 18rem;
    height: 28rem;
  }
  .tit_02 {
    font-size: 3.2rem;
    margin: 0 auto 4rem;
  }
  .tit_03 {
    font-size: 3rem;
    margin: 0 0 3rem;
  }
  .tit_03::after {
    height: 6px;
    margin: 0.5rem 0 0;
  }
  .tit_04 {
    font-size: 2.8rem;
    margin: 0 0 3rem;
    padding: 0 0 0.5rem;
    border-bottom: 3px solid var(--clr_blue);
  }
  .tit_05 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
    padding: 0 0 0.5rem;
    border-bottom: 4px dotted var(--clr_blue_dark2);
  }
  .tit_06 {
    font-size: 2.4rem;
    margin: 0 0 1.5rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_blue_light);
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_txt);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.dt1em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt1em > dt {
  width: 1em;
}
.lst_dl01.dt1em > dd {
  width: calc(100% - 1em);
}
.lst_dl01.dt2em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt2em > dt {
  width: 2em;
}
.lst_dl01.dt2em > dd {
  width: calc(100% - 2em);
}
.lst_dl01.dt3em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt3em > dt {
  width: 3em;
}
.lst_dl01.dt3em > dd {
  width: calc(100% - 3em);
}
.lst_dl01.dt4em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt4em > dt {
  width: 4em;
}
.lst_dl01.dt4em > dd {
  width: calc(100% - 4em);
}
.lst_dl01.dt5em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt5em > dt {
  width: 5em;
}
.lst_dl01.dt5em > dd {
  width: calc(100% - 5em);
}
.lst_dl01.dt6em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt6em > dt {
  width: 6em;
}
.lst_dl01.dt6em > dd {
  width: calc(100% - 6em);
}
.lst_dl01.dt7em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt7em > dt {
  width: 7em;
}
.lst_dl01.dt7em > dd {
  width: calc(100% - 7em);
}
.lst_dl01.dt8em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt8em > dt {
  width: 8em;
}
.lst_dl01.dt8em > dd {
  width: calc(100% - 8em);
}
.lst_dl01.dt9em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt9em > dt {
  width: 9em;
}
.lst_dl01.dt9em > dd {
  width: calc(100% - 9em);
}
.lst_dl01.dt10em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt10em > dt {
  width: 10em;
}
.lst_dl01.dt10em > dd {
  width: calc(100% - 10em);
}
@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}

.lst_dl02 {
  border-bottom: 1px solid var(--clr_gray);
  margin: 1em 0;
}
.lst_dl02 dt {
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
  border-top: 1px solid var(--clr_gray);
  border-bottom: 1px solid var(--clr_gray);
  background: var(--clr_blue_light7);
}
.lst_dl02 dd {
  padding: 1rem 1rem 2rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    display: flex;
    flex-wrap: wrap;
  }
  .lst_dl02 dt, .lst_dl02 dd {
    width: 50%;
    padding: 1rem 2rem;
  }
  .lst_dl02 dt {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--clr_gray);
    border-bottom: none;
  }
  .lst_dl02 dd {
    border-top: 1px solid var(--clr_gray);
  }
  .lst_dl02.dt_small dt {
    width: 30%;
  }
  .lst_dl02.dt_small dd {
    width: 70%;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  background: #ccc;
  padding: 1rem;
  position: relative;
}
.lst_flow > li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem 0 0;
}
.lst_flow > li .tit {
  font-size: 1.6rem;
  display: inline-block;
}
.lst_flow > li:not(:last-of-type) {
  margin: 0 0 5rem;
}
.lst_flow > li:not(:last-of-type)::after {
  content: "";
  width: 5rem;
  height: 2rem;
  background: #ccc;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 3rem;
  }
  .lst_flow > li::before {
    font-size: 2.6rem;
    width: 5rem;
    height: 5rem;
  }
  .lst_flow > li .tit {
    font-size: 2.4rem;
  }
  .lst_flow > li:not(:last-of-type) {
    margin: 0 0 8.5rem;
  }
  .lst_flow > li:not(:last-of-type)::after {
    width: 10rem;
    height: 4rem;
    bottom: -6.5rem;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex2.lst_ul > li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .flex2.gap {
    gap: 4rem;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel_style {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  gap: 0 0.2rem;
  color: var(--clr_blue_dark);
  font-weight: 700;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e8ec";
  font-size: 75%;
  padding: 0.2rem 0 0;
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .tel_style::before {
    padding: 0.5rem 0 0;
  }
}

.box_blue, .box_dark_blue {
  padding: 1rem;
  margin: 1em 0;
  border-radius: 0.8rem;
}
@media screen and (min-width: 48em), print {
  .box_blue, .box_dark_blue {
    padding: 3rem;
    border-radius: 1.5rem;
  }
}

.box_blue {
  background: var(--clr_blue_light7);
}

.box_dark_blue {
  background: var(--clr_blue_light4);
}

.btn_rsv, .btn_line, .btn_youtube {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 100vh;
  background: #fff;
  font-size: 1.3rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  transition: 0.5s;
}
@media screen and (min-width: 48em), print {
  .btn_rsv, .btn_line, .btn_youtube {
    width: 15rem;
    height: 15rem;
    font-size: 2.2rem;
    gap: 2rem;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }
  .btn_rsv:is(:hover, :focus-visible), .btn_line:is(:hover, :focus-visible), .btn_youtube:is(:hover, :focus-visible) {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  }
}

.btn_line, .btn_youtube {
  position: relative;
}
.btn_line::after, .btn_youtube::after {
  content: "（準備中）";
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .btn_line::after, .btn_youtube::after {
    bottom: 1rem;
    font-size: 1.4rem;
  }
}

.btn_rsv {
  color: #fff;
  background: var(--clr_blue_dark);
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e925";
  font-size: 200%;
  line-height: 1;
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    gap: 1rem;
  }
  .btn_rsv::before {
    font-size: 240%;
  }
}

.btn_line::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_line.svg) no-repeat center/contain;
}
@media screen and (min-width: 48em), print {
  .btn_line {
    padding: 0.5rem 0 0;
  }
  .btn_line::before {
    width: 4rem;
    height: 4rem;
  }
}

.btn_youtube span {
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  z-index: 0;
}
.btn_youtube::before {
  content: "You\aTube";
  white-space: pre;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--clr_red);
  border-radius: 5px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 48em), print {
  .btn_youtube {
    padding: 0.5rem 0 0;
  }
  .btn_youtube::before {
    width: 6rem;
    height: 6rem;
    font-size: 1.8rem;
  }
}

.btn_blue, .btn_blue2 {
  display: inline-block;
  padding: 0.6rem 3rem 0.6rem 1rem;
  background: #fff;
  color: #fff;
  text-decoration: none !important;
  border-radius: 0.5rem;
  position: relative;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
.btn_blue::before, .btn_blue2::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 48em), print {
  .btn_blue, .btn_blue2 {
    border-radius: 1rem;
    padding: 0.7rem 5rem 0.7rem 2rem;
    transition: 0.3s;
  }
  .btn_blue::before, .btn_blue2::before {
    width: 2.5rem;
  }
  .btn_blue:is(:hover, :focus-visible), .btn_blue2:is(:hover, :focus-visible) {
    transform: translateY(-0.5rem);
    box-shadow: 2px 7px 4px rgba(0, 0, 0, 0.16);
    opacity: 1;
  }
}

.btn_blue {
  background: var(--clr_blue_dark2);
}

.btn_blue2 {
  background: var(--clr_blue);
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  margin-left: 0.3rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 0.5rem;
  }
  .linkout::after:hover {
    text-decoration: none;
  }
}
.linkout.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}

.link {
  color: var(--clr_blue);
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #fff;
  color: #fff;
  text-decoration: none !important;
  border-radius: 0.5rem;
  position: relative;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  background: var(--clr_blue);
}
.lst_anc li a::after {
  font-family: "fontello";
  content: "\f107";
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 2rem;
  }
  .lst_anc li a {
    border-radius: 1rem;
    padding: 0.7rem 2rem;
    transition: 0.3s;
    gap: 1rem;
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    transform: translateY(-0.5rem);
    box-shadow: 2px 7px 4px rgba(0, 0, 0, 0.16);
    opacity: 1;
  }
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    position: absolute;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    width: 5rem;
    height: 5rem;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 5rem;
    color: var(--clr_blue_dark4);
    transition: 0.3s;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\e80b";
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\e80c";
  }
  .slick-arrow.slick-disabled {
    cursor: auto;
  }
  .slick-arrow.slick-disabled::before {
    display: none;
  }
}
.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: var(--clr_blue_dark4);
}
.slick-dots li button:is(:hover, :focus-visible) {
  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;
  }
}
.fontS_line1 {
  font-size: 1rem;
  line-height: 1;
  display: block;
}

@media screen and (min-width: 48em), print {
  .fontS_line1 {
    font-size: 1.4rem;
  }
}
html {
  font-size: 3.125vw;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_blue), 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

.main {
  font-size: 1.25rem;
  line-height: 1.8;
}
.main a:not([class*=btn], [href*="tel:"]) {
  text-decoration: underline;
}

@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;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 1rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 7rem;
  }
}

.header {
  position: relative;
  z-index: 1;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 4.6rem;
  background: #fff;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  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 {
  margin: 1rem 0 0;
}
.header > .wrap .headR ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header > .wrap .headR ul li.add {
  font-size: 1.2rem;
}
.header > .wrap .headR ul li .tel_style {
  font-size: 1.8rem;
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header > .wrap .logo {
    width: 40%;
    height: 5.5rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    width: 60%;
    margin: 0;
  }
  .header > .wrap .headR ul {
    flex-direction: column;
    align-items: flex-end;
  }
  .header > .wrap .headR ul li.add {
    font-size: 2.4rem;
    line-height: 1;
  }
  .header > .wrap .headR ul li .tel_style {
    font-size: 3.8rem;
    line-height: 1;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_blue_dark4);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  border-radius: 0.5rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  transition: 0.5s;
}
#nav #sp_menu span {
  width: 2.5rem;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}
#nav #sp_menu span:nth-of-type(1) {
  top: 33%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(2) {
  top: 50%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(3) {
  top: 67%;
  left: 50%;
}
#nav #sp_menu.close span {
  top: 50%;
}
#nav #sp_menu.close span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
#nav #sp_menu.close span:nth-of-type(2) {
  opacity: 0;
}
#nav #sp_menu.close span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}
#nav .gnav_subnav {
  width: calc(100% - 2rem);
  max-height: calc(100dvh - 7.6rem);
  overflow-y: auto;
  background: linear-gradient(to bottom, #fff 0, var(--clr_gray_light2) 100%);
  padding: 1.6rem;
  border-radius: 1rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 6.6rem;
  left: 1rem;
  right: 1rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
#nav .gnav_subnav.show {
  opacity: 1;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
#nav .gnav_subnav .gnav > li a.blog, #nav .gnav_subnav .gnav > li .sub.blog {
  background: linear-gradient(to bottom, var(--clr_blue) 0, var(--clr_blue_dark4) 100%);
  border-radius: 0.8rem;
  color: #fff;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_blue_dark2);
}
#nav .gnav_subnav .gnav > li a.current::after, #nav .gnav_subnav .gnav > li .sub.current::after {
  color: var(--clr_txt);
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\f004";
  font-size: 80%;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\f005";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  margin: 0 0 0.5rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  background: rgba(var(--rgb_blue_dark2), 0.7);
  display: flex;
  flex-wrap: wrap;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 50%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:last-child) {
  border-bottom: 1px dotted #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:nth-child(2n+1) {
  border-right: 1px dotted #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: left;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  background: var(--clr_blue_dark2);
}
#nav .gnav_subnav .gnav > li.accident .subbox > .subnav li:nth-last-child(2) {
  border-bottom: none;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  #nav.change_nav .gnav_subnav {
    width: 100%;
    border-radius: 0;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    width: 120rem;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    margin: auto;
    position: static;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 100vh;
  }
  #nav .gnav_subnav .gnav {
    max-width: 120rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
  #nav .gnav_subnav .gnav > li {
    flex: auto;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li.ft_only {
    display: none;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: 2.2rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    color: var(--clr_txt);
  }
  #nav .gnav_subnav .gnav > li a.blog, #nav .gnav_subnav .gnav > li .sub.blog {
    border-radius: 100vh;
  }
  #nav .gnav_subnav .gnav > li a.blog::before, #nav .gnav_subnav .gnav > li .sub.blog::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--clr_blue_dark7) 0, var(--clr_blue_dark8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 100vh;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: var(--clr_blue_dark2);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current).blog, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current).blog {
    color: #fff;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current).blog::before, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current).blog::before {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 63.2rem;
    position: absolute;
    left: 0;
    top: calc(100% + 0.5rem);
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 33.3333333333%;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li:nth-last-child(2), #nav .gnav_subnav .gnav > li .subbox > .subnav li:nth-last-child(3) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li:nth-child(2n+1) {
    border-right: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:nth-child(3n)) {
    border-right: 1px dotted #fff;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1.6rem 1.2rem;
    font-size: 1.8rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--clr_blue_dark2);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li.accident .subbox {
    width: 42rem;
  }
  #nav .gnav_subnav .gnav > li.accident .subbox > .subnav li {
    width: 50%;
  }
  #nav .gnav_subnav .gnav > li.accident .subbox > .subnav li:nth-child(3n) {
    border-right: 1px dotted #fff;
  }
  #nav .gnav_subnav .gnav > li.accident .subbox > .subnav li:nth-child(2n) {
    border-right: none;
  }
}
.side_btn {
  display: none;
}

@media screen and (min-width: 48em), print {
  .side_btn {
    display: block;
    position: fixed;
    right: 1rem;
    top: 15%;
    z-index: 200;
  }
  .side_btn li {
    margin: 0 0 1rem;
  }
}
.overview {
  padding: 4rem 1rem;
  font-size: 1.25rem;
  line-height: 1.6;
  background: url(../img/overview_bg.jpg) no-repeat center/cover;
}
.overview > .wrap {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
.overview > .wrap .clinic_name {
  margin: 0 0 2rem;
}
.overview > .wrap .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 26%;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .gaiyo dt span {
  background: var(--clr_blue);
  color: #fff;
  border-radius: 0.3rem;
  display: block;
  text-align: center;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 74%;
  padding: 0 0 0 1rem;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.overview > .wrap .overviewL .gaiyo dd .tel {
  font-size: 160%;
  line-height: 1;
  font-weight: bold;
  color: var(--clr_blue_dark2);
}
.overview > .wrap .overviewR {
  margin: 1rem 0 0;
}

.gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 10rem 0;
    font-size: 2rem;
  }
  .overview > .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7.5rem 6.7rem 6rem;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    border-radius: 1rem;
  }
  .overview > .wrap .clinic_name {
    margin: 0 0 5rem;
    width: 100%;
  }
  .overview > .wrap .clinic_name img {
    max-width: 33rem;
  }
  .overview > .wrap .overviewL {
    width: 50%;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 25%;
    margin: 0 0 1.3rem;
  }
  .overview > .wrap .overviewL .gaiyo dt span {
    padding: 0.2rem;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 75%;
    padding: 0 0 0 2rem;
    margin: 0 0 1.5rem;
  }
  .overview > .wrap .overviewR {
    width: 48.5%;
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=col] {
    padding: 0.5rem 0;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=col]:first-child {
    width: 25%;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=col]:last-child {
    padding: 0 3% 0 0;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=row] {
    padding: 0 0 0 2%;
  }
  .overview > .wrap .overviewR .tbl_time tr td:last-child {
    padding: 0 3% 0 0;
  }
  .gmap {
    height: 50rem;
  }
}
#tel_up {
  width: 100%;
  height: 7rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tel_up ul li {
  flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li .btn_rsv, #tel_up ul li .btn_line, #tel_up ul li .btn_youtube {
  height: 100%;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}
#tel_up ul li .btn_rsv::before, #tel_up ul li .btn_line::before {
  font-size: 150%;
}
#tel_up ul li .btn_line {
  border-right: 1px solid var(--clr_gray_light2);
}
#tel_up #pageup {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: url(../img/icon_page_top.svg) no-repeat center/100% auto;
  overflow: hidden;
  position: absolute;
  bottom: 8rem;
  right: 1rem;
  z-index: 101;
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 5rem;
    height: 5rem;
    bottom: 2rem;
    right: 16rem;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    position: static;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: var(--clr_blue_dark);
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4rem 0 0;
  }
  .footer .copy {
    margin: 5rem 0 0;
    padding: 2.5rem;
    font-size: 2rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    width: 80rem;
    margin: auto;
  }
  .footer ul li {
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 1.5rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child, .line_n)::after {
    content: "|";
    margin: 0 0.7rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment, .footer ul li.accident {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  overflow-x: clip;
  margin-top: -4rem;
}
.keyvsl::after {
  content: "";
  width: 100%;
  height: 6rem;
  background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0.8) 40%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.keyvsl #keyvsl {
  width: 140%;
  height: 20rem;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  visibility: hidden;
  object-fit: cover;
  clip-path: url("#clip-path");
  animation: fadein 1s forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 20rem !important;
  object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  padding: 0 1rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
}
.keyvsl > .wrap .catch {
  font-weight: bold;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 1.2rem;
  text-shadow: 0 0 0.3rem #fff, 0 0 0.3rem #fff, 0 0 0.3rem #fff, 0 0 0.3rem #fff, 0 0 0.3rem #fff;
}
.keyvsl > .wrap .catch::after {
  content: "";
  width: 23%;
  height: 10rem;
  margin: 0 0 0.5rem;
  background: url(../img/icon_dr.svg) no-repeat center/100% auto;
}
.keyvsl > .wrap .catch .txt_large {
  font-size: 137.5%;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin-top: -16.6rem;
  }
  .keyvsl::after {
    height: 30rem;
    background: linear-gradient(to bottom, #fff 0, transparent 100%);
  }
  .keyvsl #keyvsl {
    width: 219.2rem;
    height: 88rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 88rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    bottom: 0;
    padding: 0 0 1rem;
  }
  .keyvsl > .wrap .catch {
    font-size: 3.2rem;
    gap: 0 2rem;
    text-shadow: 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff;
  }
  .keyvsl > .wrap .catch::after {
    width: 18rem;
    height: 24rem;
    margin: 0 0 1rem;
  }
}
.bg_gray {
  background: url(../img/index_gray_bg.jpg) repeat center/100% auto;
  padding: 10rem 1rem 4rem;
  margin-top: -5rem;
}
.bg_gray > section {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 1rem;
}
.bg_gray > section:not(:last-of-type) {
  margin: 0 0 2rem;
}

@media screen and (min-width: 48em), print {
  .bg_gray {
    background-size: 100rem auto;
    background-position: top left calc(50% - 50rem);
    padding: 29rem var(--padding120) 10rem;
    margin-top: -17rem;
  }
  .bg_gray > section {
    padding: 6rem;
    border-radius: 2rem;
  }
  .bg_gray > section:not(:last-of-type) {
    margin: 0 0 3.2rem;
  }
}
.btn_rsv.top_rsv {
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: auto;
  border-radius: 1rem;
  padding: 1rem 3rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  .btn_rsv.top_rsv {
    display: none;
  }
}
.tit_02_top {
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  font-size: 2.2rem;
  margin: 0 0 2rem;
}
.tit_02_top::before {
  font-family: "fontello";
  content: "\e926";
  color: var(--clr_blue_dark);
  display: block;
  line-height: 1;
  font-size: 112%;
}
.tit_02_top::after {
  content: attr(data-txt);
  color: var(--clr_blue_dark2);
  display: block;
  font-size: 63%;
  font-weight: 900;
}

@media screen and (min-width: 48em), print {
  .tit_02_top {
    font-size: 3.8rem;
    margin: 0 0 4rem;
  }
}
.time .tbl_time tr th .tit {
  display: none;
}

@media screen and (min-width: 48em), print {
  .time {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .time .tit_02_top {
    width: fit-content;
    margin: 0;
  }
  .time .tbl_time {
    width: 83rem;
    padding: 1rem 0 0;
  }
}
.cal {
  padding: 1rem;
}
.cal .status_notice {
  margin: 0 0 1.5rem;
}
.cal .status_notice .status {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.cal .status_notice .status li {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
}
.cal .status_notice .status li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
}
.cal .status_notice .status li.closed::before {
  background: var(--clr_pink_light);
}
.cal .status_notice .status li.pm_closed::before {
  background: var(--clr_blue_light);
}
.cal .status_notice .status li.substitute::before {
  background: var(--clr_green);
}
.cal p {
  text-align: center;
}
.cal .caledit {
  width: 100%;
  margin: 0 0 2rem;
  font-size: 1.6rem;
}
.cal .caledit .week th, .cal .caledit td {
  font-size: 78%;
}

@media screen and (min-width: 48em), print {
  .cal .status_notice {
    font-size: 2rem;
    margin: 0 0 3.5rem;
  }
  .cal .status_notice .status {
    display: flex;
    gap: 3rem;
    font-size: 2rem;
    margin: 0;
  }
  .cal .status_notice .status li::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cal .cal_wrap {
    display: flex;
    justify-content: space-between;
  }
  .cal .caledit {
    width: 48%;
    font-size: 2.8rem;
    padding: 0 0 2rem;
    line-height: 1.4;
    margin: 0;
  }
  .cal .caledit .day td .shortTitle {
    font-size: 1.4rem;
  }
  .cal .status {
    width: 100%;
  }
}
.bnr_recruit {
  margin: 0 0 3rem;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.16));
}
.bnr_recruit a {
  display: block;
}

@media screen and (min-width: 48em), print {
  .bnr_recruit {
    margin: 5rem 0;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
  }
  .bnr_recruit a {
    width: 44.8rem;
    margin: auto;
  }
  .bnr_recruit a:is(:hover, :focus-visible) {
    transform: scale(1.05);
  }
}
.info {
  padding: 4rem 1rem;
}
.info dl {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  line-height: 1.3;
}
.info dl dt {
  display: flex;
  align-items: flex-start;
  gap: 0 0.4rem;
  margin: 0 0 0.6rem;
  color: var(--clr_blue_dark2);
  cursor: pointer;
  font-size: 110%;
}
.info dl dt::before {
  font-family: "fontello";
  content: "\e80a";
  font-size: 72%;
  padding: 0.3rem 0 0 1px;
}
.info dl dt.close::before {
  font-family: "fontello";
  content: "\e80d";
}
.info dl dt:not(:first-of-type) {
  margin: 2rem 0 0.6rem;
}
.info dl dd {
  margin: 0 0 1.6rem;
}
.info dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 6rem 3rem 5rem 6rem !important;
  }
  .info dl {
    max-height: 40rem;
    width: 86rem;
    padding: 0 5rem 0 0;
    font-size: 2rem;
  }
  .info dl dt {
    margin: 0 0 1rem;
    transition: 0.3s;
  }
  .info dl dt::before {
    padding: 0.6rem 0 0 1px;
  }
  .info dl dt:not(:first-of-type) {
    margin: 1.6rem 0 0.6rem;
    padding: 1.6rem 0 0;
  }
  .info dl dt:hover {
    color: var(--clr_blue_dark);
  }
  .info dl dd {
    margin: 0 0 1.6rem;
  }
}
.greeting {
  padding: 4rem 0;
}
.greeting .dr_wrap {
  background: url(../img/index_greeting_bg.jpg) no-repeat center/cover;
  padding: 2rem 0 3rem;
}
.greeting .dr_wrap img {
  width: 30%;
  margin: auto;
}
.greeting .dr_wrap p {
  font-size: 1.4rem;
  text-align: center;
}
.greeting .dr_wrap p span {
  font-size: 140%;
}
.greeting .txt_wrap {
  background: var(--clr_blue_light4) url(../img/logo_mark.svg) no-repeat center/50% auto;
  width: 90%;
  margin: -2rem auto;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  line-height: 1.72;
}

@media screen and (min-width: 48em), print {
  .greeting {
    position: relative;
    padding: 10rem var(--padding120) 5rem;
    z-index: 1;
  }
  .greeting::before {
    content: "";
    width: calc(50% - 18.8rem);
    height: 50rem;
    background: url(../img/index_greeting_bgL.jpg) no-repeat center right/cover;
    border-radius: 0 1rem 1rem 0;
    position: absolute;
    left: 0;
    top: 32rem;
    z-index: -1;
  }
  .greeting::after {
    content: "";
    width: calc(50% - 18.8rem);
    height: 50rem;
    background: url(../img/index_greeting_bgR.jpg) no-repeat center left/cover;
    border-radius: 1rem 0 0 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .greeting .tit_02_top {
    margin: 0 auto 5rem;
  }
  .greeting .dr_wrap {
    width: 48rem;
    border-radius: 1rem;
    margin: 0 0 0 24rem;
    padding: 4.5rem 0;
  }
  .greeting .dr_wrap img {
    width: 23rem;
  }
  .greeting .dr_wrap p {
    font-size: 2rem;
  }
  .greeting .txt_wrap {
    width: 50rem;
    border-radius: 1rem;
    font-size: 2.2rem;
    padding: 3.5rem 3rem;
    margin: -12rem 8rem 0 auto;
  }
  .greeting .txt_wrap .btn_blue {
    border-radius: 0.5rem;
  }
}
.bnr_line {
  background: #fff;
  border-radius: 0.5rem;
  margin: 4rem 1rem;
  padding: 2rem;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
  display: block;
  text-decoration: none !important;
  position: relative;
  z-index: 1;
}
.bnr_line::before {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr_blue_light);
  border-radius: 0.3rem;
  z-index: -1;
}
.bnr_line .tit {
  text-align: center;
  color: var(--clr_blue);
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.bnr_line ol {
  counter-reset: number 0;
}
.bnr_line ol li {
  background: #fff;
  border-radius: 0.3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.6;
  color: var(--clr_blue_dark);
}
.bnr_line ol li:not(:last-child) {
  margin: 0 0 1rem;
}
.bnr_line ol li::before {
  content: counter(number);
  counter-increment: number 1;
  font-family: "Playball", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue_light);
  font-size: 3rem;
  min-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 48em), print {
  .bnr_line {
    width: 65.4rem;
    margin: 10rem auto;
    padding: 2rem 5.8rem 4rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 1rem;
  }
  .bnr_line::before {
    content: "";
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border-radius: 0.8rem;
    transition: 0.3s;
  }
  .bnr_line .tit {
    font-size: 3.2rem;
    transition: 0.3s;
  }
  .bnr_line ol li {
    border-radius: 0.5rem;
    font-size: 2rem;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    gap: 2rem;
  }
  .bnr_line ol li:not(:last-child) {
    margin: 0 0 1.5rem;
  }
  .bnr_line ol li::before {
    font-size: 4rem;
    min-width: 4.5rem;
    line-height: 1;
  }
  .bnr_line:is(:hover, :focus-visible)::before {
    background: rgba(var(--rgb_blue), 0.6);
  }
  .bnr_line:is(:hover, :focus-visible) .tit {
    color: #fff;
  }
}
.bodyparts {
  background: url(../img/index_bodypart_circle.svg) no-repeat center top 7rem/120% auto, linear-gradient(to right, var(--clr_blue_light5) 0, var(--clr_blue_light6) 100%);
  padding: 4rem 1rem;
}
.bodyparts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.bodyparts ul::before {
  content: "";
  width: 100%;
  height: 26rem;
  background: url(../img/index_bodypart.svg) no-repeat center/auto 100%;
  display: block;
  margin: 0 0 1rem;
}
.bodyparts ul li {
  width: 48%;
}
.bodyparts ul li a {
  background: #fff;
  border: 2px solid var(--clr_blue_dark6);
  border-radius: 0.5rem;
  color: var(--clr_blue_dark6);
  display: block;
  text-align: center;
  text-decoration: none !important;
  padding: 1rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
.bodyparts ul li a::before {
  content: "";
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0, var(--clr_orange) 100%);
  position: absolute;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  opacity: 0.7;
}
.bodyparts ul li a.neck::before {
  left: 12.5rem;
  top: 2rem;
}
.bodyparts ul li a.shoulders::before {
  left: 16rem;
  top: 3.5rem;
}
.bodyparts ul li a.waist::before {
  left: 13.5rem;
  top: 9rem;
}
.bodyparts ul li a.hands::before {
  left: 18rem;
  top: 11.5rem;
}
.bodyparts ul li a.elbows::before {
  left: 9.7rem;
  top: 8.5rem;
}
.bodyparts ul li a.hip_joint::before {
  left: 14.5rem;
  top: 12.5rem;
}
.bodyparts ul li a.knees::before {
  left: 11.5rem;
  top: 17.5rem;
}
.bodyparts ul li a.feet::before {
  left: 15.5rem;
  top: 21.5rem;
}
.bodyparts ul li:nth-child(2n) a {
  color: var(--clr_blue_dark3);
  border: 2px solid var(--clr_blue_dark3);
}

@media screen and (min-width: 48em), print {
  .bodyparts {
    background: url(../img/index_bodypart_circle.svg) no-repeat center top 14rem/90.3rem auto, linear-gradient(to right, var(--clr_blue_light5) 0, var(--clr_blue_light6) 100%);
    padding: 9rem var(--padding120) 11rem;
    position: relative;
    z-index: 1;
  }
  .bodyparts ul {
    padding: 7rem 0 10rem;
    gap: 7rem 65rem;
    justify-content: space-between;
  }
  .bodyparts ul::before {
    height: 70rem;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .bodyparts ul li {
    width: 27.5rem;
  }
  .bodyparts ul li a {
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    font-size: 2.6rem;
    transition: 0.5s;
  }
  .bodyparts ul li a::before {
    width: 7rem;
    height: 7rem;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    transition: 0.5s;
  }
  .bodyparts ul li a.neck::before {
    left: 54rem;
    top: 5rem;
  }
  .bodyparts ul li a.shoulders::before {
    left: 63.5rem;
    top: 10rem;
  }
  .bodyparts ul li a.waist::before {
    left: 56.5rem;
    top: 23rem;
  }
  .bodyparts ul li a.hands::before {
    left: 69rem;
    top: 32rem;
  }
  .bodyparts ul li a.elbows::before {
    left: 47rem;
    top: 23.5rem;
  }
  .bodyparts ul li a.hip_joint::before {
    left: 60rem;
    top: 33rem;
  }
  .bodyparts ul li a.knees::before {
    left: 51.5rem;
    top: 45.5rem;
  }
  .bodyparts ul li a.feet::before {
    left: 62rem;
    top: 59rem;
  }
  .bodyparts ul li a:is(:hover, :focus-visible) {
    background: var(--clr_blue_light5);
    opacity: 1;
  }
  .bodyparts ul li a:is(:hover, :focus-visible)::before {
    animation: zoomInOut 2s ease-in-out infinite;
  }
  .bodyparts ul li:nth-child(2n) a:is(:hover, :focus-visible) {
    background: var(--clr_blue_light6);
  }
}
.tre {
  padding: 4rem 1rem;
}
.tre .subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.tre .subnav li {
  width: 48%;
}
.tre .subnav li.parts {
  display: none;
}
.tre .subnav li a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  display: block;
  text-align: center;
  background: var(--clr_blue_light4);
}
.tre .subnav li a::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.5rem;
}
.tre .subnav li a.ortho::before {
  background-image: url(../img/index_tre_ortho.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.rehabilitation::before {
  background-image: url(../img/index_tre_rehabilitation.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.sports_ortho::before {
  background-image: url(../img/index_tre_sports_ortho.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.accidents_insurance::before {
  background-image: url(../img/index_tre_accidents_insurance.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.osteoporosis::before {
  background-image: url(../img/index_tre_osteoporosis.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.injury::before {
  background-image: url(../img/index_tre_injury.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.rheumatism::before {
  background-image: url(../img/index_tre_rheumatism.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.vaccination_health_check::before {
  background-image: url(../img/index_tre_vaccination_health_check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
.tre .subnav li a.private::before {
  background-image: url(../img/index_tre_private.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
}
@media screen and (min-width: 48em), print {
  .tre {
    padding: 9rem var(--padding120);
  }
  .tre .subnav {
    gap: 2rem 3.6rem;
  }
  .tre .subnav li {
    width: 37.6rem;
  }
  .tre .subnav li a {
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    font-size: 2.2rem;
    padding: 1.5rem 3rem 1.5rem 2rem;
  }
  .tre .subnav li a::before {
    margin: 0;
    width: 9rem;
    height: 9rem;
    transition: 0.5s;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--clr_blue_light);
    opacity: 1;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current)::before {
    transform: rotateY(180deg);
  }
}
.feature {
  padding: 4rem 0;
  background: var(--clr_gray_light);
}
.feature ol {
  counter-reset: number 0;
}
.feature ol li:not(:last-of-type) {
  margin-bottom: 3rem;
}
.feature ol li::before {
  content: "";
  width: 65%;
  height: 13rem;
  display: block;
  margin: 0 0 -2rem 1rem;
  border-radius: 0.8rem;
  box-shadow: 0.5rem 0.5rem 0 rgba(var(--rgb_blue), 0.5);
  position: relative;
  z-index: 1;
}
.feature ol li.feat1::before {
  background: url(../img/index_feat1.jpg) no-repeat center/cover;
}
.feature ol li.feat2::before {
  background: url(../img/index_feat2.jpg) no-repeat center/cover;
}
.feature ol li.feat3::before {
  background: url(../img/index_feat3.jpg) no-repeat center/cover;
}
.feature ol li.feat4::before {
  background: url(../img/index_feat4.jpg) no-repeat center/cover;
}
.feature ol li.feat5::before {
  background: url(../img/index_feat5.jpg) no-repeat center/cover;
}
.feature ol li.feat6::before {
  background: url(../img/index_feat6.jpg) no-repeat center/cover;
}
.feature ol li .txt_wrap {
  background: linear-gradient(to right, var(--clr_blue_light3) 0, var(--clr_gray_light) 120%);
  padding: 3.5rem 1rem 2rem;
  position: relative;
  color: var(--clr_gray_dark);
}
.feature ol li .txt_wrap::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  font-family: "Oleo Script", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue);
  font-size: 7rem;
  position: absolute;
  top: -6rem;
  text-align: center;
  right: 1rem;
  z-index: 2;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  min-width: 8.5rem;
}
.feature ol li .txt_wrap .tit {
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 3px dotted var(--clr_blue);
  margin: 0 0 1rem;
  padding: 0 0 0.5rem;
}
.feature ol li .txt_wrap p {
  line-height: 1.5;
  margin: 0 0 0.5rem;
}
.feature ol li .txt_wrap .btn_blue, .feature ol li .txt_wrap .btn_blue2 {
  font-size: 110%;
}
.feature ol li:nth-child(2n)::before {
  box-shadow: 0.5rem 0.5rem 0 rgba(var(--rgb_blue_dark2), 0.5);
  margin: 0 1rem -2rem auto;
}
.feature ol li:nth-child(2n) .txt_wrap {
  background: linear-gradient(to left, var(--clr_blue_light2) 0, var(--clr_gray_light) 120%);
}
.feature ol li:nth-child(2n) .txt_wrap::before {
  color: var(--clr_blue_dark2);
  right: auto;
  left: 1rem;
}
.feature ol li:nth-child(2n) .txt_wrap .tit {
  border-bottom: 3px dotted var(--clr_blue_dark2);
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 9rem 0;
  }
  .feature .tit_02_top {
    margin: 0 auto 6rem;
  }
  .feature ol li {
    width: calc(120rem + (100% - 120rem) / 2);
    margin: 0 0 0 auto;
  }
  .feature ol li::before {
    width: 47.9rem;
    height: 32rem;
    box-shadow: 1rem 1rem 0 rgba(var(--rgb_blue), 0.5);
    border-radius: 1.5rem;
    margin: 0 0 -22rem;
  }
  .feature ol li .txt_wrap {
    margin: 0 0 0 30.9rem;
    border-radius: 0 0 0 1.5rem;
    min-height: 28rem;
    padding: 1rem calc(100% - 120rem) 3rem 28rem;
    background: linear-gradient(to right, var(--clr_blue_light3) 0, var(--clr_gray_light) 129.1rem);
  }
  .feature ol li .txt_wrap::before {
    font-size: 10rem;
    position: static;
    line-height: 1;
    margin-top: -5.5rem;
    display: block;
    width: fit-content;
  }
  .feature ol li .txt_wrap .tit {
    font-size: 2.6rem;
    border-bottom: 6px dotted var(--clr_blue);
    line-height: 1.4;
    padding: 0 0 1rem;
  }
  .feature ol li .txt_wrap p {
    font-size: 2rem;
  }
  .feature ol li:nth-child(2n) {
    margin-left: 0;
  }
  .feature ol li:nth-child(2n)::before {
    box-shadow: 1rem 1rem 0 rgba(var(--rgb_blue_dark2), 0.5);
    margin: 0 0 -23rem auto;
  }
  .feature ol li:nth-child(2n) .txt_wrap {
    margin: 0 30.6rem 0 0;
    padding: 1rem 28rem 3rem calc(100% - 120rem);
    border-radius: 0 0 1.5rem 0;
    background: linear-gradient(to left, var(--clr_blue_light2) 0, var(--clr_gray_light) 129.1rem);
  }
  .feature ol li:nth-child(2n) .txt_wrap .tit {
    border-bottom: 6px dotted var(--clr_blue_dark2);
  }
}
.philosophy {
  padding: 4rem 1rem 13rem;
  background: url(../img/index_philosophy_bg.svg) no-repeat center bottom 2rem/30% auto;
}
.philosophy ol {
  counter-reset: number 0;
}
.philosophy ol li {
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
  height: 17rem;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.6rem;
  position: relative;
  line-height: 1.45;
}
.philosophy ol li.phil1 {
  background: url(../img/index_philosophy1.jpg) no-repeat center/cover;
}
.philosophy ol li.phil2 {
  background: url(../img/index_philosophy2.jpg) no-repeat center/cover;
}
.philosophy ol li.phil3 {
  background: url(../img/index_philosophy3.jpg) no-repeat center/cover;
}
.philosophy ol li.phil4 {
  background: url(../img/index_philosophy4.jpg) no-repeat center/cover;
}
.philosophy ol li::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  color: var(--clr_blue_dark);
  font-family: "Oleo Script", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  display: block;
  line-height: 1;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
.philosophy ol li::after {
  content: "";
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.3rem;
}

@media screen and (min-width: 48em), print {
  .philosophy {
    padding: 9rem var(--padding120);
    background: url(../img/index_philosophy_bg.svg) no-repeat center top 44rem/24rem auto;
  }
  .philosophy .tit_02_top {
    margin: 0 auto 5rem;
  }
  .philosophy ol {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: space-between;
  }
  .philosophy ol li {
    width: 54rem;
    height: 30rem;
    border-radius: 1rem;
    margin: 0;
    padding: 0 0 1rem;
    font-size: 2.2rem;
  }
  .philosophy ol li::before {
    font-size: 8rem;
  }
  .philosophy ol li::after {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border-radius: 0.8rem;
  }
}
body:not(.index) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 3rem 1rem 6rem;
}
body:not(.index) .main .tel_style {
  font-size: 120%;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], .lst_anc > li > a) {
  color: var(--clr_blue_dark);
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 107.2rem;
    margin: 6rem auto 8rem;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 3rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.8rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap, .gallery .route_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_blue_light3);
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap, .gallery .route_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap, .gallery .route_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_thum div img, .gallery .route_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img, .gallery .route_thum .slick-current div img {
  border: 4px solid var(--clr_blue_dark4);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider, .gallery .route_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap, .gallery .route_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum, .gallery .route_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum#clinic02_nav .slick-track, .gallery .gallery_thum#access_route .slick-track, .gallery .route_thum#clinic02_nav .slick-track, .gallery .route_thum#access_route .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
main .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (min-width: 48em), print {
  main .btn_wrap {
    gap: 3rem;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 40rem;
  }
}

body.ortho .tbl_basic.symptom tr th[scope=col]:first-child {
  width: 22%;
}

body.sports_ortho .tbl_basic.parts {
  table-layout: fixed;
}
body.sports_ortho .tbl_basic.parts tr th[scope=col]:first-child {
  width: 26%;
}/*# sourceMappingURL=style.css.map */