@charset "UTF-8";
/* CSS Document */
body{
font: 14px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
margin:0;
color:#313131;
}

img{
outline:none;
border-style:none;
}

a{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:visited{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    color: #F5A862;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

/*HEADER*/
header{
    display: block;
	height: 80px;
	background: #000;
	color: #fff;	
}
header h1{
	
}
.contener {
	width: 1200px;
	margin: 0 auto;
	padding: 0 50px;

}
img.logo {
	display: inline-block;
	padding: 30px 0 20px;

}

nav {
display: inline-block;
vertical-align: top;
}

.pcMenu {
display: block;
width: 900px;
margin: 0 auto;
padding: 30px 0 20px;
text-align: right;
}

.pcMenu li{
	padding: 0 15px;
	display: inline-block;
	text-align: right;
	font-family: 'Ubuntu', sans-serif;
	font-size: 18px;
}
.pcMenu li a:hover {
  color: #feffd7;
}

.pcMenu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.pcMenu li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fcff2f;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.pcMenu li a:hover::after {
  transform: scale(1, 1);
}

/*on*/
.pcMenu li.on a {
  color: #feffd7;
}


#main {
	margin: 0 auto;
	padding: 0 0;
	width: 1200px;
	height: 640px;
	text-align: center;
	background-image: url("../img/main_bg.png");
	background-repeat: no-repeat;
	background-size: contain;
}

h1 {
	vertical-align: middle;
	margin: 0 auto;
	padding: 260px 0 0;
}


#main p {
	color: #fff;
	font-size: 28px;
	padding: 10px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	
}

.full {
	margin: 0 auto;
	padding: 0 0;
	background-image: url("../img/about_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.topAbout h2 {
	position: relative;
	padding: 70px 30px 10px;
	text-align: left;
	color: #1116be;
	display: inline-block;
	margin-bottom: 1em;
	
}

.topAbout h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 5px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #1116be;/*線の色*/
}
.topAbout p {
	display: inline-block;
	color: #1116be;
}

.twoBlock {
	margin: 60px 30px;
	display: inline-block;
	width: 470px;
	text-align: center;
	
	
}

.circle {
	margin: 0 auto;
	width: 164px;
	height: 164px;
	border-radius: 50%;
	border: 3px solid #151ce0;
	text-align: center;
}
.circle img {
padding: 35px;

}

.twoBlock dd {
padding: 20px 0;	
}

.twoBlock dd.btn {
font-family: 'Ubuntu', sans-serif;
font-size: 18px;
letter-spacing: 3px;
font-weight: 600;
}

.btn a {
margin: 30px auto;
  position: relative;
  display: inline-block;
box-sizing: content-box;
  padding: .8em 3em;
  border: 3px solid #151ce0;
  color: #151ce0;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .2s;

}
.btn a::before,
.btn a::after {
  position: absolute;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 3px solid transparent;
}
.btn a::before {
  top: -3px;
  left: -3px;
}
.btn a::after {
  bottom: -3px;
  right: -3px;
}
.btn a:hover {
  color: #ffff00;
}
.btn a:hover::before,
.btn a:hover::after {
  width: 100%;
  height: 100%;
}
.btn a:hover::before {
  border-bottom-color: #ffff00;
  border-left-color: #ffff00;
  transition: height .3s, width .3s .3s;
}
.btn a:hover::after {
  border-top-color: #ffff00;
  border-right-color: #ffff00;
  transition: height .3s, width .3s .3s;
}



.bnArea {
	width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: 70px 0 0;
}

.bnArea a:hover img {
	opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;

}

.pcFtMenu {
	margin: 200px 0 0;
	
}

.pcFtMenu li {
	padding: 10px 20px;
	display: inline-block;
	vertical-align: bottom;
	color: #151ce0;
	font-weight: bold;
}
.pcFtMenu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
	color: #151ce0;
}
.pcFtMenu li a:hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
	color: #151ce0;
	opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}


.pcFtMenu li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #151ce0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.pcFtMenu li a:hover::after {
  transform: scale(1, 1);
}

footer {
	margin: 0 auto;
	padding: 125px 0 20px;
	text-align: center;
	width: 100%;
	background: #000;
	color: #fff;
	
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


@media screen and (max-width:1200px){
    header {
        width: 100%;
    }
.contener {
	width: 100%;
	margin: 0 auto;
	padding: 0 0;

}
img.logo {
    padding: 30px 0 20px 20px;
    float: left;
    }
    
nav {
float: right;
width: 470px;
    }
.pcMenu {
display: block;
float: right;
width: 470px;
margin: 0 auto;
padding: 30px 0 20px 30px;
text-align: right;
}
    #main {
        width: 100%;
    }

    h1{
padding: 20% 0 0;
    }
#main p {
    padding: 10px 0 20%;
    }
#main {
    height: auto;
    background-size: cover;
    }
    
.twoBlock {
width: 40%;
vertical-align: top;
    }
.bnArea {
    width: 100%;
    }
.bnArea img {
    width: 90%;
    max-width: 1026px;
}
.pcFtMenu {
width: 100%;
margin: 50px 0 0;
}
footer {
clear: both;
    }

}

@media screen and (min-width:769px){
.zdo_drawer_menu {
    display: none;
    
    }
}

@media screen and (max-width:768px){
.zdo_drawer_menu {
    display: block;
    
}
 .pcMenu{
display: none;
}
#main p {
font-size: 18px;
    }
#main h1 img {
    max-width: 290px;
width: 50%;
}
.circle img {
padding: 32px 25px;
width: 100px;
}
.circle img.circle02 {
padding: 20px 25px;
width: 100px;
}
.circle {
    width: 120px;
    height: 120px;
    }
.contener {
        text-align: center;
    }
.topAbout h2 {
text-align: center;
display: block;
}
.bnArea img {
    width: 90%;
}
.pcFtMenu li {
    padding: 10px 10px;
}
#about .consept h2 {
 font-size: 18px;   
}
    
    
}