@charset "utf-8";

/* ------------------------------------------
	- COMMON SETTING
	- HEADER
		-- NAV MENU
	- MAIN
		--
		--
	- FOOTER
------------------------------------------ */

/* ==============================================================
	COMMON SETTING
============================================================== */
body{
	width:100%;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}
h1,h2,h3,h4,h5,h6,p,a,li,th,td{
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
	font-weight: 300;
}
p,a,li,th,td,strong{
	font-size:16px;
	line-height: 1.75;
}
a{
	text-decoration: none;
	color: inherit;
}
a:hover{opacity: 0.75;}
strong{
	font-weight:600;
}
.sp{ display: none;}

@media screen and (max-width:750px){
	.pc{ display: none;}
	.sp{ display: block;}
	p,a,li,th,td,strong{
		font-size:14px;
	}
	img{
		width:auto;
		max-width:100%;
	}
}
@media screen and (min-width:750px){
	body{
		min-width:1200px;
	}
}

/*	AREA SIZE
------------------------------------------------ */
@media screen and (min-width:750px){
	.w1200{
		width:1200px;
		margin: 0 auto;
	}
}
@media screen and (max-width:750px){
	.w90{
		width:90%;
		margin: 0 auto;
	}
}


/*-------	ANIMATION -------- */
.slowFadeIn {
	-webkit-transition: opacity 1300ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1300ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1300ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 1300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1300ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 1300ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate(0px, 30px);
          transform: translate(0px, 30px);
  opacity: 0;
}
.slowFadeIn.active {
	-webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
}
@media screen and (min-width:750px){
	.FadeIn{
		opacity: 0;
		transition: all 1.5s;
	}
	.FadeIn.active{
		opacity: 1;
	}
}

/* ==============================================================
	HEADER
============================================================== */
header{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	z-index: 10;
}
@media screen and (max-width:750px){
	header{
		position: relative;
		top:0;
		left:0;
		width:100%;
	}
}
.headerArea {
	margin: 0 auto;
  display: flex;
	align-items: center;
	padding-top: 30px;
	position: relative;
}
@media screen and (max-width:750px){
	.headerArea {
		padding: 10px;
		justify-content: space-between;
	}
}
.headerArea .logo{
	display: flex;
	align-items: center;
	margin-right:20px;
	margin-left:40px;
}
@media screen and (max-width:750px){
	.headerArea .logo{
		width:60%;
		margin-right: 10px;
		margin-left:0;
	}
}
.headerArea .sns_btn .pc{
	display: flex;
	padding-bottom: 15px;
}
.headerArea .sns_btn .pc .tw_btn{
	margin-left:5px;
}
@media screen and (max-width:750px){
	.headerArea .sns_btn .pc{
		display: none;
	}
	.headerArea .sns_btn{
		width:25%;
		margin-right:2%;
	}
	.headerArea .sns_btn .sp{
		width:100%;
		display: flex;
		justify-content: flex-end;
	}
	.headerArea .sns_btn .sp a{
		margin-left: 2%;
		margin-right: 2%;
	}
	.headerArea .sns_btn img{
		max-height: 30px;
	}
}
.headerArea .gdo_logo{
	position: absolute;
	right:30px;
	top:15px;
}
@media screen and (max-width:750px){
	.headerArea .gdo_logo{
		position: relative;
		right:0;
		top:0;
	}
	.headerArea .gdo_logo img{
		max-height: 20px;
	}
}

/* ==============================================================
	MAIN
============================================================== */
/*	TITLE
------------------------------------------------ */
.title{
	position: relative;
}
.title h1{
	position: absolute;
	top:140px;
	left:80px;
}
.title img.main_img{
	width:100%;
	margin-bottom: -2px;
}
@media screen and (max-width:750px){
	.title h1{
		position: relative;
		top:0;
		left:0;
		margin-bottom:5%;
	}
	.title img.main_img{
		display: none;
	}
}

/*	PRESENT
------------------------------------------------ */
.present{
}
@media screen and (max-width:750px){

}

/* ----- A COURSE ----- */
.present .a_course{
	background: url(../img/bg_a.jpg) no-repeat;
	background-position: center top;
	background-size: cover;
}
@media screen and (max-width:750px){
	.present .a_course{
		background: url(../img/bg_a_sp.jpg) no-repeat;
		background-position: center top;
		background-size: cover;
	}
}
.present .a_course .block{
	display: flex;
}
.present .a_course .block .img img{
	width:100%;
	height:100%;
}
@media screen and (max-width:750px){
	.present .a_course .block{
		display: block;
		padding-bottom: 20px;
	}
	.present .a_course .block .img{
		display: flex;
		align-items: center;
	}
	.present .a_course .block .img img,
	.present .a_course .block .img h2{
		width:50%;
	}
	.present .a_course .block .img h2 img{
		width:75%;
		height:auto;
	}
}

/* RIGHT COLUMN */
.present .a_course .block .text{
	width:550px;
	margin-left: 40px;
}
@media screen and (max-width:750px){
	.present .a_course .block .text{
		width:100%;
		margin-left: 0;
	}
}
.present .a_course .block .text h2{
	margin-top:40px;
}
.present .a_course .block .text table{
	margin-top:25px;
}
@media screen and (max-width:750px){
	.present .a_course .block .text table{
		width:90%;
		margin: 30px auto 0;
	}
}
.present .a_course .block .text table th,
.present .a_course .block .text table td{
	vertical-align: top;
}
.present .a_course .block .text table th{
	padding-right:40px;
}
@media screen and (max-width:750px){
	.present .a_course .block .text table th{
		padding-right:10px;
		width:25%;
	}
}
.present .a_course .block .text table td{
	text-align: left;
}
@media screen and (max-width:750px){
	.present .a_course .block .text table td{
		padding-bottom:10px;
	}
}
.present .a_course .block .text table td p{
	margin-bottom:15px;
	font-size: 14px;
	line-height: 1.5;
}
@media screen and (max-width:750px){
	.present .a_course .block .text table td p{
		margin-bottom:5px;
		font-size: 12px;
	}
}

/* ----- B COURSE ----- */
.present .b_course{
	background: url(../img/bg_b.jpg) no-repeat;
	background-position: center top;
	background-size: cover;
	padding:50px 0;
}
@media screen and (max-width:750px){
	.present .b_course{
		background: url(../img/bg_b_sp.jpg) no-repeat;
		background-position: center top;
		background-size: cover;
		padding:15px 0 40px;
	}
}
.present .b_course .inner{
	text-align: left;
	position: relative;
}
.present .b_course .inner h2{
	margin-left:8px;
}
.present .b_course .inner img.item_b{
	position:absolute;
	bottom:-70px;
	left:550px;
}
@media screen and (max-width:750px){
	.present .b_course .inner h2{
		text-align: center;
	}
	.present .b_course .inner h2 img{
		width:90%;
		margin:0 auto;
	}

}

/*	ENTRY
------------------------------------------------ */
.entry{
	padding:120px 0;
}
.entry .method{
	margin-top:35px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
@media screen and (max-width:750px){
	.entry{
		padding:50px 0 30px;
	}
	.entry .method{
		display: block;
	}
	.entry h2{
		width:80%;
		margin:0 auto;
	}
}
.entry img.arrow_right{
	margin:160px 8px auto 8px;
}
@media screen and (max-width:750px){
	.entry img.arrow_right{
		margin:10px auto;
		width:10%;
	}
}
.entry .method .method_item{
	width:350px;
}
@media screen and (max-width:750px){
	.entry .method .method_item{
		width:90%;
		margin: 0 auto;
		display: flex;
		align-items: flex-start;
		justify-content: space-around;
		background: #ebf7fb;
		border-radius: 10px;
		padding:3%;
	}
	.entry .method .method_item img{
		width:48%;
	}
	.entry .method .method_item .text{
		width:50%;
	}
}
.entry .method .method_item p{
	text-align: left;
}
.entry .method .method_item p.title{
	margin:25px auto;
	color: #00a7e1;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
}
@media screen and (max-width:750px){
	.entry .method .method_item p.title{
		margin:0 auto 10px;
		font-size: 16px;
		text-align: left;
	}
}
.entry .method .method_item p.target,
.entry .method .method_item p.target strong{
	margin-top:25px;
	font-size: 14px;
	line-height: 1.5;
}
@media screen and (max-width:750px){
	.entry .method .method_item p.target,
	.entry .method .method_item p.target strong{
		margin-top:10px;
		font-size: 12px;
	}
}
.entry .btn{
	margin-top: 40px;
}

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

}



/*	 COOLIST
------------------------------------------------ */
.coolist{
	display: flex;
	align-items: stretch;
	padding: 0 0 70px;
}
.coolist .left_column,.coolist .right_column{
	width:50%;
}
.coolist .left_column .inner,
.coolist .right_column .inner{
	margin: 0 auto;
	padding:50px 0;
}
@media screen and (max-width:750px){
	.coolist{
		display: block;
		background: #00a7e1;
		padding-bottom: 5%;
	}
	.coolist .left_column{
		width:100%;
	}
	.coolist .right_column{
		width:90%;
		margin:0 auto;
	}
	.coolist .left_column .inner,
	.coolist .right_column .inner{
		padding:30px 0;
	}
}

/* ----- LEFT COLUMN ----- */
.coolist .left_column{
	background: #00a7e1;
}
.coolist .left_column .inner{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width:500px;
}
@media screen and (max-width:750px){
	.coolist .left_column .inner{
		display: block;
		width: 90%;
	}
}
.coolist .left_column .inner h2{
	margin:60px auto;
}
@media screen and (max-width:750px){
	.coolist .left_column .inner h2{
		margin:0 auto 30px;
	}
}
.coolist .left_column .inner h3{
	text-align: left;
	margin-bottom:20px;
}
@media screen and (max-width:750px){
	.coolist .left_column .inner h3{
		width:60%;
		margin-bottom:10px;
	}
}
.coolist .left_column .inner p{
	text-align: left;
}
.coolist .left_column .inner p.title{
	margin-bottom:20px;
}
@media screen and (max-width:750px){
	.coolist .left_column .inner p.title{
		margin-bottom:10px;
	}
}

