.lp-content {
  margin: 0 -15px;
}
@media screen and (min-width: 768px) {
  .lp-content {
    margin: 0 auto;
    max-width: 940px;
  }
}
.lp-content ul,
.lp-content ol,
.lp-content li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.lp-content li::before {
  content: none;
}
.lp-content p {
  margin: 0;
}

/* blocks */
/* --------------------
 * Card
 * -------------------- */
.Card {
  background-color: #fff;
  margin: 0 0 5px 0;
  padding: 15px;
}
.Card.-hasSub {
  padding-bottom: 0;
}
.Card .Card__title {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 15px 0;
}
.Card .Card__image {
  margin: 0 0 15px 0;
  width: 100%;
}
.Card .Card__image.-border {
  border: 1px solid #e6e6e6;
}
.Card .Card__image img {
  display: block;
  width: 100%;
}
.Card .Card__text {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}
.Card .Card__note {
  color: #999;
  font-size: 10px;
  line-height: 1.5;
}
.Card .Card__sub {
  border-top: 1px solid #e6e6e6;
  margin: 0 -15px;
  padding: 0 15px;
}
.Card .Card__subTitle {
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0;
  position: relative;
}
.Card .Card__subTitle:before,
.Card .Card__subTitle:after {
  background-color: #999;
  content: "";
  height: 2px;
  margin-right: -10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 12px;
}
.Card .Card__subTitle::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.Card .Card__subTitle.active::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
@media screen and (min-width: 768px) {
  .Card {
    margin-bottom: 30px;
    padding: 30px;
  }
  .Card .Card__title {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .Card .Card__image {
    margin-bottom: 30px;
  }
  .Card .Card__text {
    font-size: 16px;
  }
  .Card .Card__note {
    font-size: 12px;
  }
}

/* --------------------
 * Cta
 * -------------------- */
.Cta {
  background: -webkit-gradient(linear, left top, right top, from(#f2f9e5), color-stop(51%, #fff9cd), to(#fce9d2));
  background: linear-gradient(90deg, #f2f9e5 0%, #fff9cd 51%, #fce9d2 100%);
  padding: 20px 0;
}
.Cta .Cta__inner {
  padding: 0 30px;
}
.Cta .Cta__tilte {
  font-weight: bold;
  line-height: 1.5;
  margin: 0 auto 20px;
  text-align: center;
}
.Cta .Cta__tilte strong {
  color: #f24f18;
  display: block;
  font-size: 24px;
}
.Cta .Cta__tilte span {
  display: block;
  font-size: 20px;
}
.Cta .Cta__btn {
  -webkit-box-shadow: 0 5px 15px rgba(51, 17, 0, 0.3);
  box-shadow: 0 5px 15px rgba(51, 17, 0, 0.3);
  margin-bottom: 15px;
}
.Cta .Cta__btn:last-child {
  margin-bottom: 0;
}
.Cta .Cta__btn a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 21px 30px;
}
.Cta .Cta__btn span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.Cta .Cta__btn.-primary a {
  background-color: #f24f18;
  color: #fff;
}
.Cta .Cta__btn.-primary .Cta__iconMail use,
.Cta .Cta__btn.-primary .Cta__iconArrow use {
  fill: #fff;
}
.Cta .Cta__btn.-secondary a {
  background-color: #fff;
  color: #0074d9;
}
.Cta .Cta__btn.-secondary .Cta__iconMail use,
.Cta .Cta__btn.-secondary .Cta__iconArrow use {
  fill: #0074d9;
}
.Cta .Cta__btnText {
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}
.Cta .Cta__iconMail {
  height: 16px;
  width: 23px;
}
.Cta .Cta__iconArrow {
  height: 11px;
  width: 7px;
}
@media screen and (min-width: 768px) {
  .Cta {
    padding: 60px 0;
  }
  .Cta .Cta__inner {
    margin: 0 auto;
    max-width: 640px;
  }
  .Cta .Cta__btn span {
    font-size: 30px;
  }
  .Cta .Cta__btn a {
    padding-bottom: 30px;
    padding-top: 30px;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  .Cta .Cta__btn.-primary a:hover {
    background-color: #ff8a00;
  }
  .Cta .Cta__btn.-secondary a:hover {
    background-color: #e5f3ff;
  }
  .Cta .Cta__iconMail {
    height: 30px;
    -webkit-transition: 300ms;
    transition: 300ms;
    width: 40px;
  }
  .Cta .Cta__iconArrow {
    height: 25px;
    -webkit-transition: 300ms;
    transition: 300ms;
    width: 16px;
  }
}




/* --------------------
 * Header
 * -------------------- */
.l-main {
  padding-top: 110px;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 136px;
  }
}

.p-header {
  height: 63px;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 75px;
  }
}

.p-header-lp-nav {
  height: 47px;
  margin: 0 -15px;
}
@media screen and (min-width: 768px) {
  .p-header-lp-nav {
    height: 61px;
    padding-top: 11px;
  }
}
.p-header-lp-nav__list {
  gap: 1px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.p-header-lp-nav__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.p-header-lp-nav__item::before {
  content: none;
}
.p-header-lp-nav__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0076d8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 47px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-header-lp-nav__link {
    font-size: 18px;
    height: 50px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-header-lp-nav__link:hover {
    background-color: #66ace8;
  }
}
.p-header-lp-nav__link--winter {
  background-color: #fff;
  border-bottom: 5px solid #0076d8;
  border-top: 5px solid #fff;
  color: #0076d8;
}
@media screen and (min-width: 768px) {
  .p-header-lp-nav__link--winter:hover {
    background-color: #deedfc;
    border-top-color: #deedfc;
  }
}
.p-header__lp-contact {
  background-color: #f34e18;
  height: 40px;
  width: 165px;
}
@media screen and (min-width: 768px) {
  .p-header__lp-contact {
    width: 225px;
  }
}
.p-header__lp-contact-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__lp-contact-link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-header__lp-contact-link:hover {
    background-color: #ff8a00;
  }
}
.p-header__lp-contact-link-icon-mail {
  height: 15px;
  width: 20px;
}
.p-header__lp-contact-link-icon-mail use {
  fill: #fff;
}
.p-header__lp-contact-link-text {
  font-size: 13px;
  font-weight: bold;
}
.p-header__lp-contact-link-icon-arrow {
  height: 12px;
  width: 8px;
}
.p-header__lp-contact-link-icon-arrow use {
  fill: #fff;
}

/* --------------------
 * Kv
 * -------------------- */


.Kv {
  position: relative;   
  display: block;
  width: 100%;
  margin: 0;
}

.Kv picture,
.Kv img {
  display: block;
  width: 100%;
  height: auto;
}

/* 終了表記 */
.kv-overlay {
  position: absolute;
  inset: 0; 
  background-color: rgba(88, 88, 88, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.kv-message-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.kv-message-box-ttl {
  color: #f24f18;
  padding: 20px 40px 0 40px;
  font-size: 1.8rem;
  font-weight: bold;
}

.kv-message-box-note {
  color: #333;
  font-size: 1.2rem;
  font-weight: normal;
  padding: 0 40px 20px 40px;
}

@media screen and (max-width: 768px) {
  .kv-message-box-ttl {
    padding: 12px 24px 0 24px;
    font-size: 1.4rem;
  }

  .kv-message-box-note {
    font-size: 0.9rem;
    padding: 0 24px 12px 24px;
  }
}

/* --------------------
 * Section1
 * -------------------- */
.Section1 {
  background-color: #f7f6f0;
  padding: 60px 0;
}
.Section1 .Section1__inner {
  padding: 0 20px;
}
.Section1 .Section1__title {
  margin: 0 -20px 30px;
}
.Section1 .Section1__content {
  background-color: #fff;
  border: 2px solid #e8d0b7;
  border-radius: 10px;
  margin: 0 0 50px 0;
  padding: 30px;
}
.Section1 .Section1__subTitle {
  max-width: 346px;
}
.Section1 .Section1__subTitle.-sub1,
.Section1 .Section1__subTitle.-sub3 {
  margin: -53px auto 0 -53px;
}
.Section1 .Section1__subTitle.-sub2 {
  margin: -53px -53px 0 auto;
}
.Section1 .Section1__subTitle.-sub4 {
  float: left;
  margin-right: 20px;
  width: 40%;
}
.Section1 .Section1__text1 {
  text-underline-offset: 45%;
  color: #936747;
  font-size: 19px;
  font-weight: bold;
  line-height: 2.05;
  padding-bottom: 30px;
  text-decoration: underline;
  -webkit-text-decoration-color: #d4a878;
  text-decoration-color: #d4a878;
}
.Section1 .Section1__text2 {
  color: #333;
  font-size: 16px;
  line-height: 2.44;
}
.Section1 .Section1__text2 .c-text-underline--yellow {
  text-decoration-thickness: 10px;
  text-underline-offset: -4px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.Section1 .Section1__conclution {
  margin-bottom: 20px;
}
.Section1 .Section1__photo {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .Section1 .Section1__inner {
    margin: 0 auto;
    max-width: 750px;
  }
  .Section1 .Section1__title {
    margin: 0 auto 20px;
    max-width: 500px;
  }
  .Section1 .Section1__subTitle.-sub4 {
    width: 20%;
  }
  .Section1 .Section1__text1 .pc {
    display: none;
  }
}

/* --------------------
 * Section2
 * -------------------- */
.Section2 {
  background-color: #deedfc;
  padding: 60px 0;
}
.Section2 .Section2__inner {
  padding: 0 15px;
}
.Section2 .Section2__title {
  font-weight: bold;
  margin: 0 0 30px 0;
  text-align: center;
}
.Section2 .Section2__titleLine1 {
  display: block;
  font-size: 14px;
  margin: 0 auto;
}
.Section2 .Section2__titleLine2 {
  display: block;
  font-size: 26px;
  margin: 0 auto;
}
.Section2 .Section2__content {
  margin-bottom: 30px;
  padding: 15px;
}
.Section2 .Section2__content.-no1 {
  background-color: #0093f0;
  margin-left: 15px;
}
.Section2 .Section2__content.-no1 .Section2__photo {
  margin: -30px auto 0 -30px;
}
.Section2 .Section2__content.-no2 {
  background-color: #0078f0;
  margin-right: 15px;
}
.Section2 .Section2__content.-no2 .Section2__photo {
  margin: -30px -30px 0 auto;
}
.Section2 .Section2__content.-no3 {
  background-color: #005bab;
  margin-left: 15px;
}
.Section2 .Section2__content.-no3 .Section2__photo {
  margin: -30px auto 0 -30px;
}
.Section2 .Section2__photo {
  width: 73.33vw;
}
.Section2 .Section2__photo img {
  display: block;
  width: 100%;
}
.Section2 .Section2__subTitle {
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 20px 0 15px;
}
.Section2 .Section2__subTitle::before {
  content: none;
}
.Section2 .Section2__subTitleNo {
  border-right: 1px solid #fff;
  font-size: 36px;
  line-height: 1;
  padding-right: 20px;
}
.Section2 .Section2__subTitleText {
  font-size: 16px;
  line-height: 1;
}
.Section2 .Section2__subTitleText em {
  font-size: 19px;
  font-style: normal;
}
.Section2 .Section2__text {
  color: #fff;
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .Section2 .Section2__inner {
    margin: 0 auto;
    max-width: 750px;
  }
  .Section2 .Section2__content {
    padding: 30px;
  }
  .Section2 .Section2__photo {
    max-width: 580px;
  }
  .Section2 .Section2__subTitleNo {
    font-size: 40px;
  }
  .Section2 .Section2__subTitleText {
    font-size: 20px;
  }
  .Section2 .Section2__text {
    font-size: 16px;
  }
}

/* --------------------
 * Section3
 * -------------------- */
.Section3 {
  background-color: #fff;
  padding: 8px 0;
}
.Section3 .Section3__inner {
  padding: 0 15px;
}
.Section3 .Section3__inner .mb30 {
  margin-bottom: 30px;
}
.Section3 .Section3__title {
  color: #333;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 30px 0;
  text-align: center;
}
.Section3 .Section3__list {
  margin: 0 0 10px 0;
  padding: 0 15px;
}
.Section3 .Section3__list.-elementary {
  background-color: #eef7d9;
}
.Section3 .Section3__list.-elementary .Section3__subTitle {
  color: #8fcc00;
}
.Section3 .Section3__list.-elementary .Section3__listTitle:before,
.Section3 .Section3__list.-elementary .Section3__listTitle:after {
  background-color: #8fcc00;
}
.Section3 .Section3__list.-elementary.-lower {
  background-color: #fff;
  padding: 0;
}
.Section3 .Section3__list.-elementary.-lower .Section3__listTitle {
  background-color: #eef7d9;
}
.Section3 .Section3__list.-elementary.-lower .Section3__listTitle:before,
.Section3 .Section3__list.-elementary.-lower .Section3__listTitle:after {
  right: 30px;
}
.Section3 .Section3__list.-junior {
  background-color: #fef2d9;
}
.Section3 .Section3__list.-junior .Section3__subTitle {
  color: #f5ab00;
}
.Section3 .Section3__list.-junior .Section3__listTitle:before,
.Section3 .Section3__list.-junior .Section3__listTitle:after {
  background-color: #f5ab00;
}
.Section3 .Section3__list.-junior.-lower {
  background-color: #fff;
  padding: 0;
}
.Section3 .Section3__list.-junior.-lower .Section3__subTitle {
  color: #0d57a2;
}
.Section3 .Section3__list.-junior.-lower .Section3__listTitle {
  background-color: #dde6f0;
}
.Section3 .Section3__list.-junior.-lower .Section3__listTitle:before,
.Section3 .Section3__list.-junior.-lower .Section3__listTitle:after {
  background-color: #0d57a2;
  right: 30px;
}
.Section3 .Section3__list.-junior.-lower .Section3__listContent .Card__image {
  text-align: center;
}
.Section3 .Section3__list.-junior.-lower .Section3__listContent .Card__note {
  color: #999;
  font-size: 12px;
  line-height: 1.5;
}
.Section3 .Section3__list.-high {
  background-color: #fce9ee;
}
.Section3 .Section3__list.-high .Section3__subTitle {
  color: #eb6e90;
}
.Section3 .Section3__list.-high .Section3__listTitle:before,
.Section3 .Section3__list.-high .Section3__listTitle:after {
  background-color: #eb6e90;
}
.Section3 .Section3__subTitle {
  color: #333;
  font-size: 16px;
  margin: 0;
  padding: 0;
  padding: 15px 0;
  text-align: center;
}
.Section3 .Section3__subTitle:before,
.Section3 .Section3__subTitle:after {
  content: none;
}
.Section3 .Section3__listTitle {
  cursor: pointer;
  position: relative;
}
.Section3 .Section3__listTitle:before,
.Section3 .Section3__listTitle:after {
  content: "";
  height: 2px;
  margin-right: -10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 12px;
}
.Section3 .Section3__listTitle::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.Section3 .Section3__listTitle.active::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.Section3 .Section3__listContent {
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.Section3 .Section3__listContent .circle_number {
  background-color: #8fcc00;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
  text-align: center;
  width: 30px;
}
.Section3 .Section3__listContent .japanese {
  background-color: #eef7d9;
}
@media screen and (min-width: 768px) {
  .Section3 .Section3__inner {
    padding: 0;
  }
  .Section3 .Section3__title {
    font-size: 40px;
  }
  .Section3 .Section3__subTitle {
    font-size: 24px;
  }
  .Section3 .Section3__listContent {
    margin: 0 auto;
    max-width: 750px;
  }
}

.Selectarea {
  background-color: #fff;
  padding: 0 0 60px 0;
}
.Selectarea .Selectarea__inner {
  padding: 0 15px;
}
.Selectarea .Selectarea__title {
  margin: 0 0 15px 0;
  padding: 0;
}
.Selectarea .Selectarea__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
.Selectarea .Selectarea__nav li {
  width: 48%;
}
.Selectarea .Selectarea__nav li a {
  display: block;
}
.Selectarea .Selectarea__nav li a:hover {
  opacity: 0.7;
}

/* --------------------
 * Section4
 * -------------------- */
.Section4 {
  background-color: #f0f7fd;
  margin-bottom: 60px;
  margin-top: 60px;
  padding: 0;
}
.Section4 .Section4__inner {
  padding: 0 15px;
}
.Section4 .Section4__title {
  margin: 0 -15px -30px;
  padding: 0;
  position: relative;
  z-index: 0;
}
.Section4 .Section4__title:before {
  content: none;
}
.Section4 .Section4__title img {
  display: block;
  width: 100%;
}
.Section4 .Section4__subTitle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("../img/section4_title_background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.2;
  margin: 30px 25px 20px;
  padding: 10px;
  text-align: center;
}
.Section4 .Section4__subTitle.-top {
  margin-top: 0;
}
.Section4 .Section4__subTitle:before {
  content: none;
}
.Section4 .Section4__subTitle small {
  font-size: 10px;
}
.Section4 .Section4__table {
  margin: 0 0 20px 0;
  position: relative;
}
.Section4 .Section4__table th {
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
}
.Section4 .Section4__table td {
  font-size: 15px;
  padding: 20px;
}
.Section4 .Section4__table td small {
  font-size: 12px;
}
.Section4 .Section4__note {
  font-size: 11px;
  text-align: center;
}
.Section4 .Section4__campaign dt {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.Section4 .Section4__campaign dd {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.Section4 .Section4__campaign dd em {
  text-decoration-thickness: 10px;
  text-underline-offset: -5px;
  color: #cc0000;
  font-size: 18px;
  font-style: normal;
  -webkit-text-decoration-color: #ecdee3;
  text-decoration-color: #ecdee3;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
}
.Section4 .Section4__tabContent.-hide {
  display: none;
}
.Section4 .Section4__text {
  font-size: 14px;
  margin: 0 auto 20px;
  max-width: 500px;
}
.Section4 .Section4__text span {
  font-weight: bold;
}

.Section4 .h4_ttl {
  font-weight: bold;
  font-size: 14px;
  margin: 32px 8px 8px;
  color: #0058a0;
  text-align: center;
}

.Section4 h5 {
  margin: initial;
  font-size: initial;
  font-weight: initial;
  border-left: initial;
  padding-left: initial;
}

.Section4 .h4_ttl_b {
  font-weight: bold;
  font-size: 21px;
  margin: 32px 8px 8px 8px;
  color: #333;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .Section4 {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .Section4 .Section4__inner {
    padding: 0;
  }
  .Section4 .Section4__title {
    margin: 0 0 -100px 0;
  }
  .Section4 .Section4__subTitle {
    margin: 0 auto 30px;
    max-width: 600px;
    padding: 20px 0;
  }
  .Section4 .Section4__subTitle span {
    font-size: 24px;
    line-height: 1;
  }
  .Section4 .Section4__subTitle small {
    font-size: 15px;
  }
  .Section4 .Section4__table {
    margin: 0 auto 10px;
    max-width: 500px;
  }
  .Section4 .Section4__table th,
  .Section4 .Section4__table td {
    border-width: 2px;
    font-size: 16px;
  }

  .Section4 .Section4__table th {
    width: 24%;
  }
  .Section4 .Section4__note {
    margin-bottom: 50px;
  }
  .Section4 .Section4__campaign {
    margin: 0 auto 50px;
    max-width: 500px;
  }
  .Section4 .Section4__campaign dt {
    font-size: 18px;
  }
  .Section4 .Section4__campaign dd {
    font-size: 18px;
  }
  .Section4 .Section4__campaign dd em {
    font-size: 24px;
  }
  .Section4 .Section4__text {
    font-size: 14px;
    max-width: 600px;
  }

  .Section4 .h4_ttl {
    font-weight: bold;
    font-size: 18px;
    margin: 32px 8px 8px;
    color: #0058a0;
    text-align: center;
  }
}

/* --------------------
 * Section5
 * -------------------- */
.Section5 {
  background-color: #fff;
  padding: 60px 0 0;
  overflow-x: hidden;
}
.Section5 .Section5__inner {
  padding: 0 15px;
}
.Section5 .Section5__title {
  color: #333;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 30px 0;
  text-align: center;
}
.Section5 .Section5__list {
  margin: 0 -15px;
  position: relative;
  flex-wrap: wrap;
}
.Section5 .Section5__list.-elementary {
  margin: 0;
  padding: 0 15px;
  width: 100%;
}
.Section5 .Section5__list.-junior {
  margin: 0;
  padding: 0 15px;
  width: 100%;
}
.Section5 .Section5__list.-high {
  margin: 0;
  padding: 0 15px;
  width: 100%;
}
.Section5 .Section5__item {
  margin: 0 10px;
  width: 130px;
}
.Section5 .Section5__item.-elementary {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 20px;
  width: 100%;
}
.Section5 .Section5__item.-junior {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 20px;
  width: 100%;
}
.Section5 .Section5__item.-high {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 20px;
  width: 100%;
}
.Section5 .Section5__fukidashi {
  position: relative;
  z-index: 2;
}
.Section5 .Section5__fukidashi.-elementary {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 65%;
}
.Section5 .Section5__fukidashi.-junior {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 65%;
}
.Section5 .Section5__fukidashi.-high {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 65%;
}
.Section5 .Section5__photo {
  margin-top: -5px;
  position: relative;
  z-index: 1;
}
.Section5 .Section5__photo.-elementary {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 33%;
}
.Section5 .Section5__photo.-junior {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 33%;
}
.Section5 .Section5__photo.-high {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 33%;
}
.Section5 .Section5__prev,
.Section5 .Section5__next {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0078f0;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  max-width: 100%;
  z-index: 100;
}
.Section5 .Section5__prev {
  left: 15px;
}
.Section5 .Section5__next {
  right: 15px;
}
.Section5 .Section5__prevIcon,
.Section5 .Section5__nextIcon {
  height: 10px;
  width: 8px;
}
.Section5 .Section5__prevIcon use,
.Section5 .Section5__nextIcon use {
  fill: #fff;
}
.Section5 .Section5__prevIcon {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .Section5 .Section5__inner {
    padding: 0;
  }
  .Section5 .Section5__title {
    font-size: 40px;
  }
  .Section5 .Section5__list {
    margin: 0;
  }
  .Section5 .Section5__item {
    margin: 0 30px 0 0;
    width: 260px;
  }
  .Section5 .Section5__photo {
    margin-top: -5px;
  }
  .Section5 .Section5__prev,
  .Section5 .Section5__next {
    height: 50px;
    top: calc(50% - 55px);
    -webkit-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
    width: 50px;
  }
  .Section5 .Section5__prev:hover,
  .Section5 .Section5__next:hover {
    background-color: #66ace8;
  }
  .Section5 .Section5__prev {
    left: 30px;
  }
  .Section5 .Section5__next {
    right: 30px;
  }
  .Section5 .Section5__prevIcon,
  .Section5 .Section5__nextIcon {
    height: 10px;
    width: 8px;
  }
}

/* --------------------
 * Section6
 * -------------------- */
.Section6 {
  background-color: #fff;
  padding: 60px 0 0;
}
.Section6 .Section6__inner {
  padding: 0 15px;
}
.Section6 .Section6__title {
  color: #333;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 30px 0;
  text-align: center;
}
.Section6 .Section6__list {
  border-top: 1px solid #e6e6e6;
  margin: 0;
  padding: 0;
}
.Section6 .Section6__item {
  border-bottom: 1px solid #e6e6e6;
}
.Section6 .Section6__question {
  cursor: pointer;
  padding: 15px 0;
  position: relative;
}
.Section6 .Section6__question:before,
.Section6 .Section6__question:after {
  background-color: #999;
  content: "";
  height: 2px;
  margin-right: -10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 12px;
}
.Section6 .Section6__question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.Section6 .Section6__question.active::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.Section6 .Section6__answer > p:last-child {
  padding-bottom: 15px;
}
.Section6 .Section6__text1 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  line-height: 1.5;
  padding: 0 15px;
  position: relative;
}
.Section6 .Section6__text1::before {
  content: "Q.";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}
.Section6 .Section6__text2 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 15px;
  position: relative;
}
.Section6 .Section6__text2::before {
  content: "A.";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}
.Section6 .Section6__text2 p {
  color: #333;
  font-size: 12px;
  line-height: 1.5;
}
.Section6 .Section6__text2 sup {
  font-size: 80%;
}
.Section6 .Section6__note {
  color: #999;
  font-size: 10px;
  margin-left: 20px;
  padding: 0 15px;
}
.Section6 .Section6__link {
  color: #0074d9;
  font-size: 12px;
  margin-left: 20px;
  padding: 0 15px;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .Section6 .Section6__inner {
    padding: 0;
  }
  .Section6 .Section6__title {
    font-size: 40px;
  }
  .Section6 .Section6__question {
    padding: 20px 0;
  }
  .Section6 .Section6__answer > p:last-child {
    padding-bottom: 20px;
  }
  .Section6 .Section6__text1 {
    font-size: 18px;
  }
  .Section6 .Section6__text2 p {
    font-size: 16px;
  }
  .Section6 .Section6__note {
    font-size: 12px;
  }
  .Section6 .Section6__link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

body {
  overflow-x: hidden;
}
