@charset "UTF-8";
.contents-wrapper {
    display: flex;
    height: 100%;
}
div#wrapper {
    height: calc(100vh - 162px);
	min-height: 600px;
}
.contents-wrapper > div {
    width: 50%;
    padding: 50px;
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 0;
}
.contents-wrapper > div::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}
.left-contents {
	background-image: url(/common/images/tozai-top/kanto.jpg);
}
.left-contents::before {
    background-color: #d9e021;
}

.right-contents {
	background-image: url(/common/images/tozai-top/kansai.jpg);
}
.right-contents::before {
    background-color: #64c4c4;
}

.contents-wrapper a {
    text-decoration: none;
}
h2 {
    font-size: 32px;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
    text-shadow: 3px 4px 5px #434343;
}
h2 > span {
    font-size: 48px;
    display: block;
    line-height: 1.2;
}

.link-wrapper {
    display: flex;
	flex-wrap: wrap;
    margin-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
}
.link-btn {
    padding: 10px;
}
.link-btn > a {
    position: relative;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    display: block;
    padding: 13px 15px 13px 10px;
    color: #FFF;
    background-color: #0079c2;
    width: 200px;
    box-sizing: border-box;
	overflow: hidden;
	box-shadow: 4px 4px 5px #434343;
}
.link-btn.shs > a {
    background-color: #d95792;
}
.link-btn > a::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg) skew(6deg, 5deg);
    width: 8px;
    height: 8px;
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.link-btn > a:hover::before {
	right: 5px;
}
.link-btn > a::after {
    content: "";
    position: absolute;
    left: -65px;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #FFF;
    transform: skewX(30deg);
    opacity: 0.3;
    transition: all 0.3s ease-out;
}
.link-btn > a:hover::after {
    width: 120%;
}

/* footer */
/* -- svf logo color -- */
.logo-c0{fill:#8F8F8F;}
.logo-c1{fill:#CF568B;}
.logo-c2{fill:#27A05D;}
.logo-c3{fill:#287BA9;}
.logo-c4{fill:#D05336;}
.logo-c5{fill:#029ECA;}
.logo-c6{fill:#CF556A;}
.logo-c7{fill:#079494;}
.logo-c8{fill:#994F86;}
.logo-c9{fill:#9DB552;}
.logo-c10{fill:#514B8B;}
.logo-c11{fill:#E1D147;}
.logo-c12{fill:#D89C43;}
.logo-c13{fill:#919191;}
.logo-c14{fill:#8F8F8F;}

footer#footer {
    display: flex;
    padding: 30px 40px;
    box-sizing: border-box;
	border-top: none;
}
.footer-logo {
    width: 200px;
}
p.copy {
	font-size: 14px;
	line-height: 1.2;
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: end;
}

@media only screen and (max-width: 1024px) {
	
}

@media only screen and (max-width: 767px) {
	div#wrapper {
		height: 90vh;
	}
	.contents-wrapper {
		flex-direction: column;
	}
	.contents-wrapper > div {
		padding: 30px;
		width: 100%;
		height: 50%;
		box-sizing: border-box;
	}
	.link-wrapper {
		margin-top: 10px;
	}
	h2 > span {
		font-size: 40px;
	}
	h2 {
		font-size: 28px;
	}
	/* footer */
	footer#footer {
		display: block;
		padding: 20px;
	}
	.footer-logo {
		width: 180px;
		margin: auto;
	}
	p.copy {
		font-size: 12px;
		display: block;
	}
}

@media only screen and (max-width: 560px) {
	.contents-wrapper > div {
		padding: 30px 20px;
	}
	.link-btn > a {
		width: 150px;
		font-size: 16px;
	}
	/* footer */
	footer#footer {
		padding: 10px;
	}
	.footer-logo {
		width: 150px;
	}
}