@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: 1rem 0;
}

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

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

:where(em) {
  font-style: normal;
  font-weight: bold;
}

:where(i) {
  font-style: normal;
}

:root {
  --clr_white-rgb: 255,255,255;
  --clr_black-rgb: 0,0,0;
  --clr_insta-rgb: 226,51,193;
  --clr_white: #fff;
  --clr_red: #ff0000;
  --clr_line: #00B900;
  --clr_insta: #E233C1;
  --clr_txt: #191919;
  --clr_main: #57BDFB;
  --clr_sub01: #C7E8FF;
  --clr_sub02: #EC869F;
  --clr_sub03: #FFF6F6;
  --clr_sub04: #B5D7EB;
  --clr_sub05: #6B6B6B;
  --clr_sub06: #F9F9F9;
  --clr_sub07: #FFA9BF;
  --clr_sub08: #F1F9FF;
  --clr_sub09: #707070;
  --clr_sub10: #3891C8;
  --clr_sub11: #F3FAFF;
  --clr_sub12: #5D5D5D;
  --clr_sub13: #343434;
  --clr_sub14: #CCCCCC;
  --clr_sub15: #57BCFA;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes bgzoom {}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cutin_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cutin_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes balloon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.6rem);
  }
}
@keyframes airball {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes yura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
@keyframes slideinRight {
  0% {
    opacity: 0;
    transform: translateX(-100px); /* 左端からスタート */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* 画面内に移動 */
  }
}
@keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotate-fade {
  0% {
    opacity: 0;
    transform: translateY(-100px) rotate(40deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_emp {
  font-weight: 700;
  color: var(--clr_sub02);
  background: linear-gradient(transparent 60%, var(--clr_sub03) 60%);
}

.marker {
  background: linear-gradient(transparent 60%, var(--clr_sub03) 60%);
}

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

.blue {
  color: var(--clr_sub10);
}

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

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

.tate {
  max-width: 60%;
  border-radius: 2rem;
}

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

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

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

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

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

.main > section ~ section, .flex2 > section ~ section {
  margin-top: 4rem;
}

.main > section section ~ section, .flex2 > section section ~ section {
  margin-top: 3rem;
}

.main > section > section section ~ section, .flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.3rem;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption span {
  margin-left: 1rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  font-weight: 500;
  text-align: center;
  color: var(--clr_white);
  background-color: var(--clr_main);
  border-bottom: 1px solid var(--clr_sub09);
}
.tbl_time tr th[scope=col]:first-child {
  width: 30%;
}
.tbl_time tr th.time {
  border-right: 1px solid var(--clr_sub09);
  border-left: 1px solid var(--clr_sub09);
  border-bottom: 1px solid var(--clr_sub09);
  background-color: var(--clr_white);
  font-weight: 700;
}
.tbl_time tr th span {
  display: block;
  font-size: 70%;
  line-height: 1.2;
}
.tbl_time tr td {
  padding: 1rem 0;
  background-color: var(--clr_white);
  border-bottom: 1px solid var(--clr_sub09);
  border-right: 1px solid var(--clr_sub09);
  font-size: 65%;
  text-align: center;
  line-height: 1;
}
.tbl_time tr td span {
  display: block;
  font-size: 1rem;
  margin: 0.5rem 0 0;
}
.tbl_time tr td.short {
  padding: 0;
  font-size: 70%;
}
.tbl_time tr td.short span {
  margin: 0;
  font-size: 100%;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
  .tbl_time caption span {
    margin-left: 3rem;
  }
  .tbl_time tr th[scope=col] {
    font-size: 1.8rem;
    padding: 1.5rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 20%;
  }
  .tbl_time tr td {
    padding: 2rem 0;
    font-size: 1.5rem;
  }
}
.gmap {
  width: 100%;
}

.tit01_wrap {
  position: relative;
}
.tit01_wrap .tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 0 1rem;
  font-weight: 900;
  color: var(--clr_white);
}
.tit01_wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background: url(../img/h1_wave.svg) no-repeat left bottom/100% auto;
  position: absolute;
  left: 0;
  bottom: -0.1rem;
}

.tit_02 {
  display: block;
  width: -moz-fit-content; /* Firefox */
  width: fit-content; /* other browsers */
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--clr_main);
  background-image: url("../img/h2_dot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom 1.5rem;
}
.tit_02 span {
  display: block;
  font-size: 50%;
  color: var(--clr_sub05);
  padding: 1rem 0 0;
  letter-spacing: 0.1rem;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  background-color: var(--clr_main);
  color: var(--clr_white);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--clr_sub10);
  border-left: 0.5rem solid var(--clr_main);
  padding: 0 0 0 1rem;
}

.tit_05 {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--clr_sub10);
  padding: 0 0 0 2.5rem;
}
.tit_05::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 23px;
  height: 1px;
  background-color: var(--clr_sub10);
  left: 0;
}

@media screen and (min-width: 48em), print {
  .tit01_wrap .tit_01 {
    background: url(../img/tit_01.jpg) no-repeat center center/cover;
    font-size: 6rem;
    padding: 15.5rem 0;
  }
  .tit01_wrap:after {
    height: 10rem;
  }
  .tit_02 {
    background-position: center bottom 2.7rem;
    background-size: 17.4rem auto;
    font-size: 4.2rem;
    margin: 0 auto 3rem;
  }
  .tit_02 span {
    padding: 2.5rem 0 0;
    font-size: 1.4rem;
  }
  .tit_03 {
    font-size: 3.4rem;
    margin: 0 0 3rem;
    padding: 1.4rem 2rem;
    border-radius: 3rem;
  }
  .tit_04 {
    font-size: 3rem;
    margin: 0 0 3rem;
    border-left: 1rem solid var(--clr_main);
    padding: 0 0 0 3rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 0 0 0 3rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_sub02);
  transform: scale(0.8);
  position: absolute;
  left: 0;
}
.lst_ul > li img {
  margin: 2rem auto;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc li {
  list-style: disc;
}
.lst_ul_disc li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc li::marker {
  color: var(--clr_txt);
}

.lst_ol {
  line-height: 1.6;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.3em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::marker {
  color: #f00;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number) ".";
  color: var(--clr_sub10);
  font-weight: 700;
  line-height: 1.3;
  position: absolute;
  left: 0;
  font-size: 120%;
}
.lst_ol > li span {
  font-weight: 700;
  margin: 0.5rem 0;
}
.lst_ol > li > ul {
  margin: 0.5rem 0;
}
.lst_ol > li > ul li {
  padding: 0 0 0 1.3em;
  margin-left: -1.8rem;
  position: relative;
}
.lst_ol > li > ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.lst_ol > li > ul li::before {
  content: "●";
  color: var(--clr_sub02);
  transform: scale(0.5);
  position: absolute;
  left: 0;
}
.lst_ol > li > ul li span {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
}
.lst_ol.circle li {
  padding: 0 0 0 2.3rem;
}
.lst_ol.circle li::before {
  display: none;
}
.lst_ol.circle li span {
  color: var(--clr_txt);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 0;
  font-size: 110%;
}

.lst_dl01 {
  border-top: 0.1rem solid var(--clr_sub14);
  border-left: 0.1rem solid var(--clr_sub14);
}
.lst_dl01 dt {
  background-color: var(--clr_sub01);
  border-bottom: 0.1rem solid var(--clr_sub14);
  border-right: 0.1rem solid var(--clr_sub14);
  padding: 1rem;
  font-weight: bold;
  color: var(--clr_sub12);
  text-align: left;
  font-size: 110%;
}
.lst_dl01 dd {
  background-color: var(--clr_sub11);
  color: var(--clr_sub13);
  padding: 1rem;
  text-align: left;
  border-bottom: 0.1rem solid var(--clr_sub14);
  border-right: 0.1rem solid var(--clr_sub14);
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.lst_anc li a {
  color: var(--clr_sub02);
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: 0.1rem solid var(--clr_sub07);
}
.lst_anc li a:after {
  font-family: "fontello";
  content: "\34";
  transform: scale(0.9);
  margin-left: 0.3rem;
}

@media screen and (min-width: 48em), print {
  .lst_ol {
    line-height: 1.8;
  }
  .lst_ol > li {
    padding: 0 0 0 2rem;
  }
  .lst_ol > li:before {
    line-height: 1.4;
  }
  .lst_ol > li > ul li {
    margin-left: 0;
  }
  .lst_ol.circle li {
    padding: 0 0 0 2.5rem;
  }
  .lst_ol.circle li span {
    line-height: 1.1;
  }
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    padding: 1rem 1.5rem;
    text-align: center;
  }
  .lst_dl01 dd {
    width: 75%;
    padding: 1rem 1.5rem;
  }
  .lst_dl01.price dt {
    width: 50%;
  }
  .lst_dl01.price dd {
    width: 50%;
    display: flex;
    align-items: center;
  }
  .lst_anc {
    gap: 0 2.5rem;
  }
}
.tbl_wrap {
  overflow-x: auto;
}
.tbl_wrap .tbl_01 {
  width: 80rem;
}
.tbl_wrap .tbl_01 tr th[scope=col] {
  position: sticky;
  top: 0;
  left: 0;
}

.tbl_att {
  font-size: 80%;
  color: var(--clr_sub10);
}
.tbl_att:after {
  font-family: "fontello";
  content: "\32";
  margin-left: 0.5rem;
}

.tbl_01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  border-top: 0.1rem solid var(--clr_sub14);
  border-left: 0.1rem solid var(--clr_sub14);
}
.tbl_01 tr th {
  background-color: var(--clr_sub08);
  border-right: 0.1rem solid var(--clr_sub14);
  border-bottom: 0.1rem solid var(--clr_sub14);
  padding: 0.5rem;
  color: var(--clr_sub10);
  font-size: 90%;
  text-align: left;
}
.tbl_01 tr td {
  border-right: 0.1rem solid var(--clr_sub14);
  border-bottom: 0.1rem solid var(--clr_sub14);
  padding: 0.5rem;
  font-size: 80%;
}
.tbl_01.-price tr th {
  width: 80%;
}
.tbl_01.-price tr td {
  width: 20%;
}
.tbl_01 .bg_bl {
  background-color: var(--clr_sub01);
  color: var(--clr_sub10);
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .tbl_wrap span {
    display: none;
  }
  .tbl_wrap .tbl_01 {
    width: auto;
  }
  .tbl_wrap .tbl_01 tr th[scope=col] {
    position: relative;
    top: auto;
    left: auto;
  }
  .tbl_att {
    display: none;
  }
  .tbl_01 tr th {
    padding: 1rem;
    font-size: 100%;
  }
  .tbl_01 tr td {
    padding: 1rem;
    font-size: 100%;
  }
  .tbl_01.-price tr th {
    width: 85%;
  }
  .tbl_01.-price tr td {
    width: 15%;
  }
  .tbl_01.-price tr td:nth-of-type(2) {
    text-align: right;
  }
}
.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  color: var(--clr_main);
}
.tel a {
  display: inline-flex;
  align-items: center;
}
.tel a:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.7rem;
  background-image: url("../img/icon_phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .tel:before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 3.5rem;
    background-image: url("../img/icon_phone.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: bottom;
    transform: scale(0.8);
    margin-right: 0.3rem;
  }
  .tel a:before {
    display: none;
  }
}
.box_01 {
  padding: 1rem;
  background-color: var(--clr_sub08);
  border: 0.1rem solid var(--clr_sub04);
}
@media screen and (min-width: 48em), print {
  .box_01 {
    padding: 3rem;
  }
}

.box_02 {
  padding: 1rem;
  background-color: var(--clr_sub03);
  border: 0.1rem solid var(--clr_sub07);
}
@media screen and (min-width: 48em), print {
  .box_02 {
    padding: 3rem;
  }
}

