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

.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: 0 0 1em;
}
p:last-child {
  margin: 0;
}

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

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

:root {
  --clr_txt: #1A1A1A;
  --rgb_txt: 26, 26, 26;
  --clr_brown_dark: #716031;
  --rgb_brown_dark: 113, 96, 49;
  --clr_brown_dark2: #A79872;
  --rgb_brown_dark2: 167, 152, 114;
  --clr_brown_dark3: #B09F71;
  --rgb_brown_dark3: 176, 159, 113;
  --clr_brown: #978145;
  --rgb_brown: 151, 129, 69;
  --clr_brown_light: #BEB59B;
  --rgb_brown_light: 190, 181, 155;
  --clr_brown_light2: #DECDA1;
  --rgb_brown_light2: 222, 205, 161;
  --clr_brown_light3: #D9D0B8;
  --rgb_brown_light3: 217, 208, 184;
  --clr_brown_light4: #EBE3CF;
  --rgb_brown_light4: 235, 227, 207;
  --clr_brown_light5: #EBE4D3;
  --rgb_brown_light5: 235, 228, 211;
  --clr_brown_light6: #ECE1C5;
  --rgb_brown_light6: 236, 225, 197;
  --clr_brown_light7: #F6F2E7;
  --rgb_brown_light7: 246, 242, 231;
  --clr_brown_light8: #FBF9F3;
  --rgb_brown_light8: 251, 249, 243;
  --clr_brown_light9: #E1D5B8;
  --rgb_brown_light9: 225, 213, 184;
  --clr_brown_light10: #FEFBF5;
  --rgb_brown_light10: 254, 251, 245;
  --clr_brown_light11: #E6D7B1;
  --rgb_brown_light11: 230, 215, 177;
  --clr_brown_light12: #d5bb7a;
  --rgb_brown_light12: 213, 187, 122;
  --clr_green_dark: #6B8E77;
  --rgb_green_dark: 107, 142, 119;
  --clr_green: #CFE9D7;
  --rgb_green: 207, 233, 215;
  --clr_green_light: #D1ECDA;
  --rgb_green_light: 209, 236, 218;
  --clr_green_light2: #DBE9DF;
  --rgb_green_light2: 219, 233, 223;
  --clr_green_light3: #DCEFE2;
  --rgb_green_light3: 220, 239, 226;
  --clr_green_light4: #d0dba7;
  --rgb_green_light4: 208, 219, 167;
  --clr_blue_light: #d7e8ec;
  --rgb_blue_light: 215, 232, 236;
  --clr_gray_dark: #818181;
  --rgb_gray_dark: 129, 129, 129;
  --clr_gray_dark2: #AAAAAA;
  --rgb_gray_dark2: 170, 170, 170;
  --clr_gray_dark3: #686868;
  --rgb_gray_dark3: 104, 104, 104;
  --clr_gray_dark4: #545454;
  --rgb_gray_dark4: 84, 84, 84;
  --clr_gray_dark5: #414141;
  --rgb_gray_dark5: 65, 65, 65;
  --clr_gray: #D2D2D2;
  --rgb_gray: 210, 210, 210;
  --clr_gray_light: #E6E6E6;
  --rgb_gray_light: 230, 230, 230;
  --clr_pink: #DEC2CC;
  --rgb_pink: 222, 194, 204;
}

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

:root {
  --padding110: calc((100% - 110rem) / 2);
}

