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

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

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

:root {
  --clr_txt: #44352D;
  --rgb_txt: 68, 53, 45;
  --clr_green_dark: #147262;
  --rgb_green_dark: 20, 114, 98;
  --clr_green_dark2: #188A75;
  --rgb_green_dark2: 24, 138, 117;
  --clr_green_dark3: #1E9983;
  --rgb_green_dark3: 30, 153, 131;
  --clr_green_dark4: #40a45f;
  --rgb_green_dark4: 64, 164, 95;
  --clr_green: #69BD83;
  --rgb_green: 105, 189, 131;
  --clr_green_light: #DAF6E3;
  --rgb_green_light: 218, 246, 227;
  --clr_green_light2: #EEF8F1;
  --rgb_green_light2: 238, 248, 241;
  --clr_green_light3: #CDEFCF;
  --rgb_green_light3: 205, 239, 207;
  --clr_orange: #F79B3E;
  --rgb_orange: 247, 155, 62;
  --clr_pink: #EB8795;
  --rgb_pink: 235, 135, 149;
  --clr_brown_dark: #927B6F;
  --rgb_brown_dark: 146, 123, 111;
  --clr_brown_dark2: #54392B;
  --rgb_brown_dark2: 84, 57, 43;
  --clr_brown: #9E8578;
  --rgb_brown: 158, 133, 120;
  --clr_brown_light: #E1D4CE;
  --rgb_brown_light: 225, 212, 206;
  --clr_brown_light2: #EFE7E3;
  --rgb_brown_light2: 239, 231, 227;
  --clr_gray_dark: #AAA;
  --rgb_gray_dark: 170, 170, 170;
  --clr_gray_dark2: #333;
  --rgb_gray_dark2: 51, 51, 51;
  --clr_gray: #CECBCA;
  --rgb_gray: 206, 203, 202;
  --clr_gray_light: #C7CCC8;
  --rgb_gray_light: 199, 204, 200;
  --clr_gray_light2: #D4D4D4;
  --rgb_gray_light2: 212, 212, 212;
  --clr_gray_light3: #FAFAFA;
  --rgb_gray_light3: 250, 250, 250;
}

@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(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-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 spin_down {
  0% {
    -webkit-transform: rotateY(150deg);
            transform: rotateY(150deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 1;
  }
}
@keyframes spin_down {
  0% {
    -webkit-transform: rotateY(150deg);
            transform: rotateY(150deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    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_larger {
  font-size: 160%;
}

.txt_small {
  font-size: 80%;
}

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

.txt_green {
  color: var(--clr_green_dark3);
}

.txt_indent {
  text-indent: 1em;
}

.img_c {
  margin: 1rem auto;
}

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

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

.img_radius {
  border-radius: 1rem;
}

.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_c.small {
    max-width: 50%;
  }
  .img_c.medium {
    max-width: 70%;
  }
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
    border-radius: 2rem;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
    border-radius: 2rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_radius {
    border-radius: 2rem;
  }
  .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;
  }
  .pc_br_n br {
    display: none;
  }
}
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  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: 6rem;
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: 6rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", serif;
}
.tbl_time .star {
  color: var(--clr_orange);
}
.tbl_time .triangle {
  color: var(--clr_green);
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.tbl_time caption ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1rem;
}
.tbl_time caption p {
  margin: 0.5rem 0;
}
.tbl_time caption p .online {
  text-decoration: underline;
  color: var(--clr_orange);
}
.tbl_time caption dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.tbl_time caption dl 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;
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--clr_pink);
  color: #fff;
}
.tbl_time caption dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  background: var(--clr_green_dark3);
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 33%;
}
.tbl_time tr th[scope=row] {
  border-bottom: 1px solid var(--clr_green_dark3);
  background: #fff;
  letter-spacing: 0.05em;
}
.tbl_time tr td {
  background: #fff;
  color: var(--clr_green_dark3);
  text-align: center;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--clr_green_dark3);
  line-height: 1;
  font-size: 95%;
}
.tbl_time tr td.close {
  color: var(--clr_txt);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time caption {
    margin-top: 1rem;
  }
  .tbl_time caption ul {
    gap: 0 2rem;
  }
  .tbl_time caption p {
    margin: 0 0 1rem;
  }
  .tbl_time caption dl dt {
    padding: 1.2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.5rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 20%;
  }
  .tbl_time tr th[scope=row] {
    font-size: 2rem;
  }
  .tbl_time tr td {
    padding: 1.6rem 0;
  }
}
.tbl_brown {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_brown tr th {
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  padding: 0.4rem;
}
.tbl_brown tr th[scope=col] {
  text-align: center;
  background: var(--clr_brown);
  color: #fff;
}
.tbl_brown tr th[scope=col]:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.tbl_brown tr th[scope=row] {
  border-bottom: 1px solid var(--clr_gray_dark);
  border-right: 1px solid var(--clr_gray_dark);
  background: var(--clr_brown_light);
}
.tbl_brown tr th[scope=row].w30 {
  width: 30%;
}
.tbl_brown tr td {
  background: #fff;
  border-bottom: 1px solid var(--clr_gray_dark);
  padding: 0.4rem;
}
.tbl_brown tr td:not(:last-of-type) {
  border-right: 1px solid var(--clr_gray_dark);
}
.tbl_brown.no_col tr:first-of-type th[scope=row], .tbl_brown.no_col tr:first-of-type td {
  border-top: 1px solid var(--clr_gray_dark);
}
@media screen and (min-width: 48em), print {
  .tbl_brown {
    table-layout: fixed;
  }
  .tbl_brown tr th {
    padding: 1rem;
  }
  .tbl_brown tr td {
    padding: 1rem;
  }
}

.w20 {
  width: 20% !important;
}

.w25 {
  width: 25% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.gmap {
  width: 100%;
  border: 1px solid var(--clr_gray_light);
  overflow: hidden;
}

.btn_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -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;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-radius: 100vh;
  padding: 1rem 3rem;
  background: var(--clr_green);
}
.btn_map::before {
  font-family: "fontello";
  content: "\e811";
  font-size: 120%;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .btn_map {
    padding: 1.8rem 5.8rem;
    border: 2px solid var(--clr_green);
    gap: 0 1rem;
  }
  .btn_map:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_green);
    opacity: 1;
  }
}

.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: 12rem;
  background: var(--clr_green_light2);
  font-size: 2.2rem;
  color: var(--clr_green_dark);
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-weight: normal;
  padding: 1rem;
  text-align: center;
  margin-top: 14.8rem;
  position: relative;
  z-index: 1;
}
.tit_01::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: url(../img/a_index_news_bg.webp) no-repeat center top/200% auto;
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.tit_02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: 0 auto 2rem;
  font-family: "Zen Maru Gothic", serif;
}
.tit_02::after {
  content: "";
  width: 3rem;
  height: 0.5rem;
  background: url(../img/tit_02.svg) no-repeat center/100% auto;
  display: block;
  margin: 0.5rem auto 0;
}

