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

:root {
  --clr_white: #fff;
  --clr_txt: #633203;
  --clr_main: #ED7A94;
  --clr_sub01: #F0BB41;
  --clr_sub02: #FFF9E1;
  --clr_sub03: #FFF6F8;
  --clr_sub04: #FFF3CB;
  --clr_sub05: #fee8b0;
  --clr_sub06: #eeadbb;
  --clr_sub07: #F1E3D5;
  --clr_sub08: #CEBFB0;
  --clr_sub09: rgba(0,0,0,.1);
  --clr_sub10: #FFE9EE;
  --clr_sub11: #FFF5D5;
  --clr_sub12: #E2D6CA;
  --clr_sub13: #FFA15B;
  --clr_sub14: #F58D5A;
}

@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);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_att {
  color: var(--clr_main);
}

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

.img_bnr {
  width: 96%;
  height: auto;
  margin: 0 auto;
}

@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;
  }
  .img_bnr {
    width: 420px;
    height: auto;
    margin: 2rem auto;
  }
}
.sp_n {
  display: none;
}

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

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.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;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .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%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption span {
  display: inline-block;
  margin-right: 0.5rem;
}
.tbl_time caption .holiday {
  border-radius: 0.5rem;
  background-color: var(--clr_main);
  color: var(--clr_white);
  padding: 0.5rem 1rem;
  margin: 1rem 1.5rem 0 0;
}
.tbl_time .att {
  color: var(--clr_main);
}
.tbl_time tr th {
  font-weight: 500;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  background-color: var(--clr_main);
  color: var(--clr_white);
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 1.5rem 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 1.5rem 0 0;
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_sub07);
  background-color: var(--clr_white);
  text-align: left;
  font-size: 90%;
  padding: 0 0 0 1rem;
}
.tbl_time tr th.time span {
  display: inline-block;
  font-size: 75%;
  margin: 0 0 0 0.8rem;
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  background-color: var(--clr_white);
  border-bottom: 1px solid var(--clr_sub07);
  line-height: 1;
  font-size: 80%;
}
.tbl_time.tantou tr th {
  background-color: var(--clr_sub14);
}
.tbl_time.tantou tr td {
  border-bottom: 0.1rem solid var(--clr_sub07);
}
.tbl_time.tantou tr:nth-child(2) .name {
  border-bottom: 0.1rem solid var(--clr_txt);
}
.tbl_time.tantou tr:nth-child(3) td {
  border-bottom: 0.1rem solid var(--clr_txt);
}
.tbl_time.naishikyo tr th {
  background-color: var(--clr_sub01);
}
.tbl_time.naishikyo tr td {
  border-bottom: 0.1rem solid var(--clr_sub02);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 100%;
    margin-top: 1rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.76rem 0;
    font-size: 100%;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 25%;
  }
  .tbl_time tr th.time {
    font-size: 100%;
  }
  .tbl_time tr th.time span {
    font-size: 1.4rem;
    margin: 0 0 0 0.8rem;
  }
  .tbl_time tr td {
    padding: 1.6rem 0;
    font-size: 100%;
  }
  .tbl_time.tantou {
    table-layout: auto;
  }
  .tbl_time.tantou tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time.tantou tr td.name {
    width: 22%;
  }
  .tbl_time.tantou tr td.item {
    text-align: left;
  }
}
.gmap {
  width: 100%;
}

.tit_01, .tit_02, .tit_03, .tit_04, .tit_05 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 600;
}

.tit_01 {
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  padding: 3rem 1rem;
  margin: 0 0 1rem;
}
.tit_01 span {
  display: block;
  width: -moz-fit-content; /* Firefox */
  width: fit-content; /* other browsers */
  margin: auto;
  padding: 1rem 2rem;
  background: linear-gradient(to right, rgba(240, 187, 65, 0.9) 0%, rgba(237, 122, 148, 0.9) 100%);
  border-radius: 1rem;
  color: var(--clr_white);
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.tit_01 span:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 0.1rem solid var(--clr_white);
  border-radius: 1rem;
  opacity: 0.9;
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  z-index: -1;
}

