@charset "UTF-8";
/*//////////////////////////////////////////////////
*
*	トップページスタイル
*
//////////////////////////////////////////////////*/
/* Scss Document */
/* Scss Document */
.l-container {
  width: 128rem;
  margin: auto;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-container {
    width: 90%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: revert;
  }
}
.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 1.4rem;
  justify-content: space-between;
  align-items: center;
  height: 6.4rem;
  padding: 0 2.8rem;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 100vw;
  background: #E1F359;
}
.btn::after {
  content: "";
  width: 1.2rem;
  aspect-ratio: 1;
  border-top: 2px solid #464751;
  border-right: 2px solid #464751;
  transform: rotate(45deg);
}

.modePC .btn {
  transition: all 0.3s;
}
.modePC .btn::after {
  transition: transform 0.3s;
}
.modePC .btn:hover::after {
  transform: translateX(50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .btn {
    height: 4.8rem;
    line-height: 4.8rem;
    font-size: 1.6rem;
  }
  .btn::after {
    width: 1rem;
  }
}
.g-header {
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
}
.g-header .g-header__container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 4rem;
  transition: background-color 0.3s;
  background: #fff;
}
.g-header .g-header__logo {
  width: 27rem;
}
.g-header .g-header__navi {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  column-gap: 3.2rem;
  font-size: 1.6rem;
}
.g-header .g-header-tgl {
  display: none;
}

.modeSP.win_scroll .g-header__container {
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .g-header .g-header__container {
    padding: 1.2rem 2%;
  }
  .g-header .g-header__logo {
    width: 18rem;
  }
  .g-header .g-header__navi {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: -100;
    top: 0;
    left: 0;
    flex-flow: column wrap;
    align-items: center;
    gap: 2em;
    width: 100vw;
    height: 100vh;
    width: 100dvw;
    height: 100dvh;
    padding: 18rem 4%;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
  }
  .g-header .g-header-tgl {
    display: revert;
    cursor: pointer;
    width: 2.5rem;
    margin-right: 2%;
  }
  .g-header .g-header-tgl .border {
    position: relative;
    z-index: 1;
    height: 2rem;
  }
  .g-header .g-header-tgl .border span {
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    height: 2px;
    background: #EC5F8B;
    transition: all 0.3s;
  }
  .g-header .g-header-tgl .border span:first-child {
    top: 0;
    left: 0;
    width: 100%;
  }
  .g-header .g-header-tgl .border span:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-1px);
  }
  .g-header .g-header-tgl .border span:last-child {
    bottom: 0;
    left: 0;
  }
  .menu-open .g-header.is-active {
    transform: translateY(0);
  }
  .menu-open .g-header .g-header__navi {
    visibility: visible;
    opacity: 1;
    z-index: -1;
  }
  .menu-open .g-header .g-header-tgl .border span:first-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(32deg);
  }
  .menu-open .g-header .g-header-tgl .border span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .g-header .g-header-tgl .border span:last-child {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-32deg);
  }
  .menu-open .g-header-navi {
    visibility: visible;
    opacity: 1;
  }
}
.g-footer .goTop {
  position: fixed;
  z-index: 10;
  bottom: 2rem;
  right: min(210px, 8rem);
  width: 5rem;
  aspect-ratio: 1;
}
.g-footer .g-footer_btn {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  padding: 2rem 0;
  text-align: center;
  background: #503E7A;
}
.g-footer .g-footer_btn .btn {
  width: 36.8rem;
  height: 6.2rem;
  font-size: 1.8rem;
  padding: 0 2em;
  column-gap: 1.2em;
}
.g-footer .g-footer__container {
  padding: 8rem 0;
}
.g-footer .g-footer__container .l-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
.g-footer .g-footer__container .l-container .g-footer__logo {
  width: 32rem;
  margin-bottom: 3.2rem;
}
.g-footer .g-footer__container .l-container .g-footer__info {
  line-height: 2;
}
.g-footer .g-footer__container .l-container .col_2 {
  line-height: 2;
  text-align: right;
}
.g-footer .copyright {
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .g-footer .goTop {
    position: revert;
    margin: 4rem 4% 2rem auto;
  }
  .g-footer .g-footer_btn {
    row-gap: 1.2rem;
    padding: 2rem 5%;
  }
  .g-footer .g-footer_btn .btn {
    width: 100%;
    height: 5.8rem;
    font-size: 1.6rem;
  }
  .g-footer .g-footer_btn .btn::after {
    width: 1rem;
  }
  .g-footer .g-footer__container {
    padding: 6rem 0 9.6rem;
  }
  .g-footer .g-footer__container .l-container {
    display: block;
    margin-bottom: 2rem;
  }
  .g-footer .g-footer__container .l-container .g-footer__logo {
    width: 24rem;
    margin-bottom: 1.2em;
  }
  .g-footer .g-footer__container .l-container .col_1,
  .g-footer .g-footer__container .l-container .col_2 {
    text-align: left;
    font-size: 1.2rem;
    width: 100%;
  }
  .g-footer .g-footer__container .l-container .col_2 .g-footer__info {
    display: flex;
    justify-content: space-evenly;
    margin-top: 3em;
    font-size: 1.2rem;
  }
  .g-footer .copyright {
    font-size: 1rem;
  }
}
.float-navi {
  display: grid;
  position: fixed;
  z-index: 10;
  bottom: 50%;
  right: 0;
  width: 9rem;
  transform: translateY(50%);
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}
.float-navi .item {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  height: 9rem;
  line-height: 1.2;
  text-align: center;
  font-size: 1.2rem;
}
.float-navi .item:nth-child(1) {
  background: #E1F359;
}
.float-navi .item:nth-child(1) .icon {
  width: 2.4rem;
}
.float-navi .item:nth-child(2) {
  background: #fff;
}
.float-navi .item:nth-child(2) .icon {
  width: 3rem;
}
.float-navi .item:nth-child(3) {
  background: #F5F2EC;
}
.float-navi .item:nth-child(3) .icon {
  width: 2.8rem;
}

@media screen and (max-width: 768px) {
  .float-navi {
    grid-template-columns: repeat(3, 1fr);
    bottom: 0;
    width: 100%;
    transform: none;
  }
  .float-navi .item {
    row-gap: 0.6rem;
    height: 6.8rem;
    font-size: 1rem;
  }
  .float-navi .item:nth-child(1) .icon {
    width: 2.4rem;
  }
  .float-navi .item:nth-child(2) .icon {
    width: 3rem;
  }
  .float-navi .item:nth-child(3) .icon {
    width: 2.8rem;
  }
}
.mv {
  position: relative;
  z-index: 1;
}
.mv .mv-container {
  background: #F89EB1;
}
.mv .mv-bottom {
  position: absolute;
  bottom: 7.2rem;
  left: 50%;
  width: fit-content;
  padding: 1.6rem 2.4rem;
  background: #fff;
  border-radius: 1.6rem;
  transform: translateX(-50%);
}
.mv .mv-bottom .l-container {
  display: contents;
}
.mv .mv-bottom .mv-bottom__links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
}
.mv .mv-bottom .mv-bottom__links .btn {
  width: 36.8rem;
  padding: 0 3rem;
  font-size: 1.8rem;
}
.mv .mv-bottom .mv-bottom__links .btn::after {
  width: 1rem;
}

.mv_images .swiper-wrapper {
  transition-timing-function: linear;
}

@media screen and (max-width: 768px) {
  .mv .mv-bottom {
    display: none;
    position: revert;
    width: 100%;
    padding: 1.6rem 2%;
    border-radius: 0;
    transform: none;
  }
  .mv .mv-bottom .mv-bottom__links {
    column-gap: 0.4rem;
  }
  .mv .mv-bottom .mv-bottom__links .btn {
    width: calc(50% - 0.2rem);
    height: auto;
    padding: 1em 2rem;
    line-height: 1.4;
    font-size: 1.3rem;
  }
  .mv .mv-bottom .mv-bottom__links .btn::after {
    width: 1rem;
  }
}
.sec-title {
  position: relative;
  z-index: 1;
}
.sec-title .sec-title-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec-title .sec-title-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  transform: translateY(-2em);
}
.sec-title .sec-title-container .sec-title-body__sub {
  width: 29rem;
  margin-bottom: 3em;
}
.sec-title .sec-title-container .sec-title-body__title {
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-weight: 500;
  font-size: 3.2rem;
  color: #503E7A;
}

@media screen and (max-width: 768px) {
  .sec-title .sec-title-container {
    transform: translateY(-0.5em);
  }
  .sec-title .sec-title-container .sec-title-body__sub {
    width: 12.6rem;
    margin-bottom: 1.2em;
  }
  .sec-title .sec-title-container .sec-title-body__title {
    font-size: 1.8rem;
  }
}
.point {
  background: url("../image/section-bg-01.svg") 0 0/auto repeat;
}
.point .container {
  padding-bottom: 14.4rem;
}
.point .sec-title {
  padding-bottom: 10.8rem;
}
.point .sec-title .sec-title-container {
  transform: translateY(-7em);
}
.point .sec-title .sec-title-body__title {
  position: relative;
  z-index: 1;
}
.point .sec-title .sec-title-body__title .img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 100%;
  width: 23.4rem;
  transform: translate(6rem, -8rem);
}
.point .ll-container {
  width: 144rem;
  margin: auto;
}
.point .sec-subtitle {
  position: relative;
  z-index: 1;
  margin-bottom: 1.8rem;
  text-align: center;
}
.point .sec-subtitle::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 6rem;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #C8C9D0;
}
.point .sec-subtitle img {
  width: 53rem;
  margin: auto;
}
.point .set_bg {
  position: relative;
  z-index: 1;
  padding: 12rem 0;
}
.point .set_bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 93.6rem;
  height: 100%;
  transform: translateX(-50%);
  background-color: #B0C0E2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 4rem;
}
.point .point-items {
  position: relative;
  z-index: 1;
  margin-bottom: 9rem;
}
.point .point-items .point-text {
  position: absolute;
  z-index: 1;
  top: 37rem;
  left: 2rem;
  width: 8.4rem;
}
.point .point-items .item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: auto;
}
.point .point-items .item .body {
  position: relative;
  z-index: 1;
  width: 61rem;
  padding: 3rem 0 3rem 7.4rem;
  background: #fff;
}
.point .point-items .item .body .item-title {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5;
  transform: translateX(-12.4rem);
}
.point .point-items .item .note {
  padding-right: 10rem;
}
.point .point-items .item.item_01 .image {
  position: relative;
  z-index: 2;
  order: 2;
  width: 50.2rem;
  transform: translate(-7.8rem, 3rem);
}
.point .point-items .item.item_02 {
  margin-left: auto;
}
.point .point-items .item.item_02 .image {
  position: relative;
  z-index: -1;
  width: 57.2rem;
  transform: translate(4.8rem, 3rem);
}
.point .point-items .item.item_03 .image {
  position: relative;
  z-index: 2;
  order: 2;
  width: 51.8rem;
  transform: translate(-6.8rem, 3rem);
}
.point .point-items .item.item_04 {
  margin-left: auto;
}
.point .point-items .item.item_04 .image {
  width: 50.6rem;
  transform: translate(4.8rem, 3rem);
}
.point .point-items .line_01 {
  margin: 6rem auto 10rem 33rem;
}
.point .point-items .line_01::before {
  content: "";
  display: block;
  width: 32rem;
  border-top: 1px solid #EC5F8B;
  transform: rotate(35deg);
}
.point .point-items .line_02 {
  margin: 3rem auto 9rem 67rem;
}
.point .point-items .line_02::before {
  content: "";
  display: block;
  width: 28rem;
  border-top: 1px solid #EC5F8B;
  transform: rotate(144deg);
}
.point .point-comment {
  width: 93.6rem;
  margin: auto;
}
.point .point-comment .point-comment__ttl {
  margin-bottom: 8rem;
}
.point .point-comment .point-comment__body {
  margin: auto 4rem 8rem;
}
.point .point-comment .point-comment__body .item:nth-child(even) {
  text-align: right;
}
.point .point-comment .point-comment__body .item img {
  width: 49.2rem;
}
.point .point-entry {
  width: fit-content;
  margin: auto;
  padding: 0.5rem;
  background: #E46053;
}
.point .point-entry .point-entry__inner {
  display: grid;
  grid-template-columns: 1fr 48rem;
  align-items: center;
  gap: 8rem;
  padding: 4rem 4rem 4rem 8rem;
  background: #fff;
}
.point .point-entry .point-entry__body {
  text-align: center;
}
.point .point-entry .point-entry__body .point-entry__body_links .btn {
  padding: 0 2.6rem;
}
.point .point-entry .point-entry__body .title {
  margin-bottom: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  font-size: 3.2rem;
  color: #E46053;
  letter-spacing: 0.15em;
}
.point .point-entry .point-entry__body .note {
  width: fit-content;
  margin: auto auto 2.4rem;
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.8rem;
  color: #E46053;
}
.point .point-entry .point-entry__body .note .item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.point .point-entry .point-entry__body .note .item .icon {
  width: 1.2em;
  transform: translateY(-0.24em);
}
.point .point-entry .point-entry__body_links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .point .container {
    padding-bottom: 6.8rem;
  }
  .point .sec-title {
    padding-bottom: 4rem;
  }
  .point .sec-title .sec-title-container {
    transform: translateY(-2.5em);
  }
  .point .sec-title .sec-title-body__title .img {
    width: 5.4rem;
    top: 100%;
    transform: translate(4rem, -1rem);
  }
  .point .ll-container {
    width: 100%;
    margin: auto;
    padding: 0 4%;
  }
  .point .sec-subtitle {
    margin-bottom: 1.2rem;
    padding-bottom: 2.8rem;
  }
  .point .sec-subtitle img {
    width: 35.2rem;
    margin: auto;
  }
  .point .sec-subtitle::after {
    bottom: 0;
  }
  .point .point-container .l-container {
    display: contents;
  }
  .point .point-items {
    margin-bottom: 5rem;
  }
  .point .point-items .point-text {
    display: none;
  }
  .point .point-items .item {
    display: revert;
    width: fit-content;
  }
  .point .point-items .item .body {
    position: relative;
    z-index: 1;
    width: 90%;
    margin-left: auto;
    padding: 4rem 0 2.4rem;
  }
  .point .point-items .item .body .item-title {
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    margin-left: -0.4em;
    margin-bottom: 1.4rem;
    font-size: 1.8rem;
    transform: translateX(0);
  }
  .point .point-items .item .note {
    padding: 0 2.4rem;
  }
  .point .point-items .item.item_01 {
    margin-top: -2.4rem;
  }
  .point .point-items .item.item_01 .image {
    position: relative;
    z-index: 2;
    width: 31rem;
    transform: translate(0, 2.4rem);
  }
  .point .point-items .item.item_02 .image {
    z-index: 1;
    width: 34rem;
    margin-top: -2.4rem;
    transform: translateX(-1.24rem);
  }
  .point .point-items .item.item_02 .body {
    margin-top: -4rem;
    z-index: -1;
  }
  .point .point-items .item.item_03 .image {
    position: relative;
    z-index: 2;
    width: 31rem;
    transform: translate(0);
  }
  .point .point-items .item.item_03 .body {
    margin-top: -3rem;
  }
  .point .point-items .item.item_04 {
    margin-left: auto;
  }
  .point .point-items .item.item_04 .image {
    position: relative;
    z-index: 2;
    width: 31.4rem;
    transform: translate(0);
  }
  .point .point-items .item.item_04 .body {
    margin-top: -1.8rem;
  }
  .point .point-items .line_01 {
    margin: 2rem auto;
  }
  .point .point-items .line_01::before {
    width: 4.8rem;
    margin: auto;
    transform: rotate(-45deg);
  }
  .point .point-items .line_02 {
    margin: 2rem auto;
  }
  .point .point-items .line_02::before {
    width: 4.8rem;
    margin: auto;
    transform: rotate(45deg);
  }
  .point .point-comment {
    width: 82%;
    margin-bottom: 5.4rem;
  }
  .point .point-comment .point-comment__ttl {
    width: 110%;
    margin-bottom: 2rem;
  }
  .point .point-comment .point-comment__body {
    margin: auto;
  }
  .point .point-comment .point-comment__body .item + .item {
    margin-top: 1.8rem;
  }
  .point .point-comment .point-comment__body .item img {
    width: 100%;
  }
  .point .point-entry {
    width: 82%;
  }
  .point .point-entry .point-entry__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0.8rem 1.6rem;
  }
  .point .point-entry .point-entry__body .title {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
  .point .point-entry .point-entry__body .note {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
  .point .point-entry .point-entry__body_links {
    gap: 1.4rem;
  }
  .point .point-entry .point-entry__body_links .btn {
    width: 100%;
  }
  .point .set_bg {
    padding: 4.8rem 0;
  }
  .point .set_bg::after {
    width: 86vw;
    border-radius: 4rem;
  }
}
.support .sec-title .sec-title-container .sec-title-body__title {
  color: #fff;
}
.support .sec-title {
  padding-bottom: 10.8rem;
}
.support .sec-title .sec-title-container {
  transform: translateY(-7em);
}
.support .ll-container {
  width: 144rem;
  margin: auto;
}
.support .sec-subtitle {
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid #C8C9D0;
  text-align: center;
}
.support .sec-subtitle img {
  width: 36rem;
  margin: auto;
}
.support .support-head {
  display: grid;
  grid-template-columns: 8.4rem repeat(3, 1fr);
  gap: 8.6rem;
  margin-bottom: 8.4rem;
  color: #503E7A;
}
.support .support-head .support-head__item .thum {
  margin-bottom: 2.4rem;
}
.support .support-head .support-head__item .body .number {
  display: grid;
  grid-template-columns: 12rem 1fr;
  margin-bottom: 1.6rem;
  align-items: center;
  line-height: 1;
  font-size: 2.2rem;
}
.support .support-head .support-head__item .body .number span {
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px solid #503E7A;
}
.support .support-head .support-head__item .body .headline {
  margin-bottom: 1.2rem;
  line-height: 1.2;
  font-size: 3.2rem;
}
.support .support-head .support-head__item .body .note {
  font-size: 1.5rem;
}
.support .support-head__links {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 4.4rem;
  margin-bottom: 12rem;
}
.support .support-head__links .item {
  width: 44rem;
}
.support .support-items-container {
  padding: 13rem 0;
  background: rgba(179, 192, 226, 0.2);
}
.support .support-items {
  position: relative;
  z-index: 1;
}
.support .support-items .support-text {
  position: absolute;
  z-index: 1;
  top: 48rem;
  right: 2rem;
  width: 8.4rem;
}
.support .support-items .item {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.support .support-items .item .image {
  position: relative;
  z-index: 1;
  width: 50%;
}
.support .support-items .item .image img {
  position: absolute;
  z-index: 1;
  width: 50vw;
}
.support .support-items .item .body {
  width: 50%;
}
.support .support-items .item .body .number {
  margin-bottom: 3.6rem;
}
.support .support-items .item .body .number img {
  width: auto;
  height: 5.4rem;
}
.support .support-items .item .body .item-title {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 3.2rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 3.2rem;
}
.support .support-items .item.item_01 {
  margin-bottom: 58.6rem;
}
.support .support-items .item.item_01 .image {
  order: 2;
}
.support .support-items .item.item_01 .image img {
  left: 0;
}
.support .support-items .item.item_01 .body {
  padding-right: 6.4rem;
}
.support .support-items .item.item_01 .body .item-title .img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 100%;
  width: 18rem;
  transform: translate(1em, -50%);
}
.support .support-items .item.item_01 .add_image {
  display: grid;
  grid-template-columns: repeat(3, 35.4rem);
  gap: 1.6rem;
  position: absolute;
  z-index: 2;
  top: calc(100% + 3.6rem);
  left: 0;
}
.support .support-items .item.item_02 {
  margin-bottom: 64rem;
}
.support .support-items .item.item_02 .image img {
  right: 0;
}
.support .support-items .item.item_02 .body {
  padding-left: 4rem;
}
.support .support-items .item.item_02 .body .note {
  width: 76%;
}
.support .support-items .item.item_02 .add_img {
  position: absolute;
  z-index: 1;
  width: 23.4rem;
  right: 0;
  top: 12rem;
  transform: translateX(50%);
}
.support .support-items .item.item_02 .add_body {
  display: grid;
  grid-template-columns: repeat(4, 26.6rem);
  gap: 4.4rem;
  position: absolute;
  z-index: -1;
  top: calc(100% + 7rem);
  left: 0;
  width: calc(100% + (100vw - 100%) / 2);
  padding: 15rem 0 4rem 4rem;
  background: #fff;
}
.support .support-items .item.item_02 .add_body .add_item-ttl {
  margin-bottom: 2.4rem;
  text-align: center;
  font-size: 2.4rem;
  color: #503E7A;
}
.support .support-links {
  width: 110rem;
  margin: auto;
}
.support .support-links .support-links__inner {
  display: grid;
  grid-template-columns: 1fr 36rem;
  align-items: center;
  gap: 11rem;
  padding: 4rem;
  background: #B0C0E2;
}
.support .support-links .support-links__body {
  width: fit-content;
  margin: auto;
}
.support .support-links .support-links__body .main {
  margin-bottom: 1.6rem;
  text-align: center;
  font-weight: 600;
  font-size: 3.2rem;
  color: #503E7A;
}
.support .support-links .support-links__body .note {
  margin-bottom: 2.4rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: #503E7A;
}
.support .support-links .support-links__body .point-entry__body_links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .support .container {
    padding-bottom: 0;
  }
  .support .sec-title {
    padding-bottom: 4rem;
  }
  .support .sec-title .sec-title-container {
    transform: translateY(-2.5em);
  }
  .support .ll-container {
    width: 100%;
    margin: auto;
    padding: 0 4%;
  }
  .support .l-container {
    display: contents;
  }
  .support .sec-subtitle {
    margin-bottom: 2.8rem;
    padding-bottom: 3.6rem;
  }
  .support .sec-subtitle img {
    width: 22rem;
    margin: auto;
  }
  .support .support-head {
    grid-template-columns: 1fr;
    gap: 4.8rem;
    margin-bottom: 4.8rem;
  }
  .support .support-head .support-head__point {
    display: none;
  }
  .support .support-head .support-head__item .body .number {
    grid-template-columns: 12.6rem 1fr;
  }
  .support .support-head .support-head__item .body .headline {
    font-size: 1.8rem;
  }
  .support .support-head .support-head__item .body .note {
    font-size: 1.3rem;
  }
  .support .support-items-container {
    padding: 6rem 0;
  }
  .support .support-items {
    position: relative;
    z-index: 1;
  }
  .support .support-items .support-text {
    display: none;
  }
  .support .support-items .item {
    display: revert;
  }
  .support .support-items .item .image {
    width: 100%;
    margin-bottom: 2rem;
  }
  .support .support-items .item .image img {
    position: revert;
    width: 96vw;
  }
  .support .support-items .item .body {
    width: 100%;
    margin-bottom: 4rem;
  }
  .support .support-items .item .body .number {
    text-align: center;
    margin-bottom: 2.6rem;
  }
  .support .support-items .item .body .number img {
    height: 4.2rem;
  }
  .support .support-items .item .body .item-title {
    width: 100%;
    margin-bottom: 3.6rem;
    text-align: center;
    line-height: 1;
    font-size: 2.2rem;
  }
  .support .support-items .item.item_01 {
    margin-bottom: 5.4rem;
  }
  .support .support-items .item.item_01 .image {
    order: 2;
  }
  .support .support-items .item.item_01 .image img {
    left: 0;
  }
  .support .support-items .item.item_01 .body {
    padding-right: 0;
  }
  .support .support-items .item.item_01 .body .item-title {
    margin-bottom: 2rem;
  }
  .support .support-items .item.item_01 .body .item-title .img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 100%;
    width: 18rem;
    transform: translate(1em, -50%);
  }
  .support .support-items .item.item_01 .add_image {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: revert;
  }
  .support .support-items .item.item_02 {
    margin-bottom: 4rem;
  }
  .support .support-items .item.item_02 .image {
    transform: translateX(-4vw);
  }
  .support .support-items .item.item_02 .image img {
    right: 0;
  }
  .support .support-items .item.item_02 .body {
    padding-left: 0;
  }
  .support .support-items .item.item_02 .body .note {
    width: 100%;
  }
  .support .support-items .item.item_02 .add_img {
    position: absolute;
    z-index: 1;
    width: 7rem;
    right: 0;
    top: 46rem;
    transform: translateX(0);
  }
  .support .support-items .item.item_02 .add_body {
    grid-template-columns: 1fr;
    gap: 3.6rem;
    position: revert;
    width: 100%;
    padding: 5.2rem 2rem;
  }
  .support .support-items .item.item_02 .add_body .add_item-ttl {
    margin-bottom: 1.6rem;
    font-size: 2rem;
    line-height: 1;
  }
  .support .support-items .item.item_02 .add_body .add_item-note {
    font-size: 1.3rem;
  }
  .support .support-links {
    width: 100%;
  }
  .support .support-links .support-links__inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    padding: 3.2rem 2rem 2rem;
  }
  .support .support-links .image.image_01 {
    display: none;
    bottom: 0;
    left: 0;
    width: 8rem;
  }
  .support .support-links .image.image_02 {
    top: 100%;
    right: 0;
    width: 9.2rem;
    transform: translate(-15%, -60%);
  }
  .support .support-links .support-links__body {
    width: 100%;
  }
  .support .support-links .support-links__body .main {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
  .support .support-links .support-links__body .note {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
  .support .support-links .support-links__body .point-entry__body_links .btn {
    width: 100%;
  }
  .support .support-head__links {
    gap: 4rem;
    margin-bottom: 6rem;
  }
  .support .support-head__links .item {
    width: 100%;
  }
}
.open_campus {
  padding-bottom: 4rem;
  background: url("../image/section-bg-01.svg") 0 0/auto repeat;
}
.open_campus .l-container {
  position: relative;
  z-index: 1;
  margin-top: -34rem;
}
.open_campus .oc-container {
  width: 96rem;
  margin: auto auto 11rem;
  padding: 8rem 0;
  background: #fff;
  border-radius: 4rem;
}
.open_campus .oc-container .headline {
  margin-bottom: 6.4rem;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
.open_campus .oc-container .oc-title {
  margin-bottom: 6.4rem;
  text-align: center;
  font-size: 3.2rem;
  color: #503E7A;
  letter-spacing: 0.15em;
}
.open_campus .oc-container .oc-flow {
  width: 76rem;
  margin: auto auto 8rem;
}
.open_campus .oc-container .oc-flow .oc-flow__start {
  line-height: 5.4rem;
  font-size: 1.8rem;
  text-align: center;
  background: #F5F2EC;
  border-radius: 3.5rem;
}
.open_campus .oc-container .oc-flow .oc-flow__unit {
  width: 6.4rem;
  margin: 4rem auto;
}
.open_campus .oc-container .oc-flow .oc-flow__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 26.4rem;
  align-items: center;
  gap: 2rem;
  background: rgba(176, 192, 226, 0.5);
}
.open_campus .oc-container .oc-flow .oc-flow__step.color2 {
  background: rgba(176, 192, 226, 0.25);
}
.open_campus .oc-container .oc-flow .oc-flow__step .body {
  padding-left: 4rem;
}
.open_campus .oc-container .oc-flow .oc-flow__step .body .head {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #503E7A;
  line-height: 1;
  color: #503E7A;
  font-size: 3.2rem;
}
.open_campus .oc-container .oc-flow .oc-flow__step .body .note {
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}
.open_campus .oc-container .oc-flow .oc-flow__step .image_add {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 6.8rem;
  transform: translate(50%, -50%);
}
.open_campus .oc-container .oc-present {
  display: grid;
  grid-template-columns: 15rem 1fr 32rem;
  align-items: center;
  width: 76rem;
  margin: auto auto 5.6rem;
  background: #F5F2EC;
}
.open_campus .oc-container .oc-present .body {
  text-align: center;
  color: #503E7A;
}
.open_campus .oc-container .oc-present .body .main {
  margin-bottom: 3.2rem;
}
.open_campus .oc-container .oc-present .body .sub {
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
}
.open_campus .oc-container .oc-present .body .note {
  font-size: 1.5rem;
}
.open_campus .oc-container .oc-present .image_01 {
  text-align: center;
}
.open_campus .oc-container .oc-present .image_01 img {
  width: 8.2rem;
  transform: translateY(3.5rem);
}
.open_campus .oc-container .oc-present .image_02 img {
  width: 35.8rem;
  transform: translateX(1rem);
}
.open_campus .oc-container .oc-btnbox {
  text-align: center;
}
.open_campus .oc-comment_swiper .swiper-wrapper {
  gap: 2em;
  transition-timing-function: linear;
}
.open_campus .oc-comment_swiper .swiper-slide {
  width: 49.2rem;
  padding-bottom: 3em;
}
.open_campus .oc-comment_swiper .swiper-slide:nth-child(odd) {
  padding-bottom: 3.2em;
}
.open_campus .oc-comment_swiper .swiper-slide:nth-child(even) {
  padding-top: 3.2em;
}
.open_campus .oc-text_swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.open_campus .oc-text_swiper .swiper-slide {
  width: 46rem;
}

@media screen and (max-width: 768px) {
  .open_campus .l-container {
    margin-top: -7rem;
  }
  .open_campus .oc-container {
    width: 100%;
    margin: auto auto 2.8rem;
    padding: 3.2rem 2.4rem;
    border-radius: 3.2rem;
  }
  .open_campus .oc-container .headline {
    margin-bottom: 2.4rem;
    font-size: 1.3rem;
  }
  .open_campus .oc-container .oc-title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .open_campus .oc-container .oc-flow {
    width: 100%;
    margin: auto auto 4rem;
  }
  .open_campus .oc-container .oc-flow .oc-flow__start {
    line-height: 3.6rem;
    font-size: 1.4rem;
  }
  .open_campus .oc-container .oc-flow .oc-flow__unit {
    width: 2.4rem;
    margin: 1.6rem auto;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step {
    grid-template-columns: 1fr 10.4rem;
    gap: 0.8rem;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step .body {
    padding: 1.4rem 0 1.4rem 1.6rem;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step .body .head {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 1.3rem;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step .body .note {
    font-size: 1.2rem;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step .image {
    height: 100%;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .open_campus .oc-container .oc-flow .oc-flow__step .image_add {
    width: 3.2rem;
  }
  .open_campus .oc-container .oc-present {
    display: grid;
    grid-template-columns: 16% 68% 16%;
    width: 100%;
    margin: auto auto 5.6rem;
    padding: 2rem 0;
  }
  .open_campus .oc-container .oc-present .body .main {
    margin-bottom: 2rem;
    padding: 0 1em;
  }
  .open_campus .oc-container .oc-present .body .sub {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
  }
  .open_campus .oc-container .oc-present .body .note {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .open_campus .oc-container .oc-present .image_01 {
    position: relative;
    z-index: 1;
  }
  .open_campus .oc-container .oc-present .image_01 img {
    position: absolute;
    z-index: 1;
    width: 5.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .open_campus .oc-container .oc-present .image_02 {
    position: relative;
    z-index: 1;
  }
  .open_campus .oc-container .oc-present .image_02 img {
    position: absolute;
    z-index: 1;
    width: 12.8rem;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -45%);
  }
  .open_campus .oc-container .oc-btnbox {
    text-align: center;
  }
  .open_campus .oc-container .oc-btnbox .btn {
    padding: 0 2rem;
  }
  .open_campus .oc-comment_swiper .swiper-wrapper {
    gap: 2em;
    transition-timing-function: linear;
  }
  .open_campus .oc-comment_swiper .swiper-slide {
    width: 49.2rem;
    padding-bottom: 3em;
  }
  .open_campus .oc-comment_swiper .swiper-slide:nth-child(odd) {
    padding-bottom: 3.2em;
  }
  .open_campus .oc-comment_swiper .swiper-slide:nth-child(even) {
    padding-top: 3.2em;
  }
  .open_campus .oc-text_swiper .swiper-wrapper {
    transition-timing-function: linear;
  }
  .open_campus .oc-text_swiper .swiper-slide {
    width: 46rem;
  }
}
.setsubi .setsubi-container {
  background: #B0C0E2;
}
.setsubi .l-container {
  display: grid;
  grid-template-columns: auto 54rem;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}
.setsubi .setsubi-body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #503E7A;
}
.setsubi .setsubi-body .add_image {
  position: absolute;
  z-index: 1;
  width: 19rem;
  top: 0;
  right: 100%;
}
.setsubi .setsubi-body .title {
  margin-bottom: 2.4rem;
}
.setsubi .setsubi-body .title img {
  width: 27rem;
}
.setsubi .setsubi-body .headline {
  margin-bottom: 4rem;
}
.setsubi .setsubi-body .link {
  font-size: 1.6rem;
}
.setsubi .setsubi-body .link a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}
.setsubi .setsubi-body .link a::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  border-top: 1px solid #006B95;
  border-right: 1px solid #006B95;
  transform: rotate(45deg);
}
.setsubi .access-map iframe {
  width: 100%;
  aspect-ratio: 77/48;
}

@media screen and (max-width: 768px) {
  .setsubi .l-container {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 3rem 0;
  }
  .setsubi .setsubi-body {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #503E7A;
  }
  .setsubi .setsubi-body .add_image {
    z-index: -1;
    width: 9rem;
    top: 0;
    right: 0;
    transform: translateY(-15%);
  }
  .setsubi .setsubi-body .title {
    margin-bottom: 2.4rem;
  }
  .setsubi .setsubi-body .title img {
    width: 22rem;
  }
  .setsubi .setsubi-body .headline {
    margin-bottom: 4rem;
  }
  .setsubi .setsubi-body .link {
    font-size: 1.6rem;
  }
  .setsubi .setsubi-body .link a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
  }
  .setsubi .setsubi-body .link a::after {
    content: "";
    width: 0.8em;
    height: 0.8em;
    border-top: 1px solid #006B95;
    border-right: 1px solid #006B95;
    transform: rotate(45deg);
  }
  .setsubi .access-map iframe {
    width: 100%;
    aspect-ratio: 77/48;
  }
}
/*# sourceMappingURL=style.css.map */