.box_03 {
  border: 0.3rem solid var(--clr_main);
  border-radius: 2rem;
  background-color: var(--clr_sub11);
  padding: 1rem;
}
.box_03 .tit_03 {
  text-align: center;
}
.box_03 .text {
  margin: 1rem 0 0;
  background-color: var(--clr_white);
  border-radius: 2rem;
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_03 {
    padding: 5rem;
  }
  .box_03 .tit_03 {
    margin: 0 0 5rem;
  }
  .box_03 .text {
    margin: 5rem 0 0;
    padding: 5rem;
  }
}

.btn_detail {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: var(--clr_sub10);
  color: var(--clr_white);
  text-decoration: none !important;
  border-radius: 2rem;
}
.btn_detail:after {
  display: inline-block;
  font-family: "fontello";
  content: "\e80f";
  font-weight: normal;
  line-height: 1;
  transform: scale(0.6);
  margin-left: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .btn_detail:hover {
    background: var(--clr_main);
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_sub02);
  text-decoration: none !important;
  border-bottom: 0.1rem solid var(--clr_sub02);
  margin: 0 0.2em;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.4rem;
}
@media screen and (min-width: 48em), print {
  .linkout:hover {
    color: var(--clr_main);
    border-bottom: 0.1rem solid var(--clr_main);
  }
}

.linktxt {
  display: inline-block;
  color: var(--clr_sub02);
  text-decoration: none !important;
  border-bottom: 0.1rem solid var(--clr_sub02);
  margin: 0 0.2em;
}
.linktxt::after {
  font-family: "fontello";
  content: "\32";
  font-size: 0.8em;
  margin-left: 0.4rem;
}
@media screen and (min-width: 48em), print {
  .linktxt:hover {
    color: var(--clr_main);
    border-bottom: 0.1rem solid var(--clr_main);
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: var(--clr_main);
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_main);
}
.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;
  }
}
.scr {
  display: block;
}

html {
  font-size: 3.125vw;
}

