.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 1.1s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 1.3s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 1.7s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 1.9s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 2.2s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 2.3s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 2.5s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 2.6s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 2.9s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 3s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 3.1s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 3.2s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 3.3s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 3.4s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 3.5s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 3.6s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 3.7s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 3.8s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 3.9s;
}
.appear.inview .item:nth-child(40) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(41) {
  transition-delay: 4.1s;
}
.appear.inview .item:nth-child(42) {
  transition-delay: 4.2s;
}
.appear.inview .item:nth-child(43) {
  transition-delay: 4.3s;
}
.appear.inview .item:nth-child(44) {
  transition-delay: 4.4s;
}
.appear.inview .item:nth-child(45) {
  transition-delay: 4.5s;
}
.appear.inview .item:nth-child(46) {
  transition-delay: 4.6s;
}
.appear.inview .item:nth-child(47) {
  transition-delay: 4.7s;
}
.appear.inview .item:nth-child(48) {
  transition-delay: 4.8s;
}
.appear.inview .item:nth-child(49) {
  transition-delay: 4.9s;
}
.appear.inview .item:nth-child(50) {
  transition-delay: 5s;
}

.more-btn {
  text-align: center;
}
.more-btn a {
  min-width: 280px;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  position: relative;
  display: inline-block;
  color: #333;
  border: 1px solid #333;
  padding: 1.2rem 4rem 1.2rem 2rem;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.more-btn a._white {
  background: white;
  border: none;
}
@media screen and (max-width: 600px) {
  .more-btn a {
    min-width: 230px;
    padding-inline: 1rem 3rem;
  }
}
.more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_black.svg) no-repeat center/contain;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 600px) {
  .more-btn a::before {
    right: 1.5rem;
  }
}
.more-btn a:hover {
  background: #333;
  color: white;
}
.more-btn a:hover::before {
  right: 1.5rem;
  background: url(../images/arrows_white.svg) no-repeat center/contain;
}

.dl-btn {
  width: 320px;
}
.dl-btn a {
  border: 1px solid #333;
  color: #333;
  padding-block: 1rem;
  padding-inline: 1em 2em;
  display: inline-block;
  text-align: center;
  width: 100%;
  position: relative;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 960px) {
  .dl-btn a {
    padding-block: 1.5rem;
  }
}
.dl-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/dl_ico_black.svg) no-repeat center/contain;
  width: 1.25rem;
  height: 1.25rem;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.dl-btn a:hover {
  background: #333;
  color: white;
}
.dl-btn a:hover::before {
  background: url(../images/dl_ico_white.svg) no-repeat center/contain;
}

.back-btn {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .back-btn {
    margin-top: 50px;
  }
}
.back-btn a {
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #333;
  padding-left: 1.75em;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.back-btn a:hover {
  opacity: 0.5;
}
.back-btn a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.25em;
  aspect-ratio: 1/1;
  background: url(../images/arrows2.svg) no-repeat center/contain;
  transform: scaleX(-1);
}

.animate-text .char {
  opacity: 0;
}