/* ----- RIGHT COLUMN ----- */
.coolist .right_column{
	background: #000;
	color: #fff;
}
.coolist .right_column .inner{
	width:520px;
}
@media screen and (max-width:750px){
	.coolist .right_column .inner{
		width:90%;
	}
}
.coolist .right_column .inner p{
	margin:15px 0 40px;
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}
.coolist .right_column .inner p.note{
	margin:15px 0 0;
	font-size: 12px;
	line-height: 2.3;
	text-align: center;
}
@media screen and (max-width:750px){
	.coolist .right_column .inner p.note{
		line-height: 1.7;
	}
	.coolist .right_column .inner img:first-child{
		width:40%;
	}
	.coolist .right_column .inner img:last-child{
		width:80%;
	}
}


/*	 ITEM LIST
------------------------------------------------ */
.itemlist{
	/*background: url(../img/itemlist_bg.jpg) no-repeat;*/
	background-position: center top;
	background-size: cover;
	padding:120px 0 0;
}
.itemlist table{
	width:1120px;
	margin-top:;
	margin:25px auto 0;
	border-collapse: collapse;
}
@media screen and (max-width:750px){
	.itemlist{
		padding:50px 0 30px;
	}
	.itemlist h2{
		width:50%;
		margin:0 auto;
	}
	.itemlist table{
		width:90%;
	}
}
.itemlist table tr{
	border-bottom: 1px solid #cccccc;
}
.itemlist table th,.itemlist table td{
	width:250px;
	padding:60px 20px 40px;
}
.itemlist table th{
	padding-left:0;
}
@media screen and (max-width:750px){
	.itemlist table th,.itemlist table td{
		padding:0;
	}
	.itemlist table th{
		display: block;
		width:100%;
		margin-top: 8%;
	}
	.itemlist table th img{
		width:25%;
	}
	.itemlist table td{
		display: inline-block;
		width:30%;
		margin:0 1.7%;
		vertical-align: top;
		padding: 3% 0 8%;
	}
}
.itemlist table td:last-child{
	padding-right: 0;
}
@media screen and (max-width:750px){
	.itemlist table td:nth-child(3n-1){
		margin-left: 0;
	}
	.itemlist table td:last-child{
		margin-right: 0;
	}
}
.itemlist table td p{
	text-align: left;
	font-weight: 600;
}
.itemlist table td p.brand{
	font-size: 12px;
	line-height: 2.5;
	color: #00a7e1;
}
@media screen and (max-width:750px){
	.itemlist table td p.brand{
		font-size: 10px;
	}
}
.itemlist table td p.product{
	font-size: 17px;
	line-height: 1.6;
}
@media screen and (max-width:750px){
	.itemlist table td p.product{
		font-size: 16px;
	}
}
.itemlist table td p.m_btn{
	margin-top:15px;
}
@media screen and (max-width:750px){
	.itemlist table td p.m_btn{
		margin-top:10px;
	}
}
.itemlist table td p.m_btn a{
	width:120px;
	background: #00a7e1;
	color: #fff;
	padding:5px 20px;
	display: block;
	font-size: 12px;
	line-height: 2.5;
}
@media screen and (max-width:750px){
	.itemlist table td p.m_btn a{
		width:90%;
		padding:5px;
		display: block;
		font-size: 12px;
		line-height: 2.5;
	}
}
.itemlist .btn a{
	background: #00a7e1;
	color: #fff;
	width:220px;
	display: block;
	margin:40px auto 0;
	padding: 15px 0;
	font-size: 14px;
	line-height: 2.14;
	font-weight: 600;
}
@media screen and (max-width:750px){
	.itemlist .btn a{
		margin:30px auto 0;
	}
}


/* ==============================================================
	FOOTER
============================================================== */
footer{
	margin-top:40px;
}
@media screen and (max-width:750px){
	footer{
		margin-top:30px;
	}
}
/*	 SNS
------------------------------------------------ */
footer .sns{
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .sns li{
	margin:0 10px;
}

/*	FOOTER NAV
------------------------------------------------ */
footer .footer_nav{
	display: flex;
	justify-content: center;
	align-items: center;
	margin:30px auto 0;
}
@media screen and (max-width:750px){
	footer .footer_nav{
		margin:20px auto 0;
	}
}
footer .footer_nav li a{
	padding: 0 25px;
	border-right: solid 2px #eee;
	font-size: 12px;
	font-weight: 600;
	line-height: 3;
}
@media screen and (max-width:750px){
	footer .footer_nav li a{
		padding: 0 10px;
		font-size: 10px;
	}
}
footer .footer_nav li:last-child a{
	border-right: none;
}
footer p.copyright{
	font-size: 12px;
	line-height: 3;
	margin-bottom:30px;
}
@media screen and (max-width:750px){
	footer p.copyright{
		font-size: 10px;
		margin-bottom:20px;
	}
	.gotop{
		width:60px;
		height:60px;
	}
	.gotop img{
		width:60px;
	}
}
