@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;
  cursor: hand;
}

.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%;
}

button {
  cursor: pointer;
  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: #3A3A3A;
  --rgb_txt: 58, 58, 58;
  --clr_border: #CCCCCC;
  --rgb_border: 204, 204, 204;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_blue: #447AD2;
  --rgb_blue: 68, 122, 210;
  --clr_blue_light: #89ACE6;
  --rgb_blue_light: 137, 172, 230;
  --clr_blue_light02: #E9F4FF;
  --rgb_blue_light02: 233, 244, 255;
  --clr_blue_light03: #E8F1FF;
  --rgb_blue_light03: 232, 241, 255;
  --clr_blue_light04: #DCE6F8;
  --rgb_blue_light04: 220, 230, 248;
  --clr_blue_dark: #2C73AA;
  --rgb_blue_dark: 44, 115, 170;
  --clr_blue_dark02: #99C5F8;
  --rgb_blue_dark02: 153, 197, 248;
  --clr_blue_dark03: #4891E6;
  --rgb_blue_dark03: 72, 145, 230;
  --clr_blue_dark04: #2273D1;
  --rgb_blue_dark04: 34, 115, 209;
  --clr_blue_dark05: #1D4F88;
  --rgb_blue_dark05: 29, 79, 136;
  --clr_aqua: aqua;
  --rgb_aqua: 0, 255, 255;
  --clr_aqua_light: #ECF9FF;
  --rgb_aqua_light: 236, 249, 255;
  --clr_aqua_dark: #9BDCE9;
  --rgb_aqua_dark: 155, 220, 233;
  --clr_aqua_dark02: #00ACCF;
  --rgb_aqua_dark02: 0, 172, 207;
  --clr_aqua_dark03: #A2E6FB;
  --rgb_aqua_dark03: 162, 230, 251;
  --clr_aqua_dark04: #80CEDE;
  --rgb_aqua_dark04: 128, 206, 222;
  --clr_green: #55CB93;
  --rgb_green: 85, 203, 147;
  --clr_green_light: #A7E2C7;
  --rgb_green_light: 167, 226, 199;
  --clr_green_light02: #CFF6E4;
  --rgb_green_light02: 207, 246, 228;
  --clr_green_dark: #549A79;
  --rgb_green_dark: 84, 154, 121;
  --clr_green_dark02: #94B969;
  --rgb_green_dark02: 148, 185, 105;
  --clr_green_dark03: #5A7739;
  --rgb_green_dark03: 90, 119, 57;
  --clr_yellowgreen: #F7FFEC;
  --rgb_yellowgreen: 247, 255, 236;
  --clr_yellowgreen_light: #F1F9E8;
  --rgb_yellowgreen_light: 241, 249, 232;
  --clr_yellowgreen_dark: #D5F2B4;
  --rgb_yellowgreen_dark: 213, 242, 180;
  --clr_yellowgreen_dark02: #C7E1AA;
  --rgb_yellowgreen_dark02: 199, 225, 170;
  --clr_yellowgreen_dark03: #E7F1DC;
  --rgb_yellowgreen_dark03: 231, 241, 220;
  --clr_pink: #FFB7C7;
  --rgb_pink: 255, 183, 199;
  --clr_pink_light: #FFF2F5;
  --rgb_pink_light: 255, 242, 245;
  --clr_pink_light02: #FFF8FB;
  --rgb_pink_light02: 255, 248, 251;
  --clr_pink_dark: #FFB7C6;
  --rgb_pink_dark: 255, 183, 198;
  --clr_pink_dark02: #FFDBE3;
  --rgb_pink_dark02: 255, 219, 227;
  --clr_pink_dark03: #E5C3CB;
  --rgb_pink_dark03: 229, 195, 203;
  --clr_red: #E8607E;
  --rgb_red: 232, 96, 126;
  --clr_red_light: #F1839B;
  --rgb_red_light: 241, 131, 155;
  --clr_red_dark: #E26982;
  --rgb_red_dark: 226, 105, 130;
  --clr_orange: #F1B465;
  --rgb_orange: 241, 180, 101;
  --clr_gray: #707070;
  --rgb_gray: 112, 112, 112;
  --clr_gray_light: #BFBFBF;
  --rgb_gray_light: 191, 191, 191;
  --clr_gray_light02: #D5D5D5;
  --rgb_gray_light02: 213, 213, 213;
  --clr_gray_light03: #F9F9F9;
  --rgb_gray_light03: 249, 249, 249;
  --clr_gray_dark: #5D5D5D;
  --rgb_gray_dark: 93, 93, 93;
  --clr_purple: #B88BC8;
  --rgb_purple: 184, 139, 200;
  --header: 0px;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes yurayura {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(3deg);
  }
}
@keyframes yurayura02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-1deg) translateX(-2%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurayura03 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-2deg) translateX(-4%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurayura04 {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(3deg) translateX(-4%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurayura05 {
  0% {
    transform: rotate(-2deg);
  }
  40% {
    transform: translateY(-2%) rotate(5deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurayura06 {
  0% {
    transform: rotate(2deg);
  }
  40% {
    transform: translateY(3%) rotate(-3deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
@keyframes pyonpyon {
  0% {
    transform: translateY(0) scale(1, 1);
  }
  80% {
    transform: translateY(0) scale(1, 1);
  }
  85% {
    transform: translateY(-1.5rem) scale(1, 1);
  }
  90% {
    transform: translateY(0) scale(1, 1);
  }
  95% {
    transform: translateY(-1.5rem) scale(1, 1);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes pyonpyon02 {
  0% {
    transform: translateY(0%) scale(1, 1);
  }
  6% {
    transform: translateY(0%) scale(1, 0.95);
  }
  10% {
    transform: translateY(-15%) scale(1, 1);
  }
  20% {
    transform: translateY(0%) scale(1, 0.9);
  }
  30% {
    transform: translateY(0%) scale(1, 1);
  }
  100% {
    transform: translateY(0%) scale(1, 1);
  }
}
@keyframes pyonpyon03 {
  0% {
    transform: translateY(0) scale(1, 1);
  }
  30% {
    transform: translateY(0) scale(1, 1);
  }
  38% {
    transform: translateY(-1.5rem) scale(1, 1);
  }
  46% {
    transform: translateY(0) scale(1, 1);
  }
  54% {
    transform: translateY(-1.5rem) scale(1, 1);
  }
  62% {
    transform: translateY(0) scale(1, 1);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes fade_penguin {
  0% {
    height: 3.8rem;
  }
  45% {
    height: 3.8rem;
  }
  53% {
    height: 0.8rem;
  }
  75% {
    height: 0.8rem;
  }
  90% {
    height: 3.8rem;
  }
  100% {
    height: 3.8rem;
  }
}
@keyframes fade_penguin02 {
  0% {
    height: 10.5rem;
  }
  45% {
    height: 10.5rem;
  }
  53% {
    height: 2rem;
  }
  75% {
    height: 2rem;
  }
  90% {
    height: 10.5rem;
  }
  100% {
    height: 10.5rem;
  }
}
.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%;
}

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

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

.inline {
  display: inline-block;
}

.img_c {
  margin: 1rem auto;
  border-radius: 10px;
}

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

.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;
}

.mt10 {
  margin-top: 1rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt05 {
  margin-top: 0.5rem;
}

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

.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-radius: 15px;
  overflow: hidden;
  border-spacing: 0;
  background: #FFFFF0;
  border: 1px solid var(--clr_gray);
}
.tbl_time tr th {
  font-weight: 500;
  line-height: 1.2;
}
.tbl_time tr th[scope=col] {
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid var(--clr_gray);
  background: var(--clr_blue_dark);
  color: var(--clr_white);
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-right: 1px solid var(--clr_white);
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_gray);
  background-color: var(--clr_aqua_dark);
  color: var(--clr_txt);
  border-right: 1px solid var(--clr_gray);
  text-align: right;
  padding-right: 1rem;
}
.tbl_time tr th.time.-checkup::before {
  font-family: "fontello";
  content: "\e724";
  font-size: 80%;
  margin-right: 0.2rem;
  transform: translateY(-2px);
  display: inline-block;
  color: var(--clr_red);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--clr_gray);
  line-height: 1;
  background: var(--clr_white);
  font-size: 80%;
}
.tbl_time tr:nth-last-of-type(3) td {
  color: var(--clr_blue_dark);
}
.tbl_time tr:nth-last-of-type(2) td {
  color: var(--clr_red);
}
.tbl_time tr:last-of-type th.time {
  border-bottom: none;
}
.tbl_time tr:last-of-type td {
  border-bottom: none;
  color: var(--clr_green);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    border-radius: 20px;
  }
  .tbl_time tr th {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.4rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 36%;
  }
  .tbl_time tr th[scope=col]:last-child {
    width: 14%;
    padding-right: 3%;
  }
  .tbl_time tr th.time {
    padding: 0.4rem 6rem 0.4rem 0;
  }
  .tbl_time tr th.time.-checkup::before {
    margin-right: 0.4rem;
  }
  .tbl_time tr th.time .txt_small {
    font-size: 70%;
  }
  .tbl_time tr td {
    padding: 1.4rem 0;
    font-size: 100%;
  }
  .tbl_time tr td:last-child {
    padding-right: 3%;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  font-size: 2.1rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  background: url("../img/tit_01.png") bottom -0.5rem center/min(100%, 200rem) auto no-repeat, var(--clr_aqua_dark03);
  color: var(--clr_blue_dark);
  font-weight: 700;
  line-height: 1.2;
  min-height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tit_02 {
  color: var(--clr_blue_dark);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  padding: 2.5rem 0 3rem;
  background: url("../img/top_tit02_top.png") top center/4.5rem 2rem no-repeat, url("../img/top_tit02_bottom.png") bottom center/7rem 2rem no-repeat;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  background: var(--clr_blue);
  color: var(--clr_white);
  border-radius: 10px;
  padding: 0.6rem 5.5rem 0.6rem 1rem;
  position: relative;
}
.tit_03::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.3rem;
  right: 0.5rem;
  background: url("../img/tit_03.png") center center/contain no-repeat;
  width: 5rem;
  height: 3.5rem;
}

.tit_04 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--clr_green_dark);
  padding: 0 4rem 0.4rem 0.5rem;
  border-bottom: 3px solid var(--clr_green_dark);
  position: relative;
}
.tit_04::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3rem;
  right: 0;
  background: url("../img/tit_04.png") center center/contain no-repeat;
  width: 4rem;
  height: 3rem;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 0 3rem 0.3rem 0.5rem;
  font-weight: 700;
  color: var(--clr_red);
  border-bottom: 2px dashed var(--clr_red);
  position: relative;
}
.tit_05::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.1rem;
  right: 0.3rem;
  background: url("../img/tit_05.png") center center/contain no-repeat;
  width: 3rem;
  height: 2.5rem;
}

.tit_06 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--clr_green_dark);
  border-radius: 5px;
  background: var(--clr_yellowgreen_dark03);
  padding: 0.5rem 0.7rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 4.6rem;
    min-height: 32rem;
  }
  .tit_01 span {
    width: calc(1200px - 0rem);
    margin: 2rem auto;
  }
  .tit_02 {
    font-size: 5rem;
    margin-bottom: 5rem;
    letter-spacing: 0.2rem;
    padding: 4.2rem 0 5.6rem;
    background: url("../img/top_tit02_top.png") top center/10rem 3.4rem no-repeat, url("../img/top_tit02_bottom.png") bottom center/15rem 4.6rem no-repeat;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    padding: 1.4rem 14.5rem 1.4rem 1.8rem;
    border-radius: 20px;
  }
  .tit_03::after {
    width: 11.5rem;
    height: 8rem;
    right: 1.7rem;
    bottom: 0.4rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    border-width: 5px;
    padding: 0 8rem 0.7rem 0.7rem;
  }
  .tit_04::after {
    width: 8.5rem;
    height: 7rem;
    bottom: -0.7rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    padding: 0 6rem 0.7rem 0.7rem;
  }
  .tit_05::after {
    width: 6.7rem;
    height: 5.1rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    padding: 0.9rem 1.4rem;
  }
}
.lst {
  line-height: 1.4;
}
.lst > li:not(:last-child) {
  margin-bottom: 1rem;
}

.lst_ul {
  line-height: 1.4;
}
.lst_ul > li {
  padding-left: 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_blue_light);
  position: absolute;
  left: 0;
}
.lst_ul.-color02 > li::before {
  color: var(--clr_red_light);
}
.lst_ul.-kome > li::before {
  content: "※";
  color: inherit;
}
.lst_ul.-check > li::before {
  font-family: "fontello";
  content: "\e80e";
  left: 0.15rem;
  color: var(--clr_blue_dark);
  transform: translateY(1px);
}

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

.lst_dl {
  --dl_border: var(--clr_border);
}
.lst_dl dt {
  background: var(--clr_blue_light04);
  color: var(--clr_gray_dark);
  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;
  background: var(--clr_gray_light03);
  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);
}
@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_dl02 dt {
  font-weight: 700;
}
.lst_dl02 dd {
  margin-bottom: 1rem;
}
.lst_dl02 dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl02 dt {
    width: 8.5em;
  }
  .lst_dl02 dd {
    width: calc(100% - 8.5em);
    padding-left: 1rem;
  }
}

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

