@charset "utf-8";



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

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

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #000000;	/*全体の文字色*/
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;	/*フォント種類*/
	font-size: 18px;		/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #ffffff;	/*背景色*/
	-webkit-text-size-adjust: none;
	font-weight: 500;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
    text-decoration: none;
	font-weight: bold;
}
a:hover {
	color: #f5c720;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
.container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
    position: relative;
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	padding: 20px;
}
header p{
    font-family: 'Noto Serif JP', serif;
}
header h2{
    font-size: 120%;
    margin-bottom: 30px;
    color: #A9DAE8;
    
}
header h2 span{
    color:#F8C9C7;
}
/*トップページのヘッダーブロックへの追加指定*/
.home header {
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 25%;		/*画像の幅*/
    margin:30px;
}
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
/*	position: absolute;*/
	z-index: 1;
    width: 15%;
    left: 9%;
    top: 50px;
/*	width: 27%;	/*画像の幅*/
/*	left: 9%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
/*	top: 75px;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}
.mainimg{
/*	max-width: 1600px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
    position: relative;
}
/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 18px;	/*文字サイズ*/	
}
#menubar ul{
    background-color: #A9DAE8;
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 5px;			/*上下、左右へのメニューの外側にとる余白*/
}
#menubar li a {
	text-decoration: none;display: block;
	padding: 20px;	/*上下、左右へのメニューの内側にとる余白*/
    color: #202A52;
}
/*現在表示中(current)と、マウスオン時の指定*/
#menubar li.current a, #menubar li a:hover {
	background-color: #F8C9C7;	/*背景色*/
    color: #202A52;
	/* color: #fff;			文字色 */
	/*border-radius: 100px;	/*角丸のサイズ。大きめであれば適当で構いません。この１行を削除すると、長方形になります。*/
}

#menubar li img {
    width:40px;
}
/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	/*overflow: hidden;*/
	padding: 50px 3%;	/*上下、左右へのブロック内の余白*/
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
.contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 36px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	/*letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	line-height: 1.5;		/*行間*/
    color: #000000;
}
.contents h2 span {
	display: inline-block;
	background: url("../images/line2.png") repeat-x center bottom / auto 14px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 10px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
.contents h3 {
	clear: both;
	font-size: 36px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	line-height: 1.5;		/*行間*/
}.contents h4 {
	font-size: 21px;		/*文字サイズ*/
	line-height: 1.5;
	/*margin-left: 25px;/*行間*/
	margin-top: 15px;
	text-align: center;
}
/*コンテンツ内にあるp(段落)タグ設定*/
.contents p {
	padding: 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -10px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	
	font-size: 100%;		/*文字サイズ*/
	margin-bottom: 30px;	/*ブロックの下に空けるスペース*/
}
/*各ブロックごとの設定（サムネイルタイプへの追加指定）*/
.list.thumb {
	width: 33%;			/*画像幅*/
	margin: 0 1% 30px;
	padding-top: 1%;
	float: left;		/*画像を左に回り込み*/
	text-align: center;
	
}

@media screen and (max-width:480px){
	.list.thumb {
	width: 100%;
	float: none;
	}
}

		
/*画像の設定*/
.list img {
	border-radius: 13%;	/*円形にする指定*/
	width: 20%;			/*画像の幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%;	/*画像の右に空けるスペース*/
}
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	margin: 0;
	float: none;
	width: 78%;		/*画像の幅*/
}
/*マウスオン事*/
.list a:hover img {
	transition: 0.5s;
	opacity: 0.7;	/*透明度。70%色が出た状態。*/
}
/*マウスオン事（サムネイルタイプへの追加指定）*/
.list.thumb a:hover img {
	transform: scale(1.05);	/*ほんの少し画像を大きくする指定*/
}
/*h4タグ*/
.list h4 {
	font-size: 140%;	/*文字サイズ*/
}
/*h4タグ（サムネイルタイプへの追加指定）*/
.list.thumb h4 {
	font-size: 100%;	/*文字サイズ*/
}
/*p(段落)タグ*/
.list p {
	padding: 0 45px !important;
	line-height: 2;
	text-align: left;
}

/*option1（productページのブロックの右上に斜めに配置している帯）
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(93px,-45px);	/*45度回転。右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	background: #b6cc69;	/*背景色*/
	color: #fff;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広くとる*/
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅、0.15は色が15%出た状態の事。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #000000;}
footer .pr {display: block;}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	height: 140px;	/*高さ。内様がこれを超えるとスクロールバーが出ます。*/
	overflow: auto;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
/*	overflow: hidden; */
    position: relative;
	padding: 20px 40px;		/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
}
.bg_1 .box1{
	background: none;
}
.box1 a{
	margin: 10px;
}
.box1 a:hover{
	opacity: 0.7;
}
/*bg1タイプの背景色*/
.bg1 {
	background: #fef4f4;	/*背景色*/
}
/*bg2タイプの背景色*/
.bg2 {
	background: transparent;	/*背景を透明にする*/
	border: 2px dashed #545454;	/*枠線の幅、線種、色*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #545454;	/*下の線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
	background: rgba(0,0,0,0.03);	/*背景色。0,0,0は黒の事で0.03は色が3%出た状態の事。*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 25%;			/*幅*/
}