body:is(.index) .tit_02::after {
  background: none;
  content: attr(data-txt);
  text-align: center;
  color: var(--clr_green_dark3);
  font-size: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: 0 auto;
  white-space: nowrap;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0.3rem 5rem 0.3rem 1rem;
  background: var(--clr_green);
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  position: relative;
}
.tit_03::after {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(../img/tit_03.png) no-repeat top center/100% auto;
  position: absolute;
  top: -1.5rem;
  right: 0;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0 1rem 0.8rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  border-bottom: 1px dotted var(--clr_green);
  position: relative;
}
.tit_04::before {
  content: "";
  width: 3px;
  height: calc(100% - 0.8rem);
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, var(--clr_green)), color-stop(50%, var(--clr_green_dark3)));
  background: linear-gradient(to bottom, var(--clr_green) 50%, var(--clr_green_dark3) 50%);
}

.tit_05 {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  margin: 0 0 1rem;
  padding: 0 1rem 0 2.5rem;
  background: url(../img/a_index_feat_tit.svg) no-repeat top 0.3rem left/1.5rem auto;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  margin: 0 0 1rem;
  color: var(--clr_green);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 28rem;
    font-size: 4.4rem;
    margin-top: 18.2rem;
  }
  .tit_01::after {
    background: url(../img/a_index_news_bg.webp) no-repeat center top/200rem auto;
  }
  .tit_02 {
    font-size: 3.8rem;
    margin: 0 auto 3rem;
  }
  .tit_02::after {
    width: 5.8rem;
    height: 0.9rem;
    margin: 1rem auto 0;
  }
  body:is(.index) .tit_02::after {
    font-size: 1.6rem;
    margin: 0.3rem auto 0;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin: 0 0 3rem;
    padding: 1rem 9rem 1rem 2rem;
  }
  .tit_03::after {
    width: 9.5rem;
    height: 8.5rem;
    top: -3rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
    padding: 0 1rem 1rem 2rem;
  }
  .tit_04::before {
    width: 4px;
    height: calc(100% - 1rem);
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    padding: 0 1rem 0 3rem;
    background: url(../img/a_index_feat_tit.svg) no-repeat top 0.5rem left/2.1rem auto;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 0.6rem;
}
.lst_ul > li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--clr_green_dark3);
  position: absolute;
  left: 0;
  top: 0.4em;
}
.lst_ul > li.kome::before {
  background: none;
  width: 1em;
  height: 1em;
  top: 0;
  content: "※";
  color: var(--clr_txt);
}
.lst_ul.kome > li {
  padding: 0 0 0 1.4em;
}
.lst_ul.kome > li::before {
  background: none;
  width: 1em;
  height: 1em;
  top: 0;
  content: "※";
  color: var(--clr_txt);
}
@media screen and (min-width: 48em), print {
  .lst_ul li {
    padding: 0 0 0 1.2em;
  }
  .lst_ul li::before {
    width: 0.7rem;
    height: 0.7rem;
  }
}

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

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 0.4rem;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  content: counter(number) ".";
  color: var(--clr_green_dark3);
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}

.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_dl02 > dt {
  background: var(--clr_green_light2);
  border-top: 1px solid var(--clr_gray_dark);
  border-bottom: 1px solid var(--clr_gray_dark);
  text-align: center;
  padding: 1rem;
  font-family: "Zen Maru Gothic", serif;
}
.lst_dl02 > dd {
  padding: 1rem;
  background: #fff;
}
.lst_dl02 > dd:last-of-type {
  border-bottom: 1px solid var(--clr_gray_dark);
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl02 > dt,
  .lst_dl02 > dd {
    width: 50%;
  }
  .lst_dl02 > dt {
    border-bottom: none;
    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;
    padding: 2rem 1rem;
  }
  .lst_dl02 > dt:last-of-type {
    border-bottom: 1px solid var(--clr_gray_dark);
  }
  .lst_dl02 > dd {
    border-top: 1px solid var(--clr_gray_dark);
    padding: 2rem;
  }
  .lst_dl02.dt_small > dt {
    width: 30%;
  }
  .lst_dl02.dt_small > dd {
    width: 70%;
  }
}
.lst_dl02.price > dt {
  background: var(--clr_brown_light);
}
.lst_dl02.price > dd {
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .lst_dl02.price > dd {
    text-align: right;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  background: var(--clr_gray_light3);
  padding: 1rem;
  position: relative;
  border-radius: 1rem;
}
.lst_flow > li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  background: var(--clr_green);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  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;
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: "Zen Maru Gothic", serif;
}
.lst_flow > li .tit {
  font-size: 1.6rem;
  padding: 0 0 0 4.5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  margin: 0 0 2rem;
}
.lst_flow > li:not(:last-of-type) {
  margin: 0 0 5rem;
}
.lst_flow > li:not(:last-of-type)::after {
  content: "";
  width: 2.5rem;
  height: 1.8rem;
  background: var(--clr_green);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lst_flow li.no_tit {
  padding: 5rem 1rem 1rem;
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 2rem 2rem 2rem 9.5rem;
    border-radius: 1.5rem;
  }
  .lst_flow > li::before {
    font-size: 2.6rem;
    width: 5rem;
    height: 5rem;
    top: 2rem;
    left: 2rem;
  }
  .lst_flow > li .tit {
    font-size: 2.4rem;
    padding: 0;
  }
  .lst_flow > li:not(:last-of-type) {
    margin: 0 0 8.5rem;
  }
  .lst_flow > li:not(:last-of-type)::after {
    width: 3.5rem;
    height: 2.8rem;
    bottom: -6rem;
  }
  .lst_flow li.no_tit {
    padding: 3rem 2rem 3rem 9.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_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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0 0.4rem;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e80f";
  background: var(--clr_green);
  color: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 60%;
  line-height: 1;
  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;
}
@media screen and (min-width: 48em), print {
  .tel_style {
    gap: 1rem;
    padding: 0 0 0.5rem;
  }
  .tel_style::before {
    width: 4.06rem;
    height: 4.06rem;
    margin: 0.5rem 0 0;
  }
}

.box_green,
.box_brown {
  padding: 1rem;
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_green,
  .box_brown {
    padding: 3rem;
    border-radius: 1.5rem;
  }
}

.box_green {
  background: var(--clr_green_light2);
}

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

.btn_rsv,
.btn_monshin,
.btn_online {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -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;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-radius: 100vh;
  padding: 1rem 2rem;
  font-family: "Zen Maru Gothic", serif;
}
@media screen and (min-width: 48em), print {
  .btn_rsv,
  .btn_monshin,
  .btn_online {
    gap: 1rem;
    padding: 1.7rem;
  }
}

.btn_rsv {
  background: var(--clr_green);
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e80d";
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    border: 2px solid var(--clr_green);
  }
  .btn_rsv:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_green);
    opacity: 1;
  }
}

