@charset "UTF-8";
/* CSS Document */

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	letter-spacing: 0.1em;
}
a{
	text-decoration: none;
	color: #333;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	display: block;
	width: 100%;
}
.img a:hover img{
	opacity: .8;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}

.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

span.red{
	color: #f05742;
}
/*蛍光マーカー*/
span.marker{
	background: linear-gradient(transparent 60%, #ff6 60%);
}


/*Title*/
h2.title{
	margin-bottom: 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
h2.title span.en{
	display: block;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 3rem;
	text-transform: uppercase;
	margin-bottom: 10px;
	text-indent: 2px;
}
h2.title span.ja{
	display: flex;
  	align-items: center;
	font-size: 1.2rem;
}
h2.title span.ja::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}
h2.title.center span.ja{
	display: block;
	width: 100%;
}
h2.title.center span.ja::before{
	display: none;
}
h2.title.white span.en,
h2.title.white span.ja{
	color: #fff;
}
@media (max-width: 750px){
}


/*ctitle*/
.ctitle{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.6rem;
}
.ctitle::before{
	content: '';
	display: block;
	width: 52px;
	height: 23px;
	background: url(../img/ctitle_deco.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
}
.ctitle.white{
	color: #fff;
}
.ctitle.white::before{
	background-image: url(../img/ctitle_deco_w.png);
}
.ctitle.red{
	color: #d71618;
}
.ctitle.red::before{
	background-image: url(../img/ctitle_deco_r.png);
}
@media (max-width: 750px){
	.ctitle{
		font-size: 1.4rem;
	}
}


/*mtitle*/
.mtitle{
    position: relative;
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
	padding-right: 0;
    font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
    margin-top: 15px;
    margin-bottom: 30px;
}
.mtitle::before,
.mtitle::after{
	position: absolute;
    content: "";
    left: 0;
    height: 8px;
}
.mtitle::before{
    width: 25%;
    top: -8px;
    background: #008000;
	opacity: 0.6;
    border-radius: 5px 5px 0 0;
}
.mtitle::after{
	width: 40%;
    bottom: -8px;
    background: #008000;
    border-radius: 0 0 5px 5px;
}
@media (max-width: 750px){
	.mtitle{
		font-size: 1.4rem;
	}
}

/*mtitle02*/
.mtitle02{
	border: 1px solid #c2c2c2;
	border-left: 10px solid #d71618;
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	padding: 10px;
	margin-bottom: 20px;
	background: #fff;
}

/*stitle*/
.stitle{
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.4rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -1px;
	width: 100px;
	height: 1px;
	background: #000;
}

/*dtitle*/
.dtitle{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.4rem;
	text-align: center;
}
.dtitle::after{
	content: '';
	display: block;
	width: 70px;
	height: 3px;
	background: #d71618;
	margin: 25px auto 40px;
}
@media (max-width: 750px){
	.dtitle{
		font-size: 1.2rem;
	}
}

/*wtitle*/
.wtitle{
	position: relative;
	z-index: 1;
    font-size: 1.3rem;
    margin-bottom: 20px;
	background: linear-gradient(to right bottom, #d71618, #E3490B);
	color: #fff;
	padding: 8px 10px;
	border-left: 7px solid #D6D32B;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.wtitle::after{
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
	z-index:-1;
}

.ntitle{
	font-size: 1.2rem;
	margin-bottom: 12px;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}
.ntitle::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 5px;
	color: #d71618;
	font-size: 0.8rem;
}

.btitle{
	display: flex;
  	align-items: center;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
}
.btitle::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}


.center{
	text-align: center;
}
.pc_center{
	text-align: center;
}
@media (max-width: 750px){
	.pc_center{
		text-align: left;
	}
}

.bold{
	font-weight: 600;
	font-size: 1.2rem;
}
.s_bold{
	font-weight: 600;
}


/*ボタン*/
.sbtn a{
	display: block;
	border: 1px solid #fff;
	margin: 0 auto;
	text-align: center;
	width: 300px;
	padding: 15px 0;
	border-radius: 40px;
	letter-spacing: 0.1em;
	font-weight: 500;
	font-size: 0.9rem;
	color: #fff;
	transition: all .5s ease;
	background: #d71618;
}
.sbtn a:hover{
	background:#fff;
	color: #d71618;
	border: 1px solid #d71618;
}
.sbtn.white a{
	background:#fff;
	color: #d71618;
	border: 1px solid #d71618;
}
.sbtn.white a:hover{
	color: #fff;
	background: #d71618;
	border: 1px solid #fff;
}
.sbtn.left a{
	margin: 0 auto 0 0;
}
.sbtn.long a{
	width: 100%;
}
.m_contact a{
	min-width: 280px;
}

.sbtn2{
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
.sbtn3{
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
@media (max-width: 960px){
	.sbtn3{
		display: block;
	}
	.sbtn3 .sbtn:not(:last-child) a{
		margin-bottom: 10px;
	}
}
@media (max-width: 750px){
	.sbtn.left a{
		margin: 0 auto;
	}
	.sbtn2{
		display: block;
	}
	.sbtn2 .sbtn:first-child a{
		margin-bottom: 10px;
	}
}

/*テキストリンク*/
a.t_link{
	color: #d71618;
	background-image: linear-gradient(to right, #d71618, #d71618);
	background-position: 0 100%;
	background-position: bottom left;
	background-size: 100% 1px;
    background-repeat: no-repeat;
	transition: 0.4s;
}
a.t_link:hover{
	opacity: 0.6;
    background-size: 0% 1px;
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr{
	border: 2px solid #f5f5f5;
}
.info_table th,
.info_table td{
	padding: 20px 0;
}
.info_table th{
	background: #d71618;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
	font-weight: 500;
}
.info_table td{
	padding-left: 10px;
	padding-right: 10px;
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}

/*スタイリッシュver*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table02 tr{
	border-bottom: 2px solid #f5f5f5;
}
.info_table02 th,
.info_table02 td{
	padding: 20px 0;
}
.info_table02 th{
	width: 30%;
	border-bottom: 2px solid #F3CE25;
	font-weight: 500;
}
.info_table02 td{
	padding-left: 10px;
	width: 70%;
}

@media (max-width: 450px){
	.info_table, .info_table02{
		font-size: 0.9rem;
	}
	.info_table td{
		padding-left: 5px;
		padding-right: 5px;
	}
}

.info_table03{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-bottom: 1px solid rgba(196,196,196,.43);
}
.info_table03 tr{
	border-top: 1px solid rgba(196,196,196,.43);
}
.info_table03 th,
.info_table03 td{
	padding: 40px 0;
	text-align: left;
	vertical-align: top;
}
.info_table03 th{
	width: 20%;
	padding-left: 40px;
	font-weight: 500;
}
.info_table03 td{
	width: 80%;
	padding-left: 20px;
}
@media (max-width: 750px){
	.info_table03 th,
	.info_table03 td{
		padding: 40px 0;
	}
	.info_table03 th{
		width: 25%;
		padding-left: 20px;
	}
	.info_table03 td{
		width: 75%;
		padding-left: 20px;
	}
}
@media (max-width: 450px){
	.info_table03{
		font-size: 0.9rem;
		padding: 30px 0;
	}
	.info_table03 th{
		width: 30%;
		padding-left: 10px;
	}
	.info_table03 td{
		width: 70%;
		padding-left: 10px;
	}
}


/*改行*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block;
}


/*list*/
ul.check_list li{
	margin-bottom: 5px;
}
ul.check_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #d71618;
	margin-right: .5em;
	font-size: .9em;
}
ul.check_list02 li{
	margin-bottom: 5px;
}
ul.check_list02 li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #d71618;
	margin-right: .5em;
	font-size: .9em;
}
ul.check_list li:last-child,
ul.check_list02 li:last-child{
	margin-bottom: 0;
}
ul.check_list02.row{
	display: flex;
	flex-wrap: wrap;
}
ul.check_list02.row li{
	margin-right: 40px;
	margin-bottom: 10px;
}
@media (max-width: 750px){
	ul.check_list02.row{
		display: block;
	}
	ul.check_list02.row li{
		margin-right: 0;
	}
}

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #d71618;
	margin-right: 5px;
}

ul.care_list li{
	margin-bottom: 5px;
	font-size: 0.8rem;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox{
		display: block;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .text{
		width: 100%;
	}
}

/*画像 + テキスト 上下逆転のflex*/
.info_flexbox_reverse{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.info_flexbox_reverse .text{
	width: 48%;
}
.info_flexbox_reverse .img{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox_reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox_reverse .text{
		width: 100%;
	}
	.info_flexbox_reverse .img{
		width: 100%;
	}
}

/*画像 + テキスト 画像小さめのflex*/
.mini_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.mini_flex .img{
	width: 300px;
}
.mini_flex .text{
	width: calc(100% - 340px);
}
@media (max-width: 750px){
	.mini_flex{
		display: block;
	}
	.mini_flex .img{
		width: 100%;
	}
	.mini_flex .text{
		width: 100%;
	}
}

.t_flex{
	display: flex;
	justify-content: space-between;
}
.t_flex .text{
	width: 48%;
}
@media (max-width: 750px){
	.t_flex{
		display: block;
	}
	.t_flex .text{
		width: 100%;
	}
}


.img_wrap3{
	display: flex;
	justify-content: space-between;
}
.img_wrap3 .img{
	width: 32%;
}

.img_wrap2{
	display: flex;
	justify-content: space-between;
}
.img_wrap2 .img{
	width: 48%;
}

/*階段型*/
.stairs_img2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.stairs_img2 .img{
	width: 48%;
}
.stairs_img2 .img:nth-child(1){
	margin-top: 20px;
}

.stairs_img3{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.stairs_img3 .img{
	width: 32%;
}
.stairs_img3 .img:nth-child(2){
	margin-top: 20px;
}
.stairs_img3 .img:nth-child(3){
	margin-top: 40px;
}
@media (max-width: 750px){
	.stairs_img3 .img{
		width: 90%;
		margin-bottom: 20px;
	}
	.stairs_img3 .img:nth-child(2){
		margin: 0 auto 20px auto;
	}
	.stairs_img3 .img:nth-child(3){
		margin: 0 0 0 auto;
	}
}

.map iframe{
	vertical-align: top;
}

.graph_top_img{
	width: 70%;
	margin: auto;
	margin-bottom: 70px;
	display: block;
}

@media (max-width: 750px){
	.graph_top_img{
		width: 100%;
	}
}

.graph_fee_img{
	width: 70%;
	margin: auto;
	margin-top: 50px;
	display: block;
}

@media (max-width: 750px){
	.graph_fee_img{
		width: 100%;
	}
}

/*===// 共通部分ここまで ===========*/






/*===ヘッダー==============================*/
.site_header{
	transition: 0.6s;
	padding: 10px 0;
	background: rgba(255, 255, 255, 1);
}
.site_header.transform{
}
.sticky{
	position: sticky;
	top: 0;
	left:0;
	right:0;
	z-index: 100;
}

.site_header .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.site_header h1{
	width: 300px;
	transition: 0.6s;
}
.site_header h1 a{
	display: block;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 100%;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

.site_header .info{
}
.site_header .info .tr{
	display: flex;
	justify-content: right;
	align-items: center;
}
.site_header .info .header_tel{
	width: 300px;
}
.site_header .sbtn a{
	margin-left: 15px;
	width: 160px;
	padding: 12px 0;
}

/*global_nav*/
.global_nav{
	width: 100%;
}
.global_nav ul{
	display: flex;
	justify-content: space-between;
}
.global_nav ul li{
	border-left: 1px solid #ccc;
	width: calc(100% / 5);
}
.global_nav ul li:last-child{
	border-right: 1px solid #ccc;
}
.global_nav ul li a{
	display: block;
	font-size: 0.8rem;
	text-align: center;
	line-height: 1;
	padding: 5px 0;
	transition-delay: 0.1s;
}
.global_nav ul li a span{
	display: block;
	text-transform: uppercase;
	color: #d71618;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 8px;
	transition: 0.2s;
}
.global_nav ul li a:hover{
	transform: translateY(-2px);
}
.global_nav ul li a:hover span{
	color: #E3490B;
}
@media (max-width: 960px){
	.site_header{
		padding: 15px 0;
	}
	.site_header h1{
		width: 200px;
	}
	.site_header .flex{
		margin-bottom: 0;
	}
	.site_header .info,
	.global_nav{
		display: none;
	}
}


/*===スライダー==============================*/
.top_slider{
	position: relative;
}
.top_slider::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.02);
	pointer-events: none;
	z-index: 1;
}
.top_slider .slider{
}
.top_slider .slider li{
	width: 100%;
	height: 75vh;
	min-height: 400px;
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top01{
	background-image: url(../img/top01.jpg);
}
.top_slider .slider li.top02{
	background-image: url(../img/top02.jpg);
}
.top_slider .slider li.top03{
	background-image: url(../img/top03.jpg);
}

/*キャッチ*/
.top_slider .catch{
	position: absolute;
	bottom: 15px;
	right: 10px;
	pointer-events: none;
	text-align: center;
	z-index: 2;
	width: 90%;
	max-width: 650px;
}

@media (max-width: 750px){
	.top_slider::after{
		background: rgba(0, 0, 0, 0.1);
	}
	.top_slider .slider li{
		height: 60vh;
	}
}


/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
@media (max-width: 750px){
	main section{
		padding: 60px 0;
	}
}

.inner.white{
	background-color: #fff;
	padding: 40px;
}
@media (max-width: 750px){
	.inner.white{
		padding: 40px 20px;
	}
}

.info_wrap{
	background-color: #fff;
	padding: 40px 30px;
}
@media (max-width: 750px){
	.info_wrap{
		padding: 30px 15px;
	}
}

.bg01{
	background-color: #f9f6f3;
}
.bg02{
	background: url(../img/stylish07.png);
	background-repeat: repeat;
}

/*==welcome==============================*/
.welcome .text h3{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.9rem;
	margin-bottom: 25px;
}
.welcome .text p{
	font-size: 0.95rem;
}
@media (max-width: 750px){
	.welcome .text h3{
		font-size: 1.45rem;
	}
}


/*===天龍塾の特徴==============================*/
.t_feature{
	background: url(../img/tf_bg.jpg);
	background-size: cover;
	background-position: top center;
}
.t_feature::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	pointer-events: none;
	z-index:-1;
}
.t_feature .flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.t_feature .flex .box{
	position: relative;
	width: 49%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	border: 2px solid #fff;
}
.t_feature .flex .box::before{
    content: '';
    display: block;
    padding-top: 32%;
}
.t_feature .flex .box::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index: 2;
}
.t_feature .flex .box img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
	z-index: 1;
}
.t_feature .flex .box .text{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 15px);
    height: calc(100% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	z-index: 3;
	text-align: center;
}
.t_feature .flex .box .text::before,
.t_feature .flex .box .text::after{
	content: '';
	display: block;
	position: absolute;
	width: 60px;
	height: 60px;
	pointer-events: none;
	z-index: 1;
}
.t_feature .flex .box .text::before{
	top: 0;
	left: 0;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}
.t_feature .flex .box .text::after{
	bottom: 0;
	right: 0;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.t_feature .flex .box .text h3{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 1.2rem;
}
.t_feature .flex .box .text .num{
	display: block;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #d71618;
	color: #fff;
	font-size: 0.9rem;
}
.t_feature .flex .box .text .num::after{
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background: #d71618;
	margin: 5px auto 10px;
}
@media (max-width: 1200px){
	.t_feature .flex .box::before{
		padding-top: 35%;
	}
}
@media (max-width: 960px){
	.t_feature .flex .box{
		width: 100%;
	}
}
@media (max-width: 750px){
	.t_feature{
		background-size: contain;
		background-repeat: no-repeat;
	}
	.t_feature .flex .box::before{
		padding-top: 40%;
	}
}
@media (max-width: 450px){
	.t_feature .flex .box::before{
		padding-top: 45%;
	}
}


/*===合格実績==============================*/
.t_results{
	background: url(../img/sakura_bg.jpg);
	background-size: cover;
	background-position: center;
}
.t_results .box{
	margin-bottom: 60px;
	background-color: #fff;
	border: 2px solid #d71618;
	padding: 20px 10px;
}
.t_results .box:last-child{
	margin-bottom: 0;
}

.t_results .box01{
}
.t_results .box02{
	
}
.t_results .box01 .flex{
	display: flex;
	flex-wrap: wrap;
}
.t_results .box01 .flex .list_wrap{
	width: 23%;
	margin: 0 1% 30px;
}
.t_results .box01 .flex .list_wrap h4{
	font-size: 1.2rem;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
	font-weight: 600;
}
.t_results .box01 .flex .list_wrap h4::before{
	content: '';
	display: inline-block;
	background: url(../img/tr_sakura.png);
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	margin-right: 10px;
}
.t_results .box01 .flex .list_wrap li{
	font-size: 0.9rem;
}
.t_results .box01 .flex .list_wrap li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
	color: #eee;
}


.t_results .box02 .list_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.t_results .box02 .list_wrap li{
	width: 48%;
	border-bottom: 1px dashed #333;
	font-size: 1.2rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	padding: 6px 3px 2px;
}
.t_results .box02 .list_wrap li::before{
	content: '';
	display: inline-block;
	background: url(../img/tr_sakura.png);
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
@media (max-width: 960px){
	.t_results .box01 .flex .list_wrap{
		width: 31%;
	}
}
@media (max-width: 750px){
	.t_results .box01 .flex .list_wrap{
		width: 48%;
	}
	.t_results .box02 .list_wrap li{
		width: 100%;
	}
}
@media (max-width: 450px){
	.t_results .box01 .flex .list_wrap{
		width: 100%;
	}
	.t_results .box02 .list_wrap li{
		font-size: 1.1rem;
	}
}


/*===授業風景==============================*/
.mini_gallery li{
	position: relative;
	z-index: 1;
	margin: 0 20px;
}
.mini_gallery a{
	display: block;
	position: relative;
    overflow: hidden;
	min-height: 0%;
	background-color: #fff;
	width: 100%;
}
.mini_gallery a::before{
    content: '';
    display: block;
    padding-top: 100%;
}
.mini_gallery a img{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
}
.mini_gallery a:hover img{
	opacity: .8;
	transform: scale(1.15);
}

.mini_gallery .slide_left, .mini_gallery .slide_right{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 1;
	height: 101%;
	width: 50px;
	cursor: pointer;
	display: flex !important;
	justify-content: center;
	align-items: center;
	transition: .8s;
	color: #fff;
	font-weight: normal;
}
.mini_gallery .slide_left{
	left: 0;
}
.mini_gallery .slide_right{
	right: 0;
}
.mini_gallery .slide_left i, .mini_gallery .slide_right i{
	display: block;
	font-size: 50px;
	transition: .8s;
}
.mini_gallery .slide_left:hover i{
	transform: translate(-6px);
}
.mini_gallery .slide_right:hover i{
	transform: translate(6px);
}

@media (max-width: 450px){
	.mini_gallery li{
		margin: 0 10px;
		margin-bottom: 50px;
	}
	.mini_gallery .slide_left, .mini_gallery .slide_right{
		font-size: 40px;
		width: 45px;
	}
}


/*===コンテンツ==============================*/
.link .flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.link .flex .box{
	width: 31%;
}
.link .flex .box a{
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.link .flex .box a::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
	pointer-events: none;
	z-index: 1;
}
.link .flex .box a img{
	display: block;
	width: 100%;
	transition: 0.3s ease-in;
}
.link .flex .box a h3{
	position: absolute;
	width: 99%;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
	z-index: 2;
	font-size: 1.2rem;
	font-weight: 600;
}
.link .flex .box a:hover img{
	transform: scale(1.1);
}
@media (max-width: 750px){
	.link .flex .box{
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		margin-bottom: 25px;
	}
	.link .flex .box:last-child{
		margin-bottom: 0;
	}
}


/*===フッター==============================*/
.footer_top{
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	text-align: center;
}
.footer_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	pointer-events: none;
	z-index:-1;
}

.footer_top .btn_wrap{
	display: flex;
	justify-content: space-between;
	margin: 0 auto -20px;
	max-width: 800px;
}
.footer_top .btn_wrap .btn{
	width: 360px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.footer_top .btn_wrap .btn a{
	display: block;
	width: 100%;
	border: 1px solid #333;
	color: #fff;
	background-color: #333;
	padding: 20px 0;
	font-size: 1.4rem;
	font-weight: 500;
	border-radius: 10px;
}
.footer_top .btn_wrap .btn a::after{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -0.5em;
	transition: 0.2s;
	opacity: 0;
	line-height: 1;
}
.footer_top .btn_wrap .btn a:hover{
	transform: translateX(3px);
}
.footer_top .btn_wrap .btn a:hover::after{
	opacity: 1;
	transform: translateX(5px);
}
.footer_top .btn_wrap .btn:nth-child(2) a{
	border: 1px solid #d71618;
	background-color: #d71618;
}

.footer_middle{
	text-align: center;
	padding: 30px 0 40px;
}
.footer_nav{
	margin: 0 auto;
	max-width: 960px;
	margin-bottom: 50px;
}
.footer_nav ul{
	display: flex;
	width: 100%;
}
.footer_nav ul li{
	width: calc(100% / 6);
	text-align: center;
	border-right: 1px solid #ddd;
	font-size: 0.85rem;
}
.footer_nav ul li:last-child{
	border: none;
}
.footer_nav ul li a:hover{
	opacity: 0.7;
}

footer h3{
	width: 70%;
	max-width: 300px;
	margin: 0 auto 10px;
}
footer h3 a{
	display: block;
	width: 100%;
}
footer h3 a img{
	display: block;
	width: 100%;
}
footer h3 a:hover img{
	opacity: 0.7;
}
.footer_middle p{
	font-size: 0.8rem;
}

.footer_bottom{
	text-align: center;
	padding: 20px 0;
	background: #f9f6f3;
}

@media (max-width: 750px){
	.footer_top .btn_wrap{
		display: block;
	}
	.footer_top .btn_wrap .btn{
		width: 100%;
	}
	.footer_nav{
		display: none;
	}
	.footer_bottom{
		padding-bottom: 80px;
	}
}


.bottom_contact{
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	justify-content: space-around;
	z-index: 80;
}
.bottom_contact a{
	display: block;
	width: 49%;
	background-color: #d71618;
	color: #fff;
	text-align: center;
	border-radius: 5px 5px 0 0;
	height: 40px;
	line-height: 40px;
	font-weight: 500;
}
.bottom_contact a:nth-child(2){
	background-color: #333;
}
.bottom_contact a:hover{
	transform: translateY(5px);
}
@media (max-width: 750px){
	.bottom_contact{
		display: flex;
	}
}
@media (max-width: 450px){
	.bottom_contact a{
		font-size: 0.9rem;
	}
}


/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 50px;
  	height: 50px;
  	position: fixed;
  	right: 10px;
  	bottom: 10px;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
  	background: #d71618;
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  	font-weight: 900;
  	font-size: 25px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
	opacity: 1;
}
.page_top.is_animation:hover{
	opacity: 1;
	transform: translateY(-10px);
}
@media (max-width: 750px){
	.page_top{
		bottom: 50px;
	}
}

/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	position: relative;
	z-index: 1;
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: center;
	height: 350px;
	width: 100%;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.kasou_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index:-1;
}
.kasou_top h2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.8rem;
	white-space: nowrap;
	z-index: 2;
	color: #fff;
}
@media (max-width: 750px){
	.kasou_top{
	  height: 300px;
	}
	.kasou_top h2{
		font-size: 1.4rem;
	}
}


/*パンくず*/
.breadcrumb{
	z-index: 1;
	font-size: 12px;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #d71618;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}


/*===天龍塾の特徴ページ==============================*/
.features .box{
	position: relative;
	padding-right: 10%;
	margin-bottom: 100px;
	z-index: 1;
}
.features .box.reverse{
	padding-right: 0 !important;
	padding-left: 10%;
}
.features .box:last-child{
	margin-bottom: 0;
}
.features .box .img{
	margin-bottom: 15px;
}

.features .box .deco{
	position: absolute;
	z-index: -1;
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	color: #E3490B;
	opacity: 0.4;
	line-height: 1;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.features .box.reverse .deco{
	right: auto;
	left: 0;
}
@media (max-width: 750px){
	.features .box{
		margin-bottom: 60px;
		padding-right: 0;
	}
	.features .box.reverse{
		padding-left: 0;
	}
	.features .box .deco{
		display: none;
	}
}


/*===料金・入塾のご案内ページ==============================*/
.flow_chart{
	padding-left: 60px;
	position: relative;
}
.flow_chart::before{
	content: '';
	position: absolute;
	top: 0;
	left: 25px;
	display: block;
	width: 10px;
	height: 100%;
	background-color: #d71618;
	opacity: 0.7;
}
.flow_chart .box{
	position: relative;
	border: 1px solid #dcd6d0;
	margin-bottom: 30px;
}
.flow_chart .box:last-child{
	margin-bottom: 0;
}
.flow_chart .box .num{
	position: absolute;
	top: 0;
	left: -60px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 60px;
	height: 60px;
}
.flow_chart .box .num p{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #d71618;
}
.flow_chart .box .subect{
	background-color: #fff;
	padding: 15px;
}
.flow_chart .box .subect h3{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1;
}
.flow_chart .box .subect h3 span{
	display: inline-block;
	text-transform: uppercase;
	color: #d71618;
	font-weight: 400;
	font-size: 2rem;
	margin-right: 1em;
}
.flow_chart .box .flex{
	background-color: #fcf9f3;
	padding: 15px;
	display: flex;
	justify-content: space-between;
}
.flow_chart .box .flex .text{
	width: calc(100% - 320px);
}
.flow_chart .box .flex .img{
	width: 300px;
}
.flow_chart .box .flex .text .btn_flex{
	display: flex;
	justify-content: space-between;
}
.flow_chart .box .flex .text .btn_flex a{
	display: block;
	width: 32%;
	text-align: center;
	color: #fff;
	background-color: #E3490B;
	padding: 10px 0;
	border-radius: 20px;
	border: 1px solid #E3490B;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}
.flow_chart .box .flex .text .btn_flex a.mail{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.flow_chart .box .flex .text .btn_flex a:hover{
	background-color: #fff;
	color: #E3490B;
}
@media (max-width: 960px){
	.flow_chart .box .flex .text .btn_flex{
		display: block;
	}
	.flow_chart .box .flex .text .btn_flex a{
		width: 100%;
		margin-bottom: 8px;
	}
}
@media (max-width: 750px){
	.flow_chart{
		padding-left: 40px;
	}
	.flow_chart::before{
		left: 15px;
	}
	.flow_chart .box .num{
		left: -40px;
		width: 40px;
		height: 40px;
	}
	.flow_chart .box .num p{
		font-size: 1.2rem;
	}
	.flow_chart .box .flex{
		flex-direction: column-reverse;
		padding: 15px;
	}
	.flow_chart .box .flex .text{
		width: 100%;
	}
	.flow_chart .box .subect h3 span{
		display: block;
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.flow_chart .box .flex .img{
		width: 90%;
		max-width: 400px;
		margin: 0 auto 15px;
	}
}


/*===定期講習のご案内ページ==============================*/
.seminar{

}

.arrow{
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	color: #333;
	vertical-align: middle;
	text-decoration: none;
	font-size: 0.8rem;
    border: 1px solid #333;
    margin: 0 10px;
}


.seminar ul.care_list li{

}
.seminar ul.care_list li i{
	display: inline-block;
	color: #f05742;
	margin-right: 2px;
}
.seminar ul.care_list li .fa-solid.fa-play{
	display: inline-block;
	transform: rotate(-90deg);
	position: relative;
	top: -2px;
}


.calendar_wrap h4{
	text-align: center;
	padding: 2px 0;
	font-size: 1.2rem;
	background-color: #E3490B;
	color: #fff;
	margin-bottom: 5px;
}
.calendar_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	text-align: center;
}
.calendar_table tr{
	border: 2px solid #f5f5f5;
}
.calendar_table th,
.calendar_table td{
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
.calendar_table th{
	font-weight: 500;
	padding: 5px 0;
	background-color: #eee;
}
.calendar_table td{
	padding: 10px 0;
	background-color: #fff;
}
.calendar_table td p.red{
	color: #f05742;
}
.calendar_table td p:first-child{
	margin-bottom: 5px;
}
.calendar_table td span{
	display: block;
	font-size: 1.2rem;
	margin: 0 auto;
	color: #f05742;
}
.calendar_table td span .fa-solid.fa-play{
	display: inline-block;
	transform: rotate(-90deg);
}
@media (max-width: 750px){
	.calendar_table th{
		font-size: 0.9rem;
	}
	.calendar_table td{
		padding: 5px 0;
	}
	.calendar_table td p{
		font-size: 0.8rem;
	}
	.calendar_table td span{
		font-size: 0.8rem;
	}
}




.jikan_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.jikan_table tr{
	border: 2px solid #f5f5f5;
}
.jikan_table th,
.jikan_table td{
	padding: 20px 0;
}
.jikan_table th{
	background: #d71618;
	color: #fff;
	border-right: 2px solid #f5f5f5;
	font-weight: 500;
}
.jikan_table td{
	padding-left: 10px;
	padding-right: 10px;
	background: #fff;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
.jikan_table tr:first-child th,
.jikan_table tr:first-child td{
	background-color: #eee;
	color: #333;
	text-align: center;
	font-weight: normal;
}
@media (max-width: 450px){
	.jikan_table{
		font-size: 0.9rem;
	}
	.jikan_table td{
		padding-left: 5px;
		padding-right: 5px;
	}
}




/*===概要・アクセスページ==============================*/
.daihyo .detail{
	font-size: 0.8rem;
	color: #444;
	font-style: italic;
}


/*===お問い合わせページ==============================*/
.contact .tel_contact{
	text-align: center;
	background-color: #f9f6f3;
}
.contact .tel_contact .btn p{
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.contact .tel_contact .btn p::before,
.contact .tel_contact .btn p::after{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: #000;
}
.contact .tel_contact .btn p::before{
	margin-right: 10px;
}
.contact .tel_contact .btn p::after{
	margin-left: 10px;
}
.contact .tel_contact .btn a{
	display: inline-block;
	font-size: 2.4rem;
	white-space: nowrap;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}
.contact .tel_contact .btn a:hover{
	color: #d71618;
}
.contact .tel_contact .btn.btn01 a{
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
@media (max-width: 750px){
	.contact .tel_contact .btn a{
		font-size: 2rem;
	}
}
@media (max-width: 450px){
	.contact .tel_contact .btn a{
		font-size: 1.6rem;
	}
}


/*メールフォーム*/
.mailform{
	margin: 0 auto;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
  	color: #fff;
  	background: #d71618;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #d71618;
	color: #fff;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #d71618;
}
.mailform .postal_btn:hover{
	background: #d71618;
	opacity: 0.9;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #d71618;
	border: 1px solid #d71618;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #d71618;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 600;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #d71618;
    border-bottom: 3px solid #d71618;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #d71618;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #d71618;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*プライバシーポリシー*/
.privacy_flame{
	height: 250px;
	overflow-y: scroll;
	background: rgba(255, 255, 255, 0.5);
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.9rem;
}
.privacy p span{
	font-weight: 500;
	display: block;
}
.privacy p span::before{
	content: "■";
	font-size: 0.6rem;
	margin-right: 0.5em;
	vertical-align: text-top;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #333;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #333;
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}

/*--------youtube logo--------*/

.news_youtube{
	width: 40%;
	margin: auto;
	text-align: center;
	margin-top: 50px;
	background-color: white;
	border-radius: 80px;
	padding: 15px;
	border: 1px solid #DE4B54;
}
.news_youtube img{
	width: 40%;
	object-fit: contain;
	padding-bottom: 5px;
}
.news_youtube p{
	font-size: 1em;
}

/*
.news_youtube:hover{
	background-color:rgba(245,158,159,1.00);
	opacity: 0.6;
	color: #fff;
}
.news_youtube p:hover{
	color: #fff
}
*/

@media (max-width: 960px){
	.news_youtube{
		width: 60%;
	}
	.news_youtube img{
		width: 50%;
	}
	.news_youtube p{
	font-size: 0.8rem;
}

}
@media (max-width: 750px){
	.news_youtube{
		width: 80%;
	}
	.news_youtube p{
	font-size: 0.6rem;	
	}
}

/*---------セミナー料金表---------*/
.seminar_price{
	
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 750px){
}
@media (max-width: 450px){
}

/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .class{
	background-attachment: scroll;
}