:root {
  --viewport-width: 100vw;
  --b: calc(var(--viewport-width) / 160);
}

@media screen and (max-width: 550px) {
  :root {
    --viewport-width: max(100vw, 550px);
    --b: calc(var(--viewport-width) / 55);
  }
}
* {
  color: #141414;
  font-family: "Shippori Mincho", "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2em;
}

p {
  font-size: max(1.4rem, 14px);
  line-height: 2.5;
  letter-spacing: 0.1em;
}

h3 {
  color: #007440;
  font-size: max(2.9rem, 22px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  h3 {
    font-size: 29px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.js-FadeInTurnUP li {
  opacity: 0;
  transform: translateY(20%);
}

.js-slider__list {
  cursor: -webkit-grab;
  cursor: grab;
}
.js-slider__list.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.js-slider__list.dragging > * {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.slider-outer {
  position: relative;
  overflow: hidden;
  padding: 0 10%;
}
@media screen and (max-width: 550px) {
  .slider-outer {
    padding: 0 5%;
  }
}
.slider-outer .slider__nav {
  position: absolute;
  top: 50%;
  left: 2.5%;
  right: 2.5%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 1000;
}
@media screen and (max-width: 550px) {
  .slider-outer .slider__nav {
    left: 1.25%;
    right: 1.25%;
  }
}
.slider-outer .slider__nav button {
  position: relative;
  width: 6rem;
  aspect-ratio: 1/1;
  border: none;
  background: #007440;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .slider-outer .slider__nav button {
    width: 10rem;
  }
}
@media screen and (max-width: 550px) {
  .slider-outer .slider__nav button {
    width: 35px;
  }
}
.slider-outer .slider__nav button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  aspect-ratio: 1/1;
  border-style: solid;
  border-width: 1.5px 1.5px 0 0;
  border-color: #fff;
  transition: border-color 0.3s ease;
}
.slider-outer .slider__nav button.slider__prev::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}
.slider-outer .slider__nav button.slider__next::before {
  transform: translate(-75%, -50%) rotate(45deg);
}
.slider-outer .slider__nav button:hover {
  background: #007440;
  transform: scale(1.05);
}
.slider-outer .slider__nav button:hover::before {
  border-color: #ffffff;
}

.slider {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(max(5rem, 20px) + 7px);
}
.slider ul:not(.tag) {
  display: flex;
  margin-top: 2rem;
  scrollbar-width: none;
  -ms-overflow-scrollbar: none;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  scroll-behavior: smooth;
  scroll-snap-type: none !important;
  will-change: transform;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.slider ul:not(.tag)::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 550px) {
  .slider ul:not(.tag) {
    padding: 0;
    margin: 0 7.5%;
    margin-top: 20px;
  }
}
.slider ul:not(.tag):active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.slider ul:not(.tag) > li, .slider ul:not(.tag) > li.clone {
  padding: 0 5px;
  flex-shrink: 0;
  flex-grow: 0;
  user-drag: none;
  -webkit-user-drag: none;
  transition: opacity 0.3s ease;
}
.slider ul:not(.tag) > li a, .slider ul:not(.tag) > li.clone a {
  display: block;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  .slider ul:not(.tag) > li a, .slider ul:not(.tag) > li.clone a {
    width: 100%;
  }
}
.slider ul:not(.tag) > li a img, .slider ul:not(.tag) > li.clone a img {
  pointer-events: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  user-drag: none;
  -webkit-user-drag: none;
  transition: transform 0.5s ease;
  will-change: transform;
}
.slider ul:not(.tag) > li a:hover img, .slider ul:not(.tag) > li.clone a:hover img {
  transform: scale(1.05);
}
.slider ul:not(.tag) > li a b, .slider ul:not(.tag) > li.clone a b {
  display: block;
  font-size: max(1.5rem, 15px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .slider ul:not(.tag) > li a b, .slider ul:not(.tag) > li.clone a b {
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.slider ul:not(.tag) > li a p, .slider ul:not(.tag) > li.clone a p {
  line-height: 1.2;
  font-size: max(1.4rem, 14px);
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .slider ul:not(.tag) > li a p, .slider ul:not(.tag) > li.clone a p {
    font-size: 14px;
  }
}
.slider__dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  gap: max(1rem, 10px);
  display: flex;
  justify-content: center;
  z-index: 5;
}
@media screen and (max-width: 550px) {
  .slider__dots {
    padding-top: 40px;
    gap: 10px;
  }
}
.slider__dots .dot {
  width: max(1rem, 10px);
  height: max(1rem, 10px);
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
  background: #def0ea;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider__dots .dot:hover {
  background: rgba(0, 116, 64, 0.5);
}
.slider__dots .dot.active {
  background: #007440;
  transform: scale(1.2);
}

.segment {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 50px;
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: max(12.5rem, 100px);
  background: #fff;
  z-index: calc(infinity);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 550px) {
  .header {
    padding: 0 5%;
    height: 60px;
  }
}
.header__logo {
  width: max(18rem, 150px);
}
@media screen and (max-width: 550px) {
  .header__logo {
    width: 130px;
    margin-bottom: 10px;
  }
}
.header__nav,
.header__nav_sp{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {

  .header__nav {
    display: none;
  }

}

@media screen and (min-width: 1000px) {

  .header__nav_sp {
    display: none;
  }
    
 }

.header__nav .nav__inner ul,
.header__nav_sp .nav__inner ul{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}
.header__nav .nav__inner ul li a,
.header__nav_sp .nav__inner ul li a,
.header__nav .nav__inner ul li button,
.header__nav_sp .nav__inner ul li button{
  display: block;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.header__nav .nav__inner ul li a.accent,
.header__nav_sp .nav__inner ul li a.accent,
.header__nav .nav__inner ul li button.accent,
.header__nav_sp .nav__inner ul li button.accent{
  color: #fff;
  font-size: max(1.6rem, 14px);
  padding: 10px 10px;
  background: #007440;
}
.header__nav .nav__inner ul li a.youtube img,
.header__nav_sp .nav__inner ul li a.youtube img,
.header__nav .nav__inner ul li button.youtube img,
.header__nav_sp .nav__inner ul li button.youtube img{
  height: max(2.2rem, 22px);
}
.header__nav .nav__inner ul li a.instagram img,
.header__nav_sp .nav__inner ul li a.instagram img,
.header__nav .nav__inner ul li button.instagram img,
.header__nav_sp .nav__inner ul li button.instagram img{
  height: max(2.2rem, 22px);
}
.header__hamburger {
  position: relative;
  width: 45px;
  height: 25px;
  cursor: pointer;
  z-index: 100000;
}
@media screen and (min-width: 1600px) {
  .header__hamburger {
    width: 4.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #007440;
  transition: all 0.3s;
}
.header__hamburger > span:nth-of-type(1) {
  top: 0;
}
.header__hamburger > span:nth-of-type(2) {
  top: 25%;
}
.header__hamburger > span:nth-of-type(3) {
  top: 50%;
}
.header__hamburger > span:nth-of-type(4) {
  bottom: 0;
  height: auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  background: none;
}
.header__hamburger > span:nth-of-type(4) span {
  color: #007440;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  background: none;
}
.header__hamburger.active span {
  background: #fff;
}
.header__hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.active span:nth-of-type(4) {
  display: none;
  background: none;
}
.header__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: #007440;
  padding: 10rem 5% 5rem;
  z-index: 99999;
  opacity: 0;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72), opacity 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72);
}
@media screen and (max-width: 1000px) {
  .header__menu {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .header__menu {
    padding-bottom: 125px;
  }
}
.header__menu.active {
  opacity: 1;
  right: 0;
}
.header .breadcrumb {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
}
.header .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
}
.header .breadcrumb ol li {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.header .breadcrumb ol li:not(:last-child)::after {
  content: ">";
  margin: 0 5px;
  font-size: max(1.4rem, 10px);
}
@media screen and (max-width: 768px) {
  .header .breadcrumb ol li:not(:last-child)::after {
    margin: 0 3px;
  }
}
@media screen and (max-width: 550px) {
  .header .breadcrumb ol li:not(:last-child)::after {
    font-size: 10px;
  }
}
.header .breadcrumb ol li:last-child {
  font-weight: 500;
}
.header .breadcrumb ol li a,
.header .breadcrumb ol li span {
  font-size: max(1.4rem, 10px);
}
@media screen and (max-width: 550px) {
  .header .breadcrumb ol li a,
  .header .breadcrumb ol li span {
    font-size: 10px;
  }
}

.header:not(.top-page) .breadcrumb {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.menu__list li a,
.menu__list li button {
  color: #fff;
  display: block;
  padding: 2rem 0;
  font-size: 16px;
  transition: color 0.3s ease;
}
.menu__list li a:hover,
.menu__list li button:hover {
  color: #141414;
}
.menu__accent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}
.menu__accent a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #def0ea;
  color: #141414;
  font-size: 16px;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}
.menu__accent a:hover {
  opacity: 0.8;
}
.menu__sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.menu__sns a {
  width: 4rem;
  height: 4rem;
}
.menu__sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#mainR .header {
  gap: 20px;
  left: 60rem;
  width: calc(100% - 60rem);
  margin-left: auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #mainR .header {
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 550px) {
  #mainR .header {
    padding: 0 5%;
  }
}
#mainR .header__logo {
  width: max(18rem, 150px);
}
@media screen and (max-width: 550px) {
  #mainR .header__logo {
    width: 140px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1300px) {
  #mainR .header__nav .nav__inner:nth-of-type(2) {
    display: none;
  }
}
#mainR .header__nav .nav__inner:nth-of-type(2) ul li a {
  font-size: max(1.6rem, 12px);
}

