/*
style
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, input, textarea, button {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html,
body {
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: -10px;
}

body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1.5;
  overflow-wrap: break-word;
}

a {
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

/* ------------------------------
header
------------------------------ */
header.header {
  position: relative;
  z-index: 10000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 10px;
  position: relative;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

input#gnavi {
  display: none !important;
}

.header__logo {
  flex: 1;
}

.header__nav {
  display: block;
  background: #F2F2F2;
  position: absolute;
  top: 65px;
  right: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .header__nav {
    top: 65px;
  }
}
.header__nav ul,
.header__nav li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header__nav a {
  display: flex;
  align-items: center;
  padding: 18px 44px;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-size: 13px;
  color: #33373d;
  line-height: 20px;
}
@media screen and (hover: hover) {
  .header__nav a {
    transition: background 0.2s, color 0.2s;
  }
  .header__nav a:hover {
    background: #FFFFFF;
    color: #ED722B;
  }
}

#gnavi:checked ~ .header__nav {
  max-height: 400px;
}

label.header-menu__toggle {
  display: block;
  width: 40px;
  height: 0;
  padding-top: 40px;
  cursor: pointer;
  border: 0 solid;
  border-radius: 3px;
  background-color: #ED722B;
  color: transparent;
  overflow: hidden;
  position: relative;
}
label.header-menu__toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/menu-default.svg) no-repeat 50% 50%;
  background-size: 28px auto;
}

#gnavi:checked ~ label.header-menu__toggle:before {
  background-image: url(../img/menu-close.svg);
}

/* ------------------------------
section
------------------------------ */
.section__inner {
  max-width: 1197px;
  margin-right: auto;
  margin-left: auto;
}

/* intro */
.section-intro {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .section-intro {
    padding-top: 0;
  }
}
.section-intro .section__inner {
  padding: 0 10px 10px 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-intro .section__inner {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .intro__title {
    text-align: center;
  }
}
.intro__title img {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .intro__title img {
    max-width: 250px;
  }
}

.intro__content {
  margin-top: 30px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .intro__content {
    margin-top: 0;
    padding: 0;
  }
}

.intro__content-inner {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: space-evenly;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .intro__content-inner {
    flex-direction: column;
    align-items: flex-end;
  }
}

.intro__content-text {
  position: relative;
  z-index: 100;
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .intro__content-text {
    padding-top: 0;
    padding-right: 40px;
  }
}
.intro__content-text img {
  width: 100%;
  max-width: 90px;
}
@media screen and (max-width: 767px) {
  .intro__content-text img {
    max-width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .intro__content-img {
    margin-top: -90px;
  }
}
.intro__content-img img {
  max-width: 800px;
  width: 100%;
}

/* news */
.section-news {
  padding: 80px 0;
}
@media screen and (max-width: 1023px) {
  .section-news {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .section-news {
    padding-top: 50px;
  }
}

.section-news .section__inner {
  max-width: 970px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .section-news .section__inner {
    flex-direction: column;
    gap: 0;
  }
}

.news__title {
  padding: 10px;
}

.news__content {
  flex: 1;
  padding: 10px;
}

.news__title h2 {
  font-family: "Helvetica", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  color: #ED722B;
}

.news__list ul, .news__list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.news__list li {
  display: block;
  padding: 15px 0px 25px;
  margin: 1.8%;
  border-bottom: 1px solid #eeeeee;
}
.news__list li:last-child {
  margin-bottom: 0;
}
.news__list li a,
.news__list li .a {
  display: flex;
  gap: 6px;
  text-decoration: none;
}
.news__list li a .news__list-date,
.news__list li .a .news__list-date {
  font-size: 0.9em;
  font-weight: 400;
  font-style: italic;
  color: #333;
}
.news__list li a .news__list-title,
.news__list li .a .news__list-title {
  font-weight: bold;
  color: #222;
  line-height: 1.5em;
}
@media screen and (hover: hover) {
  .news__list li a .news__list-title {
    transition: color 0.3s;
  }
  .news__list li a:hover .news__list-title {
    color: #ED722B;
  }
}

.news__list-more {
  margin-top: 40px;
  padding: 0 1.8%;
}
.news__list-more a,
.news__list-more span {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  color: #FD7432;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 2px;
  border-radius: 999px;
  padding: 12px 20px 12px 40px;
  position: relative;
  cursor: pointer;
}
.news__list-more a:after,
.news__list-more span:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/arrow-right-orange.svg) no-repeat 50% 50%;
  background-size: 100% auto;
}
@media screen and (hover: hover) {
  .news__list-more a,
  .news__list-more span {
    transition: background-color 0.3s, color 0.3s;
  }
  .news__list-more a:hover,
  .news__list-more span:hover {
    background-color: #ED722B;
    color: #FFFFFF;
  }
  .news__list-more a:hover:after,
  .news__list-more span:hover:after {
    background-image: url(../img/arrow-right-white.svg);
  }
}
.news__list-more span:after {
  background-image: url(../img/arrow-down-orange.svg);
}
@media screen and (hover: hover) {
  .news__list-more span:hover:after {
    background-image: url(../img/arrow-down-white.svg);
  }
}

/* about */
.section-about {
  background-image: linear-gradient(148deg, #ED722B 50%, #FEB200 50%);
  position: relative;
}
@media screen and (max-width: 1023px) {
  .section-about {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section-about {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.section-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 10%;
  position: absolute;
  top: -1px;
  left: 0;
  background: url(../img/frametop01.svg) no-repeat 50% 0;
  background-size: calc(118% + 1.3px) auto;
  z-index: 10;
}
.section-about::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 27px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url(../img/framebottom01.svg) no-repeat 50% 100%;
  background-size: auto 27px;
  z-index: 10;
}
.section-about .section__inner {
  max-width: 770px;
  padding: 150px 0 100px;
  position: relative;
  z-index: 20;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .section-about .section__inner {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.about__content {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__content {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}

.about__title h2 {
  font-family: "Helvetica", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  text-align: center;
  color: #ED722B;
  line-height: 1;
}

.about__subtitle {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    margin-top: 20px;
  }
}
.about__subtitle h3 {
  font-family: "Helvetica", Sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .about__subtitle h3 {
    letter-spacing: 0.5px;
  }
}
@media screen and (max-width: 767px) {
  .about__subtitle h3 {
    font-size: 18px;
  }
}
.about__subtitle br {
  display: none;
}
@media screen and (max-width: 767px) {
  .about__subtitle br {
    display: block;
  }
}

.about__text {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin-top: 20px;
  }
}
.about__text p {
  font-family: "Helvetica", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9em;
  letter-spacing: 0.5px;
  text-align: justify;
}
.about__text p + p {
  margin-top: 1.9em;
}

/* program */
.section-program {
  position: relative;
}
.section-program .section__inner {
  max-width: 900px;
  padding: 90px 50px;
}
@media screen and (max-width: 1023px) {
  .section-program .section__inner {
    padding: 90px 50px 120px;
  }
}
@media screen and (max-width: 767px) {
  .section-program .section__inner {
    padding: 90px 30px;
  }
}

.program__title h2 {
  font-family: "Helvetica", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  text-align: center;
  color: #ED722B;
  line-height: 1;
}

.program__caption {
  margin-top: 20px;
}
.program__caption p {
  font-family: "Helvetica", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9em;
  letter-spacing: 0.5px;
  text-align: center;
}

.program__list {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
  gap: 45px;
  margin-top: 30px;
}
@media screen and (max-width: 1023px) {
  .program__list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .program__list {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.program__list-item {
  background: #F2F2F2;
  border-radius: 15px;
  padding: 30px;
  width: calc((100% - 45px) / 2);
}
@media screen and (max-width: 1023px) {
  .program__list-item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .program__list-item {
    width: 100%;
  }
}

.program__list-item-title {
  position: relative;
}
.program__list-item-title .program__list-item-title-number {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Helvetica", Sans-serif;
  font-size: 47px;
  font-weight: 700;
  color: #ED722B;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .program__list-item-title .program__list-item-title-number {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .program__list-item-title .program__list-item-title-number {
    font-size: 40px;
  }
}
.program__list-item-title .program__list-item-title-img {
  display: block;
  width: 100%;
  max-width: 130px;
  margin: 0 auto;
}
.program__list-item-title h3 {
  font-family: "Noto Sans JP", Sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.7px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .program__list-item-title h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .program__list-item-title h3 {
    font-size: 17px;
  }
}

.program__list-item-text {
  margin-top: 20px;
}
.program__list-item-text p {
  font-family: "Helvetica", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9em;
  letter-spacing: 0.5px;
  text-align: justify;
}

.program__list-item-more {
  margin-top: 20px;
}
.program__list-item-more a {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  color: #FD7432;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 2px;
  border-radius: 999px;
  padding: 12px 20px 12px 40px;
  position: relative;
  cursor: pointer;
}
.program__list-item-more a:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/arrow-right-orange.svg) no-repeat 50% 50%;
  background-size: 100% auto;
}
@media screen and (hover: hover) {
  .program__list-item-more a {
    transition: background-color 0.3s, color 0.3s;
  }
  .program__list-item-more a:hover {
    background-color: #ED722B;
    color: #FFFFFF;
  }
  .program__list-item-more a:hover:after {
    background-image: url(../img/arrow-right-white.svg);
  }
}

/* support */
.section-support {
  background-image: linear-gradient(148deg, #ED722B 50%, #FEB200 50%);
  position: relative;
}
.section-support::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 10%;
  position: absolute;
  top: -1px;
  left: 0;
  background: url(../img/frametop01.svg) no-repeat 50% 0;
  background-size: calc(118% + 1.3px) auto;
  z-index: 10;
}
.section-support::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 27px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url(../img/framebottom01.svg) no-repeat 50% 100%;
  background-size: auto 27px;
  z-index: 10;
}
.section-support .section__inner {
  max-width: 1140px;
  padding: 200px 50px 160px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1023px) {
  .section-support .section__inner {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-support .section__inner {
    padding: 120px 30px 70px;
  }
}

.support__content {
  position: relative;
}

.support__title h2 {
  font-family: "Helvetica", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  line-height: 1;
}

.support__subtitle {
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .support__subtitle {
    margin-top: 20px;
  }
}
.support__subtitle h3 {
  font-family: "Helvetica", Sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .support__subtitle h3 {
    letter-spacing: 0.5px;
  }
}
.support__subtitle br {
  display: none;
}
@media screen and (max-width: 767px) {
  .support__subtitle br {
    display: block;
  }
}

.support__list {
  margin-top: 50px;
  padding: 10px;
}
@media screen and (max-width: 1023px) {
  .support__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .support__list {
    padding: 0;
  }
}
.support__list ul, .support__list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.support__list ul {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .support__list ul {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .support__list ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.support__list li {
  width: calc((100% - 60px) / 3);
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1023px) {
  .support__list li {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .support__list li {
    width: 100%;
  }
}

.support__list-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.support__list-item-text {
  margin-top: 20px;
}
.support__list-item-text p {
  font-family: "Helvetica", Sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9em;
  letter-spacing: 0.5px;
}

.support__list-item-more {
  margin-top: 20px;
}
.support__list-item-more a {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1px;
  color: #FD7432;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 2px;
  border-radius: 999px;
  padding: 12px 20px 12px 40px;
  position: relative;
  cursor: pointer;
  padding-right: 0;
  padding-left: 0;
  gap: 0;
  font-size: min(18px, 1.5384615385vw);
  line-height: 1.25;
  text-align: center;
}
.support__list-item-more a:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/arrow-right-orange.svg) no-repeat 50% 50%;
  background-size: 100% auto;
}
@media screen and (hover: hover) {
  .support__list-item-more a {
    transition: background-color 0.3s, color 0.3s;
  }
  .support__list-item-more a:hover {
    background-color: #ED722B;
    color: #FFFFFF;
  }
  .support__list-item-more a:hover:after {
    background-image: url(../img/arrow-right-white.svg);
  }
}
@media screen and (max-width: 1023px) {
  .support__list-item-more a {
    font-size: min(18px, 1.7578125vw);
    gap: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .support__list-item-more a {
    font-size: 16px;
    gap: 0.5em;
  }
}
.support__list-item-more br {
  display: none;
}
@media screen and (max-width: 1023px) {
  .support__list-item-more br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .support__list-item-more br {
    display: none;
  }
}

/* selectee */
.section-selectee .section__inner {
  max-width: 1140px;
  padding: 90px 0;
}

.selectee__title h2 {
  font-family: "Helvetica", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  text-align: center;
  color: #ED722B;
  line-height: 1;
}

.selectee__subtitle {
  margin-top: 20px;
}
.selectee__subtitle h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-align: center;
  color: #ED722B;
  line-height: 1;
}
.selectee__list + .selectee__subtitle {
  margin-top: 70px;
}

.selectee__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
  padding: 50px;
}
@media screen and (max-width: 1023px) {
  .selectee__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .selectee__list {
    padding: 0 30px;
  }
}

.selectee__list-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 1023px) {
  .selectee__list-row {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .selectee__list-row {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.selectee__list-item {
  width: 313px;
  border-radius: 10px;
  padding: 30px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(107, 107, 107, 0.5);
}
@media screen and (max-width: 767px) {
  .selectee__list-item {
    width: 100%;
  }
}

.selectee__list-item-img {
  display: block;
  text-align: center;
}

.selectee__list-item-text {
  text-align: left;
}

.selectee__list-item-name {
  margin-top: 10px;
  text-align: center;
}
.selectee__list-item-name a {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Helvetica", Sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9em;
  letter-spacing: 0.5px;
}
.selectee__list-item-name a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z' fill='%23666666'/%3E%3Cpath d='M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z' fill='%23666666'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* faq */
.section-faq {
  background: #F2F2F2;
  position: relative;
}
.section-faq::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 10%;
  position: absolute;
  top: -1px;
  left: 0;
  background: url(../img/frametop01.svg) no-repeat 50% 0;
  background-size: calc(118% + 1.3px) auto;
  z-index: 10;
}
.section-faq::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 27px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url(../img/framebottom01.svg) no-repeat 50% 100%;
  background-size: auto 27px;
  z-index: 10;
}
.section-faq .section__inner {
  max-width: 924px;
  padding: 150px 50px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1023px) {
  .section-faq .section__inner {
    padding: 80px 80px 120px;
  }
}
@media screen and (max-width: 767px) {
  .section-faq .section__inner {
    padding: 30px 30px 80px;
  }
}

.faq__title h2 {
  font-family: "Helvetica", Sans-serif;
  font-size: 41px;
  font-weight: 600;
  text-align: center;
  color: #ED722B;
  line-height: 1;
}

.faq__subtitle {
  margin-top: 20px;
}
.faq__subtitle h3 {
  font-family: "Helvetica", Sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .faq__subtitle h3 {
    letter-spacing: 0.5px;
  }
}

.faq__content {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 50px;
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__content {
    padding: 30px;
  }
}

.faq__list-item {
  padding: 40px 20px;
  border-bottom: 1px solid #d5d8dc;
}
@media screen and (max-width: 767px) {
  .faq__list-item {
    padding: 30px 0;
  }
}

.faq__list-item-status {
  display: none !important;
}

.faq__list-item-title h4 {
  font-family: "Roboto", Sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6em;
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .faq__list-item-title h4 {
    font-size: 16px;
  }
}
:checked ~ .faq__list-item-title {
  color: #ED722B;
}
.faq__list-item-title label {
  display: block;
  cursor: pointer;
}
.faq__list-item-title label::before {
  content: "Q.";
  display: inline-block;
  font-size: 2em;
  color: #b3b3b3;
  margin-right: 0.125em;
}

.faq__list-item-text {
  font-family: "Roboto", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .faq__list-item-text {
    padding-right: 0;
    padding-left: 0;
  }
}
.faq__list-item-text p,
.faq__list-item-text ul {
  margin-bottom: 1.6em;
}
.faq__list-item-text p:last-child,
.faq__list-item-text ul:last-child {
  margin-bottom: 0;
}
.faq__list-item-text ul {
  margin-left: 40px;
}

.faq__list-item-text {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s grid-template-rows ease;
}

:checked ~ .faq__list-item-text {
  grid-template-rows: 1fr;
}

.faq__list-item-text-inner {
  overflow: hidden;
}
.faq__list-item-text-inner::before {
  content: "";
  display: block;
  height: 20px;
}

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

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo-1 {
  text-align: center;
}

.footer__copyright {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

/* parallax */
.intro__deco-1,
.about__deco-1,
.about__deco-2,
.about__deco-3,
.program__deco-1,
.program__deco-2,
.support__deco-1,
.support__deco-2,
.support__deco-3,
.faq__deco-1,
.faq__deco-2,
.faq__deco-3 {
  position: absolute;
  z-index: 100;
}
.intro__deco-1 span,
.about__deco-1 span,
.about__deco-2 span,
.about__deco-3 span,
.program__deco-1 span,
.program__deco-2 span,
.support__deco-1 span,
.support__deco-2 span,
.support__deco-3 span,
.faq__deco-1 span,
.faq__deco-2 span,
.faq__deco-3 span {
  display: block;
}

.intro__deco-1 {
  max-width: 260px;
  top: 37px;
  right: 80px;
}
@media screen and (max-width: 1023px) {
  .intro__deco-1 {
    max-width: 239px;
    top: 109px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .intro__deco-1 {
    max-width: 150px;
    top: 139px;
    right: 172px;
  }
}

.about__deco-1 {
  max-width: 104px;
  top: -61px;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .about__deco-1 {
    max-width: 89px;
    left: 20px;
  }
}

.about__deco-2 {
  max-width: 60px;
  bottom: 176px;
  right: -103px;
}
@media screen and (max-width: 1023px) {
  .about__deco-2 {
    right: -31px;
  }
}
@media screen and (max-width: 767px) {
  .about__deco-2 {
    bottom: -42px;
    right: 0px;
  }
}

.about__deco-3 {
  max-width: 60px;
  bottom: 62px;
  left: -52px;
}
@media screen and (max-width: 1023px) {
  .about__deco-3 {
    bottom: 165px;
    left: -42px;
  }
}
@media screen and (max-width: 767px) {
  .about__deco-3 {
    max-width: 50px;
    bottom: 714px;
    left: 0px;
  }
}

.program__deco-1 {
  max-width: 104px;
  top: 65px;
  right: 184px;
}
@media screen and (max-width: 1023px) {
  .program__deco-1 {
    right: 58px;
  }
}
@media screen and (max-width: 767px) {
  .program__deco-1 {
    display: none;
  }
}

.program__deco-2 {
  width: 4.887%;
  bottom: 0px;
  left: 80px;
}
@media screen and (max-width: 1023px) {
  .program__deco-2 {
    left: 34px;
  }
}
@media screen and (max-width: 767px) {
  .program__deco-2 {
    width: 57px;
    left: 26px;
  }
}

.support__deco-1 {
  max-width: 104px;
  top: 89px;
  left: 51px;
}
@media screen and (max-width: 1023px) {
  .support__deco-1 {
    top: 19px;
    left: 91px;
  }
}
@media screen and (max-width: 767px) {
  .support__deco-1 {
    max-width: 63px;
    top: 29px;
    left: 51px;
  }
}

.support__deco-2 {
  max-width: 60px;
  bottom: 176px;
  right: 0px;
}
@media screen and (max-width: 1023px) {
  .support__deco-2 {
    bottom: 49px;
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .support__deco-2 {
    bottom: 19px;
    right: 0;
  }
}

.support__deco-3 {
  max-width: 60px;
  top: 150px;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .support__deco-3 {
    top: 80px;
    left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .support__deco-3 {
    top: 90px;
    left: 0;
  }
}

.faq__deco-1 {
  max-width: 104px;
  top: 39px;
  left: 51px;
}
@media screen and (max-width: 1023px) {
  .faq__deco-1 {
    top: 19px;
    left: 131px;
  }
}
@media screen and (max-width: 767px) {
  .faq__deco-1 {
    max-width: 68px;
    top: 32px;
    left: 0;
  }
}

.faq__deco-2 {
  max-width: 104px;
  top: -61px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .faq__deco-2 {
    max-width: 83px;
  }
}

.faq__deco-3 {
  max-width: 60px;
  bottom: 62px;
  left: -52px;
}
@media screen and (max-width: 767px) {
  .faq__deco-3 {
    bottom: -31px;
    left: 0px;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.effect.fadeInDown {
  opacity: 0;
}

.effect.on.fadeInDown {
  opacity: 1;
  animation: 1.25s ease 0s 1 normal fadeInDown;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.effect.fadeInUp {
  opacity: 0;
}

.effect.on.fadeInUp {
  opacity: 1;
  animation: 1s ease 0s 1 normal fadeInUp;
}

.effect_parallax span {
  transition: transform 0.1s;
}