@charset "UTF-8";

/* YUI reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td{
	padding:0;
	margin:0;
}
table{
	border-collapse: collapse;
	border-spacing:0;
}
fieldset,img{
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var{
	font-weight:normal;
	font-style:normal;
}
ol,ul li{
	list-style:none;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-weight:normal;
	font-size:100%;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}


html {
    height: 100%;
}


@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 100;
    src: url('../font/NotoSansCJKjp-Thin.woff') format('woff'), /* Modern Browsers */
    url('../font/NotoSansCJKjp-Thin.ttf')  format('truetype'); /* Safari, Android, iOS */
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 200;
    src: url('../font/NotoSansCJKjp-Light.woff') format('woff'),
    url('../font/NotoSansCJKjp-Light.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 300;
    src: url('../font/NotoSansCJKjp-DemiLight.woff') format('woff'),
    url('../font/NotoSansCJKjp-DemiLight.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 400;
    src: url('../font/NotoSansCJKjp-Regular.woff') format('woff'),
    url('../font/NotoSansCJKjp-Regular.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 500;
    src: url('../font/NotoSansCJKjp-Medium.woff') format('woff'),
    url('../font/NotoSansCJKjp-Medium.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 700;
    src: url('../font/NotoSansCJKjp-Bold.woff') format('woff'),
    url('../font/NotoSansCJKjp-Bold.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 900;
    src: url('../font/NotoSansCJKjp-Black.woff') format('woff'),
    url('../font/NotoSansCJKjp-Black.ttf')  format('truetype');
}

body {
	
	font-family:
	"Noto Sans CJKjp", "Noto Sans", sans-serif;
	-webkit-text-size-adjust: none;
	
	
	/*overflow-x: hidden;*/
	
	/*font-family:
	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	
	/*font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;*/
	
	background-color: #fff;
}



a {
	color: #193185;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.mt40 {
	margin-top: 40px;
}
.mt30 {
	margin-top: 30px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb60 {
	padding-bottom: 60px;
}



.nb {
	display:inline-block;
}


#wrapper {/*はみ出す要素がある場合、bodyにoverflow: hiddenしても、スマホサイズで適用されない場合あり。全ての要素を囲むdivを置いてそれにoverflow: hiddenするのが吉。*/
	/*position: relative;
	overflow: hidden;*//*ページトップへボタンにposition: sticky;を使いたいため、overflow: hidden;をオフにした。*/
}
#wrapper_ot {/*はみ出す要素がある場合、bodyにoverflow: hiddenしても、スマホサイズで適用されない場合あり。全ての要素を囲むdivを置いてそれにoverflow: hiddenするのが吉。*/
	/*position: relative;
	overflow: hidden;*//*ページトップへボタンにposition: sticky;を使いたいため、overflow: hidden;をオフにした。*/
	/*padding: 100px 0 0;*/
	background-color: rgba(250,250,250,1);
	font-weight: 300;
	display: flex;/*display: flex flex-flow: column; min-height: 100vh;そしてmainにflex: 1;を記述。コンテンツ量が少ない時にフッターの下に余白ができてしまうのを防ぐのに良い。*/
	flex-flow: column;
	min-height: 100vh;
}
#wrapper_ot main {
	flex: 1;
	margin: 0;
}



/* ########### 361px以上 ########### */
@media (min-width: 361px) {

}

/* ########### 500px以上 ########### */
@media (min-width: 500px) {

}
/* ########### 700px以上 ########### */
@media (min-width: 700px) {

}

/* ########### 750px以下 ########### */
@media (max-width: 750px) {

}


/* ヘッダー帯部分
----------------------------*/

header {
	/*position: fixed;
	top: 0;
	left: 0;
	z-index: 100;*/
	width: 100%;
}


#container_h,
#container_h_ot {
	position: relative;
	width: 100%;/*max-width: 1600px;*/
	margin: 0 auto;
	/*padding:  20px;*/
	/*line-height: 0;*/
	display: flex;
	justify-content: space-between;
	/*background-color: rgba(255,0,0,0.5);*/
}


.hder_ot {
	background: rgba(255,255,255,1);
	/*border-bottom: 1px #d8d8d8 solid;*/
}


#container_h .c_logo,
#container_h_ot .c_logo {
	position: relative;
	width: 500px;
	padding: 65px 20px;
	background-color: #fff;
}
#container_h .c_logo img,
#container_h_ot .c_logo img {
    max-width: 350px;
	position: absolute;
	top: 0;
	bottom: 0;
	right:0 ;
	left: 0;
	margin: auto;
	padding: 0;
}

#container_h .contact,
#container_h_ot .contact {
    display: flex;
	align-items: center;
}
#container_h .contact nav#pc,
#container_h_ot .contact nav#pc {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-right: 30px;
}
#container_h .contact nav#pc ul,
#container_h_ot .contact nav#pc ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
    gap: 6px;
	/*margin-right: 20px;*/
}
#container_h .contact nav#pc ul li,
#container_h_ot .contact nav#pc ul li {
	font-size: 16px;
	color: #000;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#container_h .contact nav#pc ul li a,
#container_h_ot .contact nav#pc ul li a {
    color: #000;
	padding: 6px;
    border-radius: 9999px;
    background-image: linear-gradient(#cbd9fc, #cbd9fc);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 100%;
    transition: background-size 0.3s;
}
@media (any-hover: hover) {
#container_h .contact nav#pc ul li a:hover,
#container_h_ot .contact nav#pc ul li a:hover {
	background-position: bottom left;
    background-size: 100% 100%;
}
}



/* ########### 1200px以下 ########### */
@media (max-width: 1200px) {
#container_h .contact nav#pc ul,
#container_h_ot .contact nav#pc ul {
	margin-right: 0.5vw;
}
}


/* ########### 930px以下 ########### */
@media (max-width: 930px) {

#container_h .contact nav#pc,
#container_h_ot .contact nav#pc {
	display: none;
}

}

/* ########### 750px以下 ########### */
@media (max-width: 750px) {

}

/* ########### 610px以下 ########### */
@media (max-width: 610px) {
#container_h .c_logo,
#container_h_ot .c_logo {
	width: 200px;
	padding: 50px 0;
}
#container_h .c_logo img,
#container_h_ot .c_logo img {
	max-width: 145px;
	padding: 0 5px;
}
#container_h .contact,
#container_h_ot .contact {
	width: 50%;
}

}


/* ドロワーメニューとドロワーコンテンツ
----------------------------------------------- */
/* ########### 931px以上 ########### */
@media (min-width: 931px) {
.m_btn {
	display: none;
}
}



.m_btn {
	    position: fixed;/*absolute*/
		top: 40px;
	    /*bottom: 0;
	    margin: auto;*/
		right: 40px;
		line-height: 0;
		width: 50px;
		height: 50px;
        z-index: 100;
		/*background: #C26ACF;*/
	}

/* ########### 610px以下 ########### */
@media (max-width: 610px) {
.m_btn {
	    position: fixed;/*absolute*/
		top: 25px;
	    /*bottom: 0;
	    margin: auto;*/
		right: 40px;
		line-height: 0;
		width: 50px;
		height: 50px;
		/*background: #C26ACF;*/
	}
}


	/*チェックボックス自体は非表示に*/
	#drawer-checkbox {
		display: none;
	}
	
	/*ハンバーガーメニュー部分。cursor:pointerで指に変わるように*/
	#drawer-icon {
		cursor: pointer;
		display: inline-block;
		position: relative;
		width: 50px;
        height: 44px;
		/*background: #338DB4;*/
	}
    