.flow_ol {
  counter-reset: number 0;
}
.flow_ol > li {
  border-radius: 5px;
  padding: 1.5rem;
  counter-increment: number 1;
  position: relative;
}
.flow_ol > li:not(:last-child) {
  margin: 0 0 6rem;
}
.flow_ol > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  border-top: 1.8rem solid var(--clr_blue_light04);
  border-right: 2.5rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2.5rem solid transparent;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .flow_ol > li:not(:last-child)::after {
    bottom: -7.5rem;
    border-top: 3.5rem solid var(--clr_blue_light04);
    border-right: 4.5rem solid transparent;
    border-left: 4.5rem solid transparent;
  }
}
.flow_ol > li {
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    border-radius: 30px;
  }
}
.flow_ol > li {
  background: var(--clr_gray_light03);
}
.flow_ol > li .flow_tit {
  padding: 0.2rem 0.6rem 0.2rem 1.8em;
  margin: 0 0 1.5rem;
  display: block;
  width: fit-content;
  color: var(--clr_white);
  background: var(--clr_green_dark);
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  position: relative;
}
.flow_ol > li .flow_tit::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  left: 1rem;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    padding: 5rem;
  }
  .flow_ol > li .flow_tit {
    margin-bottom: 2rem;
    padding: 0.4rem 2rem 0.4rem 2em;
    font-size: 2rem;
  }
  .flow_ol > li .flow_tit::before {
    left: 1.7rem;
  }
}

.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: fit-content;
}
.flex1 > li:not(:last-child) {
  margin-bottom: inherit;
}

.flex1_1 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.flex1_1.-center {
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: calc(50% - 1rem);
    margin-top: 0 !important;
  }
  .flex2 > section:not(:last-child), .flex2 > li:not(:last-child), .flex2 > div:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex3 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3_1 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex4 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 3rem;
  }
  .flex1_1 {
    flex-direction: row;
    gap: 1rem 3rem;
  }
  .flex1_1.-center {
    justify-content: center;
  }
}
.tel {
  display: inline-block;
  font-size: 115%;
}
@media screen and (min-width: 48em), print {
  .tel {
    font-size: 2.2rem;
  }
}

.rsv, .LINE, .instagram {
  display: inline-block;
  color: var(--clr_white);
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.rsv::before, .LINE::before, .instagram::before {
  margin-right: 0.5rem;
  display: inline-block;
  line-height: 1;
  font-size: 120%;
  font-weight: 500;
}
@media screen and (min-width: 48em), print {
  .rsv::before, .LINE::before, .instagram::before {
    margin-right: 0.8rem;
  }
}

.rsv {
  background: var(--clr_pink) !important;
  color: var(--clr_white);
}
.rsv::before {
  font-family: "fontello";
  content: "\e80d";
}
.rsv:hover {
  filter: brightness(1.05);
}

.LINE {
  background: #00B900 !important;
}
.LINE::before {
  font-family: "fontello";
  content: "\e80f";
}
.LINE:hover {
  filter: brightness(1.05);
}

.instagram {
  background: #CF2E92 !important;
}
.instagram::before {
  font-family: "fontello";
  content: "\E823";
}
@media screen and (min-width: 48em), print {
  .instagram::before {
    font-size: 4.3rem !important;
  }
}
.instagram:hover {
  filter: brightness(1.05);
}

.box {
  padding: 1.5rem;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .box {
    border-radius: 30px;
  }
}
.box {
  background: var(--clr_pink_light);
  border: 1px solid var(--clr_pink_dark03);
}
.box.-color02 {
  background: var(--clr_yellowgreen_light);
  border-color: var(--clr_yellowgreen_dark02);
}
.box .box_tit {
  font-size: 110%;
  margin: 0 auto 1.5rem;
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 5rem;
  }
}

.btn {
  display: inline-block;
  background: var(--clr_blue_dark);
  border-radius: 50vh;
  color: var(--clr_white);
  padding: 1rem 3rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  text-align: center;
  font-size: 110%;
  letter-spacing: 0.04rem;
}
.btn::after {
  font-family: "fontello";
  content: "\32";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  right: 1.5rem;
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 1.7rem 3rem 1.7rem 3.5rem;
    font-size: 2rem;
    min-width: 20rem;
  }
  .btn::after {
    position: static;
    transform: inherit;
    margin-left: 0.8rem;
  }
  .btn:hover {
    opacity: 1;
    background: var(--clr_blue_light);
  }
}
.btn.-border {
  border: 2px solid var(--clr_green_dark);
  background: var(--clr_white);
  color: var(--clr_green_dark);
}
@media screen and (min-width: 48em), print {
  .btn.-border {
    border-width: 3px;
  }
  .btn.-border:hover {
    background: var(--clr_green_dark);
    color: var(--clr_white);
  }
}
.btn.-big {
  background: var(--clr_yellowgreen_dark);
  color: var(--clr_green_dark03);
  border: 2px solid var(--clr_green_dark02);
  font-size: 120%;
  padding: 1.2rem 6rem;
  z-index: 1;
  box-shadow: 0px 0px 0px 3px var(--clr_white), 0px 0px 0px 5px var(--clr_green_dark02);
  margin: 5px;
}
.btn.-big::after {
  font-family: "fontello";
  content: "\e4a2";
  color: var(--clr_green_dark02);
  right: 1.2rem;
  background-image: radial-gradient(circle closest-corner, var(--clr_white) 60%, transparent 60%);
  border-radius: 50%;
}
@media screen and (min-width: 48em), print {
  .btn.-big {
    font-size: 2.6rem;
    padding: 2rem 9rem;
    min-width: 48rem;
    border-width: 3px;
    box-shadow: 0px 0px 0px 4px var(--clr_white), 0px 0px 0px 6px var(--clr_green_dark02);
  }
  .btn.-big::after {
    position: absolute;
    transform: translateY(-40%);
    font-size: 120%;
    right: 1.5rem;
  }
  .btn.-big:hover {
    filter: brightness(1.1) opacity(0.9);
  }
}

.lnk {
  display: inline-block;
  cursor: pointer;
  text-decoration: underline;
  color: var(--clr_red);
}
.lnk::after {
  font-family: "fontello";
  content: "\F101";
  padding-left: 0.3rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::after {
    padding-left: 0.6rem;
  }
}
.lnk:hover {
  text-decoration: none;
  opacity: 1;
}
.lnk.scr::after {
  font-family: "fontello";
  content: "\F103";
}
.lnk.out::after {
  font-family: "fontello";
  content: "\f08e";
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.tbl caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl tr th {
  text-align: left;
  padding: 1rem;
  font-weight: 700;
  border: 1px solid var(--clr_border);
  background: var(--clr_blue_light04);
  color: var(--clr_blue_dark);
}
.tbl tr th.w40 {
  width: 40%;
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--clr_border);
}
.tbl tr .nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl tbody tr th {
  background: var(--clr_gray_light03);
  color: var(--clr_txt);
}