.footer {
  position: relative;
  padding-top: 6rem;
}
@media screen and (max-width: 550px) {
  .footer {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .footer:not(#front .footer) .container > .title {
    gap: 20px;
    display: flex;
    align-items: end;
  }
}
@media screen and (max-width: 768px) {
  .footer:not(#front .footer) .container > .title {
    align-items: start;
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .footer:not(#front .footer) .container > .title p {
    line-height: 1;
  }
}
@media screen and (max-width: 550px) {
  .footer:not(#front .footer) .container > .title p {
    font-size: 14px;
    line-height: 2;
  }
}
.footer:not(#front .footer) .footer__wrapper {
  gap: 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .footer:not(#front .footer) .footer__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .footer:not(#front .footer) .footer__wrapper {
    gap: 20px;
  }
}
.footer:not(#front .footer) .footer__wrapper--text {
  flex: 1;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .footer:not(#front .footer) .footer__wrapper--text {
    width: 100%;
  }
}
.footer:not(#front .footer) .footer__wrapper--text > p {
  font-size: max(1.4rem, 14px);
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1300px) {
  .footer:not(#front .footer) .footer__wrapper--text > p {
    display: block;
    margin-top: 20px;
  }
}
.footer:not(#front .footer) .footer__wrapper--image {
  display: flex;
  gap: 20px;
  width: 80rem;
}
@media screen and (max-width: 1300px) {
  .footer:not(#front .footer) .footer__wrapper--image {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .footer:not(#front .footer) .footer__wrapper--image {
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .footer:not(#front .footer) .footer__wrapper--image {
    flex-direction: column;
  }
}
.footer:not(#front .footer) .footer__wrapper--image img {
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer:not(#front .footer) .footer__wrapper--image img {
    width: 100%;
    height: auto;
  }
}
.footer .footer__title {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer__title b {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: max(2.6rem, 18px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer .footer__title b span {
  display: inline-block;
  color: #fff;
  font-size: max(1.4rem, 14px);
  letter-spacing: 0;
  padding: 0 10px;
  background: #007440;
}
@media screen and (max-width: 550px) {
  .footer .footer__title b span {
    width: 100%;
    text-align: center;
    padding: 5px;
  }
}
.footer .footer__title p {
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 550px) {
  .footer .footer__title p {
    gap: 30px;
  }
}
.footer .footer__title--flex {
  gap: max(2rem, 20px);
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  .footer .footer__title--flex {
    margin-top: max(3rem, 30px);
  }
}
.footer .footer__wrapper {
  margin-bottom: 6rem;
}
@media screen and (max-width: 550px) {
  .footer .footer__wrapper {
    margin-bottom: 30px;
  }
}
.footer .footer__wrapper--image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .inner {
  gap: max(2rem, 15px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .footer .inner {
    gap: 15px;
  }
}
.footer .inner .tel {
  display: flex;
  gap: max(1rem, 10px);
  padding: max(1rem, 10px) max(1.5rem, 10px);
  background: #def0ea;
}
@media screen and (max-width: 550px) {
  .footer .inner .tel {
    padding: 10px;
  }
}
.footer .inner .tel__image {
  width: max(2.3rem, 18px);
  margin-top: calc(max(3.4rem, 28px) / 4);
}
@media screen and (max-width: 550px) {
  .footer .inner .tel__image {
    width: 18px;
    margin-top: 4px;
  }
}
.footer .inner .tel__image img {
  width: 100%;
}
.footer .inner .tel__text {
  gap: max(1rem, 10px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer .inner .tel__text--number {
  color: #007440;
  font-size: max(3.4rem, 28px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 550px) {
  .footer .inner .tel__text--number {
    font-size: 28px;
  }
}
.footer .inner .tel__text--time {
  color: #007440;
  font-size: max(1.6rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 550px) {
  .footer .inner .tel__text--time {
    display: none;
  }
}
.footer .inner .sns__list {
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .footer .inner .sns__list {
    gap: 15px;
  }
}
.footer .inner .sns__list a img {
  width: max(4rem, 23px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .footer .inner .sns__list a img {
    width: auto;
    height: 30px;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #007440;
  height: max(3.5rem, 35px);
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
}
.footer__bottom ul {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .footer__bottom ul {
    width: 80%;
    margin: auto;
    padding-bottom: 10px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 550px) {
  .footer__bottom ul {
    width: 90%;
    gap: 30px;
  }
}
.footer__bottom ul li a {
  color: #fff;
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
}
.footer__bottom p {
  color: #fff;
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__bottom p {
    padding-top: 10px;
  }
}
.footer .deco {
  top: 0;
  right: 0;
  width: 25rem;
}
@media screen and (max-width: 550px) {
  .footer .deco {
    width: 200px;
  }
}

#front .footer .footer__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}
#front .footer .footer__wrapper--text {
  flex: 1;
  width: 100%;
}
#front .footer .footer__wrapper--text p {
  font-size: max(1.6rem, 14px);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 2rem;
}
#front .footer .footer__wrapper--text p span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
#front .footer .footer__wrapper--image {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  #front .footer .footer__wrapper--image {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
}
#front .footer .footer__wrapper--image > img {
  flex: 1;
  height: auto;
}
@media screen and (max-width: 1300px) {
  #front .footer .footer__wrapper--image > img {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  #front .footer .footer__bottom {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    height: auto;
  }
}
@media screen and (max-width: 1300px) {
  #front .footer .footer__bottom ul {
    width: 80%;
    margin: auto;
    padding-bottom: 10px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 550px) {
  #front .footer .footer__bottom ul {
    gap: 3rem;
  }
}

.contact {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: linear-gradient(180deg, rgb(253, 255, 254) 0%, rgb(192, 227, 208) 100%);
}
@media screen and (max-width: 550px) {
  .contact {
    padding-top: 75px;
    padding-bottom: 50px;
  }
}
.contact > b {
  position: relative;
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  color: #007440;
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact > b::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: max(1.9rem, 10px);
  height: 1px;
  background: #007440;
}
.contact > b span {
  display: inline-block;
}
@media screen and (max-width: 550px) {
  .contact > b span {
    font-size: 16px;
    line-height: 1.5;
  }
}
.contact__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 9rem;
}
@media screen and (max-width: 768px) {
  .contact__wrapper {
    gap: 2rem;
    flex-direction: column;
  }
}
.contact__wrapper--inner {
  gap: 2rem;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 550px) {
  .contact__wrapper--inner {
    gap: 10px;
  }
}
.contact__wrapper--inner h6 {
  gap: 1rem;
  display: flex;
  align-items: center;
  font-size: max(1.8rem, 14px);
  letter-spacing: 0;
}
@media screen and (max-width: 550px) {
  .contact__wrapper--inner h6 {
    font-size: 14px;
  }
}
.contact__wrapper--inner h6::before {
  position: relative;
  content: "";
  transform: translateY(5%);
  height: max(0.9rem, 14px);
  aspect-ratio: 1/1;
  background: #007440;
}
@media screen and (max-width: 550px) {
  .contact__wrapper--inner h6::before {
    height: 14px;
    transform: translateY(5%);
  }
}
.contact__wrapper--inner .textBox {
  flex: 1;
  min-width: 200px;
}
@media screen and (max-width: 550px) {
  .contact__wrapper--inner .textBox {
    width: 100%;
  }
}
.contact__wrapper--inner .textBox p {
  font-size: max(1.4rem, 12px);
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 550px) {
  .contact__wrapper--inner .textBox p {
    font-size: 14px;
  }
}
.contact__wrapper--inner .imageBox {
  width: 34.5rem;
  min-width: 280px;
}
@media screen and (max-width: 550px) {
  .contact__wrapper--inner .imageBox {
    width: 100%;
  }
}
.contact__wrapper2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .contact__wrapper2 {
    flex-direction: column;
  }
}
.contact__wrapper2 a {
  flex: 1;
  display: block;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contact__wrapper2 a {
    width: 100%;
  }
}

#front .contact .contact__wrapper--inner p {
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  #front .contact .contact__wrapper2 {
    flex-direction: column;
  }
}
#front .contact .contact__wrapper2 a.btn.accent {
  font-size: max(1.4rem, 11px);
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  #front .contact .contact__wrapper2 a.btn {
    width: 100%;
  }
}

.btn {
  position: relative;
  display: block;
  color: #007440;
  font-size: max(1.8rem, 14px);
  line-height: 1;
  letter-spacing: 0.05em;
  background: #def0ea;
  padding: max(2.5rem, 25px) 2rem;
  transition: background 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72);
}
@media screen and (max-width: 550px) {
  .btn {
    font-size: 14px;
    padding: 25px;
  }
}
.btn.accent {
  letter-spacing: 0;
}
.btn .line {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10rem;
  height: 1px;
  background: rgba(0, 116, 64, 0.25);
}
.btn .line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 1px;
  background: #007440;
  transition: left 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72);
}
.btn:hover {
  color: #fff;
  background: #007440;
}
.btn:hover .line {
  background: rgba(255, 255, 255, 0.5);
}
.btn:hover .line::before {
  left: 80%;
  background: #fff;
}