#drawer-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
}
#drawer-icon, #drawer-icon span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}
#drawer-icon span:nth-of-type(1) {
  top: 0;
}
#drawer-icon span:nth-of-type(2) {
  top: 20px;
}
#drawer-icon span:nth-of-type(3) {
  bottom: 0;
}

	
	/*以下のdrawer-checkbox:checkedは、メニューボタンクリック時にバツ印変形するアニメ。今回は省略。
	
	#drawer-checkbox:checked ~ #drawer-icon span {
		background: rgba(51, 51, 51, 0);
	}
	
	#drawer-checkbox:checked ~ #drawer-icon span::before,
	#drawer-checkbox:checked ~ #drawer-icon span::after {
		content: "";
		display: block;
		height: 100%;
		left: 50%;
		margin: -6% 0 0 -42%;
		position: absolute;
		top: 50%;
		width: 100%;
	}
	
	#drawer-checkbox:checked ~ #drawer-icon span::before {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	#drawer-checkbox:checked ~ #drawer-icon span::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	*/
	
	/*ドロワーとして出てくる部分*/
	#drawer-content {
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 40;
		width: 400px;/*250px ドロワー部分の幅。*/
		max-width: 100%;/* ←ドロワー右端が常にちょっと空きができるようにする為の記述。空けない時は100% お好みで。*/
		height: 100%;
		background: rgba(51, 133, 255, 1.0);/*rgba(59, 105, 138, 0.8)*/
		transition: all 0.3s ease-in-out 0s;
		transform: translateX(100%);/*左から出てくるようにする場合は(-100%)にする。*/
		padding: 10px;
	}
	
	#drawer-checkbox:checked ~ #drawer-content {
		transform: translateX(0);
		box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
	}
	
	
	#drawer-close {/*閉じるボタン以外のエリアをクリックで閉じれるように z-indexで可能にしている*/
		display: none;
		position: fixed;
		z-index: 39;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0;
		transition: all 0.3s ease-in-out 0s;
	}
	
	#drawer-checkbox:checked ~ #drawer-close {
		display: block;
		opacity: 0.3;
	}
	
	
	/*ドロワーで出てくる部分内にある、閉じるバツ印*/
	
	.cl_btn_wrap {
		position: relative;
		height: 100px;
		/*background: #DB6466;*/
	}
	
	.cl_btn {
		display: inline-block;
		width: 60px;
		height: 60px;
		position: absolute;/*relative*/
		/*border: 1px solid rgba(0,0,0,.1);*/
		cursor: pointer;
        top: 30px;
		right: 30px;
	}
	
	.cl_btn span::before,
	.cl_btn span::after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 84%;
		height: 6%;/*棒の太さ 16%*/
		margin: -8% 0 0 -42%;
		background: #fff;
	}
	
	.cl_btn span::before {
		transform: rotate(-45deg);
	}
	
	.cl_btn span::after {
		transform: rotate(45deg);
	}
		

	#drawer-content div.nav_wrap {
		max-width: 300px;
		margin: 10px auto 30px;
		/*background: #E3D769;*/
	}
	
	#drawer-content div.nav_wrap a {
		color: #fff;
	}
	
	
	#drawer-content div.nav_wrap ul.dl {
		margin: 0 0 0 10%;
		width: 60%;
		/*background: #D8A760;*/
	}
	
	#drawer-content div.nav_wrap ul li {
        font-size: 18px;
        line-height: 50px;
        font-family: "M PLUS 1p", sans-serif;
        font-weight: 400;
        font-style: normal;
	}
	
	#drawer-content div.nav_wrap ul li.line_a,li.line_b,li.line_c {
		position: relative;
	}

	/*
	#drawer-content div.nav_wrap ul li.line_a::before {
		content: '';
		position: absolute;
		top: 50%;
		left: -18%;
		width: 12%;
		height: 100%;
		border-top: solid 1px #fff;
		border-left: solid 1px #fff;
	}
	
	#drawer-content div.nav_wrap ul li.line_b::before {
		content: '';
		position: absolute;
		top: 50%;
		left: -18%;
		width: 12%;
		border-top: solid 1px #fff;
	}
	
	#drawer-content div.nav_wrap ul li.line_c::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 16%;
		width: 26%;
		border-top: solid 1px #fff;
	}
	*/
    #drawer-content div.nav_ot {
		max-width: 300px;
		margin: 0 auto;
		border: solid 1px #fff;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		border-radius: 30px;
	}
	
	#drawer-content div.nav_ot a {
		color: #fff;
		display: block;
		padding: 10px;
	}


/* パンくずリスト b_crumb
----------------------------------------------- */

#b_crumb {
	padding: 10px 20px;
    /*background-color: rgba(205,204,204,.5);*/
}
#b_crumb nav {
    max-width: 1000px;
    margin: 0 auto;
}
#b_crumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

#b_crumb .breadcrumb li {
    font-size: 14px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#b_crumb .breadcrumb li a {
    color: #000;
}
@media (any-hover: hover) {
#b_crumb .breadcrumb li a:hover {
    text-decoration: underline;
}
}
#b_crumb .breadcrumb li:not(:last-of-type)::after {
    content: ">";
    margin: 0 .3em; /* 記号の左右の余白 */
    color: #777; /* 記号の色 */
}



/* ヒーローイメージ・タイトル
----------------------------*/
.effect-fade {
　opacity : 0;
　transform : translate(0, 45px);
　transition : all 300ms;
}
div.top_hero_wrap {
	/*height: 1500px;*/
	width: 100%;
}

/*
トップページのスライダーコンテンツ（swiper使用）____________*/
#main_box {
	position: relative;
	margin: 0 auto;
	/*max-width: 1920px;*/
	/*height: 750px;*/
	/*background-color: rgba(51,112,121,0.3);*/
	overflow: hidden;
}
#main_box .inner_box {
	position: relative;
	/*max-width: 1920px;*/
	/*height: 40vw;*/
	line-height: 0;
	/*background-color: rgba(206,161,0,0.5);*/
}
#main_box .inner_box img {
	/*position: absolute;*/
	width: 100%;
}






/* 新着情報 info
----------------------------------------------- */

#info {
	padding: 20px;
	background: #3388FF;
    background: linear-gradient(90deg,rgba(51, 136, 255, 1) 0%, rgba(45, 106, 222, 1) 100%);
}

#info .info_wrap {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	/*background-color: rgba(205,204,204,.5);*/
	
}
#info .info_tit {
	flex-basis: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#info .info_tit p {
	text-align: center;
	font-size: 20px;
	color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#info .info_tit p span {
	font-size: 13px;
}
#info ul.info_box {
	flex-basis: 65%;
	border-left: 1px solid #fff;
	padding: 20px;
}
#info ul.info_box li {
	font-size: 16px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
	transition: all .3s;
}
#info ul.info_box li time {
	padding-right: 2rem;
}
@media (any-hover: hover) {
#info ul.info_box li:hover {
	background-color: #0042DB;
}
}
#info .info_box a {
	display: flex;
	color: #fff;
	padding: 5px 10px;
}
#info .info_to_list {
	flex-basis: 15%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
#info .info_to_list p {
	display: inline-block;
	font-size: 16px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
	padding: 5px 20px;
	background-color: #fff;
	border-radius: 9999px;
}
#info .info_to_list a {
	color: #3388FF;
}

#sub_read p span {
	display:inline-block;
}


/* ########### 820px以下 ########### */
@media (max-width: 820px) {
#info .info_wrap {
	display: block;
}
#info .info_tit br.a_terms {
	display: none;
}
#info ul.info_box {
	border-left: none;
}
#info .info_to_list p {
	padding: 5px 40px;
}
}
/* ########### 600px以下 ########### */
@media (max-width: 600px) {
#info ul.info_box {
	padding: 10px 0;
}	
}
/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#info ul.info_box li {
	padding: 5px;
	font-size: calc(14px + 2 * (100vw - 320px)/500);/*500px〜320px間・16px〜14pxまで可変*/
}
#info .info_box a {
	display: block;
	padding: 5px 0;
}
}




/* イントロ　intro
----------------------------------------------- */
#intro {
    padding: 0 0 60px;
}

#intro img {
	width: 100%;
}

#intro .con_wrap {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 30px 0;
	/*background: rgba(112,226,249,0.3);*/
}

#intro .container_1 {
    max-width: 800px;
	margin: 0 auto;
    padding-bottom: 50px;
}
#intro p {
	font-size: 18px;
	line-height: 1.75;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    /*background: rgba(112,226,249,0.3);*/
}
#intro .container_2 {
    display: flex;
    justify-content: space-around;
}
#intro .container_2 .box {
    flex-basis: 46%;
}
#intro .container_2 .box img {
    border-radius: 20px;
}


/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#intro {
    padding: 0 0 30px;
}
#intro .con_wrap {
	padding: 40px 20px 0;
}
#intro p {
    font-size: calc(16px + 2 * (100vw - 320px)/180);/*500px〜320px間・18px〜16pxまで可変*/
}
#intro .container_2 {
    display: block;
}
#intro .container_2 .box {
    margin: 0 auto;
    width: 96%;
    padding-bottom: 20px;
}
}

/* 受講コース・料金　course
----------------------------------------------- */

#course {
	position: relative;
    padding: 0 20px 60px;
}

#course img {
	width: 100%;
}
#course .heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 10px 60px;
    background-color: rgba(217,230,242,1);
    border-radius: 9999px;
}
#course .heading h2 {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course .con_wrap {
    display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 30px 0;
	/*background: rgba(112,226,249,0.1);*/
}
#course .con_wrap2 {
    display: flex;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 30px;
	/*background: rgba(112,226,249,0.1);*/
}
#course .con_box {
    /*text-align: center;*/
    outline: 1px #B6B6B6 solid;
    /*border: 1px #B6B6B6 solid;*/
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
}
#course .con_box.base1 {
    flex-basis: 20%;
}
#course .con_box.base2 {
    flex-basis: 60%;
}
#course .con_box.base3 {
    flex-basis: 20%;
}
#course .con_box .hdr {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 1px #B6B6B6 solid;
    font-size: 18px;
    /*padding: 20px;*/
    background-color: #E1E1E1;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course .con_box .hdr2 {
    max-width: 260px;
    margin: 20px auto 0;
    height: 40px;
    border-radius: 999px;
    display: none;    
    justify-content: center;
    align-items: center;
    /*outline: 1px #B6B6B6 solid;*/
    font-size: 18px;
    /*padding: 20px;*/
    background-color: #E1E1E1;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course .con_box .hdr.adj {
    padding-left: 10%;
}
#course .con_box .cell,
#course .con_box .cell_T {
    padding: 20px 0;
    /*min-height: 80%;*/
    display: flex;
    justify-content: center;
    align-items: center;
}
#course .con_box .hgt1 {
    min-height: 80%;
}
#course .con_box .hgt2 {
    min-height: 100%;
}
#course .con_box .hgt3 {
    min-height: 100%;
}
#course .con_box .hgt4 {
    min-height: 45%;
}
#course .con_box .nomal {
    padding: 20px;
    min-height: 100px;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.5;
}
#course .con_box .cell_T p {
    font-size: 18px;
    text-align: center;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course .con_box .cell p {
    font-size: 18px;
    text-align: center;
}
#course .con_box .cell p span {
    font-size: 12px;
}
#course .sub_txt {
    max-width: 1000px;
    margin: 10px auto 0;
    padding: 0 30px;
    font-size: 15px;
    line-height: 1.5;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#course .txt_ind {
    padding-left: 1em;
    text-indent: -1em;
}

