@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{
	height:100%;
}

html{
	font-size:62.5%;
	overflow-y: scroll;
}

body{
	-webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family:"メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	text-align: left;
	color:#231815;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	font-size: 1.6rem;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
			box-sizing: border-box; }

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	color: #231815;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

@media screen and (min-width: 769px) {
	a:hover{
		opacity: 0.8;
	}

	a[href^="tel:"]{
		pointer-events: none;
	}
}


input, textarea, select {
	vertical-align:middle;
	font-family:"メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	background-color: #fff;
}
button{
	 background-color: transparent;
		border: none;
		cursor: pointer;
		outline: none;
		padding: 0;
		appearance: none;
}
input,select,button,textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	border-radius: 0;
	padding: 0;
}
select::-ms-expand{
	 display: none;
}
textarea{
	resize: none;
}
button,input[type="submit"],select,#btn_send{
	cursor:pointer;
}
input[type="radio"]:checked{
	appearance: none;
}


.sp{
	display: none;
}

@media screen and (max-width: 768px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.gnav{
	position: relative;
	z-index: 1000;
	top: 0;
	width: 100%;
	background: #000;
}

.gnav ul{
	display: flex;
	width: 90%;
	margin: 0 auto;
	background-color: #fff;
}

.gnav ul.flex{
	display: flex;
}

.gnav li{
	width: 25%;
}

.gnav li a{
	display: block;
	width: 100%;
	padding: 9% 0;
	color: #fff;
	text-align: center;
	background-color: #000;
	font-size: 0.9vw;
}

.gnav .gnav_logo{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.5%;
	margin: auto;
	width: 2.3vw;
	height: 2.3vw;
}
.gnav .gnav_logo img{
	width: 100%;
}

.gnav .gnav_logo a{
	display: block;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 768px) {
	body{
		padding-top: 15vw;
	}
	body.fixed {
		position: fixed;
		width: 100%;
	}

	.gnav{
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
		right: 0;
		background-color: initial;
	}

	.gnav.active{
		height: 100%;
		background-color: rgba(0,0,0,0.7);
	}

	.gnav_head{
		position: relative;
		height: 15vw;
		background-color: #000;
	}

	.gnav .gnav_logo{
		left: 5%;
		right: initial;
		width: 50vw;
		height: 7vw;
	}

	.gnav ul{
		display: none;
		flex-wrap: wrap;
		justify-content: flex-start;
		width: 100%;
		height: calc(100% - 15vw);
		overflow-y: scroll !important;
		background-color: initial;
	}

	.gnav li{
		width: 100%;
	}

	.gnav li a{
		padding: 4% 0;
		border-top: 1px solid #595757;
		font-size: 4vw;
	}

	.gnav li:last-child a{
		border-bottom: 1px solid #595757;
	}

	.gnav .sp_nav_btn {
		position: absolute;
		z-index: 2;
		right:3%;
		top:0;
		bottom: 0;
		margin: auto;
		width: 40px;
		height: 40px;
		display: block;
		overflow: hidden;
	}

	.gnav .sp_nav_btn > div{
		position: relative;
	}

	.gnav .sp_nav_btn span{
		position:absolute;
		left: 7px;
		width: 25px;
		height: 3px;
		background: #fff;
	}

	.gnav .sp_nav_btn span:nth-child(1){
		top: 9px;
	}

	.gnav .sp_nav_btn span:nth-child(2){
		top: 18px;
	}

	.gnav .sp_nav_btn span:nth-child(3){
		top: 27px;
	}

	.gnav .sp_nav_btn span{
		transition: all 0.5s ease-out;
	}

	.gnav.active .sp_nav_btn span{
		background-color: #fff;
	}

	.gnav.active .sp_nav_btn span:nth-child(1){
		top: 18px;
		transform: rotate(45deg);
	}

	.gnav.active .sp_nav_btn span:nth-child(2){
		background-color:rgba(255,255,255,0);
	}

	.gnav.active .sp_nav_btn span:nth-child(3){
		top: 18px;
		transform: rotate(-45deg);
	}
}



/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
footer{
	margin-top: 6.5vw;
}

footer .footer_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5% 2%;
	background-color: #000;
}

footer .foot_logo{
	width: 37%;
}
footer .foot_logo img{
	width: 100%;
}

footer .foot_nav{
	width: 60%;
}

footer .foot_nav ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 3% 0.5%;
	border-bottom: 1px solid #595757;
}

footer .foot_nav li a{
	font-size: 1vw;
	color: #888;
	font-weight: bold;
}

footer .foot_share{
	margin-top: 2%;
	text-align: right;
}

footer .foot_share p{
	width: 5%;
	display: inline-block;
}

footer .foot_share p:first-child{
	width: 7%;
}

footer .foot_share p + p{
	margin-left: 2.5%;
}

footer .foot_share p img{
	width: 100%;
}

footer .copy{
	padding: 1.5% 0;
	text-align: center;
	color: #000;
	font-size: 0.7vw;
}


@media screen and (max-width: 768px) {
	footer .footer_box{
		flex-wrap: wrap;
		padding: 5%;
	}

	footer .foot_logo{
		width: 50%;
		margin-bottom: 1%;
	}

	footer .foot_nav{
		width: 100%;
	}

	footer .foot_nav ul{
		flex-wrap: wrap;
	}

	footer .foot_nav li{
		width: 100%;
	}

	footer .foot_nav li + li{
		margin-top: 1vw;
	}

	footer .foot_nav li a{
		display: inline-block;
		font-size: 3.5vw;
	}

	footer .foot_share p{
		width: 7%;
	}

	footer .foot_share p:first-child{
		width: 10%;
	}

	footer .copy{
		padding: 2.5%;
		font-size: 3vw;
	}
}




/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
.head_ttl{
	position: relative;
	width: 100%;
	height: 15.5vw;
	background: url(../img/common/head_ttl_bg.png) no-repeat center center;
	background-size: 100%;
}

.head_ttl > *{
	position: absolute;
	top: 0;
	left: 5%;
	bottom: 0;
	margin: auto;
	display: flex;
	width: 90%;
	align-items: center;
	color: #fff;
	font-size: 1.4vw;
	white-space: nowrap;
}

.head_ttl > * span{
	display: flex;
	align-items: center;
	height: 2.5vw;
	padding-right: 1%;
	margin-right: 1%;
	text-transform: uppercase;
	border-right: 0.2vw solid #8DC21F;
	font-size: 2.3vw;
}


@media screen and (max-width: 768px) {
	.head_ttl > *{
		font-size: 4vw;
	}

	.head_ttl > * span{
		font-size: 5vw;
		height: 5vw;
		padding-right: 2%;
		margin-right: 2%;
	}
}



/* ------------------------------
    .contact
------------------------------ */
.contact{
	position: relative;
	padding: 7% 0;
}

.contact .contact_wrap{
	display: flex;
	justify-content: space-between;
	width: 60%;
	margin: 0 auto;
}

.contact .contact_wrap > div{
	width: 45.5%;
}

.contact dt{
	padding: 1.5% 0;
	color: #3E3A39;
	font-size: 1.2vw;
}

.contact .req:after{
	content: "*";
	color: #E50012;
}

.contact dd p{
	color: #3E3A39;
}

.contact input{
	border: 1px solid #231815;
	color: #3E3A39;
	font-size: 1.2vw;
}

.contact_left input{
	width: 100%;
	padding: 1% 2%;
}

.contact_left dl + dl{
	margin-top: 8%;
}

.contact_left p{
	padding: 1% 0 0 1em;
	font-size: 0.8vw;
}

.contact_left .contact_mail{
	margin-top: 11%;
}

.contact .contact_check{
	padding: 8% 1% 0;
}

.contact textarea{
	width: 100%;
	height: 22vw;
	padding: 1.5% 2%;
	border: 1px solid #231815;
	color: #3E3A39;
	font-size: 1.2vw;
}
textarea::placeholder {
	color: #3E3A39;
}

.contact input[type="checkbox"]{
	position: relative;
	margin: 0 1% 0 0;
	width: 1.2vw;
	height: 1.2vw;
	background-color: #fff;
	border-radius: 0;
	cursor: pointer;
}