.arrowBtn {
  position: relative;
  color: #fff;
  background: #007440;
}
.arrowBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: solid #fff;
  border-width: 0 1px 1px 0;
  padding: max(0.6rem, 5px);
  transform: translateY(-50%) rotate(-45deg);
  transition: right 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72);
}
.arrowBtn.arrowBtn2 {
  color: #007440;
  background: #fff;
  border: 1px solid #007440;
}
.arrowBtn.arrowBtn2::after {
  border: solid #007440;
  border-width: 0 1px 1px 0;
}
.arrowBtn:hover::after {
  right: 10px;
}

.deco {
  position: absolute;
}

.fixed-banner {
  position: fixed;
  width: 100%;
  display: none;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
@media screen and (max-width: 550px) {
  .fixed-banner {
    display: flex;
  }
}
.fixed-banner a {
  flex: 1;
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #007440;
  padding: 20px 0;
  text-align: center;
}
.fixed-banner a:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.fixed-scrolltop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 9999;
}
@media screen and (max-width: 550px) {
  .fixed-scrolltop {
    bottom: calc(5% + 40px);
  }
}
.fixed-scrolltop button {
  display: grid;
  place-items: center;
  width: max(7rem, 70px);
  aspect-ratio: 1/1;
  color: #fff;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #007440;
  border: 1px solid #fff;
  border-radius: 50%;
}