.tit_02 {
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  margin: 0 0 2rem;
}
.tit_02 span {
  display: block;
  text-align: center;
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-weight: 400;
  color: var(--clr_main);
  font-size: 70%;
  margin: 0.5rem 0 0;
}
.tit_02:before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-image: url("../img/icon_h2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 1rem;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 2rem;
  background: linear-gradient(to right, var(--clr_main) 0%, var(--clr_sub01) 100%);
  color: var(--clr_white);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 0.1rem solid var(--clr_sub12);
}
.tit_04:before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 1.8rem;
  background: linear-gradient(to bottom, var(--clr_main) 0%, var(--clr_sub01) 100%);
  margin-right: 1rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    display: grid;
    place-content: center;
    background: url(../img/tit_01.jpg) no-repeat center center/auto;
    height: 34.5rem;
  }
  .tit_01 span {
    font-size: 4.8rem;
    padding: 2.3rem 5rem;
    border-radius: 2rem;
    letter-spacing: 0.5rem;
  }
  .tit_01 span:before {
    border-radius: 2rem;
  }
  .tit_02 {
    font-size: 4.4rem;
    margin: 0 0 6rem;
    letter-spacing: 0.8rem;
  }
  .tit_02 span {
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
    margin: 1rem 0 0;
  }
  .tit_02:before {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1rem;
  }
  .tit_03 {
    font-size: 2.8rem;
    margin: 0 0 3rem;
    padding: 1rem 1.5rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding-bottom: 1.5rem;
  }
  .tit_04:before {
    width: 0.7rem;
    height: 3.4rem;
    margin-right: 1.5rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_main);
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
.lst_ul.number li {
  position: relative;
}
.lst_ul.number li span {
  position: absolute;
  left: 0;
  font-size: 105%;
}
@media screen and (min-width: 48em), print {
  .lst_ul.number li span {
    font-size: 110%;
  }
}
.lst_ul.number li::before {
  display: none;
}

.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.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::marker {
  color: #f00;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_txt);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 {
  border-top: 0.1rem solid var(--clr_sub12);
  border-left: 0.1rem solid var(--clr_sub12);
}
.lst_dl01 dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr_sub11);
  padding: 0.5rem 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  border-right: 0.1rem solid var(--clr_sub12);
  border-bottom: 0.1rem solid var(--clr_sub12);
}
.lst_dl01 dd {
  padding: 1rem;
  text-align: left;
  border-bottom: 0.1rem solid var(--clr_sub12);
  border-right: 0.1rem solid var(--clr_sub12);
}
.lst_dl01.vertical dt {
  justify-content: flex-start;
}
.lst_dl01.price dd {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  .lst_ol > li {
    padding: 0 0 0 3.6rem;
  }
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 1.5rem 2rem;
  }
  .lst_dl01.vertical {
    display: block;
  }
  .lst_dl01.vertical dt {
    width: 100%;
  }
  .lst_dl01.vertical dd {
    width: 100%;
  }
}
.tbl_01 {
  width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 0.1rem solid var(--clr_sub12);
  border-left: 0.1rem solid var(--clr_sub12);
}
.tbl_01 tr th {
  background-color: var(--clr_sub11);
  padding: 1rem;
  border-right: 0.1rem solid var(--clr_sub12);
  border-bottom: 0.1rem solid var(--clr_sub12);
}
.tbl_01 tr td {
  padding: 1rem;
  border-right: 0.1rem solid var(--clr_sub12);
  border-bottom: 0.1rem solid var(--clr_sub12);
}
.tbl_01.-tbl_02 tr th {
  width: 60%;
  text-align: left;
}
.tbl_01.-tbl_02 tr td {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  .tbl_01 tr th {
    width: 30%;
    padding: 1rem;
  }
  .tbl_01 tr td {
    padding: 1rem;
  }
  .tbl_01.-tbl_02 {
    width: 80%;
    margin: auto;
  }
}
.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: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 120%;
  white-space: nowrap;
}
.tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.tel a:before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/icon_tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}

.btn_rsv {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(to bottom, var(--clr_main) 0%, var(--clr_sub01) 100%);
  padding: 1rem 2rem;
  border-radius: 5rem;
  color: var(--clr_white);
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 1.2;
}
.btn_rsv:before {
  font-family: "fontello";
  content: "\e898";
  margin-bottom: 0.8rem;
  font-weight: normal;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tel {
    display: flex;
    align-items: center;
    line-height: 1;
  }
  .tel a:before {
    display: none;
  }
  .tel:before {
    content: "";
    display: inline-block;
    width: 3.7rem;
    height: 3.7rem;
    background-image: url("../img/icon_tel.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0.3rem 0.5rem 0 0;
  }
  .btn_rsv {
    font-size: 2.2rem;
  }
  .btn_rsv:before {
    margin: 0.3rem 0.5rem 0 0;
    font-size: 2.8rem;
  }
}
.box_01 {
  padding: 1.5rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--clr_sub10);
}
@media screen and (min-width: 48em), print {
  .box_01 {
    padding: 3rem;
  }
}

.box_02 {
  padding: 1.5rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--clr_sub11);
}
@media screen and (min-width: 48em), print {
  .box_02 {
    padding: 3rem;
  }
}