.btn_monshin {
  background: var(--clr_green_dark3);
}
.btn_monshin::before {
  font-family: "fontello";
  content: "\e801";
}
@media screen and (min-width: 48em), print {
  .btn_monshin {
    border: 2px solid var(--clr_green_dark3);
  }
  .btn_monshin:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_green_dark3);
    opacity: 1;
  }
}

.btn_online {
  background: var(--clr_orange);
}
.btn_online::before {
  font-family: "fontello";
  content: "\e80e";
}
@media screen and (min-width: 48em), print {
  .btn_online {
    border: 2px solid var(--clr_orange);
  }
  .btn_online:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_orange);
    opacity: 1;
  }
}

.btn_green,
.btn_orange,
.btn_white {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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 0.5rem;
  padding: 1rem 2.5rem 1rem 2rem;
  margin: auto;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  border-radius: 100vh;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.btn_green::before,
.btn_orange::before,
.btn_white::before {
  font-family: "fontello";
  content: "\e80a";
  font-size: 70%;
}
.btn_green.out::before,
.btn_orange.out::before,
.btn_white.out::before {
  display: none;
}
.btn_green.out::after,
.btn_orange.out::after,
.btn_white.out::after {
  font-family: "fontello";
  content: "\f08e";
}
@media screen and (min-width: 48em), print {
  .btn_green,
  .btn_orange,
  .btn_white {
    margin: 0;
    padding: 1.5rem 6rem 1.5rem 5rem;
  }
}

.btn_green {
  background: var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .btn_green {
    border: 2px solid var(--clr_green);
  }
  .btn_green:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_green);
    opacity: 1;
  }
}

.btn_orange {
  background: var(--clr_orange);
}
@media screen and (min-width: 48em), print {
  .btn_orange {
    border: 2px solid var(--clr_orange);
  }
  .btn_orange:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_orange);
    opacity: 1;
  }
}

.btn_white {
  background: #fff;
  border: 2px solid var(--clr_green_dark3);
  padding: 0.9rem 2.4rem 0.9rem 1.9rem;
  color: var(--clr_green_dark3);
}
@media screen and (min-width: 48em), print {
  .btn_white {
    padding: 1.5rem 6rem 1.5rem 5rem;
  }
  .btn_white:is(:hover, :focus-visible) {
    color: #fff;
    background: var(--clr_green_dark3);
    opacity: 1;
  }
}

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

.txt_link {
  color: var(--clr_green_dark3);
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  .txt_link:hover {
    text-decoration: none;
    opacity: 1;
  }
}

