@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-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);
  transform: translate3d(0, 0, 0);
}

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

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

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

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

/* 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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

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

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.img_c {
  margin: 1rem auto;
}

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

img.tate {
  max-width: 60%;
  margin: 0 auto 2rem;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  .img_r.tate {
    max-width: 30% !important;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.img_wrap img {
  width: 80%;
  margin: 0 auto 2rem;
}
.img_wrap.pay .credit {
  width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_wrap {
    margin: 4rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 3rem;
  }
  .img_wrap img {
    width: 48%;
    margin: 0;
  }
  .img_wrap.pay {
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .img_wrap.pay .credit,
  .img_wrap.pay img {
    width: 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.2rem;
  border-bottom: 1px solid #CA9239;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
  font-weight: 500;
}
.tbl_time tr th {
  font-weight: 500;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  background: #CA9239;
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 33%;
}
.tbl_time tr th[scope=row] {
  border-bottom: 1px solid #CA9239;
  background: #fff;
  font-size: 1.6rem;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid #CA9239;
  line-height: 1;
  background: #fff;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 35%;
  }
  .tbl_time tr th[scope=col]:last-child {
    padding: 0.4rem 1.5rem 0.4rem 0;
    width: 13%;
  }
  .tbl_time tr th[scope=row] {
    font-size: 1.8rem;
  }
  .tbl_time tr td {
    padding: 1.1rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tr td:last-child {
    padding: 0.4rem 2rem 0.4rem 0;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 10rem;
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-weight: normal;
}
.tit_01 span {
  display: block;
}

.tit_02 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 3rem;
  padding: 4.3rem 0 0;
  color: #9E292D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/tit_02.png) no-repeat center top/5rem auto;
}
.tit_02::before, .tit_02::after {
  content: "";
  display: block;
  min-width: 10%;
  width: 10%;
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #CFA44C;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0.5rem 1.3rem;
  background: #707070;
  font-weight: 500;
  color: #fff;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 2rem;
  padding: 0.2rem 1rem 0.7rem 3.3rem;
  color: #C11A20;
  background: url(../img/tit_04.svg) no-repeat left top/2.5rem auto;
  border-bottom: 1px solid #C11A20;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 2rem;
  padding: 0 0.6rem 0.5rem 1.6rem;
  color: #9E292D;
  border-bottom: 1px dashed #9E292D;
}

.tit_06 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 2rem;
  padding: 0 0.6rem 0.5rem 1.6rem;
  color: #BC8513;
  border-bottom: 1px solid #BC8513;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 12rem;
    background: url(../img/tit_01.jpg) no-repeat center center/200rem auto;
    font-size: 3.2rem;
  }
  .tit_01 span {
    display: inline;
  }
  .tit_02 {
    font-size: 3rem;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
    margin: 0 auto 4rem;
    padding: 8.7rem 0 0;
    gap: 0 3rem;
    background: url(../img/tit_02.png) no-repeat center top/10rem auto;
  }
  .tit_02::before, .tit_02::after {
    max-width: 40%;
  }
  .tit_03 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding: 0.8rem 2rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 0.2rem 0.7rem 0.8rem 5rem;
    background: url(../img/tit_04.svg) no-repeat left top/3.6rem auto;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 3rem;
    padding: 0 0.8rem 0.7rem 1.8rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 3rem;
    padding: 0 0.8rem 0.7rem 1.8rem;
  }
}
.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: #C11A20;
  font-size: 60%;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.lst_ul.kome > li::before {
  content: "※";
  color: #333;
}

.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: #333;
}

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

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}
.lst_flow {
  counter-reset: number 0;
}
.lst_flow li {
  background: #FFF9EE;
  border-radius: 1rem;
  padding: 2rem 1rem 2rem 3rem;
  margin: 0 0 0 2.5rem;
  position: relative;
}
.lst_flow li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  background: #707070;
  border-radius: 50%;
  color: #fff;
  width: 5rem;
  height: 5rem;
  padding: 0.8rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.5rem;
  font-weight: 500;
  position: absolute;
  top: 1rem;
  left: -2.5rem;
}
.lst_flow li:not(:last-of-type) {
  margin: 0 0 3rem 2.5rem;
}
.lst_flow li:not(:last-of-type)::after {
  font-family: "fontello";
  content: "\e80c";
  font-size: 4rem;
  color: #CFA44C;
  line-height: 1;
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lst_flow li .tit {
  color: #C11A20;
  border-bottom: 2px solid #C11A20;
  font-weight: 500;
}
.lst_flow li .tit::before {
  content: "STEP";
  color: #fff;
  position: absolute;
  left: -1.5rem;
  top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 48em), print {
  .lst_flow {
    width: 80%;
    margin: auto;
  }
  .lst_flow li {
    border-radius: 1.5rem;
    padding: 3rem 3rem 3rem 6rem;
    margin: 0 0 0 5rem;
  }
  .lst_flow li::before {
    width: 10.1rem;
    height: 10.1rem;
    font-size: 4.3rem;
    left: -5rem;
    top: 2rem;
    padding: 1.7rem;
  }
  .lst_flow li:not(:last-of-type) {
    margin: 0 0 6rem 5rem;
  }
  .lst_flow li:not(:last-of-type)::after {
    font-size: 6rem;
    bottom: -6rem;
  }
  .lst_flow li .tit {
    font-size: 2.2rem;
  }
  .lst_flow li .tit::before {
    font-size: 1.8rem;
    left: -2.2rem;
    top: 3.5rem;
  }
}

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

.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex2.lst_ul > li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .flex2.gap {
    gap: 4rem;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0 0.4rem;
}
.tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.box_yellow,
.box_pink {
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_yellow,
  .box_pink {
    padding: 3rem;
  }
}

.box_yellow {
  background: #FFF9EE;
}

.box_pink {
  background: #FFF2F2;
}

.btn_rsv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: #707070;
  color: #fff;
  border: 3px solid #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e80e";
}
.btn_rsv span {
  display: block;
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 12rem;
    height: 11rem;
    font-size: 2rem;
  }
  .btn_rsv::before {
    font-size: 3rem;
  }
  .btn_rsv span {
    font-size: 1.2rem;
  }
}

.btn_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: #07B53B;
  color: #fff;
  border: 3px solid #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
}
.btn_line::before {
  font-family: "fontello";
  content: "\e828";
}
.btn_line span {
  display: block;
}
@media screen and (min-width: 48em), print {
  .btn_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 12rem;
    height: 11rem;
    font-size: 2rem;
  }
  .btn_line::before {
    font-size: 3rem;
  }
  .btn_line span {
    font-size: 1.2rem;
  }
}

.btn_gray {
  display: inline-block;
  padding: 0.4rem 3rem;
  background: #707070;
  color: #fff;
  text-decoration: none !important;
  font-weight: 500;
}
.btn_gray::before {
  font-family: "fontello";
  content: "\e80a";
  margin: 0 0.3rem 0 0;
}
@media screen and (min-width: 48em), print {
  .btn_gray {
    padding: 0.4rem 4rem;
  }
  .btn_gray:is(:hover, :focus-visible) {
    background: #B7B7B7;
  }
}

.linkout {
  display: inline-block;
  color: #333;
  text-decoration: none !important;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 1rem;
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #fff;
  background: #9E292D;
  z-index: 5;
}
.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;
    border: 2px solid #9E292D;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: #9E292D;
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: #9E292D;
}
.slick-dots li button:is(:hover, :focus-visible) {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.youtube_modal {
  text-align: center;
  position: relative;
}
.youtube_modal a {
  display: inline-block;
}
.youtube_modal a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 57px;
  background-image: url("../img/icon_youtube.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.youtube_modal a img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 3.125vw;
}

body {
  background: #fff;
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(51, 51, 51, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.6rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .lower_n {
  display: none;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: -1px;
  left: 0;
  z-index: 100;
  background: url(../img/header_bg.jpg) no-repeat center/200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  margin: 6.6rem 0 0;
}
.header > .wrap .headR ul .need_rsv {
  font-size: 1.4rem;
  color: #fff;
  background: #C11A20;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 0;
  border-radius: 100vh;
}
.header > .wrap .headR ul .acs {
  display: none;
}
.header .side_button {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    background: url(../img/header_bg.jpg) no-repeat top center/200rem 10rem;
  }
  .header > .wrap {
    padding: 0.8rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header > .wrap .logo {
    width: 50%;
    height: 6rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    width: 60%;
    margin: 0;
  }
  .header > .wrap .headR ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header > .wrap .headR ul li.need_rsv {
    font-size: 2rem;
    border: none;
    padding: 0.5rem 2rem;
  }
  .header > .wrap .headR ul li.acs {
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    display: block;
  }
  .header > .wrap .headR ul li.acs > span {
    display: block;
  }
  .header > .wrap .headR ul li.acs > span .red {
    font-size: 2rem;
    color: #C11A20;
  }
  .header > .wrap .headR ul li.acs > span .red.one {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .header .side_button {
    display: block;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 200;
  }
  .header .side_button li a {
    border-radius: 1rem 0 0 1rem;
  }
  .header .side_button li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: -2px;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu span {
  width: 2.5rem;
  height: 3px;
  background: #707070;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100vh;
}
#nav #sp_menu span:nth-of-type(1) {
  top: 1.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#nav #sp_menu span:nth-of-type(2) {
  top: 2.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#nav #sp_menu span:nth-of-type(3) {
  top: 3.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#nav #sp_menu.close {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
#nav #sp_menu.close span:nth-of-type(1) {
  -webkit-transform: translate(-1.2rem, 0.9rem) rotate(-45deg);
          transform: translate(-1.2rem, 0.9rem) rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 2rem;
}
#nav #sp_menu.close span:nth-of-type(2) {
  display: none;
}
#nav #sp_menu.close span:nth-of-type(3) {
  -webkit-transform: translate(-1.2rem, -0.9rem) rotate(45deg);
          transform: translate(-1.2rem, -0.9rem) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 2rem;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(var(--vh, 1vh) * 100 - 8rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid #9E292D;
  border-bottom: 1px solid #9E292D;
}
#nav .gnav_subnav .gnav > li:not(:last-child)::after {
  font-family: "fontello";
  content: "\e805";
  text-align: center;
  display: block;
  color: #CFA44C;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
}
#nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
  content: attr(data-txt);
  display: block;
  color: #CFA44C;
  font-size: 1rem;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: #9E292D;
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #FFFCF5;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 50%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #333;
  text-align: left;
  font-size: 1.2rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  font-family: "fontello";
  content: "\e807";
  margin: 0 0.5rem 0 0;
  font-size: 120%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: #fff;
  background: #BC8513;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(112, 112, 112, 0.7);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  #nav.change_color {
    background: rgba(255, 255, 255, 0.7);
  }
  #nav.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
    background: none;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child)::after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    font-size: 1.2rem;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: #9E292D;
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    display: block;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 100%;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
    margin: 0 1rem 0 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    color: #fff;
    background: #BC8513;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.gmap {
  height: 100vw;
}

.overview {
  padding: 4rem 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url(../img/overview_bg.jpg) no-repeat center/cover;
}
.overview > .wrap {
  background: rgba(255, 255, 255, 0.5);
  padding: 3rem 1rem;
}
.overview > .wrap .clinic_name {
  width: 100%;
  margin: 0 0 2rem;
}
.overview > .wrap .clinic_name img {
  max-width: 90%;
  margin: auto;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 30%;
  padding: 0.5rem;
  color: #9E292D;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}
.overview > .wrap .overviewL .gaiyo dt::before {
  font-family: "fontello";
  content: "\f006";
  font-size: 80%;
  margin: 0.25rem 0 0;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 70%;
  padding: 0.5rem;
  font-weight: 500;
}
.overview > .wrap .overviewL .gaiyo dd .tel {
  font-size: 120%;
}
.overview > .wrap .overviewL .gaiyo dd .dr_qualification {
  font-size: 80%;
  line-height: 1.4;
  display: inline-block;
}
.overview > .wrap .overviewR {
  margin: 2rem 0;
}

@media screen and (min-width: 48em), print {
  .gmap {
    height: 50rem;
  }
  .overview {
    padding: 6rem 0 7rem;
    font-size: 1.6rem;
    background: url(../img/overview_bg.jpg) no-repeat center/200rem auto;
  }
  .overview > .wrap {
    padding: 2.5rem 11rem 5.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .clinic_name {
    margin: 0 0 6rem;
  }
  .overview > .wrap .clinic_name img {
    max-width: 51.6rem;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 46%;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 26%;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 74%;
  }
  .overview > .wrap .overviewL .gaiyo dd .dr_qualification {
    font-size: 1.3rem;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
          box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
  border: 1px solid #fff;
}
#tel_up ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
#tel_up ul li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li .btn_rsv {
  height: 100%;
  border: none;
  border-right: 1px solid #fff;
}
#tel_up ul li .btn_line {
  height: 100%;
  border: none;
}
#tel_up ul li .tel_ft {
  height: 100%;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0 0.4rem;
  color: #9E292D;
  font-weight: 500;
}
#tel_up ul li .tel_ft::before {
  content: "Tel.";
  font-size: 1rem;
}
#tel_up #pageup {
  position: absolute;
  bottom: 5rem;
  right: 1rem;
  border-radius: 50%;
  display: block;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: #4C4949;
  border: 2px solid #4C4949;
  overflow: hidden;
  z-index: 101;
  color: #fff;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 5rem;
    height: 5rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 5rem;
    height: 5rem;
    font-size: 2.3rem;
    line-height: 0.5;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    background: #fff;
    color: #4C4949;
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: #707070;
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 500;
  font-size: 1.2rem;
  border-top: 1px solid #fff;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 1.5rem 0 0;
  }
  .footer .copy {
    margin: 1rem 0 0;
    padding: 1rem 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 1rem;
    padding: 0 2rem;
    color: #fff;
    -webkit-text-size-adjust: none;
    border-right: 1px solid #fff;
  }
  .footer ul li:first-of-type {
    border-left: 1px solid #fff;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
}
body:is(.index) .keyvsl {
  display: block;
}

.keyvsl {
  display: none;
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl_movie {
  max-width: 100%;
  height: 20rem;
  overflow: hidden;
}
.keyvsl #keyvsl_movie video {
  display: block;
  aspect-ratio: 1920/1080;
  width: 110%;
  margin: 0 auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyvsl #keyvsl_movie video, .keyvsl #keyvsl_movie .video-container {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 24rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-animation: fadein 2s forwards normal;
          animation: fadein 2s forwards normal;
}
.keyvsl #keyvsl .slick-list div img {
  height: 24rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  position: absolute;
  bottom: -12rem;
  left: 0;
  right: 0;
  padding: 0 1rem;
}
.keyvsl > .wrap .catch {
  color: #C11A20;
  margin: 0 0 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-shadow: 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff;
}
.keyvsl > .wrap caption {
  display: none;
}

@media screen and (min-width: 48em), print {
  .keyvsl::after {
    content: "";
    width: 100%;
    height: 15rem;
    position: absolute;
    bottom: -15rem;
    left: 0;
    right: 0;
    background: url(../img/header_bg.jpg) no-repeat center top/200rem auto;
  }
  .keyvsl #keyvsl_movie {
    height: calc(100vh - 10rem);
  }
  .keyvsl #keyvsl_movie video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .keyvsl #keyvsl {
    height: 78rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 78rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .keyvsl > .wrap .catch {
    font-size: 3.2rem;
    padding: 0 0 0 4rem;
    text-shadow: 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 2rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff, 0 0 1rem #fff;
  }
  .keyvsl > .wrap .timetable {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.4rem;
    width: 48rem;
    padding: 2rem;
  }
}
.tit_02.top {
  margin: 0 auto 6rem;
  display: block;
}
.tit_02.top::before {
  display: none;
}
.tit_02.top::after {
  content: attr(data-txt);
  display: block;
  color: #CFA44C;
  font-size: 1rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background: none;
}
.tit_02.top span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tit_02.top span::before, .tit_02.top span::after {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #CFA44C;
}
@media screen and (min-width: 48em), print {
  .tit_02.top {
    margin: 0 auto 10rem;
  }
  .tit_02.top::after {
    font-size: 1.4rem;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
  }
  .tit_02.top span::before, .tit_02.top span::after {
    width: 38%;
  }
}

.info {
  margin: 18rem 0 0;
  padding: 4rem 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#CA9239), color-stop(57%, #CA9239), color-stop(57%, #fff));
  background: linear-gradient(to bottom, #CA9239 0%, #CA9239 57%, #fff 57%);
}
.info .wrap {
  background: #fff;
  border: 2px solid #CA9239;
  padding: 1.5rem 0;
  opacity: 0;
}
.info .wrap.trigger {
  -webkit-animation: fade_up 1s ease forwards;
          animation: fade_up 1s ease forwards;
}
.info .wrap .tit_02 {
  background: none;
  padding: 0;
  margin: 0 0 4rem;
}
.info .wrap .tit_02 span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.info .wrap .tit_02 span::before, .info .wrap .tit_02 span::after {
  display: none;
}
.info .wrap dl {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding: 1rem;
  font-weight: 500;
}
.info .wrap dl dt {
  margin: 0 0 0.6rem;
  padding: 0 0 0 1.5rem;
  color: #CFA44C;
  cursor: pointer;
  position: relative;
}
.info .wrap dl dt::before {
  font-family: "fontello";
  content: "\e80c";
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.info .wrap dl dt.close::before {
  font-family: "fontello";
  content: "\e80b";
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0 1.5rem;
  border-top: 1px dashed #707070;
}
.info .wrap dl dt:not(:first-of-type)::before {
  top: 1.7rem;
}
.info .wrap dl dd {
  margin: 0 0 1.6rem;
  padding: 0 0 0 1.5rem;
}
.info .wrap dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 7rem 0 0;
    padding: 6rem 0 11rem;
  }
  .info .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 1rem 1rem 0;
  }
  .info .wrap .tit_02 {
    width: 29rem;
    margin: 0;
    padding: 0 0 2.5rem;
  }
  .info .wrap dl {
    max-height: 50.2rem;
    min-height: 20rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 5rem 0 0;
  }
  .info .wrap dl dt {
    margin: 0 0 1rem;
    padding: 0 0 0 3rem;
    font-size: 1.8rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .info .wrap dl dt::before {
    margin-right: 1rem;
    left: 1rem;
  }
  .info .wrap dl dt:not(:first-of-type) {
    margin: 1.6rem 0 0.6rem;
    padding: 1.6rem 0 0 3rem;
  }
  .info .wrap dl dt:hover {
    color: #9E292D;
  }
  .info .wrap dl dd {
    margin: 0 0 1.6rem;
    padding: 0 0 0 3rem;
  }
}
.feature {
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}
.feature ol {
  counter-reset: number 0;
  position: relative;
}
.feature ol::before {
  content: "";
  width: 106%;
  height: 100%;
  position: absolute;
  top: 24rem;
  left: 0;
  background: url(../img/index_feature_bg.png) no-repeat top center/100% auto;
}
.feature ol li {
  padding: 5.5rem 0 0;
  position: relative;
}
.feature ol li:not(:last-of-type) {
  margin: 0 0 3rem;
}
.feature ol li::before {
  content: "";
  width: calc(100% + 1rem);
  height: 13rem;
  background: #FFF9EE;
  position: absolute;
  top: 0;
  left: -1rem;
}
.feature ol li .wrap {
  padding: 14rem 0 0;
  position: relative;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 90% auto;
}
.feature ol li .wrap::before {
  counter-increment: number 1;
  content: "." counter(number, decimal-leading-zero);
  color: #CFA44C;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
  border: 1px solid #CFA44C;
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 3rem;
  top: -4.5rem;
  font-weight: normal;
}
.feature ol li .wrap::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 8.5rem;
  background: #CFA44C;
  top: -0.7rem;
  left: 4rem;
}
.feature ol li .wrap.trigger {
  -webkit-animation: fadein 1s ease forwards;
          animation: fadein 1s ease forwards;
}
.feature ol li .wrap a {
  display: block;
  text-decoration: none !important;
}
.feature ol li .wrap .tit {
  position: relative;
  padding: 0 1rem;
  color: #C11A20;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
}
.feature ol li .wrap .tit::after {
  content: "";
  width: calc(100% + 4rem);
  height: 1px;
  background: #9E292D;
  display: block;
  position: absolute;
  bottom: -0.5rem;
  left: -2rem;
}
.feature ol li .wrap .tit .txt_small {
  font-size: 1rem;
}
.feature ol li .wrap .tit.trigger {
  opacity: 1;
  -webkit-animation: cutin_right 1s ease forwards;
          animation: cutin_right 1s ease forwards;
}
.feature ol li .wrap p {
  opacity: 0;
  padding: 0 1rem;
}
.feature ol li .wrap .more {
  display: block;
  font-size: 1.4rem;
  padding: 0 1rem;
  color: #C11A20;
  opacity: 0;
}
.feature ol li .wrap .more::after {
  content: "";
  width: 3rem;
  height: 1rem;
  margin: 0 0 0 0.5rem;
  background: url(../img/index_feature_arrow.svg) no-repeat center/100% auto;
  display: inline-block;
}
.feature ol li .wrap p.trigger, .feature ol li .wrap .more.trigger {
  -webkit-animation: fadein 1s ease forwards;
          animation: fadein 1s ease forwards;
}
.feature ol li:nth-child(2n)::before {
  left: auto;
  right: -1rem;
}
.feature ol li:nth-child(2n) .wrap::before {
  right: 3rem;
  left: auto;
}
.feature ol li:nth-child(2n) .wrap::after {
  right: 0;
  left: auto;
}
.feature ol li:nth-child(2n) .wrap .tit.trigger {
  -webkit-animation: cutin_left 1s ease forwards;
          animation: cutin_left 1s ease forwards;
}
.feature ol li.feat1 .wrap {
  background-image: url(../img/index_features_01.jpg);
}
.feature ol li.feat2 .wrap {
  background-image: url(../img/index_features_02.jpg);
}
.feature ol li.feat3 .wrap {
  background-image: url(../img/index_features_03.jpg);
}
.feature ol li.feat4 .wrap {
  background-image: url(../img/index_features_04.jpg);
}
.feature ol li.feat5 .wrap {
  background-image: url(../img/index_features_05.jpg);
}
.feature ol li.feat6 .wrap {
  background-image: url(../img/index_features_06.jpg);
}
.feature ol li.feat7 .wrap {
  background-image: url(../img/index_features_07.jpg);
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 0 0 3rem;
  }
  .feature ol {
    margin: 12rem 0 0;
  }
  .feature ol::before {
    width: 120rem;
    height: 150rem;
    top: 3.5rem;
    left: calc((100% - 120rem) / 2);
    background: url(../img/index_feature_bg.png) no-repeat top left 33rem/49rem auto;
  }
  .feature ol li {
    padding: 12.3rem 0 0;
  }
  .feature ol li:not(:last-of-type) {
    margin: 0;
  }
  .feature ol li::before {
    min-width: 57.3rem;
    width: calc(57.3rem + (100% - 120rem) / 2);
    height: 31.3rem;
    padding: 0 0 0 calc((100% - 120rem) / 2);
    left: 0;
  }
  .feature ol li .wrap {
    padding: 2rem 0 2rem 52rem;
    min-height: 24rem;
    background-size: 52rem auto;
    background-position: top left;
  }
  .feature ol li .wrap::before {
    width: 13.3rem;
    height: 13.3rem;
    font-size: 5.7rem;
    top: -9rem;
    left: 37rem;
  }
  .feature ol li .wrap::after {
    width: 19rem;
    left: 38.3rem;
    top: -1.3rem;
  }
  .feature ol li .wrap a:hover .tit {
    color: #CFA44C;
  }
  .feature ol li .wrap a:hover .more {
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
  .feature ol li .wrap .tit {
    margin: 0 0 0 10rem;
    padding: 0;
    font-size: 3rem;
    width: 58rem;
  }
  .feature ol li .wrap .tit::after {
    width: calc(100% + 10rem);
    left: -10rem;
    bottom: -1rem;
  }
  .feature ol li .wrap .tit .txt_small {
    font-size: 1.8rem;
  }
  .feature ol li .wrap p {
    margin: 2rem 0 1rem 10rem;
    padding: 0;
  }
  .feature ol li .wrap .more {
    font-size: 1.8rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin: 0 0 0 10rem;
    padding: 0;
  }
  .feature ol li:nth-of-type(2n) .wrap {
    background-position: top right;
    padding: 3rem 52rem 2rem 0;
  }
  .feature ol li:nth-of-type(2n) .wrap::before {
    right: 46.7rem;
    left: auto;
  }
  .feature ol li:nth-of-type(2n) .wrap::after {
    right: 39.5rem;
    left: auto;
  }
  .feature ol li:nth-of-type(2n) .wrap .tit {
    margin: 0 8rem 0 2rem;
  }
  .feature ol li:nth-of-type(2n) .wrap .tit::after {
    left: -2rem;
  }
  .feature ol li:nth-of-type(2n) .wrap p {
    margin: 2rem 8rem 1rem 2rem;
  }
  .feature ol li:nth-of-type(2n) .wrap .more {
    margin: 0 8rem 0 2rem;
  }
}
.tre {
  padding: 0 0 6rem;
}
.tre .tit_02 {
  padding: 4.3rem 1rem 0;
}
.tre .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3.5rem;
  gap: 2rem 4rem;
  position: relative;
}
.tre .subnav::before {
  content: "";
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3rem, #fff), color-stop(3rem, #f9f1e0), color-stop(8rem, #f9f1e0), color-stop(8rem, #fff), color-stop(20rem, #fff), color-stop(20rem, #f9f1e0), color-stop(25rem, #f9f1e0), color-stop(25rem, #fff), color-stop(38rem, #fff), color-stop(38rem, #f9f1e0), color-stop(43rem, #f9f1e0), color-stop(43rem, #fff), color-stop(55rem, #fff), color-stop(55rem, #f9f1e0), color-stop(60rem, #f9f1e0), color-stop(60rem, #fff));
  background: linear-gradient(to bottom, #fff 3rem, #f9f1e0 3rem, #f9f1e0 8rem, #fff 8rem, #fff 20rem, #f9f1e0 20rem, #f9f1e0 25rem, #fff 25rem, #fff 38rem, #f9f1e0 38rem, #f9f1e0 43rem, #fff 43rem, #fff 55rem, #f9f1e0 55rem, #f9f1e0 60rem, #fff 60rem);
  position: absolute;
  top: 0;
  left: 0;
}
.tre .subnav.trigger li:nth-child(1) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.tre .subnav.trigger li:nth-child(2) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.tre .subnav.trigger li:nth-child(3) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.tre .subnav.trigger li:nth-child(4) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.tre .subnav.trigger li:nth-child(5) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.tre .subnav.trigger li:nth-child(6) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.tre .subnav.trigger li:nth-child(7) {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.tre .subnav li {
  opacity: 0;
}
.tre .subnav li a {
  display: block;
  text-align: center;
  position: relative;
  font-weight: 500;
  text-decoration: none;
}
.tre .subnav li a::before {
  content: "";
  display: block;
  margin: 0 0 3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 2px solid #CFA44C;
}
.tre .subnav li a::after {
  content: "";
  width: 14rem;
  height: 10rem;
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tre .subnav li a.ent::before {
  background: url(../img/index_treat01.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat01.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.ent::after {
  background: url(../img/index_treat01_eng.png) no-repeat center bottom/100% auto;
}
.tre .subnav li a.kids::before {
  background: url(../img/index_treat02.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat02.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.kids::after {
  background: url(../img/index_treat02_eng.png) no-repeat center bottom/100% auto;
}
.tre .subnav li a.allergy::before {
  background: url(../img/index_treat03.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat03.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.allergy::after {
  background: url(../img/index_treat03_eng.png) no-repeat center bottom/100% auto;
}
.tre .subnav li a.otophone::before {
  background: url(../img/index_treat04.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat04.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.otophone::after {
  background: url(../img/index_treat04_eng.png) no-repeat center bottom/100% auto;
}
.tre .subnav li a.dizziness::before {
  background: url(../img/index_treat05.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat05.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.dizziness::after {
  background: url(../img/index_treat05_eng.png) no-repeat center bottom/100% auto;
}
.tre .subnav li a.earnoise::before {
  background: url(../img/index_treat06.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat06.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.earnoise::after {
  background: url(../img/index_treat06_eng.png) no-repeat center bottom/100% auto;
}
.tre .subnav li a.vaccination::before {
  background: url(../img/index_treat07.svg) no-repeat center/60%, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6ecd3));
  background: url(../img/index_treat07.svg) no-repeat center/60%, linear-gradient(#fff 0%, #f6ecd3 100%);
}
.tre .subnav li a.vaccination::after {
  background: url(../img/index_treat07_eng.png) no-repeat center bottom/100% auto;
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 0 0 13rem;
  }
  .tre .tit_02 {
    padding: 8.7rem 0 0;
  }
  .tre .subnav {
    gap: 7rem 6.5rem;
    padding: 0 calc((100% - 113.5rem) / 2);
  }
  .tre .subnav::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(4rem, #fff), color-stop(4rem, #f9f1e0), color-stop(10.6rem, #f9f1e0), color-stop(10.6rem, #fff), color-stop(31rem, #fff), color-stop(31rem, #f9f1e0), color-stop(37.6rem, #f9f1e0), color-stop(37.6rem, #fff));
    background: linear-gradient(to bottom, #fff 4rem, #f9f1e0 4rem, #f9f1e0 10.6rem, #fff 10.6rem, #fff 31rem, #f9f1e0 31rem, #f9f1e0 37.6rem, #fff 37.6rem);
  }
  .tre .subnav li a {
    font-size: 1.8rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .tre .subnav li a::before {
    width: 13.5rem;
    height: 13.5rem;
    background-size: 8rem;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  .tre .subnav li a::after {
    width: 17rem;
    bottom: 4.5rem;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  .tre .subnav li a:is(:hover, :focus-visible) {
    color: #9E292D;
  }
  .tre .subnav li a:is(:hover, :focus-visible)::before {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  .tre .subnav li a:is(:hover, :focus-visible)::after {
    -webkit-transform: translateX(-50%) rotateY(360deg);
            transform: translateX(-50%) rotateY(360deg);
  }
}
body:not(.index) .sub_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 2rem 1rem 6rem;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
body:not(.index) .main a:not([class*=btn]) {
  color: #C11A20;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 120rem;
    margin: 4rem auto 10rem;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: "＞";
  margin: 0 0.6rem;
}

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

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #333;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #FFF9EE;
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid #9E292D;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 48em), print {
  .device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
  .device li {
    width: 46%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
body.visitor .btn_wrap .btn_rsv,
body.visitor .btn_wrap .btn_line {
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  body.visitor .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 3rem 0 0;
  }
  body.visitor .btn_wrap .btn_rsv,
  body.visitor .btn_wrap .btn_line {
    border-radius: 1rem;
  }
  body.visitor .first .box_yellow {
    width: 57.5%;
  }
}
.lst_flow dd {
  margin: 0;
  position: relative;
}
.lst_flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_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 #333;
  border-right: 2rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid transparent;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow dd:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow dd:not(:last-child)::after {
    bottom: -7rem;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 4rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .tbl_time caption {
    font-size: 1.6rem;
  }
  body.access .main .tbl_time tr th[scope=row] {
    font-size: 2.2rem;
  }
  body.access .main .tbl_time tr td {
    padding: 3rem 0;
  }
  body.access .main .gmap {
    height: 50rem;
  }
}
/*# sourceMappingURL=style.css.map */