@charset "utf-8";
*, *::before, *::after{
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	height: 100%;
	position: relative;
}
body{
	font-family: vdl-logona,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 16px;
    font-size: 1.6rem;
	font-weight: 300;
	color: #212529;
	margin: 0 auto;
	line-height: 1;
	position:relative;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
main{
	overflow: hidden;
}
iframe{
	max-width: 100%;
	width: calc(1100px / 2);
}
img{
	width: 100%;
	max-width: 100%;
}
a{
	text-decoration: none;
	color: #fff;
    cursor: pointer;
    font-weight: 100;
    font-size: 1.6rem;
}
@media screen and (max-width:1024px) {
	body{
		font-size: 14px;font-size: 1.4rem;
	}
	main{
		margin-top: 60px;
	}
}

/*デバイス切り替えここから*/
@media screen and (max-width: 1024px) {
	.pc {display:none !important;}
}
@media print,screen and (min-width: 1025px) {
	.sp {display:none !important;}
}
/*デバイス切り替えここまで*/

/* 共通パーツここから */
.undermv{
	background: #cdd37d;
}
.undermv .inner{
	position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.undermv .inner img{
	width: 100%;
}
.undermv .inner h2{
	position: absolute;
    top: 50%;
    left: 50%;
    font-size: 3rem;
    letter-spacing: 2px;
    transform: translate(-50%,-50%);
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    text-align: center;
    padding: 30px 0px;
    color: #fff;
}
.heading{
	display: flex;
    align-items: center;
    border-bottom: 3px solid #376041;
    font-size: 2.4rem;
    padding: 5px;
    margin-bottom: 30px;
}
.heading img{
	width: 30px;
	margin-right: 10px;
}
.btn{
    position: relative;
    display: block;
    text-align: center;
    width: 290px;
    padding: 15px 0px;
    margin: 40px auto 0;
    color: #fff;
    border: 1px solid #212529;
    color: #212529;
}
.btn_area{
	display: flex;
    justify-content: center;
    margin-top: 80px;
}
.btn_area a{
	width: 290px;
    margin: 0 20px 0;
}
@media screen and (max-width: 1024px) {
	.btn_area{
		flex-direction: column;
	}
	.btn_area a{
		width: auto;
		margin: 0px 4% 30px;
	}
	.btn_area a:last-of-type{
		margin-bottom: 0;
	}
}
/* 共通パーツここまで */

/* ショートコードここから */
.vdl-Logona{font-family: vdl-logona, sans-serif;}
.color-black{color: #212529;}
.color-white{color: #ededed;}
.color-red{color: #d05055;}
.color-navy{color: #183980;}
.color-blue{color: #1a72e0;}
.color-d_grn{color: #376041;}
.bg-color-l_gray{background-color: #f5f5f5;}
.bg-color-gray{background-color: #e3e3e3;}
.bg-color-d_grn{background-color: #376041;}
.bg-color-l_grn{background-color: #cdd37d;}
.bg-color-blk{background-color: #000;}
/* ショートコードここまで */

/* ヘッダーここから */
header .inner{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}
header .logo_area{
	max-width: 50%;
}
header .logo_area h1 p{
	font-size: 0.5rem;
	font-weight: normal;
	margin-bottom: 5px;
}
header .logo_area h1 a{
	max-width: 300px;
	display: block;
}
header .contact_area{
	max-width: 33.333333%;
	background: #376041;
	color: #fff;
	text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
header .contact_area img{
	width: 285px;
    display: block;
    margin: 5px 10px;
}
header .contact_area p:last-of-type{
	font-size: 0.8rem;
}
header nav{
	background: #376041;
}
header nav ul{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}
header nav ul li{
	width: 16.666%;
	text-align: center;
}
header nav ul li a{
	color: #fff;
    display: block;
    text-decoration: none;
    padding:15px 0;
    border-left: 1px solid #fff;
}
header nav ul li:last-of-type a{
	border-right: 1px solid #fff;
}
@media screen and (max-width: 1024px) {
    header{
        height: 60px;
        position: fixed;
        width: 100%;
        top: 0;
        background: #fff;
        z-index: 9999;
    }
    header h1{
		max-width: 50%;
		display: block;
		margin-left: 2%;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
    }
	header h1 img{
		width: 100%;
	}
    header .menu-wrapper {
        position: absolute;
        top: 50%;
        right: 2%;
        transform: translate(0, -50%);
	}
    header .menu-btn{
	    height: 46px;
        width: 46px;
        position: relative;
        cursor: pointer;
        display: inline-block;
        user-select: none;
        z-index: 99;
        background: #376042;
        border-radius: 50px;
	}
	header .menu__line{
        background: #fff;
        display: block;
        height: 1px;
        position: absolute;
        transition: transform .5s;
        width: 20px;
        margin: 0 auto;
        left: 0;
        right: 0;
	}
	header .menu__line--top {
		top: 30%;
	}
	header .menu__line--center{
		top: 50%;
        transform: translateY(-50%);
	}
	header .menu__line--bottom{
        bottom: 30%;
	}
	header .active .menu__line--top{
		top: 50%;
        transform: rotate(45deg) translateY(-50%);
	}
	header .active .menu__line--center{
		transform:scaleX(0);
	}
	header .active .menu__line--bottom{
		bottom: 50%;
        transform: rotate(135deg) translateY(-50%);
	}
	header .menu-area {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9999;
	}
	header .menu-nav {
		list-style: none;
		padding: 0;
		margin: 0;
		display: block;
	}
	header .menu-nav li{
		width: auto;
	}
	header .menu-nav a{
        position: relative;
		color: #333;
        font-size: 1.6rem;
        display: block;
        padding: 15px 4%;
        border-bottom: 1px solid #376042;
	}
    header .menu-nav a:after{
        content: "";
        position: absolute;
        top: 50%;
        right: 4%;
        width: 8px;
        height: 8px;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
        -webkit-transform: translate(-1%, -50%) rotate(45deg);
        transform: translate(-5%, -50%) rotate(45deg);
    }
}
/* ヘッダーここまで */

/* フッターここから */
footer .contact_area{
	background: #cdd37d;
    padding: 30px 0px;
}
footer .contact_area .inner{
	max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .contact_area .inner a{
	display: flex;
    align-items: center;
    color: #212529;
    font-size: 1.4rem;
    border: 1px solid #212529;
    padding: 14px 50px;
    margin-left: 40px;
}
footer .contact_area .inner a:hover{
	background: #b0b56c;
}
footer .contact_area .inner a img{
	width: 30px;
    margin-right: 20px;
}
footer .address_area{
	background: #376041;
    color: #fff;
	padding: 30px 0;
}
footer .address_area .inner{
	max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
footer .address_area .inner h2{
	padding-right: 20px;
    border-right: 1px solid #fff;
    margin-right: 20px;
}
footer .address_area .inner h2 img{
	width: 115px;
}
footer .address_area .inner div{
	line-height: 1.3;
}
footer .address_area nav ul{
	display: flex;
    justify-content: center;
    max-width: 1040px;
    margin: 30px auto 0;
}
footer .address_area nav ul li{
	width: 16.666%;
    text-align: center;
}
footer .address_area nav ul li a{
	display: block;
    border-left: 1px solid #fff;
	font-size: 1.4rem;
}
footer .address_area nav ul li:last-of-type a{
	border-right: 1px solid #fff;
}
footer .copy{
	background: #000;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    padding: 10px 0;
}
@media screen and (max-width: 1024px) {
	footer .contact_area .inner{
		display:block;
		text-align: center;
	}
	footer .contact_area .inner p{ 
		line-height: 1.3;
		font-size: 1.6rem;
	}
	footer .contact_area .inner a{
		padding: 14px 0;
		justify-content: center;
		width: auto;
		margin: 20px 8% 0;
	}
	footer .address_area .inner{
		display: block;
	}
	footer .address_area .inner h2{
		padding-right: 0;
		border-right: 0;
		display: flex;
		justify-content: center;
		margin: 0 0 20px 0;
	}
	footer .address_area .inner h2 img{
		width: 115px;
	}
	footer .address_area .inner div{
		line-height: 1.5;
		text-align: center;
	}
	footer .address_area .inner div p{
		margin-bottom: 10px;
	}
	footer .address_area nav ul{
		display:block;
	}
	footer .address_area nav ul li{
		width: auto;
		text-align: left;
	}
	footer .address_area nav ul li a{
		position: relative;
		display: block;
		border-left: 0;
		font-size: 1.4rem;
		padding: 15px 2%;
		border-bottom: 1px solid #fff;
	}
	footer .address_area nav ul li a::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 5%;
		width: 8px;
		height: 8px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: translate(-1%, -50%) rotate(45deg);
		transform: translate(-5%, -50%) rotate(45deg);
	}
	footer .address_area nav ul li:last-of-type a{
		border-right: 0;
	}
	footer .address_area nav ul li:first-of-type a{
		border-top: 1px solid #fff;
	}
	footer .copy{
		background: #000;
		text-align: center;
		color: #fff;
		font-size: 1rem;
		padding: 10px 0;
	}
}
/* フッターここまで */

/* パンくずリストここから */
.bread_wrap{
	position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}
.bread_wrap a,.bread_wrap a:visited{
	color:#212529;
	display:inline;
}
.bread_wrap ol{
	font-size: 1.2rem;
    margin: 0 2%;
    max-width: 1200px;
    margin: 0 auto;
}
.bread_wrap ol li:first-child{
	background: url(../img/common/icon_bread.svg) no-repeat;
	background-position: left center;
	background-size: 15px;
	padding-left: 20px;
	margin-left: 10px;
	list-style: none;
}
.bread_wrap ol li{
	display: inline-block;
	color:#212529;
}
.bread_wrap ol li:after{
	content: ">";
	color:#212529;
}
.bread_wrap ol li:last-child:after{
	content:"";
}
.under.bread_wrap{
    margin: 0 30px;
}
@media screen and (max-width:1024px){
    .bread_wrap{
        padding: 10px 0;
    }
    .bread_wrap a,.bread_wrap a:visited{
        color:#212529;
        display:inline;
    }
	.bread_wrap ol{
		margin: 0 2%;
	}
    .bread_wrap ol li:first-child{
        background-size: contain;
        padding-left: 15px;
        margin-left: 0;
    }
    .under.bread_wrap{
        margin: 0 4%;
    }
}
/*パンくずリストここまで*/

