@charset "utf-8";

/* 基本設定 */
* {
	margin: 0px;
	padding: 0px;
}
html{
	background: #f6f5ee;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%; /* フォントサイズ自動調整 */
}

body {
	background: linear-gradient(to right,  #f6f5ee 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	line-height: 20px;
	padding: 20px;
}
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
@media screen and (min-width: 1000px) {
body.no-scroll .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    z-index: 900; /* メニューより下、コンテンツより上に */
    display: block;
}
}
h2, h3, h4, h5, h6, body, html, p, li, dt, dd, pre {
	word-break: break-all;
	
	/*	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", san-serif;*/
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	color: #000000;
	font-style: normal;
}
ul{
	margin-left: 15px;
	list-style:none;
	list-style-type: circle;
}
li{
	line-height: 140%;
}
/* メニューボタン */
.menu {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
}

.menu span {
    display: block;
    margin: 0;
    border: none;
    width: 70%;
    height: 3px;
    background: #000;
    transform-origin: center center;
    position: absolute;
    left: 15%;
    transition: 0.3s;
}

/* 3本線を均等に配置 */
.menu span:nth-of-type(1) {
    top: calc(25% - 1.5px); /* 線の高さの半分だけ下げる */
}
.menu span:nth-of-type(2) {
    top: calc(50% - 1.5px);
    left: 15%;
}
.menu span:nth-of-type(3) {
    top: calc(75% - 1.5px);
}

/* メニューオープン時の変化 */
.open span {
    left: 15%;
    width: 70%;
}

.open span:nth-of-type(1) {
    top: calc(50% - 1.5px);
    transform: rotate(45deg);
}
.open span:nth-of-type(2) {
    opacity: 0;
}
.open span:nth-of-type(3) {
    top: calc(50% - 1.5px);
    transform: rotate(-45deg);
}

/* 画面幅が1000px以上のときサイズアップ */
@media screen and (min-width: 1000px) {
    .menu {
        width: 50px;
        height: 50px;
    }
}
#menu_list > ul > li {
	position: relative;
}
/* 子ulを持っているli にだけ矢印を付ける */
#menu_list > ul > li.has-children::after {
    content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 15px;
  right: 10px;
  transition: transform 0.3s ease;
}

/* 開いているとき */
#menu_list > ul > li.has-children.open::after {
    transform: rotate(135deg);
}

/* リンク色変更 */
a{
	color:#30a6f5;
	text-decoration:none;
}
/* 余白 */
.mt0 {
	margin-top: 0px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt70 {
	margin-top: 70px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mb0 {
	margin-bottom: 0px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.ml10 {
	margin-left: 10px !important;
}
.ml15 {
	margin-left: 15px !important;
}
.ml20 {
	margin-left: 20px !important;
}
.ml25 {
	margin-left: 25px !important;
}
.ml30 {
	margin-left: 30px !important;
}
/* 枠 */
.sq1 {
	border: 1px solid #ECEBEB;
	background-color: #F3F3F3;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
}
.sq2 {
	border: 5px solid #F3F3F3;
	background-color: #fff;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
}
.sq3 {
	border: 1px solid #FFE8E8;
	background-color: #E9F7FD;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
}
.sq4 {
	border: 5px solid #E9F7FD;
	background-color: #fff;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
	;
}
.sq5 {
	border: 1px solid #FFE8E8;
	background-color: #FFECD7;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
}
.sq6 {
	border: 5px solid #FFECD7;
	background-color: #fff;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
	;
}
.sqred {
	border: 1px solid #f29e9e;
	background-color: #fffafa;
	margin: 10px 0;
	padding: 20px 20px 0 20px;
}
.color1 {
	color:#008600;
}
.fa-arrow-down {
	font-size: 20px;
	color: #CBE1F0;
	margin-bottom: 10px;
}
.ac {
text-align: center;
}
.fs2 {
	font-size: 114.2857%;
}
.fs3 {
	font-size: 130%;
}
.fs4 {
	font-size: 160%;
}
.fs5 {
	font-size: 200%;
}
.bold {
	font-weight: bold;
}

/* 囲み：二重線 */
.nizyuu {
	border-width: 4px;
	border-style: double;
}
/* フロートTELボタン */
#tell_btn_fix {
	width: 90px;
	position: fixed;
	z-index: 9999;
	bottom: 4px;  
    right: 5px; 
}
#tell_btn_fix img {
	width: 90px;
	height: auto;
}
.float_clear {
	display: block;
	clear: both;
	visibility: hidden;
	height: auto;
}
.orange_line {
	font-size: 16px;
	border-top: none;
	border-bottom:1px dashed #F1693F;
	color: #F1693F;
	background-color:transparent;
	line-height: 1.3;
	padding-bottom: 5px;
	height: auto;
	margin-top: 30px;
	margin-bottom: 10px;
	font-weight: bold;
}
h1.orange_line {
	font-size: 18px;
	border-top: none;
	border-bottom:2px solid #FFAD2D;
	color: #000;
	background-color:transparent;
	line-height: 1.3;
	padding-bottom: 5px;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
h1.orange_line2 {
	margin-top: 0;
	font-size: 18px;
	border-top: none;
	border-bottom:2px solid #FFAD2D;
	color: #000;
	background-color:transparent;
	line-height: 1.3;
	padding-bottom: 5px;
	height: auto;
	margin:15px 10px 0;
}

.wrap {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #000000;
	font-size: 11px;
	line-height: 140%;
}
.flex {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: space-between;
  }
@media screen and (min-width: 769px) {
	.wrap {
		width: 100%;
}
}

@media screen and (min-width: 1000px) {
h1.orange_line {
	font-size: 22px;
}
.orange_line {
	font-size: 18px;
}
}
#menu_list {
    width: 100%;
    display: none;
    box-sizing: border-box;
    margin-top: 0;
	background:#fff;
    margin-bottom: 0;
	padding-bottom: 80px;
    position: fixed; /* 画面全体に固定する */
    top: 50px;
    right: 0;
    max-height: calc(100vh - 50px); /* 縦方向の最大高さを画面内に収める */
    overflow-y: auto; /* 縦スクロールを許可 */
    z-index: 1000;
}
.pc_only {
	display: none;
}
.sub_address {
	background-color: #F8F8F2;
	padding: 20px 20px 10px;
	margin-bottom: 20px;
	border:1px solid #ddd;
	margin-top: 20px;

}
.sub_address p{
	font-size: 12px;

}
.sub_address .info {
	font-size: 17px;
	font-weight: bold;
	color: #F1693F;
	margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
	.pc_only {
		display: block;
	}
	.sp_only {
		display: none;
	}
	#menu_list {
		position: fixed;
		background-color: #f6f5ee;
		top: 79px;
		right: -100%; /* 初期位置を画面外に設定 */
		width: 300px; /* メニューの幅 */
		height: 100%; /* 必要に応じて高さを調整 */
		transition: right 0.2s ease; /* スライドアニメーション */
		z-index: 1000;
		display: block;
		padding-top: 20px;
		padding-bottom: 35px;
	}
	
	#menu_list.slide-in {
		right: 0; /* スライドインした状態 */
	}

}
#menu_list ul {
margin: 0 15px 0px;
}
#menu_list ul li {
	font-size: 14px;
	list-style-type:none;
	line-height: 1.5;
	height: auto;
	border-bottom: 1px solid #2185F7;
	cursor: pointer;
}
#menu_list ul li a,#menu_list ul li.has-children {
	padding: 8px 0;
}

