@charset "utf-8";
/* CSS Document */

article {
    padding-bottom: 40px;
}
.main .link-wrap {
    position: relative;
    margin-bottom: 160px;
}
.main .link-wrap:after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 90%;
    position: absolute;
    right: 0;
    bottom: -60px;
    z-index: 0;
    background-color: #f08200;
}
.main .link-wrap a {
    width: 50%;
    position: relative;
    z-index: 1;
    opacity: 1!important;
}
.main .link-wrap a .img-wrap {
    overflow: hidden;
}
.main .link-wrap a img {
    transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
	transition:all 0.4s ease;
}
.main .link-wrap a:hover img {
    transform:scale(1.1);
		-webkit-transform:scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
}
.main .link-wrap a .ttl {
    display: block;
    text-align: center;
    position: absolute;
    right: 40px;
    bottom: 40px;
    height: 220px;
    max-width: 460px;
    width: 100%;
    box-sizing: border-box;
	transition:all 0.3s ease;
}
.main .link-wrap a .ttl::before{
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	position: absolute;
	bottom: 33px;
	right: 0%;
	transform: translate(0, -50%);
	background-image: url(../images/common/icon_arrow_whiite.png);
	height: 22px;
	width: 463px;
	transition: 0.3s ease-in-out;
}
.main .link-wrap a:hover .ttl::before {
  	right: -20px;
}

.main .link-wrap a .ttl h3 {
    /*display: table-cell;*/
    vertical-align: middle;
    color: #fff;
    font-weight: bold;
    font-size: 2.8rem;
    line-height: 2;
	top: 50%;
    transform: translate(0, -50%);
	position: relative;
}
.main .link-wrap a .ttl h3 .en {
    font-size: 2rem;
    display: block;
    font-weight: 500;
    letter-spacing: 0.1em;
}



/* ====================================================================================
         SP時
  ==================================================================================== */
@media screen and (max-width: 768px) {
    article {
        padding-bottom: 0px;
    }
    .main {
        padding-bottom: 20px;
    }
    .main .link-wrap {
        margin-bottom: 80px;
    }
    .main .link-wrap:after {
        bottom: -40px;
    }
    .main .link-wrap a {
        width: 100%;
        vertical-align: top;
    }
    .main .link-wrap a .ttl {
        right: 20px;
        bottom: 10px;
        height: 80px;
        max-width: 240px;
    }
    .main .link-wrap a .ttl h3 {
        font-size: 1.6rem;
        line-height: 1.6;
    }
    .main .link-wrap a .ttl h3 .en {
        font-size: 1.2rem;
    }
	.main .link-wrap a .ttl::before{
		bottom: -20px;
		background-image: url(../images/common/icon_arrow_whiite.png);
		height: 22px;
		width: 200px;
	}

}