.btn_detail {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: var(--clr_white);
  color: var(--clr_main);
  border: 0.1rem solid var(--clr_main);
  border-radius: 5rem;
  text-decoration: none !important;
}
.btn_detail:before {
  font-family: "fontello";
  content: "\e805";
  margin-right: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .btn_detail {
    padding: 1rem 4rem;
  }
  .btn_detail:before {
    margin-right: 0.8rem;
  }
  .btn_detail:hover {
    background: var(--clr_main);
    color: var(--clr_white);
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: none !important;
  margin: 0 0.2em;
}
.linkout::after {
  font-family: "fontello";
  content: "\f1c1";
  font-weight: normal;
  line-height: 1;
  font-size: 0.8em;
  margin-left: 0.4rem;
}

.linktxt {
  display: inline-block;
  color: var(--clr_main);
  margin: 0 0.2em;
}
.linktxt::after {
  display: inline-block;
  font-family: "fontello";
  content: "\f102";
  font-weight: normal;
  line-height: 1;
  font-size: 0.8em;
  margin-left: 0.4rem;
  transform: rotate(90deg);
}

.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: 1rem;
}
.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-color: var(--clr_sub04);
  color: var(--clr_txt);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--clr_sub02);
  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.6rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  background-color: var(--clr_sub02);
}
.header .wrap {
  padding: 1rem;
}
.header .wrap .logo {
  width: calc(100% - 5rem);
  height: 5rem;
}
.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 .headR {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    padding: 2.5rem 0;
  }
  .header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }
  .header .wrap .logo {
    width: 60%;
    height: 8.7rem;
  }
  .header .wrap .headR {
    width: 40%;
    display: block;
    white-space: nowrap;
  }
  .header .wrap .headR ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header .wrap .headR ul li .tel {
    font-size: 4.4rem;
  }
}
.SideBtn {
  display: none;
}

