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


/* ブルー　#2c2e50 薄いイエロー　#fef6cb 　イエロー　#fbe252 */

/*基本設定*/

html {
	font-size: 62.5%;
}

body {
	width: 100%;
	font-family: 'Noto Serif JP', serif;
}

header{
	margin: 0;
}

ul{
	list-style: none;
}

img {
	border: none;
	line-height: 0;
	vertical-align: bottom;
}

a {
	opacity: 1;
	text-decoration: none;
	color: #000000;
}

a:hover {
	opacity: 0.5;
	transition: 0.7s;
}

section {
	margin: 0;
}

h1{
	font-size:4rem;
	font-family: 'Newsreader', serif;
}

h2 {
	font-size: 3rem;
}

h3{
	font-size: 2rem;
}


/*基本設定ここまで*/


#overhidden{
	overflow: hidden;
}


/*ナビゲーション部分*/


#tb_pc{
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 60px;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 0 32px;
}

#tb_pc h1{
	display: block;
	margin: 0;
	padding: 0;
	font-size: 30px;
}

#nav-wrap{
	padding-right: 100px;
}

.pc-nav{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin: 0;
	padding: 0;
}

.pc-nav_item{
	margin-right: 20px;
}

.pc-nav_item:last-child{
	margin-right: 0;
}




/*ハンバーガーアイコン*/

.openbtn{
	position: fixed;
	top: 0;
	right: 0px;
	width: 60px;
	height: 60px;
	z-index: 104;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: all 400ms;
	transition: all 400ms;
	background-color: #fbe252;

}


.openbtn span{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	transition: all .4s;
	width: 40%;
	height: 2.5px;
	border-radius: 1px;
	background-color: #fff;
}


.openbtn span:nth-of-type(1){
	top: 22px;
}

.openbtn span:nth-of-type(2){
	top: 30px;
}

.openbtn span:nth-of-type(3){
	top: 38px;
}


.openbtn.active{
	background-color: #FFFFFF;
}

.openbtn.active span{
	background-color: #2c2e50;
}


.openbtn.active span:nth-of-type(1){
	top: 24px;
	transform: translateY(6px) translateX(-50%) rotate(-45deg);
	width: 40%;
}

.openbtn.active span:nth-of-type(2){
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
	top: 36px;
	transform: translateY(-6px) translateX(-50%) rotate(45deg);
	width: 40%;
}


/*スマホ用ナビゲーション部 --------------------- */

.global_nav{
	position: fixed;
	z-index: 101;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: rgba(255,255,255,0.9);
	transition: all 0.6s;
}

.global_nav.active{
	right: 0;
}

.global_nav-title{
	font-size: 30px;
	font-weight: bold;
}

.title-contact{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	width: 300px;
	height: 60px;
	font-size: 16px;
	background-color:#2c2e50;
	margin: 40px 0;
}

.global_nav-inner ul{
	padding: 0;
}

.global_nav-inner ul li a{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 300px;
	height: 60px;
	border-bottom: 1px solid #2c2e50;
	font-size: 16px;
}

.global_nav-inner ul li a span{
	margin-left: 12px;
	font-size: 11px;
}


/*資料請求ボタン*/

.info-bt{
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;
	position: fixed;
	top:20vh;
	right: 0;
	background-color:#fbe252;
	padding: 30px 5px;
	z-index: 99;
}


.info-bt:hover {
	background-color: #FFFFFF;
	transition: 0.7s;
}

.info-bt p{
	font-size: 1.5rem;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #2c2e50;
}



/* Small devices (landscape, 576px and up)----------- */
@media screen and (max-width: 767px) {
	.info-bt{
		width: 150px;
		padding: 0 5px;
		bottom: 0;
		top:auto;
		left: 16px;
	}
	.info-bt p{writing-mode: horizontal-tb;}
}




/*メイン写真*/


#main-img{
	position: relative;
	padding-top: 60px;
	margin-bottom: 0;
	height:90vh;
	background-image: url("../img/main_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Small devices (landscape, 576px and up)----------- */
@media screen and (max-width: 480px) {
	.main-img_logo{width: 300px;}
}


/*news*/
.index-news{
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	width: 400px;
	height: 120px;
	background-color: rgba(255,255,255,0.8);
	padding: 20px;
	z-index: 2;
}

.index-news_title{
	font-family: 'Newsreader', serif;
	font-size: 2em;
	font-weight: bold;
}

.index-news dl{
	display: flex;
}

.index-news dd{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.allview{
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 40%;
	height: 45px;
	color: #ffffff;
	font-size: 12px;
	background-color: #2c2e50;
	display: flex;
	justify-content: center;
	align-items: center;
}


/* Small devices (landscape, 576px and up)----------- */
@media screen and (max-width: 480px) {
	.index-news{width: 80%; height: 80px;}
	.index-news_title{font-size: 1.3em;}
	.allview{height: 30px;}
}



/*コンセプト*/


#index-concept{
	height:700px;
	position: relative;
	padding: 120px 0 0;
	box-sizing: border-box;
}

#index-concept_text{
	position: absolute;
	width: 350px;
	left: calc(50% - 350px);
	top: 60px;
	background-color: #FFFFFF;
	display: block;
	z-index: 3;
	padding: 40px;
}

#index-concept_text h3{
	margin: 0;
	font-size: 3rem;
	line-height: 5rem;

}

#index-concept_text p{
	display: block;
	font-size: 1.5rem;
	line-height: 4rem;
	text-align: left;
}

#index-concept_img{
	width: 50%;
	height: 500px;
	background-image: url("../img/index_concept_img.jpg");
	background-size: cover;
	position: absolute;
	right: 0;
	z-index: 2;
}