.lst_anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.lst_anc li {
  min-width: 40%;
}
.lst_anc li a {
  color: var(--clr_green_dark3);
  border: 2px solid var(--clr_green_dark3);
  border-radius: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.7rem 1rem;
  line-height: 1.4;
  text-decoration: none !important;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
}
.lst_anc li a::before {
  font-family: "fontello";
  content: "\f103";
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 2rem;
  }
  .lst_anc li {
    min-width: auto;
  }
  .lst_anc li a {
    font-size: 1.8rem;
    padding: 1.3rem 2rem;
    gap: 1rem;
  }
  .lst_anc li a::before {
    margin: 0.2rem 0 0;
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    background: var(--clr_green_dark3);
    color: #fff !important;
  }
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    position: absolute;
    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;
    z-index: 5;
    width: 5rem;
    height: 5rem;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 5rem;
    color: var(--clr_brown_dark);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\e805";
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\e809";
  }
}
.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_dark2);
}
.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: "Hiragino Sans", "Yu Gothic medium", "Yu Gothic", "游ゴシック Medium", Meiryo, sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_brown), 0.5);
  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;
  -webkit-backdrop-filter: blur(0.6rem);
  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;
  }
}
:target {
  scroll-margin-top: 7rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 6rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.header.hide {
  -webkit-transform: translateY(-8rem);
          transform: translateY(-8rem);
}
.header > .wrap .logo {
  width: 100%;
  height: 5rem;
  padding: 1rem;
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 4.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 li {
  text-align: center;
}
.header > .wrap .headR ul li.add {
  display: none;
}
.header > .wrap .headR ul li .tel_style {
  font-size: 2rem;
}
.header > .wrap .headR .btn_wrap {
  display: none;
}
.header .sp_menu_bar {
  margin: 1rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .sp_menu_bar > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header .sp_menu_bar > li:not(:last-of-type) {
  border-right: 1px dotted var(--clr_gray_dark);
}
.header .sp_menu_bar > li a, .header .sp_menu_bar > li .sub {
  background: #fff;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
  line-height: 1;
  font-size: 1.1rem;
  font-family: "Zen Maru Gothic", serif;
  width: 100%;
}
.header .sp_menu_bar > li a::before, .header .sp_menu_bar > li .sub::before {
  display: block;
  font-size: 1.8rem;
  color: var(--clr_green);
  line-height: 1.2;
}
.header .sp_menu_bar > li a.sp_home::before, .header .sp_menu_bar > li .sub.sp_home::before {
  font-family: "fontello";
  content: "\e829";
}
.header .sp_menu_bar > li a.sp_clinic::before, .header .sp_menu_bar > li .sub.sp_clinic::before {
  font-family: "fontello";
  content: "\e82a";
}
.header .sp_menu_bar > li a.sp_tre::before, .header .sp_menu_bar > li .sub.sp_tre::before {
  font-family: "fontello";
  content: "\e82b";
}
.header .sp_menu_bar > li a.sp_first::before, .header .sp_menu_bar > li .sub.sp_first::before {
  font-family: "fontello";
  content: "\e82c";
}
.header .sp_menu_bar > li a.sp_acs::before, .header .sp_menu_bar > li .sub.sp_acs::before {
  font-family: "fontello";
  content: "\e82d";
}
.header .sp_menu_bar > li a.sp_clinic::after, .header .sp_menu_bar > li a.sp_tre::after, .header .sp_menu_bar > li .sub.sp_clinic::after, .header .sp_menu_bar > li .sub.sp_tre::after {
  font-family: "fontello";
  content: "\e80b";
  color: var(--clr_green);
  display: block;
}
.header .sp_menu_bar > li a.sp_clinic.close::after, .header .sp_menu_bar > li a.sp_tre.close::after, .header .sp_menu_bar > li .sub.sp_clinic.close::after, .header .sp_menu_bar > li .sub.sp_tre.close::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.header .sp_menu_bar > li a > span, .header .sp_menu_bar > li .sub > span {
  height: 2.5rem;
  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;
}
.header .sp_menu_bar > li .subbox {
  display: none;
  position: absolute;
  top: 16rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  z-index: 100;
  max-height: calc(100dvh - 17rem);
  overflow: hidden auto;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0 0.4rem 1rem rgba(var(--rgb_gray_dark2), 0.1);
          box-shadow: 0 0.4rem 1rem rgba(var(--rgb_gray_dark2), 0.1);
}
.header .sp_menu_bar > li .subbox .subnav li:not(:last-of-type) {
  border-bottom: 1px solid var(--clr_gray_light2);
}
.header .sp_menu_bar > li .subbox .subnav li a {
  min-height: 4rem;
  padding: 0.5rem;
  line-height: 1.125;
  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;
}
.header .sp_menu_bar > li .subbox .subnav li a.current {
  background: var(--clr_green_dark3);
  color: #fff;
}
.header .sp_menu_bar > li .subbox dl dt {
  padding: 0.5rem 1rem;
  background: var(--clr_green);
  color: #fff;
  letter-spacing: 0.1em;
}
.header .sp_menu_bar > li .subbox dl dd .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .sp_menu_bar > li .subbox dl dd .subnav li {
  width: 50%;
}
.header .sp_menu_bar > li .subbox dl dd .subnav li:nth-child(2n+1) {
  border-right: 1px solid var(--clr_gray_light2);
}
.header .sp_menu_bar > li .subbox dl dd .subnav li:nth-child(2n+1):nth-last-child(2) {
  border-bottom: none;
}
.header .sp_menu_bar > li .subbox dl dd .subnav li a > span {
  display: block;
}
.header .sp_menu_bar > li .subbox dl dd .subnav li a > span > span {
  display: block;
  font-size: 1rem;
}

@media screen and (min-width: 48em), print {
  .header {
    width: 100%;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  .header.hide {
    -webkit-transform: translateY(-13rem);
            transform: translateY(-13rem);
  }
  .header > .wrap {
    padding: 2rem 1rem 1rem;
    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;
  }
  .header > .wrap .logo {
    width: 46%;
    height: 8rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    width: 54%;
    margin: 0;
    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: 0 1rem;
    font-size: 1.6rem;
    font-family: "Zen Maru Gothic", serif;
  }
  .header > .wrap .headR ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header > .wrap .headR ul li.add {
    display: block;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .header > .wrap .headR ul li.add span {
    display: block;
  }
  .header > .wrap .headR ul li .tel_style {
    font-size: 3.4rem;
  }
  .header > .wrap .headR ul li .tel_style::before {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 50%;
  }
  .header > .wrap .headR .btn_wrap {
    display: block;
    width: 29rem;
  }
  .header > .wrap .headR .btn_wrap .btn_online {
    width: 100%;
    padding: 1rem 0;
  }
  .header > .wrap .headR .btn_wrap .web_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 0 0 1rem;
  }
  .header > .wrap .headR .btn_wrap .web_wrap .btn_rsv,
  .header > .wrap .headR .btn_wrap .web_wrap .btn_monshin {
    padding: 1rem 0;
    width: 100%;
  }
  .header > .wrap .sp_menu_bar {
    display: none;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 5rem;
  height: 5rem;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: var(--clr_green);
  border-radius: 0 0 0 0.5rem;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu span {
  width: 2.5rem;
  height: 3px;
  background: #fff;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#nav #sp_menu span:nth-of-type(1) {
  top: 34%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(2) {
  top: 50%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(3) {
  top: 66%;
  left: 50%;
}
#nav #sp_menu.close span {
  top: 50%;
}
#nav #sp_menu.close span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg) rotateY(360deg);
          transform: translate(-50%, -50%) rotateZ(-45deg) rotateY(360deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#nav #sp_menu.close span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotateY(360deg);
          transform: translate(-50%, -50%) rotateY(360deg);
}
#nav #sp_menu.close span:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg) rotateY(360deg);
          transform: translate(-50%, -50%) rotateZ(45deg) rotateY(360deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#nav .gnav_subnav {
  display: none;
  width: 100%;
  font-family: "Zen Maru Gothic", serif;
  max-height: calc(100dvh - 7.5rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 7.5rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li.gnav_n {
  display: none;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  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;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_green_dark3);
}
#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;
  font-size: 65%;
  color: var(--clr_green);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.4rem 1rem rgba(var(--rgb_gray_dark2), 0.1);
          box-shadow: 0 0.4rem 1rem rgba(var(--rgb_gray_dark2), 0.1);
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:not(:last-of-type) {
  border-bottom: 1px solid var(--clr_gray_light2);
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  min-height: 4rem;
  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;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.125;
  color: var(--clr_txt);
  font-size: 1.2rem;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a.current {
  background: var(--clr_green_dark3);
  color: #fff;
}
#nav .gnav_subnav .gnav > li .subbox dl dt {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  background: var(--clr_green);
  color: #fff;
  letter-spacing: 0.1em;
}
#nav .gnav_subnav .gnav > li .subbox dl dd .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#nav .gnav_subnav .gnav > li .subbox dl dd .subnav li {
  width: 50%;
}
#nav .gnav_subnav .gnav > li .subbox dl dd .subnav li:nth-child(2n+1) {
  border-right: 1px solid var(--clr_gray_light2);
}
#nav .gnav_subnav .gnav > li .subbox dl dd .subnav li:nth-child(2n+1):nth-last-child(2) {
  border-bottom: none;
}
#nav .gnav_subnav .gnav > li .subbox dl dd .subnav li a {
  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;
}
#nav .gnav_subnav .gnav > li .subbox dl dd .subnav li a > span > span {
  display: block;
  font-size: 1rem;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: var(--clr_txt);
  background: rgba(var(--rgb_green), 0.2);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
  border-radius: 0.5rem;
}
#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: static;
    z-index: 100;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    padding: 0.5rem 1rem 1.5rem;
    margin: auto;
    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;
  }
  #nav .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
    border-right: 1px dotted var(--clr_gray_dark);
  }
  #nav .gnav_subnav .gnav > li:first-of-type {
    border-left: 1px dotted var(--clr_gray_dark);
  }
  #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.8rem;
    margin: 0;
    padding: 0.2rem 1rem;
    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_green_dark3);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 1rem;
    min-width: 25rem;
    position: absolute;
    top: 151%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
    background: #fff;
    -webkit-box-shadow: 0 0.8rem 2rem rgba(var(--rgb_gray_dark2), 0.1);
            box-shadow: 0 0.8rem 2rem rgba(var(--rgb_gray_dark2), 0.1);
    max-height: calc(100dvh - 19rem);
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
  #nav .gnav_subnav .gnav > li .subbox .subnav li a {
    padding: 0.6rem 1rem;
    font-size: 1.6rem;
    white-space: nowrap;
  }
  #nav .gnav_subnav .gnav > li .subbox .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--clr_green_dark3);
    color: #fff;
  }
  #nav .gnav_subnav .gnav > li.treatment .subbox {
    width: 44.85rem;
  }
  #nav .gnav_subnav .gnav > li.treatment .subbox dl dt {
    font-size: 1.8rem;
    padding: 0.7rem;
  }
  #nav .gnav_subnav .gnav > li.treatment .subbox dl dd .subnav li a > span > span {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  background: var(--clr_green_light2);
  padding: 2rem 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  font-family: "Zen Maru Gothic", serif;
  position: relative;
  z-index: 1;
}
.overview::after {
  content: "";
  width: 100%;
  height: 16.5rem;
  background: url(../img/a_index_news_bg.webp) no-repeat center top/150% auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
.overview .clinic_name {
  margin: 0 0 2rem;
}
.overview > .wrap .overviewL .add {
  text-align: center;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .add span {
  display: block;
}
.overview > .wrap .overviewL ul {
  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: 2rem;
}
.overview > .wrap .overviewL ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview > .wrap .overviewL ul li .tel_style {
  font-size: 1.8rem;
}
.overview > .wrap .overviewL ul li.parking {
  border: 1px solid var(--clr_green_dark);
  color: var(--clr_green_dark);
  gap: 0.5rem;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0.2rem 1rem;
}
.overview > .wrap .overviewL ul li.parking::before {
  font-family: "fontello";
  content: "\e814";
  font-size: 110%;
}
.overview > .wrap .overviewL .btn_wrap {
  margin: 1rem 0;
  padding: 0 2rem;
}
.overview > .wrap .overviewL .btn_wrap a {
  margin: 0 auto 0.5rem;
  width: 100%;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  letter-spacing: 0.05em;
  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;
  font-size: 1.2rem;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 23%;
  padding: 0.4rem;
  color: var(--clr_green_dark);
  border: 1px solid var(--clr_green_dark);
  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;
  text-align: center;
  margin: 0 0 0.5rem;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 77%;
  padding: 0.4rem 0 0.4rem 1rem;
  margin: 0 0 0.5rem;
}
.overview > .wrap .overviewL .gaiyo dd.acc span {
  font-size: 137.5%;
  line-height: 1;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 1rem 0 2rem;
}
.overview > .wrap .overviewL_bottom {
  width: 100%;
}
.overview > .wrap .overviewR_bottom {
  margin: 2rem 0;
}
.overview > .wrap .overviewR_bottom .gmap {
  height: 100vw;
}
.overview > .wrap .overview_bottom .btn_map {
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 4rem 0;
    font-size: 1.8rem;
  }
  .overview::after {
    height: 67rem;
    background: url(../img/a_index_news_bg.webp) no-repeat center top/200rem auto;
  }
  .overview .clinic_name {
    margin: 0 0 5.5rem;
  }
  .overview .clinic_name img {
    max-width: 65rem;
    margin: auto;
  }
  .overview > .wrap {
    padding: 0 1rem;
    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: 4.5rem 0;
  }
  .overview > .wrap > div:not(.overview_bottom) {
    width: 47.5%;
  }
  .overview > .wrap .overviewL ul li .tel_style {
    font-size: 4rem;
  }
  .overview > .wrap .overviewL ul li.parking {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0.5rem 3.8rem;
    gap: 1rem;
  }
  .overview > .wrap .overviewL .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
    padding: 0;
  }
  .overview > .wrap .overviewL .btn_wrap a {
    width: auto;
    margin: 0;
  }
  .overview > .wrap .overviewL .btn_wrap a.btn_online {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .overview > .wrap .overviewL .gaiyo {
    font-size: 1.6rem;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    margin: 0 0 0.8rem;
    width: 16%;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    margin: 0 0 0.8rem;
    width: 84%;
    padding: 0.4rem 0 0.4rem 2rem;
  }
  .overview > .wrap .overviewR .tbl_time {
    font-size: 1.6rem;
    margin: 0;
  }
  .overview > .wrap .overviewR .tbl_time caption {
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=col]:first-of-type {
    width: 26%;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=col]:last-child {
    width: 13%;
    padding: 0 2rem 0 0;
  }
  .overview > .wrap .overviewR .tbl_time tr th[scope=row] {
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewR .tbl_time tr td {
    padding: 1.7rem 0;
  }
  .overview > .wrap .overviewR .tbl_time tr td:last-child {
    padding: 0 2rem 0 0;
  }
  .overview > .wrap .overviewR_bottom {
    margin: 0;
  }
  .overview > .wrap .overviewR_bottom .gmap {
    height: 100%;
  }
  .overview > .wrap .overview_bottom {
    width: 100%;
    text-align: center;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.2rem;
  -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);
  font-family: "Zen Maru Gothic", serif;
}
#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,
#tel_up ul li .btn_monshin,
#tel_up ul li .btn_online {
  height: 100%;
  border-radius: 0;
  padding: 0;
  width: 100%;
}
#tel_up #pageup {
  position: absolute;
  bottom: 5rem;
  right: 1rem;
  left: auto;
  display: block;
  width: 4rem;
  height: 4rem;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding: 0;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  border-radius: 50%;
  background: var(--clr_green_dark3);
  overflow: hidden;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e80c";
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6.5rem;
    height: 6.5rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    position: static;
    border: 2px solid var(--clr_green_dark3);
  }
  #tel_up #pageup::before {
    margin: 0 0 0.3rem;
    font-size: 1.4rem;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_green_dark3);
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
}
.footer .copy {
  font-family: "Zen Maru Gothic", serif;
  display: block;
  background: var(--clr_green);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4rem 0 0;
  }
  .footer .copy {
    margin: 4rem 0 0;
    font-size: 1.6rem;
    padding: 2rem 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-family: "Zen Maru Gothic", serif;
    margin: 0 0 0.5rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 0.5rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a br {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.clinic_menu, .footer ul li.treatment, .footer ul li.first_menu {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  margin-top: 14.8rem;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 62vw;
  background: var(--clr_green_light2);
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 20rem !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;
  left: 0;
  right: 0;
  padding: 0 1rem;
}
.keyvsl > .wrap .catch {
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.58;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 0 0.5rem #333, 0 0 0.5rem #333, 0 0 0.5rem #333;
  opacity: 0;
  -webkit-animation: fadein 1.5s forwards ease;
          animation: fadein 1.5s forwards ease;
}
.keyvsl > .wrap ul li {
  color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.05em;
}
.keyvsl > .wrap ul li.open {
  background: rgba(var(--rgb_green), 0.8);
  margin-bottom: 0.5rem;
}
.keyvsl > .wrap ul li.show {
  background: rgba(var(--rgb_brown), 0.8);
}
.keyvsl > .wrap ul li span {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin-top: 18.2rem;
  }
  .keyvsl #keyvsl {
    height: 76rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 76rem !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 {
    padding: 0;
    bottom: 6.5rem;
  }
  .keyvsl > .wrap .catch {
    font-size: 3.4rem;
    text-shadow: 0 0 1rem #333, 0 0 1rem #333, 0 0 1rem #333;
    margin: 0 0 3rem;
  }
  .keyvsl > .wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .keyvsl > .wrap ul li {
    font-size: 2.8rem;
    width: 50rem;
    padding: 1.3rem 1rem;
  }
  .keyvsl > .wrap ul li.open {
    margin-bottom: 0;
  }
  .keyvsl > .wrap ul li span {
    font-size: 2rem;
  }
}
.top_vaccination {
  background: var(--clr_green_light2);
  padding: 4rem 1rem 0;
}
.top_vaccination > div {
  opacity: 0;
}
.top_vaccination > div.trigger {
  -webkit-animation: fade_up 1s forwards ease;
          animation: fade_up 1s forwards ease;
}
.top_vaccination h2 {
  color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.05em;
  background: var(--clr_green);
  border-radius: 1rem 1rem 0 0;
}
.top_vaccination ul {
  margin: 0;
  padding: 1rem 1rem 1rem 1.5rem;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
}

@media screen and (min-width: 48em), print {
  .top_vaccination {
    padding: 6rem calc((100% - 89rem) / 2) 2rem;
  }
  .top_vaccination h2 {
    font-size: 2.4rem;
    padding: 1rem;
    margin: 0;
    border-radius: 2rem 2rem 0 0;
  }
  .top_vaccination ul {
    padding: 3rem 3rem 3rem 4rem;
    border-radius: 0 0 2rem 2rem;
  }
  .top_vaccination ul li {
    font-size: 1.8rem;
  }
}
.time_schedule {
  background: var(--clr_green_light2);
  padding: 4rem 1rem;
}
.time_schedule > div {
  opacity: 0;
}
.time_schedule > div.trigger {
  -webkit-animation: fade_up 1s forwards ease;
          animation: fade_up 1s forwards ease;
}

@media screen and (min-width: 48em), print {
  .time_schedule {
    padding: 3rem calc((100% - 89rem) / 2) 5rem;
  }
  .time_schedule .tit_02 {
    margin: 0 auto 2.5rem;
  }
}
.info {
  padding: 3rem 1rem;
  background: url(../img/index_news_grid.svg) repeat;
  position: relative;
  z-index: 1;
}
.info::before {
  content: "";
  width: 100%;
  height: 10rem;
  background: url(../img/a_index_news_bg.webp) no-repeat center top/250% auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.11;
  z-index: -1;
}
.info dl {
  padding: 0 0 2rem;
  border-bottom: 1px dotted var(--clr_txt);
  opacity: 0;
}
.info dl.trigger {
  -webkit-animation: fade_up 1s forwards ease;
          animation: fade_up 1s forwards ease;
}
.info dl dt {
  font-family: "Zen Maru Gothic", serif;
}
.info dl dt .date {
  color: var(--clr_green_dark2);
  background: var(--clr_green_light);
  display: block;
  border-radius: 100vh;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0 1rem;
  margin: 0 0 0.5rem;
}
.info dl dt > div {
  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;
  color: var(--clr_green_dark3);
  cursor: pointer;
  line-height: 1.4;
}
.info dl dt > div::before {
  font-family: "fontello";
  content: "\e813";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.info dl dt.close > div::before {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.info dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px dotted var(--clr_txt);
}
.info dl dd {
  margin: 0 0 1.6rem;
}
.info dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 4.5rem calc((100% - 90.3rem) / 2);
    font-size: 1.8rem;
  }
  .info .tit_02 {
    margin: 0 auto 1rem;
  }
  .info::before {
    width: 100%;
    height: 67rem;
    background: url(../img/a_index_news_bg.webp) no-repeat center top/200rem auto;
  }
  .info dl dt {
    margin: 0 0 1rem;
  }
  .info dl dt .date {
    padding: 0 2rem;
    margin: 0 0 1rem;
  }
  .info dl dt > div {
    font-size: 2.4rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .info dl dt > div::before {
    margin-right: 1rem;
  }
  .info dl dt > div:hover {
    color: var(--clr_green);
  }
  .info dl dt:not(:first-of-type) {
    margin: 2rem 0 0.6rem;
    padding: 3rem 0 0;
  }
  .info dl dd {
    margin: 0 0 1.6rem;
  }
}
.feature {
  padding: 3rem 1rem;
}
.feature > ul {
  counter-reset: number 0;
}
.feature > ul > li::before {
  content: "";
  width: 100%;
  height: 25rem;
  display: block;
  border-radius: 1.5rem;
  opacity: 0;
}
.feature > ul > li:not(:last-of-type) {
  margin-bottom: 5rem;
}
.feature > ul > li.feat01::before {
  background: url(../img/index_feat01.jpg) no-repeat center/cover;
}
.feature > ul > li.feat02::before {
  background: url(../img/index_feat02.jpg) no-repeat center/cover;
}
.feature > ul > li.feat03::before {
  background: url(../img/index_feat03.jpg) no-repeat center/cover;
}
.feature > ul > li.feat04::before {
  background: url(../img/index_feat04.jpg) no-repeat center/cover;
}
.feature > ul > li.feat05::before {
  background: url(../img/index_feat05.jpg) no-repeat center/cover;
}
.feature > ul > li.trigger::before {
  -webkit-animation: fadein 1s forwards ease;
          animation: fadein 1s forwards ease;
}
.feature > ul > li .txt_wrap .feature {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  padding: 1.5rem 0 0 5rem;
  display: block;
  line-height: 1.2;
  margin: 2rem 0;
  background: url(../img/a_index_feat_tit.svg) no-repeat center left/3.5rem auto;
  position: relative;
}
.feature > ul > li .txt_wrap .feature::after {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  color: var(--clr_green_dark3);
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 16rem;
  opacity: 0;
}
.feature > ul > li .txt_wrap .feature.trigger::after {
  -webkit-animation: spin_down 0.8s forwards ease;
          animation: spin_down 0.8s forwards ease;
}
.feature > ul > li .txt_wrap .tit {
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.46;
  font-weight: normal;
  font-size: 2rem;
  padding: 0 0 1.5rem;
  margin: 0 0 2rem;
  border-bottom: 1px dotted var(--clr_txt);
}
.feature > ul > li .txt_wrap .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 2rem 0 0;
}
.feature > ul > li .txt_wrap .btn_wrap .btn_green {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 5rem calc((100% - 118rem) / 2) 8rem;
  }
  .feature > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .feature > ul > li::before {
    width: 59rem;
    height: 50rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 3rem;
  }
  .feature > ul > li:nth-of-type(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .feature > ul > li:not(:last-of-type) {
    margin-bottom: 13.5rem;
  }
  .feature > ul > li .txt_wrap {
    font-size: 1.8rem;
    width: 52rem;
  }
  .feature > ul > li .txt_wrap .feature {
    font-size: 3.8rem;
    padding: 2rem 0 0 9rem;
    margin: 0 0 3.5rem;
    background: url(../img/a_index_feat_tit.svg) no-repeat center left/5.5rem auto;
  }
  .feature > ul > li .txt_wrap .feature::after {
    font-size: 7rem;
    left: 28rem;
    top: -0.7rem;
  }
  .feature > ul > li .txt_wrap .tit {
    font-size: 3rem;
    padding: 0 1rem 3.3rem 0;
    margin: 0 0 3rem;
  }
  .feature > ul > li .txt_wrap .lst_ul li {
    line-height: 1.55;
  }
  .feature > ul > li .txt_wrap .btn_wrap {
    gap: 2rem;
    margin: 3rem 0 0;
  }
  .feature > ul > li .txt_wrap .btn_wrap .btn_green {
    min-width: 25rem;
  }
}
.tre {
  padding: 3rem 1rem 3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(35%, transparent)), url(../img/index_tre_bg.jpg) no-repeat center/cover;
  background: linear-gradient(to bottom, #fff 0%, transparent 35%), url(../img/index_tre_bg.jpg) no-repeat center/cover;
}
.tre > section:not(:last-of-type) {
  margin: 0 0 3rem;
}
.tre > section > .tit {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.1em;
  font-weight: normal;
  background: var(--clr_green);
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 0 0 1.5rem;
}
.tre > section .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 1rem;
}
.tre > section .subnav.trigger li {
  -webkit-animation: fadein 1s forwards ease;
          animation: fadein 1s forwards ease;
}
.tre > section .subnav li {
  opacity: 0;
}
.tre > section .subnav li a {
  width: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  font-family: "Zen Maru Gothic", serif;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 1.3rem 0.5rem;
  border-radius: 1rem;
  background: #fff;
  line-height: 1;
  font-size: 1.3rem;
}
.tre > section .subnav li a::before {
  color: var(--clr_green_dark3);
  display: block;
  font-size: 3.4rem;
}
.tre > section .subnav li a::after {
  content: attr(data-txt);
  display: block;
  color: var(--clr_gray);
  font-size: 1rem;
}
.tre > section .subnav li a.internal_medicine::before {
  font-family: "fontello";
  content: "\e817";
}
.tre > section .subnav li a.lifestyle_related_diseases::before {
  font-family: "fontello";
  content: "\e81a";
}
.tre > section .subnav li a.fever::before {
  font-family: "fontello";
  content: "\e81b";
}
.tre > section .subnav li a.sleep_apnea_syndrome::before {
  font-family: "fontello";
  content: "\e81c";
}
.tre > section .subnav li a.allergic_diseases::before {
  font-family: "fontello";
  content: "\e81d";
}
.tre > section .subnav li a.smoking::before {
  font-family: "fontello";
  content: "\e81e";
}
.tre > section .subnav li a.gastroenterology::before {
  font-family: "fontello";
  content: "\e81f";
}
.tre > section .subnav li a.gastroscope::before {
  font-family: "fontello";
  content: "\e820";
}
.tre > section .subnav li a.colon_camera::before {
  font-family: "fontello";
  content: "\e821";
}
.tre > section .subnav li a.ultrasound_examination::before {
  font-family: "fontello";
  content: "\e822";
}
.tre > section .subnav li a.vaccination::before {
  font-family: "fontello";
  content: "\e823";
}
.tre > section .subnav li a.checkup::before {
  font-family: "fontello";
  content: "\e824";
}
.tre > section .subnav li a.medical_checkup::before {
  font-family: "fontello";
  content: "\e82e";
}
.tre > section .subnav li a.nutritional_guidance::before {
  font-family: "fontello";
  content: "\e826";
}
.tre > section .subnav li a.chinese_medicine::before {
  font-family: "fontello";
  content: "\e827";
}
.tre > section .subnav li a.free_medical_treatment::before {
  font-family: "fontello";
  content: "\e828";
}
.tre > section .subnav li a > span > span {
  display: block;
  font-size: 80%;
  line-height: 1.2;
}
.tre > section > section {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  margin: 2rem 0 0;
  border: 1px solid var(--clr_orange);
  opacity: 0;
}
.tre > section > section.trigger {
  -webkit-animation: fadein 1s forwards ease;
          animation: fadein 1s forwards ease;
}
.tre > section > section > .tit {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px dotted var(--clr_brown_dark2);
  margin: 0 0 2rem;
}
.tre > section > section > .tit span {
  font-size: 2rem;
  color: var(--clr_orange);
}
.tre > section > section ul li {
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.tre > section > section ul li::before {
  font-family: "fontello";
  content: "\e807";
  color: var(--clr_orange);
  margin: 0 0.5rem 0 0;
}
.tre > section > section.desiese {
  border: 1px solid var(--clr_green_dark4);
  margin: 1rem 0 0;
}
.tre > section > section.desiese > .tit span {
  color: var(--clr_green_dark4);
}
.tre > section > section.desiese ul {
  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;
}
.tre > section > section.desiese ul li {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tre > section > section.desiese ul li::before {
  color: var(--clr_green);
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 4rem calc((100% - 118rem) / 2) 10rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(15rem, rgba(255, 255, 255, 0.9)), color-stop(30rem, transparent)), url(../img/index_tre_bg.jpg) no-repeat center bottom/200rem auto;
    background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0.9) 15rem, transparent 30rem), url(../img/index_tre_bg.jpg) no-repeat center bottom/200rem auto;
  }
  .tre > section:not(:last-of-type) {
    margin-bottom: 5rem;
  }
  .tre > section > .tit {
    font-size: 2.4rem;
    padding: 1rem;
    margin: 0 0 2rem;
    border-radius: 2rem 2rem 0 0;
  }
  .tre > section .subnav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.2rem 1.3rem;
  }
  .tre > section .subnav li a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 28.5rem;
    height: 9rem;
    font-size: 2rem;
    position: relative;
    padding: 1rem 1rem 1rem 7rem;
    border-radius: 1.5rem;
  }
  .tre > section .subnav li a::before {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .tre > section .subnav li a::after {
    font-size: 1.2rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .tre > section .subnav li a > span > span {
    line-height: 1.4;
  }
  .tre > section .subnav li a:is(:hover, :focus-visible, .current) {
    color: #fff;
    background: var(--clr_green_dark3);
  }
  .tre > section .subnav li a:is(:hover, :focus-visible, .current)::before, .tre > section .subnav li a:is(:hover, :focus-visible, .current)::after {
    color: #fff;
  }
  .tre > section > section.symptoms,
  .tre > section > section.desiese {
    padding: 0.5rem 3rem 1rem;
    border-radius: 1.5rem;
    margin: 5rem 0 0;
  }
  .tre > section > section.symptoms > .tit,
  .tre > section > section.desiese > .tit {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    padding: 0 0 0.8rem;
    margin: 0 0 3rem;
  }
  .tre > section > section.symptoms > .tit span,
  .tre > section > section.desiese > .tit span {
    font-size: 3.2rem;
    letter-spacing: 0.15em;
  }
  .tre > section > section.symptoms ul,
  .tre > section > section.desiese ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 4rem;
    gap: 0 0.5rem;
  }
  .tre > section > section.symptoms ul li,
  .tre > section > section.desiese ul li {
    width: 33%;
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
  .tre > section > section.symptoms ul li::before,
  .tre > section > section.desiese ul li::before {
    font-size: 120%;
  }
  .tre > section > section.symptoms.desiese,
  .tre > section > section.desiese.desiese {
    margin: 3rem 0 0;
  }
  .tre > section > section.symptoms.desiese ul,
  .tre > section > section.desiese.desiese ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.loopslider {
  margin: 0 auto;
  width: 100%;
  height: 11.1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: var(--clr_green_light2);
}
.loopslider ul {
  height: 100%;
  float: left;
  display: inline;
  overflow: hidden;
}
.loopslider ul li {
  width: 16rem;
  height: 100%;
  float: left;
  display: inline-block;
  overflow: hidden;
}

@media screen and (min-width: 48em), print {
  .loopslider {
    height: 27.6rem;
  }
  .loopslider ul li {
    width: 40rem;
  }
}
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;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-size: 1.25rem;
}
body:not(.index) .main a:not([class*=btn]) {
  color: var(--clr_green_dark3);
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 100rem;
    margin: 2rem auto 8rem;
    font-size: 1.6rem;
  }
  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;
  font-family: "Zen Maru Gothic", serif;
}
.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 br {
  display: none;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  font-family: "fontello";
  content: "\e80a";
  color: var(--clr_green);
  font-size: 60%;
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    padding: 0 1rem;
    max-width: 100%;
    margin: 1.5rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 0.8rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 110%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 48em), print {
  .dr_name span {
    font-size: 120%;
  }
}
body.clinic #baguetteBox-overlay .full-image figcaption {
  font-size: 1.4rem;
}
body.clinic .clinic_gallery li:not(:last-of-type) {
  margin: 0 0 3rem;
}
body.clinic .clinic_gallery li .tit_05 {
  margin: 0 0 1rem;
}
body.clinic .recruit .lst_dl02 dd .address span {
  display: none;
}