#menu_list ul li.has-children ul {
	margin-top: 10px;
	margin-bottom: -5px;
}
#menu_list ul li.has-children li {
	border: none;
	border-top: 1px solid #ccc;
}
#menu_list ul li a {
	color: #000;
	font-size: 13px;
	display: block;
}
#header {
	position: relative;
}
#header_box {
	position: fixed;
	width: 100%;
	z-index: 999;
	background: linear-gradient(to right,  #f6f5ee 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.header_top {
	padding: 10px 10px 10px;
	height: 30px;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;

}
#header .menu {
	position: absolute;
	top: 5px;
	right:5px;
}
#header .menu img{
	width: 37px;
	height: auto;
}

#header .logo img {
	width:auto;
	height: 30px;
}
#header .en {
	position: absolute;
	top: 5px;
	right:50px;
}

#header .en img{
	width: 35px;
	height: auto;
}
.header_btn {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	width: 90%;	
}
.slide_btn.open {
	opacity: .7;
}
.contact_btn {
	background-color: #FFAD2D;
	width: 49%;
	box-sizing:border-box;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	align-items:center;
	display: flex;
	text-align: center;


}
.contact_btn a {
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 100%;

}
.header_btn .st1{fill:#fff;
}
.header_btn .st2{fill:#30a6f5;
}
.contact_btn svg {
	width: 12px;
	height: 12px;
	margin-right: 5px;
}
.tel_btn svg {
	width: 15px;
	height: 15px;
	vertical-align: -1px;
}
.tel_btn {
	background-color:#fff ;
	border: 1px solid #FFAD2D;
	color: #FFAD2D;
	width: 49%;
	font-size: 16px;
	box-sizing:border-box;
	font-weight: bold;

	text-align: center;
	border-radius: 5px;
	align-items:center;
	display: flex;
	text-align: center;
}
.tel_btn a{
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 100%;
}
.tel_btn img{
	width: 161px;
	height: auto;
}
#gmenu_box {
	background-image: url(../images/gmenu_bg.gif);
	background-position: left top;
	background-size: 2px 89px;
	background-repeat: repeat-x;
	height: 89px;
	width:100%;
	padding-left: 5px;
	margin-top: 45px;
	margin-bottom: 10px;
}
#gmenu_box img {
	margin-right: 3.5px;
	width: 75px;
}
.mainvisual {
	width:100%;
	margin-top: 24px;
	text-align: center;
}
.othervisual {
	width:100%;
	margin-top: 25px;
	text-align: center;
}
.image_froat_right {
	margin-bottom: 15px;
	margin-left: 15px;
	float: right;
}
.dodded_line {
	border-bottom: 1px dotted #FFAD2D;
	height: 1px;
}
#top_president_box {
	width: 310px;
	height: 245px;
	margin-top: 25px;
	margin-left: 5px;
	margin-right: 5px;
	position: relative;
}
#top_president_box .text_black {
	width: 215px;
	position: absolute;
	color: #000000;
	top: 64px;
	left: 82px;
	line-height: 13px;
}
#top_president_box .text_black .blank {
	height: 3px;
}
#top_president_box .text_blue {
	width: 215px;
	position: absolute;
	color: #30A6F5;
	top: 162px;
	left: 82px;
	line-height: 13px;
	font-weight: bold;
}
#top_president_box .text_blue .blank {
	height: 3px;
}