@media screen and (min-width: 48em), print {
  .SideBtn {
    display: block;
    position: fixed;
    right: 0;
    top: 41.7rem;
    z-index: 3;
  }
  .SideBtn .btn_rsv {
    width: 6rem;
    height: 21rem;
    margin-bottom: 0.8rem;
    padding: 0 1rem 0 2rem;
    border-radius: 1rem 0 0 1rem;
    border: 0.5rem solid var(--clr_white);
    border-right: none;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    writing-mode: vertical-rl;
    text-orientation: upright;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.33);
  }
  .SideBtn .btn_rsv:before {
    margin: 0 0 0.5rem;
    font-weight: normal;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: linear-gradient(to right, var(--clr_sub01) 0%, var(--clr_main) 100%);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 3rem;
  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: 75vh;
  overflow-y: auto;
  background: var(--clr_white);
  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_txt);
  border-bottom: 1px solid var(--clr_txt);
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_txt);
}
#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;
  color: var(--clr_txt);
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e819";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--clr_main);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e818";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  margin-bottom: 1rem;
}
#nav .gnav_subnav .gnav > li .subbox .subnav {
  border-radius: 1.5rem;
  overflow: hidden;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 0.8rem 1rem;
  background-color: var(--clr_sub07);
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:not(:last-child) a {
  border-bottom: 0.1rem dotted var(--clr_white);
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky !important;
    top: 0;
    left: 0;
    z-index: 20;
    transition: 0.2s;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block;
    width: 100%;
    max-height: auto;
    overflow-y: visible;
    padding: 0 0 0.8rem;
    position: static;
    background-color: var(--clr_sub02);
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li:first-child a {
    position: relative;
  }
  #nav .gnav_subnav .gnav li:first-child a:after {
    content: "";
    display: block;
    width: 0.2rem;
    height: 1.7rem;
    border-left: 0.2rem dotted var(--clr_sub08);
    position: absolute;
    left: 0;
  }
  #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;
    cursor: pointer;
    position: relative;
  }
  #nav .gnav_subnav .gnav li a:before, #nav .gnav_subnav .gnav li .sub:before {
    content: "";
    display: block;
    width: 0.2rem;
    height: 1.7rem;
    border-right: 0.2rem dotted var(--clr_sub08);
    position: absolute;
    right: 0;
  }
  #nav .gnav_subnav .gnav li a::after, #nav .gnav_subnav .gnav li .sub::after {
    margin: 0 0 0 1rem;
  }
  #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_main);
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: 52rem;
    position: absolute;
    z-index: 100;
    margin-bottom: 0;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav {
    display: flex;
    flex-wrap: wrap;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li {
    width: 50%;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a {
    display: block;
    width: 100%;
    padding: 1.6rem 0;
    letter-spacing: 0.2rem;
    background-color: var(--clr_white);
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:before, #nav .gnav_subnav .gnav li .subbox > .subnav li a:after {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:hover {
    opacity: 1;
    background-color: var(--clr_main);
    color: var(--clr_white);
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:nth-child(odd) a {
    border-right: 0.1rem dotted var(--clr_sub08);
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:not(:last-child) a {
    border-bottom: 0.1rem dotted var(--clr_sub08);
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:nth-child(8) a {
    border-radius: 0 0 1.5rem 0;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:last-child a {
    border-radius: 0 0 1.5rem 0;
  }
  #nav.sticky {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 20;
  }
  #nav.sticky .gnav_subnav {
    background-color: rgba(255, 249, 225, 0.8);
    box-shadow: 0.2rem 0.2rem 0.6rem var(--clr_sub09);
  }
  #nav.sticky .gnav_subnav .gnav li a, #nav.sticky .gnav_subnav .gnav li .sub {
    font-size: 1.6rem;
    padding: 0.5rem 0;
  }
}
.overview {
  padding: 2rem 1rem 3rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: var(--clr_sub02);
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 90%;
  margin: auto;
}
.overview > .wrap .overviewL ul {
  margin-bottom: 2rem;
}
.overview > .wrap .overviewL ul .add {
  text-align: center;
  margin-bottom: 2rem;
}
.overview > .wrap .overviewL ul .add:before {
  font-family: "fontello";
  content: "\e81a";
  color: var(--clr_main);
  font-size: 1.8rem;
  margin-right: 0.5rem;
}
.overview > .wrap .overviewL ul .tel {
  font-size: 2.6rem;
}
.overview > .wrap .overviewL ul .tel a {
  margin-bottom: 2rem;
}
.overview > .wrap .overviewL ul .btn_rsv {
  width: 60%;
  margin: auto;
  padding: 1rem 0;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--clr_txt);
  color: var(--clr_txt);
  text-align: center;
  margin: 0 0 0.8rem;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 100%;
  padding: 0.5rem;
  margin: 0 0 0.8rem;
}
.overview > .wrap .overviewL .gaiyo dd span {
  font-size: 120%;
  font-weight: 600;
  color: var(--clr_main);
  margin: 0 0.3rem;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 2rem 0;
}
.overview > .wrap .overviewR .gmap {
  height: 30rem;
}
.overview > .wrap .overviewR .gmap iframe {
  border-radius: 2rem;
}
.overview > .wrap .overviewR .btn_map {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
  border: 0.1rem solid var(--clr_txt);
  border-radius: 5rem;
  padding: 1rem;
}
.overview > .wrap .overviewR .btn_map:before {
  font-family: "fontello";
  content: "\e81b";
  color: var(--clr_main);
  line-height: 1;
  margin-right: 0.8rem;
  font-size: 120%;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0 2rem;
    font-size: 1.6rem;
  }
  .overview .clinic_name {
    margin: 0 0 4rem;
  }
  .overview .clinic_name img {
    max-width: 70rem;
  }
  .overview > .wrap .overviewL {
    display: flex;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL ul {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 2.3rem;
  }
  .overview > .wrap .overviewL ul .add {
    width: 100%;
    margin: 0 0 1.4rem;
  }
  .overview > .wrap .overviewL ul .tel {
    font-size: 4.4rem;
  }
  .overview > .wrap .overviewL ul .btn_rsv {
    width: 19rem;
    padding: 1rem 0;
    margin-left: 3rem;
    font-size: 2.2rem;
  }
  .overview > .wrap .overviewL .gaiyo {
    width: 48%;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 20%;
    padding: 1rem 0;
    margin: 0 0 0.8rem;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 80%;
    padding: 1rem 0 0 2rem;
    margin: 0 0 0.8rem;
  }
  .overview > .wrap .overviewL .gaiyo dd span {
    font-size: 2.4rem;
  }
  .overview > .wrap .overviewR {
    margin: 5rem 0 0;
  }
  .overview > .wrap .overviewR .flex2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
  .overview > .wrap .overviewR .flex2 > table {
    width: 48%;
  }
  .overview > .wrap .overviewR .flex2 .tbl_time {
    margin: 0;
  }
  .overview > .wrap .overviewR .gmap {
    height: 31.5rem;
  }
  .overview > .wrap .overviewR .gmap iframe {
    border-radius: 2rem;
  }
  .overview > .wrap .overviewR .btn_map {
    width: 24.5rem;
    font-size: 1.8rem;
    margin: 3rem auto 0;
  }
  .overview > .wrap .overviewR .btn_map:before {
    font-size: 2rem;
  }
  .overview > .wrap .overviewR .btn_map:hover {
    background-color: var(--clr_txt);
    color: var(--clr_white);
  }
  .overview > .wrap .overviewR .btn_map:hover:before {
    color: var(--clr_white);
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: var(--clr_sub02);
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  width: 50%;
  height: 100%;
  text-align: center;
}
#tel_up ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
#tel_up ul li .tel {
  height: 100%;
  font-size: 1.6rem;
}
#tel_up ul li .tel a:before {
  width: 2rem;
  height: 2rem;
}
#tel_up ul li .btn_rsv {
  font-size: 1.3rem;
  border-radius: 0;
  letter-spacing: 0;
}
#tel_up ul li .btn_rsv:before {
  margin: 0 0.5rem 0 0;
  transform: scale(1.4);
}
#tel_up #pageup {
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
}
#tel_up #pageup img {
  width: 70%;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 5rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    padding: 0;
    height: 5rem;
  }
  #tel_up #pageup img {
    width: 100%;
  }
}
.footer {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 0 0 4rem;
  background-color: var(--clr_sub02);
}
.footer .copy {
  display: block;
  background: linear-gradient(to right, var(--clr_sub01) 0%, var(--clr_main) 100%);
  color: var(--clr_white);
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer .copy {
    margin: 2rem 0 0;
    padding: 2rem 1rem;
    font-size: 1.6rem;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    margin: 0 0 1rem;
    -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 span {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li a:hover span {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.subnav a span {
    display: inline-block;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 26rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list {
  display: none;
}
.keyvsl #keyvsl .slick-list div img {
  height: 26rem !important;
  object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl .read {
  width: 95%;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  opacity: 0;
}
.keyvsl .read .circle {
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  text-align: center;
  font-size: 1rem;
  color: var(--clr_white);
  background: linear-gradient(to right, var(--clr_sub01) 0%, var(--clr_main) 100%);
  opacity: 0.9;
  position: relative;
  display: grid;
  place-content: center;
}
.keyvsl .read .circle p {
  margin: 0.7rem 0 0;
  line-height: 1.4;
}
.keyvsl .read .circle a {
  text-align: center;
}
.keyvsl .read .circle a:after {
  display: block;
  font-family: "fontello";
  content: "\e805";
  font-weight: normal;
  line-height: 1;
  margin: 0.5rem auto 0;
}
.keyvsl .read .circle:after {
  content: "";
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  border: 0.1rem solid var(--clr_white);
  position: absolute;
  top: 0;
  right: -0.3rem;
  pointer-events: none;
}
.keyvsl .read .circle a {
  display: block;
}
.keyvsl .read.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 76rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    width: 100%;
    height: 76rem !important;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .read {
    width: 1200px;
    top: auto;
    bottom: 5rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .keyvsl .read .circle {
    width: 22rem;
    height: 22rem;
    font-size: 2.6rem;
  }
  .keyvsl .read .circle p {
    margin: 2rem 0 0;
  }
  .keyvsl .read .circle:after {
    width: 22rem;
    height: 22rem;
    border: 0.2rem solid var(--clr_white);
    top: 0;
    right: -0.8rem;
  }
}
.info {
  padding: 4rem 1rem;
  position: relative;
}
.info .wrap {
  background-color: var(--clr_white);
  border-radius: 2rem;
  padding: 2rem 1rem;
  position: relative;
  opacity: 0;
}
.info .wrap .tit_02 {
  position: relative;
  z-index: 3;
}
.info .wrap .tit_02:before {
  display: none;
}
.info .wrap dl {
  line-height: 1.4;
  padding-bottom: 0.6rem;
  border-bottom: 1px dotted var(--clr_txt);
  position: relative;
}
.info .wrap dl dt {
  display: flex;
  margin: 0 0 0.6rem;
  font-weight: bold;
  color: var(--clr_txt);
  cursor: pointer;
}
.info .wrap dl dt::before {
  font-family: "fontello";
  content: "\e819";
  margin-right: 0.6rem;
  color: var(--clr_main);
  font-weight: 400;
}
.info .wrap dl dt.close::before {
  font-family: "fontello";
  content: "\e818";
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px dotted var(--clr_txt);
}
.info .wrap dl dd {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  margin: 0 0 1.6rem;
  word-wrap: break-word;
}
.info .wrap dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.info .wrap dl:after {
  content: "";
  display: block;
  width: 5rem;
  height: 4rem;
  background-image: url("../img/info_pikari.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -7rem;
  left: -1rem;
}
.info .wrap:before {
  content: "News";
  display: block;
  position: absolute;
  top: -2rem;
  right: 0;
  left: 0;
  margin: auto;
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.5rem;
  color: var(--clr_sub03);
  z-index: 0;
}
.info .wrap.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.info:after {
  content: "";
  display: block;
  width: 80%;
  height: 85%;
  background: linear-gradient(to right, var(--clr_sub01) 0%, var(--clr_main) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem 0;
    background: linear-gradient(to right, var(--clr_sub01) 0%, var(--clr_main) 100%);
    background: var(--clr_sub04);
    position: relative;
  }
  .info .wrap {
    border-radius: 0 3rem 3rem 0;
    z-index: 2;
  }
  .info .wrap:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--clr_white);
    position: absolute;
    top: 0;
    right: calc(50% - 30px);
    z-index: -1;
  }
  .info .wrap .tit_02 {
    margin: 0 auto 8rem;
    position: relative;
    z-index: 2;
  }
  .info .wrap dl {
    width: 78rem;
    margin: auto;
    padding-bottom: 2rem;
  }
  .info .wrap dl dt {
    margin: 0 0 2rem;
    font-size: 2.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 dd {
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
  .info .wrap dl:after {
    width: 13rem;
    height: 9.3rem;
    top: -20rem;
    left: -5rem;
  }
  .info .wrap:before {
    top: -5.3rem;
    font-size: 20rem;
    letter-spacing: 1rem;
  }
  .info:after {
    min-width: 100rem;
    height: 62rem;
    z-index: 1;
  }
}
.feature {
  padding: 4rem 1rem;
  background: url(../img/feauture_wave_ue.svg) no-repeat top center/100% auto var(--clr_sub02);
  position: relative;
  overflow: hidden;
}
.feature .tit_02 {
  opacity: 0;
  margin: 0 0 5rem;
}
.feature .tit_02.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.feature ul {
  counter-reset: number 0;
  position: relative;
  z-index: 2;
}
.feature ul li {
  border-radius: 2rem;
  box-shadow: 0 0.3rem 1.5rem var(--clr_sub05);
  background-color: var(--clr_white);
  position: relative;
  opacity: 0;
}
.feature ul li img {
  border-radius: 2rem 2rem 0 0;
}
.feature ul li:before {
  content: "0" counter(number) "";
  counter-increment: number 1;
  position: absolute;
  top: -2rem;
  left: 1rem;
  background-color: rgba(237, 122, 148, 0.9);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: var(--clr_white);
  font-size: 3rem;
  display: grid;
  place-content: center;
}
.feature ul li .read {
  padding: 1rem 1rem 2rem;
  position: relative;
}
.feature ul li .read .tit {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  font-size: 1.6rem;
  margin: 0;
}
.feature ul li .read:before {
  content: "";
  display: block;
  width: 100%;
  height: 3rem;
  background: url(../img/feature_wave_s.png) no-repeat top left/100% auto;
  position: absolute;
  top: -2rem;
  left: 0;
}
.feature ul li:nth-child(even):before {
  background-color: rgba(240, 187, 65, 0.9);
}
.feature ul li:not(:last-child) {
  margin-bottom: 5rem;
}
.feature ul li.trigger:nth-child(1) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.16s;
}
.feature ul li.trigger:nth-child(2) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.32s;
}
.feature ul li.trigger:nth-child(3) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.48s;
}
.feature ul li.trigger:nth-child(4) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.64s;
}
.feature ul li.trigger:nth-child(5) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.8s;
}
.feature ul:before {
  content: "";
  display: block;
  width: 20rem;
  height: 20rem;
  background-image: url("../img/circle_orange.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 27rem;
  left: -5rem;
}
.feature ul:after {
  content: "";
  display: block;
  width: 20.6rem;
  height: 20.6rem;
  background-image: url("../img/circle_orange.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15rem;
  right: -5rem;
  z-index: -1;
}
.feature:before {
  content: "";
  display: block;
  width: 20rem;
  height: 20rem;
  background-image: url("../img/circle_pink.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 4rem;
  left: -9rem;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 13rem 0 10rem;
  }
  .feature .tit_02 {
    margin: 0 0 7rem;
  }
  .feature ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8rem 4rem;
    padding: 0 1rem;
  }
  .feature ul li {
    width: 57rem;
  }
  .feature ul li:before {
    width: 9rem;
    height: 9rem;
    font-size: 5rem;
    left: 2rem;
  }
  .feature ul li .read {
    position: relative;
    padding: 3rem 3.5rem;
  }
  .feature ul li .read .tit {
    line-height: 1.7;
    font-size: 2.4rem;
  }
  .feature ul li .read:before {
    height: 3rem;
    top: -3rem;
    left: 0;
  }
  .feature ul li:not(:last-child) {
    margin-bottom: 0;
  }
  .feature ul::before {
    width: 60.6rem;
    height: 60.6rem;
    left: -35rem;
    bottom: 4rem;
  }
  .feature ul:after {
    width: 60.6rem;
    height: 60.6rem;
    top: 15rem;
    right: -48rem;
  }
  .feature:before {
    width: 63rem;
    height: 63rem;
    top: 0;
    left: -20rem;
  }
}
.medical {
  background: url(../img/medical_bg.jpg) no-repeat left top/cover;
  position: relative;
  margin-top: 0 !important;
  padding: 4rem 1rem 5rem;
}
.medical .tit_02 {
  margin: 0 0 4rem;
  opacity: 0;
}
.medical .tit_02:before {
  background-image: url(../img/icon_medical_h2.svg);
}
.medical .tit_02.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.medical ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
.medical ul li {
  width: 48%;
  opacity: 0;
}
.medical ul li a {
  display: block;
  text-align: center;
  text-decoration: none !important;
  letter-spacing: 0.2rem;
  position: relative;
}
.medical ul li a span:before {
  font-family: "fontello";
  content: "\e805";
  color: var(--clr_main);
  font-weight: 400;
  margin-right: 1rem;
}
.medical ul li a:before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: linear-gradient(210deg, rgba(237, 122, 148, 0.9) 0%, rgba(239, 155, 106, 0.9) 74.9%, rgba(240, 187, 65, 0.9) 100%);
  box-shadow: 0px 0px 20px rgba(238, 173, 187, 0.8);
  margin: 0 auto 1rem;
}
.medical ul li a:after {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/icon_internal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 2.5rem;
  right: 0;
  left: 0;
  margin: auto;
}
.medical ul li .gastro:after {
  content: "";
  background-image: url("../img/icon_gastro.svg");
}
.medical ul li .endoscopy:after {
  content: "";
  background-image: url("../img/icon_endoscopy.svg");
}
.medical ul li .colonoscopy:after {
  content: "";
  background-image: url("../img/icon_colonoscopy.svg");
}
.medical ul li .lifestyle-related:after {
  content: "";
  background-image: url("../img/icon_lifestyle-related.svg");
}
.medical ul li .ibd:after {
  content: "";
  background-image: url("../img/icon_ibd.svg");
}
.medical ul li .liver_disease:after {
  content: "";
  background-image: url("../img/icon_liver_disease.svg");
}
.medical ul li .pylori:after {
  content: "";
  background-image: url("../img/icon_pylori.svg");
}
.medical ul li .vaccination:after {
  content: "";
  background-image: url("../img/icon_vaccination.svg");
}
.medical ul li.trigger:nth-child(1) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.16s;
}
.medical ul li.trigger:nth-child(2) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.32s;
}
.medical ul li.trigger:nth-child(3) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.48s;
}
.medical ul li.trigger:nth-child(4) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.64s;
}
.medical ul li.trigger:nth-child(5) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.8s;
}
.medical ul li.trigger:nth-child(6) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 0.96s;
}
.medical ul li.trigger:nth-child(7) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 1.12s;
}
.medical ul li.trigger:nth-child(8) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 1.28s;
}
.medical ul li.trigger:nth-child(9) {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
  animation-delay: 1.44s;
}
.medical:before {
  content: "";
  display: block;
  width: 100%;
  height: 13rem;
  background: url(../img/medical_wave_ue.svg) no-repeat left top/100% auto;
  position: absolute;
  top: -0.2rem;
  left: 0;
}
.medical:after {
  content: "";
  display: block;
  width: 100%;
  height: 13rem;
  background: url(../img/medical_wave_shita.svg) no-repeat left bottom/100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 48em), print {
  .medical {
    padding: 1rem 0 15rem;
  }
  .medical ul {
    padding: 0 1rem;
    gap: 4.6rem 7rem;
  }
  .medical ul li {
    width: 17.5rem;
  }
  .medical ul li a {
    font-size: 2.1rem;
  }
  .medical ul li a:before {
    width: 17.5rem;
    height: 17.5rem;
    margin: 0 auto 2rem;
    transition: 0.4s;
  }
  .medical ul li a:after {
    width: 11rem;
    height: 11rem;
    top: 3.5rem;
    transition: 0.4s;
  }
  .medical ul li a:hover:before {
    transform: translateY(-10px);
  }
  .medical ul li a:hover:after {
    transform: translateY(-10px);
  }
}
.about {
  padding: 3rem 1rem;
  margin-top: 0 !important;
  background-color: var(--clr_sub02);
}
.about .tit_02 {
  margin: 0 0 4rem;
  opacity: 0;
}
.about .tit_02:before {
  background-image: url(../img/icon_about_h2.svg);
}
.about .tit_02.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}
.about .wrap .tit_03 {
  color: var(--clr_txt);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  background: unset;
  border-bottom: 0.1rem dotted var(--clr_txt);
  border-radius: 0;
  padding: 0 0 1.5rem;
}
.about .wrap .about_box {
  padding: 2rem 1rem;
  background-color: var(--clr_white);
  box-shadow: 0 0.3rem 1.5rem var(--clr_sub05);
  border-radius: 2rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  opacity: 0;
}
.about .wrap .about_box .content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.about .wrap .about_box .content img {
  order: 1;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.about .wrap .about_box .content > div {
  width: 100%;
  order: 2;
}
.about .wrap .about_box .content ul {
  line-height: 1.4;
  margin: 1rem 0 2rem;
}
.about .wrap .about_box .content ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.about .wrap .about_box .content ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.about .wrap .about_box .content ul > li::before {
  font-family: "fontello";
  content: "\e807";
  color: var(--clr_main);
  position: absolute;
  left: 0;
}
.about .wrap .about_box .content p {
  margin: 0 0 2rem;
}
.about .wrap .about_box .content .btn_detail {
  width: 100%;
  margin: auto;
  background-color: var(--clr_main);
  color: var(--clr_white);
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.about .wrap .about_box .content .btn_detail:before {
  font-weight: normal;
}
.about .wrap .about_box .content .btn_detail:hover {
  background-color: var(--clr_white);
  color: var(--clr_main);
}
.about .wrap .about_box .content .flex2 a:not(:last-child) {
  margin-bottom: 1rem;
}
.about .wrap .about_box:not(:last-child) {
  margin-bottom: 3rem;
}
.about .wrap .about_box.trigger {
  animation: fade_up 0.4s ease-out 0.2s 1 normal forwards;
}

@media screen and (min-width: 48em), print {
  .about {
    padding: 6rem 0 3rem;
  }
  .about .wrap .tit_03 {
    font-size: 3.6rem;
    padding: 0 0 3rem;
  }
  .about .wrap .about_box {
    padding: 3.5rem 5.5rem 6rem;
    font-size: 1.8rem;
  }
  .about .wrap .about_box .content {
    justify-content: space-between;
    flex-direction: row;
    gap: 4.5rem;
  }
  .about .wrap .about_box .content img {
    order: unset;
    margin-bottom: 0;
  }
  .about .wrap .about_box .content > div {
    order: unset;
  }
  .about .wrap .about_box .content p {
    margin: 0 0 3.5rem;
  }
  .about .wrap .about_box .content .btn_detail {
    width: 32rem;
    padding: 1.2rem 0rem;
    letter-spacing: 0.1rem;
  }
  .about .wrap .about_box .content .btn_detail:hover {
    background-color: var(--clr_white);
    color: var(--clr_main);
  }
  .about .wrap .about_box .content .flex2 a:not(:last-child) {
    margin-bottom: 0;
  }
  .about .wrap .about_box:not(:last-child) {
    margin-bottom: 5rem;
  }
}
body:not(.index) .main {
  margin: 0 1rem 3rem;
  padding: 3rem 1rem;
  background-color: var(--clr_white);
  border-radius: 2rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
body:not(.index) .main .tit_02 {
  letter-spacing: 0;
}
body:not(.index) .main .tit_02:before {
  width: 4rem;
  height: 1.5rem;
  background-image: url("../img/a_feature_pikari_pink.svg");
  margin: 0 auto 0.5rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 0 1rem 8rem;
    padding: 4rem 9rem 9rem;
    border-radius: 3rem;
  }
  body:not(.index) .main .tit_02:before {
    width: 7rem;
    height: 2.4rem;
    margin: 0 auto 1rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.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.6rem;
    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 {
  border: 4px solid 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_dev .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery.gallery_dev .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%;
  }
}
.btn_rsv {
  display: block;
  width: 50%;
  margin: auto;
}

.flow {
  counter-reset: number 0;
}
.flow li {
  margin: 0;
  background-color: var(--clr_sub10);
  border-radius: 1.5rem;
  padding: 2rem 1rem 1rem;
  position: relative;
}
.flow li .tit {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
  padding-left: 4.5rem;
  margin: 0 0 2rem;
}
.flow li .tit:before {
  content: "0" counter(number) "";
  counter-increment: number 1;
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--clr_main);
  border-radius: 50%;
  color: var(--clr_white);
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1.8rem;
  text-align: center;
  line-height: 3.4rem;
  letter-spacing: 0.2rem;
  margin-right: 1.7rem;
  position: absolute;
  left: 0;
}
.flow li:not(:last-child) {
  margin: 0 0 6rem;
}
@media screen and (min-width: 48em), print {
  .flow li:not(:last-child) {
    margin: 0 0 10rem;
  }
}
.flow li: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_main);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

.txt_annot {
  text-align: left;
}

@media screen and (min-width: 48em), print {
  .btn_rsv {
    display: inline-block;
    width: auto;
    margin: 0;
  }
  .flow li {
    padding: 3rem 2rem 2rem;
  }
  .flow li .tit {
    font-size: 2.4rem;
    padding-left: 8rem;
    margin: 0 0 2rem;
  }
  .flow li .tit:before {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
    line-height: 5.2rem;
    margin-right: 1.7rem;
    left: 1rem;
  }
  .flow li p {
    padding-left: 8rem;
  }
}
.txt_annot {
  text-align: center;
}

.access .main {
  padding: 3rem 1rem 1rem !important;
}
.access .main .lst_dl01 .tel a:before {
  display: none;
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main {
    padding: 4rem 9rem 9rem !important;
  }
  .access .main .tbl_time {
    font-size: 2rem;
  }
  .access .main .lst_dl01 dd {
    text-align: left;
  }
  .access .main .lst_dl01 .tel:before {
    display: none;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}/*# sourceMappingURL=style.css.map */