/*全体的なこと*/
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  min-width: 980px;
  height: 100%;
  background: #fff;
  color: #000;
  margin: 0;
  word-wrap: break-word;
  letter-spacing: .1em;
  font-weight: 400;
  font-size: 1.4rem;
  font-family: "Lato", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  line-height: 1.5;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
p {
  overflow: hidden;
  color: #303030;
  font-size: 15px;
  line-height: 2rem;
}
section {
  margin: 6rem auto;
}
a {
  text-decoration: none;
}
ul, li {
  list-style: none;
}
h2 {
  text-align: center;
  margin: 0 0 0.5rem;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.main {
  background: #ffffbb;
}
.h2-img {
  width: 60%;
}
.sp {
  display: none;
}
.br-sp {
  display: none;
}
.lp {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #000;
  background: #ffffbb;
}
.lp-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url('../img/bg.jpg');
  overflow: hidden;
}
@media screen and (max-width:767px) {
  body {
    min-width: 100%;
  }
  .main {
    width: 100%;
  }
  p {
    font-size: 14px;
    line-height: 1.1rem;
    letter-spacing: 0.05em;
  }
  section {
    margin: 3rem auto;
  }
  .h2-img {
    width: 70%;
  }
  .sp {
    display: block;
  }
  .lp {
    max-width: 100%;
    border: 0px solid #000;
  }
}
/*ヘッダー*/
header {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}
.logo {
  max-width: 70%;
}
.logo img:hover {
  opacity: .7;
}
@media screen and (min-width:767px) {
  .logo {
    width: 55%;
    max-width: 500px;
  }
  .lpimg img {
    margin-top: 88px !important;
  }
}
/*TOP画像*/
.lpimg {
  width: 100%;
  text-align: center;
  height: auto;
}
.lpimg img {
  width: 100%;
  margin-top: 12vw;
}
/*ボタン*/
.btn_bg {
  padding: 1rem 0 2rem;
  margin: 0;
}
.lp_btn {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  margin: 0 5%;
}
.lp_btn a {
  box-shadow: 3px 3px 0px #000000;
}
.lp_btn_anchor {
  display: flex;
  margin: 0 auto 1rem;
  justify-content: center;
  gap: 1rem;
}
.lp_btn img {
  width: 100%;
  height: auto;
}
.lp_btn_anchor a {
  width: 35%;
  box-shadow: 3px 3px 0 #000;
  border-radius: 50%;
  max-width: 13rem;
}
.lp_btn_anchor img:hover, .lp_btn img:hover {
  transform: translate(3px, 3px);
}
@media only screen and (min-width: 768px) {
  .lp_btn {
    display: flex;
    margin: 0;
    justify-content: center;
    padding: 8px;
    flex-direction: row;
    gap: 0 0.5rem;
  }
  .lp_btn a {
    width: 45%;
  }
}
/*学べる分野*/
.job {
  margin: 0 auto;
  width: 100%;
}
.job_bg {
  background: #3b84db;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 0), linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 0), linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 0);
  background-size: 30px 30px;
  padding: 6rem 0;
}
.job-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}
.job-box-tit {
  margin: 10px;
  font-weight: bold;
  background: #FFF;
  border-radius: 40px;
  width: 35%;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #000;
  box-shadow: 3px 5px 0px #003f8b;
  align-items: center;
  display: flex;
  justify-content: center;
}
.job-box-tit p {
  line-height: 1.6;
}
.job-box-tit p:hover {
  color: #fff;
}
.job-box-tit:hover {
  background-color: #0069d4;
}
@media screen and (max-width:767px) {
  .job_bg {
    padding: 3rem 0;
  }
  .job-box-tit {
    padding: 0.7rem;
    margin: 8px 5px;
    letter-spacing: 0.05em;
    width: 40%;
    height: 15vw;
  }
  .job-box-tit p {
    font-size: 3vw;
  }
}
/*ポップアップ*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  vertical-align: middle
}
.modal-wrapper .modal-window .modal-content {
  max-height: 82vh;
  overflow-y: auto;
  text-align: center
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3b84dbde;
}
.modal-close {
  z-index: 20;
  position: absolute;
  top: -55px;
  right: 0px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: all .2s ease-in-out
}
.modal-close:after, .modal-close:before {
  display: block;
  position: absolute;
  top: 8px;
  left: 16px;
  width: 4px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  content: " ";
}
.modal-close:before {
  transform: rotate(-45deg)
}
.modal-close:after {
  transform: rotate(45deg)
}
.modal-close:focus, .modal-close:hover {
  outline: none;
  background: #fff
}
.modal-close:focus:after, .modal-close:focus:before, .modal-close:hover:after, .modal-close:hover:before {
  background: #000000
}
.modal-img {
  width: 100%;
}
@media screen and (max-width:767px) {
  .modal-wrapper .modal-window {
    width: 100%;
  }
  .modal-close {
    top: -35px;
    right: 0px;
  }
  .modal-close:after, .modal-close:before {
    height: 25px;
  }
}
/*　選ぶボタン　*/
.choose {
  width: 90%;
  margin: 0 auto;
}
/*おすすめイベント*/
.event {
  max-width: 100%;
  margin: 2.5rem 5% 5rem;
  background: #fff;
  padding: 1rem 0;
  border-radius: 1rem;
  border: solid;
  background-image: linear-gradient(90deg, #ebebebba 1px, transparent 0), linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 0), linear-gradient(#ebebebba 1px, transparent 0);
  background-size: 30px 30px;
}
.event_title {
  margin: -3rem auto 0;
  width: 90%;
  max-width: 35rem;
}
.event img.h2-img {
  width: 100%;
}
.bnr_event {
  margin: 1rem 5% 0;
}
.bnr_event img {
  width: 100%;
  height: auto;
  text-align: center;
}
.bnr_event img:hover {
  opacity: .8;
}
.btn_event {
  display: block;
  width: 50%;
  margin: 1rem auto -3rem auto;
  box-shadow: 3px 3px #000;
}
/*オープンキャンパス*/
.oc_bg {
  background: linear-gradient(to top, #18c285 0%, #ffffbc 50%, #ff7189 100%);
  padding: 1rem 0;
  position: relative;
  margin: 0;
}
.oc {
  width: 100%;
  margin: 2rem auto 0;
}
.oc p {
  margin: 20px 0;
}
.oc-box {
    padding: 0.7em;
    margin: 4rem 0.7em 6rem;
  background: #fff;
  }
.oc-time-title {
  margin: -2rem 0 0;
}
.oc-time {
  position: relative;
  text-align: center;
}
.oc_title img, .oc-time-title img {
  width: 100%;
  max-width: 45rem;
}
.tit-schedule-a img, .tit-schedule-b img {
  width: 50%;
}
.fa-circle-check {
  content: "\f057";
}
.oc-btn {
  display: block;
    width: 70%;
    margin: 1rem auto -3rem auto;
    box-shadow: 3px 3px #000;
}
.oc-btn img:hover {
  transform: translate(3px, 3px);
}
.oc-time-benefits {
  text-align: center;
  margin: 0 auto 0.5rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .oc {
    margin: 3rem auto 0;
  }
.oc-box {
  padding: 2em 1em 5rem;
  margin: 10rem 1em;
}
  .event {
    margin: 5.5rem 5% 9rem;
  }
  .event_title {
    margin: -5rem auto 0;
  }
  .btn_event {
    margin: 3rem auto -4rem auto;
    width: 45%;
  }
  .oc-time-title {
    margin: -5rem auto 0;
    width: 85%;
  }
  .oc-btn {
    width: 50%;
	margin: 1rem auto -8rem auto;
  }
}
/*来校*/
.tit-schedule-a {
  margin: 0 0 -1rem;
  position: relative;
  z-index: 1;
}
.scroll_content-a {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  background-color: #ffd994;
}
.point {
  position: sticky;
}
.point-box1 {
  padding: 1em;
  margin: 2em 0 1em;
  background: #f5ac3f;
}
.point-box1 h2 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.point ul {
  margin: 2rem 0 0 5%;
  width: 61vw;
}
.point li {
  line-height: 1.4;
  margin: 0 0 1rem;
  letter-spacing: normal;
  position: relative;
  padding: 0 0 0 5vw;
  font-size: 4vw;
}
.fa-solid, .fas {
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.8vw;
}
.pop1 {
  width: 35vw;
  position: absolute;
  right: -4rem;
  top: -1.5rem;
}
.support {
  margin: 0 0 2rem;
}
ul.benefits {
  list-style: none;
  width: 90%;
  margin: 0 auto;
}
ul.benefits li {
  background-image: url(../img/benefits-icon1.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto 75px;
  padding: 0.2rem 0 1rem 4.5rem;
  line-height: 1.4;
  font-size: 17px;
  letter-spacing: normal;
  min-height: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits li._2 {
  background-image: url("../img/benefits-icon2.png");
}
.benefits li._3 {
  background-image: url("../img/benefits-icon3.png");
}
ul.benefits li span {
	font-size: 14px;
}
.benefits p {
  line-height: 1.8;
　margin: 1rem 0 0;
}
@media only screen and (min-width: 768px) {
  .point ul {
    max-width: 550px;
    margin: 2rem auto;
    width: 80%;
  }
  .pop1 {
    width: 180px;
    top: -15rem;
    left: -100px;
  }
  .point li {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0 0 0 2rem;
  }
	.fa-solid, .fas {
		top: 0.2vw;
	}
  ul.benefits {
    width: 75%;
  }
  ul.benefits li {
    background-size: auto 120px;
    font-size: 1.8rem;
    padding: 0.5rem 0 1.5rem 7.5rem;
    min-height: 7rem;
  }
  ul.benefits li span {
		font-size: 18px;
	}
}
/*はてなボックスアコーディオン*/
.accordion-1 {
  margin: 5px auto;
  font-size: 12px;
  width: 100%;
  line-height: 1.8;
}
.accordion-1 summary {
  display: flex;
  align-items: center;
  position: relative;
  color: #9e9e73;
  cursor: pointer;
  width: 60%;
  border-bottom: 2px dotted #e0e096;
  max-width: 400px;
}
.accordion-1 summary::-webkit-details-marker {
  display: none;
}
.accordion-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: auto;
  border-bottom: 2px solid #b9b987;
  border-right: 2px solid #b9b987;
  content: '';
  transition: transform .3s;
}
.accordion-1[open] summary::after {
  transform: rotate(225deg);
}
.accordion-1 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 0 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}
.accordion-1[open] p {
  transform: none;
  opacity: 1;
}
p.support {
  background: #5a5a5a;
  color: #fff;
  padding: 0.4rem 0.5rem;
  line-height: 1;
  margin: 0 0 1em;
  font-size: 1rem;
}
.support-img {
  border: solid 1px;
}
@media only screen and (min-width: 768px) {
  .accordion-1 {
    font-size: 15px;
  }
  .accordion-1 p {
    font-size: 0.9rem;
    padding: 2em 0;
  }
}
/*はてなボックのハテナ*/
.question {
  background-image: url("../img/hatena-icon.png");
  width: 1em;
  height: 1em;
  margin: 0 2px 0 0;
  background-size: contain;
}
/*交通費テーブル*/
.table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  margin: 1rem 0 0;
  background: #fff;
}
.th {
  border: 1px solid #000;
  background: #e3e3e3;
  padding: 12px 20px;
  font-weight: 400;
}
.td {
  border: 1px solid #000;
  padding: 12px 20px;
  min-width: 72px;
}
.yellow-1 {
  background: #FAFFAD;
}
.yellow-2 {
  background: #ffd863;
}
/*オンライン*/
.tit-schedule-b {
  background: linear-gradient(180deg, rgba(244, 244, 244, 0) 50% 50%, #95c8bf 50%);
  background-size: auto auto;
  margin: 0 0 -1px;
}
.scroll_content-b {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  background-color: #95c8bf;
}
.point-box2 {
  padding: 1em;
  margin: 2em 0 1em;
  background: #84ccce;
}
.point-box2 h2 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.pop2 {
  width: 35vw;
  position: absolute;
  top: -6rem;
  right: -3rem;
}
@media only screen and (min-width: 768px) {
  .pop2 {
    width: 14rem;
    right: -6.5rem;
  }
}
/*なんでも*/
.point-box3 {
  padding: 1em;
  margin: 2em 0 1em;
  background: #65b2e2;
}
.point-box3 h2 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.pop3 {
  width: 180px;
  position: absolute;
  top: 25px;
  left: -10px;
}
/*スケジュール*/
.scroll_content-a li, .scroll_content-b li {
  width: 35%;
  padding: 10px;
  margin: 5px;
  flex-shrink: 0;
}
.scroll_content-a img, .scroll_content-b img {
  width: 100%;
}
.scroll_content-a::-webkit-scrollbar {
  height: 12px;
}
.scroll_content-b::-webkit-scrollbar {
  height: 12px;
}
.scroll_content-a::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 6px;
}
.scroll_content-b::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 6px;
}
.scroll_content-a::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 6px;
}
.scroll_content-b::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 6px;
}
.icon_scroll {
  position: absolute;
  width: 11rem;
  top: 10px;
  left: -5px;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
@media screen and (max-width:767px) {
  .oc_title img, .oc-time-title img {
    width: 100%;
  }
  .tit-schedule-a img, .tit-schedule-b img {
    width: 80%;
  }
  .scroll_content-a, .scroll_content-b {
    padding: 0px;
  }
  .scroll_content-a li, .scroll_content-b li {
    width: 300px;
    padding: 10px;
  }
  .icon_scroll {
    width: 27vw;
    top: 0px;
    left: -15px;
  }
}
/* スケジュールのカルーセル */
.carousel {
  display: flex;
  justify-content: center;
}
.contains {
  width: 100%;
  height: 85vw;
  overflow: hidden;
  position: relative;
  padding: 0;
  list-style: none;
}
.slide_select {
  display: none;
}
.slide {
  width: 100%;
  height: 85vw;
  position: absolute;
  opacity: 0;
  overflow: hidden;
}
.scroll_button {
  position: absolute;
  display: block;
  height: 10vw;
  width: 10vw;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  top: 35vw;
  z-index: 3;
}
.scroll_button:after {
  content: '';
  position: absolute;
  display: block;
  height: 3vw;
  width: 3vw;
  border-width: 1vw 1vw 0 0;
  border-style: solid;
  border-color: #ffffff;
}
.scroll_button:hover {
  opacity: 1;
}
.scroll_prev {
  left: 1rem;
  transform: rotate(-135deg);
}
.scroll_prev:after, .scroll_next:after {
  margin: 3.5vw 0px 0px 2.3vw;
}
.scroll_next {
  right: 0;
  transform: rotate(45deg);
}
.move_controler {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.button_move {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0.5;
  z-index: 2;
}
.button_move:hover {
  opacity: 0.75;
}
.button_move {
  background-color: #ffbfa6;
}
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(1):checked ~ .move_controler .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .move_controler .button_move:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .move_controler .button_move:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .move_controler .button_move:nth-of-type(4) {
  opacity: 1;
}
@media screen and (min-width:767px) {
  .contains {
    width: 90%;
    height: 35rem;
  }
  .slide {
    width: 90%;
    height: 35rem;
  }
  .scroll_button {
    height: 6rem;
    width: 6rem;
    top: 14rem;
  }
	.scroll_button:after {
		height: 2rem;
		width: 2rem;
		border-width: 0.5rem 0.5rem 0 0;
	}
	.scroll_prev {
		left: 0;
	}
  .scroll_prev:after, .scroll_next:after {
    margin: 2rem 0px 0px 1.5rem;
  }
}
/*よくある質問*/
.faq_bg {
  background-color: #ffffbc;
  padding: 4rem 0 1rem;
  text-align: center;
  margin: 0;
}
.faq_bg h2 {
  margin: 0 0 2rem;
}
.faq_bg .h2-img {
  width: 100%;
}
.faq_top img {
  width: 100%;
}
.accordion {
  width: 90%;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 1rem;
}
.accordion-check {
  display: none;
}
.accordion-label {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 15px 25px;
  border-right: 40px solid #3a85db;
  border-top: solid 3px #3a85db;
  border-left: solid 3px #3a85db;
  border-bottom: solid 3px #3a85db;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.accordion-label::after {
  width: 20px;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 30px;
  content: '+';
  z-index: 2;
  position: absolute;
  right: -30px;
  top: 50%;
}
.accordion-box {
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fff;
  transition: all .5s;
}
.accordion-check:checked ~ .accordion-box {
  height: auto;
  opacity: 1;
  padding: 2rem;
  text-align: left;
}
.accordion-check:checked + .accordion-label:after {
  content: '-';
}
.accordion-label span {
  color: #3a85db;
  font-size: 2rem;
}
.accordion-box span {
  color: #ff5280;
  font-size: 2rem;
  font-weight: bold;
}
.accordion-box {
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .accordion-label {
    padding: 15px;
    font-size: 15px;
    line-height: 1.5rem;
  }
  .accordion-label span, .accordion-box span {
    font-size: 1.5rem;
  }
  .accordion-box p {
    font-size: 14px;
    line-height: 1.5rem;
  }
  .accordion-check:checked ~ .accordion-box {
    padding: 1.5rem;
  }
}
/*フッター*/
footer {
  text-align: center;
  margin: 20px 0;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/*----------------------------
　　　　　チカチカさせる
----------------------------*/
.tikatika {
  animation: tikatika 2s step-end infinite;
}
@keyframes tikatika {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}