.parts-fv {
  position: relative;
  min-height: 300px;
}
@media screen and (max-width: 550px) {
  .parts-fv {
    height: 300px;
  }
}
.parts-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #007440 0%, rgba(0, 58, 32, 0) 60%);
}
.parts-fv img {
  width: 100%;
  min-height: 300px;
}
@media screen and (max-width: 550px) {
  .parts-fv img {
    height: 300px;
  }
}
.parts-fv h2 {
  position: absolute;
  color: #fff;
  top: 50%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: max(4rem, 30px);
  letter-spacing: 0.3em;
  filter: drop-shadow(0 0 6px #000);
  z-index: 100;
}
@media screen and (max-width: 550px) {
  .parts-fv h2 {
    font-size: 32px;
    top: calc(50% + 30px);
    transform: translateY(-50%);
  }
}
.parts-fv h2 > span {
  color: #fff;
  font-size: max(2.1rem, 18px);
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 550px) {
  .parts-fv h2 > span {
    font-size: 16px;
  }
}
.parts-fv h2 > span:first-of-type {
  min-width: 100%;
}
.parts-fv h2 > span.segment {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 550px) {
  .parts-fv h2 > span.segment {
    font-size: inherit;
  }
}
.parts-fv h2 br {
  display: none;
}
@media screen and (max-width: 550px) {
  .parts-fv h2 br {
    display: contents;
  }
}
.parts-fv h2 .animate-character {
  text-shadow: 0 0 10px #000;
}

.split .character-wrapper {
  min-width: unset;
  vertical-align: top;
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.split .character-wrapper .animate-character {
  opacity: 0;
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  transform: translateY(20px);
}
.split.loaded .character-wrapper .animate-character {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */