@charset "UTF-8";

img{
max-width: 100%;
height: auto;
width /***/:auto;
}

.wrap{
	min-width: 1280px;
}

/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	width: 96%;
	min-width: 1280px;
	position: absolute;
	left: 2%;
	top: 0;
	padding: 40px 40px 0 20px;
	z-index: 10;
	box-sizing: border-box;
	align-items: center;
}
header #logo{
	width:10%;
}
header.under{
	position: static;
	width: 100%;
	padding: 40px 40px 40px 20px;
}
header.under #logo{
	width:30%;
}
header.under #logo a{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	color: #de1819;
}
header.under #logo a img{
	margin-right: 20px;
}
header.under #logo a small{
	display: block;
	font-size: 0.8em;
	margin-top: 8px;
}

/*-----------------------------------------------
__Global Navi
-----------------------------------------------*/
header,.toggleWrap nav,.toggleWrap nav ul{
	display: flex;
	flex-wrap: nowrap;
}
.toggleWrap{
	width: 90%;
}
.toggleWrap nav{
	justify-content: flex-end;
}
.toggleWrap nav a{
	font-weight: bold;
	color: #fff;
}
.under .toggleWrap nav a{
	color: #de1819;
}
#gl_nv{
	width: 70%;
}
#gl_nv > li{
	width: 20%;
	white-space: nowrap;
	font-size: 1.2em;
}
#gl_nv > li a{
	display: inline-block;
	position: relative;
	transition: all ease .3s;
}
#gl_nv > li a:hover{
	transform: translateY(-10px);
}
#gl_nv > li a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 3px;
	background:#de1819;
	transition: all ease .3s;
	opacity: 0;
}
#gl_nv > li a:hover::after{
	opacity: 1;
}

.toggleWrap .language li{
	width: 34px;
}
.toggleWrap .language li:last-of-type{
	margin-left: 10px;
}
.toggleWrap .language a{
	position: relative;
}
.toggleWrap .language a::after{
	content: "";
	width: 34px;
	height: 34px;
	border-radius:100%;
	position: absolute;
	left: -10px;
	top: -8px;
	z-index: -1;
	transition:all ease .3s;
	border: 2px solid rgba(255,255,255,0);
}
.toggleWrap .language a.current{
	color: #de1819;
}
.toggleWrap .language a.current::after{
	background: #fff;
}
.toggleWrap .language a:not(.current):hover::after{
	border-color: rgba(255,255,255,1);
}

/*スマホ用ナビボタン*/
#drawer-checkbox,
#drawer-icon,
#drawer-close{
    display: none;
}
  .toggleWrap {
    background: none;
    height: auto;
    position: static;
    padding: 0;
  }

/*-----------------------------------------------
__Main
-----------------------------------------------*/
.red{
	color: #de1819;
}

#under_h1_box{
	height: 300px;
	width: 100%;
	margin:0 auto ;
	overflow: hidden;
	position: relative;
}
#under_h1_box::before,
#under_h1_box::after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
#under_h1_box::before{
	background: rgba(80, 9, 8, 0.377);
}
#under_h1_box::after{
	background: url("../images/bg_visual.png") repeat;
}
#under_h1_box h1{
	text-align: center;
	position:absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	color: #fff;
	font-size: 3em;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	animation: fadeUp 500ms ease-in-out;
}
@keyframes fadeUp{
	0%{
		top: 60%;
		opacity: 0;
	}
	100%{
		top: 50%;
		opacity: 1;
	}
}
#under_h1_box h1 small{
	display: block;
	font-size: 0.36em;
}

h2{
	font-size: 3em;
	margin: 10px auto 1em auto;
	color: #de1819;
}

#main.under h2{
	position: relative;
}
#main.under h2 span{
	display: block;
	background: #fbf5e9;
}
#main.under h2 span small{
	display: inline-block;
	font-size: 0.4em;
	font-weight: bold;
	vertical-align: middle;
}
#main.under h2 span small::before{
	content: "";
	vertical-align: middle;
	display: inline-block;
	width: 30px;
	height: 3px;
	background: #de1819;
	opacity: 0.3;
	margin: 0 20px;
}
#main.under h2::before{
	content: "";
	display: block;
	background:url("../images/wave-red_clear.png") left center repeat-x;
	width: 86px;
	height: 11px;
}
#main.under h3{
	font-size: 1.2em;
	display: inline-block;
	color: #de1819;
	margin:10px auto 1em auto;
	border-bottom: 2px solid #de1819;
	padding: 5px 0;
}
#main.under h3 small{
	display: table;
	background: #de1819;
	color: #fff;
	font-size: 80%;
	padding: 0 10px;
	margin-bottom: 5px;
}


/* btn */
.btn_finger a{
	display: inline-block;
	font-weight: bold;
	font-size: 130%;
}
.btn_finger a span{
	display: inline-block;
	vertical-align: middle;
	padding-bottom: 12px;
	text-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.btn_finger a:hover{
	transform: translateX(14px);
}
.btn_block a{
	display: inline-block;
	background: #fff;
	border: 2px solid #333;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
	padding: 10px 30px;
	min-width: 200px;
	text-align: center;
	font-weight: bold;
	font-size: 110%;
	margin: 10px 0;
	border-radius: 30px;
	text-shadow: 0 2px 0 #eee;
}
.btn_block a:hover{
	background: #333;
	color: #fff !important;
	transform: translateY(4px);
	text-shadow: 0 2px 0 #000;
}

#main.under{
	background: #fbf5e9;
	padding-bottom: 60px;
}
#main.under .mb{
	margin-bottom: 100px;
}


.bg_f{
	background: #fff;
	padding: 30px;
}
.page_overview{
	background: coral;
	color: #fff;
	padding: 60px 0;
	margin-bottom: 60px;
}
.page_overview p,
.page_overview ul{
	animation: fadeUp2 500ms ease-in-out;
	font-size: 120%;
}
@keyframes fadeUp2{
	0%{
		transform: translateY(15px);
		opacity: 0;
	}
	100%{
		transform: translateY(0);
		opacity: 1;
	}
}
.page_overview ul{
	flex-wrap: wrap;
	margin-top: 60px;
}
.page_overview ul > li:not(:first-of-type){
	padding-left: 3em;
}
.page_overview a{
	display: table;
	color: #fff;
	border-bottom: 2px solid #fff;
	transition: all ease .3s;
}
.page_overview a:hover{
	transform:translateY(10px)
}
#main.under #gbi h2 span,
#main.under #vmgpo h2 span{
	font-size: 80%;
}

#gbi .d_fl{
	align-items: flex-start;
}
#gbi figure{
	max-width: 280px;
	padding: 20px;
	background:#fff;
	border-radius: 7px;
	margin-left: 50px;
}
ul.list > li{
	position: relative;
	margin-left: 10px;
	padding-left:18px;
	margin-bottom: 10px;
}
ul.list > li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	background:#333;
	border-radius: 100%;
}
ul.list > li ul{
	margin-top: 10px;
}
ul.list > li li{
	color: rgb(184, 136, 74);
	position: relative;
	padding-left:24px;
}
ul.list > li li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.4em;
	width: 6px;
	height: 6px;
	border: 2px solid rgb(184, 136, 74);
	border-radius: 100%;
}

#education{
	padding-top: 60px;
}

.under .map{
	width: 40%;
	margin-left: 5%;
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
}
.under .box_02 > article{
	width: 40%;
	margin-left: 5%;
}
.under .box_02 .map{
	width: 100%;
	margin-bottom: 20px;
	margin-left: 0;
}
.under .map iframe{
	width: 100%;
	height: 450px;
}
.under .box_02 .map iframe{
	height: 250px;
}
dl.red dt{
	font-weight: bold;
}
dl.red dd{
	color: #333;
	margin-bottom: 20px;
}


#main.under #overview h3{
	display:block;
	margin-top:50px;
	padding-top:10px;
	border-top:2px solid #de1819;
	border-bottom:1px solid #de1819;
}
#main.under #overview h3:first-of-type{
	margin-top:0;
}
#main.under #overview h3 small{
	display: inline-block;
	margin-right:10px;
}
#overview dl.red dt{
	float:left;
	width:160px;
}
#overview dl.red dd{
	padding-left:160px;
	margin-bottom:10px;
}


.about_licenses{
	margin-top: 40px;
	justify-content: space-between;
}
.about_licenses > li{
	width: 48%;
	background:#fff;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	padding: 20px 10px;
	border-radius: 5px;
	font-size: 0.9em;
}
.about_licenses > li em{
	font-weight: bold;
	font-size: 2.1em;
	margin-bottom: 10px;
}
.about_licenses > li em img{
	height: 70px;
	width: auto;
}


.box_02 .about_licenses > li{
	justify-content: center;
	flex-direction: column;
	width: 31%;
}
.box_02 .about_licenses > li em img{
	display: block;
	height: 100px;
	margin: 0 auto;
}

.schedule{
	justify-content: space-between;
	margin-top: 20px;
}
.schedule dl{
	background: url(../images/bg_shadow.png) right bottom repeat;
	width: 48%;
	padding: 30px;
	position: relative;
	margin: 12px 0 0 12px;
}
.schedule dl::before{
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	right: 12px;
	bottom: 12px;
}
.schedule dt{
	margin-top: -70px;
	margin-bottom: 20px;
	font-size: 3.5em;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	position: relative;
	z-index: 2;
}
.schedule dt small{
	font-size: 0.3em;
	background:  #de1819;
	color: #fff;
	padding: 0 0.5em;
}
.schedule dd{
	font-size: 1.5em;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}
#admission .red{
	align-items: center;
}
#admission article:first-of-type dl.red{
	font-size: 1.5em;
}
#admission article:first-of-type dl.red small{
	font-size: 0.7em;
}
#admission article:first-of-type .red dd::before{
	content: "";
	display: inline-block;
	width: 2em;
	height: 2px;
	background: #333;
	vertical-align: middle;
	margin-right: 1em;
}
#admission article:first-of-type .red:last-of-type,
#admission  article:first-of-type > p{
	margin-left: 60px;
}
#admission article.bg_f{
	position: relative;
	background: url(../images/bg_shadow.png) right bottom repeat;
	margin: 12px 0 0 12px;
	padding: 30px 60px 60px 30px;
}
#admission article.bg_f::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	left: -12px;
	top: -12px;
}
#admission article.bg_f > div{
	position: relative;
	z-index: 1;
}
#admission article.bg_f .d_fl{
	justify-content: space-between;
}
#admission article.bg_f .d_fl dl{
	width: 48%;
	border-top: 2px solid #333;
	border-bottom: 2px solid #333;
	margin-top: 20px;
}
#admission article.bg_f dt{
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	padding-top: 10px;
}
#admission article.bg_f .btn_block a{
	margin-top: 0;
}
#admission article.bg_f img{
	width: 34px;
	margin-right: 1em;
	vertical-align: middle;
}


#main.under .student_life{
	padding-top: 80px;
	margin-bottom: 100px;
}
#main.under .student_life img{
	margin: 0 auto;
}

#main.under #graduate h2{
	margin-bottom: 100px;
	vertical-align: middle;
}
#main.under #graduate h2 span{
	font-size: 1.2em;
	margin-left:0 ;
	padding: 30px 0 30px 60px;
	line-height: 1;
	vertical-align: middle;
	border-left:60px solid #de1519;
}
#main.under #graduate h2::before{
	display:none;
}
#graduate article.d_fl{
	flex-wrap: wrap;
}
#graduate .d_fl > dl{
	width: 47%;
	margin-bottom: 60px;
	position: relative;
}
#graduate .d_fl > dl:nth-of-type(2n){
	margin-left: 6%;
}
#graduate .d_fl > dl:nth-last-of-type(1),#graduate .d_fl > dl:nth-last-of-type(2){
	margin-bottom: 0;
}
#graduate article.d_fl .d_fl{
	position: relative;
	justify-content: space-between;
	margin: 10px auto 50px auto;
}
#graduate article.d_fl .d_fl > li{
	overflow: hidden;
	width: 48%;
	height: 200px;
}
#graduate article.d_fl em{
	position: absolute;
	z-index: 1;
	font-size: 5em;
	transform: rotate(15deg);
	right: -20px;
	bottom: -50px;
}
#graduate article.d_fl dl::before{
	content: "";
	position: absolute;
	background: url(../images/bg_shadow.png) repeat;
	width: 300px;
	height: 300px;
	border-radius: 100%;
	left: -50px;
	top: -50px;
	opacity: 0.5;
}
#graduate article.d_fl dt{
	position: relative;
	z-index: 1;
	font-size: 2em;
	font-style: italic;
	font-weight: bold;
}

#policy{
	padding-top: 60px;
}
#policy .un{
	text-decoration: underline;
	margin-bottom: 2em;
}

/* index */
#top_img{
	background: #fddb66;
	position: relative;
	width: 100%;
	min-width: 1280px;
	height: 100vh;
	padding: 30px;
}
#top_img h1{
	color: #fc0502;
	font-size: 4vw;
	text-align:center;
	
	width: 90%;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
}
#top_img h1,#top_img p,#top_img .pana_animation{
	position: absolute;
	z-index: 5;
}
#top_img h1 small{
	color: #fff;
	display: block;
	font-size: 0.4em;
}
#top_img div.slider_box{
	width:calc(100%-60px);
	height: 94vh;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 30px;
	position: relative !important;
}
#top_img div.slider_box::after{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	background: url("../images/bg_visual.png") repeat;
	z-index: 1;
}
#top_img div.slider_box > ul,
#top_img div.slider_box .slick-list,
#top_img div.slider_box .slick-track{
	width: 100%;
	height: 100%;
}
#top_img p{
	text-align: center;
	left: 50%;
	bottom: 10%;
	transform: translateX(-50%);
}
#top_img p a{
	display: flex;
	flex-direction: column;
	color: #fff;
	transition: all ease .5s;
}
#top_img p a:hover{
	animation: spin 500ms ease-in-out infinite;
}
@keyframes spin{
	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }
}
#top_img p a img{
	display: block;
	width: 34px;
	margin: 0 auto;
}
#top_img p a > span{
	display: block;
	font-size: 6pt;
}
#arc_text{
	margin-bottom: 30px;
}
#arc_lower{
	margin-top: 30px;
}

/* Firefox */
@-moz-document url-prefix() {
	#arc_text{
		margin-bottom: 24px;
	}
	#arc_lower{
		margin-top: 24px;
	}
}
/* Edge */
_:-ms-lang(x)::backdrop, #arc_text{
		margin-bottom: 24px;
	}
	_:-ms-lang(x)::backdrop, #arc_lower{
		margin-top: 24px;
	}

.top_main{
	background: #fddb66;
	padding: 60px 0;
	position: relative;
}
.top_main::before{
	content: "";
	position: absolute; 
	right: 0;
	top: 0;
	width: 16%;
	height: 100%;
	background: url("../images/bg_pattern.gif") repeat;
}

.x-slide {
	display: flex;
	margin: 200px auto 130px auto;
}
.x-slide span{
	margin:0; padding:0 40px; display:inline-block; white-space:nowrap;
	animation-name:marquee; animation-timing-function:linear;
	animation-duration:8s; animation-iteration-count:infinite;
	font-size: 2vw;
	position: relative;
}
.x-slide span::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	
	background: #fc0502;
	width: 6px;
	height: 6px;
	border-radius: 100%;
}
@keyframes marquee {
	from   { transform: translate(0%);} 
	99%,to { transform: translate(-100%);}
	}

#top_about{
	position: relative;
}
#top_about h2{
	letter-spacing: 0.1em;
	margin: 0 0 1em 0;
}
#top_about::before{
	content: "";
	width: 100%;
	height: 90%;
	background: #fbf5e9;
	
	position: absolute;
	bottom: -80px;
	left: 0;
}
#top_about::after{
	content: "";
	position: absolute;
	
	right: -100px;
	bottom: -160px;
	background: url("../images/cloud_02.png") no-repeat;
	width: 380px;
	height: 130px;
}
#top_about .d_fl{
	width: 90%;
	min-width: 1280px;
	margin: 0 auto;
	position: relative;
}
#top_about .d_fl > div{
	width: 50%;
	border-radius: 10px;
	border: 2px solid #333;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
	padding: 10px;
	position: relative;
	background: #fff;
	z-index: 1;
}
#top_about .d_fl > div::after{
	content: "JOIN US!";
	background: #de1519;
	color: #fff;
	font-family: 'Kanit', sans-serif;
	font-style: italic;
	font-size: 110%;
	text-align: right;
	width: 16%;
	max-width: 120px;
	padding: 4px 25px 4px 10px;
	
	position: absolute;
	left: -25px;
	top: 10%;
	z-index: 2;
}
#top_about svg{
	position: absolute;
	z-index: 1;
	width: 240px;
	left: -100px;
	bottom: -60px;
}
#top_about .slider figure{
	max-height: 500px;
}
#top_about section{
	width: 40%;
	margin-left: 5%;
	position: relative;
	
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}
#top_about section::before{
	content: "";
	position: absolute;
	left: -140px;
	top: -40px;
	
	width: 260px;
	height: 60px;
	background: url("../images/cloud_01.png") no-repeat;
}
#top_about section p{
	max-width: 500px;
	line-height: 2;
}
#top_about section p.btn_finger{
	margin-top: 1em;
}


#president{
	align-items: flex-start;
	margin-bottom: 60px;
}
#president > div::before{
	content: "";
	position: absolute;
	width: 300px;
	height: 130px;
	background: url("../images/cloud_03.png") no-repeat;
	
	left: -140px;
	bottom: -80px;
}
#president > div{
	position:relative;
}
#president figure{
	position: relative;
	z-index: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
#president .name{
	position: absolute;
	z-index: 2;
	left: -10%;
	bottom: 5%;

	text-align: right;
	font-size: 110%;
	font-style: italic;
	padding: 5px 20px;
	width: 80%;
	background:#de1519;
	color: #fff;
}
#president .name em{
	color: #fddb66;
	font-style: italic;
	display: block;
	font-size: 90%;
}

#president > section{
	width: 85%;
	padding: 3em 50px 50px 50px;
	margin: 60px 5% 0 5%;
	background: #fbf5e9;
	border-radius: 10px;
	position: relative;
}
#president > section h2{
	position: absolute;
	left: -0.5em;
	top: -1em;
	z-index: 1;
}
#president dl{
	margin-top: 2em;
}
#president .accordion_title{
	cursor: pointer;
	color: #de1519;
	font-weight: bold;
	padding: 5px 50px;
	border-radius: 30px;
	background:#de151810;
	transition: all ease .3s;
}
#president .accordion_title:hover,
#president .accordion_title.selected{
	background:#de151823;
	padding: 5px 30px 5px 60px;
}
#president .accordion_title::before{
	content: "";
	display: inline-block;
	width: 30px;
	height: 2px;
	background:#de1519;
	margin-right:10px;
	vertical-align: middle;
}
#president dd{
	padding: 10px;
}

#top_fb{
	width: 90%;
	margin: 0 auto ;
	padding-bottom: 60px;
	position: relative;
	justify-content: center;
}
#top_fb section{
	margin-right: 10%;
	position: relative;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#top_fb::before,#top_fb section::after{
	content: "";
	position: absolute;
}
#top_fb section::after{
	width: 260px;
	height: 60px;
	background: url("../images/cloud_01.png") no-repeat;
	
	right: -230px;
	bottom: -40px;
}

#top_fb .fb_box{
	border-radius: 10px;
	border: 2px solid #333;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
	padding: 30px;
	background: #fbf5e9;
	position: relative;
	z-index: 1;
}
#top_fb .btn_block a img{
	width: 30px;
	vertical-align: middle;
	margin-right: 0.5em;
}
#top_fb .pana_animation{
	position: absolute;
	left: 0;
	bottom: -80px;
	width: 20%;
	animation: fish 3s infinite;
}
/*Facebook*/
.fb-page{
	width:500px;
	height:500px;
	border:1px solid #eee;
	background: #fff;
}

#top_graduate{
	width: 100%;
	position: relative;
	z-index: 1;
	padding-left: 20%;
	margin-top: -20px;
	padding-bottom: 100px;
	background: url("../images/bg_pattern_face.gif") repeat #fbf5e9;
}
#top_graduate::after{
	content: "";
	width: 100%;
	height: 300px;
	position: absolute;
	top: 0;
	left: 0;
	background: #de1819;
	z-index: -1;
}
#top_graduate h2{
	color: #fff;
	padding: 120px 0 20px 0;
	font-size: 2.4em;
}

#top_graduate .d_fl{
	width: 96%;
	overflow-y: hidden;
	overflow-x: scroll;
	flex-wrap: nowrap;
}
#top_graduate dl{
	width: 300px !important;
}


/* swiper */
.swiper-wrapper{
	min-width: 1280px !important;
	padding-bottom: 80px ;
	cursor: pointer;
}
.swiper-slide{
	height:auto !important;
}
.swiper-slide{
	width: 300px !important;
}
.swiper-scrollbar{
	background: #fff !important;
	border: 2px solid #333;
	border-radius: 20px !important;
	cursor: pointer;
}
.swiper-container-horizontal>.swiper-scrollbar{
	height: 10px !important;
	left: 0 !important;
	width: 80% !important;
}
.swiper-scrollbar-drag{
	background: #de1819 !important;
}

.swiper-slide{
	border: 2px solid #333;
	background: #fff;
	border-radius: 10px;
	padding: 50px 40px 20px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.swiper-slide dt{
	text-align: center;
	color: #de1819;
	font-weight: bold;
	font-size: 1.8em;
	line-height: 1.2;
	margin-bottom: 1em;
}
.swiper-slide dt em{
	display: block;
	margin-bottom: 10px;
	font-size: 2em;
}
.swiper-slide dd{
	display: flex;
	flex-direction: column;
	height: 150px;
}
.swiper-slide dd p.text{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #de1819;
}
.swiper-slide dd p.btn_finger{
	margin-top: auto;
}

/*-----------------------------------------------
__Footer
-----------------------------------------------*/
footer{
	background:#fddb66;
}
footer address{
	padding: 80px 0;
	justify-content: space-between;
}
footer article{
	background:url("../images/wave-red_clear.png") left top repeat-x;
	padding-top: 50px;
}
footer address h3{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
footer address h3 a{
	color: #de1819;
	font-size: 1.5em;
	margin-left: 25px;
}
footer address h3 a small{
	display: block;
	font-size: 0.5em;
	margin-top: 8px;
}
footer address .btn_block a{
	margin-left: 1.5em;
	min-width: 100px;
	padding: 5px 20px;
	font-size: 90%;
}
footer address .btn_block a img{
	width: 24px;
	margin-right: 10px;
	vertical-align: middle;
}
footer address dl{
	font-size: 110%;
}
footer address dt{
	font-weight: bold;
	margin-bottom: 10px;
}
footer address dd{
	margin-bottom: 40px;
}
footer address dd:last-of-type{
	margin-bottom: 0;
}
footer address iframe{
	border: 2px solid #333;
	background: #fff;
	border-radius: 10px;
}
footer aside{
	background:#f0c346;
	height: 82px;
	position: relative;
}
footer aside small,
footer aside a{
	font-size: 100%;
	color: #de1819;
}
footer aside .wrap{
	height: 82px;
	display:flex;
	justify-content: space-between;
	align-items: center;
}
footer #scrolltop{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 92px;
	height: 82px;
	display: block;
	background: #e8a33c;
	transition: all ease .3s;
}
footer #scrolltop:hover{
	background:#d69637;
}
footer #scrolltop::after{
	content: "";
	position: absolute;
	top: 32px;
	left: 30px;
	transform: rotate(-45deg);

	border-right: 5px solid #de1819;
	border-top: 5px solid #de1819;
	width: 30px;
	height: 30px;
	transition: all ease .3s;
}
footer #scrolltop:hover::after{
	top: 25px;
}
footer #scrolltop span{
	display: none;
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.f_right{
	float: right;
}
.f_left{
	float: left;
}
.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}