@media screen and (min-width: 48em), print {
  .tbl tr th {
    padding: 1rem 2.5rem;
  }
  .tbl tr td {
    padding: 1rem 2.5rem;
  }
}
.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;
  }
}
.js-tab_content {
  display: none;
}
.js-tab_content.active {
  display: block;
}

.map_tab {
  background: var(--clr_pink);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .map_tab {
    border-radius: 30px;
  }
}
.map_tab {
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 1rem;
  position: relative;
}
.map_tab::before, .map_tab::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.map_tab::before {
  width: 8.5rem;
  height: 4rem;
  background: url("../img/map_tab.png") center center/contain no-repeat;
  top: -1rem;
  left: 1.5rem;
}
.map_tab::after {
  width: 9.5rem;
  height: 4rem;
  background: url("../img/logo_mark02.png") center center/contain no-repeat;
  top: -0.8rem;
  right: 1.5rem;
}
.map_tab .js-tab_area {
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .map_tab .js-tab_area {
    border-radius: 30px;
  }
}
.map_tab .js-tab_area {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.5/1;
  background: var(--clr_white);
}
.map_tab .js-tab_area > ul {
  height: 100%;
}
.map_tab .js-tab_area > ul > li {
  height: 100%;
  display: grid;
  place-items: center;
}
.map_tab .js-tab_area > ul > li img, .map_tab .js-tab_area > ul > li iframe {
  width: 100%;
  object-fit: contain;
}
.map_tab .js-tab_ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.map_tab .js-tab_ul li a {
  border-radius: 50vh;
  background: var(--clr_white);
  padding: 0.4rem 1rem;
  font-weight: 700;
}
.map_tab .js-tab_ul li a::after {
  font-family: "fontello";
  content: "\e4a2";
  display: inline-block;
  margin-left: 0.3rem;
}
.map_tab .js-tab_ul li a.-red {
  color: var(--clr_red);
}
.map_tab .js-tab_ul li a.-blue {
  color: var(--clr_blue);
}
@media screen and (min-width: 48em), print {
  .map_tab {
    padding: 6.5rem 3rem 3rem;
  }
  .map_tab::before {
    width: 16rem;
    height: 6.6rem;
    top: -1.8rem;
    left: 3rem;
  }
  .map_tab::after {
    width: 18rem;
    height: 6.5rem;
    top: -1.7rem;
    right: 3rem;
  }
  .map_tab .js-tab_ul {
    gap: 2rem;
    margin-top: 3rem;
  }
  .map_tab .js-tab_ul li a {
    padding: 0.4rem 1.8rem;
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .map_tab .js-tab_ul li a::after {
    margin-left: 0.3rem;
  }
  .map_tab .js-tab_ul li a:hover {
    opacity: 1;
    color: var(--clr_white);
  }
  .map_tab .js-tab_ul li a:hover.-red {
    background: var(--clr_red);
  }
  .map_tab .js-tab_ul li a:hover.-blue {
    background: var(--clr_blue);
  }
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

html {
  font-size: 3.125vw;
}

body {
  background: url("../img/footer_bg.webp") bottom center/125% auto no-repeat, var(--clr_white);
  color: var(--clr_txt);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_aqua_dark03), 0.8);
  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.3rem;
  line-height: 1.6;
}

.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);
    background: url("../img/footer_bg.webp") bottom center/202.5rem auto no-repeat, var(--clr_white);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .main {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .wrap {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
:target {
  scroll-margin-top: var(--header);
}

.header {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--clr_white);
  box-shadow: 0 8px 7px rgba(var(--rgb_gray_light), 0.1);
}
.header .wrap {
  padding: 1rem 0;
  margin: 0 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.png) no-repeat left center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}

@media screen and (min-width: 48em), print {
  .header {
    position: static;
    background: var(--clr_aqua_dark03);
    box-shadow: none;
  }
  .header .wrap {
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    height: 10rem;
    width: 100%;
    max-width: calc(100% - 65.2rem - 4% - 2rem);
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_white);
  border: 2px solid var(--clr_blue_dark);
  border-radius: 4px;
  color: var(--clr_blue_dark);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 102;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 3.6rem;
  margin: -0.4rem 0;
  transition: 0.2s;
}
#nav #sp_menu::after {
  content: "MENU";
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
  }
  #nav #sp_menu {
    display: none;
  }
}

.gnav_subnav {
  display: none;
  width: calc(100% - 2rem);
  max-height: 70vh;
  overflow-y: auto;
  background: var(--clr_white);
  border-radius: 20px;
  padding: 1.5rem;
  position: absolute;
  top: 7.7rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: calc(infinity);
}
.gnav_subnav .gnav > li {
  min-width: fit-content;
}
.gnav_subnav .gnav > li a, .gnav_subnav .gnav > li .sub, .gnav_subnav .gnav > li .sub02 {
  display: flex;
  align-items: flex-end;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.3rem;
  color: var(--clr_blue_dark);
}
.gnav_subnav .gnav > li a.current, .gnav_subnav .gnav > li .sub.current, .gnav_subnav .gnav > li .sub02.current {
  color: var(--clr_red);
}
.gnav_subnav .gnav > li .sub::after, .gnav_subnav .gnav > li .sub02::after {
  font-family: "fontello";
  content: "\A80B";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  transition: 0.2s;
}
.gnav_subnav .gnav > li .sub.close::after, .gnav_subnav .gnav > li .sub02.close::after {
  transform: scale(1, -1);
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: linear-gradient(to bottom, var(--clr_blue_dark02), var(--clr_blue_dark03));
  border: 1px solid var(--clr_white);
  border-radius: 10px;
}
.gnav_subnav .gnav > li .subbox .subnav li:not(:first-of-type) {
  border-top: 2px dashed var(--clr_white);
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 1rem;
  color: var(--clr_white);
  position: relative;
}
.gnav_subnav .gnav > li .subbox .subnav li a::after {
  font-family: "fontello";
  content: "\32";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.gnav_subnav .gnav > li .subbox .subnav li a.current {
  background: rgba(var(--rgb_white), 0.3);
}
.gnav_subnav .gnav > li .subbox .subnav li .sub02 {
  color: var(--clr_white);
}
.gnav_subnav .gnav > li .subbox .subnav li .subbox.-layer02 {
  border-radius: 0;
  border: none;
  background: linear-gradient(to bottom, var(--clr_blue_dark04), var(--clr_blue_dark05));
}
.gnav_subnav .gnav > li .subbox .subnav li .subbox.-layer02 .subnav li:last-of-type {
  border-bottom: none;
}
.gnav_subnav .gnav > li .subbox .subnav li .subbox.-layer02 .subnav li:first-of-type {
  border-top: 2px dashed var(--clr_white);
}
.gnav_subnav .gnav > li .subbox .subnav li .subbox.-layer02 .subnav a.current {
  background: none;
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    width: 65.2rem;
    max-height: inherit;
    overflow-y: visible;
    position: fixed;
    right: 4%;
    left: auto;
    top: 5rem;
    padding: 0.5rem 4rem;
    border-radius: 50vh;
    box-shadow: 0 4px 7px 0 rgba(var(--rgb_gray), 0.16);
  }
  .gnav_subnav .gnav {
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  .gnav_subnav .gnav li {
    position: relative;
  }
  .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  .gnav_subnav .gnav li a, .gnav_subnav .gnav li .sub, .gnav_subnav .gnav li .sub02 {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    margin: 0;
    cursor: pointer;
    position: relative;
  }
  .gnav_subnav .gnav li a::after, .gnav_subnav .gnav li .sub::after, .gnav_subnav .gnav li .sub02::after {
    content: none;
  }
  .gnav_subnav .gnav li a.current, .gnav_subnav .gnav li .sub.current, .gnav_subnav .gnav li .sub02.current {
    color: var(--clr_blue_dark);
  }
  .gnav_subnav .gnav li a:hover, .gnav_subnav .gnav li .sub:hover, .gnav_subnav .gnav li .sub02:hover {
    opacity: 1;
    color: var(--clr_red);
  }
  .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 6.2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    width: 22rem;
  }
  .gnav_subnav .gnav li .subbox > .subnav li {
    width: 100%;
  }
  .gnav_subnav .gnav li .subbox > .subnav li::after {
    content: none;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a, .gnav_subnav .gnav li .subbox > .subnav li .sub, .gnav_subnav .gnav li .subbox > .subnav li .sub02 {
    font-size: 1.8rem;
    padding: 1.8rem 2.5rem;
    text-align: center;
  }
  .gnav_subnav .gnav li .subbox > .subnav li a:hover, .gnav_subnav .gnav li .subbox > .subnav li .sub:hover, .gnav_subnav .gnav li .subbox > .subnav li .sub02:hover {
    opacity: 1;
    color: var(--clr_white);
    background: rgba(var(--rgb_white), 0.3);
  }
  .gnav_subnav .gnav li .subbox > .subnav li .sub02::after {
    font-family: "fontello";
    content: "\32";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .gnav_subnav .gnav li .subbox > .subnav li .subbox.-layer02 {
    left: 34rem;
    top: 0;
    border-radius: 20px;
    border: 1px solid var(--clr_white);
  }
  .gnav_subnav .gnav li .subbox > .subnav li .subbox.-layer02 .subnav li:first-of-type {
    border-top: none;
  }
}

.overview {
  padding: 4rem 0;
  font-size: 1.3rem;
  line-height: 1.6;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 100%;
  margin: auto;
}
.overview .gaiyo {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}
.overview .gaiyo > dl {
  border: 2px solid var(--clr_blue_light);
  background: var(--clr_white);
  border-radius: 30px;
  padding: 0.5rem 2.3rem;
  line-height: 1.3;
}
.overview .gaiyo > dl dt {
  color: var(--clr_blue_dark);
  margin-bottom: 0.2rem;
}
.overview .bnr_drsfile {
  margin: 2rem auto 0;
  width: 94%;
}
.overview .tbl_time {
  margin-top: 2rem;
}
.overview .tbl_time_caption {
  margin: 0.6rem 0 0 1.2rem;
  font-size: 90%;
}
.overview .map_tab {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 5.5rem;
  }
  .overview .clinic_name img {
    max-width: 60rem;
  }
  .overview .overview_flex {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .overview .overview_flex .overviewL {
    width: 46%;
  }
  .overview .overview_flex .overviewR {
    width: 50%;
  }
  .overview .gaiyo {
    gap: 0.8rem 0;
  }
  .overview .gaiyo > dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.2rem 2.8rem;
    font-size: 1.6rem;
  }
  .overview .gaiyo > dl dt {
    width: 24%;
  }
  .overview .gaiyo > dl dd {
    width: 76%;
  }
  .overview .bnr_drsfile {
    margin: 4rem auto 0;
    width: 70%;
  }
  .overview .tbl_time {
    margin: 0;
  }
  .overview .tbl_time_caption {
    margin: 1.3rem 0 0 4.6rem;
    font-size: 1.4rem;
  }
  .overview .map_tab {
    margin-top: 4.5rem;
  }
}
#tel_up {
  width: 100%;
  height: 3.8rem;
  background: var(--clr_aqua_light);
  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% - 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#tel_up ul li {
  width: calc((100% - 0.6rem) / 3);
  height: calc(100% - 0.4rem);
  display: flex;
  align-items: center;
  font-size: 1rem;
}
#tel_up ul li .LINE, #tel_up ul li .rsv, #tel_up ul li .instagram {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50vh;
  line-height: 1.1;
}
#tel_up ul li .LINE::before, #tel_up ul li .rsv::before, #tel_up ul li .instagram::before {
  font-size: 120%;
}
#tel_up #pageup {
  display: block;
  width: 3rem;
  height: 3rem;
  position: relative;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
  font-size: 1.6rem;
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  color: var(--clr_blue_dark);
  background: var(--clr_white);
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  border: 2px solid var(--clr_blue_dark);
  border-radius: 50%;
  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: 10.7rem;
    height: auto;
    bottom: 3rem;
    right: 0;
    left: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    gap: 1.5rem 0;
  }
  #tel_up ul {
    width: 10.7rem;
    height: auto;
    flex-direction: column;
    gap: 1.5rem 0;
  }
  #tel_up ul li {
    width: 100%;
    height: 11.9rem;
    display: block;
  }
  #tel_up ul li .LINE, #tel_up ul li .rsv, #tel_up ul li .instagram {
    border-radius: 20px 0 0 20px;
    flex-direction: column;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  #tel_up ul li .LINE::before, #tel_up ul li .rsv::before, #tel_up ul li .instagram::before {
    display: block;
    margin: 0 0 0.5rem 0;
    font-size: 5rem;
  }
  #tel_up ul li .instagram::before {
    width: 50px;
    height: 50px;
  }
  #tel_up ul li:has(.rsv) {
    height: 9.5rem;
  }
  #tel_up ul li:last-child {
    display: block !important;
  }
  #tel_up #pageup {
    width: 10.7rem;
    height: 8rem;
    margin-inline: auto;
  }
  #tel_up #pageup::before {
    font-size: 4rem;
    width: 8rem;
    height: 8rem;
    top: 0.2rem;
    right: 0;
    left: 0;
    margin: auto;
  }
  #tel_up #pageup:hover {
    opacity: 0.7;
  }
}
.footer {
  text-align: center;
  padding: 0 0 3.8rem;
}
.footer .copy {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}
.footer .lnk_privacypolicy {
  display: inline-block;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 2.5rem 0 0;
  }
  .footer .copy {
    padding: 3rem 1rem;
    font-size: 1.6rem;
  }
  .footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80rem;
    margin: 0 auto;
    gap: 0.5rem 0;
  }
  .footer ul li {
    text-align: center;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment, .footer ul li .subbox {
    display: none;
  }
  .footer ul.subnav {
    margin-top: 0.5rem;
  }
  .footer ul.subnav li:nth-child(7)::after {
    content: none;
  }
  .footer ul.subnav li.allergy_btn {
    display: none;
  }
  .footer .lnk_privacypolicy {
    font-size: 1.6rem;
    padding-top: 1.5rem;
  }
  .footer .lnk_privacypolicy:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 48em), print {
  body.index .header {
    background: none;
    max-width: 200rem;
    margin-inline: auto;
    position: relative;
  }
  body.index .header > .wrap {
    padding: 0;
  }
  body.index .header .logo {
    position: absolute;
    top: 17rem;
    left: 7.5%;
    width: 28rem;
    height: 28.612rem;
  }
  body.index .header .logo a {
    background: url(../img/logo_tate.png) no-repeat left center/contain;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 26rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-slide div img {
  height: 24rem !important;
  width: 100%;
  object-fit: cover;
}
.keyvsl #keyvsl .slick-slide:nth-of-type(2) div img {
  object-position: 95%;
}
.keyvsl #keyvsl .slick-slide:nth-of-type(3) div img {
  object-position: 20%;
}
.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 .wrap {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 24rem;
}
.keyvsl .wrap::before, .keyvsl .wrap::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
}
.keyvsl .wrap::before {
  background: url("../img/index_keyvsl_deco04.png") center center/contain no-repeat;
  width: 13rem;
  height: 8rem;
  right: -3rem;
  bottom: 0.5rem;
  animation: yurayura02 2.5s ease-in-out infinite;
}
.keyvsl .wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2.5rem;
  right: 10rem;
  background: url("../img/index_keyvsl_deco03.png") center center/contain no-repeat;
  width: 4.5rem;
  height: 3.2rem;
  z-index: 2;
  transform-origin: center bottom;
  animation: pyonpyon02 3s ease-in-out infinite;
}
.keyvsl .catch_copy {
  position: absolute;
  z-index: 1;
  top: 11.5rem;
  left: 1.5rem;
  color: var(--clr_aqua_dark02);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.4;
  text-shadow: 0px 0px 2px rgba(var(--rgb_white), 1), 0px 0px 2px rgba(var(--rgb_white), 1), 0px 0px 2px rgba(var(--rgb_white), 1), 0px 0px 2px rgba(var(--rgb_white), 1), 0px 0px 8px rgba(var(--rgb_white), 1), 0px 0px 8px rgba(var(--rgb_white), 1), 0px 0px 8px rgba(var(--rgb_white), 1);
  opacity: 0;
}
.keyvsl .catch_copy.trigger {
  animation: fade_up 0.8s ease-out 0.5s 1 normal forwards;
}
.keyvsl::before, .keyvsl::after {
  content: "";
  display: block;
  position: absolute;
}
.keyvsl::before {
  background: url("../img/index_keyvsl_deco02.png") center center/contain no-repeat;
  width: 8.5rem;
  height: 6rem;
  left: 0;
  bottom: 0rem;
  animation: yurayura 2.5s ease-in-out infinite;
  z-index: 2;
}
.keyvsl::after {
  width: 100%;
  height: 10rem;
  background: url("../img/index_keyvsl_deco01.svg") right -11rem bottom/160% auto no-repeat;
  bottom: -0.1rem;
  left: 0;
  z-index: 1;
}
.keyvsl .bnr_line {
  position: relative;
}
.keyvsl .bnr_line a {
  position: absolute;
  width: 18rem;
  top: -10.3rem;
  left: 2rem;
  height: auto;
  z-index: 999;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    max-width: 200rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .keyvsl #keyvsl {
    height: 93.8rem;
    width: 100%;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 88.8rem !important;
    object-position: center;
  }
  .keyvsl #keyvsl .slick-dots {
    margin-top: -3rem;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .wrap {
    width: 1200px;
    height: 88.8rem;
  }
  .keyvsl .wrap::before {
    width: 37.2rem;
    height: 21.708rem;
    right: -21.5rem;
    bottom: 0.5rem;
  }
  .keyvsl .wrap::after {
    bottom: 1rem;
    width: 13.5rem;
    height: 10.1rem;
    right: 30rem;
    bottom: -1.1rem;
  }
  .keyvsl .catch_copy {
    font-size: 4rem;
    top: 52rem;
    left: 7.5%;
    line-height: 1.2;
  }
  .keyvsl::before {
    width: 18.341rem;
    height: 15.746rem;
    left: 4%;
    bottom: 2rem;
  }
  .keyvsl::after {
    height: 31.92rem;
    background: url("../img/index_keyvsl_deco01.svg") center top/auto 100% no-repeat;
    position: absolute;
    bottom: -6.2rem;
    left: 0;
  }
  .keyvsl .bnr_line a {
    width: 55rem;
    top: -31rem;
    left: 7.5%;
    z-index: 999;
  }
}
.top_tit02 {
  color: var(--clr_blue_dark);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding: 2.5rem 0 3rem;
  background: url("../img/top_tit02_top.png") top center/4.5rem 2rem no-repeat, url("../img/top_tit02_bottom.png") bottom center/7rem 2rem no-repeat;
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 5rem;
    margin-bottom: 5rem;
    letter-spacing: 0.2rem;
    padding: 4.2rem 0 5.6rem;
    background: url("../img/top_tit02_top.png") top center/10rem 3.4rem no-repeat, url("../img/top_tit02_bottom.png") bottom center/15rem 4.6rem no-repeat;
  }
}
.feature {
  padding: 1rem 0;
}
.feature .feature_slider {
  position: relative;
}
.feature .feature_slider .slick-track {
  display: flex;
}
.feature .feature_slider .slick-slide {
  margin-right: 1rem;
  margin-left: 1rem;
  width: calc(100vw - 8rem);
  opacity: 0.3;
  transition: 0.8s;
}
.feature .feature_slider .slick-slide > div {
  height: 100%;
}
.feature .feature_slider .slick-slide.slick-active {
  opacity: 1;
}
.feature .feature_slider .feature_content {
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .feature .feature_slider .feature_content {
    border-radius: 30px;
  }
}
.feature .feature_slider .feature_content {
  background: var(--clr_pink_dark02);
  padding: 1.5rem;
}
.feature .feature_slider .feature_content p {
  margin: 0;
  font-size: 1.2rem;
}
.feature .feature_slider .feature_content .feature_img {
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .feature .feature_slider .feature_content .feature_img {
    border-radius: 30px;
  }
}
.feature .feature_slider .feature_content .feature_img {
  margin-bottom: 0.8rem;
}
.feature .feature_slider .feature_content .feature_tit {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--clr_red);
}
.feature .feature_slider .feature_content.-blue {
  background: var(--clr_blue_light03);
}
.feature .feature_slider .feature_content.-blue .feature_tit {
  color: var(--clr_blue_dark);
}
.feature .feature_slider .feature_content.-green {
  background: var(--clr_green_light02);
}
.feature .feature_slider .feature_content.-green .feature_tit {
  color: var(--clr_green_dark);
}
.feature .feature_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 12rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  z-index: 1;
}
.feature .feature_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\e80b";
  color: var(--clr_blue_dark);
  font-size: 2rem;
}
.feature .feature_slider .slick-arrow.slick-next {
  right: 2rem;
}
.feature .feature_slider .slick-arrow.slick-prev {
  left: 2rem;
}
.feature .feature_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\e80a";
}
.feature .feature_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto 0;
}
.feature .feature_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.feature .feature_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  border-radius: 50%;
  background: var(--clr_gray_light02);
  opacity: 1;
}
.feature .feature_slider .slick-dots li button:hover, .feature .feature_slider .slick-dots li button:focus {
  background: var(--clr_blue_light);
}
.feature .feature_slider .slick-dots li.slick-active button {
  background: var(--clr_blue_light);
}
@media screen and (min-width: 48em), print {
  .feature {
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    padding: 5rem 0 7rem;
  }
  .feature .feature_slider .slick-slide {
    margin-right: 4.4rem;
    margin-left: 4.4rem;
    width: 50rem;
  }
  .feature .feature_slider .feature_content {
    padding: 3rem;
    min-height: 45rem;
  }
  .feature .feature_slider .feature_content p {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .feature .feature_slider .feature_content .feature_img {
    margin-bottom: 1.5rem;
  }
  .feature .feature_slider .feature_content .feature_tit {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .feature .feature_slider .slick-arrow {
    width: 62rem;
    height: 5rem;
    top: 20rem;
    right: 0 !important;
    left: 0 !important;
    margin: auto;
  }
  .feature .feature_slider .slick-arrow::before {
    font-size: 4rem;
    margin: 0 0 0 auto;
  }
  .feature .feature_slider .slick-arrow.slick-prev::before {
    margin: 0 auto 0 0;
  }
  .feature .feature_slider .slick-dots {
    margin-top: 2.5rem;
  }
  .feature .feature_slider .slick-dots li {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.5rem;
  }
}

.info {
  background: url("../img/index_bluebg_top.svg") top 10rem center/auto 10rem no-repeat, url("../img/index_snowbg_top.webp") bottom center/100% auto no-repeat, linear-gradient(to bottom, transparent 20rem, var(--clr_aqua_light) 20rem);
  padding: 3rem 0 8rem;
}
.info > .wrap {
  position: relative;
}
.info > .wrap::before, .info > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.info > .wrap {
  z-index: 1;
}
.info > .wrap::before {
  width: 9rem;
  height: 7rem;
  background: url("../img/index_info01.png") center center/contain no-repeat;
  bottom: -7.5rem;
  right: 0;
  animation: yurayura04 2.2s ease-in-out infinite;
}
.info > .wrap::after {
  width: 9rem;
  height: 6rem;
  background: url("../img/index_info02.png") center center/contain no-repeat;
  bottom: -8rem;
  left: 0;
  animation: yurayura03 2.5s ease-in-out infinite;
}
.info > .wrap .info_lst {
  position: relative;
}
.info > .wrap .info_lst::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.info > .wrap .info_lst::after {
  width: 5rem;
  height: 5rem;
  background: url("../img/logo_mark04.png") center center/contain no-repeat;
  top: -4.5rem;
  right: 0;
  animation: pyonpyon 3s ease-in-out infinite;
}
.info dl {
  border: 2px solid var(--clr_pink);
  background: var(--clr_white);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .info dl {
    border-radius: 30px;
  }
}
.info dl {
  padding: 1.5rem;
}
.info dl:not(:first-of-type) {
  margin-top: 1.5rem;
}
.info dl dt {
  font-weight: 700;
  color: var(--clr_red);
  padding-right: 2.5rem;
  cursor: pointer;
}
.info dl dt .data {
  display: block;
  font-size: 1.1rem;
}
.info dl dt > div {
  font-size: 1.5rem;
  line-height: 1.3;
}
.info dl dt {
  position: relative;
}
.info dl dt::after {
  font-family: "fontello";
  content: "\e800";
  font-weight: 500;
  position: absolute;
  bottom: 0;
  right: 0.5rem;
  font-size: 130%;
  line-height: 1.1;
  transition: 0.2s;
}
.info dl dt.open::after {
  transform: scale(1, -1);
}
.info dl dd {
  word-wrap: break-word;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px dashed var(--clr_gray_light);
}
.info dl:not(:nth-of-type(-n+5)) dd {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 10rem 0;
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    background: url("../img/index_bluebg_top.svg") top 20rem center/200rem auto no-repeat, url("../img/index_snowbg_top.webp") bottom center/200rem auto no-repeat, linear-gradient(to bottom, transparent 59rem, var(--clr_aqua_light) 59rem);
  }
  .info > .wrap {
    min-height: 63rem;
  }
  .info > .wrap::before {
    width: 21rem;
    height: 14.5rem;
    bottom: auto;
    top: 52rem;
    right: -26rem;
  }
  .info > .wrap::after {
    width: 30.8rem;
    height: 16.885rem;
    bottom: auto;
    top: 51rem;
    left: -28rem;
  }
  .info > .wrap .info_lst {
    width: 90rem;
    margin-inline: auto;
  }
  .info > .wrap .info_lst::after {
    width: 15.182rem;
    height: 11.546rem;
    background: url("../img/logo_mark04.png") center center/contain no-repeat;
    top: -11.2rem;
    right: 0;
  }
  .info > .wrap .info_lst dl {
    padding: 3rem 4.5rem;
  }
  .info > .wrap .info_lst dl:not(:first-of-type) {
    margin-top: 3rem;
  }
  .info > .wrap .info_lst dl dt .data {
    font-size: 1.6rem;
    display: inline-block;
    margin-right: 1rem;
  }
  .info > .wrap .info_lst dl dt > div {
    font-size: 2.2rem;
    display: inline-block;
  }
  .info > .wrap .info_lst dl dt::after {
    font-size: 3rem;
  }
  .info > .wrap .info_lst dl dd {
    font-size: 1.8rem;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    line-height: 1.6;
  }
}
.index_about {
  background: url("../img/index_bluebg_bottom.svg") top 13.5rem center/auto 10rem no-repeat, url("../img/index_snowbg_bottom.webp") top center/100% auto no-repeat, linear-gradient(to bottom, var(--clr_aqua_light) 14rem, transparent 14rem);
}
.index_about > .wrap {
  padding-bottom: 16rem;
  margin-bottom: 2rem;
  position: relative;
}
.index_about > .wrap .slider {
  position: absolute;
  width: calc(100% + 3rem);
  right: -1.5rem;
  bottom: 0;
}
.index_about > .wrap .slider .loopslider {
  width: 100%;
  height: 12.8rem;
  position: relative;
  overflow: hidden;
}
.index_about > .wrap .slider .loopslider ul {
  height: 100%;
  display: inline;
  overflow: hidden;
}
.index_about > .wrap .slider .loopslider ul li {
  width: 10.5rem;
  height: 100%;
  display: inline-block;
  overflow: hidden;
  padding-right: 0.5rem;
}
.index_about > .wrap .slider .loopslider ul li img {
  margin: 0;
  object-fit: contain;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .index_about > .wrap .slider .loopslider ul li img {
    border-radius: 30px;
  }
}
.index_about > .wrap .about_tit {
  color: var(--clr_green_dark);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.index_about > .wrap .about_txt {
  margin-bottom: 2.5rem;
  position: relative;
}
.index_about > .wrap .about_txt::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_about > .wrap .about_txt::after {
  background: url("../img/logo_mark05.png") center center/contain no-repeat;
  width: 5rem;
  height: 5rem;
  bottom: -6rem;
  right: 1rem;
  animation: pyonpyon 2.5s ease-in-out infinite;
}
@media screen and (min-width: 48em), print {
  .index_about {
    background: url("../img/index_snowbg_bottom.webp") top center/200rem auto no-repeat, url("../img/index_bluebg_bottom.svg") top 18rem center/200rem auto no-repeat, linear-gradient(to bottom, var(--clr_aqua_light) 20rem, transparent 20rem);
    max-width: 200rem;
    min-height: 55rem;
    margin-inline: auto;
    overflow: hidden;
    padding: 8rem 0 2rem;
  }
  .index_about > .wrap {
    padding: 0 70rem 0 0;
  }
  .index_about > .wrap .top_tit02 {
    margin-bottom: 4rem;
  }
  .index_about > .wrap .slider {
    width: 1200px;
    top: 0;
    bottom: auto;
    right: -60rem;
  }
  .index_about > .wrap .slider .loopslider {
    height: 55rem;
    border-radius: 30px;
  }
  .index_about > .wrap .slider .loopslider ul li {
    width: 46rem;
    padding-right: 3rem;
  }
  .index_about > .wrap .about_tit {
    font-size: 2.6rem;
    line-height: 1.5;
    margin-bottom: 1.7rem;
    letter-spacing: 0.13rem;
  }
  .index_about > .wrap .about_txt {
    margin-bottom: 5rem;
    line-height: 1.5;
    letter-spacing: 0.08rem;
  }
  .index_about > .wrap .about_txt::after {
    width: 10rem;
    height: 8.7rem;
    bottom: -10rem;
    right: 1.5rem;
  }
}

.index_symptoms {
  background: url("../img/index_pinkbg_top.svg") top 40rem center/auto 10rem no-repeat, linear-gradient(to bottom, transparent 50rem, var(--clr_pink_light02) 50rem);
  padding: 1.5rem 0 3rem;
  --clr_symptoms01: #9BDCE9;
  --clr_symptoms02: #FFB7C6;
  --clr_symptoms03: #FBC99E;
  --clr_symptoms04: #F3E89F;
  --clr_symptoms05: #ECBBEF;
  --clr_symptoms06: #A9DE9C;
  --clr_symptoms07: #D8DBD1;
}
.index_symptoms > .wrap {
  position: relative;
}
.index_symptoms > .wrap::before, .index_symptoms > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_symptoms > .wrap::before {
  width: 5rem;
  height: 5rem;
  top: -4.7rem;
  right: 1rem;
  background: url("../img/index_symptoms01.png") center center/contain no-repeat;
  animation: yurayura 2.5s ease-in-out infinite;
}
.index_symptoms > .wrap::after {
  width: 8rem;
  height: 8rem;
  bottom: -5.5rem;
  right: 0;
  background: url("../img/logo_mark03.png") center center/contain no-repeat;
  animation: pyonpyon 4s ease-in-out infinite;
}
.index_symptoms .js-tab_ul.-symptoms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.index_symptoms .js-tab_ul.-symptoms > li {
  width: calc((100% - 1rem) / 2);
}
.index_symptoms .js-tab_ul.-symptoms > li a {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  align-items: center;
  border-radius: 10px;
  position: relative;
  padding: 0.6rem;
  line-height: 1.2;
  font-weight: 700;
}
.index_symptoms .js-tab_ul.-symptoms > li a::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-position: center center;
  background-size: 90% auto;
  background-repeat: no-repeat;
  background-color: var(--clr_white);
  border-radius: 50%;
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms01 {
  background-color: var(--clr_symptoms01);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms01::before {
  background-image: url("../img/icon_symptoms01.png");
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms02 {
  background-color: var(--clr_symptoms02);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms02::before {
  background-image: url("../img/icon_symptoms02.png");
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms03 {
  background-color: var(--clr_symptoms03);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms03::before {
  background-image: url("../img/icon_symptoms03.png");
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms04 {
  background-color: var(--clr_symptoms04);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms04::before {
  background-image: url("../img/icon_symptoms04.png");
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms05 {
  background-color: var(--clr_symptoms05);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms05::before {
  background-image: url("../img/icon_symptoms05.png");
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms06 {
  background-color: var(--clr_symptoms06);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms06::before {
  background-image: url("../img/icon_symptoms06.png");
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms07 {
  background-color: var(--clr_symptoms07);
}
.index_symptoms .js-tab_ul.-symptoms > li a.symptoms07::before {
  background-image: url("../img/icon_symptoms07.png");
}
.index_symptoms .js-tab_area.-symptoms {
  margin-top: 2rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li {
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .index_symptoms .js-tab_area.-symptoms > ul > li {
    border-radius: 30px;
  }
}
.index_symptoms .js-tab_area.-symptoms > ul > li {
  padding: 1.5rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms01 {
  background: var(--clr_symptoms01);
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms02 {
  background: var(--clr_symptoms02);
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms03 {
  background: var(--clr_symptoms03);
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms04 {
  background: var(--clr_symptoms04);
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms05 {
  background: var(--clr_symptoms05);
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms06 {
  background: var(--clr_symptoms06);
}
.index_symptoms .js-tab_area.-symptoms > ul > li#symptoms07 {
  background: var(--clr_symptoms07);
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl {
  background: var(--clr_white);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl {
    border-radius: 30px;
  }
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl {
  padding: 1.5rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dt {
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 1.5rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  position: relative;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dt::before {
  font-family: "fontello";
  content: "\e818";
  color: var(--clr_blue_dark);
  font-weight: normal;
  position: absolute;
  left: -0.5rem;
  top: 0.2rem;
  font-size: 110%;
  line-height: 1;
  transition: 0.2s;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dt.open::before {
  transform: scale(1, -1);
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd {
  display: none;
  margin-bottom: 2rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_txt {
  margin: 0;
  font-size: 1.2rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
  gap: 1rem 2rem;
  margin-top: 1.4rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst > li a {
  display: block;
  font-size: 1.2rem;
}
.index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst > li a::before {
  font-family: "fontello";
  content: "\e4a2";
  margin-right: 0.3rem;
}
@media screen and (min-width: 48em), print {
  .index_symptoms {
    background: url("../img/index_pinkbg_top.svg") top center/200rem auto no-repeat, url("../img/index_symptoms02.png") top 77rem left -10rem/auto 30rem no-repeat, linear-gradient(to bottom, transparent 39rem, var(--clr_pink_light02) 39rem);
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    padding: 10rem 0;
  }
  .index_symptoms > .wrap {
    width: calc(1200px - 10rem);
  }
  .index_symptoms > .wrap::before {
    width: 11.3rem;
    height: 10.6rem;
    top: 33rem;
    right: -33rem;
  }
  .index_symptoms > .wrap::after {
    width: 18.8rem;
    height: 14rem;
    bottom: -9.5rem;
    right: 1.5rem;
  }
  .index_symptoms .js-tab_ul.-symptoms {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .index_symptoms .js-tab_ul.-symptoms > li {
    width: calc((100% - 3rem) / 4);
  }
  .index_symptoms .js-tab_ul.-symptoms > li a {
    grid-template-columns: 8rem 1fr;
    border-radius: 20px;
    padding: 0.8rem 1rem;
    font-size: 2.4rem;
    transition: 0.2s;
  }
  .index_symptoms .js-tab_ul.-symptoms > li a::before {
    width: 6.5rem;
    height: 6.5rem;
    background-size: 90% auto;
  }
  .index_symptoms .js-tab_ul.-symptoms > li a:hover {
    filter: brightness(1.05) opacity(0.9);
  }
  .index_symptoms .js-tab_area.-symptoms {
    margin-top: 2.5rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li {
    padding: 5rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl {
    padding: 5.5rem 5.5rem 5.5rem 9.5rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dt {
    font-size: 2.4rem;
    padding-left: 0;
    letter-spacing: 0.1rem;
    margin-bottom: 1.4rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dt::before {
    top: 0.1rem;
    left: -4.5rem;
    font-size: 120%;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd {
    margin-bottom: 5rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_txt {
    font-size: 1.8rem;
    line-height: 1.45;
    letter-spacing: 0.07rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst {
    gap: 1rem 3rem;
    margin-top: 3rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst > li a {
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst > li a::before {
    margin-right: 1.2rem;
  }
  .index_symptoms .js-tab_area.-symptoms > ul > li .symptoms_dl dd .symptoms_lst > li a:hover {
    color: var(--clr_red);
  }
}

.index_test {
  padding: 1.5rem 0 3rem;
  background: url("../img/index_pinkbg_bottom.svg") bottom center/auto 10rem no-repeat, linear-gradient(to bottom, var(--clr_pink_light02) calc(100% - 9rem), transparent calc(100% - 9rem));
}
.index_test > .wrap {
  position: relative;
}
.index_test > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_test > .wrap::after {
  width: 8rem;
  height: 3rem;
  background: url("../img/index_test01.png") center center/contain no-repeat;
  left: -1rem;
  top: -3rem;
  animation: yurayura03 2.5s ease-in-out infinite;
}
.index_test > .wrap .box {
  background: var(--clr_pink_dark);
}
.index_test > .wrap .box .test_lst {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
.index_test > .wrap .box .test_lst > li {
  width: 100%;
}
.index_test > .wrap .box .test_lst > li a {
  --btn_clr: var(--clr_red);
  display: inline-block;
  background: var(--clr_white);
  border-radius: 50vh;
  color: var(--clr_txt);
  padding: 1rem 2rem;
  width: 100%;
  line-height: 1.2;
  position: relative;
  text-align: center;
  font-size: 110%;
  letter-spacing: 0.04rem;
  border: 2px solid transparent;
}
.index_test > .wrap .box .test_lst > li a::after {
  font-family: "fontello";
  content: "\32";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  right: 1.2rem;
  color: var(--btn_clr);
}
@media screen and (min-width: 48em), print {
  .index_test > .wrap .box .test_lst > li a {
    padding: 1.7rem 3rem;
    font-size: 2rem;
  }
  .index_test > .wrap .box .test_lst > li a:hover {
    background: var(--btn_clr);
    color: var(--clr_white);
  }
  .index_test > .wrap .box .test_lst > li a:hover::after {
    color: var(--clr_white);
  }
}
.index_test > .wrap .box .test_dl {
  background: var(--clr_white);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .index_test > .wrap .box .test_dl {
    border-radius: 30px;
  }
}
.index_test > .wrap .box .test_dl {
  margin-top: 1rem;
}
.index_test > .wrap .box .test_dl dt {
  text-align: center;
  border-bottom: 1px dashed var(--clr_border);
}
.index_test > .wrap .box .test_dl dt a {
  display: block;
  width: 100%;
  font-size: 110%;
  padding: 1rem;
  position: relative;
}
.index_test > .wrap .box .test_dl dt a::after {
  font-family: "fontello";
  content: "\32";
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  right: 1.2rem;
  color: var(--clr_red);
}
.index_test > .wrap .box .test_dl dd {
  padding: 1rem;
}
.index_test > .wrap .box .test_dl dd > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
.index_test > .wrap .box .test_dl dd > ul > li {
  width: 100%;
}
.index_test > .wrap .box .test_dl dd > ul > li a {
  display: inline-block;
  background: var(--clr_white);
  border-radius: 50vh;
  color: var(--clr_txt);
  padding: 1rem 2rem;
  width: 100%;
  line-height: 1.2;
  position: relative;
  text-align: center;
  font-size: 110%;
  letter-spacing: 0.04rem;
  border: 2px solid transparent;
}
.index_test > .wrap .box .test_dl dd > ul > li a::after {
  font-family: "fontello";
  content: "\32";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  right: 1.2rem;
  color: var(--btn_clr);
}
@media screen and (min-width: 48em), print {
  .index_test > .wrap .box .test_dl dd > ul > li a {
    padding: 1.7rem 3rem;
    font-size: 2rem;
  }
  .index_test > .wrap .box .test_dl dd > ul > li a:hover {
    background: var(--btn_clr);
    color: var(--clr_white);
  }
  .index_test > .wrap .box .test_dl dd > ul > li a:hover::after {
    color: var(--clr_white);
  }
}
.index_test > .wrap .box .test_dl dd > ul > li a {
  font-size: 95%;
  background: var(--clr_pink_light);
  color: var(--clr_red_dark);
  border-color: var(--clr_pink_dark);
}
.index_test > .wrap .box .test_dl dd > ul > li a::after {
  color: var(--clr_red);
}
@media screen and (min-width: 48em), print {
  .index_test {
    padding: 4rem 0 4.5rem;
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    background: url("../img/index_pinkbg_bottom.svg") bottom 15rem center/200rem auto no-repeat, linear-gradient(to bottom, var(--clr_pink_light02) calc(100% - 54rem), transparent calc(100% - 54rem));
  }
  .index_test > .wrap {
    width: calc(1200px - 10rem);
    margin-inline: auto;
  }
  .index_test > .wrap::after {
    width: 19.4rem;
    height: 9.64rem;
    left: -32rem;
    top: -12rem;
  }
  .index_test > .wrap .box .test_lst {
    flex-direction: row;
    gap: 1.5rem 4rem;
  }
  .index_test > .wrap .box .test_lst > li {
    width: calc((100% - 4rem) / 2);
  }
  .index_test > .wrap .box .test_dl {
    margin-top: 1.5rem;
  }
  .index_test > .wrap .box .test_dl dt a {
    padding: 1.3rem;
    font-size: 2rem;
  }
  .index_test > .wrap .box .test_dl dd {
    padding: 2rem;
  }
  .index_test > .wrap .box .test_dl dd > ul {
    flex-direction: row;
    gap: 1.5rem;
  }
  .index_test > .wrap .box .test_dl dd > ul > li {
    width: calc((100% - 3rem) / 3);
  }
  .index_test > .wrap .box .test_dl dd > ul > li a {
    padding: 1.5rem 2.5rem;
    font-size: 1.8rem;
  }
  .index_test > .wrap .box .test_dl dd > ul > li a:hover {
    background: var(--clr_red);
  }
}

.index_allergy {
  padding: 1.5rem 0;
  background: url("../img/icon_snow01.png") top 8.5rem left 1rem/4rem auto no-repeat, url("../img/icon_snow02.png") top 15rem right 0rem/2.5rem auto no-repeat, url("../img/icon_snow03.png") bottom 7rem left 0rem/5rem auto no-repeat;
}
.index_allergy > .wrap {
  position: relative;
}
.index_allergy > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_allergy > .wrap::after {
  background: url("../img/index_allergy01.png") top center/contain no-repeat;
  width: 4rem;
  height: 4rem;
  top: -5rem;
  right: -1rem;
  animation: yurayura 3s ease-in-out infinite;
}
.index_allergy > .wrap .allergy_txt {
  color: var(--clr_green_dark);
  font-weight: 700;
  font-size: 1.5rem;
}
.index_allergy > .wrap .allergy_dl dt {
  background: var(--clr_green_dark);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .index_allergy > .wrap .allergy_dl dt {
    border-radius: 30px;
  }
}
.index_allergy > .wrap .allergy_dl dt {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0.7rem 4.5rem;
  text-align: center;
  color: var(--clr_white);
  font-weight: 700;
  font-size: 1.7rem;
  position: relative;
}
.index_allergy > .wrap .allergy_dl dt::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_allergy > .wrap .allergy_dl dt::after {
  width: 4.5rem;
  height: 3.8rem;
  right: 0.5rem;
  bottom: 0rem;
  background: url("../img/logo_mark06.png") center top/100% auto no-repeat;
  animation: fade_penguin 6s ease-in-out infinite;
}
.index_allergy > .wrap .allergy_dl dd {
  background: var(--clr_green_light);
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .index_allergy > .wrap .allergy_dl dd {
    border-radius: 30px;
  }
}
.index_allergy > .wrap .allergy_dl dd {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  padding: 1.5rem;
}
.index_allergy > .wrap .allergy_dl dd > .allergy_lst {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
.index_allergy > .wrap .allergy_dl dd > .allergy_lst > li {
  width: 100%;
}
.index_allergy > .wrap .allergy_dl dd > .allergy_lst > li a {
  --btn_clr: var(--clr_green_dark);
  display: inline-block;
  background: var(--clr_white);
  border-radius: 50vh;
  color: var(--clr_txt);
  padding: 1rem 2rem;
  width: 100%;
  line-height: 1.2;
  position: relative;
  text-align: center;
  font-size: 110%;
  letter-spacing: 0.04rem;
  border: 2px solid transparent;
}
.index_allergy > .wrap .allergy_dl dd > .allergy_lst > li a::after {
  font-family: "fontello";
  content: "\32";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  right: 1.2rem;
  color: var(--btn_clr);
}
@media screen and (min-width: 48em), print {
  .index_allergy > .wrap .allergy_dl dd > .allergy_lst > li a {
    padding: 1.7rem 3rem;
    font-size: 2rem;
  }
  .index_allergy > .wrap .allergy_dl dd > .allergy_lst > li a:hover {
    background: var(--btn_clr);
    color: var(--clr_white);
  }
  .index_allergy > .wrap .allergy_dl dd > .allergy_lst > li a:hover::after {
    color: var(--clr_white);
  }
}
@media screen and (min-width: 48em), print {
  .index_allergy {
    padding: 10rem 0;
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    background: url("../img/index_allergy02.png") top 12rem right 3.5rem/33rem auto no-repeat, url("../img/icon_snow01.png") top 31rem left 10rem/9.4rem auto no-repeat, url("../img/icon_snow02.png") top 49rem left 26rem/6.5rem auto no-repeat, url("../img/icon_snow03.png") bottom 13rem left 10rem/10.6rem auto no-repeat, url("../img/icon_snow06.png") bottom 2.5rem right 12rem/9.4rem auto no-repeat;
  }
  .index_allergy > .wrap {
    width: calc(1200px - 10rem);
  }
  .index_allergy > .wrap::after {
    width: 7.3rem;
    height: 7.1rem;
    top: -28rem;
    right: -39rem;
  }
  .index_allergy > .wrap .allergy_txt {
    font-size: 2.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    margin-bottom: 4rem;
  }
  .index_allergy > .wrap .allergy_dl {
    margin-bottom: 3.5rem;
  }
  .index_allergy > .wrap .allergy_dl dt {
    padding: 0.8rem 12rem;
    letter-spacing: 0.1rem;
    font-size: 3.6rem;
  }
  .index_allergy > .wrap .allergy_dl dt::after {
    width: 12.4rem;
    height: 10.5rem;
    right: 2rem;
    animation: fade_penguin02 6s ease-in-out infinite;
  }
  .index_allergy > .wrap .allergy_dl dd {
    padding: 5rem;
  }
  .index_allergy > .wrap .allergy_dl dd > .allergy_lst {
    flex-direction: row;
    gap: 1.5rem 4rem;
  }
  .index_allergy > .wrap .allergy_dl dd > .allergy_lst > li {
    width: calc((100% - 4rem) / 2);
  }
}

.index_checkup {
  padding: 3rem 0 13rem;
  background: url("../img/icon_snow06.png") top right/4rem auto no-repeat, url("../img/icon_snow07.png") top 13rem right 2rem/4rem auto no-repeat, url("../img/icon_snow04.png") top 8.5rem left 6rem/2.5rem auto no-repeat, url("../img/icon_snow05.png") top 22rem left 2rem/5rem auto no-repeat;
}
.index_checkup > .wrap {
  position: relative;
}
.index_checkup > .wrap::before, .index_checkup > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_checkup > .wrap::before {
  background: url("../img/index_checkup02.webp") center center/contain no-repeat;
  width: 24vw;
  height: 24vw;
  right: -1rem;
  bottom: -8rem;
  animation: yurayura06 4.5s ease-in-out infinite;
}
.index_checkup > .wrap::after {
  background: url("../img/index_checkup01.webp") center center/contain no-repeat;
  width: 28vw;
  height: 28vw;
  right: calc(24vw - 2rem);
  bottom: -11rem;
  animation: yurayura05 3s ease-in-out infinite;
}
.index_checkup > .wrap .checkup_txt {
  font-size: 1.4rem;
  position: relative;
}
.index_checkup > .wrap .checkup_txt::before, .index_checkup > .wrap .checkup_txt::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_checkup > .wrap .checkup_txt .more {
  margin-top: 2.5rem;
}
.index_checkup > .wrap .checkup_txt::before {
  background: url("../img/index_checkup04.webp") center center/contain no-repeat;
  width: 29vw;
  height: 29vw;
  left: -1rem;
  bottom: -8.5rem;
  animation: yurayura06 5s ease-in-out infinite;
}
.index_checkup > .wrap .checkup_txt::after {
  background: url("../img/index_checkup03.webp") center center/contain no-repeat;
  width: 22vw;
  height: 22vw;
  left: calc(29vw - 2rem);
  bottom: -11.5rem;
  animation: yurayura06 3s ease-in-out infinite;
}
@media screen and (min-width: 48em), print {
  .index_checkup {
    padding-top: 4rem;
    padding-bottom: 11rem;
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    background: url("../img/icon_snow07.png") top 5rem right 29rem/6.9rem auto no-repeat, url("../img/icon_snow04.png") top 0.5rem left 35rem/4.8rem auto no-repeat, url("../img/icon_snow05.png") top 27rem left 21rem/10.1rem auto no-repeat;
  }
  .index_checkup > .wrap::before {
    width: 20rem;
    height: 20rem;
    right: 0;
    top: -10rem;
    bottom: auto;
  }
  .index_checkup > .wrap::after {
    width: 24rem;
    height: 24rem;
    right: auto;
    bottom: auto;
    left: 0rem;
    top: -10rem;
  }
  .index_checkup > .wrap .checkup_txt {
    font-size: 2.4rem;
    width: 58rem;
    margin-inline: auto;
    letter-spacing: 0.1rem;
    line-height: 1.6;
    text-align: center;
  }
  .index_checkup > .wrap .checkup_txt .btn {
    margin-top: 2.5rem;
  }
  .index_checkup > .wrap .checkup_txt {
    position: relative;
  }
  .index_checkup > .wrap .checkup_txt::before, .index_checkup > .wrap .checkup_txt::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .index_checkup > .wrap .checkup_txt::before {
    width: 24rem;
    height: 24rem;
    left: auto;
    right: -27.5rem;
    bottom: auto;
    top: 12.5rem;
  }
  .index_checkup > .wrap .checkup_txt::after {
    width: 20rem;
    height: 20rem;
    left: -25rem;
    bottom: auto;
    top: 16rem;
  }
}

.index_vaccination {
  background: url("../img/index_greenbg_top.svg") top -4rem center/auto 10rem no-repeat, linear-gradient(to bottom, transparent 6rem, var(--clr_yellowgreen) 6rem);
  padding: 3rem 0;
}
.index_vaccination > .wrap {
  position: relative;
}
.index_vaccination > .wrap::before, .index_vaccination > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_vaccination > .wrap::before {
  width: 7rem;
  height: 4.5rem;
  background: url("../img/index_vaccination03.png") center center/contain no-repeat;
  right: -1.5rem;
  top: -13rem;
  animation: yurayura03 3s ease-in-out infinite;
}
.index_vaccination > .wrap::after {
  width: 3.5rem;
  height: 5rem;
  background: url("../img/index_vaccination02.png") center center/contain no-repeat;
  left: -0.5rem;
  top: -3rem;
  animation: yurayura05 2.5s ease-in-out infinite;
}
.index_vaccination > .wrap .vaccination_txt {
  padding-top: 13.5rem;
  background: url("../img/index_vaccination01.png") top center/auto 12.5rem no-repeat;
}
.index_vaccination > .wrap .vaccination_txt .txt_green {
  color: var(--clr_green_dark);
  font-size: 1.4rem;
}
@media screen and (min-width: 48em), print {
  .index_vaccination {
    padding: 28rem 0 4rem;
    margin-top: -14rem;
    background: url("../img/index_greenbg_top.svg") top center/200rem auto no-repeat, linear-gradient(to bottom, transparent 39rem, var(--clr_yellowgreen) 39rem);
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
  }
  .index_vaccination > .wrap::before {
    width: 19.9rem;
    height: 14.4rem;
    top: -37rem;
    right: -29rem;
  }
  .index_vaccination > .wrap::after {
    width: 9.4rem;
    height: 11.2rem;
    top: -3rem;
    left: -27rem;
  }
  .index_vaccination > .wrap .vaccination_txt {
    padding: 0 43rem 0 0;
    background-size: 36.117rem auto;
    background-position: right center;
    margin-inline: auto;
    width: calc(1200px - 4rem);
    min-height: 30rem;
  }
  .index_vaccination > .wrap .vaccination_txt .txt_green {
    text-align: center;
    font-size: 2.8rem;
    letter-spacing: 0.15rem;
    margin-bottom: 4rem;
  }
}

.index_monshin {
  overflow: hidden;
  background: url("../img/index_greenbg_bottom.svg") bottom center/auto 10rem no-repeat, linear-gradient(to bottom, var(--clr_yellowgreen) calc(100% - 9rem), var(--clr_pink_light02) calc(100% - 9rem));
  padding: 1.5rem 0 6rem;
  margin-bottom: -3rem;
}
.index_monshin > .wrap {
  position: relative;
}
.index_monshin > .wrap::before, .index_monshin > .wrap::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_monshin > .wrap::before {
  background: url("../img/index_monshin02.png") center center/contain no-repeat;
  width: 8.5rem;
  height: 7.5rem;
  top: -6.8rem;
  right: -1rem;
  animation: yurayura03 3s ease-in-out infinite;
}
.index_monshin > .wrap::after {
  width: 7rem;
  height: 5rem;
  background: url("../img/index_monshin03.png") center center/contain no-repeat;
  bottom: -3.5rem;
  left: -1rem;
  animation: pyonpyon03 2.5s ease-in-out infinite;
}
.index_monshin .monshin_box {
  background: var(--clr_blue_light02);
  border-color: var(--clr_blue_light02);
  position: relative;
}
.index_monshin .monshin_box::before, .index_monshin .monshin_box::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.index_monshin .monshin_box::before {
  background: url("../img/logo_mark06.png") center center/contain no-repeat;
  width: 3.5rem;
  height: 3.5rem;
  top: -2.5rem;
  left: 1rem;
  animation: pyonpyon 2.5s ease-in-out infinite;
}
.index_monshin .monshin_box::after {
  background: url("../img/index_monshin01.png") center center/contain no-repeat;
  width: 7rem;
  height: 7rem;
  bottom: -2rem;
  right: -1rem;
}
.index_monshin .monshin_box > .monshin_lst {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.index_monshin .monshin_box > .monshin_lst > li {
  width: 80%;
  margin-inline: auto;
}
.index_monshin .monshin_box > .monshin_lst > li .btn {
  width: 100%;
}
.index_monshin .monshin_box > .monshin_lst > li .btn.-blue {
  background: var(--clr_blue);
}
.index_monshin .monshin_box > .monshin_lst > li .btn.-red {
  background: var(--clr_red_light);
}
.index_monshin .monshin_box > .monshin_lst > li .btn.-green {
  background: var(--clr_green);
}
.index_monshin .monshin_box > .monshin_lst > li .btn.-orange {
  background: var(--clr_orange);
}
.index_monshin .monshin_box > .monshin_lst > li .btn.-aqua {
  background: var(--clr_aqua_dark04);
}
.index_monshin .monshin_box > .monshin_lst > li .btn.-purple {
  background: var(--clr_purple);
}
@media screen and (min-width: 48em), print {
  .index_monshin {
    padding: 10rem 0 13rem;
    margin-bottom: 0;
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
    background: url("../img/index_greenbg_bottom.svg") bottom center/200rem auto no-repeat, linear-gradient(to bottom, var(--clr_yellowgreen) calc(100% - 39rem), var(--clr_pink_light02) calc(100% - 39rem));
  }
  .index_monshin > .wrap::before {
    width: 19.5rem;
    height: 21.86rem;
    top: -15rem;
    right: -35rem;
  }
  .index_monshin > .wrap::after {
    width: 21rem;
    height: 12.7rem;
    left: -26.5rem;
    bottom: auto;
    top: -0.5rem;
  }
  .index_monshin .monshin_box p {
    text-align: center;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.08rem;
  }
  .index_monshin .monshin_box::before {
    width: 9rem;
    height: 9rem;
    top: -6.5rem;
    left: 4rem;
  }
  .index_monshin .monshin_box::after {
    width: 13.1rem;
    height: 12.834rem;
    bottom: -3rem;
    right: -3rem;
  }
  .index_monshin .monshin_box .monshin_lst {
    justify-content: center;
    gap: 1.5rem 5.5rem;
    margin: 3rem auto 0;
    width: calc(100% - 20rem);
  }
  .index_monshin .monshin_box .monshin_lst > li {
    width: fit-content;
    margin: 0;
  }
  .index_monshin .monshin_box .monshin_lst > li .btn {
    width: 100%;
  }
  .index_monshin .monshin_box .monshin_lst > li .btn:hover {
    opacity: 0.6;
  }
}

.greeting {
  margin-top: 0 !important;
  padding: 1.5rem 0 4rem;
  background: var(--clr_pink_light02);
}
.greeting .greeting_flex .dr_img {
  margin: 0 auto 1rem;
  max-width: 65%;
}
.greeting .greeting_flex .dr_img img {
  width: 100%;
  height: auto;
}
.greeting .greeting_flex .dr_message {
  font-size: 1.4rem;
  line-height: 1.7;
}
.greeting .greeting_flex .dr_message .dr_name {
  font-size: 1.3rem;
  margin-top: 2rem;
}
.greeting .greeting_flex .dr_message .dr_name span {
  display: block;
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 5rem 0 7.5rem;
  }
  .greeting .greeting_flex {
    display: flex;
    justify-content: space-between;
  }
  .greeting .greeting_flex .dr_img {
    width: 47.5rem;
    margin: 0;
  }
  .greeting .greeting_flex .dr_message {
    width: 68rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .greeting .greeting_flex .dr_message .dr_name {
    font-size: 1.8rem;
    margin-top: 4rem;
  }
  .greeting .greeting_flex .dr_message .dr_name span {
    font-size: 2.4rem;
  }
}
body:not(.index) .main {
  margin: 0 1.5rem 6rem;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv], [class*=LINE]) {
  text-decoration: underline;
  color: var(--clr_red);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv], [class*=LINE]):hover {
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: calc(1200px - 10rem);
    margin: 0 auto 8rem;
  }
}

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

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

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div {
  position: relative;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .gallery .gallery_slider div {
    border-radius: 30px;
  }
}
.gallery .gallery_slider div {
  overflow: hidden;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem 1rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: var(--clr_white);
  font-size: 1.2rem;
  line-height: 1.25;
  min-height: 2.8rem;
  display: grid;
  place-content: center;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(var(--rgb_blue), 0.5);
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\e80b";
  color: var(--clr_blue_light);
  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: "\e80a";
}
.gallery .gallery_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0.5rem auto 0.8rem;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_blue);
}
.gallery .gallery_slider .slick-dots li button:hover, .gallery .gallery_slider .slick-dots li button:focus {
  opacity: 0.8;
}
.gallery .gallery_slider .slick-dots li.slick-active button {
  opacity: 0.75;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid var(--clr_blue);
}
.gallery.-few .gallery_thum .slick-track {
  transform: translate3d(0px, 0px, 0px) !important;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider > div .cap {
    font-size: 2.2rem;
    min-height: 7rem;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 5rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 5rem;
    margin: 1rem auto 1.4rem;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_blue);
  }
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .tbl_time tr th.time {
    padding-right: 14.5rem;
  }
  .access .main .tbl_time_caption {
    margin-left: 2rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}/*# sourceMappingURL=style.css.map */