body {
  background: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../img/a_overview_ilst.png") no-repeat center bottom/95% auto var(--clr_sub01);
  position: fixed;
  top: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
body.spnav_modal {
  height: 100%;
  overflow: hidden;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    line-height: 1.8;
    overflow: hidden;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header .wrap {
  margin: 1rem;
  position: relative;
}
.header .wrap .logo {
  width: calc(100% - 5rem);
  height: 4.2rem;
}
.header .wrap .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
}
.header .wrap .logo_ilst {
  width: 3.5rem;
  position: absolute;
  top: 0.8rem;
  right: 5rem;
}
.header .wrap .headR {
  font-size: 1.3rem;
  margin: 1rem 0;
  background-color: var(--clr_sub01);
  padding: 0.5rem;
}
.header .wrap .headR ul li {
  text-align: center;
}
.header .wrap .headR ul li.acs {
  font-weight: 700;
}
.header .wrap .headR .tel_box {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    padding: 3rem 0 2rem;
  }
  .header .wrap {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .wrap .logo {
    width: 30%;
    height: 8rem;
  }
  .header .wrap .logo a {
    width: 100%;
  }
  .header .wrap .logo_ilst {
    position: relative;
    width: 9.5rem;
    margin-left: 0.5rem;
    top: auto;
    right: auto;
  }
  .header .wrap .headR {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 1.6rem;
    background-color: unset;
    padding: 0;
    margin: 0;
    white-space: nowrap;
  }
  .header .wrap .headR ul li {
    text-align: right;
  }
  .header .wrap .headR .tel_box {
    width: 26.5rem;
    display: block;
    background-color: var(--clr_sub01);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--clr_main);
    margin: 0 0 0 3rem;
    padding: 0.5rem 0;
  }
  .header .wrap .headR .tel_box .tel {
    margin: auto;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 5rem;
  height: 5rem;
  border-radius: 0 0 0 50%;
  background: var(--clr_main);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2.5rem;
  margin: -0.6rem 0 -0.2rem;
  color: var(--clr_white);
}
#nav #sp_menu::after {
  content: "MENU";
  color: var(--clr_white);
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: 78vh;
  overflow-y: auto;
  background: rgba(var(--clr_white-rgb), 0.9);
  padding: 1.6rem;
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid var(--clr_main);
  border-bottom: 1px solid var(--clr_main);
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_main);
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  content: "▼";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--clr_main);
  transition: 0.3s;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  width: 90%;
  background-color: var(--clr_sub03);
  color: var(--clr_sub02);
  border: 0.1rem solid var(--clr_sub02);
  margin: 0 auto 1rem;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  color: var(--clr_txt);
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a .br {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:not(:last-child) {
  border-bottom: 0.1rem solid var(--clr_sub02);
}
#nav .gnav_subnav .bnr {
  padding: 3rem 0;
  background-color: unset;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky !important;
    z-index: 20;
    transition: 0.2s;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block;
    width: 100%;
    height: auto;
    overflow-y: visible;
    padding: 1rem 0 2rem;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 80rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    width: auto;
    position: relative;
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.8rem;
    margin: 0;
    padding: 1rem 0 0.5rem;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav li a::after, #nav .gnav_subnav .gnav li .sub::after {
    display: none;
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    position: relative;
  }
  #nav .gnav_subnav .gnav li a:before, #nav .gnav_subnav .gnav li .sub:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    transform: scale(0, 1);
    transform-origin: center top;
    background: var(--clr_sub02);
    transition: transform 0.3s;
  }
  #nav .gnav_subnav .gnav li a:hover, #nav .gnav_subnav .gnav li a.current, #nav .gnav_subnav .gnav li .sub:hover, #nav .gnav_subnav .gnav li .sub.current {
    color: var(--clr_sub02);
  }
  #nav .gnav_subnav .gnav li a:hover:before, #nav .gnav_subnav .gnav li a.current:before, #nav .gnav_subnav .gnav li .sub:hover:before, #nav .gnav_subnav .gnav li .sub.current:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: 25rem;
    position: absolute;
    top: 4.5rem;
    z-index: 100;
    background-color: var(--clr_white);
    margin: 0;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a {
    padding: 2rem;
    text-align: left;
    font-size: 1.6rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:before {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    background-color: var(--clr_sub03);
    color: var(--clr_sub02);
    opacity: 1;
  }
  #nav.sticky {
    width: 100%;
    margin: 0 !important;
    z-index: 20;
    box-shadow: 0 0.3rem 0.5rem rgba(var(--clr_black-rgb), 0.1);
  }
}
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: var(--clr_sub08);
  position: relative;
}
.overview .overview_inner {
  position: relative;
}
.overview .overview_inner .clinic_name {
  text-align: center;
  margin: 0 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.8rem;
}
.overview .overview_inner .clinic_name img {
  width: 75%;
}
.overview .overview_inner .clinic_name .logo_ilst {
  width: 18%;
}
.overview .overview_inner:before {
  content: "";
  display: block;
  width: 3.7rem;
  height: 5rem;
  background-image: url("../img/overview_ilst01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -5rem;
  left: 0;
}
.overview .overview_inner:after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 5.6rem;
  background-image: url("../img/overview_ilst02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -5rem;
  right: 0;
}
.overview .overview_inner ul {
  text-align: center;
}
.overview .gaiyo {
  width: 100%;
  margin: 0;
  margin: 1rem auto 2rem;
}
.overview .gaiyo dt {
  border-radius: 3rem;
  padding: 0.4rem 0;
  background-color: var(--clr_sub02);
  color: var(--clr_white);
  text-align: center;
  margin-bottom: 1rem;
}
.overview .gaiyo dt.dr {
  background-color: var(--clr_main);
}
.overview .gaiyo dd {
  padding: 0.4rem 0 0 1rem;
  border-radius: 3rem;
  text-align: left;
  margin-bottom: 1rem;
}
.overview .overview_tel {
  line-height: 1;
  text-align: center;
  margin: 1rem auto;
}
.overview .overview_tel .tel a {
  font-size: 2.2rem;
  justify-content: center;
}
.overview .overview_add {
  font-weight: 700;
  text-align: center;
  font-size: 1.3rem;
  margin: 0;
}
.overview > .wrap {
  position: relative;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 2rem 0;
}
.overview > .wrap .overviewR img {
  margin: 0;
  border-radius: 1.2rem;
}
.overview > .wrap .overviewR p {
  margin: 0;
}
.overview > .wrap .overviewR .btn_map {
  display: inline-block;
  text-align: right;
  color: var(--clr_sub02);
  margin: 1rem 0 0;
}
.overview:before {
  content: "";
  display: block;
  width: auto;
  height: 2rem;
  background-image: url("../img/overview_bg_ilst01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -1.8rem;
  right: 0;
  left: 0;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0 10rem;
    font-size: 1.8rem;
  }
  .overview .overview_inner {
    width: 1200px;
    margin: auto;
  }
  .overview .overview_inner .clinic_name {
    margin: 0 0 3rem;
    gap: 0 1.8rem;
  }
  .overview .overview_inner .clinic_name img {
    width: 60rem;
  }
  .overview .overview_inner .clinic_name .logo_ilst {
    width: 12.4rem;
  }
  .overview .overview_inner:before {
    width: 11.7rem;
    height: 14.4rem;
    top: -14rem;
    left: 0;
  }
  .overview .overview_inner:after {
    width: 13.5rem;
    height: 16.6rem;
    top: -14rem;
    right: 0;
  }
  .overview .overview_inner ul {
    width: 50rem;
    margin: 3rem auto;
  }
  .overview .gaiyo {
    width: 110rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 5rem auto;
    font-size: 1.6rem;
  }
  .overview .gaiyo dt {
    width: 15%;
    padding: 0.2rem 0 0.3rem;
    margin-bottom: 0;
  }
  .overview .gaiyo dd {
    width: 42%;
    padding: 0.2rem 0 0.3rem 1.5rem;
    margin-bottom: 0;
  }
  .overview .gaiyo dd:first-of-type {
    width: 58%;
  }
  .overview .overview_tel .tel {
    font-size: 3.6rem;
  }
  .overview .overview_add {
    font-size: 1.6rem;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 3rem;
  }
  .overview > .wrap .overviewL {
    width: 68.1rem;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR p {
    margin: 0;
  }
  .overview > .wrap .overviewR img {
    border-radius: 2rem;
  }
  .overview:before {
    width: 80rem;
    height: 4.7rem;
    top: -4.5rem;
  }
}
#tel_up {
  width: 100%;
  height: 5rem;
  background: var(--clr_white);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 1.4rem;
}
#tel_up ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border: 0.1rem solid var(--clr_sub09);
}
#tel_up ul li {
  width: 33.3333333333%;
  height: 100%;
  text-align: center;
  position: relative;
}
#tel_up ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--clr_white);
  font-weight: 700;
}
#tel_up ul li .tel {
  height: 100%;
  font-size: 1.8rem;
}
#tel_up ul li .tel a:before {
  display: inline-block;
  font-family: "fontello";
  content: "\e801";
  font-weight: normal;
  line-height: 1;
  margin: 0.5rem 0.6rem 0 0;
}
#tel_up ul li .btn_line {
  background-color: var(--clr_line);
}
#tel_up ul li .btn_rsv {
  background-color: var(--clr_sub15);
}
#tel_up ul li .btn_insta {
  background-color: var(--clr_insta);
}
#tel_up ul li:not(:last-child) {
  border-right: 0.1rem solid var(--clr_sub09);
}
#tel_up ul li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 1rem solid var(--clr_white);
  border-top: 1rem solid transparent;
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
}
#tel_up ul li.monshin {
  background: var(--clr_sub02);
}
#tel_up #pageup {
  position: absolute;
  bottom: 5.5rem;
  right: 0.5rem;
  display: block;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.4rem;
  line-height: 1;
  background: var(--clr_white);
  border: 0.2rem solid var(--clr_main);
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e80d";
  position: relative;
  margin: 1.2rem 0 0;
  color: var(--clr_main);
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 8rem;
    bottom: 4rem;
    visibility: hidden;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    position: relative;
    bottom: 3rem;
    right: 7rem;
    height: 8rem;
    font-size: 2.8rem;
    border-radius: 50%;
    border: 0.1rem solid var(--clr_main);
  }
  #tel_up #pageup:before {
    margin: 2.4rem 0 0;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background-color: var(--clr_sub08);
  border-top: 0.2rem solid var(--clr_sub04);
  position: relative;
}
.footer .copy {
  display: block;
  color: var(--clr_txt);
  padding: 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}
.footer:before {
  content: "";
  display: block;
  width: 95%;
  height: 3rem;
  background-image: url("../img/a_overview_ilst.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -3rem;
  right: 0;
  left: 0;
  margin: auto;
}
.footer .kodomo_bnr {
  margin: 2rem auto 0;
}
.footer .kodomo_bnr img {
  max-width: 65%;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer .copy {
    padding: 3rem 0;
  }
  .footer ul {
    display: block;
    width: 100rem;
    margin: auto;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    color: var(--clr_main);
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 0.5rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li a .br {
    display: none;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.subnav li:nth-child(7)::after {
    content: none;
  }
  .footer:before {
    width: 100%;
    height: 13.9rem;
    top: -12.7rem;
  }
  .footer .kodomo_bnr {
    margin: 5rem 0 2rem;
  }
  .footer .kodomo_bnr img {
    max-width: 100%;
  }
}
.sidebtn {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sidebtn {
    width: 9.4rem;
    display: block;
    overflow: hidden;
    position: fixed;
    top: 21rem;
    right: 0;
    z-index: 2;
  }
  .sidebtn li a {
    width: 100%;
    padding: 2.5rem;
    border-radius: 2rem 0 0 2rem;
    border: 0.4rem solid var(--clr_white);
    border-right: none;
    display: grid;
    place-content: center;
  }
  .sidebtn li .btn_rsv {
    height: 12rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5.5rem 0 0;
    background-color: var(--clr_main);
    color: var(--clr_white);
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.2;
    position: relative;
  }
  .sidebtn li .btn_rsv:before {
    content: "";
    display: block;
    width: 3.5rem;
    height: 3rem;
    background-image: url("../img/icon_rsv.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 1.5rem;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .sidebtn li .btn_rsv:hover {
    background-color: var(--clr_sub02);
    opacity: 1;
  }
  .sidebtn li .btn_monshin {
    height: 12rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 0 0;
    background-color: var(--clr_sub02);
    color: var(--clr_white);
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.2;
    position: relative;
  }
  .sidebtn li .btn_monshin:before {
    content: "";
    display: block;
    width: 3rem;
    height: 4.5rem;
    background-image: url("../img/icon_monshin.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 1.5rem;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .sidebtn li .btn_monshin:hover {
    background-color: var(--clr_main);
    opacity: 1;
  }
  .sidebtn li .btn_insta {
    background-color: var(--clr_insta);
  }
  .sidebtn li .btn_insta:hover {
    opacity: 1;
    background-color: rgba(var(--clr_insta-rgb), 0.7);
  }
  .sidebtn li .btn_line {
    background-color: var(--clr_white);
    border: 0.4rem solid var(--clr_line);
    border-right: none;
  }
  .sidebtn li .btn_line:hover {
    opacity: 1;
    background-color: rgba(var(--clr_white-rgb), 0.7);
  }
  .sidebtn li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 26rem;
  visibility: hidden;
  padding-bottom: 10rem;
}
.keyvsl #keyvsl .slick-list {
  animation: fadeIn 0.3s ease-in-out forwards;
}
.keyvsl #keyvsl .slick-list div img {
  height: 26rem !important;
  object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  position: absolute;
  bottom: -3rem;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 999999;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: var(--clr_sub02);
}
.keyvsl:after {
  content: "";
  display: block;
  background-image: url(../img/keyv_wave.svg);
  width: 100%;
  height: 7rem;
  background-repeat: no-repeat;
  background-position: center bottom -0.2rem;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
}
.keyvsl .kv01 img {
  object-fit: contain !important;
}
.keyvsl .kv02 img {
  object-position: top 0 right -6rem;
}
.keyvsl .kv04 img {
  object-position: top 0 right -6rem;
}
.keyvsl .kv05 img {
  object-position: top 0 right -6rem;
}
.keyvsl .kv06 img {
  object-position: top 0 right -29rem;
}
.keyvsl .catch {
  width: 100%;
  margin: auto;
  padding: 5rem 0 1rem;
  z-index: 1;
  background-color: var(--clr_sub01);
}
.keyvsl .catch .open {
  width: 95%;
  margin: 0 auto 1rem;
  padding: 0.5rem 0;
  color: var(--clr_sub02);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  background-color: var(--clr_white);
  box-shadow: 0.5rem 0.5rem 0 0 var(--clr_sub04);
}
.keyvsl .catch .open span {
  display: block;
  color: var(--clr_main);
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 70rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    width: 100%;
    height: 70rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    bottom: -4rem;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl:after {
    height: 11rem;
    background-position: center bottom;
    background-size: 100% auto;
    bottom: -0.1rem;
  }
  .keyvsl .kv01 img {
    object-fit: cover !important;
  }
  .keyvsl .kv02 img {
    object-position: unset;
  }
  .keyvsl .kv04 img {
    object-position: unset;
  }
  .keyvsl .kv05 img {
    object-position: unset;
  }
  .keyvsl .kv06 img {
    object-position: unset;
  }
  .keyvsl .catch {
    width: 1200px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding: 0;
    background-color: unset;
    opacity: 0;
    animation: fade_up 0.4s ease-out 1s 1 normal forwards;
  }
  .keyvsl .catch .open {
    width: 12rem;
    height: 12rem;
    display: grid;
    place-content: center;
    margin: 0 1rem;
    width: 23rem;
    height: 23rem;
    border-radius: 50%;
    font-size: 3.5rem;
    line-height: 1.2;
    box-shadow: 0.5rem 0.5rem 0 0 var(--clr_sub04);
    position: absolute;
    bottom: -6rem;
  }
  .keyvsl .catch .open span {
    font-size: 3rem;
  }
}
.read {
  background-color: var(--clr_sub01);
  text-align: center;
  font-weight: bold;
  margin: 0;
  padding: 0 0 2rem;
}
.read i {
  color: var(--clr_sub02);
}
.read em {
  color: var(--clr_main);
}
.read span {
  display: block;
  width: fit-content;
  background-color: var(--clr_white);
  box-shadow: 0.3rem 0.3rem 0 var(--clr_sub04);
  display: inline-block;
  font-size: 1.6rem;
  padding: 0.7rem;
  margin: 0 0.3rem 1rem;
}
.read .t_30 {
  font-size: 1.8rem;
}

@media screen and (min-width: 48em), print {
  .read {
    padding: 8rem 0 0;
  }
  .read span {
    font-size: 2.4rem;
    padding: 1.5rem 0.8rem;
    margin: 0 0.5rem 1rem;
  }
  .read .t_30 {
    font-size: 3rem;
  }
}
#modal_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(infinity);
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(51, 51, 51, 0.6);
}

#modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: calc(infinity);
  width: calc(100% - 2rem);
  height: auto;
  max-height: 90vh;
  background: #fff;
  padding: 1rem;
  overflow-y: auto;
  margin: 0 auto;
  line-height: 1.2;
  background: var(--clr_sub01);
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 0 7px var(--clr_sub01);
  box-shadow: 0 0 0 7px var(--clr_sub01);
}
#modal button {
  display: block;
  font-size: 1.4rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  border: none;
  background: var(--clr_main);
  color: #fff;
}
#modal [type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}
#modal h3.icon_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#modal h3.icon_title img {
  width: 1.5em;
  height: auto;
}
#modal h3.icon_title span {
  display: block !important;
}

#modal > section + section {
  margin-top: 2.5rem;
}

@media screen and (min-width: 48em), print {
  #modal {
    width: 65rem;
    padding: 3rem;
  }
  #modal button {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
  #modal h3 {
    justify-content: center;
  }
  #modal h3.icon_title {
    flex-direction: row;
  }
  #modal h3.icon_title span {
    display: inline-block;
  }
  #modal > section + section {
    margin-top: 4rem;
  }
}
.info {
  padding: 4rem 1rem;
  background: url(../img/info_bg_ilst.png) no-repeat center bottom 1rem/contain var(--clr_sub01);
}
.info .wrap {
  background-color: var(--clr_white);
  border-radius: 1rem;
  padding: 2rem 1rem;
}
.info .wrap dl {
  line-height: 1.4;
}
.info .wrap dl dt {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--clr_sub06);
  font-weight: bold;
  color: var(--clr_main);
  cursor: pointer;
}
.info .wrap dl dt::after {
  font-family: "fontello";
  content: "\e80b";
  font-size: 45%;
  text-align: center;
  color: var(--clr_white);
  font-weight: 400;
  line-height: 1.8rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--clr_main);
  background-position: center center;
  border-radius: 50%;
  margin-left: 0.6rem;
  flex-shrink: 0;
  transition: 0.2s;
}
.info .wrap dl dt.close::after {
  scale: 1 -1;
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 1rem 0 0;
}
.info .wrap dl dt.close {
  border-radius: 1rem 1rem 0 0;
}
.info .wrap dl dd {
  padding: 0 1rem 1rem;
  word-wrap: break-word;
  background-color: var(--clr_sub06);
  border-radius: 0 0 1rem 1rem;
}
.info .wrap dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 0 0 10rem;
    background-position: center center;
  }
  .info .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 3rem;
    padding: 6rem;
  }
  .info .wrap .tit_02 {
    width: 18rem;
  }
  .info .wrap dl {
    width: 82rem;
  }
  .info .wrap dl dt {
    padding: 3rem;
    font-size: 2rem;
  }
  .info .wrap dl dt::before {
    margin-right: 1rem;
  }
  .info .wrap dl dt:not(:first-of-type) {
    margin: 1.6rem 0 0;
  }
  .info .wrap dl dt.close {
    padding: 3rem 3rem 1rem;
  }
  .info .wrap dl dd {
    padding: 0 3rem 3rem;
  }
}
.gl_cal {
  background-color: var(--clr_white);
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin: 3rem auto 0;
}
.gl_cal .calendar {
  height: 50rem;
}

