@charset "UTF-8";

html {
  color: #000000;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  word-break: break-all;
  font-size: 1.5rem;
  line-height: 1.7;
}

img {
  width: 100%;
}

/* ニュース */
.news_wrap {
  display: flex;
  flex-wrap: wrap;
  border-top: #F2F2F2 solid 1px;

  & dt, & dd {
    padding: 25px 0;
    border-bottom: #F2F2F2 solid 1px;
  }

  & dt {
    width: 12%;
    font-family: "Montserrat", serif;
    font-weight: 400;
    color: #B4B4B4;
  }

  & dd {
    width: 88%;
  }
}

/* ヘッダーナビ */
.nav-wrap {
  position: fixed;
  z-index: 999;
}

.m_fixed {
  left: 0;
  position: fixed;
  top: 0;
}

.nav-wrap_pc {
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 5px 9px -9px #b0b0b0;

  & .logo {
    width: 72px;
  }

  & .menu {
    height: 68px;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  & .menu ul {
    width: 752px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;

    & li {
      text-align: center;
      font-size: 1.3rem;
      font-weight: 500;

      & a:hover {
        color: #5CB531;
        transition: 0.3s;
      }

      & a {
        display: block;
      }

      & span {
        display: block;
        margin-top: 4px;
        color: #B4B4B4;
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-size: 1rem;
      }
    }
  }
}



.nav-wrap_sp {
  display: none;
  background: var(--background-navbar);
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0px 5px 9px -9px #b0b0b0;
}

.nav-wrap_sp .menu ul {
  width: 260px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 0 auto;
  box-shadow: 0px 13px 12px -6px rgba(0, 0, 0, 0.2);
}

.nav-wrap_sp .menu {
  width: 100%;
  font-size: 1.4rem;
  margin: 50px auto 0;
  position: absolute;
  top: 0;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;

  & li {
    position: relative;
    padding: 15px 0;
  }
}

.nav-wrap_sp .menu li.sp_navi_btn {
  width: 100%;
}

.nav-wrap_sp {
  & .logo {
    width: 62px;
    top: 8px;
    left: 6%;
    position: absolute;
  }
}

.menu-txt, .menu-txt_c {
  font-size: 1rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  margin-top: 10px;
}

.menu-txt_c {
  display: none;
}

.menu-txt {
  display: block;
}

/* Hamburger menu button */
.nav_btn_sp:checked~.menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.nav-wrap_sp .menu ul a {
  padding: 0 6%;
  text-decoration: none;
  font-size: 1.5rem;
  width: 100%;
  display: inline-block;
  text-transform: capitalize;
  opacity: 0;
  transition: 0.5s;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    right: 6%;
    top: calc(50% - 3.5px);
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45eg);
    transform: rotate(45deg);
    border-radius: 1px;
  }

  &:hover {
    opacity: 0.6;
  }
}

.nav-wrap_sp {
  & .menu li {
    background-color: #5CB531;
    color: #fff;
    border-bottom: 1px solid #fff;
    opacity: 0;
    transition: 0.5s;
    width: 100%;
    height: 60px;
    align-items: center;
    display: flex;
  }

  & .menu li:last-of-type {
    border: none;
  }
}


.nav_btn_sp:checked~.menu a,
.nav_btn_sp:checked~.menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.nav_btn_sp {
  display: none;
}

.menu-icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  right: 0;
  cursor: pointer;
  padding: 17px 8px 0 8px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #5CB531;
  text-align: center;
}

.navicon {
  background: #FFF;
  display: block;
  border-radius: 1px;
  height: 2px;
  position: relative;
  transition: 0.3s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #FFF;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 6px;
}

.navicon:after {
  bottom: 6px;
}

/* Hamburger Menu Animation Start */
.nav_btn_sp:checked~.menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.nav_btn_sp:checked~.menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.nav_btn_sp:checked~.menu-icon .menu-txt {
  display: none;
}

.nav_btn_sp:checked~.menu-icon .menu-txt_c {
  display: block;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.nav_btn_sp:checked~.menu-icon .navicon {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 50px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

main {
  padding-top: 68px;
}

/* ヘッダーナビ */


/* 共通 */
.inner_s {
  width: 830px;
  margin: 0 auto;
}

.inner_l {
  width: 1030px;
  margin: 0 auto;
}

.w-base {
  padding: 140px 0;
}

.g-base {
  background-color: #E9FAD8;
  padding: 140px 0;
}

.tit_sub {
  margin: 15px 0 60px;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  position: relative;

  &::before {
    content: url(/img/line.png);
    display: block;
    width: 38px;
    height: 10px;
    position: absolute;
    left: calc(50% - 19px);
    top: -50px;
  }

  & span {
    display: block;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    color: #B4B4B4;
  }
}

.number {
  counter-reset: h-counter;
}

.tit_mini {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  background-color: #E9FAD8;
  border-radius: 10px 0 0 10px;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: #5CB531;

  &::after {
    display: block;
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #5CB531;
    border-radius: 0 10px 10px 0;
    counter-increment: h-counter;
    content: counter(h-counter, decimal-leading-zero);
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;

  }
}

.point {
  background-color: #FFF;
  padding: 40px;
  width: 830px;
  margin: 60px auto 0;

  & span {
    margin: 0 20px 20px 0;
  }

  & dt {
    margin-bottom: 25px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    line-height: 1;
    color: #5CB531;
    font-size: 3.2rem;
  }
}

.photo {
  width: 830px;
  margin: 0 auto;
  display: block;
}

.center, .center-l {
  text-align: center;
}

.right {
  text-align: right;
}

.txt22 {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.txt22_g {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #5CB531;
}

.txt18 {
  font-size: 1.8rem;
}

.txt15 {
  margin: 30px 0;
  line-height: 2;
}

.txt32_g {
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  line-height: 1.8;
  color: #5CB531;
}

.att {
  font-size: 1.2rem;
}

.top100 {
  margin-top: 100px;
}

.top60 {
  margin-top: 60px;
}

.top40 {
  margin-top: 40px;
}

.top30 {
  margin-top: 30px;
}

.btm100 {
  margin-bottom: 100px;
}

.spbr {
  display: none;
}

.pcbr {
  display: block;
}

.btn {
  position: relative;
  display: grid;
  align-items: center;
  margin: 60px auto 0;
  width: 330px;
  height: 58px;
  background-color: #FCD225;
  border-radius: 10px;
  font-size: 1.5rem;
  text-align: center;
  transition: 0.3s;

  &::after {
    position: absolute;
    font-family: 'Material Icons Round';
    font-size: 1.5rem;
    content: "\e5cc";
    right: 5px;
    color: #000000;
    font-weight: 800;
  }

  &:hover {
    transition: 0.3s;
    background-color: #ffe371;
  }
}

/* タイトル共通 */
.maintitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  background-image: url(/img/ptn.png);
  color: #FFF;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;

  & span {
    display: block;
    margin-top: 0;
    color: #E6E4B1;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
  }
}


/* フッター */
footer {
  background-color: #F5EFE2;
}

.btn-f {
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  & li {
    width: 47.5%;
    height: 160px;
    background-color: #ED9034;
    border: 5px solid #fff;
    color: #fff;

    & a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      font-size: 2.2rem;
      font-family: "Zen Maru Gothic", serif;
      font-weight: 700;

      &:hover {
        background-color: #EC831B;
      }
    }

    & span {
      display: block;
      margin-top: 10px;
      color: #E6E4B1;
      font-size: 1.4rem;
      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
    }
  }
}

.f-navi_wrap {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.f-navi_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  & div:last-of-type {
    width: 535px;
  }
}

.f-logo {
  width: 150px;
  height: 162px;
}

.f-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  & li {
    width: 50%;
    margin-top: 20px;
    font-weight: 500;
  }
}