.contact input[type="checkbox"]::before{
	position: absolute;
	top: 5%;
	left: 25%;
	content: "";
	display: block;
	width: 50%;
	height: 70%;
	border-right: 0.1vw solid #333;
	border-bottom: 0.1vw solid #333;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.contact input[type="checkbox"]:checked{
	background-color: #fff;
}

.contact input[type="checkbox"]:checked::before{
	opacity: 1;
}

.contact .contact_check dt{
	font-size: 0.8vw;
}

.contact .contact_check p{
	font-size: 0.8vw;
}

.contact .contact_check dd:last-child{
	text-align: center;
}

.contact input[type="submit"],#btn_send{
	width: 20%;
	height: 2.5vw;
	padding-top: 1%;
	margin: 5% auto 0;
	background-color: #DBDCDC;
	border-radius: 0.5vw;
	font-size: 1.3vw;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}
@media screen and (min-width: 768px) {
	.contact input[type="submit"]:hover,#btn_send:hover{
		opacity: 0.8;
	}
}

@media screen and (min-width: 1200px) {
	.contact{
		margin: 0 auto;
	}

	.contact .contact_wrap{
		width: 900px;
	}

	.contact dt{
		font-size: 1.8rem;
	}

	.contact_left p{
		font-size: 1.2rem;
	}

	.contact_left input{
		font-size: 1.7rem;
	}

	.contact textarea{
		height: 330px;
		font-size: 1.7rem;
	}

	.contact input[type="checkbox"]{
		width: 18px;
		height: 18px;
	}

	.contact .contact_check dt,
	.contact .contact_check p{
		font-size: 1.2rem;
	}

	.contact input[type="submit"],#btn_send{
		height: 38px;
		font-size: 1.9rem;
		border-radius: 8px;
		padding-top: 0.5%;
	}
}


@media screen and (max-width: 768px) {
	.contact{
		padding: 10% 0;
	}

	.contact .contact_wrap{
		flex-wrap: wrap;
		width: 70%;
	}

	.contact .contact_wrap > div{
		width: 100%;
	}

	.contact_left{
		margin-bottom: 11%;
	}

	.contact dt{
		font-size: 4.2vw;
	}

	.contact_left p{
		font-size: 3vw;
	}

	.contact input{
		font-size: 4.2vw;
	}

	.contact textarea{
		height: 30vw;
		font-size: 4.2vw;
	}

	.contact input[type="checkbox"]{
		width: 3.6vw;
		height: 3.6vw;
	}

	.contact input[type="checkbox"]::before{
		border-right: 0.5vw solid #333;
		border-bottom: 0.5vw solid #333;
	}

	.contact .contact_check dt{
		font-size: 3.6vw;
	}

	.contact .contact_check p{
		font-size: 3.6vw;
		line-height: 1.3;
	}

	.contact input[type="submit"],#btn_send{
		width: 40%;
		height: 9vw;
		padding: 0;
		margin: 8% auto 0;
		border-radius: 2vw;
		font-size: 4.2vw;
	}
}



/* ------------------------------
    .confirm
------------------------------ */
.confirm{
	max-width: 1000px;
	width: 80%;
	margin: 6vw auto 8vw;
}

.confirm_ttl{
	margin-bottom: 2vw;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

.confirm_ttl + p{
	line-height: 1.8;
	text-align: center;
}

.confirm .toppage_btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25%;
	height: 3vw;
	margin: 3vw auto;
	font-size: 1.2vw;
	background-color: #717071;
	color: #fff;
}


@media screen and (max-width: 1000px){
	.confirm_ttl{
		font-size: 2vw;
	}

	.confirm_ttl + p{
		font-size: 1.1vw;
	}
}


@media screen and (max-width: 768px) {
	.confirm{
		width: 90%;
		margin: 10vw auto 12vw;
	}

	.confirm_ttl{
		font-size: 4vw;
		margin-bottom: 4vw;
	}

	.confirm_ttl + p{
		font-size: 3vw;
	}

	.confirm .toppage_btn a{
		width: 65%;
		font-size: 3.5vw;
		height: 10vw;
		margin: 5vw auto;
	}
}




/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */