@charset "UTF-8";

:root {
  --c-green: #00712f;
  --c-gry: #333;
  --c-red: #dc2630;

}

/* ---------------------
base
--------------------- */
html,
:host {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: "Zen Maru Gothic", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
  color: var(--c-gry);
  background: #C5E5E9;
  background: linear-gradient(0deg, rgba(197, 229, 233, 1) 0%, rgba(183, 225, 200, 1) 100%);
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---------------------
layout
--------------------- */
.bg-white {
  background: #fff;
}

.wrap-common {
  padding-left: 8vw;
  padding-right: 8vw;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .wrap-common {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:text-left {
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .wrap-common {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xl\:static {
    position: static;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:block {
    display: block;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:items-center {
    align-items: center;
  }

}

/* ---------------------
font-style
--------------------- */
.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.not-italic {
  font-style: normal;
}

/* ---------------------
link-style
--------------------- */
a,
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

a[href^="tel:"],
a[href^="mailto:"] {
  text-decoration: none;
  color: var(--c-gry);
}

/* ---------------------
loading-style
--------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

#loading span {
  width: 60px;
  height: 60px;
  border: 6px solid var(--c-green);
  border-top: 6px solid #eee;
  border-radius: 50%;
}

/* ---------------------
header-style
--------------------- */
.header {
  align-items: center;
  padding: 1rem 5.5vw;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 50;
  background: #fff;
  transition: all 0.3s ease;
}

.header.scroll:before {
  top: 0;
}

.header .logo {
  width: 35%;
  max-width: 143px;
  position: relative;
  z-index: 51;
  margin: 0;
}

.header .logo img {
  vertical-align: baseline;
}

.header .btn-contact {
  color: var(--c-green);
  aspect-ratio: 1 / 1;
  width: 48px;
  background: var(--c-green);
  border-radius: 50%;
  font-size: 0.75rem;
  position: absolute;
  right: calc(5.5vw + 58px);
  z-index: 51;
}

#menu-toggle {
  color: var(--c-green);
  aspect-ratio: 1 / 1;
  width: 48px;
  background: #fff;
  border: solid 2px var(--c-green);
  border-radius: 50%;
  font-size: 0.75rem;
  position: absolute;
  right: 5.5vw;
  z-index: 51;
}

#menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--c-green);
  transition: all 0.3s ease;
}

#menu-toggle .bar-top,
#menu-toggle .bar-mid {
  margin-bottom: 4px;
}

#menu-toggle .bar-top.open {
  transform: rotate(45deg) translate(4px, 4px);
}

#menu-toggle .bar-mid.open {
  opacity: 0;
}

#menu-toggle .bar-bottom.open {
  transform: rotate(-45deg) translate(4px, -4px);
}

#menu {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 5vw;
  margin: 0 auto;
  border-radius: 20px;
  width: 80%;
  height: auto;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.gnavi {
  margin: 0;
}

.gnavi a {
  color: var(--c-gry);
  display: block;
  text-decoration: none;
}

.gnavi li {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.gnavi>li {
  width: 100%;
  border-bottom: solid 1px #D0D0D0;
  line-height: 3.5rem;
}

.gnavi>li:last-child {
  border-bottom: none;
}

.gnavi>li>a {
  position: relative;
  padding-right: 45px;
}

.gnavi>li.btn-pull>a:before,
.gnavi>li.btn-pull>a:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto 0;
  width: 12px;
  height: 2px;
  background: var(--c-green);
  transition: all 0.3s ease;
}

.gnavi>li.btn-pull>a:after {
  transform: rotate(90deg);
}

.gnavi>li.btn-pull.open>a:after {
  transform: rotate(180deg);
}

.gnavi .pull {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #D0D0D0;
  padding: .6rem 0;

  overflow: hidden;
  height: 0;
}

.gnavi .pull li {
  width: 100%;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 180%;
}

.gnavi .pull li a {
  position: relative;
  padding: .6rem 1.8rem;
}

.gnavi .pull li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 6px;
  height: 9px;
  background: url(../img/common/ico-tri.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.gnavi>li>a.clone:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto 0;
  width: 12px;
  height: 12px;
  background: url(../img/common/ico-clone.svg) no-repeat;
  background-size: contain;
  filter: invert(29%) sepia(55%) saturate(1446%) hue-rotate(112deg) brightness(92%) contrast(101%);
}

@media (min-width: 768px) {
  .header .btn-contact {
    width: auto;
    aspect-ratio: auto;
    padding: .7rem 1.4rem;
    gap: .3rem;
    border-radius: 40px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.60px;
    text-decoration: none;
  }
}

@media (min-width: 1280px) {
  .header {
    top: 3.8rem;
    width: 95%;
    max-width: 1171px;
    margin: 0 auto;
    padding: 1rem 1rem 1rem 3rem;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .header.scroll {
    top: 0;
    border-radius: 0 0 30px 30px;
  }

  .header:before {
    display: none;
  }

  .header .logo {
    width: 16%;
  }

  .header .btn-contact {
    position: static;
    order: 3;
  }

  .header .btn-contact:hover {
    background-color: var(--c-red);
  }

  #menu {
    position: static;
    width: auto;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    padding-top: 0;
    overflow-y: visible;
    padding: 0;
    margin: 0 2rem 0 auto;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  .gnavi {
    gap: 0;
    align-items: center;
  }

  .gnavi li {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 150%;
    width: auto;
  }

  .gnavi a {
    color: var(--c-gry);
  }

  .gnavi>li.btn-pull {
    width: auto;
  }

  .gnavi>li>a {
    border-bottom: none;
  }

  .gnavi>li>a:hover {
    color: var(--c-green);
  }

  .gnavi>li>a:after {
    background-color: transparent;
    background-image: unset;
  }

  .gnavi .pull {
    background: #fff;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    min-width: 326px;
    padding: 30px 30px 20px;
    margin: 0 auto;
    border: none;
    border-radius: 0 0 15px 15px;
  }

  .gnavi li:hover>.pull {
    visibility: visible;
    opacity: 1;
  }

  .gnavi .pull li {
    font-size: 1rem;
    font-weight: 700;
    padding: 0 1.5rem;
  }

  .gnavi .pull li a {
    padding: 5px 0 5px 26px;
  }

  .gnavi .pull li a:hover {
    color: var(--c-green);
    padding-left: calc(26px + .5rem);
  }

  .gnavi .pull li a::before {
    transition: all 0.3s ease;
  }

  .gnavi .pull li a:hover::before {
    left: 1.5rem;
  }

  .gnavi>li {
    position: relative;
    border-bottom: none;
  }

  .gnavi>li .link {
    padding: 5px 0px 5px 30px;
    position: relative;
  }

  .gnavi>li.btn-pull>a:before {
    display: none;
  }

  .gnavi .btn-pull .link:after {
    position: static;
    display: inline-block;
    margin-left: 0.25rem;
    width: 0;
    height: 0;
    background: transparent;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--c-green);
    transform: rotate(0);
  }

  .gnavi .btn-pull.open .link {
    color: var(--c-green);
  }

  .gnavi>li .link.clone {
    padding-right: 18px;
  }

  .gnavi>li>a.clone:after{
    width: 14px;
    height: 14px;
    right: 0;
  }

}

/* ---------------------
footer-style
--------------------- */
#totop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  text-align: center;
  background: var(--c-green);
  border-radius: 10px 0 0 10px;
}

#totop span {
  width: 12px;
  line-height: 0;
}

.footer {
  padding-top: 6rem;
  position: relative;
}

.page .footer {
  margin-top: 4rem;
}

.footer .bg-wh {
  border-radius: 30px 30px 0 0;
  background: #fff;
}

.footer .inner {
  max-width: 1260px;
  gap: 3rem 2rem;
  margin: 0 auto;
  padding: 6.5rem 12vw 3rem;
}

.footer .illust01,
.footer .illust02 {
  position: absolute;
}

.footer .illust01 {
  width: 20%;
  max-width: 124px;
  top: 0;
  left: 50%;
}