/* ■■■基本のコンテンツ枠■■■ */
.container {
	max-width: 1020px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 60px;
}
.contentsbox {
	width: 90%;
	max-width: 800px;
	box-sizing:border-box;
	margin: 10px auto 40px;
	border-width: 1px;
	border-style: solid;
	border-color: #dddddd;
	background-color: #fff;
	padding: 10px 15px 60px;
}
.fb-container {
	text-align: center;
}
.sns_box {
	margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
	.header_top {
		padding: 15px 0;
		height: 50px;
	}
	#header .logo img {
		height: 50px;
		width: auto;
	}
	#header .menu {
	position: absolute;
	top: 10px;
	right:0;
}
#header .menu img{
	width:70px;
	height: auto;
}


#header .en {
	position: absolute;
	top: 8px;
	right:50px;
}
#header .menu {
	position: absolute;
	top: 15px;
	right:20px;
}

#header .en {
	position: absolute;
	top: 5px;
	right:100px;
}
#header .en img {
    width:70px;
    height: auto;
}
	.container {
		margin-top: 90px;
		margin-bottom: 40px;
		padding: 0;
	}
	.contentsbox {
		/* margin:10px 0 0 auto; */
		min-height:500px;
	}
	/* .sns_box {
		position: absolute;
		left:0;
		top:70px;

	} */
	.sub_address {
		/* width: 250px; */
		background-color: #FEFDFC;
		margin: 40px 0;
	}
}
p{
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.6;
}
.contentsbox .blank1 {
	height: 5px;
}
.contentsbox .blank2 {
	height: 10px;
}
.contentsbox .blank3 {
	height: 15px;
}
.contentsbox .blank4 {
	height: 20px;
}
.mgb10 {
margin-bottom: 10px !important;
}
.mgb15 {
margin-bottom: 15px !important;
}
.mgb20 {
margin-bottom: 20px !important;
}
.contentsbox .text_small {
	font-size: 9px;
}
.contentsbox .text_indent {
	margin-top: 5px;
	padding-left: 1em;
	text-indent: -1em;
}
.contentsbox .text_ttl {
	margin-top: 5px;
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 5px;
	color: #c47700;
	padding-left: 1em;
	text-indent: -1em;
}
.contentsbox .text_indent2 {
	margin-top: 5px;
	padding-left: 3em;
	text-indent: -3em;
}
.contentsbox .question_ttl {
	margin-top: 5px;
	font-weight: bold;
	color: #FFAD2D;
	text-indent: -1em;
	margin-right: 5px;
}
/* --top 免許失効バナー */
.contentsbox .topbnr1 {
	float: left;
}
.contentsbox .topbnr2 {
	float: right;
}
.contentsbox .topbnr3 {
	float: left;
	margin-top: 10px;
}
.contentsbox .topbnrtext {
	float: right;
	margin-top: 12px;
	width: 222px;
	color: #30a6f5;
	font-size: 110%;
	font-weight: bold;
	line-height: 130%;
}
/* --サブタイトル */
.contentsbox .subttl {
	width: 290px;
	font-size: 13px;
}
/* --サブサブタイトル */
.contentsbox .subsubttl_c {
	margin-top: 10px;
	background-image: url(../images/facility_subsubttlbg.png);
	background-position: left top;
	background-size: 2px 19px;
	background-repeat: repeat-x;
	width: 290px;
	height: 22px;
	color: #c47700;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	line-height: 20px;
	padding-bottom: 2px;
	margin-bottom: 10px;
}
.contentsbox .subsubttl_l_i {
	margin-top: 20px;
	background-image: url(../images/2nd/subsubttl_l_bg.png);
	background-position: left top;
	background-size: 2px 2px;
	background-repeat: repeat;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
	border-color: #ffdba4;
	width: 263px;
	color: #c47700;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	line-height: 125%;
	padding-top: 5px;
	padding-bottom: 2px;
	padding-left: 30px;
	padding-right: 2px;
	text-indent: -12px;
}
.contentsbox .subsubttl_l_i_s {
	margin-top: 10px;
	background-image: url(../images/2nd/subsubttl_l_bg.png);
	background-position: left top;
	background-size: 2px 2px;
	background-repeat: repeat;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
	border-color: #ffdba4;
	width: 263px;
	color: #c47700;
	font-size: 9px;
	font-weight: bold;
	text-align: left;
	line-height: 125%;
	padding-top: 5px;
	padding-bottom: 2px;
	padding-left: 30px;
	padding-right: 2px;
	text-indent: -12px;
}
.contentsbox .subsubttl_l {
	margin-top: 15px;
	background-image: url(../images/2nd/subsubttl_l_bg.png);
	background-position: left top;
	background-size: 2px 2px;
	background-repeat: repeat;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
	border-color: #ffdba4;
	width: 283px;
	color: #c47700;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	line-height: 125%;
	padding-top: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 2px;
	margin-bottom: 10px;
}
.contentsbox .text_normal {
	font-size: 16px;
line-height: 1.6;
	margin-top: 5px;
}
.contentsbox .text_small {
	font-size: 11px;
	margin-top: 5px;
}

.contentsbox .subsubttl_l_s {
	margin-top: 10px;
	background-image: url(../images/2nd/subsubttl_l_bg.png);
	background-position: left top;
	background-size: 2px 2px;
	background-repeat: repeat;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
	border-color: #ffdba4;
	width: 283px;
	color: #c47700;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	line-height: 125%;
	padding-top: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 2px;
}
.contentsbox .subsubttl_l_02 {
	margin-top: 10px;
	background-image: url(../images/2nd/subsubttl_l_02_bg.png);
	background-position: left top;
	background-size: 2px 2px;
	background-repeat: repeat;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
	border-color: #F6C67D;
	width: 283px;
	color: #D46900;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	line-height: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 2px;
}
.contentsbox .subsubttl_b {
	margin-top: 10px;
	background-image: url(../images/2nd/subsubttl_l_bg_b.png);
	background-position: left top;
	background-size: 2px 2px;
	background-repeat: repeat;
	border-bottom-width: 1.5px;
	border-bottom-style: solid;
	border-color: #acd4ef;
	width: 283px;
	color: #4181ac;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	line-height: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-right: 2px;
}
.contentsbox .basic_tbl table {
	width: 100%;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-color: #c47700;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	font-size: 13px;
	margin-bottom: 15px;
}
.contentsbox .basic_tbl .th {
	background-color: #ffe3b6;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #c47700;
	padding: 10px;
	vertical-align: middle;
	font-weight: bold;
	text-align: center;
	color: #000;
}
.contentsbox .basic_tbl .td0 {
	background-color: #c47700;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #c47700;
	padding: 10px;
	vertical-align: middle;
}
.contentsbox .basic_tbl .td1 {
	background-color: #fff1da;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #c47700;
	padding: 10px;
	vertical-align: middle;
	font-weight: normal;
	color: #000;
	white-space: nowrap;
}
.contentsbox .basic_tbl .td2 {
	background-color: #fffaf1;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #c47700;
	padding: 10px;
	vertical-align: middle;
	color: #000;
}
.contentsbox .basic_tbl .td2r {
	background-color: #fffaf1;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #c47700;
	padding: 10px;
	vertical-align: middle;
	color: #000;
	text-align: right;
}
/* --■教習施設のご案内 */
.contentsbox .facility_photo {
	float: left;
	width: 126px;
}
.contentsbox .facility_gglmap {
	float: right;
}
.facility_gglmap iframe {
	border-style: none;
}

/* --■費用と教習の流れ */


/* ■■■テキストメニュー■■■ */
#textmenu {
	background-image: url(../images/textmenu_bg.png);
	background-repeat: repeat;
	background-size: 2px 2px;
	width: 310px;
	margin: 25px 5px 10px;
	padding: 3px 0 3px;
}
#textmenu a {
	float: left;
	font-size: 12px;
	background-image: url(../images/textmenu_base.png);
	background-repeat: no-repeat;
	background-size: 150.5px 40px;
	width: 150.5px;
	height: 40px;
	color: #30a5f5;
	font-size: 100%;
	font-weight: bold;
	line-height: 110%;
	margin-left: 3px;
}
#textmenu a img {
	float: left;
	margin-top: 10px;
	margin-left: 7px;
	width: 12px;
	height: auto;
}
#textmenu a .text{
	display: table-cell;
	height: 40px;
	padding-left: 5px;
	vertical-align: middle;
}
/* ■■■フッター■■■ */
#footer {
	background-color: #ffad2d;
	margin-top: 10px;
	color: #FFF;
}
#footer p {
margin-bottom: 10px;
	color: #FFF;
}

#footer .f_text {
	font-size: 80%;
	line-height: 120%;
	padding-top: 20px;
	margin: 20px auto;
	max-width: 1000px;
	width: 90%;
	text-align: center;
}
#footer .text {
	padding-top: 20px;
	margin: 20px auto;
	max-width: 1000px;
	width: 90%;
	text-align: left;
}
#footer .text p {
	font-size: 14px;
}
#footer .f_text p {
	font-size: 12px;
}
#footer .text .position {
    display: table-cell;
	vertical-align: bottom;
}

/* --よくいただく質問 */
.faq_box {
	color: #000000;
	margin-top: 5px;
	width: 288px;
}
.faq_box .answer {
	padding-left: 5px;
	float: left;
	width: 15px;
	font-weight: bold;
	color: #4778BA;
}