@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 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%);
  }
}
@-webkit-keyframes clip_center {
  0% {
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_center {
  0% {
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes clip_left {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_left {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes clip_right {
  0% {
    clip-path: polygon(100% 0, 100% 1%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_right {
  0% {
    clip-path: polygon(100% 0, 100% 1%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes clip_top {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clip_top {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

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

.img_c {
  margin: 1rem auto;
}

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

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

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

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_wrap {
    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;
    gap: 4rem 0;
  }
  .img_wrap img {
    margin: 0;
    max-width: 48%;
  }
  .img_wrap img:not(:last-of-type) {
    margin: 0;
  }
}
.sp_n {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt50 {
    margin-top: 10rem !important;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: 8rem;
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
  .mth2 {
    margin-top: 8rem !important;
  }
  .mth3 {
    margin-top: 6rem !important;
  }
  .mth4 {
    margin-top: 4rem !important;
  }
  .mth5 {
    margin-top: 4rem !important;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.2rem;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--clr_brown_light4);
  text-align: center;
  color: var(--clr_brown_dark);
}
.tbl_time tr th[scope=col]:first-child {
  width: 29%;
  border-left: 1px solid var(--clr_brown_light4);
}
.tbl_time tr th[scope=col]:not(:last-child) {
  border-right: 1px solid #fff;
}
.tbl_time tr th[scope=col]:last-child {
  border-right: 1px solid var(--clr_brown_light4);
}
.tbl_time tr th[scope=row] {
  border: 1px solid var(--clr_brown_light);
  border-top: none;
  background: #fff;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  color: var(--clr_brown_light);
  border: 1px solid var(--clr_brown_light);
  border-top: none;
  line-height: 1;
  background: #fff;
}
.tbl_time tr td.txt_clr {
  color: var(--clr_txt);
}
.tbl_time.night {
  margin: 1rem 0 0;
}
.tbl_time.night tr th[scope=col] {
  background: var(--clr_brown);
  color: #fff;
}
.tbl_time.night tr td:not(.txt_clr) {
  color: var(--clr_brown);
}

.caption {
  margin: 1rem 0 0 !important;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 24.5%;
  }
  .tbl_time tr td {
    padding: 1.2rem 0;
  }
  .tbl_time.night {
    margin: 1.5rem 0 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) repeat center center/auto 100%;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  padding: 1rem;
  text-align: center;
}

.tit_02 {
  font-size: 2rem;
  line-height: 1.4;
  color: var(--clr_brown_dark);
  text-align: center;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  font-weight: 500;
  margin: 0 0 2rem;
  min-height: 7rem;
  background: url(../img/tit_02.svg) no-repeat center/7rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
}

body.index .tit_02 {
  color: var(--clr_txt);
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../img/tit_02_top_light.svg) no-repeat center/7rem auto;
}
body.index .tit_02::before {
  content: attr(data-txt);
  color: var(--clr_brown);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  font-size: 3.2rem;
  line-height: 0.8;
  display: block;
}
body.index .tit_02.dark {
  background-image: url(../img/tit_02_top_dark.svg);
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--clr_gray_dark4);
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
  padding: 0 0 0.5rem 1rem;
  border-left: 1px solid var(--clr_gray_dark);
  border-bottom: 1px solid var(--clr_gray_dark);
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
  padding: 0.5rem 1rem;
  background: var(--clr_brown_light5);
  color: var(--clr_brown_dark);
}

.tit_05 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  padding: 0 0.5rem 0.5rem;
  border-bottom: 1px solid var(--clr_gray_dark2);
}

.tit_06 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--clr_gray_dark5);
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  padding: 0 0.5rem;
}
.tit_06::after {
  content: "";
  width: calc(100% + 1rem);
  height: 1px;
  background: linear-gradient(to right, var(--clr_gray_dark4) 1px, transparent 1px) repeat-x left center/4px 1px;
  display: block;
  margin: 0.5rem 0 0 -0.5rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 31.4rem;
    font-size: 4rem;
    padding: 12.3rem var(--padding110) 1rem;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin: 0 auto 4rem;
    min-height: 13.4rem;
    gap: 1.3rem;
    background: url(../img/tit_02.svg) no-repeat center/13.4rem auto;
  }
  body.index .tit_02 {
    margin: 0 0 2rem;
    font-size: 2.8rem;
    background: url(../img/tit_02_top_light.svg) no-repeat center/13.4rem auto;
  }
  body.index .tit_02::before {
    font-size: 7rem;
  }
  .tit_03 {
    font-size: 2.8rem;
    margin: 0 0 3rem;
    padding: 0 0 1rem 2rem;
  }
  .tit_04 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 0.7rem 1.5rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding: 0 1.5rem 0.7rem;
  }
  .tit_06 {
    font-size: 1.8rem;
    margin: 0 0 2rem;
    padding: 0 1.5rem;
  }
  .tit_06::after {
    margin: 0.7rem 0 0 -1.5rem;
    width: calc(100% + 3rem);
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--clr_brown);
  position: absolute;
  left: 0.5em;
  top: 0.6em;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

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

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.dt1em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt1em > dt {
  width: 1em;
}
.lst_dl01.dt1em > dd {
  width: calc(100% - 1em);
}
.lst_dl01.dt2em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt2em > dt {
  width: 2em;
}
.lst_dl01.dt2em > dd {
  width: calc(100% - 2em);
}
.lst_dl01.dt3em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt3em > dt {
  width: 3em;
}
.lst_dl01.dt3em > dd {
  width: calc(100% - 3em);
}
.lst_dl01.dt4em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt4em > dt {
  width: 4em;
}
.lst_dl01.dt4em > dd {
  width: calc(100% - 4em);
}
.lst_dl01.dt5em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt5em > dt {
  width: 5em;
}
.lst_dl01.dt5em > dd {
  width: calc(100% - 5em);
}
.lst_dl01.dt6em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt6em > dt {
  width: 6em;
}
.lst_dl01.dt6em > dd {
  width: calc(100% - 6em);
}
.lst_dl01.dt7em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt7em > dt {
  width: 7em;
}
.lst_dl01.dt7em > dd {
  width: calc(100% - 7em);
}
.lst_dl01.dt8em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt8em > dt {
  width: 8em;
}
.lst_dl01.dt8em > dd {
  width: calc(100% - 8em);
}
.lst_dl01.dt9em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt9em > dt {
  width: 9em;
}
.lst_dl01.dt9em > dd {
  width: calc(100% - 9em);
}
.lst_dl01.dt10em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01.dt10em > dt {
  width: 10em;
}
.lst_dl01.dt10em > dd {
  width: calc(100% - 10em);
}
.lst_dl01 .dt1em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt1em > dt {
  width: 1em;
}
.lst_dl01 .dt1em > dd {
  width: calc(100% - 1em);
}
.lst_dl01 .dt2em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt2em > dt {
  width: 2em;
}
.lst_dl01 .dt2em > dd {
  width: calc(100% - 2em);
}
.lst_dl01 .dt3em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt3em > dt {
  width: 3em;
}
.lst_dl01 .dt3em > dd {
  width: calc(100% - 3em);
}
.lst_dl01 .dt4em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt4em > dt {
  width: 4em;
}
.lst_dl01 .dt4em > dd {
  width: calc(100% - 4em);
}
.lst_dl01 .dt5em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt5em > dt {
  width: 5em;
}
.lst_dl01 .dt5em > dd {
  width: calc(100% - 5em);
}
.lst_dl01 .dt6em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt6em > dt {
  width: 6em;
}
.lst_dl01 .dt6em > dd {
  width: calc(100% - 6em);
}
.lst_dl01 .dt7em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt7em > dt {
  width: 7em;
}
.lst_dl01 .dt7em > dd {
  width: calc(100% - 7em);
}
.lst_dl01 .dt8em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt8em > dt {
  width: 8em;
}
.lst_dl01 .dt8em > dd {
  width: calc(100% - 8em);
}
.lst_dl01 .dt9em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt9em > dt {
  width: 9em;
}
.lst_dl01 .dt9em > dd {
  width: calc(100% - 9em);
}
.lst_dl01 .dt10em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lst_dl01 .dt10em > dt {
  width: 10em;
}
.lst_dl01 .dt10em > dd {
  width: calc(100% - 10em);
}
@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: -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_dl02 {
  border: 1px solid var(--clr_brown);
  border-top: none;
}
.lst_dl02 dt {
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
  border-top: 1px solid var(--clr_brown);
  border-bottom: 1px solid var(--clr_brown);
  background: var(--clr_brown_light4);
}
.lst_dl02 dd {
  padding: 1rem;
  background: #fff;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid var(--clr_brown);
  }
  .lst_dl02 dt, .lst_dl02 dd {
    width: 50%;
    padding: 1rem 2rem;
  }
  .lst_dl02 dt {
    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-top: none;
    border-right: 1px solid var(--clr_brown);
  }
  .lst_dl02 dt:last-of-type {
    border-bottom: none;
  }
  .lst_dl02 dd:not(:last-of-type) {
    border-bottom: 1px solid var(--clr_brown);
  }
  .lst_dl02.dt_small dt {
    width: 30%;
  }
  .lst_dl02.dt_small dd {
    width: 70%;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  background: #fff;
  border: 1px solid var(--clr_brown_light);
  padding: 1rem;
  position: relative;
}
.lst_flow > li .tit {
  font-size: 1.6rem;
  color: var(--clr_brown_dark);
  margin: 0 0 1rem;
}
.lst_flow > li .tit::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) ". ";
}
.lst_flow > li:not(:last-of-type) {
  margin: 0 0 5rem;
}
.lst_flow > li:not(:last-of-type)::after {
  font-family: "fontello";
  content: "\e815";
  font-size: 3.4rem;
  line-height: 1;
  color: var(--clr_brown_dark2);
  position: absolute;
  bottom: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-shadow: 0 1rem 0 var(--clr_brown_light4);
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 3rem;
  }
  .lst_flow > li .tit {
    font-size: 2.4rem;
  }
  .lst_flow > li:not(:last-of-type) {
    margin: 0 0 8.5rem;
  }
  .lst_flow > li:not(:last-of-type)::after {
    font-size: 6.4rem;
    text-shadow: 0 1.5rem 0 var(--clr_brown_light4);
    bottom: -7rem;
  }
}

.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_style {
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: center;
  gap: 0 0.4rem;
  color: var(--clr_brown);
  letter-spacing: 0.02em;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e80a";
  font-size: 85%;
}

.box_brown, .box_gray {
  padding: 1rem;
  margin: 1em 0;
}
@media screen and (min-width: 48em), print {
  .box_brown, .box_gray {
    padding: 3rem;
  }
}

.box_brown {
  background: var(--clr_brown_light4);
}

.box_gray {
  background: var(--clr_gray_light);
}

.btn_rsv {
  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;
  gap: 0 0.4rem;
  background: var(--clr_brown_dark);
  color: #fff;
  padding: 0.3rem 3rem;
  clip-path: polygon(1.5rem 0%, calc(100% - 1.5rem) 0%, 100% 50%, calc(100% - 1.5rem) 100%, 1.5rem 100%, 0% 50%);
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e80f";
  font-size: 160%;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    padding: 0.3rem 5rem;
    clip-path: polygon(2rem 0%, calc(100% - 2rem) 0%, 100% 50%, calc(100% - 2rem) 100%, 2rem 100%, 0% 50%);
  }
  .btn_rsv:is(:hover, :focus-visible) {
    background: var(--clr_brown);
    opacity: 1;
  }
}

.btn_detail1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 3rem;
  background: var(--clr_brown);
  color: var(--clr_brown);
  text-decoration: none !important;
  line-height: 1.4;
  clip-path: polygon(1.5rem 0%, calc(100% - 1.5rem) 0%, 100% 50%, calc(100% - 1.5rem) 100%, 1.5rem 100%, 0% 50%);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_detail1::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 1px;
  clip-path: polygon(1.4rem 0%, calc(100% - 1.4rem) 0%, 100% 50%, calc(100% - 1.4rem) 100%, 1.4rem 100%, 0% 50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_detail1::after {
  font-family: "fontello";
  content: "\e811";
  font-size: 80%;
}
@media screen and (min-width: 48em), print {
  .btn_detail1 {
    padding: 0.8rem 6.5rem;
    clip-path: polygon(2rem 0%, calc(100% - 2rem) 0%, 100% 50%, calc(100% - 2rem) 100%, 2rem 100%, 0% 50%);
  }
  .btn_detail1::before {
    clip-path: polygon(1.9rem 0%, calc(100% - 1.9rem) 0%, 100% 50%, calc(100% - 1.9rem) 100%, 1.9rem 100%, 0% 50%);
  }
  .btn_detail1:is(:hover, :focus-visible) {
    color: #fff;
    opacity: 1;
  }
  .btn_detail1:is(:hover, :focus-visible)::before {
    opacity: 0;
  }
}

.btn_detail2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 3rem;
  color: #fff;
  background: var(--clr_brown_dark2);
  text-decoration: none !important;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_detail2::after {
  font-family: "fontello";
  content: "\e811";
  font-size: 80%;
}
@media screen and (min-width: 48em), print {
  .btn_detail2 {
    padding: 1rem 6.5rem;
  }
  .btn_detail2:is(:hover, :focus-visible) {
    background: var(--clr_green_dark);
    opacity: 1;
  }
}

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

.lst_anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc li a {
  display: block;
  color: var(--clr_brown_dark);
  background: var(--clr_brown_light4);
  padding: 0.5rem 1rem 0.5rem 4rem;
  text-decoration: none !important;
  position: relative;
}
.lst_anc li a::before {
  font-family: "fontello";
  content: "\e815";
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--clr_brown_dark2);
  color: #fff;
  font-size: 90%;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 2rem;
  }
  .lst_anc li a {
    padding: 0.6rem 4rem 0.6rem 6rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .lst_anc li a::before {
    width: 4.5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    opacity: 1;
    background: var(--clr_green_light3);
  }
  .lst_anc li a:is(:hover, :focus-visible)::before {
    background: var(--clr_green_dark);
  }
}

@media screen and (min-width: 48em), print {
  .gallery_slider:hover .slick-arrow, .route_slider:hover .slick-arrow {
    opacity: 1;
  }
  .slick-arrow {
    width: 6rem;
    height: 50rem;
    position: absolute;
    top: 0;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    background: rgba(255, 255, 255, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--clr_blue_dark);
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .slick-arrow::before {
    font-size: 4rem;
    color: var(--clr_brown_dark);
  }
  .slick-arrow.slick-prev {
    left: 0;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\e80c";
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  .slick-arrow.slick-next {
    right: 0;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\e80c";
  }
  .slick-arrow.slick-disabled {
    background: none;
    cursor: auto;
  }
  .slick-arrow.slick-disabled::before {
    display: none;
  }
  .slick-arrow:focus {
    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: var(--clr_brown);
}
.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;
  }
}
html {
  font-size: 3.125vw;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  position: relative;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_brown_light6), 0.7);
  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.25rem;
  line-height: 1.8;
}
.main a:not([class*=btn], [href*="tel:"]) {
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -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;
  }
}
:target {
  scroll-margin-top: 1rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 4rem;
  }
}