/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #A9DAE8;
	background: #A9DAE8;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
	cursor: pointer;
    transition: 0.7s;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #A9DAE8;
}

/*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;
	position: fixed;
	animation-name: opa1;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	/*line-height: 80px;	/*ボタンの高さ*/
	bottom: 30px;		/*画面の下からの配置場所指定*/
	right: 1%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	/*border: 1px dashed #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
/*	border: 1px dashed #b4c19a;			/*枠線の幅、線種、色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	font-size: 70%;
	display: inline-block;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.ta1.mb1em {
    table-layout: auto;
    width: 800px;
}
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.mb80 {margin-bottom: 80px;}

.clear {clear: both;}
.color1, .color1 a {color: #A9DAE8;}
.pr {font-size: 10px;}
.wl {width: 100%;}
.ws {width: 100%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}


.pc {display:block;}
.sh {display:none;}


@media screen and (max-width:1024px){
.contents h2 {
	font-size: 36px;		/*文字サイズ*/
}
#menubar li a {
    text-decoration: none;
    display: block;
    padding: 0px 10px;
}    
}
@media screen and (max-width:830px){
#menubar li {
    margin: 5px;
}
	.ta1.mb1em {
    table-layout: auto;
    width: auto;
}
}
@media screen and (max-width:830px){
#menubar li {
    margin: 5px 0px;
}
}
/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 3.7vw;
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 200px;		/*画像の幅*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	font-size: 100%;
	margin-bottom: 50px;
}
#menubar li a {
	padding: 0px 5px;	/*上下、左右へのメニューの内側にとる余白*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	width: 200px;		/*画像の幅*/
}

/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	padding: 30px 5px;		/*上下、左右へのボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1の左側ボックス*/
.ta1, .ta1 td, .ta1 th {
    display: block;
    padding: 0;
}
.ta1 th {
	width: auto;
    display: block;
    text-align: left;
    padding-top: 5px;
}
}



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

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	width: 35%;	/*画像の幅*/
	left: 10%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 8%;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}
	

/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	padding: 0px 3% 0;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
.contents h2 {
	font-size: 24px;		/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
.contents h3 {
	font-size: 18px;		/*文字サイズ*/
	margin-bottom: 10px;
}
/*コンテンツ内にあるp(段落)タグ設定*/
.contents p {
	padding: 0px 10px 30px;	/*上、左右、下への余白*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
    bottom: 10px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 97%;}
.fl {float: none;}
.fr {float: none;}

}


/*topic
---------------------------------------------------------------------------*/
.contents .topic h2{
/*    text-align: left;*/
}
.topic h4{
/*    text-align: left;*/
}
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.topic_text{
/*    border: solid 1px #000;*/
}
.right{
    text-align: right;
}
.topic_bg{
    background-image: url("../images/index/bg1.png");
    background-repeat: no-repeat;
    background-position: 92% 100%;
    background-size: 500px;
	padding-top: 30px;
}
.topic_list{
    margin: 60px 0 30px;
	display: flex;
}
.contents .list h3{
    text-align: center;
    margin: 20px 0;
    clear:none;
    font-size: 22px;
    color: #A9DAE8;
}
@media screen and (max-width:1024px){
.topic_bg{
    background-size: 350px;
}    
}
@media screen and (max-width:830px){
    .topic_bg{
        padding-bottom: 200px;
        background-size: contain;
        background-position: bottom;
    }
.topic li {
    flex-basis: 90%;
    margin: 20px 0;
}
.contents .topic h2{
    text-align: center;
	padding-top: 15px;
}
.topic h4{
    text-align: center;
}
}
@media screen and (max-width:480px){
.topic_bg{
	padding-bottom: 0;
	padding-top: 0;
    }
.contents h4{
    font-size: 16px;
	margin-top: -23px;
}
.topic li {
    flex-basis: 100%;
    margin: 20px 0;
}
	
.topic_list .list.thumb {
    width: 100%;
    float: none;
}
    .topic_list{
        display: block;
    }
    .topic_list .list.thumb{
        width: 100%;
        float: none;
    }
	
	.flex_point{
		dispaplay: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		width: 100%;
		float: none;
	}
}
/*bg
---------------------------------------------------------------------------*/
.bg_img1{
    height:540px;
    background-image: url("../images/index/bg2.png");
    background-size: cover;
}
.bg_img2{
    height:540px;
    background-image: url("../images/index/bg3.png");
    background-size: cover;
}
.bg_img3{
    height:540px;
    background-image: url("../images/index/bg2.png");
    background-size: cover;
}
@media screen and (max-width:1024px){
.bg_img1{
    margin-top: 20px;
    height:270px;
}
.bg_img2{
    margin-top: 20px;
    height:270px;
}
.bg_img3{
    margin-top: 20px;
    height:270px;
}
}
@media screen and (max-width:1024px){
.bg_img1{
    margin-top: 20px;
    height:200px;
}
.bg_img2{
    margin-top: 20px;
    height:200px;
}
.bg_img3{
    margin-top: 20px;
    height:200px;
}
}
/*次回のマルシェ
---------------------------------------------------------------------------*/
.next{
    position: relative;
    padding: 30px;
}
.date{
    position: absolute;
    top: 90px;
    left: 45px;
    z-index: 10;
}
.next_txt, .farmers, .volunteer, .contact, .topic,.parent{
    width: 80%;
    margin: 0 auto;
}
.flag{
	background-image: url(../images/index/flag.png);
    background-repeat: no-repeat;
	background-size: 30%;
	background-position: right 6% top 3%;
}
.next_detail{
    margin-bottom: 30px;
}
.next_detail a{
	text-decoration: underline;
}
.fl{
	flex-basis: 55%;
	margin-top: 50px;
}
.fr{
	flex-basis: 45%;
}
.contents .fr h4,.contents .fr2 h4{
    font-size: 24px;
    line-height: 1.5;
    padding-top: 30px;
}
.fr img{
	border-radius: 30px;
	margin-top: 55px;
}
.fr2{
    flex-basis: 30%;
	margin-top: 60px;
}
.fr2 img{
	border-radius: 30px;
}
.map{
    margin-top: 100px;
}
.spot{
	font-size: 140%;
	font-weight: bold;
	color: #000000;
	/*letter-spacing: 0.25em;*/
    display: inline-block;
	position: relative;
	padding-left: 50px;
}
.spot::before {
	position: absolute;
	left:0;
	content: url("../images/index/icon2.png");
	
}

@media screen and (max-width:1024px){
.date{
    top: 0px;
    left: -25px;
}
}
@media screen and (max-width:830px){
.date{
    top:-20px;
    left: -20px;
    width:250px;
}
.next_txt, .farmers, .volunteer, .contact, .topic,.parent {
    width: 100%;
}
.flag{
        background-position: right 0% top 3%;
}
    
.fl{
	flex-basis: 90%;
}
.fr{
	flex-basis: 90%;
}
.fr2{
    text-align: center;
    flex-basis: 75%;
}
    .fr2 img{
        width:200px;
    }
}
@media screen and (max-width:480px){
.date{
    position: relative;
    top: 0px;
    left: 0%;
    width:150px;
}
    .flag{
        background-position: right 0% top 1%;
}
.next_txt{
    width:100%;
    margin-left: auto;
}
    .next{
	/*	margin-top: -120px;*/
        padding: 10px;
    }
    .contents .next p {
    padding: 0px;
}
    .map{
        margin-top: 40px;
    }
.next_txt, .farmers, .volunteer, .contact, .topic,.parent{
    width: 100%;
}
    .fr,.fl {
    flex-basis: 100%;
	margin-top: -15px;
}

.fr img{
	border-radius: 30px;
	margin-top: 10px;
	margin-left: 2px;
}
.contents .fr h4,.contents .fr2 h4{
    font-size: 18px;
    margin-top: 10px;
}
    .contents .fr2 h4{
    margin-bottom: 20px;
}
	}
/*チームあさいち
---------------------------------------------------------------------------*/
.team h4{
	padding-top: 20px;
	}
.f130{
	font-size: 130%;
	color: #b6cc69;
}
.volunteer .btn, .farmers .btn{
	-webkit-appearance: none;
    outline: none;
    border: 1px solid #b6cc69;
    background: #b6cc69;
    color: #fff;
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 16px;
	display: inline-block;
}
.volunteer .btn:hover, .farmers .btn:hover{
	background: #fff;
    color: #b6cc69;
}
.farmers a{
	text-decoration: underline;
}
.boshu{
	border: dashed 2px #000;
	border-radius: 10px;
	padding: 0 15px 15px;
	text-align: center;
}
.boshu a{
	text-decoration: none;
}
/*banner
---------------------------------------------------------------------------*/
.banner_area .flex{
    justify-content: center;
}
.banner_area .contents{
    padding-bottom: 120px;
}
.banner_area li{
    flex-basis: 450px;
    height: 180px;
}
.banner_area a{
    flex-basis: 450px;
   
    
}
.banner_area a:hover{
	opacity: 0.7;
}
.contact_banner{
    background-image: url("../images/index/contact.png");
}
.sns_banner{
    background-image: url("../images/index/sns_banner.png");
}
.banner_area h2{
    color: #fff;
    font-size: 30px;
    padding-top: 15px;
}

.banner_area .sns_banner ul{
    justify-content: space-around;
}
.banner_area .sns_banner li{
    flex-basis: 50px;
}
.banner_area .sns_banner a{
    margin: 0;
}

@media screen and (max-width:1024px){
.banner_area h2{
    font-size: 30px;
}
.banner_area li{
    flex-basis: 455px;
    height:210px;
}
.banner_area a{
    flex-basis: 455px;
}
    .banner_area .contents{
        padding: 80px 0;
    }
.banner_area .sns_banner ul{
    justify-content: center;
}
.banner_area .sns_banner li{
    flex-basis: 50px;
    margin: 0 20px;
}  
}

@media screen and (max-width:830px){
.banner_area li{
    flex-basis: 325px;
    height: 130px;
}
.banner_area a{
    flex-basis: 325px;
    height: 130px;
}
.banner_area h2{
    padding-top: 20px;
    margin-bottom: 10px;
	font-size: 24px;
}
.banner_area .sns_banner li{
    flex-basis: 40px;
}  
    .contact_banner{
        background-size: cover;
    }
    .sns_banner{
        background-size: cover;
    }
    
}
@media screen and (max-width:480px){
.banner_area .flex{
    justify-content: center;
}
.banner_area a{
    margin-right:0px;
    margin-bottom: 30px;
}
.banner_area .contents{
    padding: 40px 0;
    }
}
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
/*フッター
---------------------------------------------------------------------------*/
.footer_left{
    width:70%;
}
.footer_left img{
    width: 100%;
}
.footer_left li{
    flex-basis: 45%;
}
.footer .contents{
    padding-bottom: 100px;
}
.corp{
	text-decoration: underline;
}
.footer_right{
    width: 30%;
}
.footer_right ul{
    padding: 20px 0;
}
.footer_bg{
    background-color: #f5f5f5;
}
.footer_bg p{
    color: #000;
	font-weight: bold;
	
}
.footer_bg a{
    color: #000;
	font-weight: bold;
}
.footer_bg a:hover{
    color: #A9DAE8;
}
footer{
    background-color: #545454;
    color: #fff;
}
@media screen and (max-width:480px){
.footer_left{
        width:95%;
    }
.footer_left img{
	margin: 0 auto 20px;
	width: 90%;
	display: block;
    }
.footer_left li {
    flex-basis: 100%;
}
.footer_right {
    width: 100%;
}
    .footer_right ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer_right a{
        flex-basis: 45%;
    }
}



.next_date1{
    position: relative;
}
.next_date2{
    position: absolute;
    bottom:50px;
    right: 90px;
    z-index: 100;
	width: 300px;
}
.next_date2:hover {
    opacity: 0.7;
}
.fade{

  animation: fadeIn 5s ease 0s 1 normal;

}
.toplogo{
    font-size: 155%;
    margin-bottom: 30px;
    color: #A9DAE8;
    line-height: 38.5px;	
}
.toptext{
	margin-bottom: 35px;
}
.line{
    position: fixed;
    bottom: 120px;
    right: 0%;
    z-index: 101;
    width: 70px;
}
@keyframes fadeIn { /*animetion-nameで設定した値を書く*/

  0% {opacity: 0} /*アニメーション開始時は不透明度0%*/

  100% {opacity: 1} /*アニメーション終了時は不透明度100%*/

}
@media screen and (max-width:1490px){
.next_date2{
    right: 2%;
	width: 280px;
}
}

@media screen and (max-width:1320px){
.next_date2{
    right: 1%;
	width: 250px;
}
}

@media screen and (max-width:830px){
.next_date2{
    width: 200px;
	top: 500px;
	right: 4%;
}
}

@media screen and (max-width:1241px){
.next_date2{
    width: 250px;
    top:auto;
    bottom: 15px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
    .next_date1 {
    position: relative;
    padding-bottom: 170px;
}
    
}


@media screen and (max-width:480px){
.line{
    bottom: 70px;
    width: 50px;
}
.footer .contents {
    padding-bottom: 100px;
}
footer {
    padding: 0 10px;
}
}







/*樽谷追記
---------------------------------------------------------------------------*/
.qualitypoint_bg{
	background-color: #fff;
	
}
.flex_point{
	display: flex;
	justify-content: space-around;
	margin-top: 40px;
}

.center{
	text-align: center;
}


.fl_con2{
	align-content: center;
}

.c_3points{
	color: #A9DAE8;
}

.contents-wrap{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	/* margin-top:100px; */
	margin-top:50px;
}

/* .contents-wrap:last-child::before{
	content:"";
	position: absolute;
	background-image: url("../images/index/icon06.png");
	background-size: contain;
	width:50px;
	height:50px;
	background-repeat: no-repeat;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.contents-wrap:nth-child(2)::before{
	content:"";
	position: absolute;
	background-image: url("../images/index/icon01.png");
	background-size: contain;
	width:50px;
	height:50px;
	background-repeat: no-repeat;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.contents-wrap:nth-child(3)::before{
	content:"";
	position: absolute;
	background-image: url("../images/index/icon02.png");
	background-size: contain;
	width:50px;
	height:50px;
	background-repeat: no-repeat;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.contents-wrap:nth-child(4)::before{
	content:"";
	position: absolute;
	background-image: url("../images/index/icon03.png");
	background-size: contain;
	width:50px;
	height:50px;
	background-repeat: no-repeat;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.contents-wrap:nth-child(5)::before{
	content:"";
	position: absolute;
	background-image: url("../images/index/icon04.png");
	background-size: contain;
	width:50px;
	height:50px;
	background-repeat: no-repeat;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.contents-wrap:nth-child(6)::before{
	content:"";
	position: absolute;
	background-image: url("../images/index/icon05.png");
	background-size: contain;
	width:50px;
	height:50px;
	background-repeat: no-repeat;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
} */

.contents-wrap:nth-child(odd) {
	flex-direction: row-reverse;
}
.contents-textquality {
	width: 64%; /*flex: 2;*/
}
.contents-imgquality {
	width: 35%; /*flex: 1;*/

}

.contents-textquality h2 {
	margin-bottom: 2rem;
	font-size: 27px;
	margin-top: 46px;
	display: inline-block;
	margin-left: 20px;
	margin-bottom: 9px;
	position: relative;
	padding-left: 60px;
}

.contents-textquality h2::before {
	position: absolute;
	left:0;
	content: url("../images/index/icon2.png");
	
}

.contents-imgquality img {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 50px;
}
.bg_1{
    background-color: #F0FFFF;
	/* background-image: url("../images/index/bg_1 .png");
	background-size: cover; */
}

.copy h4{
	font-size: 20px;
	line-height: 2.5;
	padding-bottom: 40px;
}

@media screen and (max-width: 480px){



	.contents-textquality,
	.contents-imgquality {
		width: 100%; /*flex: 1;*/
	}
    .contents-textquality{
        margin-bottom: 50px;
    }
	.contents-imgquality {
        width: 75%;
    }
.contents .contents-textquality p {
    padding: 0px 10px 10px;
}

	.contents-textquality h2 {
		text-align: center;
	}
	
.contents-wrap{
	margin-top: 10px;
    flex-wrap: wrap;
        justify-content: center;
	}
.contents-wrap:nth-child(2)::before{
	background: none;
	}
.contents-wrap:nth-child(3)::before{
	background: none;
	}
.contents-wrap:nth-child(4)::before{
	background: none;
	}
.contents-wrap:nth-child(5)::before{
	background: none;
	}
.contents-wrap:nth-child(6)::before{
	background: none;
	}
.contents-wrap:last-child::before{
	background: none;
	}
}

	
	 /*.pp{
		text-align: center;
		
	}*/
	
.flex_pp{
	display: flex;
	flex-wrap: wrap;
}

.textpp{
	width: 48%;
	position: relative;
}
.textpp li{
    position: relative;
    padding-left: 70px;
	padding-top: 25px;
}
.textpp li::before{
    position: absolute;
    left: 35px;
	top: 33px;
    content:"";
	background-image: url("../images/index/icon3.png");
	width:20px;
	height:20px;
	background-size: contain;
    
}
.nambar{
	position: absolute;
	top: 25px;
	left: 60px;
	width: 40px;
}	
.ppimg{
	width: 45%;
}


.discount{
	position: absolute;
	width: 188px;
	top: -89px;
    right: 10px;
	
}

.contents .corce{
	font-size: 30px;
    text-align: left;
    margin-left: 140px;
	margin-top: 20px;
}

.contents .lesson{
	font-size: 24px;
	text-align: left;
	line-height: 1.5;
	color: #000000;
	margin-left: 21px;
	border-bottom: 2px solid #A9DAE8;
	display: inline-block;
	
}
.contents .map .lesson{
    border-bottom: none;
}	
.ppimg{
	max-width: 100%;
	margin-left: 90px;
	margin-top: 90px;
	
}




.lesson-title {
    display: flex;
    align-items: baseline;
}
.flex_pp.lesson_pp {
    align-items: center;
    justify-content: space-around;
}
.ta_price.l-price {
    justify-items: center;
    border-collapse: inherit;
    font-weight: bold;
    border-spacing: 0px;
    border-radius: 28px;
    background-color: #f5f5f5;
}

.ta_pp.l-price-pp {
    padding: 30px 50px;
}
.ta_pp.l-price-pp {
    padding: 30px 50px;
    margin: 0;
    font-size: 100%;
}
.lesson-title p.title-no {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    padding: 0 45px 0 50px;
    color: #d6ae3c;
}
h2.title-corce {
    font-size: 30px;
    text-align: left;
}
.ppimg-txt p {
    padding-top: 0px;
}

.lesson-img {
    width: 45%;
}
.lesson-br {
    display: none;
}

@media screen and (max-width: 830px){
    .lesson-img {
    width: 90%;
    margin: 40px 0 0;
}
}


@media screen and (max-width: 480px){
.textpp li::before{
    position: absolute;
    left: 20px;
	top: 18px;
    content:"";
	background-image: url("../images/index/icon3.png");
	width:20px;
	height:20px;
	background-size: contain;
    
}
.textpp li{
    position: relative;
    padding-left: 55px;
	padding-top: 14px;
}	

.ta_pp.l-price-pp {
    padding: 10px 25px;
}
.flex_pp.lesson_pp .textpp {
    padding-top: 0;
    margin-right: 0px;
}
.lesson-title {
    flex-direction: column;
    align-items: center;
}
h2.title-corce {
    text-align: center;
}
.lesson-br {
    display: block;
}
}

@media screen and (max-width: 1281px){
.ppimg{
	max-width: 100%;
	margin-left: 60px;
	margin-top: 40px;
	
}
}

.ta_price{
	position: relative;
}
	

.ta_pp{
	background-color: #f5f5f5;
	margin-top: 100px;
}

.ta_pp th{
	padding: 10px 0px;
	border-right: 1px solid #000;
	width: 130px;
	
}

.ta_pp td{
	padding: 10px 30px;
}

.ta_pp{
	padding: 30px 0;
	border-collapse: inherit;
	font-size: 15px;
	font-weight: bold;
	border-spacing: 0px;
	border-radius: 28px;
	
}

.flow_bg{
	background-color: #f5f5f5;
}

@media screen and (max-width: 480px){

}
		


.s{
	font-size: 15px;
}


.flex_about{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.map{
	width: 45%;
	margin-left: 10px;
}
.ta_about{
	align-self: center;
	width: 45%;
	margin-top: 100px;
	margin-left: 60px;
}

.ta_about th{
	border-right: 1px solid #000;
	padding: 4px 15px;
	width: 110px;
	
}

.ta_about td{
	padding: 0px 15px;
}

.flex_teacherabout{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	
}
.pd45{
    padding: 0 45px;
    margin-bottom: 30px;
}
.flex_sb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.qualification{
	width: 45%;
}	
	
	
.career{
	width: 45%;
	padding: 20px 0px 52px 100px;
	
}
.text_tq{
	text-align: left;
	display: inline-block;
	font-weight: bold;
	font-size: 140%;
	margin-left: 21px;
	position: relative;
	padding-left: 50px;
}
.text_tq::before {
	position: absolute;
	left:0;
	content: url("../images/index/icon2.png");
	
}
.text_tq2{
	margin-left: 33px;
}
.fl_teacher{
	flex-basis: 55%;
	margin-top: 50px;
}
.fr_teacher{
	border-radius: 30px;
	margin-top: 95px;
}
.ts{
	font-size: 15px;
	margin-top: -40px;
	margin-left: 9px;
}

.teacher3{
	margin-bottom: -25px;
}
.ex{
	 text-decoration:underline;
	text-decoration-color:#000;
}
.bg3{
	background-color: #fef4f4;
    border-radius: 30px;
}
.bg4{
    background-color: #F0FFFF;
}
.box5 .flex{
    align-items: center;
}

.flex_covid19{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 30px;
	margin-bottom: -60px;
}
.covid_info{
	width: 25%;
	margin: 31px 0px 0px;
	padding-top: 4%;
	float: left;
	text-align: center;
	border: 1px solid #A9DAE8;
	border-radius: 8px;
	background: #fff;
	margin-bottom: 2%;
	padding: 20px;
	
}
.covid19{
	display: block;
    background: #A9DAE8;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    padding: 0px 0 15px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 0em;
	margin-top: 7px;
}
.contents .covid_info h4 {
	padding-bottom: 7px;
	padding-top: 7px;
	margin-top: 10px;
}
.covidimg{
	width: 200px;
	
}
.tel a{
    color:#000;
}

@media screen and (max-width: 480px){
	
.pd45{
    padding: 0;
}
	.career{
		width: 100%;
		padding: 0 0 0 0;
		margin-top: -30px;
	}
	.qualification{
	    width: 100%;
		margin-bottom: 10px;
}	
	
	
	
	.map{
	width: 100%;
	
}
	.ta_about{
		width: 100%;
		margin: 20px 0 0;
	}
	.ts{
	font-size: 11px;
}

	.flex_covid19{
		margin-top: -15px;
	}
	.covid_info{
		width: 100%;
		margin: 26px 38px 2px;
		padding: 31px;
	}
	.contents .covid19{
	    padding: 0px 0px 0px;
		margin-bottom: 0%;
	    padding-top: 5px;
        margin-top: 5px;
}
	.contents h4{
		font-size: 20px;
		line-height: 1.5;
	}
	
}
@media screen and (max-width: 958px){
.map{
	width: 100%;
	text-align: center;
	
}
	.ta_about{
		width: 100%;
		margin: 20px 0 0;
	}
}


.bg_pp{
	background-color: #fffff0;
}





.contactform{
	margin-bottom: 100px;
}

.btn{
	text-decoration: none;
    padding: 22px 27px;
    width:400px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
	color: #000;
    display: inline-block;
    background-color: #F5F5F5;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 50px;
}

.btn:hover{
    color: #fff;
    background-color: #f0bbc7;


}















/*問い合わせページ
---------------------------------------------------------------------------*/
.contact a{
	text-decoration: underline;
}
.contactform{
    text-align: center;
}
.contactform .btn, .news .btn{
    position: relative;
}
.contactform .btn::after, .news .btn::after{
    position: absolute;
    content: "▶";
    right:10%;
    color: #A9DAE8;
    transition: 0.7s;
}
.contactform .btn:hover::after{
    content: "▶";
    right:10%;
    color: #fff;
}

.flex_point .item::after{
    content: "▶";
    font-size: 30px;
    position: absolute;
    top: 30%;
    right: -20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	color: #f0bbc7;
	
    
}
.item{
	position: relative;
}
.flex_point .item:last-child::after{
    content: "";
    display: none;
}
.list.item p{
    text-align: center;    
}
.flex_point .item img{
    margin-bottom: 20px;
}
.contents .c_3points{
    letter-spacing: 1.5px;
	margin-bottom: -15px;
}
.contents .map .lesson{
    text-align: center;
    color:#f0bbc7;
    display: block;
}


@media screen and (max-width: 1024px){
    .list p {
    padding: 0 25px!important;
    line-height: 2;
    text-align: left;
}
    .discount{
	position: absolute;
	width: 120px;
	top: -50px;
    right: 10px;
	
}
    .nambar {
    position: absolute;
    top: -10px;
    left: 0px;
    width: 75px;
}
    .ta_about {
    margin-left: 0px;
}
}

@media screen and (max-width: 830px){
.fr img {
    margin-left: 0px; 
}
    .textpp {
    width: 100%;
}
    .ppimg {
    width:100%;
}
    .flex_teacherabout {
    margin-top: 20px;
    margin-left: 0px;
}
    .map {
    width: 100%;
    margin-left: 0px;
}
    .ta_about {
    width: 100%;
    margin-top: 50px;
    margin-left: 0px;
}
    .banner_area li {
    flex-basis: 325px;
    height: auto;
}
    .contactform {
    margin-bottom: 0px;
}
    .banner_area a {
    flex-basis: 325px;
    height: auto;
}
    .ta_pp {
    margin-top: 30px;
}
    .ppimg {
    margin-left: 0px;
    margin-top: 0px;
}
    .contents .corce {
    margin-left: 90px;
}
	.btn {
    width: auto;
}
}
@media screen and (max-width: 480px){
    
	.textpp{
		width: auto;
		margin-right: 10px;
        padding-top: 80px;
	}
    .contents .corce {
    margin-left: 3px;
	margin-top: -25px;
	text-align: center;
}
	.ppimg{
	width: auto;
	
}
	.corce{
		width: auto;
		text-align: center;
	}
	
	.corceimg{
		margin-left: -21px;
		margin-bottom: 14px;
		
	}
	
	.nambar{
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 35px;
}
	
	.discount{
}
	
	
	.ta_pp{
	margin-right: 0px;
    margin-top: 18px;
    margin-left: -40px;
	}
	
	.ta_pp th {
	width: 105px;
	}
    .banner_area a {
    flex-basis: auto;
    height: auto;
        width:auto;
        padding: 10px 40px;
}
    .contactform .btn::after {
    position: absolute;
    content: "▶";
    right: 2%;
    color: #A9DAE8;
    transition: 0.7s;
}
    .corceimg {
    margin-left: 0px;
}
    .ta_pp {
    margin-left: 0px;
}
    .contents-textquality h2 {
        font-size: 21px;
    margin-top: 10px;
        margin-left: 10px;
        margin-bottom: 15px;
}
    .contents-imgquality img {
    margin-top: 0px;
}
    .contents h2 span {
    padding: 10px;
}
    .spot {
    font-size: 21px;
}
    .qualitypoint_bg {
    background-color: #ffffff;
        padding-top: 50px;
}
    .contents .lesson {
    margin-left: 10px;
        margin-bottom: 25px;
}
    .discount {
    width: 100px;
    top: -20px;
}
    .text_tq {
    font-size: 18px;
    margin-left: 10px;
}
    .flow_bg {
        padding-top: 5px;
}
    .list.item{
        margin-bottom: 70px;
    }
    .flex_point .item::after {
    content: "▼";
    font-size: 30px;
    position: absolute;
    right: auto;
    top:auto;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #f0bbc7;
}
    .footer_bg {
        padding-top: 50px;
}
    .footer_right a {
    flex-basis: 100%;
}
    .footer_right ul {
    text-align: center;
}
	.ta1.mb1em {
    display: flex;
    justify-content: center;
}
    .bg3 {
}
}

	
	
	
	
.contents .pp_text{
	text-align: left;
	margin-left: 21px;
}

#logo_contact{
	width: 300px;
	margin: 30px auto;
}

.table_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.table_flex_text{
    width:100%;
}
.table_flex_time{
    width:100%;
}
@media screen and (max-width: 1360px){
    
}



.lesson_point li{
    padding-left: 25px;
    margin: 0 20px;
    position: relative;
}
.lesson_point li:first-child{
    padding-left: 0px;
}
.lesson_point li::before{
    content: "●";
    position: absolute;
    left: 0;
}
.lesson_point li:first-child::before{
    content: none;
}
@media screen and (max-width: 480px){
.lesson_point li{
    padding-left: 20px;
    margin: 0 10px;
}
}
.mt50{
    margin-top: 50px;
}

@media screen and (max-width: 480px){
.mt50 {
    margin-top: 0px;
}
}

.parent p{
    position: relative;
    padding-left: 60px;
}
.parent p::before{
    position: absolute;
    content: "";
    top:24px;
    left:0;
    width:50px;
    height:60px;
    background-size: contain;
    background-repeat: no-repeat;
}
.parent p:nth-child(2)::before{
    background-image: url("../images/index/icon4.png");
}
.parent p:nth-child(3)::before{
    background-image: url("../images/index/icon5.png");
}
.parent p:nth-child(4)::before{
    background-image: url("../images/index/icon6.png");
}

@media screen and (max-width: 480px){  
    .parent{
        padding: 30px 0;
    }
.parent p{
    position: relative;
    padding-left: 45px;
}
.parent p::before{
    width:40px;
    height:50px;
    top:5px;
    left:0;
}
}
.w800{
    max-width: 850px;
    margin: 0 auto;
}
.contents .privacy h4 {
    padding-bottom: 0px;
    margin-top: 15px;
}


/*2024年1月修正分
---------------------------------------------------------------------------*/
.c{
    text-align: center;
}
.w1000{
    max-width: 1000px;
    margin: 0 auto;
}
.teacher .text_tq{
    font-size: 24px;
    padding-left: 45px;
    margin-left: 0;
}
.teacher .text_tq::before {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: "";
    background-image: url("../images/index/icon2.png");
    width: 40px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
}
.teacher_bg{
    background-color: #F0FFFF;
}
.teacher_box{
    display: flex;
    flex-wrap: wrap;
}
.teacher_box_img{
    width: 50%;
}
.teacher_box_text{
    width: 45%;
    margin-left: 5%;
}
.contents .teacher_box_text h4{
    text-align: left;
}
.contents .teacher_box_text p{
    font-size: 20px;
}
.contents .teacher_box_text p span{
    font-size: 18px;
}
.teacher_title{
    position: relative;
    display: inline-block;
    padding: 0 105px;
}
.teacher_title::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../images/index/decoration1.png");
    width: 100px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
}
.teacher_title::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../images/index/decoration2.png");
    width: 100px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
}
.h4_border{
    border-bottom: solid 2px #c59815;
    padding-bottom: 5px;
    margin-bottom: 20px;
    
}
.teacher h4{
    display: inline-block;
    position: relative;
    padding-left: 27px;
}
.teacher h4::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../images/index/img1.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 26px;
}
.contents .teacher_box_text p {
    padding: 0;
}
.teacher_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.teacher_flex li{
    width: 43%;
}
.contents .teacher_flex p{
    padding: 0;
}
.teacher h5{
    font-size: 24px;
    line-height: 1.5;
    margin-top: 15px;
}
.teacher img{
    border-radius: 25px;
}
.teacher_flex h3{
    position: relative;
    padding-top: 17px;
    margin-bottom: 30px;
}
.teacher_flex h3::before{
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-image: url("../images/index/decoration3.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 18px;
}
.teacher_flex2 li{
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: solid 1px #000;
}
.teacher_flex2 li:last-child{
    border-bottom: none;
}

.teacher_flex2_img{
    width: 24%;
}
.teacher_flex2_text{
    width: 72%;
    margin-left: 4%;
}
.teacher_flex2_text h5{
    margin-bottom: 20px;
}
.contents .teacher_flex2_text p{
    padding: 0;
}
.teacher_flex h3{
    font-size: 30px;
}


@media screen and (max-width: 480px){  
.teacher .text_tq {
    font-size: 21px;
    padding-left: 35px;
    margin-left: 0;
}
.teacher .text_tq::before {
    width: 35px;
    height: 18px;
}
.contents .teacher_title {
    font-size: 24px;
    padding: 0 75px;
}
.teacher_bg {
    padding: 30px 0 10px;
    margin-bottom: 30px;
}
.teacher_title::before {
    width: 70px;
}
.teacher_title::after {
    width: 70px;
}
    .teacher_box{
        justify-content: center;
    }
.teacher_box_img {
    width: 90%;
    margin-bottom: 20px;
}
.teacher_box_text {
    width: 100%;
    margin-left: 0%;
}
.h4_border {
    text-align: center;
}
.contents .teacher_box_text p {
    font-size: 3.7vw;
}
.contents .teacher_box_text p span {
    font-size: 3.7vw;
}
.teacher_flex li {
    width: 100%;
}
    .teacher_flex{
        justify-content: center;
    }
    .teacher_flex_img{
        width: 75%;
        margin: 0 auto 20px;;
    }
.teacher_flex h3 {
    position: relative;
    padding-top: 20px;
    margin-bottom: 15px;
}
.teacher h5 {
    font-size: 18px;
    line-height: 1.5;
}
    .charge{
        text-align: center;
    }
.teacher_flex2 li {
    justify-content: center;
    flex-wrap: wrap;
}
.teacher_flex2_img {
    width: 60%;
}
.teacher_flex2_text {
    width: 100%;
    margin-left: 0%;
}
.teacher_flex2_text h5 {
    margin-bottom: 0px;
}
    .contents .part-time{
        font-size: 21px;
        margin-bottom: 30px;
    }
}
/* MVスライダー */
.next_date1 {
    padding-bottom: 0;
}
.slick-dots {
    bottom: 0!important;
}
.slick-dotted.slick-slider {
    margin-bottom: 0!important;
}
.slick-slide img {
    width: 100%!important;
}

/* お知らせ */
.list-article-content {
    padding: 30px 0;
    border-bottom: 1px solid #A9DAE8;
}
.contents .entry-header {
    padding: 0;
}
.contents h2.entry-title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 0;
}
.contents h2.entry-title a{
    color: #000000;
}
.contents h2.entry-title a:hover {
    color: #f0bbc7;
}
.list-article-meta {
    font-size: 16px;
}
.all-news {
    text-align: center;
}
.news .btn{ 
    margin-top: 30px;
    margin-bottom: 0;
}
.news .box1 {
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
    .news .btn{
        padding: 10px 87px;
    }
    .news .btn::after{
        right: 2%;
    }
    h1.entry-title {
		font-size: 21px!important;
	}
    .contents h2.entry-title {
        font-size: 20px;
    }
    .news .btn {
        font-size: 20px;
    }
}