.animate-text.inview .char {
  animation: letter-glow 0.7s 0s ease both, kf-blur-chars 2s 0s ease both;
}
.animate-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.animate-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.animate-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.animate-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.animate-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.animate-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.animate-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.animate-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.animate-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.animate-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.animate-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.animate-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.animate-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.animate-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.animate-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.animate-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.animate-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.animate-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.animate-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.animate-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.animate-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.animate-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.animate-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-blur-chars {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
.fadeUp-text .char {
  opacity: 0;
}

.fadeUp-text.inview .char {
  animation-name: kf-fadeUp-chars;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.fadeUp-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.fadeUp-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.fadeUp-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.fadeUp-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.fadeUp-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.fadeUp-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.fadeUp-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.fadeUp-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.fadeUp-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.fadeUp-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.fadeUp-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.fadeUp-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.fadeUp-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.fadeUp-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.fadeUp-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.fadeUp-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.fadeUp-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.fadeUp-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.fadeUp-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.fadeUp-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.fadeUp-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.fadeUp-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.fadeUp-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.fadeUp-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.fadeUp-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.fadeUp-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.fadeUp-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.fadeUp-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.fadeUp-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.fadeUp-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-fadeUp-chars {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  font-family: "Noto Serif JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-style: normal;
  color: #333;
  background: #F6F6F3;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1440px) {
  .wrapper {
    padding-top: 80px;
  }
}
@media screen and (max-width: 960px) {
  .wrapper {
    padding-top: 70px;
  }
}

.container {
  flex: 1;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
.lg-inner {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
}

.sm-inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.section_content {
  margin: 140px 0;
}
.section_content._top {
  margin: 80px 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    margin: 80px 0;
  }
  .section_content._top {
    margin: 40px 0;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 600px) {
  .flex {
    flex-direction: column;
  }
}

.grid {
  display: grid;
}

.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

.main-ttl {
  font-size: clamp(2.2rem, 1.877rem + 1.44vw, 3.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
}
.main-ttl ._emphasis {
  margin-inline: 1rem 0;
  background: #8CAA82;
  font-size: clamp(1.4rem, 1.262rem + 0.62vw, 2rem);
  border-radius: 50px;
  padding: 0.15rem 1.5rem;
  margin-block: 0 0.5rem;
  color: white;
  display: inline-block;
  vertical-align: middle;
}
.main-ttl._green {
  color: #8CAA82;
}
@media screen and (max-width: 960px) {
  .main-ttl {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .main-ttl {
    font-size: 6.4vw;
  }
}
.main-ttl span {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  display: block;
  color: #333;
}

.main-txt {
  font-size: clamp(1.5rem, 1.385rem + 0.51vw, 2rem);
  line-height: 2.2;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  .main-txt {
    line-height: 2;
    text-align: left;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .main-txt._short {
    text-align: center;
  }
}

.news_list {
  margin-bottom: 5rem;
  padding: 0 1rem;
}
@media screen and (max-width: 960px) {
  .news_list {
    margin-bottom: 4rem;
  }
}
.news_list li {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #DDD;
}
.news_list a {
  display: block;
  padding: 1rem 0 0;
  color: #333;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 960px) {
  .news_list a {
    padding: 0.5rem 0 0;
  }
}
.news_list a:hover {
  opacity: 0.5;
}

.news_list-ttl {
  position: relative;
  padding-right: 2rem;
  font-size: clamp(1.5rem, 1.431rem + 0.31vw, 1.8rem);
}
.news_list-ttl::after {
  content: "";
  position: absolute;
  background: url(../images/arrows_black.svg) no-repeat center/contain;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.75em;
  aspect-ratio: 15/10;
}

.info-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3.4rem, 3.354rem + 0.21vw, 3.6rem);
  font-weight: 500;
  line-height: 0;
  color: #8CAA82;
}
@media screen and (max-width: 480px) {
  .info-tel a {
    font-size: 8vw;
  }
}
.info-tel .ico {
  width: 55px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 960px) {
  .info-tel .ico {
    width: 50px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transform: translateY(-20px);
  opacity: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: #F6F6F3;
}
.header.header-inview {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .header {
    height: 70px;
  }
}
.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 960px) {
  .header.is-scrolled {
    box-shadow: none;
  }
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 200px;
  margin-right: 2rem;
  margin-left: 3rem;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  z-index: 10000;
}
.logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1440px) {
  .logo {
    width: 13vw;
    margin-left: 1.5vw;
  }
}
@media screen and (max-width: 960px) {
  .logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    margin-top: 20px;
    margin-left: 20px;
  }
}

.g-nav-list {
  height: 100px;
}
@media screen and (max-width: 1440px) {
  .g-nav-list {
    height: 80px;
  }
}
.g-nav-list ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
}
.g-nav-list ul ._item:not(.nav-tel) {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  margin: 0.5em 1.5vw 0.5em 0;
}
@media screen and (max-width: 1440px) {
  .g-nav-list ul ._item:not(.nav-tel) {
    margin-right: 1vw;
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 960px) {
  .g-nav-list ul ._item:not(.nav-tel) {
    margin: 0;
  }
}
.g-nav-list ul ._item:not(.nav-tel) a {
  color: #333;
  text-decoration: none;
  padding: 1em 0.5em;
  white-space: nowrap;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.g-nav-list ul ._item:not(.nav-tel) a._border {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  margin-right: 1rem;
}
@media screen and (max-width: 480px) {
  .g-nav-list ul ._item:not(.nav-tel) a._border {
    font-size: 1.6rem;
  }
}
.g-nav-list ul ._item:not(.nav-tel) a._border:hover {
  background: #333;
  color: white;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .g-nav-list ul ._item:not(.nav-tel) a._border {
    margin-top: 4rem;
    width: 100%;
    text-align: center;
    margin-right: 0;
    padding: 1.5rem;
  }
}
.g-nav-list ul ._item:not(.nav-tel) a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .g-nav-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
    height: auto;
  }
  .g-nav-list ul ._item:not(.nav-tel) a {
    position: relative;
    text-decoration: none;
    padding: 1.5em 0.5em;
    display: block;
    letter-spacing: 0.1em;
    font-size: min(1.6rem, 4.5vw);
    font-weight: 500;
  }
}
@media screen and (max-width: 960px) and (max-width: 480px) {
  .g-nav-list ul ._item:not(.nav-tel) a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  .g-nav-list ul ._item.nav-tel,
  .g-nav-list ul ._item:has(> .nav-main-link._border) {
    grid-column: 1/-1;
  }
}

.nav-tel {
  height: 100%;
}
.nav-tel a {
  height: 100%;
  display: flex;
  align-items: center;
  background: #8CAA82;
  color: white;
  padding: 1.5rem 3rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1440px) {
  .nav-tel a {
    font-size: 1vw;
    padding: 1vw 1.5vw;
  }
}
@media screen and (max-width: 960px) {
  .nav-tel a {
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1.6rem;
    width: 100%;
    height: auto;
    justify-content: center;
  }
}
.nav-tel .tel-txt {
  display: block;
}
.nav-tel .tel-num {
  font-size: 2.6rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .nav-tel .tel-num {
    font-size: 1.8vw;
    text-wrap: nowrap;
  }
}
@media screen and (max-width: 960px) {
  .nav-tel .tel-num {
    justify-content: center;
    font-size: 2.4rem;
  }
}
.nav-tel .ico {
  width: min(40px, 3vw);
  margin-right: 0.5rem;
}
@media screen and (max-width: 960px) {
  .nav-tel .ico {
    width: 40px;
  }
}
@media screen and (max-width: 960px) {
  .nav-tel {
    width: 100%;
  }
}

.toggle,
.float-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .toggle {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 34px;
    height: 34px;
  }
  .toggle span {
    display: inline-block;
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    left: 0;
    height: 1px;
    border-radius: 3px;
    background: #333;
    width: 100%;
  }
  .toggle span:nth-of-type(1) {
    top: 8px;
  }
  .toggle span:nth-of-type(2) {
    top: 16px;
  }
  .toggle .openbtn-area {
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .toggle.active .openbtn-area {
    transform: rotateY(-180deg);
  }
  .toggle.active .openbtn-area span {
    background: #333;
  }
  .toggle.active .openbtn-area span:nth-of-type(1) {
    top: 10px;
    transform: translateY(4px) rotate(-45deg);
  }
  .toggle.active .openbtn-area span:nth-of-type(2) {
    top: 18px;
    transform: translateY(-4px) rotate(45deg);
  }
  .toggle.active .toggle-label {
    opacity: 0;
  }
  .toggle .toggle-label {
    display: block;
    margin-top: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    width: 100%;
    pointer-events: none;
    height: 0;
  }
  .g-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    top: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
    background: #F6F6F3;
    transition: 0.6s all;
  }
  .g-nav.panelactive {
    visibility: visible;
    opacity: 1;
  }
  .g-nav .g-nav_wrap {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 90px 20px 20px;
  }
  .nav-main-link:not(._border) {
    position: relative;
    border-bottom: 1px solid #DDD;
  }
  .nav-main-link:not(._border)::before {
    position: absolute;
    content: "";
    background: url(../images/arrows_black.svg) no-repeat center/contain;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  }
  .g-nav ._item {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }
  .g-nav.panelactive ._item {
    animation: fadeInUp 0.4s ease-out forwards;
    pointer-events: auto;
  }
  .g-nav.panelactive ._item:nth-child(1) {
    animation-delay: 0.05s;
  }
  .g-nav.panelactive ._item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .g-nav.panelactive ._item:nth-child(3) {
    animation-delay: 0.15s;
  }
  .g-nav.panelactive ._item:nth-child(4) {
    animation-delay: 0.2s;
  }
  .g-nav.panelactive ._item:nth-child(5) {
    animation-delay: 0.25s;
  }
  .g-nav.panelactive ._item:nth-child(6) {
    animation-delay: 0.3s;
  }
  .g-nav.panelactive ._item:nth-child(7) {
    animation-delay: 0.35s;
  }
  .g-nav.panelactive ._item:nth-child(8) {
    animation-delay: 0.4s;
  }
  .g-nav.panelactive ._item:nth-child(9) {
    animation-delay: 0.45s;
  }
  .g-nav.panelactive ._item:nth-child(10) {
    animation-delay: 0.5s;
  }
  .g-nav.panelactive ._item:nth-child(11) {
    animation-delay: 0.55s;
  }
  .g-nav.panelactive ._item:nth-child(12) {
    animation-delay: 0.6s;
  }
  .g-nav.panelactive ._item:nth-child(13) {
    animation-delay: 0.65s;
  }
  .g-nav.panelactive ._item:nth-child(14) {
    animation-delay: 0.7s;
  }
  .g-nav.panelactive ._item:nth-child(15) {
    animation-delay: 0.75s;
  }
  .g-nav.panelactive ._item:nth-child(16) {
    animation-delay: 0.8s;
  }
  .g-nav.panelactive ._item:nth-child(17) {
    animation-delay: 0.85s;
  }
  .g-nav.panelactive ._item:nth-child(18) {
    animation-delay: 0.9s;
  }
  .g-nav.panelactive ._item:nth-child(19) {
    animation-delay: 0.95s;
  }
  .g-nav.panelactive ._item:nth-child(20) {
    animation-delay: 1s;
  }
  .g-nav.panelactive ._item:nth-child(21) {
    animation-delay: 1.05s;
  }
  .g-nav.panelactive ._item:nth-child(22) {
    animation-delay: 1.1s;
  }
  .g-nav.panelactive ._item:nth-child(23) {
    animation-delay: 1.15s;
  }
  .g-nav.panelactive ._item:nth-child(24) {
    animation-delay: 1.2s;
  }
  .g-nav.panelactive ._item:nth-child(25) {
    animation-delay: 1.25s;
  }
  .g-nav.panelactive ._item:nth-child(26) {
    animation-delay: 1.3s;
  }
  .g-nav.panelactive ._item:nth-child(27) {
    animation-delay: 1.35s;
  }
  .g-nav.panelactive ._item:nth-child(28) {
    animation-delay: 1.4s;
  }
  .g-nav.panelactive ._item:nth-child(29) {
    animation-delay: 1.45s;
  }
  .g-nav.panelactive ._item:nth-child(30) {
    animation-delay: 1.5s;
  }
  .g-nav.panelactive ._item:nth-child(31) {
    animation-delay: 1.55s;
  }
  .g-nav.panelactive ._item:nth-child(32) {
    animation-delay: 1.6s;
  }
  .g-nav.panelactive ._item:nth-child(33) {
    animation-delay: 1.65s;
  }
  .g-nav.panelactive ._item:nth-child(34) {
    animation-delay: 1.7s;
  }
  .g-nav.panelactive ._item:nth-child(35) {
    animation-delay: 1.75s;
  }
  .g-nav.panelactive ._item:nth-child(36) {
    animation-delay: 1.8s;
  }
  .g-nav.panelactive ._item:nth-child(37) {
    animation-delay: 1.85s;
  }
  .g-nav.panelactive ._item:nth-child(38) {
    animation-delay: 1.9s;
  }
  .g-nav.panelactive ._item:nth-child(39) {
    animation-delay: 1.95s;
  }
  .g-nav.panelactive ._item:nth-child(40) {
    animation-delay: 2s;
  }
  .g-nav.panelactive ._item:nth-child(41) {
    animation-delay: 2.05s;
  }
  .g-nav.panelactive ._item:nth-child(42) {
    animation-delay: 2.1s;
  }
  .g-nav.panelactive ._item:nth-child(43) {
    animation-delay: 2.15s;
  }
  .g-nav.panelactive ._item:nth-child(44) {
    animation-delay: 2.2s;
  }
  .g-nav.panelactive ._item:nth-child(45) {
    animation-delay: 2.25s;
  }
  .g-nav.panelactive ._item:nth-child(46) {
    animation-delay: 2.3s;
  }
  .g-nav.panelactive ._item:nth-child(47) {
    animation-delay: 2.35s;
  }
  .g-nav.panelactive ._item:nth-child(48) {
    animation-delay: 2.4s;
  }
  .g-nav.panelactive ._item:nth-child(49) {
    animation-delay: 2.45s;
  }
  .g-nav.panelactive ._item:nth-child(50) {
    animation-delay: 2.5s;
  }
  .float-menu {
    z-index: 100;
    width: 100%;
    display: flex;
    position: fixed;
    bottom: 0;
    opacity: 1;
    transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .float-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .float-menu li a {
    padding: 1rem 0;
  }
  .float-menu li.float-menu-tel {
    width: 60%;
    background: #8CAA82;
  }
  .float-menu li.float-menu-tel a {
    color: white;
  }
  .float-menu li.float-menu-tel .tel-txt {
    font-size: 1.3rem;
  }
  .float-menu li.float-menu-tel .tel-num {
    font-size: 2rem;
    display: flex;
    align-items: center;
  }
  .float-menu li.float-menu-tel .ico {
    margin-right: 0.25rem;
    width: 35px;
  }
  .float-menu li.float-menu-kyouka {
    width: 40%;
    background: white;
  }
  .float-menu li.float-menu-kyouka a {
    color: #333;
  }
}
.float-menu--hidden {
  transform: translateY(100%);
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  margin-top: 2rem;
  background: #8CAA82;
  color: white;
  padding: 4rem 0 3rem;
}
@media screen and (max-width: 960px) {
  .footer {
    padding-bottom: 30px;
  }
}

.foot-contact {
  margin: 2rem 0 5rem;
}
@media screen and (max-width: 960px) {
  .foot-contact {
    margin: 2rem 0 4rem;
  }
}

.foot-contact-txt {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1rem;
}

.foot-tel {
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 480px) {
  .foot-tel {
    font-size: 7vw;
  }
}
.foot-tel a {
  display: flex;
  justify-content: center;
  color: white;
  font-size: 4rem;
  font-weight: 600;
}
.foot-tel a .ico {
  margin-right: 0.5rem;
}
@media screen and (max-width: 480px) {
  .foot-tel a {
    font-size: 9.5vw;
  }
}

.foot-logo {
  display: inline-block;
  width: min(240px, 55vw);
}
.foot-logo a {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: white;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.foot-logo a:hover {
  opacity: 0.5;
}
.foot-logo span {
  font-size: 3rem;
  margin-left: 0.5rem;
}

.foot-address {
  margin-top: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .foot-address {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .foot-info_box {
    text-align: center;
  }
}

.footWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .footWrap {
    align-items: center;
    flex-direction: column;
  }
}

.foot-nav a {
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.foot-nav a:hover {
  opacity: 0.5;
}

.foot-nav-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 5rem;
}
@media screen and (max-width: 1440px) {
  .foot-nav-list {
    gap: 2rem 3rem;
  }
}
@media screen and (max-width: 960px) {
  .foot-nav-list {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1rem;
    justify-items: start;
  }
}
.foot-nav-list li a {
  font-size: clamp(1.5rem, 1.431rem + 0.31vw, 1.8rem);
  color: white;
}
.foot-nav-list li a._border {
  font-size: 1.3rem;
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  .foot-nav-list li a._border {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 960px) {
  .foot-nav-list li a {
    display: block;
    padding: 1rem 0;
  }
}

.backtotop.show {
  opacity: 1;
}

.backtotop {
  opacity: 0;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 960px) {
  .backtotop {
    display: none;
  }
}
.backtotop a {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: rgba(51, 51, 51, 0.87);
  width: 50px;
  height: 50px;
  padding: 17px 15px 15px;
  z-index: 999;
  border-radius: 50%;
  transition: 0.6s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/arrows_white.svg) no-repeat center/contain;
  width: 15px;
  aspect-ratio: 15/10;
  transform: rotate(-90deg);
}
.backtotop a:hover {
  background: rgba(51, 51, 51, 0.6);
}

.copy {
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .copy {
    margin-top: 4rem;
  }
}/*# sourceMappingURL=style.css.map */