.header {
  position: relative;
  min-height: 6.6rem;
  background: rgba(255, 255, 255, 0.85);
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  -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 > ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }
  .header > .wrap {
    width: 110rem;
    padding: 2rem 0 2rem 0.7rem;
    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: 40rem;
    height: 6.65rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    display: block;
    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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2.5rem;
  }
  .header > .wrap .headR ul li .tel_style {
    font-size: 2.4rem;
  }
  .header > .wrap .headR ul li.acs {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
  }
  .header > .wrap .headR ul li.acs .txt_small {
    font-size: 1.6rem;
  }
  .header > .wrap .headR ul li.acs .txt_brown {
    color: var(--clr_brown);
  }
  .header > .wrap .headR ul li.acs .txt_brown i {
    font-size: 2.2rem;
    font-style: normal;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 3rem;
  height: 3rem;
  padding: 0;
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  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: 100%;
  height: 1px;
  background: var(--clr_brown);
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu span:nth-of-type(1) {
  top: 20%;
}
#nav #sp_menu span:nth-of-type(2) {
  top: 50%;
  width: 50%;
}
#nav #sp_menu span:nth-of-type(3) {
  top: 80%;
}
#nav #sp_menu.close span {
  top: 50%;
}
#nav #sp_menu.close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#nav #sp_menu.close span:nth-of-type(2) {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
#nav #sp_menu.close span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#nav .gnav_subnav {
  display: none;
  width: 100%;
  max-height: calc(100dvh - 6.6rem);
  overflow-y: auto;
  background: #fff;
  padding: 1rem;
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  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;
  width: 100%;
  text-align: left;
  padding: 0.8rem;
  font-size: 1.3rem;
}
#nav .gnav_subnav .gnav > li a .nav_n, #nav .gnav_subnav .gnav > li .sub .nav_n {
  display: none;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_brown);
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e80b";
  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;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 90%;
  color: var(--clr_gray_dark3);
  padding: 0.2em 0 0;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  background: rgba(var(--rgb_brown_dark), 0.61);
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: calc((100% - 2px) / 2);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  font-size: 1.2rem;
  gap: 0.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0.8rem;
  color: var(--clr_txt);
  background: var(--clr_brown_light8);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  font-family: "fontello";
  content: "\e80c";
  color: var(--clr_gray_dark3);
  font-size: 70%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  opacity: 0.8;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: var(--clr_txt);
  background: rgba(var(--rgb_brown), 0.1);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e816";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: static;
    z-index: 100;
  }
  #nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
  }
  #nav.sticky .gnav_subnav .gnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5.5rem;
  }
  #nav.sticky .gnav_subnav .gnav > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  #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;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
  }
  #nav .gnav_subnav .gnav {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.8rem;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: auto;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li.privacy_wrap {
    display: none;
  }
  #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;
    padding: 0.8rem 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: var(--clr_brown);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    padding: 1.6rem var(--padding110);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: calc((100% - 8px) / 5);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    font-size: 1.6rem;
    padding: 1rem 0.7rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    opacity: 0.8;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  padding: 4rem 1rem;
  font-size: 1.25rem;
  line-height: 1.6;
  background: #fff url(../img/overview_bg.jpg) no-repeat center top/300% auto;
}
.overview .clinic_name {
  margin: 0 0 3rem;
}
.overview .clinic_name img {
  max-width: 90%;
  margin: auto;
}
.overview > .wrap .overviewL .gaiyo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.5;
  width: 100%;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 23%;
  text-align: center;
  margin: 0 0 1.5rem;
}
.overview > .wrap .overviewL .gaiyo dt span {
  display: block;
  background: var(--clr_brown_light4);
  color: var(--clr_brown_dark);
  padding: 0.3rem 0;
}
.overview > .wrap .overviewL .gaiyo dt span.two_letters {
  letter-spacing: 1em;
  text-indent: 1em;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 77%;
  margin: 0 0 1.5rem;
  padding: 0.3rem 0 0.3rem 1rem;
  letter-spacing: 0.02em;
}
.overview > .wrap .overviewL .gaiyo dd .tel_honin {
  color: var(--clr_brown_dark);
  font-size: 162%;
  line-height: 0.8;
  letter-spacing: 0.04em;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}

.gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 9rem 0;
    font-size: 1.6rem;
    background-size: clamp(200rem, 100vw, 100%);
  }
  .overview .clinic_name {
    margin: 0 0 7.5rem;
  }
  .overview .clinic_name img {
    max-width: 48.1rem;
  }
  .overview > .wrap {
    width: 110rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 47.2%;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 22%;
    margin: 0 0 1.1rem;
    min-height: 6rem;
  }
  .overview > .wrap .overviewL .gaiyo dt span {
    padding: 0.6rem 0;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 78%;
    padding: 0.6rem 0 0.6rem 2.5rem;
    margin: 0 0 1.1rem;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .gmap {
    height: 56.9rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  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;
  -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);
}
#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 .tel_style {
  height: 100%;
  font-size: 1.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}
#tel_up ul li .btn_rsv {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  clip-path: none;
  padding: 0;
}
#tel_up ul li.top_wrap {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
#tel_up ul li.top_wrap #pageup {
  display: block;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  text-align: center;
  padding: 0;
  line-height: 1;
  background: var(--clr_txt);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up ul li.top_wrap #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e814";
}
#tel_up ul li.top_wrap #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: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 5rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #tel_up ul {
    gap: 0.5rem;
  }
  #tel_up ul li.tel_wrap {
    display: none;
  }
  #tel_up ul li .btn_rsv {
    font-size: 1.6rem;
    padding: 0 2.6rem;
    gap: 1rem;
    -webkit-box-shadow: 1px 1px 0 #fff;
            box-shadow: 1px 1px 0 #fff;
  }
  #tel_up ul li.top_wrap #pageup {
    width: 100%;
    font-size: 3.4rem;
    width: 5rem;
    height: 5rem;
    -webkit-box-shadow: 1px 1px 0 #fff;
            box-shadow: 1px 1px 0 #fff;
  }
  #tel_up ul li.top_wrap #pageup:is(:hover, :focus-visible) {
    background: var(--clr_gray_dark3);
    opacity: 1;
  }
}
.footer {
  text-align: center;
  background: #fff;
}
.footer .copy {
  display: block;
  background: var(--clr_brown_dark2);
  color: #fff;
  padding: 0.6rem 1rem 4.6rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4.5rem 0 0;
  }
  .footer .copy {
    margin: 3.5rem 0 0;
    padding: 1.8rem 0;
  }
  .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, .ft_line_n)::after {
    content: "|";
    margin: 0 2rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li a .nav_n {
    display: none;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.subnav {
    max-width: 80rem;
    margin: auto;
  }
}
body.index {
  background: var(--clr_brown_light7);
}

.keyvsl {
  width: 100%;
  position: relative;
  opacity: 0;
  -webkit-animation: fadein 1s forwards;
          animation: fadein 1s forwards;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 24rem;
  overflow: hidden;
  visibility: hidden;
}
.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: 0.5rem;
  left: 0;
  right: 0;
  padding: 0 1rem 1rem;
  min-height: 8rem;
  background: url(../img/index_kv_deco.svg) no-repeat center left 2.5rem/auto 8rem;
}
.keyvsl > .wrap .open {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--clr_brown);
  letter-spacing: 0.05em;
  text-shadow: 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff;
}
.keyvsl > .wrap .open .txt_largest {
  font-size: 223%;
  line-height: 1;
  letter-spacing: 0.05em;
}
.keyvsl > .wrap .open .txt_large {
  font-size: 147%;
  line-height: 1;
  letter-spacing: 0.05em;
}
.keyvsl > .wrap .open .txt_medium {
  font-size: 82%;
  letter-spacing: 0.05em;
}
.keyvsl > .wrap .open .txt_small {
  font-size: 70%;
  letter-spacing: 0.05em;
}
.keyvsl > .wrap .open .num {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
}
.keyvsl > .wrap .catch {
  font-size: 1.2rem;
  text-shadow: 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff, 0 0 0.8rem #fff;
  line-height: 1.4;
}
.keyvsl > .wrap .catch span {
  font-size: 93%;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 69.5rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 69.5rem !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 {
    min-height: 18.6rem;
    width: 110rem;
    background-size: auto 18.6rem;
    background-position: left 3.5rem center;
    padding: 0;
    bottom: 3rem;
  }
  .keyvsl > .wrap .open {
    font-size: 3.4rem;
    margin: 0 0 1rem;
    text-shadow: 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff;
  }
  .keyvsl > .wrap .catch {
    font-size: 3rem;
    text-shadow: 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff, 0 0 1.5rem #fff;
  }
}
.info {
  padding: 4rem 1rem;
}
.info .tit_02 {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem !important;
  margin: 0 auto 2rem;
  padding: 0 0 0 6.5rem;
  min-height: 8rem !important;
  background: url(../img/logo_mark.svg) no-repeat center left/8rem auto !important;
  gap: 0.3rem !important;
}
.info .tit_02::before {
  font-size: 211% !important;
}
.info dl {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  scrollbar-color: var(--clr_brown) var(--clr_gray);
  scrollbar-width: thin;
  padding: 0 1rem 0 0;
}
.info dl::-webkit-scrollbar {
  border-radius: 100vw;
  width: 0.4rem;
}
.info dl::-webkit-scrollbar-track {
  background-color: var(--clr_gray);
  border-radius: 100vw;
}
.info dl::-webkit-scrollbar-thumb {
  background: var(--clr_brown);
  border-radius: 100vw;
}
.info dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 0.6rem;
  margin: 0 0 0.6rem;
  font-weight: 600;
  color: var(--clr_brown);
  cursor: pointer;
}
.info dl dt::before {
  font-family: "fontello";
  content: "\e80e";
  font-weight: normal;
  font-size: 110%;
}
.info dl dt.close::before {
  font-family: "fontello";
  content: "\e80d";
}
.info dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
}
.info dl dt .date {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 112%;
  color: var(--clr_txt);
  display: inline-block;
  margin: 0 0.5rem 0 0;
}
.info dl dd {
  margin: 0 0 1.6rem;
}
.info dl dd:not(:nth-of-type(-n+5)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem var(--padding110);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.8rem;
  }
  .info .tit_02 {
    font-size: 1.8rem !important;
    background-size: 13.8rem !important;
    min-height: 13.7rem !important;
    padding: 0 0 0 10.5rem;
    gap: 1rem !important;
  }
  .info dl {
    max-height: 22.2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 3rem 0 0;
  }
  .info dl dt {
    margin: 0 0 0.8rem;
    gap: 0 1rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .info dl dt:not(:first-of-type) {
    margin: 2.5rem 0 0.8rem;
  }
  .info dl dt:hover {
    color: var(--clr_brown_dark);
  }
  .info dl dd {
    margin: 0 0 1.6rem;
  }
}
.cal {
  padding: 2rem 1rem;
}
.cal .cal_wrap .caledit td {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
}
.cal .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 1rem;
}
.cal .status li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
}
.cal .status li::before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--clr_gray_dark2);
}
.cal .status li.open::before {
  background: #fff;
}
.cal .status li.day_night::before {
  background: var(--clr_brown_light11);
}
.cal .status li.am_night::before {
  background: var(--clr_brown_light12);
}
.cal .status li.pm_night::before {
  background: var(--clr_green_light4);
}
.cal .status li.night::before {
  background: var(--clr_blue_light);
}
.cal .status li.sunday::before {
  background: var(--clr_green_light2);
}
.cal .status li.closed::before {
  background: var(--clr_brown);
}

@media screen and (min-width: 48em), print {
  .cal {
    padding: 2rem var(--padding110);
  }
  .cal .tit_02 {
    margin: 0;
  }
  .cal .cal_inner {
    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;
  }
  .cal .cal_inner .cal_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .cal .cal_inner .cal_wrap .caledit {
    width: 46%;
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
  }
  .cal .cal_inner .cal_wrap .caledit .month th {
    font-size: 2.2rem;
    padding: 0 0 1.5rem;
  }
  .cal .cal_inner .cal_wrap .caledit .week th {
    border-bottom: 6px solid #F6F2E7;
  }
  .cal .cal_inner .status {
    margin: 1rem 0 0;
    gap: 2rem;
  }
  .cal .cal_inner .status li {
    gap: 1rem;
  }
}
.about_fever {
  padding: 3rem 2rem;
  margin: 2rem 1rem 4rem;
  position: relative;
  z-index: 1;
}
.about_fever::before, .about_fever::after {
  content: "";
  width: 50%;
  height: 4rem;
  position: absolute;
  z-index: -1;
}
.about_fever::before {
  left: 0;
  top: 0;
  border-top: 1px solid var(--clr_brown_light);
  border-left: 1px solid var(--clr_brown_light);
}
.about_fever::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--clr_brown_light);
  border-right: 1px solid var(--clr_brown_light);
}
.about_fever .tit_02 {
  font-size: 1.6rem !important;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  color: var(--clr_brown) !important;
}
.about_fever p {
  line-height: 2;
  letter-spacing: 0.05em;
}
.about_fever ul {
  margin: 1.5rem 0 0;
}
.about_fever ul li {
  text-align: center;
  margin: 0 0 0.5rem;
}
.about_fever ul li .tel_style {
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  .about_fever {
    padding: 3rem 6rem;
    margin: 4rem auto 11rem;
    width: 110rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.8rem;
  }
  .about_fever::before, .about_fever::after {
    width: 7rem;
    height: 100%;
  }
  .about_fever .tit_02 {
    font-size: 2.8rem !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
  .about_fever ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about_fever ul li {
    margin: 0;
  }
  .about_fever ul li .tel_style {
    font-size: 2.4rem;
  }
}
.policy {
  padding: 4rem 1rem;
  background: url(../img/index_policy_bg.jpg) no-repeat center right 30%/auto 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.policy .sub_tit {
  font-size: 1.8rem;
  line-height: 1.38;
}
.policy .sub_tit span {
  font-size: 61%;
}
.policy p {
  line-height: 2;
}

@media screen and (min-width: 48em), print {
  .policy {
    padding: 8rem 0 9rem;
    background-position: center;
    background-size: cover;
  }
  .policy .tit_02 {
    margin: 0 0 1rem;
  }
  .policy .sub_tit {
    font-size: 3.6rem;
    margin: 0 0 2rem;
  }
}
.sas_info {
  background: #fff;
  margin: 6rem 1.5rem 4rem;
  padding: 1rem 1rem 3rem 2rem;
  position: relative;
  z-index: 1;
}
.sas_info::before {
  content: "";
  width: 100%;
  height: 97%;
  border: 1px solid var(--clr_brown);
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  z-index: -1;
}
.sas_info::after {
  content: "";
  width: 100%;
  height: 22rem;
  background: url(../img/index_sas.jpg) no-repeat center/cover;
  position: absolute;
  top: 5rem;
  right: 0;
  z-index: -2;
}
.sas_info .tit_02 {
  margin: -4rem auto 24rem -1rem !important;
  position: relative;
  z-index: 1;
}
.sas_info .tit_02::after {
  content: "";
  width: 100%;
  height: 3.5rem;
  position: absolute;
  bottom: 0;
  left: 1rem;
  background: #fff;
  z-index: -1;
}
.sas_info .btn_detail1 {
  margin: 2rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 48em), print {
  .sas_info {
    width: 110rem;
    min-height: 40rem;
    margin: 12rem auto 8rem;
    padding: 1rem 10rem;
  }
  .sas_info::before {
    height: 100%;
    bottom: -5.2rem;
    left: 5.2rem;
  }
  .sas_info::after {
    width: 50%;
    height: 100%;
    top: 0;
    z-index: 1;
  }
  .sas_info .tit_02 {
    margin: -5.7rem auto 5rem !important;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .sas_info .tit_02::after {
    width: 50%;
    height: 5rem;
    left: 0;
  }
  .sas_info .btn_detail1 {
    margin: 0;
  }
}
.feature {
  padding: 4rem 1rem;
}
.feature ol {
  counter-reset: number 0;
}
.feature ol li {
  position: relative;
  min-height: 13rem;
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.feature ol li::before {
  content: "";
  width: 28rem;
  height: 13rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.feature ol li::after {
  content: "";
  width: 65%;
  height: 9rem;
  border-right: 1px solid var(--clr_brown);
  border-bottom: 1px solid var(--clr_brown);
  position: absolute;
  top: 2rem;
  right: 0;
  z-index: -1;
}
.feature ol li > div {
  width: 52%;
  padding: 1rem 0 0;
}
.feature ol li > div span {
  color: var(--clr_brown_light);
  font-size: 1.4rem;
  display: block;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}
.feature ol li > div span::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 285%;
  line-height: 1;
  margin: 0 0 0 0.5rem;
}
.feature ol li > div p {
  line-height: 1.6;
}
.feature ol li.feat1::before {
  background: #fff url(../img/index_feat1.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat2::before {
  background: #fff url(../img/index_feat2.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat3::before {
  background: #fff url(../img/index_feat3.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat4::before {
  background: #fff url(../img/index_feat4.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat5::before {
  background: #fff url(../img/index_feat5.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat6::before {
  background: #fff url(../img/index_feat6.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat7::before {
  background: #fff url(../img/index_feat7.jpg) no-repeat center left/auto 100%;
}
.feature ol li.feat8::before {
  background: #fff url(../img/index_feat8.jpg) no-repeat center left/auto 100%;
}
.feature ol li:nth-child(2n) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 0 0 1rem;
}
.feature ol li:nth-child(2n)::before {
  background-position: right center;
  left: auto;
  right: 0;
}
.feature ol li:nth-child(2n)::after {
  border-right: none;
  border-left: 1px solid var(--clr_brown);
  left: 0;
  right: auto;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 8rem var(--padding110);
  }
  .feature ol {
    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;
    gap: 2.5rem 0;
    margin: 15rem 0 0;
  }
  .feature ol li {
    width: 52.2rem;
    min-height: 22.5rem;
    font-size: 1.8rem;
  }
  .feature ol li::before {
    width: 47rem;
    height: 22.5rem;
  }
  .feature ol li::after {
    width: 31.9rem;
    height: 16.5rem;
  }
  .feature ol li > div {
    width: 26.5rem;
    padding: 2.8rem 0 0;
  }
  .feature ol li > div span {
    font-size: 2.8rem;
  }
  .feature ol li:nth-child(2n-1) {
    margin: -11.4rem 0 0;
  }
  .feature ol li:nth-child(2n) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
  }
  .feature ol li:nth-child(2n)::before {
    right: auto;
    left: 0;
    background-position: left center;
  }
  .feature ol li:nth-child(2n)::after {
    left: auto;
    right: 0;
    border-left: none;
    border-right: 1px solid var(--clr_brown);
  }
  .feature ol li:nth-child(4n+3), .feature ol li:nth-child(4n+4) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 0 0 1.5rem;
  }
  .feature ol li:nth-child(4n+3)::before, .feature ol li:nth-child(4n+4)::before {
    left: auto;
    right: 0;
    background-position: right center;
  }
  .feature ol li:nth-child(4n+3)::after, .feature ol li:nth-child(4n+4)::after {
    border-right: none;
    border-left: 1px solid var(--clr_brown);
    right: auto;
    left: 0;
  }
}
.tre {
  background: url(../img/index_tre_bg.jpg) no-repeat center top/200% auto;
  padding: 4rem 1rem 10rem;
}
.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;
  gap: 2rem 0;
}
.tre .subnav li {
  width: 48%;
}
.tre .subnav li a {
  display: block;
  background: #fff;
  padding: 1.5rem 1rem 2rem;
  text-decoration: none;
  height: 100%;
  position: relative;
}
.tre .subnav li a::after {
  font-family: "fontello";
  content: "\e812";
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  color: var(--clr_brown_light2);
  line-height: 1;
}
.tre .subnav li a span {
  display: block;
}
.tre .subnav li a span.tre_wrap {
  color: var(--clr_brown);
  display: block;
  text-align: center;
  padding: 0.5rem 0;
  border-top: 1px solid var(--clr_brown_light);
  border-bottom: 1px solid var(--clr_brown_light);
  position: relative;
  margin: 0 0 1rem;
  font-size: 1.35rem;
  white-space: nowrap;
  z-index: 1;
}
.tre .subnav li a span.tre_wrap::before {
  content: "";
  width: 100%;
  height: calc(100% - 4px);
  border-top: 1px solid var(--clr_brown_light);
  border-bottom: 1px solid var(--clr_brown_light);
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  z-index: -1;
}

