@charset "UTF-8";
.header-glonav__ul {
  display: flex;
  column-gap: 40px;
}
.header-glonav__ul li {
  position: relative;
}
.header-glonav__ul li ul {
  background-color: white;
  border: 1px solid #22c55e;
  position: absolute;
  display: none;
  top: 70%;
  left: calc(-125px + 50%);
  width: 250px;
  z-index: 1000;
  text-align: center;
  padding: 10px;
}
.header-glonav__ul li ul li {
  display: block;
  line-height: 40px;
}
.header-glonav__ul li:hover ul {
  display: block;
}

.header {
  padding-left: 5%;
  padding-right: 5%;
  line-height: 120px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  color: #22c55e;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: white;
}
.header__h1 {
  font-size: 50px;
}
@media screen and (max-width: 480px) {
  .header__h1 {
    font-size: 38px;
  }
}

.menu {
  display: none;
  z-index: 1500;
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header-glonav {
    display: none;
  }
  .header-subnav {
    display: none;
  }

  .menu {
    position: absolute;
    top: 0;
    position: fixed;
    right: -100%;
    width: 100%;
    height: 100vh;
    margin-left: 0;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    background-color: white;
    transition: 0.3s;
    z-index: 1500;
  }

  .menu-list {
    width: 100%;
    height: 100%;
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-btn {
    /* ボタンの配置位置  */
    position: fixed;
    top: 32px;
    right: 16px;
    /* ボタンの大きさ  */
    width: 48px;
    height: 48px;
    /* 最前面に */
    z-index: 1600;
    display: block;
  }

  .btn-line {
    display: block;
    position: relative;
    /* バーガー線の位置基準として設定 */
    width: 100%;
    /* 線の長さと高さ */
    height: 4px;
    background-color: #22c55e;
    /* バーガー線の色 */
    transition: 0.2s;
  }

  /****** 上下のバーガー線 *****/
  .btn-line::before,
  .btn-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    transition: 0.5s;
  }

  .btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-16px);
  }

  .btn-line::after {
    /* 下の線の位置 */
    transform: translateY(16px);
  }

  .menu.open {
    right: 0;
  }

  /***** メニューオープン時 *****/
  .btn-line.open {
    background-color: transparent;
    /* 真ん中の線を透明に */
  }

  .btn-line.open::before,
  .btn-line.open::after {
    content: "";
    background-color: #22c55e;
    /* 上下の線の色を変える */
    transition: 0.2s;
  }

  .btn-line.open::before {
    transform: rotate(45deg);
    /* 上の線を傾ける */
  }

  .btn-line.open::after {
    transform: rotate(-45deg);
    /* 下の線を傾ける */
  }
}
.banner {
  background-color: white;
  max-width: 100vw;
  height: 384px;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}

.banner__h1 {
  position: absolute;
  font-size: 40px;
  z-index: 100;
  color: white;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 480px) {
  .banner__h1 {
    text-align: center;
    width: 300px;
    font-size: 20px;
  }
}
.banner-image {
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .banner-image__figure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.banner-image__figure img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .banner-image__figure img {
    width: unset;
  }
}
.banner-dark {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  content: "";
}

.concept-wrapper {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
  color: black;
}
.concept-wrapper h3 {
  margin-bottom: 40px;
  font-size: 40px;
}
@media screen and (max-width: 350px) {
  .concept-wrapper h3 {
    font-size: 30px;
  }
}
.concept-wrapper__image {
  margin-bottom: 50px;
}
.concept-wrapper__image img {
  object-fit: cover;
  width: 100%;
  height: 300px;
}
.concept-wrapper h5 {
  margin-bottom: 25px;
  font-size: 25px;
}
.concept-wrapper p {
  text-align: start;
  line-height: 30px;
}

.flex-side {
  display: flex;
  flex-direction: row;
}

.color-red {
  color: red;
}

.dotting {
  padding-top: 0.4em;
  background-image: radial-gradient(0.1em 0.1em at center center, #f03748, #f03748 50%, transparent);
  background-position: top left;
  background-size: 1.05em 0.3em;
  background-repeat: repeat-x;
}

.centerd {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clear-blank {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.feature-wrapper {
  text-align: center;
  color: black;
}
.feature-wrapper h3 {
  margin-bottom: 30px;
  font-size: 50px;
}
.feature-wrapper-card {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .feature-wrapper-card {
    flex-direction: column;
  }
}
.feature-wrapper-card li {
  background-color: #22c55e;
  width: calc((100% / 2) - 15px);
  padding: 40px 20px;
}
@media screen and (max-width: 480px) {
  .feature-wrapper-card li {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
  }
}
.feature-wrapper-card li h5 {
  margin-bottom: 30px;
  font-size: 20px;
}
.feature-wrapper-card li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 30px;
}
.feature-wrapper-card li p {
  text-align: start;
  line-height: 30px;
}
.feature-wrapper__h3 {
  margin-top: 150px;
}
.feature-wrapper-contents {
  text-align: start;
  margin-top: 50px;
}
.feature-wrapper-contents h5 {
  border-bottom: 1px solid black;
  font-size: 30px;
  padding-bottom: 5px;
  margin-bottom: 40px;
}
.feature-wrapper-contents p {
  margin-bottom: 30px;
}

.btn a {
  display: block;
  position: relative;
  padding: 1em 2em;
  width: 350px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  background-color: #22c55e;
  transition: 0.3s;
}

.btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transition: 0.3s;
}

.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(2em + 5px);
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transition: 0.3s;
}

.btn a:hover {
  text-decoration: none;
  background-color: #22c55e;
}

.btn a:hover::before {
  right: 1.8em;
}

.btn a:hover::after {
  right: calc(1.8em + 5px);
}

.footer {
  color: #07b53b;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.footer-content {
  text-align: center;
  margin: 100px 200px;
}
@media screen and (max-width: 480px) {
  .footer-content {
    margin: 100px 0;
  }
}
.footer-content h1 {
  font-size: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .footer-content h1 {
    font-size: 30px;
  }
}
.footer-content__image {
  margin-bottom: 30px;
}
.footer-content__image img {
  width: 100px;
}

.green {
  position: absolute;
  background-color: #07b53b;
  height: 700px;
  width: 700px;
  bottom: -500px;
  right: -350px;
  transform: rotate(60deg);
}
@media screen and (max-width: 480px) {
  .green {
    bottom: -650px;
  }
}

.flex-side {
  display: flex;
  flex-direction: row;
}

.color-red {
  color: red;
}

.dotting {
  padding-top: 0.4em;
  background-image: radial-gradient(0.1em 0.1em at center center, #f03748, #f03748 50%, transparent);
  background-position: top left;
  background-size: 1.05em 0.3em;
  background-repeat: repeat-x;
}

.centerd {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clear-blank {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

body {
  background-color: white;
  max-width: 100vw;
  min-height: 100vh;
  font-family: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.wrap {
  margin-left: 150px;
  margin-right: 150px;
}
@media screen and (max-width: 1024px) {
  .wrap {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.wrapper {
  min-width: 100vw;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #22c55e;
}

a:hover {
  opacity: 0.7;
}

a:active {
  color: #22c55e;
}

/*# sourceMappingURL=first.css.map */
