@charset "utf-8";


/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
	font-size: 16px;	
	line-height: 2;		
	background: #fafafa url(../images/bg.jpg) no-repeat center top / 100% fixed;	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;		
	transition: 0.5s;	
}
a:hover {
	color: #20b0c5;			
	text-decoration: none;	
}
 
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 3%;	
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック。ロゴとメニューブロックです。*/
header {
	overflow: auto;height: 100%;
	float: left;	
	width: 18%;		
	padding: 0 2%;	/*h2がスイングするので、若干の左右の余白を作っておきます*/
	position: fixed;	
	top: 3%;		
	left: 1%;		
}
.c1 header {
	display: none;
}
/*ロゴ画像*/
header #logo img {
	width: 35%;
	position: absolute;z-index: 1;
	left: 10%;	
	top: 0px;	
	border-radius: 50%;	
}


/*h2タグ設定（ロゴの下に重なった左右にスイングする見出し）*/
header h2 {
	animation-name: rotate1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 8S;		/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-iteration-count: infinite;	/*実行する回数。「infinite」は無限に繰り返す意味。*/
	animation-timing-function: linear;		/*アニメーションのパターン。速度を一定に変化させる指定。*/
	background: url(../images/menu1.png) no-repeat center center / 100% 100%;
	text-align: center;	
	color: #fff;		
	font-size: 2vw;		
	padding: 30% 0;		
	margin: 20px 0;		
}
/*h2タグ内の小文字*/
header h2 span {
	display: block;
	font-size: 13px;	
}




/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	font-size: 20px;	
	text-align: center;	
}
/*メニュー１個あたりの設定*/
#menubar a {
	text-decoration: none;display: block;
	padding: 10px 0;	
	border: 1px solid transparent;	/*マウスオン時にボーダーを出す際に、位置がずれないよう透明(transparent)のボーダーを引いておく。*/
	border-radius: 10px;	
	margin-bottom: 10px;	
}
/*色文字の指定（最初のspanタグ）*/
#menubar li span:first-child {
	color: #20b0c5;	
}
/*小文字の指定（最後のspanタグ）*/
#menubar li span:last-child {
	display: block;
	font-size: 12px;	
	color: #999;		
}
/*マウスオン時*/
#menubar a:hover {
	border: 1px solid #20b0c5;	
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}
#mainnav a{
	color: #20b0c5;  
}
#mainnav li{
    margin-right:50px;
    display:inline;
}



/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック*/
#main {
	float: right;		
	width: 76%;			
	padding: 40px 0;	
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-delay: 0.8s;	/*出現するタイミング（秒後）*/
	position: relative;
}
.c1 #main {
	float: none;
	width: auto;
}
/*メインコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	color: #20b0c5;	
	margin-bottom: 20px;	
	padding: 0 20px 10px;	
	font-size: 36px;		
	background: url(../images/line1.png) repeat-x left bottom / 400px;	
	text-align: center;	
}
/*メインコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	color: #20b0c5;
	margin-bottom: 20px;	
	font-size: 24px;		
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}
#main h4{
    color:red;
    font-size:1.2em;
}

/*listブロック（corse.html コース紹介ページで使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list, .list2{
	overflow: hidden;position: relative;
	border: 5px solid #20b0c5;	
	border-radius: 10px;
	padding: 20px;				
	margin-bottom: 20px;		
}

#main .list a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;	
	margin: -20px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*マウスオン時*/
#main .list a:hover {
	background: #e9fcff;	
}

/*h4見出しタグ設定*/
#main .list h4,#main .list2 h4 {
	color: #20b0c5;		
	font-size: 22px;	
}
/*リンク設定がある場合のh4見出しタグの追加設定*/
#main .list a h4::before {
	display: inline-block;text-align: center;
	content: "→";	/*このテキストを出力させます。変更しても構いませんが機種依存文字は化ける可能性があるので使わない。*/
	background: #20b0c5;	
	color: #fff;			
	width: 24px;			
	line-height: 24px;		
	font-size: 12px;		
	border-radius: 50%;		
	margin-right: 5px;		
	position: relative;bottom: 3px;	
}
/*画像*/
#main .list figure, .list2 figure{
	float: left;	
	width: 30%;		
    margin-right: 20px;	
}
/*段落タグ*/
#main .list p .list2{
	padding: 0;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: right;	
	width: 75%;		   
}
  

/*コースページ　PDFの並び*/
.flex{
   display: flex; 
   
}
.flex-item{
  
}




/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
.sub {
	float: left;	
	width: 20%;		
}
/*h2見出しタグ設定*/
.sub h2 {
	margin-bottom: 0;
	letter-spacing: normal;
	font-size: 16px;
	background: #20b0c5;	
	color: #fff;			
	text-align: center;		
	padding: 10px 0;		
	border-radius: 5px 5px 0px 0px;	
}
.sub h2::first-letter {
	border: none;padding: 0;
}
.sub h2 + p,
.sub h3 + p {
	margin-top: 0;
}


/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	text-decoration: none;display: block;
	padding: 0 10px;	/*上下、左右のボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけ消す*/
	background: #fff;		/*背景色*/
	color: #666;	/*文字色*/
}
.sub .submenu li a:hover {
	color: #20b0c5;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	overflow: hidden;
	font-size: 12px;	
	line-height: 1.4;	
	background: #fff;	
	border: 1px solid #ccc;	
	border-top: none;	
	padding: 5px;		
	color: #666;		
}
.sub .list a {
	color: #666;		
}
/*最後のlistボックスへの設定*/
.sub .list:last-of-type {
	margin-bottom: 20px;	
}
/*画像*/
.sub .list figure {
	float: left;		
	width: 30%;			
	margin-right: 5px;	
}
/*h4見出しの文字色*/
.sub .list h4, .sub .list h4 a {
	color: #20b0c5;
}





.example1{
    text-align: right;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	
	font-size: 12px;	
}
/*リンクテキスト*/
footer a {text-decoration: none;}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
dl.faq {
	padding: 0 20px;	
}
/*質問（Q）ブロック*/
dl.faq dt {
	color: #20b0c5;		
	font-weight: bold;	
	background: url(../images/faq_q.png) no-repeat left top / 20px;	
	padding-left: 40px;		
	margin-bottom: 10px;	
}
/*回答（A）ブロック*/
dl.faq dd {
	background: url(../images/faq_a.png) no-repeat left top / 20px;	
	padding-left: 40px;		
	margin-bottom: 20px;	
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;	
	border-bottom: none;	
	text-align: left;		
	font-weight: bold;		
	padding: 10px;			
	background: #eff0d1;	
}
/*テーブル途中に見出しを使いたい場合（※tamidashi）*/
.ta1 .tamidashi {
	width: auto;
	background: #eff0d1;	
	text-align: left;		
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	
	padding: 10px 15px;	
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 40%;		
	text-align: center;
}
/*テーブル イベント
---------------------------------------------------------------------------*/
.ta2{
    width: 100%;
	border: 5px solid #20b0c5;	
	border-radius:10px;	
	border-collapse: separate;
}
.ta2 th{		
	text-align: center;	
	width: 10%;
}
.ta2 td, .ta2 th {
    border: 1px dotted #20b0c5;
	padding: 10px 15px;	
	word-break: break-all;	
}
.ta2 td{
	width:50% ;
}
.ta2 caption{
    color:#20b0c5
}
.ta2 td img{
	width: 30%;
}


/* 一日の流れ　time-schedule */
.time-schedule {
  min-width: 80%;
  max-width: 80%;
  list-style: none;
  margin: 0 auto 0 6em;
  padding-left: 20px;
  border-left: 6px solid #20b0c5;
  box-sizing: border-box;
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  padding: 5px 0;
  position: relative;
}

.time-schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 15px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0;
  background: #20b0c5;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.time-schedule .sch_box {
  display: inline-block;
  width:auto;
  margin-left: 30px;
  padding: 15px 10px 15px 10px;
  vertical-align: middle;
  background: #efefef;
  box-sizing: border-box;
  border-radius: 6px;
}
.time-schedule .sch_box img{
	width: 30%;
}
.time-schedule .sch_title {
  font-size: 16px;
  font-weight: 700;
}

.time-schedule .sch_tx {
  font-size: 0.8em;
  font-weight: normal;
}



   
/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		
	border-radius: 3px;		
	background: #eee;
    color:#20b0c5
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
  transform: translateY(-5px);
}
 
/*input,textarea共通*/
input,textarea {
	outline: none;
	border: 1px solid #ccc;	
	background: transparent;
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	background: #fff;
    
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 100px;		/*幅*/
	line-height: 100px;	/*高さ*/
	bottom: 30px;		/*下からの配置場所指定*/
	right: 1%;			/*右からの配置場所指定*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;		/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop img {
	opacity: 0.7;
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop img:hover {
	opacity: 1;
}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	
	color: #FFF;		
	font-size: 70%;		
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 55px;
}



.cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_breadcrumb {
	margin: 1em auto;
	padding: 1em 2em;
	border-radius: 0.5em;
}
.cp_breadcrumb a {
	text-decoration: none;
	
}
.cp_breadcrumb .breadcrumbs {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.cp_breadcrumb li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	
}
.cp_breadcrumb li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.cp_breadcrumb li:last-child {
	margin-right: 0;
	padding-right: 0;
	
}
.cp_breadcrumb li:last-child::before {
	content: normal;
}



/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.clear {clear: both;}
.color1, .color1 a {color: #2196F3;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin: 10px;}
img.fl {float: left;margin: 10px;}
.fr {float: right;}
.fl {float: left;}
.big1 {font-size: 28px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.clearfix::after {content: "";display: block;clear: both;}
.ofh {overflow: hidden;}






h5 {
  background: #dfefff;
  box-shadow: 0px 0px 0px 5px #dfefff;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
    width:370px;
   
}

.h5{
    color: #2196F3;     
}

.step{
    float:left;
}

.List-Item {
  display: inline;
  font-size: 14px;
}
.List-Item::after {
  content: '＞';
  padding: 0 16px;
}
.List-Item:last-child::after {
  content: '';
}
.List-Item-Link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
	line-height: 1.5;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック。ロゴとメニューブロック*/
header {
	position: absolute;
	top: 0%;
	left: 0%;
}

header #logo img {
	width: 80%;
	top: 0px;
	left: 0px;
	transform: rotate(-15deg);
}
/*h2タグ設定（ロゴの下に重なった左右にスイングする見出し）*/
header h2 {
	display: none;	
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
}
/*メインコンテンツのh2タグ設定*/
#main h2 {
	font-size: 20px;		/*文字サイズ*/
}
/*メインコンテンツのh3タグ設定*/
#main h3 {
	font-size: 18px;		/*文字サイズ*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 0px 20px;	/*上、左右、下への余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: auto;height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 1;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	font-size: 20px;
	color: #fff;	/*文字色*/
}
/*小文字の指定（最後のspanタグ）*/
#menubar-s li span:last-child {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;
	z-index: 1;
	top: 20px;	/*上からの配置場所指定*/
	right: 3%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border-radius: 50%;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #20b0c5 url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #20b0c5 url(../images/icon_menu.png) no-repeat center bottom/50px;
}
  
    
    /*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	line-height: 2;		
	padding: 10px;		
}
/*画像*/
.sub .list figure {
	width: 15%;			
	margin-right: 10px;	
}
  
    
/*listブロック（corse.html コース紹介ページで使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list,#main .list2 {
	border: 3px solid #20b0c5;	
	padding: 10px;				
}
#main .list a {
	padding: 10px;	
	margin: -10px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*h4見出しタグ設定*/
#main .list h4, #main .list2 h4{
	font-size: 18px;	
}
/*画像*/
#main .list figure,#main .list2 figure {
	margin-right: 10px;	
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の余白の変更*/
.ta1 caption,
.ta1, .ta1 td, .ta1 th {
	padding: 5px;
}
/*ta1の左側ボックス*/
.ta1 th {
	font-size:0.6em;
}
.ta2 caption,
.ta2, .ta2 td, .ta2 th {
	padding: 5px;
}
/*ta1の左側ボックス*/
.ta2 th {
	width: 15%;
}
.ta2 td{
        width:100px;
    }    
.ta2{
    width:100%;
    }
    
.ta2 td img{
	width: 60%;
}    
    
/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 25px;
}
ol {
	padding: 0 0px 20px 25px;
}

.time-schedule .sch_box img{
	width:60%;
}	
	
	
	
/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 18px;letter-spacing: normal;}

}