.f-menu:last-of-type {
  margin-top: 40px;

  & li {
    width: auto;
    flex-wrap: nowrap;
    color: #707070;
    font-weight: 400;
  }
}

#copy {
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  & small {
    font-size: 1.3rem;

  }
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: .3s;
}

.active {
  opacity: 1;
  visibility: visible;
}

.absolute {
  position: absolute;
  top: -40px;
  bottom: auto;
}

.page-top a {
  background-color: #FCD225;
  font-family: "Montserrat", serif;
  font-weight: 600;
  font-size: 2rem;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 10px;
  display: flex;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);

  &::after {
    content: "\e5ce";
    font-family: 'Material Icons Round';
    font-size: 1.5rem;
    color: #000000;
    position: absolute;
    display: block;
    top: 10px;
  }
}

/* 404ページ */
.notpage {
  border: 20px solid #E9FAD8;
  min-height: 100vh;

}

.notpage_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: calc(100svh - 40px);

  & h1 {
    width: 100%;
    margin-bottom: 70px;
    line-height: 1;
    font-size: 10rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    text-align: center;
    color: #5CB531;
  }

  & p {
    width: 100%;
  }
}

@media screen and (max-width: 1029px) {
  .inner_l {
    width: 90%;
  }
}

@media screen and (max-width: 829px) {

  .nav-wrap_pc {
    display: none;
  }

  .nav-wrap_sp {
    display: block;
  }

  main {
    padding-top: 50px;
  }

  .w-base, .g-base {
    padding: 60px 0;
  }

  .inner_s {
    width: 90%;
  }

  .txt22_g {
    font-size: 1.8rem;
  }

  .txt18 {
    text-align: left;
    font-size: 1.5rem;
    width: 90%;
    margin: 0 auto;
  }

  .center-l {
    text-align: left;
  }

  .tit_sub {
    margin: 20px 0 40px;
    line-height: 1.7;

    & span {
      margin-top: 5px;
      line-height: 1;
    }
  }

  .maintitle {
    height: 180px;
    background-size: 10%;
  }

  .point {
    width: 90%;
    padding: 20px;
    margin: 30px auto 0;

    & dt {
      font-size: 2.2rem;
      line-height: 1.8;
    }
  }

  .photo {
    width: 100%;
    margin-top: 30px;
  }

  .top60 {
    margin-top: 30px;
  }

  .top100 {
    margin-top: 40px;
  }

  .btm100 {
    margin-bottom: 40px;
  }


  .spbr {
    display: block;
  }

  .pcbr {
    display: none;
  }

  .btn {
    width: 100%;
  }

  /* ニュース */
  .news_wrap {
    & dt {
      width: 100%;
      border-bottom: none;
      padding: 15px 0 0 0;
    }

    & dd {
      padding: 5px 0 15px;
      width: 100%;
    }
  }


  /* フッター */
  .btn-f {
    padding: 40px 0;

    & li {
      height: 120px;
      width: 100%;
    }

    & li:first-of-type {
      margin-bottom: 20px;
    }
  }

  .f-navi_wrap {
    padding: 60px 0;
  }

  .f-navi_menu {
    & div:last-of-type {
      width: 100%;
    }

    & div:first-of-type {
      margin: 0 auto;
    }
  }

  .f-menu {
    margin-top: 20px;

    & li {
      width: 50%;
      margin-top: 13px;
    }
  }

  .f-menu:last-of-type {
    margin-top: 15px;

    & li {
      width: 50%;
    }
  }

  .page-top a {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;

    &::after {
      top: 5px
    }
  }

  .absolute {
    top: -30px;
  }

  /* 404ページ */
  .notpage_wrap {
    width: 90%;
    margin: 0 auto;

    & h1 {
      font-size: 6rem;
    }

    .txt22 {
      font-size: 1.5rem;
    }
  }

  .notpage {
    border-width: 10px;
  }
}