@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

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

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

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

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

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

body {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 0 0 1em;
}
p:last-child {
  margin: 0;
}

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

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

a[class*=nolink] {
  pointer-events: none;
}
a[class*=nolink]:focus-visible {
  outline: 1px solid #999;
  opacity: 0.5;
}

:root {
  --clr_txt: #411F10;
  --rgb_txt: 65,31, 16;
  --clr_green: #19995D;
  --rgb_green: 25,153, 93;
  --clr_green_light: #B9E0CE;
  --rgb_green_light: 185,224, 206;
  --clr_green_light2: #E7F5EE;
  --rgb_green_light2: 231,245, 238;
  --clr_beige_dark: #EBDED7;
  --rgb_beige_dark: 235,222, 215;
  --clr_beige: #F8F2EE;
  --rgb_beige: 248,242, 238;
  --clr_gray: #F5F5F5;
  --rgb_gray: 245,245, 245;
  --clr_brown: #794E30;
  --rgb_brown: 121,78, 48;
  --breakpoint: 576px;
}

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

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

.img_c {
  margin: 1rem auto;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .img_c {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto 2rem;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .img_l, .img_r {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}

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

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

@media screen and (min-width: 36em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_wrap {
    display: flex;
    flex-wrap: wrap;
    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: 36em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt50 {
  margin-top: 5rem !important;
}

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

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

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

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

body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
  margin-top: 5rem;
}
body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
  margin-top: 4rem;
}
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: 2rem;
}

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

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

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

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

@media screen and (min-width: 36em), print {
  .mt50 {
    margin-top: 10rem !important;
  }
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: 10rem;
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: 8rem;
  }
  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: 4rem;
  }
  .mth2 {
    margin-top: 10rem !important;
  }
  .mth3 {
    margin-top: 8rem !important;
  }
  .mth4 {
    margin-top: 6rem !important;
  }
  .mth5 {
    margin-top: 4rem !important;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.2rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 1rem;
  line-height: 1.7;
}
.tbl_time caption .closed {
  border: 1px solid var(--clr_green);
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
}
@media screen and (min-width: 36em), print {
  .tbl_time caption .closed {
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  }
}
.tbl_time caption .closed {
  background: #fff;
  color: var(--clr_green);
  padding: 0 1rem;
  margin: 0.5rem 0.5rem 0 0;
  display: inline-block;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 1rem 0;
  text-align: center;
  background: var(--clr_green);
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 28%;
  border-radius: 0.5rem 0 0 0;
}
@media screen and (min-width: 36em), print {
  .tbl_time tr th[scope=col]:first-child {
    border-radius: 1rem 0 0 0;
  }
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 0.5rem 0 0;
}
@media screen and (min-width: 36em), print {
  .tbl_time tr th[scope=col]:last-child {
    border-radius: 0 1rem 0 0;
  }
}
.tbl_time tr th[scope=row] {
  background: #fff;
  font-size: 110%;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.6rem 0.4rem;
  line-height: 1;
  background: #fff;
  color: var(--clr_green);
}
.tbl_time tr:last-of-type th[scope=row] {
  border-radius: 0 0 0 0.5rem;
}
@media screen and (min-width: 36em), print {
  .tbl_time tr:last-of-type th[scope=row] {
    border-radius: 0 0 0 1rem;
  }
}
.tbl_time tr:last-of-type td:last-child {
  border-radius: 0 0 0.5rem 0;
}
@media screen and (min-width: 36em), print {
  .tbl_time tr:last-of-type td:last-child {
    border-radius: 0 0 1rem 0;
  }
}

@media screen and (min-width: 36em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
  }
  .tbl_time caption .closed {
    padding: 0 1.9rem;
    margin: 0.9rem 1rem 0 0;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.5rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 26%;
  }
  .tbl_time tr td {
    padding: 2.5rem 0;
  }
}
.tbl_basic {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid var(--clr_beige_dark);
  font-size: 1rem;
}
.tbl_basic tr th {
  border: 1px solid var(--clr_beige_dark);
  padding: 0.4rem;
}
.tbl_basic tr th[scope=col] {
  background: var(--clr_green);
  color: #fff;
}
.tbl_basic tr th[scope=row] {
  background: var(--clr_gray);
}
.tbl_basic tr td {
  padding: 0.4rem;
  border: 1px solid var(--clr_beige_dark);
}

@media screen and (min-width: 36em), print {
  .tbl_basic {
    font-size: inherit;
  }
  .tbl_basic tr th {
    padding: 1rem;
  }
  .tbl_basic tr td {
    padding: 1rem;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr_green);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  padding: 1rem;
  text-align: center;
}

.tit_02 {
  width: fit-content;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: 0 auto 2rem;
  padding: 1.8em 0 0;
  background: url(../img/tit_02.svg) no-repeat top center/1.5em auto;
}

body:is(.index) .tit_02 {
  font-size: 2.4rem;
}

.tit_03 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.tit_03::after {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--clr_green) 2.6em, var(--clr_beige_dark) 2.6em);
  display: block;
  margin: 0.5em 0 0;
}

.tit_04 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0.4em 0.8em;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
@media screen and (min-width: 36em), print {
  .tit_04 {
    border-radius: 1rem 1rem 1rem 1rem;
  }
}
.tit_04 {
  background: var(--clr_green) url(../img/tit_04.svg) no-repeat center left -0.4em/2.2em auto;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0 0 0.3em;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--clr_green);
  border-bottom: 1px solid var(--clr_green);
}

.tit_06 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0 0 0 1em;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
.tit_06::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: var(--clr_green);
  position: absolute;
  top: 0.4em;
  left: 0;
}