/* ########### 710px以下 ########### */
@media (max-width: 710px) {
#course .con_wrap {
    flex-direction: column;
}
#course .con_wrap2 {
    flex-direction: column;
    padding: 20px 30px 0;
}
#course .con_box .hdr {
    max-width: 260px;
    margin: 20px auto 0;
    height: 40px;
    border-radius: 999px;
    outline: none;
}
#course .con_box .hdr2 {
    display: flex;
}
#course .con_box .hdr.adj {
    padding-left: 15px;
}
#course .con_box .hdr.hide {
    display: none;
}
#course .con_box .cell p {
    display: flex;
    align-items: center;
}
#course .con_box .cell p br.b_terms {
    display: none;
}
#course .con_box .cell p span {
    padding-left: 10px;
}
}
/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#course .heading {
    padding: 10px 10px 10px 10vw;
}
#course .heading h2 {
    font-size: calc(20px + 4 * (100vw - 320px)/180);/*500px〜320px間・18px〜16pxまで可変*/
}
#course .con_wrap {
	padding: 30px 0 0;
}
#course .con_wrap2 {
	padding: 30px 0 0;
}
#course .sub_txt {
    padding: 0 10px;
}
}


/* 技能講習の流れ　course_flow
----------------------------------------------- */
#course_flow {
	position: relative;
    padding: 0 20px 60px;
}

#course_flow img {
	width: 100%;
}
#course_flow .heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 10px 60px;
    background-color: rgba(217,230,242,1);
    border-radius: 9999px;
}
#course_flow .heading h2 {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course_flow .con_wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 30px 0;
	/*background: rgba(112,226,249,0.1);*/
}
#course_flow .con_wrap h3 {
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course_flow .con_wrap p {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.5;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#course_flow .con_wrap .txt_ind {
    padding-left: 1em;
    text-indent: -1em;
}
#course_flow .con_wrap_B {
	margin: 30px 0 0;
}
#course_flow .con_wrap_B a {
    display: block;
	max-width: 400px;
	margin: 0 auto;
	padding: 20px 20px 20px 36px;
    color: #000;
    border-radius: 20px;
	transition: all 0.3s 0s ease;
}
@media (any-hover: hover) {
#course_flow .con_wrap_B a:hover {
	background-color: #D1E4FF;
}
}
#course_flow .con_wrap_B p {
    position: relative;
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#course_flow .con_wrap_B p:before {
	content: "";
	position: absolute;
	top: 0;
    bottom: 0;
    margin: auto;
	left: -30px;
	width: 52px;
	height: 52px;
	background: url("../img/clock.svg") no-repeat;
	background-size: 100%;
}
#course_flow .con_wrap_B p:after {
	content: "";
	position: absolute;
	top: 0;
    bottom: 0;
    margin: auto;
	right: -10px;
	width: 26px;
	height: 22px;
	background: url("../img/arrow.svg") no-repeat;
	background-size: 100%;
}
#course_flow .con_box {
    margin: 20px 0;
    padding: 10px 30px 15px;
}
#course_flow .con_box ul {
    margin: 0 auto;
    max-width: 620px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 20px;
}
#course_flow .con_box li {
    margin: 5px 0 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#course_flow .con_box li:first-child {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course_flow .con_box li.space {
    margin-right: 10px;
}
#course_flow .con_box li.study {
    padding: 5px 40px;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    background-color: #3380FF;
}
#course_flow .con_box li.practical {
    padding: 5px 40px;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    background-color: #BB33FF;
}
#course_flow .con_box li.exam {
    font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#course_flow .con_box li.license_issued {
    font-size: 18px;
    padding: 0 20px;
    background-color: rgba(241,255,8,1.00);
}

#course_flow .c-1 {
    background-color: #C0D2E6;
    border-radius: 10px;
}
#course_flow .c-2 {
    background-color: #C0BDE6;
    border-radius: 10px;
}

/* ########### 768px以下 ########### */
@media (max-width: 768px) {
#course_flow .con_box li.license_issued {
    margin: 5px 0 0;
    width: 100%;
    text-align: center;
}
}
/* ########### 610px以下 ########### */
@media (max-width: 610px) {
#course_flow .con_box li.exam {
    width: 100%;
    text-align: center;
}
}
/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#course_flow .heading {
    padding: 10px 10px 10px 10vw;
}
#course_flow .heading h2 {
    font-size: calc(20px + 4 * (100vw - 320px)/180);/*500px〜320px間・18px〜16pxまで可変*/
}
#course_flow .con_wrap {
	padding: 40px 0 0;
}
}
/* ########### 420px以下 ########### */
@media (max-width: 420px) {
#course_flow .con_box li.exam {
    width: initial;
}
#course_flow .con_box li.study {
    font-size: 16px;
    width: 100%;
    text-align: center;
}
#course_flow .con_box li.practical {
    font-size: 16px;
    width: 100%;
    text-align: center;
}
#course_flow .con_wrap_B p {
    font-size: calc(20px + 10 * (100vw - 320px)/100);/*420px〜320px間・30px〜20pxまで可変*/
}
#course_flow .con_wrap_B p:before {
	width: 44px;
	height: 44px;
}
}


