@charset "UTF-8";
html {
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media all and (max-width: 767px) {
  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
}

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  padding: 0;
  margin: 0;
  font-weight: 500;
  letter-spacing: .05em;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-moz-selection {
  color: #fff;
  background-color: #A4B814;
}

::selection {
  color: #fff;
  background-color: #A4B814;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 62.5%;
  letter-spacing: .05em;
  min-width: 100%;
  width: 100%;
  background: #F3F4F7;
  color: #333;
  font-weight: 500;
  background: url(../images/bg.png);
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  opacity: .5;
  cursor: pointer;
}

ul {
  list-style: none;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

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

/* =============================
   共通見出しスタイル（汎用）
============================= */
.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 28px;
  line-height: 1.5;
  position: relative;
  z-index: auto;
  margin: 0 0 24px;
}

.section__title span {
  font-size: 16px;
  width: 100%;
  color: #2B4693;
}

.section__btn {
  background: #A4B814;
  color: #fff;
  padding: 26px;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
}

@media screen and (max-width: 500px) {
  .section__title {
    font-size: 20px;
  }
  .section__title span {
    font-size: 14px;
  }
  .section__btn {
    font-size: 14px;
    padding: 18px;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  height: 60px;
  color: white;
  background-color: transparent;
  padding: 0 20px 0 20px;
  -ms-flex-line-pack: center;
      align-content: center;
  z-index: 1;
  border-bottom: 1px solid #EEECE4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  .header {
    top: 0;
    padding: 0 70px 0 20px;
  }
}

.logo {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

@media screen and (max-width: 500px) {
  .logo {
    font-size: 16px;
  }
}

/* fade-styles.css */
.hamburger-fade {
  position: fixed;
  top: 0px;
  right: 20px;
  z-index: 10000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .hamburger-fade {
    top: 0;
    right: 0;
  }
}

.hamburger-fade__wrapper {
  position: relative;
  z-index: auto;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) {
  top: 0;
}

.hamburger-fade__line:nth-child(2) {
  top: 9px;
}

.hamburger-fade__line:nth-child(3) {
  top: 18px;
}

.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 9999;
  pointer-events: auto;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #A4B814;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9998;
  position: absolute;
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15vh 10vw;
  z-index: 10000;
  overflow: scroll;
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  margin-bottom: 2vh;
  padding-left: 60px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nav-fade.active .nav-fade__item:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.nav-fade.active .nav-fade__item:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.nav-fade.active .nav-fade__item:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.nav-fade.active .nav-fade__item:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.main {
  max-width: 1128px;
  width: 90%;
  margin: 0 auto 80px;
  position: relative;
}

@media screen and (min-width: 601px) and (max-width: 960px) {
  .main {
    margin: 0 auto 48px;
  }
}

@media screen and (max-width: 600px) {
  .main {
    margin: 0 auto 48px;
  }
}

/* ============================================
  MV用　Start
=========================================== */
.mv {
  margin: 0;
  position: relative;
  z-index: 0;
}

.mv__image {
  width: 100%;
}

.mv__image img {
  height: 100%;
  width: 100%;
}

.mv__catch {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 4px;
}

@media screen and (max-width: 900px) {
  .mv__catch {
    font-size: 20px;
    left: 20px;
    bottom: 20px;
  }
}

/* ============================================
  MV用　End
=========================================== */
/* ============================================
  リード文用　Start
============================================ */
.intro {
  position: relative;
}

.intro__wrapper {
  margin: 80px auto 0;
}

.intro__text {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .intro__wrapper {
    margin: 40px auto 0;
  }
  .intro__text {
    font-size: 16px;
    text-align: center;
  }
}

/* ============================================
  リード文用　End
============================================ */
/* ==========================
  Area
========================== */
.area__wrapper {
  margin: 80px auto 0;
}

.area__list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.area__item {
  position: relative;
}

.area__item--txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 601px) and (max-width: 960px) {
  .area__wrapper {
    width: 100%;
    margin: 80px auto 0;
  }
  .area__list {
    gap: 32px;
    margin: 32px 0 0;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .area__item--txt {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .area__wrapper {
    width: 100%;
    margin: 48px auto 0;
  }
  .area__list {
    gap: 16px;
    margin: 16px 0 0;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .area__item--txt {
    font-size: 16px;
  }
}

/* ============================================
  お知らせ用　Start
============================================ */
.news__wrapper {
  margin: 80px auto 0;
}

.news__list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.news__item {
  position: relative;
}

.news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.news__item--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.news__item--cat {
  font-size: 16px;
  color: #B52F2F;
}

.news__item--date {
  font-size: 16px;
}

.news__item--title {
  font-size: 18px;
}

@media screen and (min-width: 601px) and (max-width: 960px) {
  .news__wrapper {
    width: 100%;
    padding: 0;
    margin: 80px auto 0;
  }
  .news__item--txt {
    font-size: 16px;
  }
  .news__item--title {
    font-size: 16px;
  }
  .news__list {
    gap: 32px;
    margin: 32px 0 0;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .news__wrapper {
    width: 100%;
    padding: 0;
    margin: 48px auto 0;
  }
  .news__list {
    gap: 16px;
    margin: 24px 0 0;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .news__item--txt {
    font-size: 16px;
  }
  .news__item--title {
    font-size: 16px;
  }
  .news__item-title {
    font-size: 20px;
  }
}

/* ============================================
  お知らせ用　End
============================================ */
/* ==========================
  CTA
========================== */
.cta__inner {
  color: #fff;
  padding: 0;
  text-align: center;
  max-width: 900px;
  margin: 80px auto 0;
}

@media screen and (max-width: 960px) {
  .cta__inner {
    margin: 48px auto 0;
  }
}

.cta__wappen {
  position: absolute;
  z-index: 1;
  background: #9db600;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  top: 20px;
  left: 20px;
}

/* フッター全体 */
.footer {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: #A4B814;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1128px;
  width: 90%;
  padding: 64px 0;
  margin: 0 auto;
  gap: 32px;
}

.footer__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}

.footer__about {
  width: auto;
}

.footer__logo {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 16px;
  text-align: center;
}

.footer__nav {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}

.footer__area {
  width: auto;
}

.footer__area--ttl {
  font-size: 20px;
}

.footer__area--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[3];
      grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  font-size: 16px;
  gap: 16px;
  margin: 16px 0 0;
  text-align: center;
}

.footer__area--item {
  border: 1px solid #fff;
  width: 100px;
}

.footer__area--item a {
  width: 100%;
  height: 100%;
  padding: 4px 0;
  display: block;
}

.footer__gorieki {
  width: 35%;
}

.footer__gorieki--ttl {
  font-size: 20px;
}

.footer__gorieki--list {
  font-size: 16px;
  gap: 8px;
  margin: 16px 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: (1fr)[1];
      grid-template-rows: repeat(1, 1fr);
}

.footer__gorieki--item {
  width: 100%;
}

.footer__bottom {
  width: 100%;
  text-align: center;
  margin: 48px 0 0;
}

.footer__bottom--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.footer__bottom--list li {
  font-size: 16px;
}

.footer__copy {
  margin: 16px 0 0;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    text-align: left;
  }
  .footer__about {
    width: 100%;
    text-align: center;
  }
  .footer__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
  .footer__nav {
    width: 100%;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__area {
    width: 100%;
  }
  .footer__gorieki {
    width: 100%;
  }
  .footer__gorieki--list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
  }
  .footer__bottom {
    margin: 24px 0 0;
  }
  .footer__bottom--list {
    gap: 16px;
  }
  .footer__bottom--list li {
    font-size: 14px;
  }
}

/* =============================
   レスポンシブ対応
============================= */
/* フッター全体 */
.nav-fade {
  background: #A4B814;
  color: #fff;
}

.nav-fade a {
  color: #fff;
}

.nav-fade__wrapper {
  padding: 5vw;
}

.nav-fade__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1128px;
  width: 100%;
  margin: 0 auto;
}

.nav-fade__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-fade__about {
  width: 100%;
}

.nav-fade__logo {
  font-size: 24px;
  margin-bottom: 16px;
}

.nav-fade__desc {
  font-size: 16px;
}

.nav-fade__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nav-fade__area {
  width: 100%;
}

.nav-fade__area--ttl {
  font-size: 20px;
}

.nav-fade__area--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  gap: 16px;
  margin: 16px 0 0;
  text-align: center;
}

.nav-fade__area--item {
  border: 1px solid #fff;
  width: 100px;
}

.nav-fade__area--item a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 4px 0;
}

.nav-fade__info {
  width: 100%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.nav-fade__info--txt {
  width: 100%;
}

.nav-fade__sns {
  width: 100%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.nav-fade__sns--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
}

.nav-fade__bottom {
  width: 100%;
  text-align: center;
}

.nav-fade__bottom--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.nav-fade__bottom--list li {
  font-size: 16px;
}

.nav-fade__copy {
  margin: 16px 0 0;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .nav-fade__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
  .nav-fade__nav {
    width: 100%;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav-fade__area {
    width: 100%;
  }
  .nav-fade__gorieki {
    width: 100%;
  }
  .nav-fade__bottom--list {
    gap: 16px;
  }
  .nav-fade__bottom--list li {
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */