@charset "UTF-8";

/*------------------------------------
全体設定　ここから
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800
-------------------------------------*/
/* 初期設定 */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: 1.6rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  color: #323232;
  text-align: justify;
  word-break: break-all;
}

body,
header,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a,
dl,
dd,
dt,
div,
span,
time,
figure,
figcaption,
article,
section,
aside {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-weight: normal;
}

h2 {
  color: #333;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 2.5em;
  text-align: center;
}

h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-subtitle {
  color: #ffc400;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}

p {
  line-height: 2;
}

img,
svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  display: inline;
  text-align: center;
  vertical-align: baseline;
  text-decoration: none;
  color: #333;
}

ul li {
  list-style-type: none;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bg-white {
  background: #fff;
  width: 100%;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0px 0px 15px #eeecdfff;
}

.bg-white:not(:last-of-type) {
  margin-bottom: 6rem;
}

.sp-newline,
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 1.8rem;
  }

  .pc-newline,
  .pc-only {
    display: none;
  }

  .sp-newline,
  .sp-only {
    display: block;
  }

  .sp-left {
    text-align: justify;
  }
}

@media screen and (max-width: 570px) {
  body {
    font-size: 1.5rem;
  }

  p {
    line-height: 1.75;
  }

  h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5em;
  }

  h3 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.6rem;
  }

  .bg-white {
    padding: 40px 20px;
  }

  .bg-white:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}

/* 初期設定----------------------------------------------- */

/* セクション設定 */
.section-wrapper {
  padding: 12rem 4rem 12rem;
}

.section-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  .section-wrapper {
    padding: 8rem 4rem;
  }
}

@media screen and (max-width: 570px) {
  .section-wrapper {
    padding: 4rem 2rem;
  }
}

/** -----------------------------------
ボタン
-------------------------------------**/
.button {
  display: inline-flex;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  z-index: 2;
}

.button.participate {
  background: #b8d22c;
}

.button.contact {
  background: #ffc400;
}

.button-wrap {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.button-wrap::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  z-index: -1;
}

.button-wrap.participate::before {
  background-color: #91ae23;
}

.button-wrap.contact::before {
  background-color: #dfac00;
}

.button-wrap>.button {
  font-size: 1.8rem;
  padding: 1em 0;
  width: 100%;
  position: relative;
}

.button-wrap:hover>.button {
  transform: translateY(5px);
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {}

@media screen and (max-width: 570px) {
  .button-wrap>.button {
    font-size: 1.6rem;
  }
}

/** -----------------------------------
ヘッダー
-------------------------------------**/
#header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#header .header-logo {
  color: #2e8b57;
  font-size: 18px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  text-align: left;
  line-height: 1;
}

#header .header-logo h1 {
  color: #606060;
  font-size: 10px;
  margin-top: 5px;
}

#header .flex-container {
  align-items: center;
  flex-wrap: nowrap;
}

#header .gnav-pc-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .gnav-pc-wrap ul.gnav-pc {
  display: flex;
  text-align: center;
}

#header .gnav-pc-wrap ul.gnav-pc li {
  margin: 0 0.8vw;
}

#header .gnav-pc-wrap ul.gnav-pc li a {
  transition: .2s all;
  font-size: 14px;
  font-weight: 500;
}

#header .gnav-pc-wrap ul.gnav-pc li:hover a {
  color: #2e8b57;
  opacity: 0.8;
}

#header .gnav-pc-wrap .button {
  font-size: 13px;
  padding: 7px 15px;
  margin-left: 10px;
}

#header .gnav-pc-wrap .button.participate {
  border: 2px solid #b8d22c;
}

#header .gnav-pc-wrap .button.contact {
  border: 2px solid #ffc400;
}

#header .gnav-pc-wrap .button.participate:hover {
  background: #fff;
  color: #b8d22c;
}

#header .gnav-pc-wrap .button.contact:hover {
  background-color: #fff;
  color: #ffc400;
  border: 2px solid;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1200px) {
  #header .gnav-pc-wrap {
    display: none;
  }
}

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

@media screen and (max-width: 570px) {
  #header {
    height: 6rem;
    padding-right: 0.2rem;
    padding-left: 1rem;
    border-radius: 6px;
    top: 10px;
    width: calc(100% - 20px);
  }

  #header .header-logo {
    font-size: 16px;
  }

  #header .header-logo h1 {
    margin-top: 3px;
  }
}

/*	ハンバーガーメニュー（ボタン）	*/
.openbtn {
  position: relative;
  background: #ffc400;
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 5px;
  transition: all .2s;
}

.openbtn span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
  transition: all .2s;
}

.openbtn span:nth-of-type(1) {
  top: 18px;
}

.openbtn span:nth-of-type(2) {
  top: 26px;
}

.openbtn span:nth-of-type(3) {
  top: 34px;
}

.openbtn.is-active span {
  width: 55%;
  left: 12.7px;
}

.openbtn.is-active span:nth-of-type(1) {
  top: 20px;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.is-active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.is-active span:nth-of-type(3) {
  top: 32px;
  transform: translateY(-6px) rotate(45deg);
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px) {}

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

@media screen and (max-width: 570px) {
  .openbtn {
    transform: scale(0.9);
  }
}


/*	ハンバーガーメニュー（メニュー）	*/
.gnav-sp-wrap {
  display: none;
  z-index: 7;
}

.gnav-sp-list {
  visibility: hidden;
  background: #2e8b57;
  position: fixed;
  width: 95vw;
  height: 100svh;
  top: 0;
  right: 0;
  transition: all 0.4s;
  z-index: 9;
  padding: 12rem 4rem 4rem;
  overflow: auto;
  transform: translateX(100%);
  gap: 10px;
}

.gnav-sp-list.is-active {
  visibility: visible;
  transform: translateX(0%);
}

.gnav-sp-list ul li {
  width: 100%;
  margin-bottom: 10px;
}

.gnav-sp-list ul li a {
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  vertical-align: middle;
}

.gnav-sp-list .button {
  width: 100%;
  margin-top: 1.5rem;
  font-size: 15px;
  padding: 7px 15px;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 1200px) {
  .gnav-sp-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .gnav-sp-list .button {
    padding: 13px 0;
  }
}

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

@media screen and (max-width: 570px) {
  .gnav-sp-list {
    padding: 10rem 2rem 4rem;
  }
}



#cta {
  position: relative;
  z-index: 1;
}

#cta::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(52, 115, 74, 0.64);
  z-index: -1;
}

#cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/common/cta-bg.jpg);
  background-position: top 40% center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  opacity: 0.3;
}

#cta h2 {
  color: #fff;
  margin-bottom: 1.2em;
}

#cta h3 {
  font-size: 2rem;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  border-bottom: 1px solid #eaeaea;
  display: inline-block;
}

#cta .flex-container .cta-item {
  width: calc((100% - 40px) / 2);
  background-color: #fff;
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}

#cta .flex-container .cta-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 5px;
}

#cta .flex-container .cta-item.contact::before {
  background: #ffc400;
}

#cta .flex-container .cta-item.participate::before {
  background: #b9d32d;
}

#cta .flex-container .cta-item p {
  font-size: 14px;
}


@media screen and (max-width: 960px) {
  #cta .flex-container {
    gap: 40px;
  }

  #cta .flex-container .cta-item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

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

@media screen and (max-width: 570px) {
  #cta h3 {
    font-size: 1.8rem;
  }

  #cta .flex-container {
    gap: 20px;
  }

  #cta .flex-container .cta-item {
    padding: 40px 20px;
  }

  #cta .flex-container .cta-item p {
    font-size: 12px;
  }
}

/** -----------------------------------
フッター
-------------------------------------**/
#footer {
  background-color: #378653;
  padding: 6rem;
  color: #fff;
}

#footer .footer-wrap {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}

#footer .flex-container {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#footer .flex-container .flex-item.info {
  width: 40%;
}

#footer .flex-container .flex-item.info .footer-logo {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  text-align: left;
  line-height: 1.1;
  color: #fff;
}

#footer .flex-container .flex-item.info .footer-logo span {
  font-size: 1.6rem;
  display: block;
  margin-top: 12px;
}

#footer .flex-container .flex-item.nav {
  width: 60%;
}

#footer .flex-container .flex-item.nav .gnav-footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2rem;
}

#footer ul.gnav-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-end;
}

#footer ul.gnav-footer li {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  text-align: justify;
  margin-left: 10px;
  font-weight: 400;
}

#footer ul.gnav-footer li .partner-logo {
  display: inline-block;
  height: 50px;
  width: 160px;
}

#footer ul.gnav-footer li .partner-logo img {
  object-fit: contain;
  object-position: center;
}

#footer ul.gnav-footer a {
  color: #fff;
  font-weight: inherit;
}

#footer .copyright {
  font-size: 1.0rem;
  text-align: right;
  width: 100%;
  display: block;
  font-weight: 400;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px) {
  #footer {
    padding: 4rem;
  }

  #footer .flex-container .flex-item.info .footer-logo {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 768px) {
  #footer .flex-container .flex-item.info .footer-logo {
    text-align: center;
  }

  #footer .flex-container .flex-item.info {
    width: 100%;
    text-align: center;
  }

  #footer .flex-container .flex-item.nav {
    display: none;
  }

  #footer .flex-container .flex-item.nav .gnav-footer-wrap {
    gap: 2rem;
  }
}

@media screen and (max-width: 570px) {
  #footer {
    padding: 2rem;
  }

  #footer .flex-container {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  #footer .flex-container .flex-item.info .footer-logo {
    font-size: 2.4rem;
  }

  #footer .flex-container .flex-item.info .footer-logo span {
    font-size: 1.2rem;
  }

  #footer .copyright {
    font-size: 9px;
    text-align: center;
  }
}