.footer .illust02 {
  width: 80%;
  max-width: 404px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.footer .block-btn {
  width: 100%;
  gap: .8rem 4%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .block-btn .width-third {
  width: 30.6%;
}

.footer .block-btn .width-full {
  width: 100%;
}

.footer .block-btn .f-ico-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: var(--c-green);
  font-size: 0.75rem;
  font-weight: 500;
  border: solid 1px var(--c-gry);
  border-radius: 5px;
}

.footer .block-btn .width-full .f-ico-btn {
  aspect-ratio: initial;
  flex-direction: initial;
  gap: .7rem;
  padding: 1rem .8rem;
  font-size: 0.875rem;
}

.footer .block-btn .width-third .f-ico-btn .ico {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1 / 1;
  text-align: center;
}

.footer .logo {
  display: block;
  width: 40%;
  max-width: 167px;
  margin: 0 0 1rem;
  margin-bottom: 1rem;
}

.footer .block-info {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: .1em;
}

.footer .block-info .address {
  font-style: normal;
}

.footer .block-info .tel {
  margin: 0;
}

.footer .list-sns {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer .block-bottom .list-link {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  gap: 1rem 1.5rem;
  margin-bottom: 3rem;
}

.footer .block-bottom .list-link a {
  color: var(--c-gry);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer .copyright {
  color: #AEAEAE;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.0625em;
  margin: 0;
}

@media (min-width: 480px) {
  .footer .inner {
    padding: 8rem 10vw 3rem;
  }
}

@media (min-width: 768px) {

  .footer .inner {
    justify-content: space-between;
    padding: 8rem 5vw 3rem;
  }

  .footer .logo {
    width: auto;
    margin: 0 0 1rem;
  }

  .footer .block-btn {
    width: auto;
  }

  .footer .block-bottom {
    width: 100%;
  }

  .footer .block-bottom .list-link {
    justify-content: center;
    flex-direction: initial;
    margin-bottom: 1rem;
  }

  .footer .copyright {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  #totop {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #totop span {
    width: 14px;
  }

  #totop span:hover:before {
    transform: translateY(-5px);
  }

  .footer {
    padding-top: 4.8rem;
  }

  .footer .inner {
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem 0;
    padding: 3rem 5vw 5rem;
  }

  .footer .block-btn,
  .footer .block-info {
    width: 30%;
  }

  .footer .illust01 {
    left: 3vw;
  }

  .footer .illust02 {
    width: 30%;
    margin: 0 5vw 0 auto;
  }

  .footer .block-btn {
    max-width: 276px;
  }

  .footer .block-bottom {
    width: 40%;
  }

  .footer .block-bottom .list-link {
    justify-content: flex-end;
  }

  .footer .block-bottom .list-link a {
    font-weight: 700;
  }

  .footer .copyright {
    text-align: right;
  }

}

@media (min-width: 1280px) {
  #totop:hover {
    padding-bottom: 10px;
  }

  .footer .logo:hover {
    opacity: .8;
  }

  .footer .list-sns a img {
    transition: all 0.3s ease;
  }

  .footer .list-sns a:hover img {
    transform: scale(1.1);
  }

  .footer .block-btn .f-ico-btn:hover {
    background: #f5fff9;
  }

  .footer .block-bottom .list-link a:hover {
    color: var(--c-green);
  }
}

/* ---------------------
btn-style
--------------------- */
/* ボタン */
.link-arrow {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-green);
  text-decoration: none;
  position: relative;
  padding: .5rem 1rem;
  border-radius: 32px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding-right: 40px;
}

.link-arrow span {
  position: relative;
  z-index: 1;
}

.link-arrow::before,
.link-arrow::after {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: transform 0.3s ease;
}

.link-arrow::before {
  content: "";
  background-color: var(--c-green);
  border-radius: 50%;
}

.link-arrow::after {
  content: url('../img/common/ico-arrow.svg');
  text-align: center;
  filter: invert(100%) sepia(93%) saturate(3%) hue-rotate(200deg) brightness(106%) contrast(100%);
}

.btn-white {
  position: relative;
  display: inline-block;
  padding: 12px 60px;
  background: #fff;
  border-radius: 26px;
  color: var(--c-green);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn-white::before,
.btn-white::after {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: transform 0.3s ease;
}

.btn-white::before {
  content: "";
  background-color: var(--c-green);
  border-radius: 50%;
}

.btn-white::after {
  content: url('../img/common/ico-arrow.svg');
  text-align: center;
  filter: invert(100%) sepia(93%) saturate(3%) hue-rotate(200deg) brightness(106%) contrast(100%);
}


.btn-green {
  position: relative;
  display: inline-block;
  padding: 12px 60px;
  background: var(--c-green);
  border-radius: 26px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn-green:hover {
  background: #4C946A;
}

.btn-green::before,
.btn-green::after {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: transform 0.3s ease;
}

.btn-green::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
}

.btn-green::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: var(--c-green);
  -webkit-mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
  mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
}

@media (min-width: 1280px) {
  .link-arrow::before {
    border-radius: 32px;
    transform-origin: right center;
    transition: transform .6s ease;
  }

  .link-arrow:hover {
    color: #fff;
  }

  .link-arrow:hover::before {
    transform: scale(20);
  }

  .btn-white:hover {
    background-color: #defefc;
  }
}

/* ---------------------
breadcrumbs-style
--------------------- */
.breadcrumbs {
  margin-bottom: 2rem;
  text-align: right;
}

.breadcrumbs .breadcrumbs-inner {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  justify-content: flex-end;
  gap: 0 .6rem;
}

.breadcrumbs .breadcrumbs-inner .item {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 32px;
  color: var(--c-green);
}

.breadcrumbs .breadcrumbs-inner .item a {
  color: var(--c-gry);
  text-decoration: none;
}

.breadcrumbs .breadcrumbs-inner .item:after {
  content: ">";
  display: inline-block;
  margin-left: .6rem;
  color: var(--c-gry);
}

.breadcrumbs .breadcrumbs-inner .item:nth-last-child(1):after {
  display: none;
}

@media (min-width: 1024px) {

  .breadcrumbs .breadcrumbs-inner .item a:hover {
    color: var(--c-green);
  }
}


/* ---------------------
pager-style
--------------------- */
.pager {
  list-style: none;
  padding: 0;
  margin: 2rem auto 3rem;
  justify-content: center;
  gap: 0.2rem 0.5rem;
}

.pager .pager-item {
  aspect-ratio: 1/1;
  min-width: 46px;
}

.pager .pager-item .link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 45px;
  text-align: center;
  color: #92C3C0;
  background-color: #E5F6F5;
}

.pager .pager-item.active .link {
  color: #fff;
  background-color: var(--c-green);
}

@media (min-width: 1024px) {
  .pager {
    margin: 4rem auto 6rem;
  }

  .pager .pager-item .link:hover {
    background-color: var(--c-green);
  }
}

/* ---------------------
animation-style
--------------------- */
.js-fade-up {
  opacity: 0;
  transform: translateY(-20px);
}

/* ---------------------
page-style 下層ページ
--------------------- */
/* 見出し */
.page-title {
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 150%;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1rem;
}

.page-title .sub {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  line-height: 100%;
  color: var(--c-green);
}

.page-title::after {
  content: "";
  display: block;
  width: 4px;
  height: 35px;
  background-image: radial-gradient(circle, #00712f 2px, transparent 2px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 4px 12px;
  margin: .5rem auto 0;
}

@media (min-width: 1280px) {
  .page-title {
    font-size: 3.125vw;
  }

  .page-title .sub {
    font-size: 1.25vw;
  }
}

/* レイアウト */
.page-contents-inner.bg-white {
  padding: 1rem 2rem 2rem;
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .page-contents-inner.bg-white {
    padding: 3rem 6rem 6rem;
    border-radius: 30px;
  }
}

@media (min-width: 1280px) {
  .page .main {
    margin-top: 5rem;
  }
}


/* お知らせ */
.nav-news_cate {
  margin-bottom: 20px;
}

.nav-news_cate ul.flex {
  gap: 15px 20px;
}

.cate {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 150%;
  color: var(--c-gry);
}

.cate::before {
  content: "# ";
  display: inline-block;
}

@media (min-width: 1024px) {

  .nav-news_cate ul.flex {
    gap: 10px 20px;
  }

  .cate {
    font-size: 1rem;
  }
}

@media (min-width: 1280px) {
  .nav-news_cate ul .cate:hover {
    color: #00712f;
  }
}


/**/

.page-read {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .page-read {
    padding: 0 2rem;
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 40px;
  }