@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- header ----------*/
header {
    width: 100%;
	background: #fff;
	position: relative;
	z-index: 9999;
}
header .header-in {
    width: 90%;
    margin: 0 auto;
    padding: 7px 0;
    display: flex;
	align-items: center;
}

/*ロゴ*/
header .header-logo {
    /*width: 320px;
	margin-top: 30px;*/
    /* margin-bottom: 10px; */
    width:450px;
    display: block;
}
header .header-link-btn {
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header .header-link-btn li {
	margin-left: 10px;
}

header .btn-recruit {
	width: 200px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 28px;
	/* background: #f5f7f8;
	border: 2px solid #ced5db; */
	background: #f26d58;
    border:2px solid #e82727;
	color: #fff;
	position: relative;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}
header .btn-recruit::after {
	content: '';
	width: 13px;
	height: 13px;
	background: url('../../img/common/icon_newwindow_w.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 7px);
	right: 8px;
}

header .btn-contact {
	/* width: 170px; */
	width: 200px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 28px;
	background: #f26d58;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	text-align: center;
	line-height: 1.4;
    border:2px solid #e82727;
}
header .btn-contact::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 8px);
	right: 6px;
}

header .btn-haken {
	width: 170px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 28px;
	background: #a7a7a7;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	line-height: 1.4;
    border:2px solid #888888;
}
header .btn-haken::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 8px);
	right: 6px;
}

header .header-jpx {
	width: 56px;
	margin-left: 20px;
}

header .header-pmark {
	width: 88px;
	margin: 15px 0 15px 22px;
}


header .btn-menu-wrap {
	display: none;
}
/* gnav */
header .gnav-wrap {
	width: 100%;
	border-top: 1px solid #d7dee4;
	border-bottom: 5px solid #e82727;
}
header .gnav-wrap ul#gnav {
    width: 90%;
	margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
header .gnav-wrap ul#gnav > li {
	margin-left: 60px;
	position: relative;
}
header .gnav-wrap ul#gnav > li > a {
    padding: 27px 0 26px;
    display: block;
    font-size: 15px;
    font-weight: 700;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	position: relative;
	line-height: 1;
}
header .gnav-wrap ul#gnav > li > a::after {
	content: '';
	width: 1px;
	height: 18px;
	background: #e82727;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
	position: absolute;
	left: 50%;
	bottom: 0;
	opacity: 0;
}
header .dropdown-menu {
	width: 250px;
	height: auto;
	position: absolute;
	top: 100%;
	left: 0;
	visibility: hidden;
	opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
header .dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	background: rgba(232,39,39,0.95);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
    header .dropdown-menu li a:hover {
      background-color: rgba(232,39,39,0.7);
    }
}