/** -----------------------------------
下層ページ
-------------------------------------**/
.lower-page .lower-header {
  background: #398653;
  padding: 20rem 4rem 8rem;
}

.lower-page .lower-header .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 20px;
}

.lower-page .lower-header .icon img {
  object-fit: contain;
}

.lower-page .lower-header h2 {
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.lower-page #category h3 {
  text-align: left;
  margin-bottom: 1em;
  background-color: #eee;
  padding: 0.2em 0.7em;
  border-left: 5px solid #398653;
  letter-spacing: 0.1em;
}

.lower-page #category .category-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
}

.lower-page #category .category-wrap a {
  color: #333;
  font-size: 1.5rem;
  font-weight: 400;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1.5em 4rem 1.5em 1.2em;
  transition: .2s all;
  width: calc((100% - 20px) / 2);
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}

.lower-page #category .category-wrap a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid;
  border-right: 2px solid;
  top: 50%;
  right: 7%;
  transform: rotate(45deg) translateY(-50%);
  transition: .2s all;
}

.lower-page #category .category-wrap a.active,
.lower-page #category .category-wrap a:hover {
  color: #fff;
  background: #398653;
  border-color: #398653;
}

.lower-page #category .category-wrap a:hover::after {
  right: 6%;
}

.lower-page #service {
  background-color: #fffced;
}

.lower-page #service .bg-white {
  position: relative;
  overflow: hidden;
}

.lower-page #service .bg-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 10px;
  transform: translateX(-50%);
  background: #ffc400a8;
}

.lower-page #service h4 {
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.lower-page #service h4 span {
  font-weight: inherit;
  font-size: 0.6em;
}

.lower-page #service .price-wrap {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 6rem;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}

.lower-page #service .price-wrap .price {
  background: rgba(255, 196, 0, 0.15);
  position: relative;
  font-size: 32px;
  border-radius: 60px;
  padding: 0.4em 1.2em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffc400;
  white-space: nowrap;
}

.lower-page #service .price-wrap .price::before {
  content: "料金";
  margin-right: 1em;
  top: -0.6em;
  position: relative;
}

.lower-page #service .price-wrap .price::after {
  position: absolute;
  content: "(税込)";
  bottom: 1.4em;
  left: 4.1em;
  font-size: 0.3em;
  color: #333;
}

.lower-page #service .price-wrap .price span {
  margin-left: 0.2em;
}

.lower-page #service .price-wrap .price::before,
.lower-page #service .price-wrap .price span {
  font-size: 0.5em;
  color: #333;
  font-weight: 500;
}

.lower-page #service .service-table {
  width: 47%;
  text-align: center;
  border-collapse: collapse;
}

.lower-page #service .service-table thead th {
  padding: 5px 10px;
}

.lower-page #service .service-table tbody th,
.lower-page #service .service-table tbody td {
  padding: 15px 15px;
}

.lower-page #service .service-table thead th {
  background: #388653;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5em;
  font-weight: 500;
}

.lower-page #service .service-table tbody th {
  background: #e5f6eb;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  border-right: 1px solid rgba(57, 134, 83, 0.2);
  width: 75%;
  color: #484848;
}

.lower-page #service .service-table tbody th span {
  font-size: 0.85em;
  font-weight: inherit;
}

.lower-page #service .service-table tbody td {
  font-size: 22px;
  background: #fff;
}

.lower-page #service .service-table tbody td.yes {
  color: #ffc400;
  font-weight: 500;
}

.lower-page #service .service-table tbody td.no {
  color: #c8c8c8;
  font-weight: 400;
}

.lower-page #service .service-table tbody tr:not(:last-of-type) th,
.lower-page #service .service-table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid rgba(57, 134, 83, 0.2);
}

/** -------- スマホ -------- **/
@media screen and (max-width: 960px) {
  .lower-page #service .service-table {
    width: 100%;
  }

  .lower-page #service .service-table:first-of-type {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .lower-page .lower-header {
    padding: 15rem 4rem 6rem;
  }

  .lower-page .lower-header .icon {
    margin-bottom: 15px;
  }

  .lower-page #category .category-wrap {
    gap: 15px;
  }

  .lower-page #category .category-wrap a {
    width: 100%;
  }
}

@media screen and (max-width: 570px) {
  .lower-page .lower-header {
    padding: 12rem 2rem 4rem;
  }

  .lower-page #service h4 {
    font-size: 2rem;
  }

  .lower-page #service .price-wrap {
    margin: 2rem 0 3rem;
  }

  .lower-page #service .price-wrap .price {
    font-size: 26px;
  }

  .lower-page #category .category-wrap a {
    padding: 1.2em 4rem 1.2em 1.0em;
    font-size: 14px;
  }

  .lower-page #service .service-table thead th {
    font-size: 16px;
  }

  .lower-page #service .service-table tbody th,
  .lower-page #service .service-table tbody td {
    padding: 10px;
  }

  .lower-page #service .service-table tbody th {
    font-size: 14px;
  }

  .lower-page #service .service-table tbody td {
    font-size: 20px;
  }
}