@media screen and (min-width: 48em), print {
  .tre {
    background-size: 200rem auto;
    padding: 8rem var(--padding110) 24rem;
  }
  .tre .subnav {
    gap: 6rem 0;
    margin: 3rem 0 0;
  }
  .tre .subnav li {
    width: 32.6rem;
  }
  .tre .subnav li a {
    padding: 3rem;
    min-height: 26.7rem;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .tre .subnav li a::before {
    content: "";
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: 1px solid var(--clr_brown_light);
    z-index: -1;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .tre .subnav li a::after {
    bottom: 1.2rem;
    right: 1.2rem;
    font-size: 2rem;
  }
  .tre .subnav li a span.tre_wrap {
    margin: 0 0 1.5rem;
    font-size: 2.4rem;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--clr_brown_light8);
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current)::before {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
}
.symp {
  background: url(../img/index_symp_bg.jpg) repeat center top/100% auto;
  padding: 1rem 1rem 4rem;
}
.symp .symp_inner {
  background: -webkit-gradient(linear, left top, right top, from(var(--clr_brown_dark2)), to(rgba(var(--rgb_brown_dark2), 0.8)));
  background: linear-gradient(to right, var(--clr_brown_dark2), rgba(var(--rgb_brown_dark2), 0.8));
  margin-top: -5rem;
  padding: 2rem 1rem 1rem;
  color: #fff;
}
.symp .symp_inner .tit {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  line-height: 1.11;
  font-weight: 500;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3rem;
}
.symp .symp_inner .tit::before, .symp .symp_inner .tit::after {
  content: "";
  width: 1px;
  height: 4rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
}
.symp .symp_inner .tit::before {
  left: -1.5rem;
}
.symp .symp_inner .tit::after {
  right: -1.5rem;
}
.symp .symp_inner .tit span {
  display: block;
  font-size: 88%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0.5rem 0 0;
  font-style: italic;
}
.symp .symp_inner .lst_wrap > div {
  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: 1rem;
  margin: 0 0 2rem;
}
.symp .symp_inner .lst_wrap > div::after {
  content: "";
  width: 12rem;
  height: 12rem;
  opacity: 0.8;
}
.symp .symp_inner .lst_wrap > div ul {
  width: 45%;
}
.symp .symp_inner .lst_wrap > div ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.symp .symp_inner .lst_wrap > div ul li::before {
  font-family: "fontello";
  content: "\e813";
  color: var(--clr_brown_dark);
  font-size: 70%;
}
.symp .symp_inner .lst_wrap > div:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.symp .symp_inner .lst_wrap > div.lst1::after {
  background: url(../img/index_symptom01.jpg) no-repeat center/cover;
}
.symp .symp_inner .lst_wrap > div.lst2::after {
  background: url(../img/index_symptom02.jpg) no-repeat center/cover;
}
.symp .symp_inner .lst_wrap > div.lst3::after {
  background: url(../img/index_symptom03.jpg) no-repeat center/cover;
}

@media screen and (min-width: 48em), print {
  .symp {
    background-size: 89.5rem auto;
    padding: 1rem 0 12rem;
  }
  .symp .symp_inner {
    padding: 7rem 8rem 6.5rem;
    width: 110rem;
    margin: -12.2rem auto 0;
  }
  .symp .symp_inner .tit {
    font-size: 3.6rem;
    margin: 0 auto 5rem;
  }
  .symp .symp_inner .tit::before, .symp .symp_inner .tit::after {
    height: 7.4rem;
    top: -1.2rem;
  }
  .symp .symp_inner .tit::before {
    left: -2rem;
  }
  .symp .symp_inner .tit::after {
    right: -2rem;
  }
  .symp .symp_inner .tit span {
    margin: 1.5rem 0 0;
  }
  .symp .symp_inner .lst_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .symp .symp_inner .lst_wrap div {
    width: 26.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 4.8rem;
  }
  .symp .symp_inner .lst_wrap div::after {
    width: 100%;
    height: 26.8rem;
  }
  .symp .symp_inner .lst_wrap div ul {
    width: 100%;
    min-height: 26.8rem;
  }
  .symp .symp_inner .lst_wrap div ul li {
    font-size: 1.8rem;
    gap: 1rem;
  }
  .symp .symp_inner .lst_wrap div ul li:not(:last-child) {
    margin: 0 0 1.8rem;
  }
  .symp .symp_inner .lst_wrap div:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.greeting {
  padding: 4rem 1rem;
  background: #fff;
}
.greeting > div {
  border-top: 1px solid var(--clr_brown);
  padding: 2rem 0;
}
.greeting > div::after {
  content: "";
  width: calc(100% + 2rem);
  height: 15rem;
  display: block;
  margin: 2rem 0 0 -1rem;
}
.greeting > div.dr::after {
  background: url(../img/index_greeting01.jpg) no-repeat center/cover;
}
.greeting > div.riji::after {
  background: url(../img/index_greeting02.jpg) no-repeat center/cover;
}
.greeting > div .name {
  margin: 1rem 0 0;
  text-align: right;
  font-size: 1.4rem;
}
.greeting > div .name span {
  font-size: 120%;
}
.greeting > div .name .btn_detail1 {
  background: var(--clr_brown_light7);
  color: var(--clr_brown);
  margin: 0.5rem 0 0;
}
.greeting > div .name .btn_detail1::before {
  display: none;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 8rem var(--padding110) 11rem;
    overflow-x: clip;
  }
  .greeting .tit_02 {
    margin: 0 0 3rem;
  }
  .greeting > div {
    width: 69.6rem;
    padding: 3rem 0 0;
    position: relative;
    min-height: 34rem;
    margin: 0 0 11rem;
  }
  .greeting > div::after {
    content: "";
    width: 78.4rem;
    height: 38rem;
    margin: 0;
    position: absolute;
    left: calc(100% + 7rem);
    top: 0;
  }
  .greeting > div.riji {
    margin: 0 0 0 auto;
  }
  .greeting > div.riji::after {
    left: auto;
    right: calc(100% + 7rem);
  }
  .greeting > div p {
    margin: 0 0 0.5rem;
  }
  .greeting > div .name {
    font-size: 2rem;
    margin: 0;
  }
  .greeting > div .name .btn_detail1 {
    margin: 0 0 0 2rem;
    font-size: 1.6rem;
    padding: 0.5rem 3rem;
  }
  .greeting > div .name .btn_detail1:hover {
    background: var(--clr_brown);
    color: #fff;
  }
}
.intro {
  padding: 4rem 1rem 34rem;
  background: var(--clr_brown_light4) url(../img/index_intro_bg.jpg) no-repeat bottom right -12rem/auto 30rem;
  position: relative;
}
.intro::after {
  content: "The Main Institution";
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  bottom: 29.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}
.intro .tit {
  color: var(--clr_brown_dark);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  font-size: 1.8rem;
  margin: 0 0 2rem;
  line-height: 1.4;
}
.intro .tit::before, .intro .tit::after {
  content: "";
  width: auto;
  height: 1px;
  background: var(--clr_brown_dark);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.intro > a {
  width: 80%;
  display: block;
  margin: 0 auto 2rem;
}
.intro > a img {
  width: 100%;
}
.intro dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.5;
}
.intro dl dt {
  width: 23%;
  text-align: center;
  margin: 0 0 1.5rem;
}
.intro dl dt span {
  display: block;
  background: var(--clr_brown_light9);
  color: var(--clr_brown_dark);
  padding: 0.3rem 0;
}
.intro dl dt span.two_letters {
  letter-spacing: 1em;
  text-indent: 1em;
}
.intro dl dd {
  width: 77%;
  margin: 0 0 1.5rem;
  padding: 0.3rem 0 0.3rem 1rem;
  letter-spacing: 0.02em;
}
.intro dl dd .tel_honin {
  color: var(--clr_brown_dark);
  font-size: 162%;
  line-height: 0.8;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 48em), print {
  .intro {
    padding: 8rem var(--padding110) 10rem;
    background: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(transparent), color-stop(50%, transparent), color-stop(50%, rgba(var(--rgb_brown_light4), 0.8)), to(var(--clr_brown_light4))), url(../img/index_intro_bg.jpg) no-repeat center/auto 100%;
    background: linear-gradient(to left, #fff calc(50% - 100rem), transparent calc(50% - 100rem), transparent 50%, rgba(var(--rgb_brown_light4), 0.8) 50%, var(--clr_brown_light4) calc(50% + 21rem)), url(../img/index_intro_bg.jpg) no-repeat center/auto 100%;
  }
  .intro::after {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50%, var(--clr_brown_light)));
    background: linear-gradient(to right, #fff 50%, var(--clr_brown_light) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 7rem;
    bottom: -1.3rem;
    padding: 0 0 0 4rem;
  }
  .intro .tit {
    width: 45.6rem;
    font-size: 3.6rem;
  }
  .intro > a {
    width: 45.6rem;
    margin: 0 0 4.5rem;
  }
  .intro > a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .intro > a:hover img {
    opacity: 0.8;
  }
  .intro dl {
    width: 45.6rem;
  }
  .intro dl dt {
    width: 25%;
    margin: 0 0 2.5rem;
  }
  .intro dl dt span {
    padding: 0.5rem 0;
  }
  .intro dl dd {
    width: 75%;
    padding: 0.5rem 0 0.5rem 2.5rem;
    margin: 0 0 2.5rem;
  }
}
.study {
  background: #fff;
  padding: 4rem 1rem;
}
.study .tit {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  margin: 0 auto 2rem;
  padding: 0 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.study .tit::before, .study .tit::after {
  content: "";
  width: 1.5em;
  height: 1px;
  background: var(--clr_gray_dark);
  position: absolute;
  top: 50%;
}
.study .tit::before {
  left: 0;
}
.study .tit::after {
  right: 0;
}
.study dl {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  scrollbar-color: var(--clr_brown) var(--clr_gray);
  scrollbar-width: thin;
  padding: 0 1rem 0 0;
  line-height: 1.68;
}
.study dl::-webkit-scrollbar {
  border-radius: 100vw;
  width: 0.4rem;
}
.study dl::-webkit-scrollbar-track {
  background-color: var(--clr_gray);
  border-radius: 100vw;
}
.study dl::-webkit-scrollbar-thumb {
  background: var(--clr_brown);
  border-radius: 100vw;
}
.study dl dt {
  color: var(--clr_brown);
  font-weight: bold;
  margin: 0 0 0.6rem;
  font-family: "Hiragino Sans", "Yu Gothic medium", "Yu Gothic", "游ゴシック Medium", Meiryo, sans-serif;
  letter-spacing: 0.02em;
}
.study dl dt .date {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 112%;
  color: var(--clr_txt);
  margin: 0 0.5rem 0 0;
  letter-spacing: 0.01em;
}
.study dl dd {
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  border-bottom: 1px solid var(--clr_brown_light);
  letter-spacing: 0.01em;
}

@media screen and (min-width: 48em), print {
  .study {
    background: #fff;
    padding: 11rem var(--padding110);
  }
  .study .tit {
    font-size: 2.9rem;
    margin: 0 auto 3rem;
  }
  .study dl {
    max-height: 55rem;
    padding: 0 3rem 0 0;
  }
  .study dl dd {
    padding: 0 0 3rem;
    margin: 0 0 2rem;
  }
}
body:not(.index) {
  background: var(--clr_brown_light8);
}
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_style {
  font-size: 120%;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], .lst_anc > li > a) {
  color: var(--clr_brown_dark);
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 110rem;
    margin: 5rem auto 8rem;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: -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;
}
.breadnav .breadcrumb li a {
  color: var(--clr_brown);
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 110rem;
    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: underline;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.accordion_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.accordion_btn::after {
  font-family: "fontello";
  content: "\e80b";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordion_btn.open::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.accordion_inner {
  display: none;
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--clr_brown_light4);
  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 var(--clr_brown);
}

@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);
  }
  .gallery .gallery_thum .slick-track {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
            transform: translate3d(0px, 0px, 0px) !important;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: auto;
  }
}