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

@import url('https://fonts.cdnfonts.com/css/adamcg-pro');

/* add */

/*input[type="text"],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}*/

/* end - add */

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li
{
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
	box-sizing: border-box;
	letter-spacing: 0.02em;
	/*color:#333333;*/
}

div,section{
	box-sizing: border-box;
	letter-spacing: 0.02em;
	color:#333333;
}

body {
 	line-height:1.5;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

ul {
  list-style:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
transition: 0.5s;
}

a:hover{
	opacity: 0.8;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
   font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

img{
	max-width: 100%;
}

.sp{
	display: none;
}

/*h2{
	font-family: 'ADAM.CG PRO', sans-serif;
	position: relative;
	padding-left: 35px;
	margin-bottom: 0;
	font-size: 48px;
	color:#006fb0;
	line-height: 1.25em;
}

h2:before {
    position: absolute;
    top: 0.5em;
    left: -1000px;
    width: 1000px;
    height: 2px;
    background-color: #006fb0;
    content: "";
}

h2._white,
h2._white small{
	color:#ffffff;
}

h2._white:before{
	background-color: #ffffff;
}

small{
	font-weight: bold;
	font-size: 15.5px;
	margin-bottom: 55px;
	letter-spacing: 0.02em;
	display: block;
	color:#333333;
	line-height: 1em;
}*/

/* main */
	.grd{
		background: linear-gradient(to right,#006fb0 0%,#35acf0 100%);
	}
	
	header{
		/*position: fixed;*/
		position: relative;
		box-shadow: 0 3px 5px 0 rgba(0 0 0 / 30%);
		/*background: rgba(255 255 255 / 90%);*/
		background: var(--color_main);
		height: 70px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 30px;
		width: 100%;
		box-sizing: border-box;
		z-index: 100;
	}
	
	.menuBox{
		display: flex;
		align-items: center;
	}

	@media screen and (min-width:951px){
		.menuBox li{
			margin-left: 30px;
		}
	}
	
	.menuBox a{
		font-size: 14px;
		color: var(--color_header_text);
		text-decoration: none;
	}
	
	.menuBox .linkBtn a{
		font-size: 14px;
		color:#ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 50px;
		width: 180px;
		border-radius: 100px;
		background: linear-gradient(to right,#006fb0 0%,#35acf0 100%);
	}

	.mainImage{
		background: url("../images/main.png") center;
		background-size:cover;
		width: 100%;
		min-height: 600px;
		position: relative;
		padding-top: 300px;
		height: 40vw;
	}

	.mainText{
		width: 100%;
		position: absolute;
		top:calc((50% - 75px) + 70px);
	}

	.mainText p{
		text-align: center;
		margin-bottom: 20px;
	}

	.mainText span{
		display: inline-block;
		color:#ffffff;
		padding: 10px 15px;
		font-weight: bold;
		font-size: 30px;
	}	

	.content{
		width: 1000px;
		margin: auto;
	}
	
	.news{
		padding: 40px 100px;
	}
	
	.news dl{
		padding:0 25px;
		border-radius: 10px;
		background: #f3f3f3;
	}
	
	.news dd{
		padding:25px 0;
	}
	
	.news dt{
		position: relative;
		font-weight: bold;
		padding-bottom: 25px;
		font-size: 23px;
		padding-top: 25px;
		cursor: pointer;
	}
	
	.news dt::before {
		position: absolute;
		top: 50%;
		right: 0;
		width: 30px;
		height: 3px;
		background-color: #000;
		content: "";
		transition: .4s;
	}
	
	.news dt::after {
		position: absolute;
		top: 50%;
		right: 0;
		width: 30px;
		height: 3px;
		background-color: #000;
		content: "";
		transform: rotate(90deg);
		transition: .4s;
	}
	
	.news .open dt::before {
		position: absolute;
		top: 50%;
		right: 0;
		width: 30px;
		height: 3px;
		background-color: #000;
		content: "";
		transform: rotate(45deg);
		transition: .4s;
	}
	
	.news .open dt::after {
		position: absolute;
		top: 50%;
		right: 0;
		width: 30px;
		height: 3px;
		background-color: #000;
		content: "";
		transform: rotate(135deg);
		transition: .4s;
	}
	
	.wp-block-group__inner-container p.has-accordion-font-size {
		font-size: 20px;
		font-weight: bold;
	}
	
	.wp-block-group__inner-container p {
		margin-bottom: 1em;
		line-height: 2.14286;
		font-size: 14px;
	}

	.wp-block-group__inner-container ul {
		margin: 0 0 20px 20px;
	}

	.wp-block-group__inner-container li {
		line-height: 2.14286;
		font-size: 14px;
		list-style-type: disc;
	}


	.sec01{
		padding: 40px 0 75px;
	}
	
	.sec01Title{
		color:#ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		font-size: 30px;
		letter-spacing: 0.02em;

	}
	
	.sec01Box {
		margin: 35px auto 65px;
		padding: 55px 80px;
		width: 640px;
		border-radius: 30px;
		background: url(../images/sec01Bg.png);
		background-position: center 85px;
		background-repeat: no-repeat;
		background-color: #ffffff;
		box-shadow: 5px 3px 15px 1px rgba(0 0 0 / 30%);
	}

	.sec01Box li span{
		display: inline-block;
		margin-right: 10px;
		line-height: 0;
	}
	
	.sec01Box li{
		font-size: 20px;
		font-weight: bold;
		display: flex;
		align-items: center;
	}
	
	.sec01Box li:not(:last-child){
		margin-bottom: 25px;
	}
	
	.sec01Text{
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		font-style: italic;
	}
	
	.sec01Text span{
		display: inline-block;
		border-bottom: 1px solid #ffffff;
		padding-bottom: 6px;
		color:#ffffff;
	}

	.wrap{
		padding: 70px 0 60px;
	}

	.sec02List{
		display: flex;
		justify-content: space-between;
	}

	.sec02List li{
		width: calc((100% - 100px) / 3);
	}

	.sec02Title{
		font-size: 24px;
		line-height: 34px;
		padding-bottom: 20px;
		margin-bottom: 30px;
		border-bottom: 1px solid #006fb0;
		font-weight: 500;
	}

	.sec02Text{
		margin-top: 20px;
		font-size: 14px;
		line-height: 24px;
		letter-spacing: 0.06em;
	}

	.sec03{
		background-color: #eef7ff;
	}
	
	.sec03List li{
		display: flex;
		justify-content: space-between;
	}
	
	.sec03List li:nth-child(even){
		flex-flow: row-reverse;
		left:inherit;
		right: -25px;
	}	
	
	.sec03List li:not(:last-child){
		margin-bottom: 40px;
	}
	
	.sec03Img{
		width: 209px;
	}
	
	.sec03Text{
		width: calc(100% - 255px);
	}
	
	.sec03Text p{
		width: 100%;
		position: relative;
		background: #ffffff;
		padding: 25px 30px;
		border-radius: 10px;
		font-size: 14px;
		line-height: 24px;
	}
		
	
	.sec03List li .sec03Text p:after{
		content:" ";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 15px 25px 15px 0;
		border-color: transparent #ffffff transparent transparent;
		position: absolute;
		top:calc(50% - 15px);
		left: -25px;
	}
	
	.sec03List li:nth-child(even) .sec03Text p:after{
		content:" ";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 15px 0 15px 25px;
		border-color: transparent transparent transparent #ffffff;
		left: inherit;
		right: -25px;
	}	

	.course p{

	}

	.sec04{
		padding-top:80px;
	}
	
	.insta{
		display: flex;
		flex-wrap: wrap;
		padding: 0 5px;
	}
	
	.insta li{
		padding:0 40px 40px;
	}

	.sec05{
		padding:40px 0;
	}
	
	.sec05List li{
		text-align: center;
		padding-bottom: 50px;
	}

	.sec06List{
		padding: 0 65px;
	}
	
	.sec06List li{
		display: flex;
		justify-content: space-between;
		border-radius: 30px;
		background: #ffffff;
		box-shadow: 5px 3px 15px 1px rgba(0 0 0 / 30%);
		flex-flow: row-reverse;
		align-items: center;
	}	
	
	.sec06List li:not(:last-child){
		margin-bottom: 20px;
	}
	
	.sec06ListBox{
		width: 530px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 25px;
	}
	
	.sec06ListImg{
		background-size: cover;
		background-position: center;
		height: 190px;
		width: 300px;
		border-radius:0 30px 30px 0;
	}
	
	.sec06ListIcon{
		width: 140px;
		height: 140px;
		display: flex;
		text-align: center;
		align-items: center;
		background: #fe789d;
		border-radius: 300px;
		justify-content: center;
	}
	
	.sec06ListIcon p span{
		color:#ffffff;
		font-size: 26px;
		display: inline-block;
		font-family: 'ADAM.CG PRO', sans-serif;		
	}	
	
	.sec06ListIcon p{
		color:#ffffff;
		font-size: 20px;
		text-align: center;
		font-weight: 500;
		letter-spacing: 0;
	}
	
	.sec06ListText{
		width: 310px;
	}

	.sec07{
		background: #f3f3f3;
	}
	
	.bnr01{
		margin-bottom: 25px;
		box-shadow: 0 0 10px 1px rgba(0 0 0 / 10%);
		line-height: 0;
	}
	
	.bnr02{
		box-shadow: 0 0 10px 1px rgba(0 0 0 / 10%);
		line-height: 0;
	}


	.sec08Box01{
		padding: 0 30px;
		margin-bottom: 40px;
	}
	
	.sec08Box02{
		display: flex;
		justify-content: space-between;
		padding: 0 30px 60px 30px;
	}

	.sec08Box01 a{
		background-image: url("../images/course_01.png");
		background-position: left;
		background-color: #333333;
		display: flex;
		justify-content: flex-end;
		background-repeat: no-repeat;
		text-decoration: none;
	}



	.sec08Box02 ._01 a{
		background-image: url("../images/course_02.png");
		width: 426px;
		height: 360px;
		background-size:cover;
		display: block;
		text-decoration: none;
	}

	.sec08Box02 ._02 a{
		background-image: url("../images/course_03.png");
		width: 426px;
		height: 360px;
		background-size:cover;
		display: block;
		text-decoration: none;
	}

	.sec08 a{
		text-decoration: none;
	}
	
	.sec08Box01Inner--01{
		display: flex;
		margin-bottom: 10px;
	}
	
	.sec08Box01Inner--01 *{
		color:#ffffff;
	}
	
	.sec08Box01Inner{
		height: 315px;
		width: 456px;
		padding: 40px;
		background: #333333;
	}
	
	.plan{
		display: flex;
		font-family: 'ADAM.CG PRO', sans-serif;
		height: 65px;
		width: 65px;
		text-align: center;
		justify-content: center;
		align-items: center;
		font-size: 14px;
		border:1px solid #ffffff;
		line-height: 24px;
	}
	
	.plan span{
		font-size: 32px;
	}
	
	.sec08Box01--Text01{
		font-size: 36px;
		font-weight:500;
	}
	
	.sec08Box01--Text02{
		font-size: 50px;
	}
	
	.sec08Box01--Text02 span{
		font-size: 90px;
		font-family: 'ADAM.CG PRO', sans-serif;
		letter-spacing: -3px;
	}
	
	.pl10{
		padding-left: 10px;
	}
	
	.sec08Btn{
		text-align: center;
	}
	
	.sec08Btn span{
		display: inline-block;
		width: 250px;
		background: #ffffff;
		padding: 3px 0;
		font-size: 18px;
		color:#333333;
		text-align: center;
		border-radius: 100px;
	}	
	
	.sec08Box02Inner--01{
		display: flex;
	}
	
	.sec08Box02Inner--01 *{
		color:#ffffff;
	}
	
	.sec08Box02Inner{
		padding: 20px;
		padding-top: 170px;
	}
	
	.sec08Box02--Text01{
		font-size: 30px;
		font-weight:500;
	}
	
	.sec08Box02--Text02{
		font-size: 30px;
		text-align: right;
	}
	
	.sec08Box02--Text02 span{
		font-size: 50px;
		font-family: 'ADAM.CG PRO', sans-serif;
	}

	.sec09{
		background: #eef7ff;
	}
	
	.sec09 dl{
		padding-left: 60px;
		background: #0876b8;
		margin-top: 25px;
	}
	
	.sec09 dl *{
		color:#ffffff;
	}
	
	.sec09 dd{
		padding:25px 0;
	}
	
	.sec09 dt{
		position: relative;
		font-weight: bold;
		padding-bottom: 25px;
		font-size: 16px;
		padding-top: 25px;
		cursor: pointer;
		padding-right: 90px;
	}
	
	.sec09 dt::before {
		position: absolute;
		top: 50%;
		right: 25px;
		width: 30px;
		height: 3px;
		background-color: #fff;
		content: "";
		transition: .4s;
	}
	
	.sec09 dt::after {
		position: absolute;
		top: 50%;
		right: 25px;
		width: 30px;
		height: 3px;
		background-color: #fff;
		content: "";
		transform: rotate(90deg);
		transition: .4s;
	}
	
	.sec09 .open dt::before {
		position: absolute;
		top: 50%;
		right: 25px;
		width: 30px;
		height: 3px;
		background-color: #fff;
		content: "";
		transform: rotate(45deg);
		transition: .4s;
	}
	
	.sec09 .open dt::after {
		position: absolute;
		top: 50%;
		right: 25px;
		width: 30px;
		height: 3px;
		background-color: #fff;
		content: "";
		transform: rotate(135deg);
		transition: .4s;
	}
	
	.sec09 dd{
		font-size: 14px;
		padding: 25px 0;
	}

	.sec10{
		background-image: url("../images/sec10Bg.png");
		background-position: center;
		background-size: cover;
	}

	.BlogImg{
	  width:100%;
	  height:160px;
	}

	.BlogImg img{
	  width:auto;
	  height:160px;
	  object-fit:cover;
	}
	
	.sec10List{
		display: flex;
		flex-wrap: wrap;
	}
	
	.sec10List li{
		margin-bottom: 20px;
		width: calc((100% - 40px) / 3);
		background: #ffffff;
		margin-right: 20px;
	}	
	
	.sec10List li:nth-child(3n + 3){
		margin-right: 0;
	}
	
	.blogCont{
		padding: 20px;	
	}
	
	.blogCont a{
		text-decoration: none;
		display: block;
	}
	
	.blogDate{
		font-size: 12px;
	}
	
	.blogText{
		font-size: 16px;
		margin-bottom: 15px
	}
	
	.blogCat a{
		font-size: 12px;
		display: inline-block;
		margin-left: 10px;
		color:#ffffff;
		padding:3px 8px;
		background: #333333;
		border-radius: 20px;
	}

	.sec11Cont{
		background-image: url("../images/sec11Img01.png");
		background-position: left;
		background-repeat: no-repeat;
	}

	.sec11Cont .content{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		height: 460px;
	}

	.sec11Box{
		width: 400px;
	}
	
	.sec11BoxTitle{
		font-size:26px;
		font-weight: bold;
		margin-bottom: 50px;
	}
	
	.sec11BoxText{
		font-size: 14px;
		line-height: 24px;
	}

	.sec12{
		background: #eef7ff;
	}
	
	.rlt{
		position: relative;
	}
	
	.sec12Img{
		position: absolute;
		right: 25px;
		top:0;
	}
	
	.sec12 h2{
		margin-bottom: 15px;
	}
	
	.sec12Text{
		font-size:20px;
		font-weight: bold;
		color:#000000;
		margin-bottom: 10px;
		padding-left: 35px;
	}
	
	.sec12TableWrap{
		padding-left: 35px;
	}
	
	.sec12Table{
		width: 400px;
	}
	
	.sec12Table th{
		font-size: 14px;
		font-weight: normal;
		padding: 15px 0;
		width: 70px;
		border-bottom: 1px solid #dcdcdc;
		text-align: left;
	}
	
	.sec12Table td{
		font-size: 14px;
		font-weight: normal;
		padding: 15px 0;
		border-bottom: 1px solid #dcdcdc;
	}
	
	.accessMap{
		margin-top: 60px;
	}

	.sec13Cont01{
		display: flex;
		justify-content: space-between;
		margin-bottom: 60px;
	}
	
	.sec13Cont01 > div{
		width: calc((100% - 45px) / 2);
		height: 200px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		transition: 0.7s;
	}

	.sec13Cont01 > div:after{
		content:" ";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 0 30px 30px;
		border-color: transparent transparent #ffffff transparent;
		position: absolute;
		bottom:10px;
		right: 10px;
	}

	.sec13Cont01 > div:hover{
		opacity: 0.8;
		cursor: pointer;
	}

	.sec13Cont01 a{
		text-decoration: none;
	}	

	.sec13Cont01--Box01{
		background:url("../images/btn_01.png") center;
		background-size: cover;
	}

	.sec13Cont01--Box02{
		background:url("../images/btn_02.png") center;
		background-size: cover;
	}

	.sec13Cont01 *{
		color:#ffffff;
		text-align: center;
	}	
	
	.sec13Cont01--Text01{
		font-size: 26px;
		font-family: 'ADAM.CG PRO', sans-serif;	
	}
	
	.sec13Cont01--Text02{
		font-size: 15.5px;
		letter-spacing: 0.2em;
		font-weight: 500;
	}
	
	.sec13Cont02{
		text-align: center;
	}

	.topBtn{
		position: fixed;
		top:calc(50% - 37px);
		right: 0;
		box-shadow: 0 0 10px 3px rgba(0 0 0 / 20%);
		border-radius: 10px 0 0 10px;
		height: 150px;
		width: 50px;
		background: var(--color_btn_reserve_bg);
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		transition: 1s;
	}
	
	.topBtn.none{
		right: -80px;
	}
	
	.topBtn a{
		text-decoration: none;
		font-size: 16px;
		letter-spacing: 0.1em;
		color: var(--color_btn_reserve_text);
		font-weight: bold;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}
	
	.topBtn a img{
		display: inline-block;
		margin-bottom: 10px;
	}



	
	footer{
		text-align: center;
		padding: 10px 0;
		background: var(--color_footer);
		color: var(--color_footer_text);
		font-size: 12px;
	}


/* add  */

/* のちほど削除 */
/*
sec01Title
sec01Text
sec02Title
sec06List
*/

figure{
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*#wraper .meatup-block-fullWide__inner {
	max-width: 1000px;
}*/

.meatup-block-fullWide__inner .sec01Title{
		color:#ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		font-size: 30px;
		letter-spacing: 0.02em;
}

.meatup-block-fullWide__inner .sec01Text{
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		font-style: italic;
}

.meatup-block-fullWide__inner .sec02Title{
		font-size: 24px;
		line-height: 34px;
		padding-bottom: 20px;
		margin-bottom: 30px;
		border-bottom: 1px solid #006fb0;
		font-weight: 500;
}

.meatup-block-fullWide__inner .sec06List{
		padding: 0;
}

.meatup-block-fullWide__inner .sec06List p{
	margin: 0;
	line-height: initial;
	font-size: inherit;
}

.meatup-block-fullWide__inner .is-style-section_ttl.-org{
	font-family: 'ADAM.CG PRO', sans-serif;
	position: relative;
	padding-left: 35px;
	margin-bottom: 0;
	font-size: 48px;
	color:#006fb0;
	line-height: 1.25em;
}

.meatup-block-fullWide__inner .is-style-section_ttl.-org:before{
    position: absolute;
    top: 0.5em;
    left: -1000px;
    width: 1000px;
    height: 2px;
    background-color: #006fb0;
    content: "";
}

.meatup-block-fullWide__inner .is-style-section_ttl.-org small{	
	font-weight: bold;
	font-size: 15.5px;
	margin-bottom: 55px;
	letter-spacing: 0.02em;
	display: block;
	color:#333333;
	line-height: 1em;
}

.meatup-block-fullWide__inner .is-style-section_ttl.-org.-white small
{
	color: #fff;
}

@media (max-width: 750px){
	.meatup-block-fullWide__inner .sec01Title{
    font-size: 16.5px;
	}
	.meatup-block-fullWide__inner .sec01Text{
		font-size: 15px;
	}
}

@media (max-width: 750px){
	.service_content img{
		width: 100%;
	}
}

/*.course_content .meatup-block-fullWide__inner, .contact_content .meatup-block-fullWide__inner, .map_content .meatup-block-fullWide__inner {
	max-width: 1000px;
}*/
.main_content .meatup-block-fullWide__inner {
	max-width: 1000px;
}
@media (max-width: 750px){
	.main_content .meatup-block-fullWide__inner {
    max-width: 90%;
	}
}

.wp-block-group__inner-container p.sec11BoxTitle{
		font-size:26px;
		font-weight: bold;
		margin-bottom: 50px;	
}

.meatup-block-fullWide__inner .sec12TableWrap{
	padding-left: 0px;
}

.meatup-block-fullWide__inner .sec12Text{
	font-size:20px;
	font-weight: bold;
	color:#000000;
	margin-bottom: 10px;
	padding-left: 0px;
}

.meatup-block-fullWide__inner .sec13Cont01--Text01{
	font-size: 26px;
	font-family: 'ADAM.CG PRO', sans-serif;	
	margin: 0;
	line-height: initial;
}

.meatup-block-fullWide__inner .sec13Cont01--Text02{
	font-size: 15.5px;
	letter-spacing: 0.2em;
	font-weight: 500;
	margin: 0;
	line-height: initial;
}

/* end add 