@media (min-width: 901px) {
    header .gnav-wrap ul#gnav > li:hover > a::after, 
    header .gnav-wrap ul#gnav > li > a.is-current::after {
		opacity: 1;
    }
	header .gnav-wrap ul#gnav > li:hover > .dropdown-menu {
		visibility: visible;
		opacity: 1;
	}
}
@media (max-width: 900px) {
    header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
		border-bottom: 4px solid #e82727;
    }
    header .header-in {
        width: 90%;
		height: 80px;
        margin: 0 auto;
        padding: 1vw 80px 1vw 0;
        flex-wrap: wrap;
        position: relative;
    }

    /*ロゴ*/
    header .header-logo {
        width: 65%;
        margin: 0 auto 0 0;
        display: block;
    }
	
	header .header-link-btn {
		display: none;
	}
	header .header-jpx {
		width: 40px;
		margin-left: 0;
		margin-right: 0;
	}

    header .gnav-wrap {
        width: 60%;
        height: 100%;
        padding: 0;
		border-top: none;
    	border-bottom: none;
        background: #e82727;
		overflow: auto;
        position: fixed;
        top: 0;
        right: -60%;
        z-index: 998;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
    }
	header .gnav-wrap.is-open {
		right: 0;
	}
    header .gnav-wrap ul#gnav {
        width: 100%;
        padding: 0;
        display: block;
        position: relative;
        z-index: 999;
    }
	header .gnav-wrap ul#gnav > li {
		margin-left: 0;
	}
    header .gnav-wrap ul#gnav > li > a {
        margin-bottom: 0;
        padding: 4vw 5vw 4vw 8vw;
        display: block;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 500;
        position: relative;
    }
	header .gnav-wrap ul#gnav > li > a::after {
		content: '';
		width: 3vw;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 3vw;
		bottom: calc(50% - 1px);
		opacity: 1;
	}
    header .btn-menu-wrap {
        width: 80px;
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #e82727;
		position: absolute;
		top: 0;
		right: 0;
    }
    header #sp-menu-trigger{
        width: 30px;
        height: 25px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        z-index: 999;
    }
    header #sp-menu-trigger span {
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
    }
    header #sp-menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    header #sp-menu-trigger span:nth-of-type(2) {
        top: calc(50% - 1px);
    }
    header #sp-menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    header #sp-menu-trigger.is-active span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-45deg);
        transform: translateY(11px) rotate(-45deg);
    }
    header #sp-menu-trigger.is-active span:nth-of-type(2) {
        opacity: 0;
    }
    header #sp-menu-trigger.is-active span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }
	
	
	header .gnav-wrap .is-trigger {
		position: relative;
	}
	header .gnav-wrap .is-trigger::before {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
		background-size: 100%;
		transform: rotate(90deg);
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	header .gnav-wrap .is-trigger.is-open::before {
		transform: rotate(-90deg);
	}
	header .dropdown-menu {
		width: 100%;
		height: auto;
		display: none;
		position: relative;
		top: auto;
		left: auto;
		visibility: visible;
		opacity: 1;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	header .dropdown-menu li a {
		display: block;
		padding: 2vw 4vw 2vw 10vw;
		color: #fff;
		background: none;
	}
	

	header .btn-contact {
		width: 100%;
		height: auto;
		margin-top: 8vw;
		display: block;
		border-radius: 0;
		border: none;
		font-size: 3.2vw;
		text-align: left;
		border-top: 1px solid #fff;
	}
	
	header .btn-contact.margintop {
		margin-top: 0;
	}
	
    header .gnav-wrap ul#gnav > li.btn-contact > a {
        padding: 5vw 5vw;
	}
	
	header .btn-contact::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
	}

	header .btn-haken {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 0;
		border: none;
		font-size: 3.2vw;
	}
    header .gnav-wrap ul#gnav > li.btn-haken > a {
        padding: 5vw 5vw;
	}
	header .btn-haken::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
	}
	
	header .btn-recruit {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 0;
		border: none;
		color: #363636;
		font-size: 3.2vw;
		text-align: left;
		border-top: 1px solid #fff;
	}
    header .gnav-wrap ul#gnav > li.btn-recruit > a {
        padding: 2vw 5vw;
		/* color: #363636; */
		line-height: 1.4;
	}
	header .btn-recruit::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_newwindow_w.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
	}
	header .gnav-wrap ul#gnav > li.btn-contact > a::after, 
	header .gnav-wrap ul#gnav > li.btn-haken > a::after, 
	header .gnav-wrap ul#gnav > li.btn-recruit > a::after {
		content: none;
	}

}


/*---------- コンテンツ レイアウト ----------*/
.cont-in {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
}

.left-line {
	width: 5px;
	height: 100%;
	background: #e82727;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}


.bg-deco {
	width: 100%;
	margin: 4vw auto;
	background: #f5f7f8;
	position: relative;
}
.bg-deco::before {
	content: '';
	width: 100%;
	height: 4vw;
	background: url("../../img/common/bg_top.svg") left bottom no-repeat;
	background-size: 100%;
	position: absolute;
	top: -4vw;
	left: 0;
}
.bg-deco::after {
	content: '';
	width: 100%;
	height: 4vw;
	background: url("../../img/common/bg_bottom.svg") left top no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -4vw;
	left: 0;
}

@media (max-width: 768px) {
    .cont-in {
        width: 84%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }

	.left-line {
		width: 0.8vw;
	}

	.bg-deco {
		width: 100%;
		margin: 8vw auto;
		background: #f5f7f8;
		position: relative;
	}
	.bg-deco::before {
		content: '';
		width: 100%;
		height: 8vw;
		background: url("../../img/common/bg_top_sp.svg") left bottom no-repeat;
		background-size: 100%;
		position: absolute;
		top: -8vw;
		left: 0;
	}
	.bg-deco::after {
		content: '';
		width: 100%;
		height: 8vw;
		background: url("../../img/common/bg_bottom_sp.svg") left top no-repeat;
		background-size: 100%;
		position: absolute;
		bottom: -8vw;
		left: 0;
	}
}


/*---------- お問い合わせ ----------*/
.sec-footer-contact {
    width: 100%;
	padding: 80px 0;
	background: url("../../img/common/bg_footer_contact.jpg") center center no-repeat;
	background-size: cover;
    position: relative;
}
.footer-contact-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-contact-txt-wrap {
	width: calc(100% - 340px);
}
.sec-footer-contact .ttl-line {
	color: #fff;
}
.sec-footer-contact .ttl-line .ttl-ja {
	color: #fff;
}
.sec-footer-contact .ttl-line .line {
	background: #fff;
}
.sec-footer-contact .footer-contact-txt {
	margin-top: 40px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.footer-contact-btn-wrap {
	width: 320px;
}
.footer-contact-btn-wrap .btn-contact {
	width: 100%;
	margin-bottom: 20px;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 40px;
	background: #e82727;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	text-align: center;
	line-height: 1.4;
}
.footer-contact-btn-wrap .btn-contact::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 8px);
	right: 10px;
}

.footer-contact-btn-wrap .btn-haken {
	width: 100%;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #363636;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	line-height: 1.4;
}
.footer-contact-btn-wrap .btn-haken::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 8px);
	right: 10px;
}

@media (max-width: 768px) {
	.sec-footer-contact {
		width: 100%;
		padding: 12vw 0;
		background: url("../../img/common/bg_footer_contact_sp.jpg") center center no-repeat;
		background-size: cover;
		position: relative;
	}
	.footer-contact-wrap {
		width: 100%;
		display: block;
	}
	.footer-contact-txt-wrap {
		width: 100%;
	}
	.sec-footer-contact .footer-contact-txt {
		margin-top: 6vw;
		font-size: 3.4vw;
	}

	.footer-contact-btn-wrap {
		width: 100%;
		margin-top: 10vw;
	}
	.footer-contact-btn-wrap .btn-contact {
		width: 100%;
		margin-bottom: 4vw;
		padding: 3vw 0;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #fff;
		border-radius: 10vw;
		font-size: 3.4vw;
	}
	.footer-contact-btn-wrap .btn-contact::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
	}

	.footer-contact-btn-wrap .btn-haken {
		width: 100%;
		padding: 3vw 0;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 10vw;
		font-size: 3.4vw;
	}
	.footer-contact-btn-wrap .btn-haken::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 2vw;
	}
}


/*---------- ボタン ----------*/
a.btn-red {
	width: 320px;
	padding: 20px 30px;
	display: block;
    background: #e82727;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
a.btn-black {
	width: 320px;
	padding: 20px 30px;
	display: block;
    background: #363636;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}
.btn-arrow {
	position: relative;
}
.btn-arrow::after {
	content: '';
	width: 26px;
	height: 26px;
	background: url('../../img/common/icon_next.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 13px);
	right: 20px;
}

a.btn-black.btn-arrow::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 8px);
	right: 10px;
}
.btn-white.btn-arrow::after{
    content: '';
	width: 26px;
	height: 26px;
    background: url('../../img/common/icon_next_r.svg') 0 0 no-repeat;
    background-size: 100%;
	position: absolute;
	top: calc(50% - 13px);
	right: 20px;
}

@media (max-width: 768px) {
	a.btn-red {
		width: 52%;
		padding: 1.5vw 5vw 1.5vw 4vw;
		font-size: 3.4vw;
	}
	a.btn-black {
		width: 70%;
		padding: 3.5vw 6vw;
		font-size: 3.2vw;
	}
	.btn-arrow {
		position: relative;
	}
	.btn-arrow::after {
		content: '';
		width: 3.6vw;
		height: 3.6vw;
		background: url('../../img/common/icon_next.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.8vw);
		right: 3.6vw;
	}
	a.btn-black.btn-arrow::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url('../../img/common/icon_arrow.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 3vw;
	}
    .btn-white.btn-arrow::after {
		content: '';
		width: 3.6vw;
		height: 3.6vw;
		background: url('../../img/common/icon_next_r.svg') 0 0 no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.8vw);
		right: 3.6vw;
	}
}

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

/* pagetop
-----------------------------------------------------*/
.pagetop {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #363636;
    cursor: pointer;
    text-align: center;
    color: #363636;
	font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9996;
}
.pagetop img {
    width: 50%;
    margin: 0 auto 10px;
}
@media (max-width: 768px) {
    .pagetop {
        width: 10vw;
        height: 10vw;
        font-size: 2.2vw;
    }
    .pagetop img {
        width: 40%;
        margin: 1vw auto 2vw;
    }
    
}

footer {
    width: 100%;
	padding: 100px 0 0;
}

footer .footer-in {
	width: 90%;
	margin: 0 auto 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
    max-width: 1260px;
}
footer .footer-logo {
	width: 170px;
	position: relative;
}
footer .footer-link-wrap {
	width: calc(100% - 360px);
	padding-left: 20px;
	display: flex;
	justify-content: flex-end;
	border-left: 1px solid #d6dadc;
}
footer .footer-link {
	width: 240px;
}
footer .footer-link-parent {
	margin-bottom: 20px;
	padding-left: 30px;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	line-height: 1;
}
footer .footer-link-parent::before {
	content: '';
	width: 20px;
	height: 1px;
    background: #e82727;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
}
footer .footer-link-child {
	margin-bottom: 15px;
	padding-left: 30px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
}


footer .copyright-wrap {
    width: 100%;
    padding: 12px 0;
    background: #e82727;
}
footer .copyright {
	width: 90%;
	margin: 0 auto;
    color: #fff;
	font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 1100px) {
	footer .footer-link-wrap {
		width: calc(100% - 180px);
	}
}

@media (max-width: 768px) {
	footer {
		width: 100%;
		padding: 14vw 0 0;
	}

	footer .footer-in {
		width: 90%;
		margin: 0 auto 12vw;
		display: block;
	}
	footer .footer-logo {
		width: 32%;
		margin: 0 auto 8vw;
		position: relative;
	}
	footer .footer-link-wrap {
		width: 100%;
		padding-left: 0;
		padding-top: 8vw;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		border-left: none;
		border-top: 1px solid #d6dadc;
	}
	footer .footer-link {
		width: 50%;
		margin-bottom: 5vw;
	}
	footer .footer-link-parent {
		margin-bottom: 3vw;
		padding-left: 4vw;
		font-size: 3.0vw;
	}
	footer .footer-link-parent::before {
		content: '';
		width: 2.6vw;
		height: 1px;
		background: #e82727;
		position: absolute;
		top: calc(50% - 1px);
		left: 0;
	}
	footer .footer-link-child {
		margin-bottom: 1.5vw;
		padding-left: 4vw;
		font-size: 2.8vw;
	}


	footer .p-mark {
		width: 100px;
		display: block;
		position: absolute;
		bottom: 25px;
		right: 25px;
	}

	footer .copyright-wrap {
		width: 100%;
		padding: 2vw 0;
		background: #e82727;
	}
	footer .copyright {
		width: 90%;
		font-size: 2.2vw;
	}
}

/*YouTube動画の中央配置*/
.video-container {
	margin: 0px auto;
}