@media screen and (min-width: 48em), print {
  .gl_cal {
    width: 1200px;
    border-radius: 3rem;
    padding: 5rem 3rem;
    margin: 8rem auto 0;
  }
  .gl_cal .calendar {
    width: calc(100% - 40rem);
    height: 60rem;
    margin: auto;
  }
}
.top_greeting {
  width: 100%;
  padding: 4rem 1rem;
  background: url("../img/top_greeting_bg.png") no-repeat center top 2rem/100% auto #fff;
  position: relative;
}
.top_greeting .wrap {
  position: relative;
}
.top_greeting .wrap p {
  line-height: 2;
}
.top_greeting .wrap:after {
  content: "";
  display: block;
  width: 8rem;
  height: 7rem;
  background-image: url("../img/bear_ilst.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -14rem;
  right: 0;
  transform-origin: center bottom;
  animation: yura 3s linear infinite;
}
.top_greeting:before {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background: url(../img/top_greeting_wave.svg) no-repeat top left/100% auto;
  position: absolute;
  top: -1rem;
  left: 0;
}

@media screen and (min-width: 48em), print {
  .top_greeting {
    padding: 12rem 0 0;
    background-size: 120rem 54rem;
    background-position: center top 6rem;
  }
  .top_greeting .wrap {
    padding: 0 32rem;
    margin: auto;
  }
  .top_greeting .wrap p {
    line-height: 2.3;
  }
  .top_greeting .wrap:after {
    width: 18.9rem;
    height: 15.1rem;
    top: -33rem;
    right: -20rem;
    animation: yura 2s linear infinite;
  }
  .top_greeting:before {
    height: 7.2rem;
    top: -4rem;
  }
}
.top_point {
  width: 100%;
  padding: 4rem 1rem;
  background: url("../img/top_greeting_bg.png") no-repeat center top 2rem/100% auto #fff;
  position: relative;
}
.top_point .wrap {
  position: relative;
}
.top_point .wrap p {
  line-height: 2;
}
.top_point .wrap:after {
  content: "";
  display: block;
  width: 8rem;
  height: 7rem;
  background-image: url("../img/bear_ilst.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -14rem;
  right: 0;
  transform-origin: center bottom;
  animation: yura 3s linear infinite;
}
.top_point:before {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background: url(../img/top_greeting_wave.svg) no-repeat top left/100% auto;
  position: absolute;
  top: -1rem;
  left: 0;
}

@media screen and (min-width: 48em), print {
  .top_point {
    padding: 12rem 0 47rem;
    background-size: 120rem 54rem;
    background-position: center top 6rem;
  }
  .top_point .wrap {
    padding: 0 32rem;
    margin: auto;
  }
  .top_point .wrap p {
    line-height: 2.3;
  }
  .top_point .wrap:after {
    width: 18.9rem;
    height: 15.1rem;
    top: -33rem;
    right: -20rem;
    animation: yura 2s linear infinite;
  }
  .top_point:before {
    height: 7.2rem;
    top: -4rem;
  }
}
.guidance {
  background-color: var(--clr_sub01);
  position: relative;
  padding: 1rem 0 2rem;
}
.guidance:before {
  content: "";
  display: block;
  width: 100%;
  height: 7rem;
  background-image: url("../img/guidance_wave_top.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  top: -6.9rem;
}
.guidance .wrap {
  position: relative;
}
.guidance .wrap .subnav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 2rem;
}
.guidance .wrap .subnav li {
  width: 50%;
}
.guidance .wrap .subnav li a {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 1.2;
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.guidance .wrap .subnav li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.guidance .wrap .subnav li a span:after {
  display: inline-block;
  font-family: "fontello";
  content: "\e80c";
  color: var(--clr_white);
  background-color: var(--clr_main);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  font-size: 45%;
  line-height: 1.2;
  text-align: center;
  padding: 0.5rem 0;
  margin-left: 0.5rem;
}
.guidance .wrap .subnav li a .br {
  display: block;
}
.guidance .wrap .subnav li a:before {
  content: "";
  display: block;
  width: 12rem;
  height: 12rem;
  background-image: url(../img/icon_pediatrics.svg);
  background-size: 65% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--clr_white);
  border-radius: 2rem;
  border: 0.2rem solid var(--clr_sub04);
  margin: 0 auto 1rem;
  position: relative;
}
.guidance .wrap .subnav li .allergie:before {
  background-image: url(../img/icon_allergie.svg);
}
.guidance .wrap .subnav li .vaccination:before {
  background-image: url(../img/icon_vaccination.svg);
}
.guidance .wrap .subnav li .checkup:before {
  background-image: url(../img/icon_checkup.svg);
}
.guidance .wrap .subnav li .skincare:before {
  background-image: url(../img/icon_skincare.svg);
}
.guidance .wrap .subnav li .blood_tumor:before {
  background-image: url(../img/icon_blood_tumor.svg);
}
.guidance .wrap .subnav li .column:after {
  top: 1rem;
}
.guidance .wrap .subnav li.post {
  display: none;
}
.guidance .wrap:after {
  content: "";
  display: block;
  width: 4rem;
  height: 6rem;
  background-image: url("../img/guidance_ilst02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -12rem;
  right: 1rem;
  transform-origin: center bottom;
  animation: yura 3s linear infinite;
}

.guid_ilst01 {
  position: absolute;
  top: -14rem;
  left: 1rem;
  opacity: 0;
}
.guid_ilst01 img {
  width: 10rem;
  height: 5rem;
}
.guid_ilst01.trigger {
  animation: slideinRight 0.6s ease-out 0.2s 1 normal forwards;
}

@media screen and (min-width: 48em), print {
  .guidance {
    margin-top: 0 !important;
    padding: 0 0 10rem;
    position: relative;
  }
  .guidance:before {
    content: "";
    display: block;
    width: 100%;
    height: 57rem;
    background-image: url("../img/guidance_wave_top.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: absolute;
    top: -56.9rem;
  }
  .guidance .wrap {
    width: 110rem;
    margin: auto;
  }
  .guidance .wrap .subnav {
    justify-content: space-between;
    gap: 1rem 0;
    margin: 0;
  }
  .guidance .wrap .subnav li {
    width: 16rem;
  }
  .guidance .wrap .subnav li a {
    line-height: 1.2;
    margin-bottom: 0;
  }
  .guidance .wrap .subnav li a:before {
    width: 16rem;
    height: 16rem;
    background-size: 10rem 10rem;
    border: 0.3rem solid var(--clr_sub04);
    margin: 0 auto 1rem;
    transition: 0.3s;
  }
  .guidance .wrap .subnav li a span:after {
    width: 1.8rem;
    height: 1.8rem;
    line-height: 0.5;
    padding: 0.8rem 0;
    margin-left: 0.5rem;
    top: 0.1rem;
    right: -2rem;
  }
  .guidance .wrap .subnav li a:hover:before {
    box-shadow: 0 0.3rem 0.6rem 0 rgba(var(--clr_black-rgb), 0.1);
    transform: translateY(-10px);
    border-radius: 4rem;
    border: 0.3rem solid var(--clr_main);
  }
  .guidance .wrap .subnav li a:hover span:after {
    background-color: var(--clr_sub02);
  }
  .guidance .wrap:after {
    width: 10.2rem;
    height: 13.8rem;
    top: -28rem;
    animation: yura 2s linear infinite;
  }
  .guid_ilst01 {
    top: -30rem;
  }
  .guid_ilst01 img {
    width: 22.8rem;
    height: 10.8rem;
  }
}
.feature {
  padding: 4rem 1rem 8rem;
  margin-top: 0 !important;
  position: relative;
}
.feature .low2 {
  display: flex;
}
.feature .tit_02 {
  margin: 0 auto 4rem;
  background-image: unset;
  color: var(--clr_sub07);
  text-align: center;
  font-size: 2.3rem;
  font-weight: 900;
  position: relative;
}
.feature .tit_02:after {
  content: "";
  display: block;
  width: 18rem;
  height: 14rem;
  background-image: url("../img/h2_feature_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 1rem auto 0;
}
.feature:before {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: url(../img/guidance_wave_bottom.svg) no-repeat top left/100% auto;
  position: absolute;
  top: 0;
  left: 0;
}
.feature .feature_lst {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.feature .feature_lst li {
  position: relative;
}
.feature .feature_lst li p {
  line-height: 1.3;
  padding: 0 1.5rem;
}
.feature .feature_lst li img {
  border-radius: 2rem;
}
.feature .feature_lst li:not(:last-child) {
  margin-bottom: 4.5rem;
}
.feature .feature_lst li:before {
  content: "";
  display: block;
  width: 5.8rem;
  height: 5.6rem;
  background-image: url("../img/feature_num01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -3rem;
  left: 2rem;
  opacity: 0;
}
.feature .feature_lst li.f02:before {
  background-image: url("../img/feature_num02.svg");
}
.feature .feature_lst li.f03:before {
  background-image: url("../img/feature_num03.svg");
}
.feature .feature_lst li.f04:before {
  background-image: url("../img/feature_num04.svg");
}
.feature .feature_lst li.trigger:nth-child(1):before {
  animation: rotate-fade 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.1s;
}
.feature .feature_lst li.trigger:nth-child(2):before {
  animation: rotate-fade 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.2s;
}
.feature .feature_lst li.trigger:nth-child(3):before {
  animation: rotate-fade 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.3s;
}
.feature .feature_lst li.trigger:nth-child(4):before {
  animation: rotate-fade 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.4s;
}

@media screen and (min-width: 48em), print {
  .feature {
    background: url("../img/feauture_bg_ilst.png") no-repeat center center/100% auto #fff;
    padding: 15rem 0 12rem;
  }
  .feature .tit_02 {
    width: 86.2rem;
    display: flex;
    align-items: center;
    margin: 0 auto 8rem;
    text-align: left;
    font-size: 5rem;
  }
  .feature .tit_02:after {
    width: 31.9rem;
    height: 25.3rem;
    margin: 0 0 0 5rem;
  }
  .feature:before {
    height: 7.8rem;
    background-position: left bottom;
    background-size: 100% 7.8rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .feature .feature_lst li {
    width: 53rem;
  }
  .feature .feature_lst li:not(:last-child) {
    margin-bottom: 8rem;
  }
  .feature .feature_lst li:before {
    width: 7.8rem;
    height: 7.6rem;
    top: -3.5rem;
    left: 2rem;
  }
}
.bnr {
  padding: 0 1rem;
  background-color: var(--clr_sub01);
}
.bnr ul {
  display: flex;
  flex-direction: column;
}
.bnr ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.bnr ul li a {
  display: block;
  width: -moz-fit-content; /* Firefox */
  width: fit-content; /* other browsers */
  margin: auto;
}
.bnr ul li a img {
  border-radius: 0.6rem;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .bnr {
    padding: 8rem 0 10rem;
  }
  .bnr ul {
    width: 1200px;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 7rem;
  }
  .bnr ul li {
    width: auto;
  }
  .bnr ul li a img {
    border-radius: 1rem;
  }
  .bnr ul li a:hover img {
    opacity: 0.8;
  }
  .bnr ul li:not(:last-child) {
    margin-bottom: 0;
  }
}
.bnr_intro .line {
  border: 1px solid #cbf5ae;
  border-radius: 1rem;
}

@media screen and (min-width: 48em), print {
  .bnr_intro {
    width: 30%;
    margin: 2rem auto 0;
  }
}
body:not(.index) .tit_02 {
  background: unset;
  margin: 0 auto 2rem;
}
body:not(.index) .tit_02:after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.6rem;
  background-image: url("../img/h2_dot.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0.7rem auto 0;
}
body:not(.index) .main {
  margin: 0 1rem 6rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 0 20rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 40%;
    height: auto;
  }
  body:not(.index) .tit_02 {
    background: unset;
    margin: 0 auto 3rem;
  }
  body:not(.index) .tit_02:after {
    width: 18.2rem;
    height: 0.6rem;
    margin: 1.5rem auto 0;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin: 0 1rem 4rem;
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.4rem;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.4rem;
    margin: 0 0 8rem;
  }
  .breadcrumb li:not(:last-child)::after {
    margin: 0 0.8rem;
  }
}
.gallery {
  width: 85%;
  margin: auto;
}
.gallery .gallery_slider {
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: var(--clr_white);
  padding: 0.4rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_main);
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  background: var(--clr_main);
}
@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery.gallery_device .gallery_thum .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 48em), print {
  .device {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .device li {
    width: 32%;
    margin: 0 0 2rem;
  }
  .device li:not(:nth-child(3n)) {
    margin: 0 2.4rem 2rem 0;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
.first .img_c {
  border-radius: 0;
}

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

.access .main .img_c {
  border-radius: 0;
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

.post .btn_detail {
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .post .btn_detail {
    margin: 0;
  }
}
.skincare .lead {
  color: var(--clr_sub02);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .skincare .lead {
    font-size: 2.4rem;
    text-align: left;
    margin: 0 0 2rem;
  }
  .skincare .lst_ul.box_02.pc_half {
    width: calc(60% - 2rem);
  }
}/*# sourceMappingURL=style.css.map */