/****************************************
	   General Setting 
*****************************************/
body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
body * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  display: block;
  color: inherit !important;
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.75em;
  font-weight: bold;
  line-height: 1.2 !important;
  letter-spacing: 1px;
  -webkit-text-stroke: 2px #022f5c;
  text-stroke: 2px #022f5c;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2em;
    -webkit-text-stroke: 1px #022f5c;
    text-stroke: 1px #022f5c;
    margin: 0 auto 2rem;
  }
}
h2 span {
  font-family: "Zen Maru Gothic", serif !important;
}
h2 .pink {
  color: #ffd0d0;
}
h2 .green {
  color: #d3eba6;
}
h2 .yellow {
  color: #f2e562;
}
h2 .orange {
  color: #f9b062;
}

.ttl {
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ttl {
    font-size: 1em;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

section {
  padding: 7.5rem 0 8.125rem;
}
@media screen and (max-width: 768px) {
  section {
    padding: 2rem 1rem;
  }
}

.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: 1.2rem 13px 1.2rem 2.25rem;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 6px 12px;
    height: 46px;
  }
}
.header__logo {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 140px;
  }
}
.header .nav__btn {
  position: relative;
  background: #e50012;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  width: 125px;
  height: 54px;
  border-radius: 5px;
  z-index: 3;
}
.header .nav__btn:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .nav__btn {
    gap: 8px;
    font-size: 12px;
    width: 72px;
    height: 28px;
  }
}
.header .nav__btn span {
  background: #fff;
  position: relative;
  display: block;
  width: 23px;
  height: 2px;
  border-radius: 10px;
  transition: all 0.3s;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .header .nav__btn span {
    width: 14px;
    margin-bottom: 0.55rem;
  }
}
.header .nav__btn span::before, .header .nav__btn span::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  width: 100%;
  height: 2px;
  transition: all 0.3s;
}
.header .nav__btn span::before {
  top: 7px;
}
@media screen and (max-width: 768px) {
  .header .nav__btn span::before {
    top: 5px;
  }
}
.header .nav__btn span::after {
  top: 14px;
}
@media screen and (max-width: 768px) {
  .header .nav__btn span::after {
    top: 10px;
  }
}
.header .nav__btn .hmb.open {
  background: transparent;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  .header .nav__btn .hmb.open {
    margin-bottom: 0;
  }
}
.header .nav__btn .hmb.open::before {
  transform: rotate(45deg);
  opacity: 1;
  top: 50%;
}
.header .nav__btn .hmb.open::after {
  transform: rotate(-45deg);
  opacity: 1;
  top: 50%;
}
.header nav {
  position: fixed;
  display: flex;
  left: 0;
  top: 80px;
  width: 100%;
  height: 100vh;
  opacity: 1;
  z-index: 2;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .header nav {
    top: 46px;
    overflow-y: scroll;
    height: 100%;
  }
}
.header nav .nav_inner {
  background: #fff;
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 310px;
  max-height: calc(100vh - 100px);
  padding: 1.5rem;
  margin-left: auto;
  margin-right: 13px;
  border: solid 2px #e40011;
  border-radius: 5px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .header nav .nav_inner {
    max-width: inherit;
    margin: 0 13px;
  }
}
.header nav .nav_box {
  border-bottom: solid 2px #e50011;
  margin-bottom: 1rem;
}
.header nav .nav_ttl {
  position: relative;
  color: #022f5c;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 12px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header nav .nav_ttl {
    font-size: 1em;
  }
}
.header nav .nav_ttl::after {
  position: absolute;
  content: "";
  background: url(./img/t-arrow.svg) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 0;
  transition: 0.3s all;
  transform: translate(0, -50%) rotate(0);
}
.header nav .nav_ttl.active::after {
  transform: translate(0, -50%) rotate(-180deg);
}
.header nav ul {
  display: none;
  list-style: none;
  padding-left: 1.25rem;
}
.header nav ul li {
  color: #022f5c;
  font-weight: bold;
  padding-bottom: 12px;
  margin-bottom: 1.25rem;
  border-bottom: dotted 2px #e50011;
}
.header .hide {
  left: 100%;
  opacity: 0;
}

main .mv {
  width: 100%;
  padding: 74px 0 0 0;
}
@media screen and (max-width: 768px) {
  main .mv {
    padding: 46px 0 0 0;
  }
}
main .top {
  position: relative;
  background: #fff;
  padding-top: 5rem;
}
main .top__icon01, main .top__icon02 {
  position: absolute;
  z-index: 0;
}
main .top__icon01 {
  width: 20%;
  top: 1.5rem;
  left: 5%;
}
@media screen and (max-width: 768px) {
  main .top__icon01 {
    width: 43%;
/*    top: 14rem;*/
    top: 9rem;
    left: 1rem;
  }
}
main .top__icon02 {
  width: 18%;
  top: 3.75rem;
  right: 10%;
}
@media screen and (max-width: 768px) {
  main .top__icon02 {
    width: 43%;
/*    top: 13.75rem;*/
    top: 9.75rem;
    right: 1rem;
  }
}
main .top__inner {
  max-width: 1074px;
  padding: 0 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main .top__inner {
    padding: 0;
  }
}
main .top h1,
main .top p {
  text-align: center;
}
main .top h1 {
  color: #022f5c;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.75em;
}
@media screen and (max-width: 768px) {
  main .top h1 {
    font-size: 1.5em;
    margin-bottom: 2.5rem;
  }
}
main .top h1 span {
  position: relative;
  z-index: 2;
}
main .top h1 span::before, main .top h1 span::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  left: 0;
  background: #eaf4f4;
  border: solid 2px #022f5c;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .top h1 span::before, main .top h1 span::after {
    height: 3px;
  }
}
main .top h1 span::before {
  top: -20px;
}
@media screen and (max-width: 768px) {
  main .top h1 span::before {
    top: -15px;
  }
}
main .top h1 span::after {
  bottom: -20px;
}
@media screen and (max-width: 768px) {
  main .top h1 span::after {
    bottom: -15px;
  }
}
main .top p {
  font-size: 1.25em;
}
@media screen and (max-width: 768px) {
  main .top p {
    font-size: 0.875em;
  }
}
main .top__btn {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  /*margin-top: 3.75rem;*/
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  main .top__btn {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 480px) {
  main .top__btn {
    flex-direction: column;
    margin-top: 13rem;
  }
}
main .top__btn a {
  position: relative;
  background: #d3eba6;
  text-align: center;
  color: #022f5c !important;
  font-size: 1.5em;
  font-weight: bold;
  width: 48%;
  padding: 2rem 1rem;
  border: solid 2px #022f5c;
  border-radius: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .top__btn a {
    font-size: 1em;
    padding: 14px 1rem 1rem;
    margin-bottom: 1.3rem;
    border: solid 1px #022f5c;
  }
}
@media screen and (max-width: 480px) {
  main .top__btn a {
    width: 100%;
  }
}
main .top__btn a:last-child {
  margin-bottom: 0;
}
main .top__btn a:nth-child(2) {
  background: #f2e562;
}
main .top__btn a:nth-child(3),
main .top__btn a.orange {
  background: #f9b062;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  main .top__btn a:nth-child(3),
  main .top__btn a.orange {
    margin-top: 12px;
  }
}
main .top__btn a::after {
  position: absolute;
  content: "";
  background: url(./img/top_link.svg) no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  left: 50%;
  bottom: -17px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  main .top__btn a::after {
    width: 22px;
    height: 22px;
    bottom: -11px;
  }
}
main .top__btn a span {
  position: absolute;
  display: block;
  width: 11em;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: -18px;
  text-align: center;
  font-size: 80%;
  background: #fff;
  border: 2px solid #022f5c;
  border-radius: 20px;
  padding: 2px 0;
}
@media screen and (max-width: 768px) {
  main .top__btn a span {
    border-width: 1px;
    top: -14px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
}
main .topic {
  background: #fff;
  padding: 1rem 5% 12rem;
}
@media screen and (max-width: 768px) {
  main .topic {
    /*padding: 1rem 1rem 3rem;*/
    padding: 1rem 0 3rem;
    overflow: hidden;
  }
}
main .topic h2 {
  color: #022f5c;
  font-size: 2.5em;
  -webkit-text-stroke: inherit;
  text-stroke: inherit;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main .topic h2 {
    font-size: 1.3em;
    margin-bottom: 2rem;
  }
}
main .topic h2 span {
  position: relative;
  z-index: 2;
}
main .topic h2 span::before, main .topic h2 span::after {
  position: absolute;
  content: "";
  display: block;
  width: 33px;
  height: 8px;
  top: 53%;
  transform: translate(0, -50%);
  background: #a0bff0;
  border: solid 2px #022f5c;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .topic h2 span::before, main .topic h2 span::after {
    height: 3px;
  }
}
main .topic h2 span::before {
  left: -3.125rem;
}
main .topic h2 span::after {
  right: -3.125rem;
}
main .topic__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .topic__box {
    flex-direction: column;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .topic .box__movie {
  width: 32%;
  margin-top: 2.25rem;
}
@media screen and (max-width: 768px) {
  main .topic .box__movie {
    width: 100%;
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
main .topic .box__movie p {
  position: relative;
  color: #022f5c;
  font-size: 1.125em;
  font-weight: bold;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  main .topic .box__movie p {
    font-size: 1em;
    margin-top: 0.5rem;
    text-align: center;
  }
}
main .topic .box__movie .youtube-icon {
  top: 40%;
}
main .topic .slick-list {
  overflow: visible !important;
}
main .topic .slick-slide {
  width: 260px !important;
  margin-left: 10px;
  margin-right: 10px;
}
main .topic .slick-dots li {
  margin-left: 0;
  margin-right: 0;
}
main .topic .slick-prev,
main .topic .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 19.5vw;
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  z-index: 9;
}
main .topic .slick-prev {
  left: -45px;
}
main .topic .slick-next {
  right: -45px;
}
main .topic .slick-prev:before,
main .topic .slick-next:before {
  background: rgba(240, 157, 158, .95);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-family: sans-serif;
}
main .topic .slick-prev:before {
  content: '←';
}
main .topic .slick-next:before {
  content: '→';
}
main .box {
  position: relative;
  background: #fff;
  width: 95%;
  max-width: 1074px;
  padding: 3.75rem;
  margin: 0 auto 3rem;
  border: solid 2px #022f5c;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  main .box {
    width: 100%;
    padding: 2rem 1rem 1rem;
    margin: 0 auto 1rem;
    border-radius: 15px;
  }
}
main .box .attention {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
}
main .box .attention.left {
  right: auto;
  left: -1.5rem;
}
@media screen and (max-width: 768px) {
  main .box .attention {
    top: -0.75rem;
    right: -0.75rem;
    width: 65px;
    height: 65px;
  }
  main .box .attention.left {
    right: auto;
    left: -0.75rem;
  }
}
main .box h3 {
  position: relative;
  color: #022f5c;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.5em;
  font-weight: bold !important;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 768px) {
  main .box h3 {
    font-size: 1.5em;
  }
}
main .box h3 span {
  background: linear-gradient(to bottom, transparent 80%, rgb(211, 235, 166) 0%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.6;
}
main .box h3 .small {
  font-size: 0.8em;
}
main .box h4 {
  position: relative;
  color: #022f5c;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8em;
  font-weight: bold !important;
  margin: 2rem auto .6rem;
}
@media screen and (max-width: 768px) {
  main .box h4 {
    font-size: 1.3em;
  }
}
main .box .yellow span::after {
  background-color: rgb(242, 229, 98);
}
main .box .pink span::after {
  background-color: rgb(255, 208, 208);
}
main .box p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .box p {
    font-size: 0.875em;
  }
}
main .box .flex-c {
  justify-content: center;
}
main .box__tab {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  list-style-type: none;
  padding: 0;
  cursor: pointer;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  main .box__tab {
    margin-top: 1rem;
  }
}
main .box__tab li {
  position: relative;
  background: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #022f5c;
  text-align: center;
  font-size: 1.125em;
  font-weight: bold;
  width: 24%;
  height: 4.75rem;
  padding: 1rem 3rem 1rem 1rem;
  margin-bottom: 1%;
  border: solid 2px #022f5c;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  main .box__tab li {
    font-size: 14px;
    width: 49%;
    height: 2.4rem;
    line-height: 1.1;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    margin-bottom: 2%;
  }
}
main .box__tab li::after {
  position: absolute;
  content: "";
  background: url(./img/t-arrow.svg) no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 12px;
  transition: 0.3s all;
  transform: translate(0, -50%) rotate(0);
}
@media screen and (max-width: 768px) {
  main .box__tab li::after {
    width: 17px;
    height: 17px;
    right: 6px;
  }
}
main .box__tab li.active {
  color: #fff !important;
}
main .box__tab li.active::after {
  transform: translate(0, -50%) rotate(-180deg);
}
main .box__tab li.active.job-rehabilitation {
  background-color: #7d5a9e;
}
main .box__tab li.active.job-sports {
  background-color: #ec8101;
}
main .box__tab li.active.job-examination {
  background-color: #009bba;
}
main .box__tab li.active.medical-girls {
  background-color: #ed5083;
}
main .box__tab li.active.rigaku_ryoho {
  background-color: #7d5a9e;
}
main .box__tab li.active.sagyo_ryoho {
  background-color: #3d63ac;
}
main .box__tab li.active.gengo_cho_kaku {
  background-color: #019be1;
}
main .box__tab li.active.gishi_jiritsu {
  background-color: #039e9a;
}
main .box__tab li.active.shinkyu_kenko {
  background-color: #c75353;
}
main .box__tab li.active.rinsho_gijutsu,
main .box__tab li.active.rinsho_kogaku {
  background-color: #0067b4;
}
main .box__tab li.active.shikino {
  background-color: #003f97;
}
main .box__tab li.active.kyukyu_kyumei {
  background-color: #007fcc;
}
main .box__tab li.active.shinryo_hoshasha {
  background-color: #009bba;
}
main .box__tab li.active.kenko_eiyo {
  background-color: #ec8101;
}
main .box__tab li.active.kenko_sports {
  background-color: #d93a27;
}
main .box__tab li.active.kango {
  background-color: #ed5083;
}
main .box__tab li.active.shakai_fukushi {
  background-color: #43b232;
}
main .box__tab li.active.shinri_kenko {
  background-color: #01a570;
}
main .box__tab li.active.konin_shinrishi {
  background-color: #00996f;
}
main .box__tab li.active.iryo_joho_kanri {
  background-color: #a94b87;
}
main .box__tab li.active.systemengineer {
  background-color: #513275;
}
main .box__tab li.active.koshiki_yakyu {
  background-color: #009bba;
}
main .box__tab li.active.music_studio {
  background-color: #7d5a9e;
}
main .box__tab li.active.parasports_prism {
  background-color: #d93a27;
}
main .box__tab li.active.dance_rize {
  background-color: #c75353;
}
main .box__tab li.active.badminton {
  background-color: #3d63ac;
}
main .box__tab li.active.kendo {
  background-color: #019be1;
}
main .box__tab li.active.wadaiko_sairyu {
  background-color: #039e9a;
}
main .box__tab li.active.handball {
  background-color: #0067b4;
}
main .box__tab li.active.yosakoi_maitokai {
  background-color: #003f97;
}
main .box__tab li.active.suisogaku {
  background-color: #007fcc;
}
main .box__tab li.active.gakuyukai {
  background-color: #7d5a9e;
}
main .box__tab li.active.n_village_goto {
  background-color: #022f5c;
}
main .box__tab li.active.n_village_goto_next1 {
  background-color: #022f5c;
}
main .box__tab li.active.mensetsu_junbi {
  background-color: #022f5c;
}
main .box__tab li.active.mensetsu_jissen_1 {
  background-color: #022f5c;
}
main .box__tab li.active.mensetsu_jissen_2 {
  background-color: #022f5c;
}
main .box__tab li.active.grad-welfare {
  background-color: #44a335;
}
main .box__tab li.active.grad-sports {
  background-color: #cd3924;
}
main .box__tab li.active.grad-school {
  background-color: #e38000;
}
main .box__tab li.active.grad-general {
  background-color: #9a4d80;
}
main .box__tab li.active.grad-beauty {
  background-color: #cd3924;
}
main .box__panel .panel {
  display: none;
  text-align: center;
  transition: 0.3s all;
}
main .box__panel .panel.active {
  display: block;
}
main .box__movie-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  main .box__movie-wrap {
    display: block;
  }
}
main .box__movie-wrap .box__movie {
  width: 48.5%;
  margin-left: 3%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .box__movie-wrap .box__movie {
    width: auto;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
main .box__movie-wrap .box__movie:nth-child(n+3) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  main .box__movie-wrap .box__movie:nth-child(n+3) {
    margin-top: 1rem;
  }
}
main .box__movie-wrap .box__movie:nth-child(2n+1) {
  margin-left: 0;
}
main .box__movie-wrap .box__movie video {
  width: 100%;
  vertical-align: top;
}
main .box__movie {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  main .box__movie {
    margin: 1rem 0;
  }
}
main .box__movie-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s all;
}
main .box__movie-inner:hover {
  opacity: 0.8;
}
main .box__movie-inner .thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}
main .box__movie-inner .thumb::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: url("./img/play.svg") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
main .box__movie-inner .youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: url("./img/play.svg") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
main .box__movie .movie-player {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  main .about h2 {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  main .about h2 {
    margin-bottom: 2rem;
  }
}
main .about__bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
main .about__box-icon01, main .about__box-icon02 {
  position: absolute;
  width: 186px;
  top: -184px;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  main .about__box-icon01, main .about__box-icon02 {
    width: 140px;
    top: -138px;
  }
}
@media screen and (max-width: 768px) {
  main .about__box-icon01, main .about__box-icon02 {
    width: 90px;
    top: -88px;
  }
}
@media screen and (max-width: 480px) {
  main .about__box-icon01, main .about__box-icon02 {
    width: 60px;
    top: -61px;
  }
}
main .about__box-icon01 {
  left: 0;
}
main .about__box-icon02 {
  right: 0;
}
@media screen and (max-width: 768px) {
  main .about #club li {
    height: 3.5rem;
  }
}
main .entry {
  background: #e2f2db;
  background-image: linear-gradient(#d6ebcd 2px, transparent 0), linear-gradient(90deg, #d6ebcd 2px, transparent 0), linear-gradient(#d6ebcd 2px, transparent 0), linear-gradient(90deg, #d6ebcd 2px, transparent 0);
  background-size: 80px 80px, 80px 80px, 40px 40px, 40px 40px;
}
main .entry__box-icon01, main .entry__box-icon02 {
  position: absolute;
  width: 230px;
  top: -182px;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  main .entry__box-icon01, main .entry__box-icon02 {
    width: 140px;
    top: -112px;
  }
}
@media screen and (max-width: 768px) {
  main .entry__box-icon01, main .entry__box-icon02 {
    width: 90px;
    top: -72px;
  }
}
@media screen and (max-width: 480px) {
  main .entry__box-icon01, main .entry__box-icon02 {
    width: 72px;
    top: -58px;
  }
}
main .entry__box-icon01 {
  left: 0;
}
main .entry__box-icon02 {
  right: 0;
}
main .bnr {
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 5%;
  padding-right: 5%;
}
main .bnr a {
  width: 23%;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 768px) {
  main .bnr a {
    width: 48%;
    margin-bottom: 1rem;
  }
}
main .bnr a:hover {
  opacity: 0.8;
}

main .limited {
  background: #f5e7d6;
}
@media screen and (max-width: 768px) {
  main .limited {
    position: relative;
    margin-left: -1rem;
    margin-right: -1rem;
    overflow: hidden;
  }
}
main .limited__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  main .limited__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  main .limited h2 {
    margin-bottom: 1.0rem;
  }
}
main .limited p {
  text-align: center;
}
main .limited .catch {
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2 !important;
  letter-spacing: 1px;
  color: #022f5c;
  /*-webkit-text-stroke: 1px #fff;*/
}
@media screen and (max-width: 768px) {
  main .limited .catch {
    font-size: 1em;
    margin-bottom: 3px;
  }
}
main .limited .lead {
  font-size: 1.4em;
  line-height: 1.8 !important;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .limited .lead {
    font-size: 0.9em;
    line-height: 1.5 !important;
  }
}
main .limited .l2 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  main .limited .l2 {
    font-size: 1rem;
  }
}
main .limited .imgs {
  /*display: flex;*/
  /*justify-content: space-between;*/
  margin-top: 30px;
  padding-top: 27px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  main .limited .imgs {
    display: block;
    margin-top: 15px;
    padding-top: 3.4vw;
    max-width: 65vw;
  }
}
main .limited .imgs-wrap {
  background: url(img/limited_bg1.svg) no-repeat center top;
  background-size: contain;
  position: relative;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-bottom: 65px;
}
@media screen and (max-width: 768px) {
  main .limited .imgs-wrap {
    background-size: 80% auto;
    padding-bottom: 8.5vw;
  }
}
/*main .limited .imgs > div {
  width: 32%;
  margin-left: 2%;
}
@media screen and (max-width: 768px) {
  main .limited .imgs > div {
    width: auto;
    margin-left: 0;
  }
}*/
main .limited .imgs > div:nth-child(3n+1) {
  margin-left: 0;
}
main .limited .imgs img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: auto;
}
main .limited .imgs .slick-next,
main .limited .imgs .slick-prev {
  width: 40px;
  height: 40px;
}
main .limited .imgs .slick-next:before,
main .limited .imgs .slick-prev:before {
  font-size: 40px;
}
main .limited .imgs .slick-next {
  right: -85px;
}
main .limited .imgs .slick-prev {
  left: -85px;
}
@media screen and (max-width: 768px) {
  main .limited .imgs .slick-next,
  main .limited .imgs .slick-prev {
    width: 20px;
    height: 20px;
  }
  main .limited .imgs .slick-next:before,
  main .limited .imgs .slick-prev:before {
    font-size: 20px;
  }
  main .limited .imgs .slick-next {
    right: -45px;
  }
  main .limited .imgs .slick-prev {
    left: -45px;
  }
}
main .limited .top__btn {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  main .limited .top__btn {
    margin-top: 5px;
  }
}
main .limited .top__btn a::after {
  left: auto;
  right: 17px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
main .limited .slick-next:before,
main .limited .slick-prev:before {
  color: #333;
}

main .form {
  background: #def2fb;
}
main .form__icon01, main .form__icon02 {
  position: absolute;
  z-index: 0;
}
main .form__icon01 {
  width: 120px;
  top: -100px;
  left: 5rem;
}
@media screen and (max-width: 1000px) {
  main .form__icon01 {
    width: 80px;
    left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main .form__icon01 {
    width: 60px;
    top: -2rem;
    left: 1rem;
  }
}
@media screen and (max-width: 480px) {
  main .form__icon01 {
    width: 50px;
/*    top: -3rem;*/
    top: -5rem;
  }
}
main .form__icon02 {
  width: 160px;
  top: -60px;
  right: 5rem;
}
@media screen and (max-width: 1000px) {
  main .form__icon02 {
    width: 120px;
    right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main .form__icon02 {
    width: 100px;
    top: -1rem;
    right: 1rem;
  }
}
@media screen and (max-width: 480px) {
  main .form__icon02 {
    width: 80px;
/*    top: -2.5rem;*/
    top: -4.5rem;
  }
}
main .form__inner {
  position: relative;
  max-width: 1074px;
  margin: 0 auto;
}
main .form__inner h3 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 768px) {
  main .form__inner h3 {
    font-size: 1.5em;
    margin-bottom: 1.5rem;
  }
}
main .form__inner p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .form__inner p {
    font-size: 0.875em;
  }
}
main .form__inner iframe {
  width: 100%;
  height: 100%;
  min-height: 2700px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  main .form__inner iframe {
    margin-top: 2rem;
  }
}
main .form_btn {
  display: flex;
  justify-content: center;
/*  margin-top: 3.75rem;*/
  margin-bottom: 3.75rem;
}
main .form_btn a {
  position: relative;
  background: #3eb8ef;
  text-align: center;
  color: #fff !important;
  font-size: 1.5em;
  font-weight: bold;
  max-width: 600px;
  padding: 2rem 3rem;
  border: solid 2px #1a79a5;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main .form_btn {
    flex-direction: column;
    margin-top: 3.5rem;
    margin-bottom: 0;
  }
  main .form_btn a {
    font-size: 1em;
    padding: 14px 1rem 1rem;
    margin-bottom: 1.3rem;
    border: solid 1px #1a79a5;
  }
}
main .cv-btn {
  position: fixed;
  /*right: 1.5rem;*/
  right: calc(3rem + 300px);
  bottom: 1.5rem;
  width: 300px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  main .cv-btn {
    left: 0;
    right: inherit;
    bottom: 0;
    /*width: 100%;*/
    width: 49.5%;
  }
}

main .ex-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 300px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  main .ex-btn {
    right: 0;
    bottom: 0;
    width: 49.5%;
  }
}

footer .footer__top {
  background: #eba3a3;
  padding: 5.625rem 1rem 3.75rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top {
    padding: 3rem 1rem;
  }
}
footer .footer__top-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top-sns {
    gap: 1rem;
  }
}
footer .footer__top-sns a {
  width: 5%;
}
@media screen and (max-width: 768px) {
  footer .footer__top-sns a {
    width: 18%;
  }
}
footer .footer__top-logo {
  width: 100%;
  max-width: 333px;
  margin: 4.5rem auto 1.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top-logo {
    margin: 2rem auto 1rem;
  }
}
footer .footer__top p {
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  footer .footer__top p {
    font-size: 0.875em;
  }
}
footer .footer__top p:first-of-type {
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  footer .footer__top p:first-of-type {
    font-size: 1em;
  }
}
footer .footer__top p a {
  display: inline;
  text-decoration: underline;
}
footer .footer__copy {
  background: #666666;
  color: #fff;
  display: block;
  font-size: 12px;
  text-align: center;
  padding: 10px 1rem;
}
@media screen and (max-width: 768px) {
  footer .footer__copy {
    padding: 10px 1rem 6rem;
  }
}
@media screen and (max-width: 460px) {
  footer .footer__copy {
    text-align: left;
    padding: 10px 1rem 5.5rem;
  }
}/*# sourceMappingURL=style.css.map */