@media screen and (min-width: 48em), print {
  body.clinic #baguetteBox-overlay .full-image figcaption {
    font-size: 1.8rem;
  }
  body.clinic .clinic_gallery li:not(:last-of-type) {
    margin: 0;
  }
  body.clinic .clinic_gallery li a:is(:hover, :focus-visible) {
    opacity: 0.8;
  }
  body.clinic .recruit .lst_dl02 dd .lst_dl01 {
    display: block;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--clr_brown_dark2);
  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_dark);
}

@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);
  }
}
main .btn_wrap {
  text-align: center;
  margin: 2rem 0;
}
main .btn_wrap .tel_style {
  font-size: 2rem;
  margin: 0 0 1rem;
  padding: 1rem 0;
}
main .btn_wrap .btn_rsv, main .btn_wrap .btn_monshin {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 60%;
}
main .btn_wrap a:not(:last-of-type) {
  margin: 0 auto 1rem;
}

body.first .rsv_notice .btn_white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  main .btn_wrap {
    margin: 4rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  main .btn_wrap .tel_style {
    font-size: 2.6rem;
    margin: 0;
  }
  main .btn_wrap .btn_rsv,
  main .btn_wrap .btn_monshin {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin: 0;
    font-size: 2rem;
  }
  main .btn_wrap a:not(:last-of-type) {
    margin: 0;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

body.smoking_cessation_reduced_drinking .tbl_brown tr th[scope=col]:first-child, body.test .tbl_brown tr th[scope=col]:first-child {
  width: 9%;
}
body.smoking_cessation_reduced_drinking .tbl_brown tr th[scope=col]:last-child, body.smoking_cessation_reduced_drinking .tbl_brown tr th[scope=col]:nth-last-child(2), body.test .tbl_brown tr th[scope=col]:last-child, body.test .tbl_brown tr th[scope=col]:nth-last-child(2) {
  width: 18%;
}

@media screen and (min-width: 48em), print {
  body.smoking_cessation_reduced_drinking .tbl_brown tr th[scope=col]:first-child, body.test .tbl_brown tr th[scope=col]:first-child {
    width: 10%;
  }
  body.smoking_cessation_reduced_drinking .tbl_brown tr th[scope=col]:last-child, body.smoking_cessation_reduced_drinking .tbl_brown tr th[scope=col]:nth-last-child(2), body.test .tbl_brown tr th[scope=col]:last-child, body.test .tbl_brown tr th[scope=col]:nth-last-child(2) {
    width: 10%;
  }
}
body.vaccination .tbl_brown tr th[scope=col]:nth-child(2) {
  width: 28%;
}
body.vaccination .tbl_brown tr td {
  text-align: center;
}

@media screen and (min-width: 48em), print {
  body.vaccination .tbl_brown.taijouhoushin tr th[scope=col]:first-child {
    width: 20%;
  }
}
.online_medical_treatment .bnr_todokusuri {
  display: block;
  margin: 2rem 0;
}
.online_medical_treatment .onlineflow > li > div {
  margin: 0 0 2rem;
}
.online_medical_treatment .onlineflow > li > div .btn_rsv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem auto;
  min-width: 40%;
}
.online_medical_treatment .onlineflow > li p:first-of-type {
  margin: 0 0 1em;
}

@media screen and (min-width: 48em), print {
  .online_medical_treatment .bnr_todokusuri {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 4rem auto 2rem;
  }
  .online_medical_treatment .bnr_todokusuri img {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .online_medical_treatment .bnr_todokusuri:hover img {
    opacity: 0.8;
  }
  .online_medical_treatment .onlineflow {
    width: 70%;
    margin: auto;
  }
  .online_medical_treatment .onlineflow > li > img {
    max-width: 80%;
    margin: auto;
  }
  .online_medical_treatment .onlineflow > li > div {
    margin: 0 0 3rem;
  }
}
@media screen and (min-width: 48em), print {
  .bnr img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .bnr:is(:hover, :focus-visible) img {
    opacity: 0.8;
  }
}
body.medical_checkup .tbl_brown tr td {
  width: 30%;
  text-align: center;
}

body.free_medical_treatment .tbl_brown tr td {
  width: 30%;
  text-align: center;
}

body.checkup .tbl_brown tr td {
  width: 30%;
  text-align: center;
}