@media screen and (min-width: 36em), print {
  .tit_01 {
    min-height: 26rem;
    background: url(../img/tit_01.jpg) no-repeat center center/auto;
    font-size: clamp(3.2rem, 2.0923rem + 1.923vw, 4.4rem);
  }
  .tit_02 {
    font-size: clamp(2.8rem, 1.6923rem + 1.923vw, 4rem);
    margin: 0 auto clamp(2rem, 0.1538rem + 3.205vw, 4rem);
  }
  body:is(.index) .tit_02 {
    font-size: clamp(3.3rem, 1.9154rem + 2.404vw, 4.8rem);
  }
  .tit_03 {
    font-size: clamp(2.3rem, 1.4692rem + 1.442vw, 3.2rem);
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: clamp(2rem, 1.4462rem + 0.962vw, 2.6rem);
    margin: 0 0 3rem;
  }
  .tit_05 {
    font-size: clamp(1.8rem, 1.4308rem + 0.641vw, 2.2rem);
    margin: 0 0 2rem;
  }
  .tit_06 {
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 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 1rem;
}
.lst_ul > li::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border: 2px solid var(--clr_green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
}

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

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.dt1em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt1em > dt {
  width: 1em;
}
.lst_dl01.dt1em > dd {
  width: calc(100% - 1em);
}
.lst_dl01.dt2em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt2em > dt {
  width: 2em;
}
.lst_dl01.dt2em > dd {
  width: calc(100% - 2em);
}
.lst_dl01.dt3em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt3em > dt {
  width: 3em;
}
.lst_dl01.dt3em > dd {
  width: calc(100% - 3em);
}
.lst_dl01.dt4em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt4em > dt {
  width: 4em;
}
.lst_dl01.dt4em > dd {
  width: calc(100% - 4em);
}
.lst_dl01.dt5em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt5em > dt {
  width: 5em;
}
.lst_dl01.dt5em > dd {
  width: calc(100% - 5em);
}
.lst_dl01.dt6em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt6em > dt {
  width: 6em;
}
.lst_dl01.dt6em > dd {
  width: calc(100% - 6em);
}
.lst_dl01.dt7em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt7em > dt {
  width: 7em;
}
.lst_dl01.dt7em > dd {
  width: calc(100% - 7em);
}
.lst_dl01.dt8em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt8em > dt {
  width: 8em;
}
.lst_dl01.dt8em > dd {
  width: calc(100% - 8em);
}
.lst_dl01.dt9em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt9em > dt {
  width: 9em;
}
.lst_dl01.dt9em > dd {
  width: calc(100% - 9em);
}
.lst_dl01.dt10em {
  display: flex;
  flex-wrap: wrap;
}
.lst_dl01.dt10em > dt {
  width: 10em;
}
.lst_dl01.dt10em > dd {
  width: calc(100% - 10em);
}
@media screen and (min-width: 36em), print {
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}

.lst_dl02 {
  border: 1px solid var(--clr_beige_dark);
  border-top: none;
  margin: 1em 0;
}
.lst_dl02 dt {
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
  color: var(--clr_green);
  border-top: 1px solid var(--clr_beige_dark);
  border-bottom: 1px solid var(--clr_beige_dark);
  background: var(--clr_beige);
}
.lst_dl02 dd {
  padding: 1rem;
}
@media screen and (min-width: 36em), print {
  .lst_dl02 {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--clr_beige_dark);
  }
  .lst_dl02 dt, .lst_dl02 dd {
    width: 50%;
    padding: 1rem 2rem;
  }
  .lst_dl02 dt {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    border-right: 1px solid var(--clr_beige_dark);
  }
  .lst_dl02 dt:last-of-type {
    border-bottom: none;
  }
  .lst_dl02 dd:not(:last-of-type) {
    border-bottom: 1px solid var(--clr_beige_dark);
  }
  .lst_dl02.dt_small dt {
    width: 30%;
  }
  .lst_dl02.dt_small dd {
    width: 70%;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  border: 1px solid var(--clr_green);
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .lst_flow > li {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.lst_flow > li {
  padding: 1rem;
  position: relative;
}
.lst_flow > li .tit {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--clr_brown);
}
.lst_flow > li .tit::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) ". ";
}
.lst_flow > li:not(:last-of-type) {
  margin: 0 0 5rem;
}
.lst_flow > li:not(:last-of-type)::after {
  content: "";
  width: 4rem;
  height: 1.5rem;
  background: var(--clr_green);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 36em), print {
  .lst_flow > li {
    padding: 3rem;
  }
  .lst_flow > li .tit {
    font-size: clamp(2.2rem, 1.4615rem + 1.282vw, 3rem);
  }
  .lst_flow > li:not(:last-of-type) {
    margin: 0 0 8.5rem;
  }
  .lst_flow > li:not(:last-of-type)::after {
    width: 6rem;
    height: 2rem;
    bottom: -5.5rem;
  }
}

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

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 36em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .main {
    container: tab/inline-size;
  }
  @container tab (width > 650px) {
    .main .flex2 {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .main .flex2 > section, .main .flex2 > li, .main .flex2 > div {
      width: 48%;
      margin-top: 0 !important;
    }
    .main .flex2.lst_ul > li:nth-last-child(2) {
      margin-bottom: 0;
    }
    .main .flex2.gap {
      gap: 4rem;
    }
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel_style {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.6rem;
  background: #fff;
  border-radius: 100vh;
  padding: 0.5rem 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e803";
  font-weight: normal;
}
@media screen and (min-width: 36em), print {
  .tel_style {
    padding: 1rem 2.5rem 1rem 3rem;
    gap: 1rem;
  }
}

.box_1, .box_2 {
  padding: 1rem;
  margin: 1em 0;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .box_1, .box_2 {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
@media screen and (min-width: 36em), print {
  .box_1, .box_2 {
    padding: 3rem;
  }
}

.box_1 {
  background: var(--clr_beige);
}

.box_2 {
  background: var(--clr_gray);
}

.btn_form {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.6rem;
  background: var(--clr_green);
  border-radius: 100vh;
  color: #fff;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  white-space: nowrap;
}
.btn_form::before {
  font-family: "fontello";
  content: "\e804";
  font-weight: normal;
  font-size: 130%;
  line-height: 1;
}
@media screen and (min-width: 36em), print {
  .btn_form {
    padding: 1rem 3rem 1rem 3.5rem;
    gap: 1.5rem;
  }
  .btn_form:is(:hover, :focus-visible) {
    opacity: 0.8;
  }
}

.btn_basic {
  display: inline-block;
  padding: 1.3rem 4rem;
  background: var(--clr_green);
  color: #fff;
  line-height: 1.4;
  border-radius: 100vh;
  text-decoration: none !important;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  position: relative;
}
.btn_basic::after {
  font-family: "fontello";
  content: "\e806";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
}
@media screen and (min-width: 36em), print {
  .btn_basic {
    padding: 1.8rem 6rem 1.8rem 5.5rem;
  }
  .btn_basic::after {
    right: 2rem;
  }
  .btn_basic:is(:hover, :focus-visible) {
    opacity: 0.8;
  }
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1em 0;
}
.lst_anc li {
  min-width: calc((100% - 1rem) / 2);
}
.lst_anc li a {
  display: flex;
  gap: 0.2em;
  align-items: first baseline;
  padding: 0 0 0.2em;
  color: var(--clr_green);
  text-decoration: none !important;
  border-bottom: 2px solid var(--clr_beige_dark);
  font-weight: 700;
}
.lst_anc li a::before {
  font-family: "fontello";
  content: "\e80c";
}
@media screen and (min-width: 36em), print {
  .lst_anc {
    gap: 2rem;
  }
  .lst_anc li {
    min-width: calc((100% - 6rem) / 4);
  }
  .lst_anc li a {
    padding: 1rem 4rem;
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    opacity: 0.8;
  }
}

@media screen and (min-width: 36em), print {
  .slick-arrow {
    position: absolute;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    width: 5rem;
    height: 5rem;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 5rem;
    color: var(--clr_txt);
    transition: 0.3s;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\71";
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\77";
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_txt);
}
.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: 36em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 2.7777777778vw;
  scroll-behavior: smooth;
}

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

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

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

@media screen and (min-width: 36em), print {
  html {
    font-size: 62.5%;
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    max-width: 1200px;
    margin: auto;
  }
  .main {
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  position: relative;
  height: 8rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 8rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: var(--clr_beige);
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.svg) no-repeat center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  display: none;
}

@media screen and (min-width: 36em), print {
  .header {
    background: var(--clr_beige);
    padding: 0 1rem;
    height: auto;
  }
  .header > .wrap {
    padding: 1.5rem 0 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .header > .wrap .logo {
    max-width: 31.2rem;
    height: 9rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    display: flex;
    justify-content: flex-end;
    flex: 1;
  }
  .header > .wrap .headR ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: clamp(1rem, 0.0769rem + 1.603vw, 2rem);
  }
  .header > .wrap .headR ul li {
    height: clamp(5rem, 3.1538rem + 3.205vw, 7rem);
  }
  .header > .wrap .headR ul li .tel_style {
    font-size: clamp(2.2rem, 1.2769rem + 1.603vw, 3.2rem);
  }
  .header > .wrap .headR ul li .btn_form {
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
    height: 100%;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 5rem;
  height: 5rem;
  background: var(--clr_beige_dark);
  border-radius: 0.5rem;
  padding: 0;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  transform: translateY(-220%);
}
#nav #sp_menu span {
  width: 2.5rem;
  height: 2px;
  background: var(--clr_txt);
  position: absolute;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}
#nav #sp_menu span:nth-of-type(1) {
  top: 33%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(2) {
  top: 50%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(3) {
  top: 67%;
  left: 50%;
}
#nav #sp_menu.close span {
  top: 50%;
}
#nav #sp_menu.close span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
#nav #sp_menu.close span:nth-of-type(2) {
  opacity: 0;
}
#nav #sp_menu.close span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(100dvh - 9rem);
  overflow-y: auto;
  background: var(--clr_beige);
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 8rem;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.16);
  border-radius: 0 0 1rem 1rem;
}
#nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
#nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--clr_green);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}
#nav .gnav_subnav .gnav > li > a span, #nav .gnav_subnav .gnav > li .sub span {
  position: relative;
}
#nav .gnav_subnav .gnav > li > a span::after, #nav .gnav_subnav .gnav > li .sub span::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--clr_green);
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  right: 0;
  opacity: 0;
}
#nav .gnav_subnav .gnav > li > a.current span::after, #nav .gnav_subnav .gnav > li .sub.current span::after {
  opacity: 1;
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e805";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 65%;
  font-weight: normal;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e813";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  background: #fff;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}