/* --箇条書きテーブル */
#bulletize tr td {
	vertical-align: top;
	color: #000000;
}
.tbl_zero {
	border-collapse:collapse;
	border:0px;
}
.tbl_zero td {
	vertical-align: top;
	padding:0px;
}
.tbl_beige {
	border-collapse:collapse;
	border:0px;
}
.tbl_beige td {
	padding:0px;
}
/* youtube */
.video {
	width: 100%;
	position: relative;
	padding-top: 56.25%;
	margin-bottom: 20px;
  }
  
  .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
/* スライダー */
.mainslider {
	padding: 0 5px;
	margin-top: 15px;
}
.mainslider img {
	width: 100%;
	
}
.Navigation {
	margin-bottom: 10px;
}

/* process */


.mokuzi {
	text-align: center;
	margin-bottom:10px;
}
.mokuzi img {
	width: 70%;
}
.index_box {
	text-align: center;
	margin-bottom: 30px;
}
.index_box img {
	width: 85%;
}
.blue_index {
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	color: #2781FB;
	line-height: 22px;
	height: 22px;
	margin-bottom: 10px;
}
.step {
	background-color: #F3F9FB;
	line-height: 1.9;
	color: #2781FB;
	font-weight: bold;
	text-align: center;
	font-size: 18px;
	margin: 15px 0 20px;
}

.stephead {
margin-top: 40px;
margin-bottom: 20px;
	background-size: 50px;
	width: 100%;
	height: auto;
	background-color: #F3F3F3;
	box-sizing:border-box;
	padding: 10px 10px 10px 65px;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #d8d8d8;
	border-bottom: 2px solid #2384f5;
	position: relative;
	box-shadow:0px 4px 6px -1px #dde0e3;
	-moz-box-shadow:0px 4px 6px -1px #dde0e3;
	-webkit-box-shadow:0px 4px 6px -1px #dde0e3;
}
.stephead img {
position: absolute;
width: 40px;
height: auto;
top:-10px;
left:5px;
}
.stephead .tag_step {
	position: absolute;
	width: 58px;
	height: 58px;
	padding: 8px;
	box-sizing:border-box;
	border-radius: 50%;
	display: block;
	text-align: center;
	top:-16px;
	left:7px;
	background-color: #2781FB;
	color: #fff;
	line-height: 1.2;
	font-size: 24px;
	border: 2px solid #C8D5E3;
	}
.stephead .tag_step span {
	display: block;
	font-weight: normal;
	font-size: 12px;
}
.step_arrow {
	margin-left: 20px;
}
.stepend {
margin-top: 20px;
margin-bottom: 20px;
	background-size: 50px;
	width: 100%;
	height: auto;
	background-color: #F3F3F3;
	box-sizing:border-box;
	padding: 10px;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #d8d8d8;
	border-bottom: 2px solid #E71611;
	box-shadow:0px 4px 6px -1px #dde0e3;
	-moz-box-shadow:0px 4px 6px -1px #dde0e3;
	-webkit-box-shadow:0px 4px 6px -1px #dde0e3;
}
@media screen and (max-width: 999px) {
	.stephead .tag_step {
		top:-16px;
		left:0px;
	}
}
@media screen and (min-width: 1000px) {
	.stephead,.stepend {
		font-size: 20px;
		padding: 15px 15px 15px 80px;

	}
	.stephead img {
		position: absolute;
		width: 60px;
		height: auto;
		top:-20px;
		left:5px;
		}
		.stepend {
			text-align: center;
		}

}
.stepbox {
	border: 5px solid #f3f3f3;
	margin-bottom: 10px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.stepbox img{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
.flow_icon {
	text-align: center;
}
.flow_icon img{
	width: 25%;
}
/* detail */
.imagebox img{
	width: 100%;
	vertical-align: bottom;
	margin-bottom: 10px;
}
.mgb0 {
	margin-bottom: 0 !important;
}
.mgb20 {
	margin-bottom: 20px;
}
/* staff */
.orange_headline {
	border-left: 3px solid #FF9900;
	background-color: #EFEFEF;
	/* text-align: center; */
	padding: 5px 5px 5px 10px;
	margin-top: 40px;
	margin-bottom: 10px;
	line-height: 1.5;
}
.floatbox .alignright{
	float: right;
	margin: 0 0 2px -40px;
	display: inline;
	width: 50%;
}
h1 img {
	width: 100%;
}
.img_width {
	width: 100%;
	height:auto;
}
.w15 {
	width: 15px;
}
.w57 {
	width: 57px;
}
.w112 {
	width: 112px;
}
.w126 {
	width: 126px;
}
.w132 {
	width: 132px;
}
.w136 {
	width: 136px;
}
.w142 {
	width: 142px;
}
.w144 {
	width: 144px;
}
.w310 {
	width: 310px;
}
.clearfix:after,#textmenu:after,#footer:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
/* fee */
.fee_box {
margin-bottom: 40px;
}
.fee_img_box {
width: 90%;
margin: 20px 5%;
}
.fee_img_box figure {
float: left;
width: 50%;
text-align: center;
color:#264788;
}
.fee_img_box figure figcaption{
font-size: 16px;
font-weight: bold;
margin-top: 3px;
text-align: center;
}

.fee_img_box figure img{
width: 90%;
}
.fee_img_box .fee_text {
width: 45%;
text-align: center;
float: left;
margin-left: 5%;
}
.fee_img_box .fee_text p{
border-bottom: 2px solid #264788;
margin-top: 35px;
margin-left: 5px;
font-size: 16px;
}
.fee_arow {
text-align: center;
margin: 20px 0;
}
.fee_arow img{
width: 50%;
}
p.fee_short {
font-weight: bold;
color:#264788;
text-align: center;
font-size: 20px;
}
p.fee_short span{
font-size: 23px;
display: inline-block;
margin: 0 5px;
}
p.fee_price {
width: 60%;
margin: 0 auto;
border-bottom: 2px solid #A6282B;
font-size: 22px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
/* lesson*/
ul.list_count {
list-style-type: decimal;
margin: 20px;
font-size: 16px;
}
ul.list_count li {
margin-bottom: 5px;
margin-left: 5px;
}
ul.list01 li:before{
content:"＊ ";
}
ul.list01 {
margin-top: 0px;
list-style-type:none;
margin-left: 0;
font-size: 16px;
margin-bottom: 15px;
}
ul.list01 li {
margin-bottom: 5px;
margin-left: 0;
}
.flow_img_t {
margin: 0 auto;
width: 40%;
height: auto;
}
.flow_img_t img{
width: 100%;
margin-top: 10px;
vertical-align: bottom;
}
.flow_img_m {
text-align: center;
}
.flow_box {
border: 2px solid #dddddd;
text-align: center;
}
.flow_box p {
	margin: 0 20px 15px;
	line-height: 1.4;
	text-align: left;
}
@media screen and (min-width: 1000px) {
.flow_box p {
	margin: 0 20px 15px;
	line-height: 1.4;
	text-align:center;
}
#footer .text p br{
	display: none;
}
}
.flow_box img {
width: 100%;
height: auto;
}
.flow_img_m {
margin: 0 auto;
width: 40%;
height: auto;
}
.flow_img_m img{
width: 100%;
margin-top: 0px;
vertical-align: bottom;
}
.flow_img_b {
margin: 0 auto 20px;
width: 40%;
height: auto;
}
.flow_img_b img{
width: 100%;
margin-top: 0px;
vertical-align: bottom;
}
.suggest_box {
border-top: 2px dotted #FFE3AF;
border-bottom: 2px dotted #FFE3AF;
padding: 10px;
margin: 15px 0 40px;
}
.su_title {
background-color: #FFAD2D;
color: #fff;
font-weight: bold;
padding: 6px 10px 4px;
margin-bottom: 10px;
font-size: 14px;
text-align: center;
}
ul.cheack {
margin-left: 0;
}
ul.cheack li {
list-style-type:none;
background:url(../images/lesson_icon.gif) no-repeat left 2px;
background-size:14px;
padding-left:15px;
font-size: 14px;
margin-bottom: 5px;
}
.underbox {
margin: 20px 0 0;
background-color: #fff;
padding: 10px 15px 20px;
}
.underbox img{
	width: 100%;
	vertical-align: bottom;
	margin-bottom: 10px;
}
.underbox p{
font-size: 14px;
letter-spacing: 2;
}

p.entry img {
	width: 100%;
	height: auto;
}
.flow_icon {
	text-align: center;
}
.flow_box2 {
	border: 2px solid #F49D9F;
	padding: 5px;
	width: 95%;
	font-size: 17px;
	line-height: 1.4;
	margin: 0 auto;
	text-align: center;
}
.flow_icon img {
	width: 20%;
	height: auto;
}

p.fs3 {
	font-size: 150%;
	line-height: 2;
}
.title_number {
	font-weight: bold;
	font-size: 15px;
	margin-top: 20px;
	margin-bottom: 5px;
	line-height: 1.5;
	}
.title_number span.orange {
	background-color: #F5D7C9;
	padding: 3px 5px;
	margin-right: 5px;
}
.title_number span.blue {
	background-color: #DDF2F8;
	padding: 3px 5px;
	margin-right: 5px;
}

.btm_border {
	border-bottom:1px dashed #000;
	line-height: 1.5;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
}
.mgt20 {
	margin-top: 20px !important;
}
span.phone {
	font-size: 120%;
	font-weight: bold;
}

.sqred {
	border-top: 1px dotted #000;
	border-bottom: 1px dotted #000;
	margin-bottom: 20px;
	background-color: #F3FBF9;
	padding: 5px;
}

.mgb30 {
	margin-bottom: 30px !important;
}
.free_banner {
width: 100%;
max-width:300px;
margin-left: auto;
margin-right: auto;
height: auto;
display: block;
}
.free_banner img {
width: 100%;
height: auto;
}
.free_text {
color: #F97E80;
font-weight: bold;
text-align: center;
}
.title_k {
color: #0F4160;
font-weight: bold;
line-height: 1.5;
font-size: 16px;
margin-top:20px;
margin-bottom: 5px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignright {
	float: right;
	width: 50%;
	height: auto;
	margin: 0 0 20px 10px;
	display: inline;
}
.alignleft {
	float: left;
	width: 50%;
	height: auto;
	margin: 0 10px 20px 0;
	display: inline;
}
.letter img{
width: 100%;
height: auto;
}

.photo img{
width: 100%;
height: auto;
margin: 10px 0;
}
.mi1 {
	background-color: #2781FB;
	color: #fff;
	font-size: 13px;
	padding: 0 10px;
	position: absolute;
	left: -80px;
	top:0px;
	
}
.step_wrapper strong {
font-weight: bold;
}
.step_wrap p {
position: relative;
margin-left: 80px;
}
/* fee
----------------------------------------------------*/

.fee_wrapper {
	background-color: #D5F0FD;
	padding:25px 15px;
	margin-top: 30px;
}
.fee_wrapper span {
	font-family:  Meiryo,"ＭＳ Ｐゴシック",Osaka,"MS PGothic",sans-serif,Meiryo, "MS PGothic", sans-serif;
 font-size: 1.1em;
}
.total_wrapper span {
	font-family:  Meiryo,"ＭＳ Ｐゴシック",Osaka,"MS PGothic",sans-serif,Meiryo, "MS PGothic", sans-serif;
 font-size: 1.1em;
}

.fee_box2 {
	width: 100%;
	border: 2px solid #ccc;
	margin-right: 0px;
	float: left;
	height: auto;
	background-color: #fff;
	position: relative;
}
.fee_photo {
	margin: 10px;
}
.fee_photo_center {
	float: left;
	width: 100%;
}
.fee_photo_center p{
	font-size: 35px;
	text-align: center;
	font-weight: bold;
	font-family:  Osaka,"MS PGothic",sans-serif,Meiryo,  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #264788;
}
.fee_photo img{
	width: 100%;
	height: auto;
}
.fee_box2 h2 {
	color: #fff;
	background-color: #264788;
	font-size: 21px;
	line-height: 34px;
	display: block;
	text-align: center;
	width: 100%;
	height: 34px;
	padding: 3px 0;
}
.fee_box2 h2 span{
	display: block;
	position: absolute;
	top:-15px;
	left:-4px;
}
.fee_box2 dl {
	padding: 21px 10px 20px;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;

}
.fee_box2 dl dt {
	font-size: 14px;
	font-weight: bold;
	background:url(../images/circle_blue.gif) no-repeat 0 5px;
	padding-left: 13px;
}
.fee_box2 dl dd {
	font-size: 28px;
	margin-left: 10px;
	margin-bottom: 0px;
}
.fee_box2 h3 {
	font-size: 13px;
	font-weight: bold;
	margin-left: 10px;
	color: #222FBF;
}
.fee_box2 p {
	font-size: 12px;
	padding: 10px;
	line-height: 1.3;
}
.arow {
	width: 30%;
	margin: 20px auto 15px;
}
.arow img {
width: 100%;
height: auto;
}
h2.total {
	background-color: #264788;
	color: #fff;
	font-size: 18px;
	line-height: 40px;
	text-align: center;
	border: 5px solid #D5F0FD;
	margin-bottom: 14px;
	padding-right: 4px;
}
h2.total span {
	font-size: 23px;
	margin-right: 3px;
	letter-spacing: 3px;
}
.total_box {
	width: 100%;
	box-sizing:border-box;
	border: 5px solid #D5F0FD;
	padding: 10px 20px;
	margin-bottom: 20px;
	text-align: center;
}
.total_wrapper .left {
	margin-right: 0px;
}
.total_box_center {
	float: left;
	text-align: center;
	margin-top: 50px;
	color: #264788;
	font-size: 35px;
	font-weight: bold;
	letter-spacing: 2px;
}
.total_box dd{
	font-size: 30px;
	line-height: 1.3;
	text-align: center;
	border-bottom: 5px solid #A7282B;
	color: #264788;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.total_box dt{
	font-size: 16px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 13px;
	font-weight: bold;
	color: #264788;
}
.total_box p{
	font-size: 15px;
	line-height: 1.3;
}
ul.co_1 {
	margin: 20px 0;
	margin-left: 0;
	font-size: 16px;
	background-color: #F7FFFC;
	padding: 20px 10px 1px;
}
ul.co_1 li:before {
	content:counter(mycount);
	position: absolute;
	left:0px;
	top:2px;
	padding: 0px 10px;
	margin-right: 10px;
	background-color: #7ECEF4;
	font-weight: bold;
	color: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
}
ul.co_1 li {
	list-style-type: none;
	counter-increment:mycount;
	position: relative;
	padding-left: 40px;
	margin-bottom: 15px;
	/* font-weight: bold; */
}
ul.li_1 {
font-size: 14px;
padding-left: 10px;
padding-bottom: 20px;
}
ul.li_1 li {
margin-bottom: 0px;
}
.title_t {
color: #30A6F8;
font-size: 17px;
line-height: 1.4;
font-weight: bold;
}
.title_t span.mi2 {
background-color: #30A6F8;
font-size: 15px;
padding: 1px 5px;
color: #fff;
margin-right: 5px;
display: inline-block;
line-height: 1.1;
vertical-align: top;
font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
a.t_link {
text-decoration: none;
color: #000;
}
#process_beginners .pc_only {
	display: block;
}
#process_beginners .sp_only {
	display: none;
}
.ui-tabs-panel .Paragraph {
	margin: 0 20px;
}
section {
	margin-bottom: 60px;
}
section img{
	max-width: 100%;
	height: auto;
}
#process_beginners .fv .title_main {
	margin-bottom: 30px;
}
.two_column_center .inner_sub {
	width: 45%;
	text-align: center;
}
.two_column_center .inner_option {
	width: 45%;
	text-align: center;
}
.two_column .inner_text {
	width: 50%;
}

.two_column .inner_img {
	width: 48%;
}
.youtube {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
}
.youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width: 768px) {
	.two_column .inner_text {
		width: 100%;
	}

	.two_column .inner_img {
		width: 100%;
	}
	#process_beginners .pc_only {
		display: none;
	}
	#process_beginners .sp_only {
		display: block;
	}
}
.two_column .inner_img img {
	width: 100%;
	height: auto;
}
.title_main,.title_sub {
	font-size: 36px;
	color: #264788;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 0;
}
.title_main_sub {
	font-size: 30px;
	color: #264788;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 0;	
}
.title_day {
	color: #30A6F8;
    font-size: 17px;
    line-height: 1.4;
    font-weight: bold;
	margin-bottom: 5px;
}
.title_sub_step {
	color: #30A6F8;
    font-size: 17px;
    line-height: 1.4;
    font-weight: bold;
	margin-top: 30px;
	margin-bottom: 5px;
}


.title_day span {
	background-color: #30A6F8;
	color: #fff;
	font-weight: bold;
	margin-right: 10px;
	font-size: 85%;
	display: inline-block;
	padding: 5px;
	width: 80px;
	text-align: center;
	position: relative;
}
.title_day span:after {
	content:"";
	display: inline-block;
	width: 74px;
	height: 10px;
	background: #30A6F8;
	clip-path: polygon(0 -267.7%, 31% -267.7%, 31% 0, 69% 0, 69% -267.7%, 100% -267.7%, 50% 100%);
	position: absolute;
	bottom:-9px;
	left:0;
	right:0;
	margin:auto;
  }
  #process_beginners a:hover {
	opacity: .8;
}
  @media screen and (max-width: 768px) {
	.title_main, .title_sub {
		font-size: 8vw;
	}
	.title_main_sub {
		font-size: 6vw;
	}
 .step_box .title_day {
	padding-left: 100px;
	position: relative;
 }
 .step_box .title_day span{
	position: absolute;
	left:0;
 }
 .two_column_center .inner_option {
	width: 100%;
 }
 .inner_option {
	margin-bottom: 20px;
 }
 #process_beginners a:hover {
	opacity: 1;
}
}
  .title_day.none span:after  {
	display: none;
  }
.title_step {
	font-weight: bold;
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	margin-top: 20px;
	margin-bottom: 5px;
}
.step_box {
	margin-bottom: 30px;
}
.step_box p {
	margin-left: 100px;
}
.inner_title {
	color: #666;
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 5px;
}
.Contract_Parties .contact_btn{
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;

}
.simple_list li{
	margin-bottom: 10px;
	font-size: 13px;
	margin-left: 10px;
}
#process_beginners .orange_headline {
	font-size: 16px;

}
#process_beginners .orange_headline span {
	font-weight: bold;
	color: #F1693F;
}
.day_box {
	border-left: 3px solid #9ad2fa;
	padding-left: 15px;
	padding-bottom: 10px;
}
.day_box .title_day {
	position: relative;
	margin-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 0;
}
.day_box .title_day:before {
	content:"";
	position: absolute;
	left:-25px;
	top:0;
	bottom:0;
	margin:auto;
	display: block;
	width: 20px;
	height: 3px;
	background-color: #9ad2fa;

}
.material {
	margin-bottom: 20px;
}
.inner_sub {
	background-color:#EFEFEF;
	padding: 15px;
	margin-top: 15px;
}
.inner_two {
	margin-top: 20px;
}
.inner_sub .inner_title {
	margin-top: 10px;
}
.inner_option .inner_title{
	text-align: center;
	margin-bottom: 20px;
}
.inner_option img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.training  {
	margin-bottom: 20px;
}
.arrow_down {
	position: relative;
}
.arrow_down:after {
	content:"";
	display: inline-block;
	width: 346.4px;
	height: 30px;
	background: #30A6FA;
	clip-path: polygon(0 -233.3%, 46% -233.3%, 46% 0, 54% 0, 54% -233.3%, 100% -233.3%, 50% 100%);
	margin-top: 20px;

}
