@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-style:normal;font-size: 100%;font-weight: normal;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
html,body {
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	color: #484848;
}
b{
	font-weight: 700;
}
.Com{
	zoom: 1;
}
.Com:before, .Com:after{
	content: "";
	display: table;
}
.Com:after{
	clear: both;
}
br.pc_br,
.pc_img{
	display: none;
}
*:focus {
	outline: none;
}
.roma{
	font-family: 'Unna', serif;
}
@media only screen and (min-width: 768px){
	br.sp_br,
	.sp_img{
		display: none;
	}
	.pc_img,
	br.pc_br{
		display: block;
	}
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.flex{
		display: block;
	}
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header .header-top{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: #ffffff;
	box-shadow: 0 3px 10px rgba(0,0,0,0.16);
	align-items: center;
}
.global-header .header-logo{
	padding: 5px 20px;
}
.global-header .header-view{
	position:relative;
	display: flex;
}
.global-header .header-view .header-view-img{
	width: 60%;
	height: 941px;
}
.global-header .header-view .header-view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.header-view .view-box{
	width: 30%;
	padding: 140px 50px 50px 50px;
	-webkit-justify-content: center;
	justify-content: center;
}
.global-header .header-view h2{
	position: absolute;
    right: 0;
    top: 140px;
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #009BE2;
	font-size: 73px;
	font-weight: 400;
	line-height: 1.2;
}
.header-view .view-box .p-text{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
	text-orientation: upright;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.3em;
}
.header-view .view-box .p-text:nth-child(2){
	text-indent: 1.3em;
}
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
@media only screen and (max-width: 767px) {
	.global-header .header-logo{
		padding: 10px;
	}
	.global-header .header-logo img{
		width: auto;
		height: 40px;
	}
	.global-header .header-view .header-view-img{
		width: 60%;
		height: 400px;
	}
	.header-view .view-box{
		width: 30%;
		display: flex;
		padding: 90px 15px 15px 15px;
	}
	.global-header .header-view h2{
	    top: 80px;
		font-size: 32px;
	}
	.header-view .view-box .p-text{
		font-size: 18px;
	}
	.header-view .view-box .p-text:nth-child(2){
		text-indent: 1.3em;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.global-header .header-logo{
		padding: 10px;
	}
	.global-header .header-logo img{
		width: auto;
		height: 50px;
	}
	.global-header .header-view .header-view-img{
		width: 60%;
		height: 620px;
	}
	.header-view .view-box{
		width: 30%;
		padding: 100px 30px 30px 30px;
	}
	.global-header .header-view h2{
	    top: 100px;
		font-size: 52px;
	}
	.header-view .view-box .p-text{
		font-size: 28px;
	}
	.header-view .view-box .p-text:nth-child(2){
		text-indent: 1.3em;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.page-guide{
	position:relative;
	padding: 0 0 120px 0;
}
.inner{
	max-width: 1100px;
	margin: auto;
	padding: 0 50px;
}
@media only screen and (max-width: 767px) {
	.page-guide{
		padding: 0 0 60px 0;
	}
	.inner{
		width: 90%;
		padding: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-guide{
		padding: 0 0 80px 0;
	}
	.inner{
		width: 92%;
		padding: 0;
	}
}
/* Btn CSS
----------------------------------------------- */
.block_btn{
	text-align: center;
}
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 320px;
}
.block_btn .btn{
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	line-height: 2.4;
	letter-spacing: 0.1em;
}
@media only screen and (max-width: 735px) {
	.block_btn li{
		width: 70%;
		max-width: 260px;
	}
	.block_btn .btn{
		font-size: 20px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.block_btn li{
		max-width: 260px;
	}
	.block_btn .btn{
		font-size: 26px;
		line-height: 2.2;
	}
}
/**
/* 見出し CSS
----------------------------------------------- */
.page-guide .grid-ttl{
	text-align: center;
	margin-bottom: 60px;
}
.page-guide .grid-ttl .roma{
	color: #009BE2;
	font-size: 67px;
	font-weight: 400;
	line-height: 1.4;
}
.page-guide .h2_ttl{
	color: #B9B9B9;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
	.page-guide .grid-ttl{
		margin-bottom: 30px;
	}
	.page-guide .grid-ttl .roma{
		font-size: 30px;
	}
	.page-guide .h2_ttl{
		font-size: 16px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-guide .grid-ttl{
		margin-bottom: 40px;
	}
	.page-guide .grid-ttl .roma{
		font-size: 42px;
	}
	.page-guide .h2_ttl{
		font-size: 18px;
	}
}
/**
/* プレミアムな時間をあなたへ 
----------------------------------------------- */
.concept-guide .grid-ttl{
	position: relative;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 0;
}
.concept-guide .grid-ttl .ttlArea{
	position: relative;
	text-align: left;
	padding: 70px 50px 10px 30px;
}
.concept-guide .grid-ttl:before{
	position: absolute;
	content:'';
	display: block;
	width: 90%;
	height: 427px;
	left: 0;
	top: -25px;
	background: #009BE2;
	background: -moz-linear-gradient(left, #009BE2, #0068E2);
	background: -webkit-linear-gradient(left, #009BE2, #0068E2);
	background: linear-gradient(to right, #009BE2, #0068E2);
	z-index: -1;
}
.concept-guide .grid-ttl .ttlArea .roma{
	color: #ffffff;
	line-height: 1;
	margin-bottom: 10px;
}
.concept-guide .grid-ttl .ttlArea .h2_ttl{
	color: #ffffff;
	font-weight: 400;
}
.concept-guide .grid-ttl .imgArea{
	width: 45%;
	height: 408px;
	margin-top: -90px;
}
.concept-guide .grid-ttl .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.concept-guide .concept-list{
	margin-bottom: 70px;
	margin-top: 80px;
}
.concept-guide .concept-list .concept-items{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	align-items: center;
}
.concept-guide .concept-list .concept-items:first-child .contentArea{
	padding-top: 50px;
}
.concept-guide .concept-list .concept-items:nth-child(odd) .contentArea{
	padding-left: 50px;
}
.concept-guide .concept-list .concept-items:nth-child(even) .contentArea{
	padding-right: 50px;
}
.concept-guide .concept-list .concept-items h3{
	position: relative;
	font-size: 35px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 50px;
}
.concept-guide .concept-list .concept-items h3:before{
	content: '';
	position: absolute;
	display: inline-block;
	width: 200px;
	height: 1px;
	left: 0;
	bottom: -20px;
	background-color: #009BE2;
}
.concept-guide .concept-list .concept-items p{
	font-size: 26px;
	font-weight: 500;
	line-height: 1.6;
}
.concept-guide .concept-list .concept-items .imgArea{
	width: 55%;
	height: 408px;
}
.concept-guide .concept-list .concept-items .imgArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.concept-guide .concept-grid .p-text{
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
@media only screen and (max-width: 1180px) {
	.concept-guide .grid-ttl{
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	.concept-guide .grid-ttl .ttlArea{
		padding: 70px 30px 10px 30px;
	}
	.concept-guide .grid-ttl .ttlArea .roma{
		font-size: 58px;
	}
	.concept-guide .concept-list{
		margin-top: 84px;
	}
}
@media only screen and (max-width: 735px) {
	.concept-guide .grid-ttl .ttlArea{
		background: #009BE2;
		text-align: center;
		padding: 20px;
	}
	.concept-guide .grid-ttl:before{
		content: none;
	}
	.concept-guide .grid-ttl .ttlArea .roma{
		font-size: 30px;
		margin-bottom: 10px;
	}
	.concept-guide .grid-ttl .ttlArea .h2_ttl{
		font-weight: 400;
	}
	.concept-guide .grid-ttl .imgArea{
		margin-left: auto;
		width: 100%;
		height: auto;
		margin-top: 0;
	}
	.concept-guide .concept-list{
		margin-bottom: 30px;
		margin-top: 0;
	}
	.concept-guide .concept-list .concept-items .contentArea{
		 text-align: center;
	}
	.concept-guide .concept-list .concept-items:nth-child(odd) .contentArea{
		padding: 30px 20px;
	}
	.concept-guide .concept-list .concept-items:nth-child(even) .contentArea{
		padding: 30px 20px;
	}
	.concept-guide .concept-list .concept-items:first-child .contentArea{
		padding-top: 40px;
	}
	.concept-guide .concept-list .concept-items h3{
		font-size: 22px;
		margin-bottom: 25px;
	}
	.concept-guide .concept-list .concept-items h3:before{
		width: 40%;
		bottom: -10px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.concept-guide .concept-list .concept-items p{
		font-size: 16px;
	}
	.concept-guide .concept-list .concept-items .imgArea{
		width: 100%;
		height: auto;
	}
	.concept-guide .concept-grid .p-text{
		font-size: 14px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.concept-guide .grid-ttl .ttlArea{
		padding: 40px 20px 50px 30px;
		width: 55%;
	}
	.concept-guide .grid-ttl:before{
		width: 90%;
		height: 100%;
		top: 0;
	}
	.concept-guide .grid-ttl .ttlArea .roma{
		font-size: 42px;
		margin-bottom: 5px;
	}
	.concept-guide .grid-ttl .ttlArea .h2_ttl{
		font-weight: 400;
	}
	.concept-guide .grid-ttl .imgArea{
		width: 45%;
		height: auto;
		margin-top: -90px;
	}
	.concept-guide .concept-list{
		margin-bottom: 50px;
		margin-top: 0;
	}
	.concept-guide .concept-list .concept-items:first-child .contentArea{
		padding-top: 0;
	}
	.concept-guide .concept-list .concept-items:nth-child(odd) .contentArea{
		padding-left: 30px;
	}
	.concept-guide .concept-list .concept-items:nth-child(even) .contentArea{
		padding-right: 30px;
	}
	.concept-guide .concept-list .concept-items h3{
		font-size: 26px;
		margin-bottom: 30px;
	}
	.concept-guide .concept-list .concept-items h3:before{
		width: 160px;
		bottom: -10px;
	}
	.concept-guide .concept-list .concept-items p{
		font-size: 18px;
	}
	.concept-guide .concept-list .concept-items .imgArea{
		width: 55%;
		height: auto;
	}
	.concept-guide .concept-grid .p-text{
		font-size: 16px;
	}
}
/**
/* 星野家についてご紹介 
----------------------------------------------- */
.about-guide .grid-ttl{
	margin-bottom: 85px;
}
.about-guide .contentArea{
	margin-bottom: 85px;
}
.about-guide .contentArea p{
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
}
.about-guide .slider-box{
	max-width: 950px;
	margin: 0 auto 130px auto;
	padding: 0 90px;
	text-align: center;
}
.about-guide .about-slider .slider-items .imgArea{
	margin-bottom: 30px;
}
.about-guide .about-slider .slider-items p{
	font-size: 16px;
	font-weight: 600;
}
.slick-arrow:before{
	content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
}
.about-slider .slick-prev,
.about-slider .slick-next,
.slick-prev:before,
.slick-next:before{
	display: block;
	width: 81px;
    height: 81px;
}
.about-slider .slick-prev{
	left: -120px;
}
.about-slider .slick-next{
	right: -120px;
}
.slick-next:before{
    background: url(../image/arrow_r.png);
    background-size: cover;
}
.slick-prev:before{
    background: url(../image/arrow_l.png);
    background-size: cover;
}
.about-slider .slick-dots{
	bottom: -70px;
}
.slick-dots li button:before{
	font-size: 12px!important;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
	color: #009BE2!important;
}
.about-guide .contact-box{
	border: 1px solid #009BE2;
	padding: 40px;
}
.about-guide .contact-box h3{
	font-size: 23px;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
}
.about-guide .contact-box .block_btn{
	margin-top: 35px;
}
@media only screen and (max-width: 735px) {
	.about-guide .grid-ttl{
		margin-bottom: 30px;
	}
	.about-guide .contentArea{
		margin-bottom: 30px;
	}
	.about-guide .contentArea p{
		font-size: 14px;
	}
	.about-guide .slider-box{
		margin: 0 auto 70px auto;
		padding: 0;
	}
	.about-guide .about-slider .slider-items .imgArea{
		margin-bottom: 15px;
	}
	.about-guide .about-slider .slider-items p{
		font-size: 12px;
	}
	.about-slider .slick-prev,
	.about-slider .slick-next,
	.slick-prev:before,
	.slick-next:before{
		width: 25px;
	    height: 25px;
	}
	.about-slider .slick-prev{
		left: -15px;
	}
	.about-slider .slick-next{
		right: -15px;
	}
	.about-slider .slick-dots{
		bottom: -40px;
	}
	.slick-dots li{
		margin: 0!important;
	}
	.about-guide .contact-box{
		padding: 25px;
	}
	.about-guide .contact-box h3{
		font-size: 16px;
	}
	.about-guide .contact-box .block_btn{
		margin-top: 15px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.about-guide .grid-ttl{
		margin-bottom: 50px;
	}
	.about-guide .contentArea{
		margin-bottom: 50px;
	}
	.about-guide .contentArea p{
		font-size: 16px;
	}
	.about-guide .slider-box{
		margin: 0 auto 90px auto;
		padding: 0px 30px;
	}
	.about-guide .about-slider .slider-items .imgArea{
		margin-bottom: 20px;
	}
	.about-guide .about-slider .slider-items p{
		font-size: 14px;
	}
	.about-slider .slick-prev,
	.about-slider .slick-next,
	.slick-prev:before,
	.slick-next:before{
		width: 40px;
		height: 40px;
	}
	.about-slider .slick-prev{
		left: -50px;
	}
	.about-slider .slick-next{
		right: -50px;
	}
	.about-slider .slick-dots{
		bottom: -50px;
	}
	.about-guide .contact-box{
		padding: 30px;
	}
	.about-guide .contact-box h3{
		font-size: 18px;
	}
	.about-guide .contact-box .block_btn{
		margin-top: 30px;
	}
}
.loop-slider .slick-slide img{
	display:block;
	width: 100%;
	height: 428px;
	object-fit: cover;
}
@media only screen and (max-width: 735px) {
	.loop-slider .slick-slide img{
		height: 220px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.loop-slider .slick-slide img{
		height: 260px;
	}
}
/**
/* お問い合わせ 
----------------------------------------------- */
.contact-guide{
	padding: 0 0 220px 0;
}
.contact-guide .form-box table th{
	width: 280px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	padding: 25px 0;
	vertical-align: middle;
}
.contact-guide .form-box table th span{
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	margin-left: 20px;
}
.contact-guide .form-box table th.required span{
	color: #009BE2;
}
.contact-guide .form-box table td{
	padding: 25px 0;
	vertical-align: middle;
}
.contact-guide .form-box table td span{
	padding: 0 10px;
}
.contact-guide .form-box td input,
.contact-guide .form-box td select{
	width: 100%;
	height: 50px;
	font-size: 16px;
	padding: 10px;
	background: #F7F7F7;
	border: none;
}
.contact-guide .form-box table td textarea{
	width: 100%;
	height: 200px;
	font-size: 16px;
	padding: 10px;
	background: #F7F7F7;
	border: none;
}
.contact-guide .form-box td input[type="date"]{
	width: 47%;
}
.contact-guide .form-box .submit_btn{
	text-align: center;
	margin-top: 65px;
}
.contact-guide .form-box .submit_btn li{
	width: 100%;
	max-width: 320px;
	display: inline-block;
}
.contact-guide .form-box input.submit{
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	display: block;
	text-align: center;
	font-family: 'Unna', serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 2.4;
	letter-spacing: 0.1em;
	border: none;
	cursor: pointer;
}
@media only screen and (max-width: 735px) {
	.contact-guide{
		padding: 0 0 50px 0;
	}
	.contact-guide .form-box table th,
	.contact-guide .form-box table td{
		display: block;
	}
	.contact-guide .form-box table th{
		width: 100%;
		font-size: 16px;
		padding: 0 0 10px 0;
	}
	.contact-guide .form-box table th span{
		font-size: 12px;
		margin-left: 10px;
	}
	.contact-guide .form-box table td{
		padding: 0 0 20px 0;
	}
	.contact-guide .form-box table td span{
		font-size: 14px;
		padding: 0;
	}
	.contact-guide .form-box td input,
	.contact-guide .form-box td select{
		height: 40px;
		font-size: 15px;
		padding: 5px;
	}
	.contact-guide .form-box table td textarea{
		height: 160px;
		font-size: 15px;
		padding: 5px;
	}
	.contact-guide .form-box .submit_btn{
		margin-top: 30px;
	}
	.contact-guide .form-box .submit_btn li{
		max-width: 260px;
	}
	.contact-guide .form-box input.submit{
		font-size: 20px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.contact-guide{
		padding: 0 0 140px 0;
	}
	.contact-guide .form-box table th{
		width: 240px;
		font-size: 18px;
		padding: 15px 0;
	}
	.contact-guide .form-box table th span{
		font-size: 13px;
		margin-left: 10px;
	}
	.contact-guide .form-box table td{
		padding: 15px 0;
	}
	.contact-guide .form-box table td span{
		padding: 0 5px;
	}
	.contact-guide .form-box td input,
	.contact-guide .form-box td select{
		height: 50px;
		font-size: 15px;
		padding: 10px;
	}
	.contact-guide .form-box table td textarea{
		height: 200px;
		font-size: 15px;
		padding: 10px;
	}
	.contact-guide .form-box .submit_btn{
		margin-top: 45px;
	}
	.contact-guide .form-box .submit_btn li{
		max-width: 260px;
	}
	.contact-guide .form-box input.submit{
		font-size: 26px;
		line-height: 2.2;
	}
}
/**
/* 会社概要 
----------------------------------------------- */
.company-guide{
	padding: 0 0 25px 0;
}
.company-guide .company-grid{
	position: relative;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.company-guide .company-grid:before{
	position: absolute;
	content:'';
	display: block;
	width: 80%;
	height: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	background: #009BE2;
	z-index: -1;
}
.company-guide .company-grid .imgArea{
	width: 45%;
	text-align: center;
	margin-top: -70px;
}
.company-guide .company-grid .imgArea img{
	width: 100%;
	max-width: 525px;
	object-fit: cover;
}
.company-guide .company-box{
	width: 55%;
	max-width: 600px;
	padding: 60px 0;
}
.company-guide .company-box .grid-ttl{
	text-align: left;
}
.company-guide .company-box .grid-ttl .roma,
.company-guide .company-box .grid-ttl .h2_ttl{
	color: #ffffff;
}
.company-guide .company-box table{
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
.company-guide .company-box table th,
.company-guide .company-box table td{
	color: #ffffff;
	padding: 25px 0;
}
.company-guide .company-box table tr:first-child th,
.company-guide .company-box table tr:first-child td{
	padding: 40px 0 25px 0;
}
.company-guide .company-box table tr:last-child th,
.company-guide .company-box table tr:last-child td{
	padding: 25px 0 40px 0;
}
.company-guide .company-box table th{
	width: 160px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
}
.company-guide .company-box table td{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
}
.company-guide .company-box table td a{
	color: #ffffff;
}
@media only screen and (max-width: 735px) {
	.company-guide{
		padding: 0 0 25px 0;
	}
	.company-guide .company-grid:before{
		content: none;
	}
	.company-guide .company-grid .imgArea{
		width: 100%;
		margin-top: 20px;
	}
	.company-guide .company-grid .imgArea img{
		width: 60%;
		max-width: initial;
	}
	.company-guide .company-box{
		background: #009BE2;
		width: 100%;
		max-width: initial;
		padding: 30px 20px 30px 20px;
	}
	.company-guide .company-box .grid-ttl{
		text-align: center;
	}
	.company-guide .company-box table th,
	.company-guide .company-box table td{
		padding: 10px 0;
	}
	.company-guide .company-box table tr:first-child th,
	.company-guide .company-box table tr:first-child td{
		padding: 20px 0 10px 0;
	}
	.company-guide .company-box table tr:last-child th,
	.company-guide .company-box table tr:last-child td{
		padding: 10px 0 20px 0;
	}
	.company-guide .company-box table th{
		width: 100px;
		font-size: 15px;
	}
	.company-guide .company-box table td{
		font-size: 14px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.company-guide{
		padding: 0 0 15px 0;
	}
	.company-guide .company-grid:before{
		width: 80%;
		height: 100%;
	}
	.company-guide .company-grid .imgArea{
		width: 45%;
		margin-top: -40px;
	}
	.company-guide .company-grid .imgArea img{
		width: 100%;
		max-width: 525px;
	}
	.company-guide .company-box{
		width: 55%;
		padding: 40px 0;
	}
	.company-guide .company-box .grid-ttl{
		text-align: left;
	}
	.company-guide .company-box table th,
	.company-guide .company-box table td{
		padding: 15px 0;
	}
	.company-guide .company-box table tr:first-child th,
	.company-guide .company-box table tr:first-child td{
		padding: 30px 0 15px 0;
	}
	.company-guide .company-box table tr:last-child th,
	.company-guide .company-box table tr:last-child td{
		padding: 15px 0 30px 0;
	}
	.company-guide .company-box table th{
		width: 160px;
		font-size: 18px;
	}
	.company-guide .company-box table td{
		font-size: 16px;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
.footer{
	margin-top: auto;
	border-bottom: 7px solid #009BE2;
}
.footer .footer-wrap{
	padding: 25px 50px;
}
.footer .footer-wrap .logo{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
@media only screen and (max-width: 735px) {
	.footer{
		border-bottom: 5px solid #009BE2;
	}
	.footer .footer-wrap{
		padding: 15px 0;
	}
	.footer .footer-wrap .logo{
		font-size: 16px;
	}
}
@media only screen and (min-width: 736px) and (max-width: 1024px){
	.footer .footer-wrap{
		padding: 15px 0;
	}
	.footer .footer-wrap .logo{
		font-size: 18px;
	}
}