@charset "utf-8";
/* CSS Document */

:root {
  --bule: #00328a;
  --l_bule:#d3edfb;
  --green: #549546;
  --l_green: #e2efce;
  --yellow: #f39800;
  --l_yellow: #feeac0;
  --purple: #b963a4;
  --l_purple: #e7deee;
  --serif: "ads-ikikoku", sans-serif;
}
html { scroll-behavior: smooth;}
body {
  font-weight: 400;
  line-height: 1.7;
  color: #333;
	margin: 0;
	padding: 0;
}

a{
	text-decoration: none;
}
.sp{
	display: none;
}
.p_m_0{
	margin: 0;
	padding: 0;
}
.menu-btn {
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #FFF;
	border-radius: 50%;
	border: 2px #606060 solid;
	z-index: 100000;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #606060;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 0 10px 0;
	width: 65%;
}
.menu-content ul li {
    border-bottom: solid 1px #606060;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#606060;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a:hover{
	color: #ec6d56;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #606060;
    border-right: solid 2px #606060;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content ul li a:hover::before{
    border-top: solid 2px #ec6d56;
    border-right: solid 2px #ec6d56;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background: rgba(255,255,255,0.8);
    transition: all 0.5s;
	z-index: 10000;
}
#menu-btn-check:checked ~ .menu-content {
    left: 30%;
}
h1 {
    position: fixed;
    width: 18%;
    top: 10px;
    left: 10px;
    z-index: 1000;
	margin: 0
}
h2{
  font-size: 1.8rem;
	font-weight: bold;
}
h4{
	width: 35%;
	display: block;
	margin: 24px auto;
}
main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
}
img{
	width: 100%;
}
.relative{
	position: relative;
}
.copy-top{
	writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: auto;
	font-size: 20px;
	font-weight: bold;
	color: var(--bule);
}
.cover-photo{
	width: 100%;
	margin-top: -66px;
}
.en-title{
	color: var(--bule);
	font-size: 80px;
	text-align: center;
	opacity: 0.3;
	margin: 0;
	font-weight: bold;
}
.catch-copy {
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}
.bule-band{
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, #0084cf, #0a2c87);
}
.green-band {
  width: 100%;
  height: 20px;
  background-image: linear-gradient(90deg, #a8d182, #549546);
}
.yellow-band{
  width: 100%;
  height: 20px;
  background-image: linear-gradient(90deg, #ffe200, #e4bc00);
}
.purple-band{
  width: 100%;
  height: 20px;
  background-image: linear-gradient(90deg, #bba1cb, #9070af);
}
.cover-inner{
	padding: 20px 0;
}
.main-photo {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

.jp-title {
  color: #FFF;
  font-family: var(--serif);
  font-style: normal;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(90deg, #0084cf, #0a2c87);
	display: block;
	margin: -10px 0 0 0;
	text-align: center;
}
.jp-title_green{
  color: #FFF;
  font-family: var(--serif);
  font-style: normal;
  width: 100%;
  padding: 10px 0;
    background-image: linear-gradient(90deg, #a8d182, #549546);
	display: block;
	margin: -10px 0 0 0;
	text-align: center;
}
.jp-title_yellow{
	  background-image: linear-gradient(90deg, #ffe200, #e4bc00);
	  color: #FFF;
  font-family: var(--serif);
  font-style: normal;
  width: 100%;
  padding: 10px 0;
	display: block;
	margin: -10px 0 0 0;
	text-align: center;

}
.jp-title_purple{
	  background-image: linear-gradient(90deg, #bba1cb, #9070af);
	  color: #FFF;
  font-family: var(--serif);
  font-style: normal;
  width: 100%;
  padding: 10px 0;
	display: block;
	margin: -10px 0 0 0;
	text-align: center;
}
.jp-title_lightbule{
	 background-image: linear-gradient(90deg, #7dcdf4, #00a0e9);
	  color: #FFF;
  font-family: var(--serif);
  font-style: normal;
  width: 100%;
  padding: 10px 0;
	display: block;
	margin: -10px 0 0 0;
	text-align: center;
}
.logo-img {
  max-width: 260px;
	display: block;
	margin: 30px auto;
}
section{
	display: block;
	max-width: 1000px;
	margin: 0 auto;
}
.section{
	padding: 50px;
}
.flex{
	display: flex;
}
.flex_sp{
	display: flex;
}
.flex_center{
    justify-content: center;
	align-items: center;
}
.pro{
	display: block;
	width: 30%;
}
.title{
	display: block;
	color: var(--bule);
	font-size: 25px;
	font-weight: bold;
}
.title_green{
	display: block;
	color: var(--green);
	font-size: 25px;
	font-weight: bold;
}
.title_yellow{
	display: block;
	color: var(--yellow);
	font-size: 25px;
	font-weight: bold;
}
.title_purple{
	display: block;
	color: var(--purple);
	font-size: 25px;
	font-weight: bold;
}
.center{
	text-align: center;
}
.messege p.pro p{
	margin: 0;
}
.sub_title{
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 0.5em;
	display: block;
}
.sub_title_green{
	font-size: 20px;
	font-weight: bold;
	margin: 0.5em 0;
	display: block;
	color: var(--green);
}
.for_parent{
	color: var(--bule);
	font-size: 16px;
	font-weight: bold;
}
.consept{
	background: url("../img/back_consept.png")no-repeat;
	width: 100%;
	background-size: cover;
}
.consept_list{
	font-size: 20px;
	font-weight: bold;
}
.m_t_20{
	margin-top: 20px;
}
.m_t_50{
	margin-top: 50px;
}
.m_t_80{
	margin-top: 80px;
}
.m_b_50{
	margin-bottom: 50px;	
}
.m_b_10{
	margin-bottom: 10px;
}
.m_b_80{
	margin-bottom: 80px;
}
.m_l_20{
	margin-left: 20px;
}
.m_lr_5{
	margin: 0 5px;
}
strong.bule{
	background-color: var(--l_bule);
}
strong.green{
	background-color: var(--l_green);
}
strong.yellow{
	background-color: var(--l_yellow);
}
strong.purple{
	background-color: var(--l_purple);
}
.block{
	display: block;
}
.w_3{
	width: calc(100% / 3);
}
.w_50{
	width: 50%;
}
.w_60{
	width: 60%;
}
.w_70{
	width: 70%;
}
.f_1{
	flex: 1;
    padding: 0 20px 0 0;
}
.img_flex{
	width: 40%;
	display: block;
}
.img_flex01{
	width: 30%;
	display: block;
}
.img_flex img.h100,.img_flex01 img.h100{
 width: 100%;
  height: 100%;      
  object-fit: cover;  
}
.img_flex img.h_50,.img_flex01 img.h_50{
	 width: 100%;
  height: 50%;      
  object-fit: cover;  
}
.txt{
	color: var(--bule);
	font-weight: bold;
	margin: 0 0 20px;
}
.skill{
    background: linear-gradient(90deg, #0084cf, #0a2c87);
	color: #FFF;
	padding: 20px;
}
.skill_title{
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}
.skill_txt{
	margin-top: 0;
	margin-bottom: 20px;
}
.comment{
	color: var(--green);
	font-size: 20px;
	font-weight: bold;
	padding: 20px;
	margin: 20px auto 0;
	border: 2px solid var(--green);
	display: block;
	width: 60%;
}
.boder{
	border-bottom: 2px solid var(--green);
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	text-align: center;
}
.basic{
    background-image: linear-gradient(90deg, #dfeed0, #bdd3b1);
	color: #595757;
	padding: 20px;
	margin: 20px 0;
}
.basic_title{
	font-size: 25px;
	font-weight: bold;
	padding-left: 20px
}
.basic p{
	border-left: 1px solid #FFF;
	border-top: 1px solid #FFF;
	padding: 20px;
	margin: 0;
	font-weight: bold;
}

.circle-ring {
  position: absolute;
  max-width: 300px;   
  height: 300px;
  margin: 0 auto;
  top: 50%;
  left: 50%;
}

.circle {
  position: absolute;
  width: 90px;   
  height: 90px;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #ffe200, #e4bc00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 100;
}
.circle-ring .circle:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg)   translate(150px) rotate(-0deg); }
.circle-ring .circle:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg)  translate(150px) rotate(-45deg); }
.circle-ring .circle:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg)  translate(150px) rotate(-90deg); }
.circle-ring .circle:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translate(150px) rotate(-135deg); }
.circle-ring .circle:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translate(150px) rotate(-180deg); }
.circle-ring .circle:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translate(150px) rotate(-225deg); }
.circle-ring .circle:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translate(150px) rotate(-270deg); }
.circle-ring .circle:nth-child(8) { transform: translate(81%, -174%) rotate(361deg);}
.pbl01{
	width: 100px;
	position: absolute;
	top: -45px;
    left: -21px;
	z-index: 1;
}
.pbl02{
	width: 100px;
	position: absolute;
	top: 46px;
    right: 75px;
	z-index: 1;
}
.pbl03{
	width: 100px;
	position: absolute;
	bottom: 56px;
    left: 95px;
    z-index: 1;
}
.bubble-wrap {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
	color: var(--purple);
}

.bubble {
    background: #fff;
    border: solid 3px var(--purple);
    border-radius: .3em;
    filter: drop-shadow(0px 5px 0px rgba(185, 99, 164, 1));
    display: flex;
    font-weight: 700;
    padding: .5em .2em;
    position: relative;
    flex-flow: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    line-height: 1.3;
}
.bubble::after {
    background: #fff;
    top: calc(100% - 5px);
    left: calc(80% - 2px);
	clip-path: polygon(0 0, 100% 0, 100% 100%);
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    width: 1em;
    height: 1em;
}

.bubble::before {
  	background: var(--purple);
    top: 100%;
    left: 80%;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    width: 1em;
    height: 1em;
}
.disc_title{
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
.red_boder{
	border-bottom: 1px dashed #f29c97;
	padding-bottom: 10px;
	color: #f29c97;
	
}
.red_b{
	border: 2px solid #f29c97;
	background-color: #fdeff5;
	margin-right: 20px;
	margin-bottom: 20px;
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
}
.green_boder{
	border-bottom: 1px dashed var(--bule);
	padding-bottom: 10px;
	color: var(--bule);
}
.green_b{
	border: 2px solid var(--bule);
	background-color: #ebf5ec;
	margin-bottom: 20px;
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
}
.bule_boder{
	border-bottom: 1px dashed #4994c4;
	padding-bottom: 10px;
	color: #4994c4;
}
.bule_b{
	border: 2px solid #4994c4;
	background-color: #eaf6fd;
	margin-right: 20px;
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
}
.orange_boder{
	border-bottom: 1px dashed #f5a200;
	padding-bottom: 10px;
	color: #f5a200;
}
.orange_b{
	border: 2px solid #f5a200;
	background-color: #fffeee;
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
}
.float_r{
	float: right;
}
.discu{
  	position: absolute;
  	top: 50%;
  	left: calc(50% - 5px);
  	transform: translate(-50%, -50%);
	width: 35%;
}
.disc p{
	margin-bottom: 0;
}
.flex_center_s{
	align-items: center;
}
.swiper {
        width: 100%;
        height: 470px;
      }

      .swiper-slide {
        text-align: left;
        font-size: 15px;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.swiper-slide .qa{
        display: block;
        width: 100%;
	height: 440px;
	border: 1px solid #868686;
	padding: 1em;
	box-sizing: border-box;
	font-weight: bold;
}
.swiper-container {
    padding: 0 40px;
	position: relative;
}
.qa_btn{
	display: block;
	margin: 10px auto;
	width: 70%;
	text-align: center;
	border: 1px solid var(--bule);
	color: #FFF;
	background: var(--bule);
	border-radius: 30px;
	transition: 0.5s;
}
.qa_btn:hover,.ex a:hover .qa_btn{
	background: #FFF;
	color: var(--bule);
	transition: 0.5s;
}
.ex a img{
	transition: 0.5s;
}
.ex a img:hover{
	opacity: 0.5;
	transition: 0.5s;
}
.bottom{
	align-items: flex-end;
}
.balloon01 {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border-bottom: solid 3px #525252;
    max-width: 100%;
	margin-right: 10px;
	font-weight: bold;
}
.balloon01 .q{
	font-size: 50px;
	color: #fac03d;
	vertical-align: bottom;
	margin: 0;
}
.balloon01 span{
	font-size: 10px;
}
.balloon01:before,
.balloon01:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.balloon01:before {
    border: solid 12px transparent;
    border-top: solid 12px #525252;
}
.balloon01:after {
    border: solid 14px transparent;
    border-top: solid 14px #fff;
    margin-top: -5px;
}
.a{
	font-size: 50px;
	color: var(--bule);
	padding-right: 10px;
	margin: 10px 0 0 0;
}
.ex{
	font-size: 12px;
	margin: 0;
}
.school_box h3{
	margin: 0 auto;
	text-align: center;
}
.schoolmap{
	width: 40%;
	margin: 1em 5%;
	float: right;
}
.schoolmap iframe{
	height: 450px;
}
.school_box{
	display: inline-table;
	width: 100%;
	margin-bottom: 150px;
}
.school_box h4{
	margin-top: 4%;
	font-size: 3vh;
}
table.school {
	border-collapse: separate;
	border-spacing: 0px 15px;
	float: left;
}

table.school th,
table.school td {
	padding: 15px;
}

table.school th {
	background: var(--bule);
	vertical-align: middle;
	text-align: left;
	width: 100px;
	overflow: visible;
	position: relative;
	color: #fff;
	font-weight: normal;
}

table.school th:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: var(--bule);
	border-width: 10px;
	margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
table.school th::after {
	float: right;
	padding: 0;
	left: 30px;
	top: 10px;
	content: " ";
	height: 0;
	width: 0;
	position: relative;
	pointer-events: none;
	border: 10px solid transparent;
	border-left: var(--bule) 10px solid;
	margin-top: -10px;
}
}

table.school td {
	background: #f8f8f8;
	width: 360px;
	padding-left: 20px;
}
.sc_w{
	margin-bottom: 150px;
}
.insta{
	margin: 0 auto;
	display: block;
	width: 765px;
	height: 744px;
}
footer{
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 100;
	
}
footer .btn1{
    width : calc(100% / 4) ;
    height: 80px;
    font-size: 25px;
    flex-direction: row;
	text-align: center;
	line-height: 80px;
	background: var(--bule);
	color: #FFF;
	font-weight: bold;
	transition: 0.5s ;
}
footer .btn1:hover{
   background: var(--l_bule);
	color: var(--bule);
}
footer .btn2{
    width : calc(100% / 4) ;
    height: 80px;
    font-size: 25px;
    flex-direction: row;
	text-align: center;
	line-height: 80px;
	background: var(--green);
	color: #FFF;
	font-weight: bold;
	transition: 0.5s ;
}
footer .btn2:hover{
   background: var(--l_green);
	color: var(--green);
}
footer .btn3{
    width : calc(100% / 4) ;
	height: 80px;
    font-size: 25px;
    flex-direction: row;
	text-align: center;
	line-height: 80px;
    background: var(--yellow);
	color: #FFF;
	font-weight: bold;
	transition: 0.5s ;
}
footer .btn3:hover{
   background: var(--l_yellow);
	color: var(--yellow);
}
footer .btn4{
    width : calc(100% / 4) ;
	height: 80px;
    font-size: 25px;
    flex-direction: row;
	text-align: center;
	line-height: 80px;
    background: var(--purple);	
	color: #FFF;
	font-weight: bold;
	transition: 0.5s ;
}
footer .btn4:hover{
   background: var(--l_purple);
	color: var(--purple);
}
@media screen and (max-width: 750px){
	*, *::before, *::after {
  		box-sizing: border-box;
	}
	 h1 {
        width: 100%;
		 top: 0;
		 left: 0;
		 background: #FFF;
    }
	h1 img{
		width: 40%;
	}
	main{
		margin-top: 10vh;
	}
	main,section{
		overflow: hidden;
	}
	img {
  		max-width: 100%;
  		height: auto;
	}	
	.sp{
		display: block;
	}
	.pc{
		display:none;
	}
	.copy-top{
		font-size: 1rem;
	}
	.en-title{
		font-size: 1.7rem;
        overflow-wrap: break-word;
	}
	.cover-photo{
		margin-top: -1.8rem;
	}
	.logo-img{
		width: 40%;
	}
	h2{
		font-size: 1.5rem;
		scroll-margin-top: 10vh;
	}
	.pro{
		display: none;
	}
	.flex{
		display: block;
	}
	.w_70,.w_60,.img_flex,.bule-band,.green-band,.yellow-band,.purple-band,.main-photo,.jp-title,.jp-title_green,.jp-title_yellow,.jp-title_purple,.jp-title_lightbule,.w_3,.w_50{
		width: auto;
	}
	.section{	
		padding: 5%;
		overflow: hidden;
	}
	.title {
		font-size: 1.4rem;
	}
	.consept_list {
		font-size: 1.2rem;
	}
	.m_l_20{
		margin-left: 0; 
	}
	.f_1{
		padding: 0;
	}
	.comment{
		font-size: 1.2rem;
		padding: 5px;
		width: auto;
	}
	.img_flex01{
		width: auto;
	}
	.boder{
		padding: 0 0 5px 0;
    	margin: 0 0 5px 0;
	}
	.sp_inline{
		display: inline-block;
	}
	.circle-ring .circle:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg)   translate(140px) rotate(-0deg); }
.circle-ring .circle:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg)  translate(140px) rotate(-45deg); }
.circle-ring .circle:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg)  translate(140px) rotate(-90deg); }
.circle-ring .circle:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translate(140px) rotate(-135deg); }
.circle-ring .circle:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translate(140px) rotate(-180deg); }
.circle-ring .circle:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translate(140px) rotate(-225deg); }
.circle-ring .circle:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translate(140px) rotate(-270deg); }
.circle-ring .circle:nth-child(8) { transform: translate(81%, -174%) rotate(361deg);}
	.sh_60{
		height: 60vh;
	}
	.circle{
		width: 75px;
    	height: 75px;
		font-size: 12px;
	}
	.bubble-wrap{
		gap: 20px;
	}
	.sub_title{
		font-size: 1.2rem;
	}
	.red_b,.green_b,.bule_b,.orange_b{
		margin: 20px;
		padding: 20px!important;
	}
	.pbl02{
		top: 97px;
	}
	.pbl03{
		bottom: 97px;
	}
	.float_r{
		float: none;
	}
	.discu{
		position: static;
        display: block;
        margin: 0 auto;
        transform: none;
        width: 90%;
	}
	.schoolmap{
		width: 100%;
		display: block;
		margin: 0;
	}
	
	.m_b_80{
		margin-bottom: 10vh;
	}
	

	footer .btn1,footer .btn2,footer .btn3,footer .btn4 {
		font-size: 15px;
		height: 10vh;
		line-height: 10vh;
	}
	
	
	
}
