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

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

body{
	margin: 0;
	padding: 0;
	background: #f2f2f2;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

img{
	width: 100%;
	vertical-align: bottom;
}

#main{
}

ul,li{
	list-style: none;
}

a{
	text-decoration: none;
}

hr{
	width: 45%;
	color: #3c3c3c;
}

.fade-up {
  transition: opacity 0.7s;
  -moz-transition: opacity 0.7s;
  -webkit-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
  transition: transform 0.7s;
  -moz-transition: transform 0.7s;
  -webkit-transition: transform 0.7s;
  -o-transition: transform 0.7s;
}

/*------ SP ------*/

header h1{
	background: #3c3c3c;
	padding: .5%;
	margin: 0;
	color: white;
	font-size: .8rem;
	font-weight: normal;
}

.fixed {
	position: fixed;
	top: 0;
	z-index: 9999;
}

header .header-area{
	display: none;
}

header #sp-nav{
	padding: 2% 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
	background: #f2f2f2;
}
	
header #sp-nav a:hover{
	opacity: .6;
}
	
header #sp-nav .logo{
	width: 50%;
    padding: 1% 10% 0 0;
}

header #sp-nav .logo img{
	width: 70%;
	margin-left: 5%;
}
	
header .header-area .menu{
	display: none;
}

header .header-area .tel{
    display: none;
}

header #sp-nav .sp-tel{
    font-size: 1.8rem;
    text-align: center;
    vertical-align: middle;
    margin-right: 1%;
	width: 20%;
}

header #sp-nav .sp-tel a{
	background: #fbc43f;
	padding: 20%;
    margin-right: 3%;
	display: block;
	color: #3c3c3c;
}

header #sp-nav .sp-menu-btn{
	width: 20%;
}

header #sp-nav .sp-menu a{
	background: #3c3c3c;
	display: block;
	color: white;
}

header #sp-nav .sp-menu,
header #sp-nav .sp-menu span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

header #sp-nav .sp-menu {
	position: absolute;
 	width: 18%;
	right: 1.3%;
 	height: 64px;
 	z-index: 9999;
 	background: #3c3c3c;
}

header #sp-nav a.sp-menu:hover{
	background: rgba(0,0,0,0.5);
}

header #sp-nav .sp-menu span {
 	position: absolute;
 	z-index: 9999;
 	left: 8px;
 	width: 75%;
 	height: 4px;
 	background-color: #fff;
 	border-radius: 4px;
}

header #sp-nav .sp-menu span:nth-of-type(1) {
 	top: 13px;
}

header #sp-nav .sp-menu span:nth-of-type(2) {
 	top: 29px;
}

header #sp-nav .sp-menu span:nth-of-type(3) {
 	bottom: 15px;
}

header #sp-nav .sp-menu.active span:nth-of-type(1) {
 	-webkit-transform: translateY(20px) rotate(-45deg);
 	transform: translateY(19px) rotate(-45deg);
}

header #sp-nav .sp-menu.active span:nth-of-type(2) {
 	opacity: 0;
}

header #sp-nav .sp-menu.active span:nth-of-type(3) {
 	-webkit-transform: translateY(-20px) rotate(45deg);
 	transform: translateY(-20px) rotate(45deg);
}

#overlay{
	display: none;
 	width: 100%;
 	height:100%;
 	text-align: center;
 	position: fixed;
 	top: 0;
 	z-index: 100;
 	background: rgba(0,0,0,0.8);
 	padding: 20px;
 	box-sizing: border-box;
}

#overlay ul{
 	padding-left: 0px;
}

#overlay ul li{
 	padding-left: 0px;
 	list-style-type: none;
 	margin-top: 50px;
}

#overlay ul li a{
 	color: #fff;
 	text-decoration: none;
 	font-size: 150%;
}
	
.main-img{
    position: relative;
}

.main-img .bg{
	display: none;
}

.main-img .sp-bg{
	display: block;
}

.main-img .box{
	position: absolute;
    top: 50%;
	left: 50%;
	width: 80%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
	
.main-img .box .ttl{
	width: 100%;
}

.main-img .box .txt{
	color: #fbc43f;
    font-size: 1rem;
    text-align: center;
    margin: 8% 0 0;
}
	
.main-img .box .btn{
	border: #fbc43f 5px solid;
    width: 80%;
    margin: 8% auto 0;
    text-align: center;
}
	
.main-img .box .btn a{
	position: relative;
	display: block;
	padding: 5% 10%;
	color: #fbc43f;
    font-size: 1rem;
}
	
.main-img .btn .arrow::after{
	content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #fbc43f;
    border-right: solid 2px #fbc43f;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
	right: 3%;
    margin-top: -4px;
}

.main-img .box .btn a:hover{
	background: #fbc43f;
	color: #3c3c3c;
}
	
.main-img .btn .arrow:hover::after{
    border-top: solid 2px #3c3c3c;
    border-right: solid 2px #3c3c3c;
}

/*--- concept ---*/	

#concept{
	background: #e7e6e5;
    padding: 5%;
}
	
#concept .ttl{
	text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}
	
#concept .st{
	text-align: center;
	font-size: 1rem;
    margin: 5% 0 3%;
	line-height: 1.5;
	font-weight: bold;
}
	
#concept .txt{
	text-align: center;
    line-height: 2;
	font-size: .7rem;
}

#concept ul{
	display: flex;
	padding: 0;
}
	
#concept ul li{
	width: 30%;
	margin-right: 5%;
}

#concept ul li:last-child{
	margin-right: 0;
}

/*--- concept ---*/
	
/*--- service ---*/	

#service{
    padding: 5%;
}
	
#service .ttl{
    text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}

#service .box{
	margin: 15% 0;
}

#service .sub-txt{
	font-weight: bold;
	text-align: center;
	width: 98%;
	margin: 0 auto;
}

#service .box-area2{
	display: none;
}

#service .img{
	width: 100%;
}
	
#service .sub{
    width: 100%;
}
	
#service .sub .st{
	text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
	
#service .sub .txt{
    line-height: 1.5;
}

#service .sub .price{
	font-size: 150%;
    color: red;
    font-weight: bold;
    margin: 5% 0 2%;
}
	
#service .sub .price02{
	font-size: 120%;
    font-weight: bold;
    margin: 0 0 3%;
}

#service .sub .btn{
	width: 80%;
    margin: 10% auto 0;
}
	
#service .sub .btn a{
	position: relative;
	padding: 6% 10%;
    background: #fbc43f;
    margin: 5% auto;
    display: block;
    text-align: center;
	color: #3c3c3c;
	border: 3px solid #fbc43f;
}
	
#service .sub .btn a:hover{
	border: 3px solid #fbc43f;
	background: #f2f2f2;
}
	
#service .sub .btn .arrow::after{
	content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #3c3c3c;
    border-right: solid 2px #3c3c3c;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
	right: 3%;
    margin-top: -4px;
}
	
/*--- service ---*/
	
/*--- features ---*/	

#features{
	background: url("../images/features-bg.jpg") 100% center;
    padding: 5%;
}
	
#features hr .features{
	width: 10%;
	color: white;
}
	
#features .ttl{
	color: white;
	text-align: center;
	font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}
	
#features .txt{
	color: white;
	text-align: center;
    margin: 5% 0 0;
	line-height: 2;
	font-size: .7rem;
}
	
#features .area{
	margin: 5% auto;
}

#features .area .box{
	border: #fbc43f 5px solid;
    padding: 2%;
	margin: 0 0 10%;
}
	
#features .area .box:last-child{
	margin-right: 0;
}
	
#features .area .box .icon{
	width: 28%;
    margin: 10% auto;
}
	
#features .area .box .st{
	color: white;
    text-align: center;
    font-size: 1.3rem;
}
	
#features .area .box .txt{
	color: white;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}
	
#features .area .box .icon-2{
	width: 20%;
    margin: 10% auto;
}

#features .area ul{
	display: flex;
    flex-wrap: wrap;
    color: #fbc43f;
    padding: 0;
    font-size: 1rem;
    margin: 8% auto 0;
    width: 100%;
}
	
#features .area ul li{
	flex: auto;
    min-width: 100px;
    width: 50%;
	margin-bottom: 3%;
}

/*--- features ---*/
	
/*--- seminar ---*/	

#seminar{
	background: #e7e6e5;
    padding: 5%;
}
	
#seminar .ttl{
	text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}
	
#seminar .box{
}

#seminar .box .sub{
    background: white;
	padding: 0 0 3%;
    margin: 0 0 10%;
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
	
#seminar .box .sub:last-child{
    margin-right: 0;
}

#seminar .box .ttl{
	text-align: center;
    font-size: 1.3rem;
    padding: 0 2%;
    font-weight: bold;
}
	
#seminar .txt{
    padding: 0 11%;
    line-height: 1.5;
}
	
#seminar .btn{
    width: 80%;
    margin: 8% auto 5%;
    text-align: center;
}
	
#seminar .btn-1{
	margin-top: 13%;
}
	
#seminar .btn a{
	position: relative;
	display: block;
	padding: 5%;
	background: #fbc43f;
	border: 3px solid #fbc43f;
	color: #3c3c3c;
	width: 90%;
}
	
#seminar .btn .arrow::after{
	content: '';
    width: 3px;
    height: 3px;
    border: 0px;
    border-top: solid 2px #3c3c3c;
    border-right: solid 2px #3c3c3c;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
	right: 5%;
    margin-top: -4px;
}

	
#seminar .btn a:hover{
	border: 3px solid #fbc43f;
	background: white;
}

/*--- seminar ---*/
	
/*--- news ---*/	

#news{
	background: url("../images/news-bg.jpg") 100% center;
	padding: 3% 5%;
}
	
#news hr{
	width: 90%;
	color: #3c3c3c;
}

#news .box{
    background: white;
    padding: 2% 3% 0;
    width: 90%;
    margin: 5% auto;
}

#news .box .ttl{
	text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}

#news .box dl{
	overflow: hidden;
    padding: 2% 0 2%;
    margin: 0 auto;	
}
	
#news .box dl dt{
	float: left;
    clear: left;
    width: 50%;
    background: #3c3c3c;
    padding: 1%;
    text-align: center;
    margin: 0 0 2.3% 1%;
	color: white;
}

#news .box dl dd{
	float: left;
    margin: 1% 2% 5%;
}
	
/*--- news ---*/

/*--- access ---*/	

#access{
}
	
#access .box{
	width: 90%;
    margin: 3% auto;
}
	
#access .box .logo{
	width: 40%;
    margin: 5% auto;
}
	
#access .box .address{
	margin-top: 3%;
    font-size: 1rem;
    text-align: center;
}
	
#access .btn-area{
	width: 90%;
    margin: 3% auto;
}
	
#access .btn-area .tel{
    background: #fbc43f;
    text-align: center;
	margin: 0 0 3%;
}
	
#access .btn-area .tel i{
	margin-right: 2%;
}
	
#access .btn-area .mail{
	background: #fbc43f;
    text-align: center;
	margin: 0 0 3%;
}
	
#access .btn-area .mail i{
	margin-right: 2%;
}
	
#access .btn-area a{
	font-size: 1.3rem;
    display: block;
    padding: 5%;
	color: #3c3c3c;
    font-weight: bold;
	border: 3px solid #fbc43f;
}
	
#access .btn-area a:hover{
	border: 3px solid #fbc43f;
	background: #f2f2f2;
}

#access #map{
	line-height: 0;
}
	
/*--- access ---*/

/*--- footer ---*/	

#footer{
	background: #3c3c3c;
	padding: 3% 15%;
}
	
#footer a:hover{
	opacity: .6;
}
	
#footer .box{
}
	
#footer .logo{
	width: 55%;
    margin: 5% auto;
}
	
#footer .menu{
	display: none;
}
	
#footer .sns{
	color: white;
   	margin: 15% auto 0;
    width: 90%;
}
	
#footer .sns p{
	text-align: center;
}
	
#footer ul{
	display: flex;
    width: 50%;
    margin: 5% auto;
    padding: 0;
}
	
#footer ul li{
	margin-right: 10%;
	width: 100%;
}

#footer ul li:last-child{
	margin-right: 0;
}

.copyright{
	background: #1f1f1f;
    padding: .5% 0;
    margin: 0;
    text-align: center;
	color: white;
}

/*--- footer ---*/


/*----- タブレット ------*/

@media screen and (min-width: 480px) and (max-width: 768px) {	
	
header h1{
	background: #3c3c3c;
	padding: .5%;
	margin: 0;
	color: white;
	font-size: .8rem;
	font-weight: normal;
}
	
header #sp-nav{
	display: none;
}

header .header-area{
	padding: 0;
    width: 100%;
    margin: 0 auto;
	display: flex;
}
	
header .header-area a:hover{
	opacity: .6;
}
	
header .header-area .logo{
	width: 18%;
    padding: 1% 1%;
}
	
header .header-area .logo .logo-width{
	width: 100%;
}

header .header-area .logo img{
	width: 100%;
}	
	
header .header-area .pc-menu{
    padding: 4% 0 0 0;
    width: 60%;
    display: table-cell;
}
	
