@charset "utf-8";


/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

/* 10px */
body {
  width:100%;
  font-size: 1.7rem;
  color: #000;
  line-height: 2.0;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  width: 100%;
  height: auto;
}


/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link, a:visited {
  color:#3589D7;
  text-decoration: underline;
}

a:hover, a:active{
  color:#7DBBEA;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

p {
  margin-bottom: 1em;
}



.only_pc_none {display:none; }
.only_sp_none {display:block; }
.sp_br{display: none;}


/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.scroll-up.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}
.load-fade {opacity : 0; transition : all 4s/*処理にかかる時間*/;}
.load-up{opacity: 0; transform: translateY(30px)/*スクロールアップする距離*/; transition: all 4s/*処理にかかる時間*/;}
.load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}

/* ボタン */
.btn {
  text-align: center;
}
.btn a {
  min-width:200px;
  display: inline-block;
  padding:0 20px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  border-radius: 30px;
  overflow: hidden;
}
.btn a::before,
.btn a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.btn a,
.btn a::before,
.btn a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn a {
  position: relative;
  z-index: 2;
  background-color: #339EDB;
  border: 3px solid #339EDB;
  color: #fff;
  line-height: 50px;

}
.btn a:hover {
  background-color: #fff;
  border-color: #59b1eb;
  color: #59b1eb;
}
.btn a::before,
.btn a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #339EDB;
}
.btn a::before {
  right: 0;
}
.btn a::after {
  left: 0;
}
.btn a:hover::before,
.btn a:hover::after {
  width: 0;
  background-color: #339EDB;
}

/*---------------------------------------------
 ** ヘッダー記述
---------------------------------------------*/

#header{
  width:98%;
  max-width:1200px;
  height:110px;
  position:relative;
  margin:0 auto;
}
#header h1 a{
  width:50%;
  height:110px;
  max-width:410px;
  display: block;
  overflow: hidden;
  background:url(../img/logo.png) no-repeat top left ;
  background-size:100% auto;
  text-indent: -9999px;
  position:absolute;
  top:30px;
  left:0;
}
#header h2{
  color:#fff;
  font-size:4.0rem;
  height:600px;
  writing-mode: vertical-rl;
  position:absolute;
  top:230px;
  right:40px;
  font-weight: normal;
  text-shadow: #000 1px 0 5px;
  font-family: 'Shin Go Medium';
}


#nav{
  width:60%;
  position:absolute;
  top:60px;
  right:0;
}
#nav ul{
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 95%;
}
#nav ul li a{
  margin-left:0;
  padding:10px 20px;
  position: relative;
}

#nav ul li:nth-child(2) a{
  margin-left:0px;
}

#nav ul li a:link{
  color:#333;
  text-decoration: none!important;
}
#nav ul li a:visited{
  color:#333;
  text-decoration: none!important;
}

#nav ul li a::before {
	content: "";
	width: 0;
	height: 5px;
	background: #339ED6;
	display: block;
	position: absolute;
	top: calc(100% + 0px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .3s;
}
#nav ul li a:hover::before {
	width: 100%;
}


.nav_btn{
  width:350px;
  position:absolute;
  top:-60px;
  right:0;
  display: flex;
  justify-content: space-between;
}
.nav_btn a{
  width:calc(48% - 10px);
  color:#fff;
  display: block;
  text-align: center;
  padding:5px;
}
.nav_btn a:nth-child(1){
  background:#3EBFB2;
}
.nav_btn a:nth-child(2){
  background:#358AD8;
}

.nav_btn a:link, .nav_btn a:visited{
  text-decoration: none!important;
}

@media screen and (max-width: 1220px) {
  #header{
    height:130px;
  }
  #header h1 a{
    top:15px;
  }
  #nav{
    width:100%;
    top:80px;
  }
  .nav_btn{
    top:-85px;
  }
}


/*---------------------------------------------
 ** メイン画像
---------------------------------------------*/

.home #main{
  width:100%;
  background:url(../img/main_top.jpg) no-repeat top center #fff;
  background-size: 100% auto;
  padding:7% 0;
  margin-bottom:5%;
}
.home #main > div{
  width:45%;
  background:rgba(0,153,204,0.5);
  padding:2% 0 3%;
}
.home #main > div div{
  width:580px;
  float:right;
}
.home #main > div::after{
  content:'';
  clear: both;
  display: block;
}
.home #main > div div img{
  width:88%;
  margin:0 auto;
}
.home #main > div div h2{
  width:73%;
  font-size:5.2rem;
  color:#fff;
  margin:0 auto;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1230px) {
  .home #main > div{
    width:55%;
  }
  .home #main > div div{
    width:100%;
    float:right;
  }
  .home #main > div div img{
    width:88%;
    float:right;
    margin-right:6%;
  }
  .home #main div div h2{
    width:auto;
    font-size:4.0rem;
    text-align: left;
    float:right;
    margin-right:12%;
    display: inline-block;
  }
}


/*---------------------------------------------
 ** 共通 コンテンツ
---------------------------------------------*/

#content{
  width:95%;
  max-width:1200px;
  margin:0 auto 100px;
}



/*---------------------------------------------
 ** トップページ
---------------------------------------------*/
.home #content h3{
  font-size:240%;
  font-weight: 700;
  border-left:8px solid #339EDB;
  color:#339EDB;
  padding-left:20px;
  line-height: 1.0;
}
.home #content h3 span{
  font-size:2.0rem;
  color:#000;
  display: block;
  margin-top:20px;
}


.top_flow{
  width:60%;
  margin:0 auto 8%;
  background:url(../img/top_about.png) no-repeat right top;
  background-size:55% auto;
  padding:0 40% 0 0;
}
.top_flow p{
  width:95%;
  padding:5% 5% 5% 0;
  background:#fff;
  margin:0;
}
.top_flow p span{
  display: block;
  color:#339EDB;
  font-size:140%;
  font-weight: bold;
  margin-bottom:5px;
  line-height: 1.4;
}


@media screen and (max-width: 1230px) {
  .top_flow{
    width:65%;
    background:url(../img/top_about.png) no-repeat right top;
    background-size:45% auto;
    padding:5% 35% 0 0;
  }
}



.top_course{
  width: 50%;
  margin:0 auto 8%;
  background:url(../img/top_course.png) no-repeat left top;
  background-size: 47% auto;
  padding: 0 0 0 50%;
}

.top_course h3 + div{
  width:95%;
  padding:5% 0 2% 0;
  margin:0;
}

.top_course ul{
  background:#CFEBF6;
  padding:5% 3%;
  margin-bottom:2%;
}
.top_course ul li{
  list-style: disc;
  margin-left:2em;
  margin-bottom:5px;
}


@media screen and (max-width: 1230px) {
  .top_course{
    width: 65%;
    margin:0 auto 8%;
    background:url(../img/top_course.png) no-repeat left top;
    background-size: 50% auto;
    padding: 7% 0 0 35%;
  }
  #content .top_course h3{
    border-left:0;
    border-right:8px solid #339EDB;
    padding-left:20px;
    padding-right:20px;
    text-align: right;
  }
  .top_course h3 + div{
    width:95%;
    padding:5% 0 5% 5%;
    background:#fff;
  }
}


.top_con{
  width:100%;
  margin:0 auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_con section{
  width:47%;
  margin-bottom:5%;
}

.top_news dl{
  width:100%;
  padding:12px 0;
  border-bottom:1px #999 dotted;
  display:flex
}
.top_news dl dt{
  width:120px;
}

.top_news .btn, .top_movie .btn{
  margin-top:5%;
}
.top_news h3, .top_movie h3{
  margin-bottom:5%;
}

.top_movie iframe{
  width:100%;
  height:340px;
  margin-top:20px;
}
@media screen and (max-width: 1130px) {
  .top_con section{
    width:100%;
  }
  .top_news dl{
    width:95%;
    margin:0 auto;
  }
  .top_news dl dt{
    width:10%;
    padding:0 5%;
  }

  .top_news h3, .top_movie h3{
    margin-bottom:1%;
  }
  .top_movie iframe{
    width:100%;
    height:570px;
  }
}


/*---------------------------------------------
 ** 下層ページ
---------------------------------------------*/
#con_ttl{
  background:url(../img/con_title_bg.jpg) no-repeat center right -100px #d7e9f5;
  background-size:cover;
}
#con_ttl h2{
  width:90%;
  max-width:1200px;
  color:#339EDB;
  font-weight: bold;
  font-size:4.0rem;
  padding:50px 0;
  margin:0 auto 2%;
  text-shadow: 2px 2px 0 rgba(255,255,255,1);
}

#pan{
  width:90%;
  max-width:1200px;
  font-size:90%;
  display: flex;
  flex-wrap: wrap;
  margin:0 auto;
}

#pan ul li{
  list-style: none;
}


#flow h3, #access h3{
  text-align: center;
  font-weight: bold;
  font-size:2.6rem;
  position:relative;
  color:#000;
  padding:2% 0;
  margin-bottom:5%;
}

#flow h3::after, #access h3::after{
  content:'';
  width:100px;
  height:6px;
  background:#339EDB;
  border-radius: 6px;
  display: block;
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  margin: 0 auto;
}

.flow_block{
  max-width:1000px;
  margin:0 auto 5%;
}

.flow_box{
  border:1px solid #339EDB;
  padding:3% 3% 2%;
  position:relative;
  margin-bottom:80px;
}
.flow_box::after{
  content:'';
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  border-width: 34.6px 20px 0 20px;
  border-color: #339EDB transparent transparent transparent;
  position:absolute;
  bottom:-60px;
  right:0;
  left:0;
  margin:0 auto;
}
.flow_block .scroll-fade-row:last-child .flow_box::after{
  border-width:0!important;
}

#flow h4{
  font-weight: bold;
  font-size:120%;
  margin-bottom:20px;
}
#flow h4 span{
  background:#339EDB;
  color:#fff;
  display: inline-block;
  padding:0 20px;
  margin-right:15px;
}
#flow p{
  font-size:95%;
}


.course_box{
  padding:5% 0;
  border-bottom:2px dotted #339EDB;
}

.course_box h3{
  font-size:160%;
  font-weight: bold;
  border-left:8px solid #339EDB;
  padding:5px 0 5px 20px;
  line-height: 1.0;
  margin-bottom:20px;
}

.course_box > div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.course_box > div p{
  width:45%;
}

.course_box > div dl{
  width:50%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content:space-between;
  font-size:95%;
}
.course_box > div dl dt{
  width:14%;
  padding:5px 3%;
  color:#fff;
  background:#339EDB;
  margin-bottom :5px;
  text-align: center;
  line-height: 1.6;
}
.course_box > div dl dd{
  width:77%;
  padding:5px 0 5px 3%;
  margin-bottom :5px;
  line-height: 1.6;
}

.course_entry{
  margin-top:50px;
}

.access_block{
  max-width:1000px;
  margin:0 auto 6%;
}

.access_block iframe {
  width:100%;
  height:400px;
  margin-bottom:1%;
}

.access_block h4{
  font-weight: bold;
  font-size:120%;
}
.access_block p{
  line-height:1.6;
}
.access_img{
  max-width: 1000px;
  margin:0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.access_img dl{
  width:48%;
  margin:3% 0;
}
.access_img dl dt{
  margin-bottom:10px;
}
.access_img dl dd{
  text-align: center;
}



.info_list{
  width:95%;
  max-width:1000px;
  margin:3% auto;
}
.info_list .info_box{
  border-bottom:2px dotted #339EDB;
  padding:2% 3%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.info_list .info_box > div{
  width:70%;
}
.info_list .info_box > div p:nth-child(1){
  font-size:110%;
  font-weight: bold;
  margin-bottom:10px;
}
.info_list .info_box > div p:nth-child(1) span{
  font-size:14px;
  font-weight: normal;
  display: inline-block;
  background:#339EDB;
  color:#fff;
  padding:0 15px;
  margin-bottom:5px;
  margin-right:15px;
}
.info_list .info_box > div p:nth-child(2){
  font-size:90%;
}
.info_list .info_box > a{
  width:25%;
  height:140px;
  overflow: hidden;
  position:relative;
  display: block;
}
.info_list .info_box > a img{
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wp-pagenavi {
	clear: both;
	text-align:center;
  margin:5% auto;
}
.wp-pagenavi .pages{
  border:none!important;
}

.wp-pagenavi a, .wp-pagenavi span {
	color: #000;
	background-color: #FFF;
	border: solid 1px #e0e0d2;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi a:hover{
    color:#FFF;
    background-color:#999;
    border-color:#999;
    }
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #339EDB;
	border-color: #339EDB;
	font-weight: bold;
    }
.info_data{
  width:100%;
  max-width:1000px;
  margin:5% auto;
}

.info_data h3{
  background:#59b1eb;
  padding:1% 0 1% 2%;
  color:#fff;
  font-size:120%;
  margin-bottom:30px;
  line-height: 1.4;
}
.info_data h3 > span{
  padding-left:20px;
  padding-bottom:1%;
  border-left:8px solid #fff;
  display: inline-block;
  font-weight: bold;
}
.info_data h3 > span span{
  font-size:80%;
  font-weight: normal;
}

.info_con{
  width:95%;
  margin:3% auto;
}
.blog-kiji{
  width:95%;
  margin:3% auto;
}
.info_img{
  max-width:95%;
  text-align: center;
  margin:0 auto 30px;
}
.info_img img{
  width:auto;
  max-width:100%;
  margin:0 auto;
}

.info_data h4{
  font-size:110%;
  font-weight: bold;
  margin:5% auto 3%;
  border-left:8px solid #339EDB;
  background:#CFEBF6;
  padding:15px 0 15px 20px;
  line-height: 1.6;
}
.info_data .btn{
  margin-top:5%;
}
.link-docu-box{
  width:95%;
  margin:0 auto 50px;
}

.sch-info{
margin-bottom:20px;
background:#e9f7fb;
  padding:15px 20px;
}

.schedule_block{
  max-width:1000px;
  margin:0 auto;
  padding:5% 0;
}

.schedule_box{
  width:42%;
  border:1px solid #339EDB;
  padding:3% 3% 0;
  position:relative;
  margin-bottom:60px;
}

.schedule_box h3{
  font-size:140%;
  font-weight: bold;
  border-left:8px solid #339EDB;
  padding:5px 0 5px 20px;
  line-height: 1.0;
  margin-bottom:5px;
}
.schedule_box dl{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  /*   border-bottom:2px dotted #339EDB; */
  padding:2% 0;
}
.schedule_box dl:last-of-type{
  border-bottom:0;
}
.schedule_box dl dt{
  width:100%;
  padding:6px 1%;
  margin-right:4%;
  text-align: center;
  background:#339EDB;
  color:#fff;
  font-size:18px;
  line-height:1.4;
}

.schedule_box dl dt span{
font-size:15px;
display:block;
}

.schedule_box dl dd{
  width:100%;
  padding:5px 0;
  line-height:1.5;
}
.nittei{
margin-left:15px;
margin-top:10px;
}

.maru{
display:inline-block;
font-size:10px;
margin-right:5px;
vertical-align:top;
margin-top:5px;
}

.schedule_box dl dd div{
margin-bottom:8px;
}

.schedule_box dl dd p{
font-size:14px;
font-weight:400;
margin:0;
}

.schedule_box dl dd .end{
font-size:14px;
color:#fff;
padding:0.1em 1em;
background:red;
margin-left:10px;
}


.schedule_box .dd_btn{
  display: block;
  position:relative;
}

.schedule_box .dd_btn .btn{
  position:absolute;
  top:-7px;
  right:10px;
}

.faq_block{
  max-width:calc(1000px - 10%);
  margin:5% auto;
  border:1px solid #339EDB;
  border-radius: 20px;
  padding:3% 5%;
}

.q-txt{
background:#339EDB;
color:#fff;
line-height:1.0;
padding:10px 0px 16px 0;
width:2.4em;
text-align:center;
font-weight: bold;
font-size:120%;
}

.a-txt{
background:#F21443;
color:#fff;
line-height:1.0;
padding:10px 0px 16px 0;
width:2.4em;
text-align:center;
font-weight: bold;
font-size:120%;
}

.a-box{
position:relative;
background:#efeae4;
padding:10px;
}

.a-bun p{
margin-left:4em !important;
margin-bottom:10px;
padding-top:5px;
}

.a-txt{
position:absolute;
top:10px;
left:10px;
}

.q-box{
position:relative;
margin-bottom:24px;
}

.q-txt{
position:absolute;
top:0px;
left:0px;
}

.q-bun{
margin-left:4em;
margin-right:50px;
font-size:17px;
padding-top:5px;
}

.accordion-container {
  position: relative;
  cursor: pointer
}

.accordion-container .article-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.accordion-container .article-title:hover,
.accordion-container .article-title:active,
.accordion-container .content-entry.open .article-title {
text-decoration:underline;
}

.accordion-container .article-title:hover i:before,
.accordion-container .article-title:hover i:active,
.accordion-container .content-entry.open i {
  color: #ccc;
}

.article-title{
  position: relative;
}

.article-title:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.article-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  padding-left: 0;
}

#accordion{
margin-bottom:20px;
}

.faq-h{
font-size:22px;
font-weight:700;
padding-bottom:10px;
margin-bottom:30px;
border-bottom:dotted 1px #999;
}

.privacy_block{
  max-width:1100px;
  margin:5% auto;
}
.privacy_box{
  width:95%;
  margin:0 auto 30px;
}
.privacy_block h3{
  background:#59b1eb;
  padding:1% 0 1% 2%;
  color:#fff;
  font-size:120%;
  margin-bottom:30px;
  line-height: 1.6;
}
.privacy_block h3 span{
  padding-left:20px;
  border-left:8px solid #fff;
  display: inline-block;
}
.privacy_block h4{
  font-weight: bold;
}
.privacy_block p{
  font-size: 90%;
  line-height: 1.6;
}
.privacy_block ul{
  margin-bottom:30px;
  margin-left:1%;
}

.privacy_block ul li{
  list-style: disc;
  list-style-position: inside;
  margin-left:2em;
  text-indent: -1.5em;
  line-height: 1.6;
  margin-bottom:5px;
  font-size:90%;
}
.privacy_info h4{
  font-size:110%;
  font-weight: bold;
  margin-bottom:10px;
  border-left:8px solid #339EDB;
  background:#CFEBF6;
  padding:15px 0 15px 20px;
  line-height: 1.6;
}
.text_r{
  text-align: right;
}


.contact h3{
  text-align: center;
  font-weight: bold;
  font-size:2.0rem;
  position:relative;
  color:#000;
  padding:3% 0;
}
.contact_info{
  width:94%;
  max-width:calc(800px - 6%);
  background:#CFEBF6;
  padding:2% 3%;
  margin:0 auto;
}
.contact_info p{
  text-align: center;
}
.contact_info p span{
  font-size:4.5rem;
  font-weight: bold;
  color:#339EDB;
  line-height:1.6;
}

.entry_block{
  max-width:1000px;
  margin:5% auto;
}
.entry_block p{
  margin:2% auto 5%;
}
.entry_block p span{
  color:#ff0000;
}
.dl_btn{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom:30px;
  text-align: center;
  font-size:105%;
}

.dl_btn .btn{
  width:32%;
  position:relative;
  margin-bottom:50px;
}

.dl_btn .btn a{
  display: block;
  line-height: 1.8;
  padding:5% 0;
  border-radius: 10px;
}

.dl_btn .btn:nth-child(1)::after{
  content:'zipデータ（107KB）';
}
.dl_btn .btn:nth-child(2)::after{
  content:'zipデータ（99KB）';
}
.dl_btn .btn:nth-child(3)::after{
  content:'zipデータ（109KB）';
}
.dl_btn .btn::after{
  display: block;
  color:#000;
  font-size:80%;
  position:absolute;
  right:0;
  left:0;
  bottom:-25px;
  margin:0 auto;
  display: block;
  line-height: 1.4;
}

#entry h3{
  text-align: center;
  font-weight: bold;
  font-size:2.6rem;
  position:relative;
  color:#000;
  padding:2% 0;
  margin-bottom:5%;
}
#entry .video{
  text-align: center;
}

#entry .video video{
  width:90%;
  max-width:850px;
  margin:0 auto;
}

#entry h3::after{
  content:'';
  width:100px;
  height:6px;
  background:#339EDB;
  border-radius: 6px;
  display: block;
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  margin: 0 auto;
}


/* フォーム */

.contact_form{
  max-width:800px;
  margin:40px auto;
}

.form_btn{
  text-align: center;
  margin:40px 0;
}
.form_btn .input-btn01, .form_btn .input-btn02{
  margin:0 auto;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.info-txt{
padding:20px;
background:#e5e6e5;
}

.color03{
color:red;
}

.color04{
color:#4ea831;
}



.contact-dl{
font-size:15px;
font-size:1.5rem;
border-bottom:solid 1px #ccc;
padding-top:20px;
padding-bottom:20px;
}

.contact-dl dt{
vertical-align:top;
width:250px;
display:inline-block;
margin-right:20px;
}
.contact-dl dd{
width:500px;
display:inline-block;
vertical-align:top;
}

.radio-span{
display:block;
margin-bottom:10px;
}

.radio-span input{
vertical-align:middle;
margin-right:6px;
}

.komoku{
float:left;
width:175px;
display:inline-block;
margin-top:0em;
}

.must{
font-size:13px !important;
float:right;
display:inline-block;
color:#fff;
background:red;
width:60px;
line-height:1.0;
text-align:center;
padding:0.5em 0;
}

input[type="text"],
input[type="email"],
textarea {
padding: 0.6em;
outline: none;
border: 1px solid #DDD;
font-size: 15px;
background:#eeeeee;
}

.input-box01{
width:100%;
}

.input-box01c{
width:100% !important;
margin-bottom:8px !important;
}

.zip{
width:150px;
border:solid 1px #ccc !important;
padding:7px 6px;
background:#eeeeee;
}

.add-txt{
display:inline-block;
width:9.4em;
}

.ml5{
margin-left:5px;
}

.input-box02{
width:100%;
height:200px;
}

.input-box03{
margin-top:-25px;
}

.input-btn01{
font-size:16px;
display:inline-block;
padding:1.0em 2.0em;
color:#fff;
background-color:rgba(51,158,219,1);
border-radius:6px !important;
}

.input-btn01:hover{
background-color:rgba(51,158,219,0.7);
}

.input-btn02{
font-size:16px;
display:inline-block;
padding:1.0em 2.0em;
color:#fff;
background:#888;
margin-right:30px!important;
border-radius:6px !important;
}

.input-btn02:hover{
background:#ccc;
}

.confirm-p{
font-size:18px;
font-weight:bold;
text-align:center;
padding:20px;
}

.cr02{color:#ff0000;}

/* エラー吹き出し */
.error{
  font-weight:bold;
  display:inline-block;
  position: relative;
  padding: 0.5em 1.5em;
  color:#fff !important;
  border-radius:6px;
  background:red;
  font-size:1.4rem;
  margin-top:12px;
  width:200px;
  text-align:center;
}

.error::before{
  content: '';
  position: absolute;
  left: 64px;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 25px solid red;
  border-left: 15px solid transparent;
}

.input-box01b{
width:5em;
}

.contact-dl select{
border:solid 1px #ccc;
}

.bg-type01{
background:#fbedef;
}

.bg-type02{
background:#f0fcee;
}

.confirm .no-confirm{
display:none;
}

.form-btn{
margin-top:20px;
margin-bottom:40px;
}
.error-message{
  width:90%;
  background: #fbedef;
  padding:3% 5%;
  color:red;
  text-align: center;
}
.confirm, .thanks-message{
  width:90%;
  background: #CFEBF6;
  padding:3% 5%;
  text-align: center;
}


/*---------------------------------------------
 ** 共通フッター
---------------------------------------------*/
.footer_btn{
  background:url(../img/foot_bg.png) no-repeat top center;
  background-size:cover;
  padding: 4%;
}
footer .column_3{
  width:90%;
  max-width:1100px;
  margin:10px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:2% 0;
}

footer .column_3 li{
  width:30%;
}
footer .column_3 li a{
  width:65%;
  text-align: center;
  padding: 30px 8% 30px 27%;
  font-weight: bold;
  font-size:120%;
  display: block;
  color:#339EDB;
  background-color:#fff;
}

footer .column_3 li a:hover {
  background-color: #98e8ff;
}

footer .column_3 li a::before,
footer .column_3 li a::after {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 3px solid transparent;
  box-sizing: content-box;
}


footer .column_3 li a:hover::before,
footer .column_3 li a:hover::after {
  width: 100%;
  height: 100%;
}
footer .column_3 li a:hover::before {
  border-top-color: #339EDB;
  border-right-color: #339EDB;
  transition: width .2s, height .2s .2s;
}
footer .column_3 li a:hover::after {
  border-bottom-color: #339EDB;
  border-left-color: #339EDB;
  transition: height .2s, width .2s .2s;
}

footer .column_3 li.f_about a{
  background-image: url(../img/logo_foot01.png);
  background-position: center left 11%;
  background-repeat: no-repeat;
  background-size: 68px auto;
}
footer .column_3 li.f_course a{
  background-image: url(../img/logo_foot02.png);
  background-position: center left 12%;
  background-repeat: no-repeat;
  background-size: 52px auto;
}
footer .column_3 li.f_access a{
  background-image: url(../img/logo_foot03.png);
  background-position: center left 15%;
  background-repeat: no-repeat;
  background-size: 57px auto;
}

footer .column_3 li a:link,
footer .column_3 li a:visited{
  text-decoration: none!important;
}

@media screen and (max-width: 1200px) {
  footer .column_3 li a{
    width:90%;
    padding: 80px 5% 30px 5%;
    font-size:110%;
  }

  footer .column_3 li.f_about a{
    background-image: url(../img/logo_foot01.png);
    background-position: top 25px center;
    background-repeat: no-repeat;
    background-size: 68px auto;
  }
  footer .column_3 li.f_course a{
    background-image: url(../img/logo_foot02.png);
    background-position: top 10px center;
    background-repeat: no-repeat;
    background-size: 52px auto;
  }
  footer .column_3 li.f_access a{
    background-image: url(../img/logo_foot03.png);
    background-position: top 15px center;
    background-repeat: no-repeat;
    background-size: 57px auto;
  }


}

.foot_data{
  background:#339EDB;
  color:#fff;
}
.foot_data .column_2{
  width:90%;
  max-width:1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:3% 0 0;
  margin:0 auto;
}
.foot_data01{
  width:49%;
}
.foot_data01 a{
  width:75%;
  display: block;
  position:relative;
}
.foot_data01 a::before{
  content:'';
  width:100px;
  height:120px;
  background: url(../img/logo_juida01.png) no-repeat;
  background-size: 100% auto;
  position:absolute;
  right:-85px;
  top:-10px;
}
.foot_data01 a:link, .foot_data01 a:visited{
  color:#fff;
  text-decoration: none;
}
.foot_data01 a::after{
  content:'(アスモ株式会社 教習事業部  尼崎ドライブスクール内)';
  display: block;
  font-size:80%;
  color:#fff;
}

.foot_data02{
  width:49%;
}
.foot_data02 p{
  font-size:80%;
  margin-bottom:20px;
  line-height: 1.3;
  float:right;
}
.foot_data02 p a{
  font-size:4.0rem;
  font-family: 'Fjalla One', sans-serif;
}
.foot_data02 p a:link{
  color:#fff;
}


.foot_contact{
  width:85%;
  display: flex;
  justify-content: space-between;
  margin:10px auto;
}

@media screen and (max-width: 1160px) {
  .foot_data02 p{
    margin-bottom:20px;
  }
  .foot_data02 p a{
    display: block;
  }
  .foot_contact{
    width:95%;
  }
}
.foot_contact div{
  width:50%;
}
.foot_contact .btn a {
  position: relative;
  z-index: 2;
  border: 3px solid #fff;
  color: #fff;
  line-height: 50px;
}


.foot_contact div:nth-child(1) a:hover {
  color: #3EBFB2;
  border-color: #3EBFB2;
}
.foot_contact div:nth-child(2) a:hover {
  color: #358AD8;
  border-color: #358AD8;
}
.foot_contact div:nth-child(1) a::before,
.foot_contact div:nth-child(1) a::after{
  background:#3EBFB2!important;
}
.foot_contact div:nth-child(2) a::before,
.foot_contact div:nth-child(2) a::after{
  background:#358AD8!important;
}

@media screen and (max-width: 980px) {
  .foot_contact .btn a{
    min-width:160px;
    padding:0 15px;
  }
  .foot_contact{
    width:100%;
  }
}

.foot_copy .column_2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:1% 0 0.5%;
  margin:0 auto;
  font-size:80%;
}
.foot_copy ul{
  width:45%;
  display: flex;
}
.foot_copy ul li{
  display: inline-block;
}
.foot_copy ul li a::before{
  content:'|';
  display: inline-block;
  padding:0 10px;
}
.foot_copy ul li:first-child a::before{
  content:'';
  padding:0;
}
.foot_copy ul li a:link,
.foot_copy ul li a:visited{
  color:#fff!important;
  text-decoration: none;
}
.foot_copy ul li a:hover,
.foot_copy ul li a:active{
  color:#b7e4fd!important;
}


.foot_copy p{
  width:45%;
  text-align: right;
  margin:0;
}


.sp_tel{
  display: none;
}
@media screen and (max-width: 1200px) {


}



/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 0;
  right: 0px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/page_top.jpg) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


/*
-----------------------------------------------
flex-box
----------------------------------------------- */
.container01{
display:flex;
flex-wrap:wrap;
}

.container02{
display:flex;
flex-wrap:nowrap;
}

.container03{
display:flex;
flex-wrap:wrap-reverse;
}

.c-type01{
justify-content:space-between;
}

.c-type02{
justify-content:space-around;
}

.c-type03{
justify-content:flex-start;
}

.c-type04{
justify-content:center;
}

@media screen and (max-width: 767px) {
.container03{
flex-wrap:wrap-reverse;
}
}

.tac-all{
margin-left:auto;
margin-right:auto;
text-align:center;
}