#index-concept:after{
	content: "";
	width: calc(50% + 200px);
	height: 700px;
	position: absolute;
	right: 0%;
	top:0;
	background-color: #fef6cb;
}


/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 480px) {
	#index-concept{height: 920px;}
	#index-concept_text{left:30px; width: calc(100% - 60px); margin: 0 auto;}
	#index-concept_img{width: calc(100% - 60px); height: 290px; bottom: 100px;}
	#index-concept:after{width: 100%; height: 920px;}
}

/* Small devices (landscape, 576px and up)----------- */
@media screen and (max-width: 480px) {
	.index_bt{width: 180px;}
}




/*ステップ*/

#index-step{
	margin: 0;
	padding: 60px 0;
	position: relative;
}

#index-step:after{
	content: "";
	width: calc(50% + 200px);
	height: 100%;
	position: absolute;
	left: 0%;
	top:0;
	background-color: #fef6cb;
	z-index: -1;
}



#index-step_inner{
	width: 100%;
	height: 900px;
	background-image:url("../img/index_step_bgimg.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#index-step_inner h2{
	padding-top: 30px;
}

#index-step_inner h4{
	font-size: 1.5rem;
	line-height: 3rem;
}

#index-step_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#index-step_left{
	width: 50%;
	height: 500px;
	background-image: url("../img/index_step_boxleft.png");
	box-sizing: border-box;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
}



.left_block{
	width: 50%;
	display: flex;
	color: #FFFFFF;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}


.left_block:nth-child(2n){
	border-right: none;
}


.left_block:nth-child(n+3){
	border-bottom: none;
}


.left_block h5{
	font-size: 2rem;
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 2;
}

.left_block_img{
	height: 60%;
	margin-top: 20px;
	text-align: center;
}

.left_block h6{
	margin: 0;
	padding-top:10px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	}


#index-step_right{
	width: 50%;
	height: auto;
	background-image: url("../img/index_stepright_pc.png");
	background-size: 100%;
	display: flex;
	flex-direction: column;
}

#index-step_right p{
	text-align: center;
	font-size: 1.8rem;
	line-height: 2rem;
}

#index-step_right h5{
	margin: 0;
	padding-bottom: 40px;
	text-align: center;
	font-size: 2rem;
}


.right_block_img{
	width: 60%;
	height: auto;
	margin: 0 auto;
}

.index-step_bt{
	margin-top: 40px;
}



/* Medium devices (tablets, 768px and up)----------- */
@media screen and (max-width: 991px) {
	#index-step_inner{height: 1000px;}
	#index-step_box{flex-direction: column; align-items: center;}
	#index-step_left{height: auto;}
	#index-step_right{background-image: url(../img/index_stepright_sp.png);}
	#index-step_right p{padding-top: 40px;}
	.right_block_img{padding-bottom: 20px;}
}



/* Small devices (landscape, 576px and up)----------- */
@media screen and (max-width: 767px) {
	#index-step h2{font-size: 18px;}
	#index-step h4{font-size: 1.3rem;line-height: 2rem;}
	#index-step_left{width: 320px;}
	#index-step_right{width: 320px;}
}


/*pickup*/

#index-picup{
	max-width: 1320px;
	height: 480px;
	margin: 0 auto;
}

.index-picup_title{
	text-align: center;
	margin: 70px 0;
}


/*スライダー*/


.slider {
	width: 100%;
	padding: 0;
}

.slider li a{
	position: relative;
	z-index: 2;
	display: block;
	height: auto;
	margin: 0 24px;
}

.slider-img{
	width: 100%;
	padding-bottom: 20px;
	object-fit: cover;
}

.slider-img-title{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80%;
	background: #ffffff;
	z-index: 3;
	line-height: 2;	
}

.slider-img-title p{
	margin: 0;
	font-size: 15px;
	text-align: center;
}

.slider-img-title span{
	margin: 0 auto;
	font-size: 11px;
}

.slideprev-arrow{
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%);
}

.slidenext-arrow{
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0,-50%);
}


/*コンタクト*/

#index-contact{
	background-image: url("../img/index_contact_bg.jpg");
	background-size: cover;
	height: 350px;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#contect_bt{
	max-width: 740px;
	width: 90%;
	background-color: #FFFFFF;
	padding: 10px 0;
	position: relative;
}

#contect_bt a{
	display: block;
	width: 100%;
}

#contect_bt:hover{
	opacity: 0.7;
	transition: 0.7s;
}

#contect_bt div{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#contect_bt p{
	font-size: 2em;
	font-weight: bold;
}

#contect_bt::after{
	content: "";
	width: 6px;
	height: 12px;
	background-image: url("../img/arrow.png");
	background-repeat: no-repeat;
	position: absolute;
	top:50%;
	right: 20px;
}

#contect_bt h2{
	margin: 0;
	font-size: 2em;
	line-height: 5rem;
}


/*フッター*/

footer{
	text-align: center;
	height: auto;
}

#footer_inner{
	height: 50%;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

#footer_logo{
	margin: 10px;
}

#footer_nav{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-left: 50px;
}

#footer_nav ul{
	display: flex;
	padding: 0;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#footer_nav ul li{
	padding-right: 10px;
}

#footer_nav p{
	text-align: left;
}

.copyright{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 20px 0;
	background-color: #fef6cb;
}

/* Small devices (landscape, 576px and up)----------- */
@media screen and (max-width: 480px) {
	#footer_nav ul{flex-wrap: wrap;}
	#footer_nav ul li{padding-top: 8px;}
}

/* Extra large devices (large desktops, 1200px and up) */
/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 768px) {
	#nav-wrap{display:inherit !important;}
	}

/* Small devices (landscape phones, 576px and up) */
/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 767px) {
	#nav-wrap{display:none !important;}
	}