@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- header ----------*/
header {
    width: 100%;
	padding: 30px 0;
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
    transition: 0.4s ease-in-out;
}
header.is-fixed {
	padding: 10px 0;
	background: var(--color-light-gray);
	position: fixed;
}
.header-inn {
    width: calc(100% - 100px);
    margin: 0 auto;
	align-items: center;
	justify-content: space-between;
    transition: 0.4s ease-in-out;
}


.header-logo {
	width: 250px;
}

/* gnavi */
.gnav-wrap {
	width: calc(100% - 300px);
}
.gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav-wrap ul#gnav > li {
	display: flex;
	align-items: center;
	margin-left: 40px;
	position: relative;
}
.gnav-wrap ul#gnav > li:first-child {
	margin-left: 0;
}
.gnav-wrap ul#gnav > li > a {
	padding: 0;
	color: #000;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.3s ease-in-out;
	box-sizing: border-box;
	line-height: 1;
}
.gnav-wrap ul#gnav > li.header-contact-btn > a {
	padding: 10px 30px;
	color: #fff;
	background: #000;
	border-radius: 20px;
}

@media (min-width: 1101px) {
	.gnav-wrap {
		display: block !important;
	}
}



.btn-menu-wrap {
	display: none;
}


@media (max-width: 1100px) {
	.header-inn {
		width: 96%;
		margin: 0 auto;
	}
}


@media (max-width: 768px) {
	header {
		width: 100%;
		padding: 0;
		background: var(--color-light-gray);
	}
	header.is-fixed {
		padding: 0;
	}
	.header-inn {
		width: 96%;
		height: 10.66vw;
		margin: 0 auto;
		justify-content: flex-start;
		align-items: center;
	}


	.header-logo {
		width: 38vw;
	}

	header {
		height: 10.66vw;
	}
	
	/* 開閉ボタン */
	.btn-menu-wrap {
		width: 10.66vw;
		height: 10.66vw;
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 2001;
		background: var(--color-light-gray);
		border: none;
	}
	.sp-menu-trigger {
		width: 45%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		display: block;
		position: relative;
		background: none;
		border: none;
	}
	.sp-menu-trigger span{
		display: block;
		height: 1px;
		background: var(--color-orange);
		position:absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-trigger span:nth-child(1){
		top: calc(50% - 20%);
	}
	.sp-menu-trigger span:nth-child(2){
		top: calc(50%);
	}
	.sp-menu-trigger span:nth-child(3){
		top: calc(50% + 20%);
	}

	
	/*開閉ボタンopen時*/
	.is-open.sp-menu-trigger span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
	}
	.is-open.sp-menu-trigger span:nth-child(2) {
		opacity: 0;
	}
	.is-open.sp-menu-trigger span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
	}
	/* gnavi */
	
	/* gnavi */
    .gnav-wrap {
        width: 100%;
        height: auto;
		display: none;
        padding: 0;
        background: var(--color-light-gray);
        position: fixed;
        top: 10.66vw;
        left: 0;
        z-index: 998;
		overflow: auto;
    }
    .gnav-wrap ul#gnav {
        width: 100%;
		margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        z-index: 999;
    }
	.gnav-wrap ul#gnav > li,
	.gnav-wrap ul#gnav > li:first-child {
		width: 100%;
		height: auto;
		margin: 0;
        padding: 0;
		display: block;
	}
    .gnav-wrap ul#gnav > li > a {
		width: 100%;
		margin: 0 auto;
		padding: 4vw 1vw;
        display: block;
		text-align: center;
        font-size: 3.6vw;
        position: relative;
		border-bottom: 1px solid var(--color-orange);
    }
	
	.gnav-wrap ul#gnav > li.header-contact-btn {
		padding: 4vw 8vw;
	}
	.gnav-wrap ul#gnav > li.header-contact-btn > a {
		padding: 3vw 4vw;
		border-radius: 8vw;
		border-bottom: none;
	}
	
	


}


/*---------- footer ----------*/


footer {
    width: 100%;
	padding: 80px 0 0;
	background: #000;
	position: relative;
	z-index: 990;
}
footer .cont-inn {
}

.footer-logo {
	width: 250px;
	margin: 0 auto 60px;
}

/* footer links */
.footer-links {
	width: 100%;
	margin-bottom: 60px;
	align-items: flex-start;
	justify-content: center;
}
.footer-links li + li {
	margin-left: 50px;
}

.footer-links li a {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
}
.footer-links li.footer-contact-btn a {
	padding: 10px 20px;
	color: #fff;
	background: var(--color-orange);
	border-radius: 20px;
}


/* copyright */
.copyright-txt {
	width: 100%;
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid #fff;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 300;
}

@media (max-width: 768px) {

	footer {
		width: 100%;
		padding: 12vw 0 0;
	}
	footer .cont-inn {
	}

	.footer-logo {
		width: 42vw;
		margin: 0 auto 12vw;
	}

	/* footer links */
	.footer-links {
		width: 100%;
		margin-bottom: 12vw;
		align-items: flex-start;
		justify-content: center;
	}
	.footer-links li + li {
		margin-left: 6vw;
	}

	.footer-links li a {
		font-size: 3.4vw;
	}
	.footer-links li.footer-contact-btn a {
		padding: 2vw 4vw;
		border-radius: 5vw;
	}


	/* copyright */
	.copyright-txt {
		width: 100%;
		padding: 6vw 0;
		font-size: 2.8vw;
	}

}


/*---------- コンテンツ レイアウト ----------*/
.main {
	padding-top: 109px;
}
.cont-inn {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flex-box {
	display: flex;
	flex-wrap: wrap;
}


@media (max-width: 768px) {
	.main {
		padding-top: 10.66vw;
	}
    .cont-inn {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }
}




/*---------- font ----------*/
.txt-vertical {
	display: inline-block;
    text-align: left;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.txt-roboto {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;
}
.txt-serif {
	font-family: "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
}


/*---------- テキスト ----------*/
.txt-indent {
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}



@media (max-width: 768px) {
}



/*---------- ボタン、リンク ----------*/
.btn-black, 
a.btn-black {
	width: 80%;
	max-width: 320px;
	height: 54px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	text-align: center;
	font-size: 1.6rem;
    font-weight: 700;
	line-height: 1;
	position: relative;
    color: #fff;
    background: var(--color-black);
	transition: 0.3s ease-in-out;
}
.btn-black::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: calc(50% - 0.5px);
	right: -10px;
}


@media (min-width: 769px) {

}



@media (max-width: 768px) {
	.btn-black, 
	a.btn-black {
		width: 80%;
		max-width: initial;
		height: 12vw;
		margin: 0 auto;
		padding: 2vw;
		border-radius: 6vw;
		font-size: 3.6vw;
	}
	.btn-black::after {
		content: '';
		width: 8vw;
		height: 1px;
		top: calc(50% - 0.5px);
		right: -4vw;
	}
	
}