/* 講習予定表　calendar
----------------------------------------------- */

#calendar {
	position: relative;
    padding: 0 20px 60px;
}

#calendar img {
	width: 100%;
}
#calendar .heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 10px 60px;
    background-color: rgba(217,230,242,1);
    border-radius: 9999px;
}
#calendar .heading h2 {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#calendar .con_wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 30px 0;
}
#calendar ul {
	max-width: 600px;
	margin: 0 auto;
    display: flex;
}
#calendar li.cdr_img {
    flex-basis: 40%;
    padding: 0 40px 0 0;
}
#calendar li.cdr_btn_wrap {
    flex-basis: 60%;
    display: flex;
    align-items: center;
}
#calendar .cdr_btn {
    position: relative;
	width: 100%;
    border: 1px solid #BBB;
}
#calendar .cdr_btn p {
    max-width: 260px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.5;
    /*text-align: center;*/
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: space-around;
}
#calendar .cdr_btn p img {
    width: 26px;
}
/*#calendar .cdr_btn p:after {
	content: "";
	position: absolute;
	top: 0;
    bottom: 0;
    margin: auto;
	right: 50px;
	width: 26px;
	height: 22px;
	background: url("../img/arrow.svg") no-repeat;
	background-size: 100%;
}*/
#calendar .cdr_btn a {
    display: block;
    padding: 20px 0;
    color: #000;
	transition: all 0.3s 0s ease;
}
@media (any-hover: hover) {
#calendar .cdr_btn a:hover {
	background-color: #D1E4FF;
}
}

/* ########### 610px以下 ########### */
@media (max-width: 610px) {
#calendar .cdr_btn p {
    font-size: calc(20px + 10 * (100vw - 320px)/290);/*610px〜320px間・30px〜20pxまで可変*/
}
}
/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#calendar .heading {
    padding: 10px 10px 10px 10vw;
}
#calendar .heading h2 {
    font-size: calc(20px + 4 * (100vw - 320px)/180);/*500px〜320px間・18px〜16pxまで可変*/
}
#calendar .con_wrap {
	padding: 40px 0 0;
}
#calendar li.cdr_img {
    padding: 0 20px 0 0;
}
}


/* 申込方法　how_to_apply
----------------------------------------------- */

#how_to_apply {
	position: relative;
    padding: 0 20px 60px;
}

#how_to_apply img {
	width: 100%;
}
#how_to_apply .heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 10px 60px;
    background-color: rgba(217,230,242,1);
    border-radius: 9999px;
}
#how_to_apply .heading h2 {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#how_to_apply .con_wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 0 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    /*background: rgba(112,226,249,0.3);*/
}
#how_to_apply .con_wrap .row {
	font-size: 16px;
    line-height: 1.5;
    padding-left: 2rem;
    text-indent: -2rem;
}
#how_to_apply .con_wrap .row2 {
	font-size: 16px;
    line-height: 1.5;
    padding-left: 1.25rem;
    text-indent: -1.25rem;
}
#how_to_apply .con_wrap .row a {
    text-decoration: underline;
}
#how_to_apply .con_wrap .no_ind p.sub_tit,
#how_to_apply .con_wrap .no_ind p.sub_tit_L {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#how_to_apply .con_wrap .no_ind p.sub_tit span {
    margin: 5px 0 0 10px;
    font-size: 16px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
#how_to_apply .con_wrap .no_ind p.d_number {
    font-size: 44px;
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#how_to_apply .con_wrap .no_ind p a {
    color: #000;
}
#how_to_apply .con_wrap .no_ind p.d_number span {
    margin: 5px 0 0 30px;
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}
#how_to_apply .con_wrap .no_ind p.d_number span.adj {
    margin: 5px 0 0 0;
}
#how_to_apply .con_wrap .no_ind p.box {
    padding: 20px 30px;
    font-size: 16px;
    line-height: 1.75;
    background-color: #E1E1E1;
}
#how_to_apply .cdr_btn {
	max-width: 400px;
    margin: 0 0 0 auto;
    border: 1px solid #BBB;
}
#how_to_apply .cdr_btn p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.5;
    /*text-align: center;*/
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: space-around;
}
#how_to_apply .cdr_btn p img {
    width: 26px;
}
#how_to_apply .cdr_btn a {
    display: block;
    padding: 20px 0;
    color: #000;
	transition: all 0.3s 0s ease;
}
@media (any-hover: hover) {
#how_to_apply .cdr_btn a:hover {
	background-color: #D1E4FF;
}
}
#how_to_apply .con_wrap .no_ind .course p {
    font-size: 16px;
    line-height: 1.75;
}
#how_to_apply .con_wrap .no_ind .course p.c_name {
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}


/* ########### 720px以下 ########### */
@media (max-width: 720px) {
#how_to_apply .con_wrap .no_ind p.d_number {
    flex-direction: column;
}
}
/* ########### 600px以下 ########### */
@media (max-width: 600px) {
#how_to_apply .cdr_btn {
    margin: 0 auto;
}
}
/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#how_to_apply .heading {
    padding: 10px 10px 10px 10vw;
}
#how_to_apply .heading h2 {
    font-size: calc(20px + 4 * (100vw - 320px)/180);/*500px〜320px間・18px〜16pxまで可変*/
}
#how_to_apply .con_wrap {
	padding: 40px 0 0;
}
}
/* ########### 445px以下 ########### */
@media (max-width: 445px) {
#how_to_apply .con_wrap .no_ind p.d_number span {
    margin: 5px 0 0 0;
}
}
/* ########### 420px以下 ########### */
@media (max-width: 420px) {
#how_to_apply .con_wrap .no_ind p.sub_tit_L {
    justify-content: center;    
}
#how_to_apply .con_wrap .no_ind p.sub_tit_L,
#how_to_apply .con_wrap .no_ind p.sub_tit {
    font-size: calc(21px + 3 * (100vw - 320px)/100);/*420px〜320px間・24px〜21pxまで可変*/
}
#how_to_apply .cdr_btn p {
    font-size: calc(20px + 4 * (100vw - 320px)/100);/*420px〜320px間・24px〜20pxまで可変*/
}
}
/* ########### 338px以下 ########### */
@media (max-width: 338px) {
#how_to_apply .con_wrap .no_ind p.d_number {
    font-size: calc(40px + 4 * (100vw - 320px)/18);/*338px〜320px間・44px〜40pxまで可変*/
    font-size: 40px;
}
}



/* アクセス　access
----------------------------------------------- */

#access {
	position: relative;
    padding: 0 20px 60px;
}

#access img {
	width: 100%;
}
#access a {
	color: #000;
}
#access .c-1 {
    color: #AB272D;
}
#access .c-2 {
    color: #D5D5D5;
}
#access .heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 10px 60px;
    background-color: rgba(217,230,242,1);
    border-radius: 9999px;
}
#access .heading h2 {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#access .con_wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 0 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    /*background: rgba(112,226,249,0.3);*/
}
#access .con_wrap2 {
	max-width: 1000px;
	margin: 0 auto;
}
#access .row {
    padding-left: 2rem;
    text-indent: -2rem;
}
#access .row2 {
    padding-left: 1rem;
    text-indent: -1rem;
}
#access .row3 {
    padding-left: 1.6rem;
    text-indent: -1.6rem;
}
#access .con_wrap .no_ind p {
    font-size: 16px;
    line-height: 1.5;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#access .con_wrap .no_ind p.sub_tit {
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#access .con_wrap .no_ind p.sub_tit_L {
    font-size: 24px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#access .con_wrap .no_ind p.R_number {
    font-size: 18px;
    padding: 0 0 0 2rem;
}
#access .con_wrap2 .g_map {
    position: relative;
    width: 100%;
    padding-top: 400px;
    /* 16:9のアスペクト比 56.25% */
    height: 0;
}
#access .con_wrap2 .g_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#access .con_wrap dl {
    font-size: 18px;
    line-height: 1.5;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
}
#access .con_wrap dt {
    flex-basis: 16%;
    font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#access .con_wrap dd {
    flex-basis: 84%;
}
#access .tit_bus {
    padding: 12px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
#access .tit_bus p {
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#access .guide_map {
    max-width: 800px;
	margin: 0 auto;
	padding: 0 0 40px;
}
#access .guide_map:last-child {
	padding: 0;
}
#access .guide_map ul {
    display: flex;
    gap: 20px;
}
#access .guide_map li {
    flex-basis: 50%;
    padding-left: 10px;
}
#access .guide_map p.sub_tit {
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
}
#access .guide_map p {
    font-size: 16px;
    line-height: 1.75;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: justify;
}

/* ########### 700px以下 ########### */
@media (max-width: 700px) {
#access .guide_map ul {
    display: block;
}
#access .guide_map li {
    padding-left: 0;
}
#access .guide_map img.map {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 30px; 
}
}
/* ########### 640px以下 ########### */
@media (max-width: 640px) {
#access .con_wrap dl {
    display: block;
}
}
/* ########### 500px以下 ########### */
@media (max-width: 500px) {
#access .heading {
    padding: 10px 10px 10px 10vw;
}
#access .heading h2 {
    font-size: calc(20px + 4 * (100vw - 320px)/180);/*500px〜320px間・18px〜16pxまで可変*/
}
#access .con_wrap {
	padding: 40px 0 0;
}
#access .tit_bus p {
    font-size: calc(18px + 6 * (100vw - 320px)/180);/*500px〜320px間・24px〜18pxまで可変*/
}
}



/* お問合せフォーム　contact_form
----------------------------------------------- */




/* お問合せフォーム　および　応募完了ページ　comp.html
----------------------------------------------- */




/* ページ内リンクのアンカー位置設定
----------------------------------------------- */
#anc_course {
	position: absolute;
	top: -20px;
}

#anc_course_flow {
	position: absolute;
	top: -20px;
}

#anc_calendar {
	position: absolute;
	top: -20px;
}

#anc_how_to_apply {
	position: absolute;
	top: -20px;
}

#anc_access {
	position: absolute;
	top: -20px;
}





/* ページトップボタン
----------------------------------------------- */



#page-top {
	/*display: none;*/
	width: 66px;
	height: 40px;/*66px*/
	position: sticky;/*fixed*/
	bottom: 0;/*130px*/
	/*right: 0;*//*50px*/
    margin-left: auto;
	background: #38AAFF;/*#3B698A*/
	/*border: 2px #fff solid;*/
	/*border-radius: 100%;*/
	cursor : pointer;
	z-index: 99;
	/*transition: .3s;*/
}

#page-top::before {
	content: '';
	position: absolute;
	width: 20px;/*25px*/
	height: 20px;/*25px*/
	top: 16px;/*28px*/
	right: 0;
	left: 0;
	margin: auto;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform:rotate(-45deg);
}


/* ########### 600px以下 ########### */
@media (max-width: 600px) {

}

/* アイキャッチ　
----------------------------------------------- */

#eyecatching {
    background-color: #C8DAEE;
}
#eyecatching img {
	width: 100%;
}

#eyecatching .con_wrap {
    max-width: 1800px;
    margin: 0 auto;
    background-image: url("../img/bg_ec.webp?2601221459");
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size: cover;/*cover か contain*/
    background-size: cover;
}
#eyecatching .con_wrap:before {
    content:"";
    display: block;
    padding-top: 11%; /* 高さと幅の比を16:10に固定。10/16*100=62.5 */
}

/* ########### 800px以下 ########### */
@media (max-width: 800px) {
#eyecatching .con_wrap {
    height: 23vw;
}

}

/* 会社概要　セキュリティポリシーのリンク　
----------------------------------------------- */
#at_link {
    text-align: center;
    padding: 10px 7%;
    background-color: rgba(234,244,250,1.00);
}
#at_link p {
    font-size: 16px;
    font-weight: 400;
}
#at_link a {
    color: #000;
}
#at_link a:hover {
    text-decoration: underline;
}
#at_link a span:hover {
    text-decoration: underline;
}

/* ########### 430px以下 ########### */
@media (max-width: 430px) {
#at_link p {
    font-size: 14px;
}
}

/* footer
----------------------------------------------- */

footer img {
	width: 100%;
	vertical-align: top;
}

footer .outer {
    background-color: #0064FF;/*#2e4e6b*/
}

footer .inner {
    position: relative;
	max-width: 1000px;
    margin: 0 auto;
    /*padding: 150px 0 50px;*/
	height: 40px;
}

footer .name {
    max-width: 300px;
    margin: 0 auto;
    color: #fff;
}

footer .copyright {
    padding: 10px 0 0;
    text-align: center;
    color: #fff;
	font-size: 14px;
	font-weight: 300;
}


/* ########### 1040px以下 ########### */
@media (max-width: 1040px) {

}

/* ########### 600px以下 ########### */
@media (max-width: 600px) {
footer .copyright {
	font-size: 75%;
}

}


/* footerのブランドロゴ
----------------------------------------------- */
footer .B_logo {
  background-color: #fff;
}
footer .B_logo .inner {
  max-width: 1240px;
    margin: 0 auto;
    padding: 30px 70px;
    height: inherit;
}
footer .B_logo .tag_add {
  display: flex;
    justify-content: space-between;
}
footer .B_logo img {
  width: 300px;/*300px*/
}
footer .B_logo img.ordinal {
  width: 400px;
}
footer .B_logo img.tgline {
  width: 420px;
}

@media screen and (max-width: 1200px) {/*45thブランドロゴ用*/
footer .B_logo img.ordinal {
  width: 40%;
}
}


@media screen and (min-width: 650px) and (max-width: 959px) {
footer .B_logo img {
  width: 60%;
}
footer .B_logo img.tgline {
  width: 40%;
}
}


@media screen and (max-width: 649px) {
footer .B_logo .inner {
  max-width: 300px;/*ノーマルに戻す場合は200pxにする*/
    padding: 30px 0;
}
footer .B_logo img {
  width: 100%;
}
footer .B_logo img.ordinal {
  width: 100%;
}
footer .B_logo img.tgline {
  display: none;
}
}


