@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700,900&display=swap");

/** base **/
body {
  background-color: #fff;
  color: #000;
  font-family:
    "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    sans-serif;
  font-size: 16px;
  position: relative;
}
a {
  color: inherit;
  transition: opacity 0.3s ease 0s;
}
a:hover {
  opacity: 0.6;
}
img {
  max-width: 100%;
  height: auto;
}
br.pc {
  display: inline;
}
br.sp {
  display: none;
}

.layout {
  display: flex;
}

/* btn */
.btns {
  display: flex;
}
.btn a {
  height: 80px;
  border-radius: 80px;
  padding: 0 0 0 30px;
  background-color: #000;
  border: 3px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn a .arrow {
  width: 32px;
  height: 16px;
  overflow: hidden;
  position: relative;
}
.btn a .arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow_01.svg) center center no-repeat;
  position: absolute;
}
.btn a:hover {
  opacity: 1;
}
.btn a:hover .arrow::before {
  animation: kf-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
}
@keyframes kf-arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  37% {
    transform: translateX(100%);
    opacity: 1;
  }
  38% {
    transform: translateX(100%);
    opacity: 0;
  }
  39% {
    transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.btn .subtxt {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}
.btn.btn_detail a {
  color: #ff9932;
  background-color: #fff;
  border-color: #ff9932;
}
.btn.btn_apply a {
  color: #fff;
  background-color: #ff9932;
  border-color: #fff;
}
.btn.btn_apply a .arrow::before {
  background-image: url(../img/icon_arrow_02.svg);
}

/* footer */
footer {
  padding: 20px 80px;
}
footer .layout {
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .label {
  font-size: 14px;
}
footer .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .banner .txt {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

/* contents */
.contents > section .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px;
}
.contents > section h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 2;
  text-align: center;
  color: #00a23f;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.contents > section h2 span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.contents > section h2 span img {
  position: absolute;
  left: 0;
  height: 80%;
}
.contents > section h2 span img:last-child {
  left: auto;
  right: 0;
}
.contents > section p {
  line-height: 2;
}
.contents > section .lead {
  text-align: center;
  margin-bottom: 80px;
}
.contents > section .lead p {
  font-size: 20px;
  font-weight: bold;
}

/* sec_fv */
.sec_fv {
  position: relative;
}
.sec_fv::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(179.25deg, #79c061 21.5%, #00a23f 149.16%);
  opacity: 0.2;
  z-index: -1;
}
.contents > .sec_fv .inner {
  width: 100%;
  padding: 0;
}
.sec_fv .layout .info {
  width: 50%;
  padding-top: 40px;
  padding-left: 150px;
  padding-bottom: 80px;
}
.sec_fv .layout .info h1 {
  margin-bottom: 40px;
}
.sec_fv .layout .info .logo {
  margin-bottom: 40px;
  margin-left: -110px;
}
.sec_fv .layout .info .lead {
  margin-bottom: 30px;
}
.sec_fv .layout .info .lead p {
  text-align: left;
  font-size: 18px;
}
.sec_fv .layout .info .btns {
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.sec_fv .layout .info .btns .btn a {
  width: 240px;
}
.sec_fv .layout .info .img_sp {
  display: none;
}
.sec_fv .layout .info .txt {
  font-size: 19px;
  color: #00a23f;
  background-color: #fff;
  text-align: center;
  padding: 5px;
  max-width: calc(240px * 2 + 30px);
}
.sec_fv .layout .info .txt em {
  font-style: normal;
  font-weight: bold;
}
.sec_fv .layout .img {
  width: 54%;
}

/* sec_01 */
.sec_01 .part1 {
  text-align: center;
  background: url(../img/bg_sec_01.svg) no-repeat;
  background-position-x: calc(50% + 100px);
  background-position-y: 100px;
}
.sec_01 .part1 .inner {
  padding-bottom: 40px;
}
.sec_01 .part1 .img {
  margin-bottom: 40px;
}
.sec_01 .part1 .txt {
  margin-bottom: 80px;
}
.sec_01 .part1 .txt p {
  font-size: 20px;
  margin-top: 2em;
}
.sec_01 .part1 .img2 {
  max-width: 1060px;
  margin: 0 auto;
}
.sec_01 .part2 {
  background-color: #e5f6ec;
}
.sec_01 .part2::before {
  content: "";
  display: block;
  width: 100%;
  height: 205px;
  background: url(../img/bg_sankaku.svg) center top no-repeat;
  background-size: 100% 100%;
}
.sec_01 .part2 .inner {
  padding-top: 40px;
}
@media screen and (max-width: 1440px) {
  .sec_01 .part2::before {
    height: auto;
    aspect-ratio: 1440 / 205;
  }
}
.sec_01 .part2 .layout {
  display: flex;
  gap: 80px;
}
.sec_01 .part2 .layout .img {
  min-width: calc(580 / 1280 * 100%);
}
.sec_01 .part2 .layout .txts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec_01 .part2 .layout .txts h3 {
  font-size: 40px;
  font-weight: 900;
  line-height: 2;
  color: #00a23f;
  margin-bottom: 40px;
}
.sec_01 .part2 .layout .txts .txt {
  font-size: 20px;
}

/* sec_02 */
.sec_02 .osusume_list {
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 120px;
}
.sec_02 .osusume_list > li {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 400px;
  min-height: 260px;
  text-shadow: 0px 0px 5px #00a23f;
  position: relative;
  background: url(../img/img_sec_02.svg) center center no-repeat;
}
.sec_02 .osusume_list > li::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  background: linear-gradient(to bottom right, #79c061, #00a23f);
  border-radius: 10px;
  z-index: -1;
}
.sec_02 .osusume_list > li:nth-of-type(4) {
  letter-spacing: -0.02em;
}
.sec_02 h3 {
  color: #00a23f;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 2;
}
.sec_02 .supporters_outer {
  overflow-x: auto;
}
.sec_02 .supporters {
  display: flex;
  gap: 40px;
}
.sec_02 .supporters > li {
  width: calc(100% / 3);
  padding: 0 20px;
}
.sec_02 .supporters > li .people {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.sec_02 .supporters > li .people img {
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.sec_02 .supporters > li .subject {
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  padding-bottom: 40px;
  margin-bottom: 20px;
  background: url(../img/img_sec_02_02.svg) center bottom no-repeat;
}

/* sec_03 */
.sec_03 {
  background-color: #e5f6ec;
}
.sec_03 .content {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sec_03 .content .layout {
  gap: 60px;
}
.sec_03 .content .layout .img {
  min-width: 400px;
}
.sec_03 .content .layout .txts h3 {
  background-color: #333;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
.sec_03 .content .layout .txts p {
  margin-top: 20px;
}
.sec_03 .content .layout .txts .name {
  font-size: 24px;
  font-weight: bold;
}
.sec_03 .content .layout .txts .subtxt {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
}
.sec_03 .content .layout .txts .subtxt2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

/* sec_04 */
.sec_04 {
  background: linear-gradient(to bottom right, #79c061, #00a23f);
}
.contents .sec_04 .inner {
  padding-top: 80px;
  padding-bottom: 60px;
}
.contents .sec_04 h2 {
  color: #fff;
}
.sec_04 .btns {
  gap: 40px;
  justify-content: center;
}
.sec_04 .btns .btn a {
  width: 310px;
  justify-content: center;
  padding-left: 0;
  position: relative;
}
.sec_04 .btns .btn a .arrow{
  position: absolute;
  right: 10px;
}

/**** sp *****/
@media screen and (max-width: 1024px) {
  /** base **/
  br.pc {
    display: none;
  }
  br.sp {
    display: inline;
  }

  .contents > section .inner {
    padding: 60px 20px;
  }
  .contents > section h2 {
    font-size: 24px;
    line-height: 1.5;
    display: block;
  }
  .contents > section h2 span {
    padding: 0 0px;
    justify-content: center;
    min-height: 144px;
  }
  .contents > section h2 span img {
    height: 75%;
  }
  .contents > section .lead {
    text-align: left;
    margin-bottom: 40px;
  }
  .contents > section .lead p {
    font-size: 18px;
  }

  /* footer */
  footer {
    padding: 20px;
  }

  /* sec_fv */
  .sec_fv::before {
    height: 100%;
  }
  .contents > .sec_fv .inner {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
  }
  .sec_fv .layout .info {
    width: 100%;
    padding: 0;
  }
  .sec_fv .layout .info h1 {
    margin-bottom: 20px;
  }
  .sec_fv .layout .info .logo {
    margin-bottom: 30px;
    margin-left: 0;
  }
  .sec_fv .layout .info .lead {
    margin-bottom: 10px;
  }
  .sec_fv .layout .info .lead p {
    font-size: 16px;
  }
  .sec_fv .layout .info .btns {
    background-color: #00a23f;
    padding: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
    margin-bottom: 0;
    width: 100%;
  }
  .sec_fv .layout .info .btns .btn {
    width: 50%;
  }
  .sec_fv .layout .info .btns .btn a {
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: bold;
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
  .sec_fv .layout .info .btns .btn a .arrow {
    display: none;
  }
  .sec_fv .layout .info .img_sp {
    display: block;
    margin-bottom: 10px;
  }
  .sec_fv .layout .info .txt {
    font-size: 16px;
    padding: 10px 5px;
  }
  .sec_fv .layout .img {
    display: none;
  }

  /* sec_01 */
  .sec_01 .part1 {
    background-image: url(../img/bg_sec_01_sp.svg);
    background-position-x: 50%;
    background-position-y: 440px;
  }
  .sec_01 .part1 .txt {
    text-align: left;
  }
  .sec_01 .part2 .layout {
    flex-direction: column;
    gap: 40px;
  }
  .sec_01 .part2 .layout .txts h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  /* sec_02 */
  .sec_02 .osusume_list {
    gap: 20px;
  }
  .sec_02 .osusume_list > li {
    width: 100%;
    min-height: 230px;
    font-size: 24px;
  }
  .sec_02 h3 {
    font-size: 24px;
  }
  .sec_02 .supporters_outer {
    width: 100vw;
    margin-left: -20px;
    padding: 0 20px;
  }
  .sec_02 .supporters {
    width: 240vw;
    gap: 30px;
  }
  .sec_02 .supporters > li {
    padding: 0;
  }
  .sec_02 .supporters > li .subject {
    min-height: 184px;
  }

  /* sec_03 */
  .sec_03 .content .layout {
    flex-direction: column;
    gap: 40px;
  }
  .sec_03 .content .layout .img {
    min-width: auto;
  }

  /* sec_04 */
  .contents .sec_04 .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contents .sec_04 h2 {
    font-size: 32px;
  }
  .sec_04 .btns {
    gap: 26px;
    flex-direction: column;
  }
  .sec_04 .btns .btn a {
    width: auto;
  }
}