header .header-area .menu{
	width: 100%;
	margin: 0 0 0 7%;
	display: block;
	padding: 0;
}

header .header-area .menu li{
	margin-right: 3.5%;
    float: left;
    font-size: .7rem;
}
	
header .header-area .menu li a{
	color: #3c3c3c;
}
	
header .header-area .tel{
    text-align: center;
    width: 25%;
    display: table-cell;
    padding: 1%;
}
	
header .header-area .sp-tel{
	display: none;
}
	
header .sp-menu-btn{
	display: none;
}

header .header-area .overlay{
	display: none;
}	
	
header .header-area .tel .number{
    padding: 0 0 1%;
    margin: 0;
}

header .header-area .tel .number a{
	display: block;
    color: black;
    font-size: 1rem;
    font-weight: bold;
	background: #fbc43f;
	padding: 5%;
}
	
header .header-area .tel .number a span.br{
	font-weight: normal;
	font-size: .3rem;
}
	
header .header-area .tel .number a span.br::before{
	content: "\A";
	white-space: pre;
}
	
header .header-area .tel .number i{
	margin-right: 3%;
    font-size: .9rem;
}

header .header-area .tel .time{
	font-size: .8rem;
    padding: 2% 0 0;
    margin: 0;
}

}

/*------ PC ------*/
@media screen and (min-width: 769px){	

hr{
	width: 10%;
	color: #3c3c3c;
}
	
header{
	overflow: hidden;
}
	
header #sp-nav{
	display: none;
}
	
header h1{
	background: #3c3c3c;
	padding: .5%;
	margin: 0;
	color: white;
	font-size: .8rem;
	font-weight: normal;
}

header .header-area{
	padding: 1% 1%;
    width: 100%;
    margin: 0 auto;
	display: flex;
	max-width: 1980px;
}
	
header .header-area a:hover{
	opacity: .6;
}
	
header .header-area .logo{
	width: 10%;
    padding: 1% 1%;
	min-width: 140px;
}
	
header .header-area .logo .logo-width{
	width: 100%;
}

header .header-area .logo img{
	width: 100%;
}	
	
header .header-area .pc-menu{
    margin: 3% 0 0 8%;
	width: 60%;
	display: table-cell;
}
	
header .header-area .menu{
	width: 100%;
	margin: 0 auto;
	display: block;
}
	
@-moz-document url-prefix() {
header .header-area .menu {
	padding: 3% 0 0;
}
}

header .header-area .menu li{
	float: left;
    font-size: 100%;
    width: 15%;
    min-width: 20px;
}
	
header .header-area .menu li:last-child{
	margin-right: 0;
}
	
header .header-area .menu li a{
	color: #3c3c3c;
}
	
header .header-area .tel{
    text-align: center;
    width: 18%;
    display: table-cell;
    padding: 1% 2% 0 0;
	min-width: 250px;
	margin: 0 0 0 3%;
}	
	
header .header-area .tel .number{
    padding: 0 0 1%;
    margin: 0;
}

header .header-area .tel .number a{
	display: block;
    color: black;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .05rem;
	background: #fbc43f;
	padding: 5%;
}
	
header .header-area .tel .number a span.br{
	font-weight: normal;
	font-size: .8rem;
}
	
header .header-area .tel .number a span.br::before{
	content: "\A";
	white-space: pre;
}
	
header .header-area .tel .number i{
	margin-right: 3%;
    font-size: .9rem;
}

header .header-area .tel .time{
	font-size: .8rem;
    padding: 2% 0 0;
    margin: 0;
}
	
.main-img{
    position: relative;
}
	
.main-img .bg{
	display: block;
}
	
.main-img .sp-bg{
	display: none;
}

.main-img .box{
	position: absolute;
    top: 50%;
	left: 50%;
	width: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
	
.main-img .box .ttl{
	width: 100%;
}

.main-img .box .txt{
	color: #fbc43f;
    font-size: 2.5rem;
    text-align: center;
    margin: 8% 0 0;
}
	
.main-img .box .txt span{
	font-family: YuMincho, /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
}
	
.main-img .box .btn{
	border: #fbc43f 5px solid;
    width: 50%;
    margin: 8% auto 0;
    text-align: center;
}
	
.main-img .box .btn a{
	position: relative;
	display: block;
	padding: 5% 0;
	color: #fbc43f;
    font-size: 1.3rem;
}
	
.main-img .btn .arrow::after{
	content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #fbc43f;
    border-right: solid 2px #fbc43f;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
	right: 3%;
    margin-top: -4px;
}

.main-img .box .btn a:hover{
	background: #fbc43f;
	color: #3c3c3c;
}
	
.main-img .btn .arrow:hover::after{
    border-top: solid 2px #3c3c3c;
    border-right: solid 2px #3c3c3c;
}

/*--- concept ---*/	

#concept{
	background: #e7e6e5;
    padding: 5% 15% 5%;
}
	
#concept .ttl{
	text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}
	
#concept .st{
	text-align: center;
	font-size: 2rem;
    margin: 5% 0 3%;
	line-height: 1.5;
	font-weight: bold;
}
	
#concept .txt{
	text-align: center;
    line-height: 2;
	font-size: 1rem;
}

#concept ul{
	display: flex;
    margin-top: 5%;	
}
	
#concept ul li{
	width: 30%;
	margin-right: 5%;
}

/*--- concept ---*/
	
/*--- service ---*/	

#service{
    padding: 5% 10% 5%;
}
	
#service .ttl{
    text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}

#service .box{
	display: flex;
	margin: 5% 0 0;
}
	
#service .box-area-sp{
	display: none;
}
	
#service .box-area2{
	display: flex;
	margin: 5% 0;
}
	
#service .box-area2 .img{
	width: 55%;
    margin: 3% 0 0 5%;
}

#service .area3 .img {
	width: 55%;
    margin: 5% 5% 0 0;
}	
	
#service .img{
	width: 55%;
    margin-right: 5%;
}
	
#service .sub{
    width: 40%;
}
	
#service .sub-txt{
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
	
#service .sub .st{
	text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
	
#service .sub .txt{
    line-height: 1.5;
}
	
#service .sub .price{
	font-size: 150%;
    color: red;
    font-weight: bold;
    text-align: center;
    margin: 5% 0 2%;
}
	
#service .sub .price02{
	font-size: 130%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 3%;
}	
	
#service .sub .margin-0{
    margin: 0 auto!important;
}

#service .sub .btn{
	width: 80%;
    margin: 6% auto 0;
}
	
#service .sub .btn a{
	position: relative;
	padding: 6% 10%;
    background: #fbc43f;
    margin: 5% auto;
    display: block;
    text-align: center;
	color: #3c3c3c;
	border: 3px solid #fbc43f;
}
	
#service .sub .btn a:hover{
	border: 3px solid #fbc43f;
	background: #f2f2f2;
}
	
#service .sub .btn .arrow::after{
	content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #3c3c3c;
    border-right: solid 2px #3c3c3c;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
	right: 3%;
    margin-top: -4px;
}
	
/*--- service ---*/
	
/*--- features ---*/	

#features{
	background: url("../images/features-bg.jpg");
	background-size: cover;
    padding: 5% 10% 2%;
}
	
#features hr .features{
	width: 10%;
	color: white;
}
	
#features .ttl{
	color: white;
	text-align: center;
	font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}
	
#features .txt{
	color: white;
	text-align: center;
    margin: 5% 0 0;
	line-height: 2;
	font-size: 1rem;
}
	
#features .area{
	display: flex;
	margin: 5% auto;
}

#features .area .box{
	width: 50%;
	margin-right: 5%;
	border: #fbc43f 5px solid;
    padding: 2%;
}
	
#features .area .box:last-child{
	margin-right: 0;
}
	
#features .area .box .icon{
	width: 28%;
    margin: 10% auto;
}
	
#features .area .box .st{
	color: white;
    text-align: center;
    font-size: 1.3rem;
}
	
#features .area .box .txt{
	color: white;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}
	
#features .area .box .txt span{
	text-decoration: underline;
}
	
#features .area .box .icon-2{
	width: 20%;
    margin: 10% auto;
}

#features .area ul{
	display: flex;
    flex-wrap: wrap;
    color: #fbc43f;
    padding: 0;
    font-size: 1.2rem;
    margin: 8% auto 0;
    width: 100%;
}
	
#features .area ul li{
	flex: auto;
    min-width: 200px;
    width: 50%;
	margin-bottom: 3%;
}

/*--- features ---*/
	
/*--- seminar ---*/	

#seminar{
	background: #e7e6e5;
    padding: 5% 10% 0;
}
	
#seminar .ttl{
	text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}
	
#seminar .box{
	display: flex;
	padding: 7% 5% 0;
}

#seminar .box .sub{
    margin-right: 3%;
    background: white;
	width: 90%;
	filter: drop-shadow(0px 0px 3px rgba(0,0,0,.3));
}
	
#seminar .box .sub:last-child{
    margin-right: 0;
}

#seminar .box .ttl{
	text-align: center;
    font-size: 1.3rem;
    padding: 0 2%;
    font-weight: bold;
}
	
#seminar .txt{
    padding: 0 11%;
    line-height: 1.5;
}
	
#seminar .txt span{
	font-weight: bold;
}
	
#seminar .btn{
    width: 50%;
    margin: 8% auto 5%;
    text-align: center;
}
	
#seminar .btn-1{
	margin-top: 13%;
}
	
#seminar .btn a{
	position: relative;
	display: block;
	padding: 5%;
	background: #fbc43f;
	border: 3px solid #fbc43f;
	color: #3c3c3c;
}
	
#seminar .btn .arrow::after{
	content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #3c3c3c;
    border-right: solid 2px #3c3c3c;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
	right: 5%;
    margin-top: -4px;
}

	
#seminar .btn a:hover{
	border: 3px solid #fbc43f;
	background: white;
}

/*--- seminar ---*/
	
/*--- news ---*/	

#news{
	background: url("../images/news-bg.jpg");
	background-size: cover;
    padding: .5% 10%;
}
	
#news hr{
	width: 90%;
	color: #3c3c3c;
}
	
#news .box{
    background: white;
    padding: 2% 5%;
}
	
#news .box .ttl{
	text-align: center;
    font-size: 2rem;
	font-family: 'Alegreya Sans SC', sans-serif;
}

#news .box{
    background: white;
    padding: 2% 5% 0;
}

#news .box dl{
	overflow: hidden;
    padding: 2% 0 2%;
    width: 85%;
    margin: 0 auto;	
}
	
#news .box dl dt{
	float: left;
    clear: left;
    width: 15%;
    background: #3c3c3c;
    padding: 1%;
    text-align: center;
    margin: 0 0 2.3% 1%;
	color: white;
}

#news .box dl dd{
	float: left;
    margin: 1% 2% 2%;
}
	
/*--- news ---*/

/*--- access ---*/	

#access{
}
	
#access .box{
	display: flex;
	width: 45%;
    margin: 3% auto;
}
	
#access .box .logo{
	margin: 0 5% 0 0;
    width: 18%;
}
	
#access .box address{
	margin-top: 3%;
    font-size: 1rem;
}
	
#access .btn-area{
	display: flex;
    width: 50%;
    margin: 3% auto;
}
	
#access .btn-area .tel{
    background: #fbc43f;
    margin-right: 5%;
    width: 45%;
    text-align: center;	
}
	
#access .btn-area .tel i{
	margin-right: 2%;
}
	
#access .btn-area .mail{
	background: #fbc43f;
    margin-right: 5%;
    width: 45%;
    text-align: center;
}
	
#access .btn-area .mail i{
	margin-right: 2%;
}
	
#access .btn-area a{
	font-size: 1.3rem;
    display: block;
    padding: 5%;
	color: #3c3c3c;
    font-weight: bold;
	border: 3px solid #fbc43f;
}
	
#access .btn-area a:hover{
	border: 3px solid #fbc43f;
	background: #f2f2f2;
}
	
/*--- access ---*/

/*--- footer ---*/	

#footer{
	background: #3c3c3c;
	padding: 3% 15%;
}
	
#footer a:hover{
	opacity: .6;
}
	
#footer .box{
	display: flex;
}
	
#footer .logo{
	width: 15%;
	margin: 0;
	min-width: 100px;
}
	
#footer .menu{
	display: flex;
    color: white;
    width: 80%;
    margin: 2% 0 2% 8%;
    padding: 0;
}
	
#footer .menu li{
	margin-right: 5%;
}
	
#footer .menu li a{
	color: white;
	font-size: .8rem;
}
	
#footer .sns{
	color: white;
    margin: 8% auto 0;
    width: 50%;
}
	
#footer .sns p{
	text-align: center;
}
	
#footer ul{
	display: flex;
    width: 30%;
    margin: 0 auto;
    padding: 0;
}
	
#footer ul li{
	margin-right: 10%;
}

.copyright{
	background: #1f1f1f;
    padding: .5% 0;
    margin: 0;
    text-align: center;
	color: white;
}
	
/*--- footer ---*/
	
}