@media screen and (min-width: 36em), print {
  #nav .gnav_subnav .gnav > li .subbox {
    border-radius: 1rem 1rem 1rem 1rem;
  }
}
#nav .gnav_subnav .gnav > li .subbox {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 36em), print {
  #nav .gnav_subnav .gnav > li .subbox {
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.16);
  }
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  padding: 1rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:last-child) {
  border-bottom: 1px solid var(--clr_beige_dark);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: var(--clr_txt);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: var(--clr_green);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: var(--clr_txt);
  background: var(--clr_beige_dark);
  text-align: center;
  padding: 1rem;
  margin: 1rem 0 0;
  border-radius: 0.5rem;
  font-weight: 700;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\cc02";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 36em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  #nav.hide {
    transform: translateY(-300%);
  }
  #nav.change_nav .gnav_subnav {
    background: rgba(255, 255, 255, 0.95);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
    border-radius: 0;
    box-shadow: none;
    transition: 0.5s;
  }
  #nav .gnav_subnav .gnav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 clamp(1rem, -0.4769rem + 2.564vw, 2.6rem);
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: auto;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:first-child a::before {
    display: none;
  }
  #nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
    padding: 1em 0.5em;
    margin: 0;
    cursor: pointer;
    white-space: nowrap;
  }
  #nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
    left: clamp(-1.7rem, -0.1615rem + -1.282vw, -0.9rem);
  }
  #nav .gnav_subnav .gnav > li > a::after, #nav .gnav_subnav .gnav > li .sub::after {
    position: absolute;
    bottom: 0.2em;
  }
  #nav .gnav_subnav .gnav > li > a span::after, #nav .gnav_subnav .gnav > li .sub span::after {
    bottom: -1em;
    transition: 0.3s;
    transform: scale(0, 1);
  }
  #nav .gnav_subnav .gnav > li > a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li > a:is(:hover, :focus-visible, .current) span::after, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) span::after {
    opacity: 1;
    transform: scale(1, 1);
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    max-width: 32rem;
    width: auto;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    padding: 2rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: clamp(1rem, 0.0769rem + 1.603vw, 2rem) clamp(0.5rem, 0.0385rem + 0.801vw, 1rem);
    font-size: clamp(1.4rem, 0.8462rem + 0.962vw, 2rem);
    white-space: nowrap;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    opacity: 1;
    color: var(--clr_green);
  }
  #nav .gnav_subnav .gnav {
    container: tab/inline-size;
  }
  @container tab (width < 768px) {
    #nav .gnav_subnav .gnav > li .subbox {
      left: auto;
      right: 0;
      transform: translateX(0);
    }
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  padding: 4rem 1rem;
  font-size: 1.25rem;
  line-height: 1.6;
  background: var(--clr_beige);
}
.overview .clinic_name {
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: 0 auto 2rem;
}
.overview .clinic_name ul {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 0;
}
.overview .clinic_name ul li .tel_style {
  font-size: 1.8rem;
}
.overview .clinic_name ul li .btn_form {
  height: 100%;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 22%;
  padding: 1rem 0.4rem;
  color: var(--clr_green);
  text-align: center;
  border-bottom: 1px solid var(--clr_green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview > .wrap .overviewL .gaiyo dt:first-of-type {
  border-top: 1px solid var(--clr_green);
}
.overview > .wrap .overviewL .gaiyo dt.two_ltrs {
  letter-spacing: 1em;
  text-indent: 1em;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 78%;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--clr_beige_dark);
}
.overview > .wrap .overviewL .gaiyo dd:first-of-type {
  border-top: 1px solid var(--clr_beige_dark);
}
.overview > .wrap .overviewL .gaiyo dd .tel_style {
  font-size: 120%;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}

.gmap {
  height: 100vw;
}

@media screen and (min-width: 36em), print {
  .overview {
    padding: 8rem 1rem;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 38.1rem;
  }
  .overview .clinic_name p {
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
    margin: 0 0 2rem;
  }
  .overview .clinic_name ul {
    gap: 2.5rem;
    margin: 2.5rem 0 0;
  }
  .overview .clinic_name ul li {
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
  }
  .overview .clinic_name ul li .tel_style {
    font-size: clamp(2.6rem, 2.0462rem + 0.962vw, 3.2rem);
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 47.5%;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    padding: 1.7rem 0;
    width: 26%;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    padding: 1.7rem 0 1.7rem 2rem;
    width: 74%;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview {
    container: tab/inline-size;
  }
  @container tab (width < 900px) {
    .overview > .wrap {
      flex-direction: column;
      gap: 4rem;
    }
    .overview > .wrap .overviewL, .overview > .wrap .overviewR {
      width: 100%;
    }
  }
  .gmap {
    height: 45rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(0, 0, 0, 0.161);
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li .tel_style, #tel_up ul li .btn_form {
  height: 100%;
  font-size: 1.4rem;
  display: flex;
  border-radius: 0;
  padding: 0;
}
#tel_up ul li .tel_style {
  font-size: 1.8rem;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--clr_green);
  color: var(--clr_green);
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e80a";
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 36em), print {
  #tel_up {
    width: 6rem;
    height: 6rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    font-size: 2.4rem;
    border-radius: 50%;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    opacity: 1;
    background: var(--clr_green_light2);
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
}
.footer .copy {
  display: block;
  background: var(--clr_green);
  color: #fff;
  padding: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 36em), print {
  .footer {
    padding: clamp(3rem, 0.2308rem + 4.808vw, 6rem) 0 0;
    background: var(--clr_beige);
  }
  .footer .copy {
    margin: clamp(3rem, 0.6923rem + 4.006vw, 5.5rem) 0 0;
    padding: 1.5rem 1rem;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .footer ul {
    display: block;
    text-align: center;
    margin: 0 1rem;
  }
  .footer ul li {
    display: inline-block;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    margin: 0 0 1rem;
  }
  .footer ul li:not(.last-in-row)::after {
    content: "|";
    margin: 0 0.5rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.about {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  opacity: 0;
  animation: blur 1.5s forwards;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 35rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl::after {
  content: "";
  width: 100%;
  height: 7rem;
  background: url(../img/index_keyv_left.svg) no-repeat left -3rem bottom/auto 100%, url(../img/index_keyv_right.svg) no-repeat right -3rem bottom/auto 100%;
  position: absolute;
  top: 20rem;
  left: 0;
  right: 0;
}
.keyvsl #keyvsl .slick-list div img {
  height: 26rem !important;
  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;
  top: 6rem;
  left: 0;
  right: 0;
  padding: 0 3rem;
}
.keyvsl > .wrap .catch1 {
  width: 16.5rem;
  height: 16.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: auto;
}
.keyvsl > .wrap .catch1 p {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.keyvsl > .wrap .catch1 p .txt_large {
  font-size: 125%;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.keyvsl > .wrap .catch1 p.green {
  background: var(--clr_green);
  color: #fff;
  font-weight: 700;
  border-radius: 100vh;
  padding: 0.2rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.keyvsl > .wrap .catch2 {
  background: #fff;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 36em), print {
  .keyvsl > .wrap .catch2 {
    border-radius: 2rem 2rem 0 0;
  }
}
.keyvsl > .wrap .catch2 {
  padding: 1.5rem 1rem 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 2rem 0 0;
}

@media screen and (min-width: 36em), print {
  .keyvsl {
    margin: 0 0 6rem;
  }
  .keyvsl #keyvsl {
    height: clamp(50rem, 25.0769rem + 43.269vw, 77rem);
  }
  .keyvsl #keyvsl::after {
    max-width: 200rem;
    width: 100%;
    height: 24rem;
    background-position: bottom left calc(50% - clamp(30rem, -8.7692rem + 67.308vw, 72rem)), bottom right calc(50% - clamp(30rem, -8.7692rem + 67.308vw, 72rem));
    background-size: clamp(20rem, -13.2308rem + 57.692vw, 56rem) auto;
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .keyvsl #keyvsl .slick-list div img {
    height: clamp(50rem, 25.0769rem + 43.269vw, 77rem) !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    bottom: -4rem;
    top: auto;
    padding: 0 10rem;
  }
  .keyvsl > .wrap .catch1 {
    width: clamp(30rem, 18.9231rem + 19.231vw, 42rem);
    height: clamp(30rem, 18.9231rem + 19.231vw, 42rem);
    gap: clamp(1.5rem, 0.5769rem + 1.603vw, 2.5rem);
  }
  .keyvsl > .wrap .catch1 p {
    font-size: clamp(2rem, 0.8923rem + 1.923vw, 3.2rem);
  }
  .keyvsl > .wrap .catch1 p.green {
    padding: 0.7rem 2.5rem;
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
  .keyvsl > .wrap .catch2 {
    padding: 4rem 2rem 0;
    font-size: clamp(1.6rem, 0.8615rem + 1.282vw, 2.4rem);
    margin: clamp(4rem, -3.3846rem + 12.821vw, 12rem) 0 0;
  }
}
.menu {
  padding: 4rem;
}
.menu ul li {
  margin: 0 0 2rem;
  opacity: 0;
}
.menu ul li a {
  text-decoration: none !important;
  transition: 0.3s;
}
.menu ul li a::before {
  content: "";
  width: 100%;
  height: 20rem;
  display: block;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .menu ul li a::before {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.menu ul li a.menu_about::before {
  background: url(../img/index_menu01.jpg) no-repeat center/cover;
}
.menu ul li a.menu_info::before {
  background: url(../img/index_menu02.jpg) no-repeat center/cover;
}
.menu ul li a.menu_visit::before {
  background: url(../img/index_menu03.jpg) no-repeat center/cover;
}
.menu ul li a .btn_basic {
  display: block;
  width: 90%;
  margin: -2.5rem auto 0;
  transition: 0.3s;
}
.menu ul li a:is(:hover, :focus-visible) {
  opacity: 1;
  filter: brightness(110%);
}
.menu ul li a:is(:hover, :focus-visible) .btn_basic {
  opacity: 1;
}
.menu ul.trigger li:nth-child(1) {
  animation: fadein 1.5s forwards normal;
  animation-delay: 0.3s;
}
.menu ul.trigger li:nth-child(2) {
  animation: fadein 1.5s forwards normal;
  animation-delay: 0.6s;
}
.menu ul.trigger li:nth-child(3) {
  animation: fadein 1.5s forwards normal;
  animation-delay: 0.9s;
}

@media screen and (min-width: 36em), print {
  .menu {
    padding: clamp(3rem, 0.2308rem + 4.808vw, 6rem) 0 clamp(5rem, 0.3846rem + 8.013vw, 10rem);
  }
  .menu ul {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: clamp(2.5rem, 0.6538rem + 3.205vw, 4.5rem);
    flex-wrap: wrap;
  }
  .menu ul li {
    margin: 0;
    width: 37rem;
  }
  .menu ul li a::before {
    height: 27rem;
  }
  .menu ul li a .btn_basic {
    margin: -3.5rem auto 0;
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
  .menu ul li a .btn_basic::after {
    font-size: 85%;
  }
}
.feature {
  padding: 4rem 2rem;
  background: url(../img/index_feat_left.svg) no-repeat left -18rem top 3rem/23rem auto, url(../img/index_feat_right.svg) no-repeat right -18rem top 3rem/23rem auto;
}
.feature .lead {
  text-align: center;
  margin: 0 0 3rem;
  opacity: 0;
}
.feature .lead.trigger {
  animation: fade_up 1s forwards;
}
.feature ol {
  counter-reset: number 0;
}
.feature ol li {
  counter-increment: number 1;
}
.feature ol li:not(:last-of-type) {
  margin: 0 0 4rem;
}
.feature ol li::before {
  content: "";
  width: 100%;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .feature ol li::before {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.feature ol li::before {
  margin: 0 0 1.5rem;
  opacity: 0;
}
.feature ol li.feat1::before {
  background: url(../img/index_feat1.jpg) no-repeat center/cover;
}
.feature ol li.feat2::before {
  background: url(../img/index_feat2.jpg) no-repeat center/cover;
}
.feature ol li.feat3::before {
  background: url(../img/index_feat3.jpg) no-repeat center/cover;
}
.feature ol li.feat4::before {
  background: url(../img/index_feat4.jpg) no-repeat center/cover;
}
.feature ol li.feat5::before {
  background: url(../img/index_feat5.jpg) no-repeat center/cover;
}
.feature ol li.feat6::before {
  background: url(../img/index_feat6.jpg) no-repeat center/cover;
}
.feature ol li > div {
  opacity: 0;
}
.feature ol li > div .num {
  color: var(--clr_green);
  letter-spacing: 0.05em;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin: 0 0 1rem;
}
.feature ol li > div .num::after {
  content: counter(number, decimal-leading-zero);
  font-size: 200%;
  letter-spacing: 0.05em;
  margin: 0 0 0 0.1em;
}
.feature ol li > div .tit {
  font-size: 2rem;
  margin: 0 0 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.feature ol li > div p {
  line-height: 2;
}
.feature ol li.trigger::before {
  animation: blur 1s forwards;
}
.feature ol li.trigger > div {
  animation: fadein 1s forwards;
}

@media screen and (min-width: 36em), print {
  .feature {
    padding: 5rem 2rem clamp(7rem, 0.5385rem + 11.218vw, 14rem);
    background-size: 56rem auto;
    background-position: top clamp(4rem, -1.5385rem + 9.615vw, 10rem) left calc(50% - clamp(52rem, 33.5385rem + 32.051vw, 72rem)), top clamp(4rem, -1.5385rem + 9.615vw, 10rem) right calc(50% - clamp(52rem, 33.5385rem + 32.051vw, 72rem));
  }
  .feature .lead {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
    margin: 0 0 clamp(4rem, 0.3077rem + 6.41vw, 8rem);
  }
  .feature ol {
    max-width: 1200px;
    margin: auto;
  }
  .feature ol li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(3rem, 0.2308rem + 4.808vw, 6rem);
  }
  .feature ol li:not(:last-of-type) {
    margin: 0 0 clamp(6rem, 4.1538rem + 3.205vw, 8rem);
  }
  .feature ol li:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .feature ol li::before {
    max-width: 60rem;
    width: 50%;
    margin: 0;
  }
  .feature ol li > div {
    flex: 1;
  }
  .feature ol li > div .num {
    font-size: clamp(1.7rem, 1.0538rem + 1.122vw, 2.4rem);
    margin: 0 0 clamp(1rem, -0.3846rem + 2.404vw, 2.5rem);
  }
  .feature ol li > div .tit {
    font-size: clamp(2.5rem, 1.4846rem + 1.763vw, 3.6rem);
    margin: 0 0 clamp(1rem, -0.3846rem + 2.404vw, 2.5rem);
  }
  .feature ol li > div p {
    font-size: clamp(1.5rem, 0.8538rem + 1.122vw, 2.2rem);
  }
}
.info {
  padding: 4rem 1rem;
  background: var(--clr_beige);
}
.info .info_inner .accordion-container {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding: 0.5rem 0 0;
  scrollbar-color: var(--clr_green) var(--clr_green_light);
  /* Scrollbar track */
}
.info .info_inner .accordion-container ::-webkit-scrollbar-track {
  background: var(--clr_green_light);
}
.info .info_inner .accordion-container {
  /* Scrollbar thumb */
}
.info .info_inner .accordion-container ::-webkit-scrollbar-thumb {
  background: var(--clr_green);
}
.info .info_inner .accordion-container .accordion-item {
  padding: 0 0 1.5em;
}
.info .info_inner .accordion-container .accordion-item:not(:first-of-type) {
  padding: 1.5em 0;
  border-top: 2px solid var(--clr_beige_dark);
}
.info .info_inner .accordion-container .accordion-item .accordion-header {
  display: block;
  margin: 0 0 1rem;
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
}
.info .info_inner .accordion-container .accordion-item .accordion-header::before {
  font-family: "fontello";
  content: "\e808";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--clr_green);
}
.info .info_inner .accordion-container .accordion-item .accordion-header .accordion-title {
  font-weight: 700;
}
.info .info_inner .accordion-container .accordion-item .accordion-header .accordion-date {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--clr_green);
  font-size: 83%;
  margin: 0 0 1rem;
}
.info .info_inner .accordion-container .accordion-item .accordion-content {
  margin: 0 0 0 1.5em;
  line-height: 1.8;
}
.info .info_inner .accordion-container .accordion-item[open] .accordion-header::before {
  font-family: "fontello";
  content: "\e80d";
}

@media screen and (min-width: 36em), print {
  .info .wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(5rem, 0.3846rem + 8.013vw, 10rem);
    padding: 6rem 0;
  }
  .info .wrap .tit_02 {
    margin: 0;
    font-size: clamp(2.8rem, 1.6923rem + 1.923vw, 4rem);
    flex-shrink: 0;
  }
  .info .wrap .info_inner {
    flex: 1;
  }
  .info .wrap .info_inner .accordion-container {
    max-height: 65rem;
    padding: 0.5rem 3rem 0 0;
  }
  .info .wrap .info_inner .accordion-container .accordion-item .accordion-header {
    padding: 0 0 0 3.5rem;
    font-size: clamp(1.8rem, 1.2462rem + 0.962vw, 2.4rem);
  }
  .info .wrap .info_inner .accordion-container .accordion-item .accordion-header .accordion-date {
    margin: 0 0 1.5rem;
  }
  .info .wrap .info_inner .accordion-container .accordion-item .accordion-header:is(:hover, :focus-visible) {
    color: var(--clr_brown);
  }
  .info .wrap .info_inner .accordion-container .accordion-item .accordion-content {
    margin: 0 0 0 3.5rem;
  }
  .info {
    container: tab/inline-size;
  }
  @container tab (width < 1024px) {
    .info .wrap {
      display: block;
    }
    .info .wrap .tit_02 {
      margin: 0 auto clamp(2rem, 0.1538rem + 3.205vw, 4rem);
    }
  }
}
.recruit {
  padding: 4rem 2rem 29rem;
  margin: 2rem 0;
  background: var(--clr_green_light2);
  position: relative;
}
.recruit::after {
  content: "";
  width: 100%;
  height: 26rem;
  background: linear-gradient(to bottom, var(--clr_green_light2), transparent 6rem), url(../img/index_recruit.jpg) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.recruit > div {
  opacity: 0;
}
.recruit > div p {
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
}
.recruit > div dl {
  margin: 2rem 0;
}
.recruit > div dl dt {
  background: var(--clr_green);
  color: #fff;
  border-radius: 100vh;
  text-align: center;
  font-weight: 700;
  width: 53%;
  padding: 0.5rem 1rem;
  margin: 0 auto -1rem;
  position: relative;
  z-index: 1;
}
.recruit > div dl dd {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .recruit > div dl dd {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.recruit > div dl dd {
  text-align: center;
}
.recruit > div .btn_basic {
  display: block;
  width: fit-content;
  margin: auto;
}
.recruit > div.trigger {
  animation: fade_up 1s forwards;
}

@media screen and (min-width: 36em), print {
  .recruit {
    padding: 8rem 2rem;
    margin: 10rem 0;
    min-height: 72rem;
  }
  .recruit::after {
    width: 100rem;
    height: 72rem;
    background: linear-gradient(to left, var(--clr_green_light2), transparent 20rem), url(../img/index_recruit.jpg) no-repeat center/cover;
    left: calc(50% - 100rem);
    right: auto;
  }
  .recruit > div {
    max-width: 60rem;
    width: 50%;
    position: absolute;
    left: 50%;
    padding: 0 1rem;
    z-index: 1;
  }
  .recruit > div .tit_02 {
    font-size: clamp(2.8rem, 1.6923rem + 1.923vw, 4rem);
    margin: 0 auto clamp(2rem, 0.1538rem + 3.205vw, 4rem);
  }
  .recruit > div p {
    font-size: clamp(1.8rem, 1.2462rem + 0.962vw, 2.4rem);
  }
  .recruit > div dl {
    margin: 3.5rem auto 4.7rem;
    font-size: clamp(1.6rem, 1.2308rem + 0.641vw, 2rem);
    max-width: 38rem;
  }
  .recruit > div dl dt {
    padding: 0 1rem;
  }
  .recruit > div .btn_basic {
    font-size: clamp(1.7rem, 1.2385rem + 0.801vw, 2.2rem);
    min-width: clamp(20rem, 3.3846rem + 28.846vw, 38rem);
  }
  .recruit {
    container: tab/inline-size;
  }
  @container tab (width < 1024px) {
    .recruit::after {
      left: calc(50% - (100rem + 10%));
      background-position: center;
    }
    .recruit > div {
      width: 60%;
      left: 40%;
    }
  }
}
.about_homecare {
  padding: 4rem 1rem;
  background: var(--clr_beige);
}
.about_homecare p {
  opacity: 0;
}
.about_homecare p.lead {
  text-align: center;
}
.about_homecare p.notice {
  line-height: 1.6;
  color: var(--clr_brown);
  font-size: 91%;
  display: flex;
  align-items: first baseline;
}
.about_homecare p.notice::before {
  content: "※";
}
.about_homecare p.trigger {
  animation: fade_up 1s forwards;
}
.about_homecare section {
  background: #fff;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .about_homecare section {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.about_homecare section {
  padding: 2rem;
  margin: 3rem 0 0;
  opacity: 0;
}
.about_homecare section .tit {
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin: 0 0 1.5rem;
}
.about_homecare section .tit::before {
  content: "";
  width: 2em;
  height: 5px;
  background: var(--clr_green);
  border-radius: 100vh;
  display: block;
  margin: 0 auto 0.2em;
}
.about_homecare section .btn_basic {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
}
.about_homecare section.trigger {
  animation: blur 1s forwards 0.3s;
}

.homecare_lst::after {
  content: "など";
  display: block;
  text-align: right;
}
.homecare_lst li {
  background: var(--clr_green_light2);
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .homecare_lst li {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.homecare_lst li {
  padding: 1rem 1rem 1rem 4rem;
  margin: 0 0 1rem;
  line-height: 1.4;
  position: relative;
}
.homecare_lst li::before {
  font-family: "fontello";
  content: "\e809";
  color: var(--clr_green);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 150%;
}
.homecare_lst li span {
  color: var(--clr_green);
  font-weight: 700;
  font-size: 109%;
}

@media screen and (min-width: 36em), print {
  .about_homecare {
    padding: clamp(5rem, 0.3846rem + 8.013vw, 10rem) 1rem clamp(3rem, 1.1538rem + 3.205vw, 5rem);
  }
  .about_homecare p {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
  .about_homecare p.notice {
    max-width: 100rem;
    margin: auto;
    font-size: clamp(1.4rem, 0.8462rem + 0.962vw, 2rem);
  }
  .about_homecare section {
    padding: clamp(3rem, 0.2308rem + 4.808vw, 6rem) clamp(6rem, 0.6462rem + 9.295vw, 11.8rem) clamp(3.5rem, 0.2692rem + 5.609vw, 7rem) clamp(4rem, 0.4923rem + 6.09vw, 7.8rem);
    margin: clamp(3rem, 0.2308rem + 4.808vw, 6rem);
  }
  .about_homecare section .tit {
    font-size: clamp(2.8rem, 1.6923rem + 1.923vw, 4rem);
    margin: 0 0 3rem;
  }
  .about_homecare section .btn_basic {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
    margin: 4rem auto 0;
    padding: 1.8rem 6.5rem 1.8rem 6rem;
  }
  .homecare_lst {
    position: relative;
  }
  .homecare_lst::after {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
    position: absolute;
    left: 102%;
    bottom: 2rem;
    white-space: nowrap;
  }
  .homecare_lst li {
    padding: 2.4rem 1rem 2.4rem 8.5rem;
    margin: 0 0 1.8rem;
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
  .homecare_lst li::before {
    left: 3rem;
  }
  body:not(.index) .homecare_lst::after {
    position: static;
  }
}
.tre {
  padding: 4rem 1rem;
  background: url(../img/index_tre_bg.jpg) no-repeat center/cover;
}
.tre .lead {
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.8;
  opacity: 0;
}
.tre .lead.trigger {
  animation: fade_up 1s forwards;
}
.tre .tre_lst {
  opacity: 0;
}
.tre .tre_lst.trigger {
  animation: blur 1s forwards 0.3s;
}
.tre .btn_wrap li {
  margin: 0 0 1rem;
}
.tre .btn_wrap li .btn_basic {
  display: block;
  min-width: 65%;
  width: fit-content;
  margin: auto;
}

.tre_lst li {
  background: #fff;
  border: 2px solid var(--clr_green);
  color: var(--clr_green);
  font-weight: 700;
  line-height: 1.4;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .tre_lst li {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.tre_lst li {
  padding: 1rem;
  margin: 0 0 1rem;
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.tre_lst li::before {
  font-family: "fontello";
  content: "\e809";
  font-weight: normal;
  font-size: 130%;
}

@media screen and (min-width: 36em), print {
  .tre {
    padding: clamp(5rem, 0.3846rem + 8.013vw, 10rem) 1rem;
  }
  .tre .lead {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
    margin: 0 0 clamp(3rem, 0.2308rem + 4.808vw, 6rem);
  }
  .tre .btn_wrap {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 0.1154rem + 2.404vw, 3rem);
    flex-wrap: wrap;
    margin: 2.5rem 0 0;
  }
  .tre .btn_wrap li {
    margin: 0;
  }
  .tre .btn_wrap li .btn_basic {
    min-width: 38rem;
    margin: 0;
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
  .tre_lst {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .tre_lst li {
    width: calc((100% - 2rem) / 2);
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
    padding: 1.8rem 2rem;
    margin: 0;
  }
  .nado {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
}
.loopslider {
  width: 100%;
}
.loopslider #loopslider {
  max-width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 36em), print {
  .loopslider {
    margin: clamp(5rem, 0.3846rem + 8.013vw, 10rem) auto 0;
  }
  .loopslider #loopslider .slick-list .slick-slide img {
    width: clamp(24rem, 10.1538rem + 24.038vw, 39rem);
    height: auto;
  }
}
.greeting {
  padding: 4rem 1rem;
  background: url(../img/index_greeting_logomark.svg) no-repeat top 2rem right -17rem/30rem auto;
}
.greeting .wrap > div {
  opacity: 0;
}
.greeting .wrap .tit {
  color: var(--clr_green);
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
}
.greeting .wrap .tit span {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 91%;
  letter-spacing: 0.05em;
}
.greeting .wrap .tit span::before {
  content: "";
  width: 1px;
  height: 1.5rem;
  background: var(--clr_green);
  display: inline-block;
  margin: 0 0.6em;
}
.greeting .wrap p.lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.556;
  letter-spacing: 0.05em;
}
.greeting .wrap .name {
  color: var(--clr_green);
  font-size: 1.3rem;
  font-weight: 700;
}
.greeting .wrap .name span {
  font-size: 120%;
}
.greeting .wrap img {
  width: 65%;
  margin: 2rem auto;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media screen and (min-width: 36em), print {
  .greeting .wrap img {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.greeting .wrap img {
  opacity: 0;
}
.greeting .wrap.trigger > div {
  animation: fade_up 1s forwards;
}
.greeting .wrap.trigger img {
  animation: blur 1s forwards 0.3s;
}

@media screen and (min-width: 36em), print {
  .greeting {
    margin: clamp(2rem, 0.1538rem + 3.205vw, 4rem) 0 0;
    padding: clamp(4rem, -1.5385rem + 9.615vw, 10rem) 1rem clamp(6rem, -1.3846rem + 12.821vw, 14rem);
    background-size: clamp(44rem, 25.5385rem + 32.051vw, 64rem) auto;
    background-position: top left calc(50% + clamp(38rem, 10.3077rem + 48.077vw, 68rem));
  }
  .greeting .wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: clamp(1rem, -5.4615rem + 11.218vw, 8rem);
    align-items: center;
  }
  .greeting .wrap > div {
    flex: 1;
    padding: 0 0 2rem;
  }
  .greeting .wrap > div .tit {
    font-size: clamp(1.8rem, 1.4308rem + 0.641vw, 2.2rem);
    margin: 0 0 2.5rem;
  }
  .greeting .wrap > div .tit span::before {
    height: 2rem;
  }
  .greeting .wrap > div p {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
  }
  .greeting .wrap > div p.lead {
    font-size: clamp(2.6rem, 1.6769rem + 1.603vw, 3.6rem);
    margin: 0 0 0.6em;
  }
  .greeting .wrap .name {
    font-size: 2rem;
    margin: clamp(1rem, -0.1077rem + 1.923vw, 2.2rem) 0 0;
  }
  .greeting .wrap img {
    width: 34rem;
    margin: 0;
  }
  .greeting {
    container: tab/inline-size;
  }
  @container tab (width < 1024px) {
    .greeting .wrap {
      flex-direction: column;
    }
  }
}
body:not(.index) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.index) .main {
  padding: 4rem 1rem 6rem;
}
body:not(.index) .main .tel_style {
  font-size: 120%;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], .lst_anc > li > a) {
  color: var(--clr_txt);
}
@media screen and (min-width: 36em), print {
  body:not(.index) .main {
    max-width: 1200px;
    padding: 5rem 2rem 8rem;
    margin: auto;
  }
  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: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
  color: var(--clr_green);
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: "＞";
  margin: 0 0.6rem;
}

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

@media print {
  body {
    width: 1300px !important;
    zoom: 0.8;
  }
}/*# sourceMappingURL=style.css.map */