@charset "UTF-8";

@media(max-width: 767px){
	.sec-top:before{
		background-image: url(../assets/transport_first-view.jpg);
		background-position: center top;
	}
}
@media(min-width: 768px){
	.sec-top{
		background-image: url(../assets/transport_first-view.jpg);
		background-position: center top;
	}
}

/*運送サービス====================*/
.sec-transport{
	padding-top: 70px;
	overflow: auto;
}
.sec-transport h2{
	margin-bottom: 40px;
}
.sec-transport > p{
	padding: 0 6.58823529411765%;
	text-align: left;
	max-width: 720px;
	margin: 0 auto 40px;
}
.sec-transport__achievement{
	background: #e0eff7;
	margin: 0 6.588235% 60px;
	padding: 60px 28px;
}
.sec-transport__achievement li{
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
.sec-transport__achievement h3{
	margin-bottom: 40px;
}
.three-achievements li:not(:last-child){
	margin-bottom: 50px;
}
.three-achievements img{
	margin-bottom: 20px;
	width: 81%;
	max-width: 240px;
}
.three-achievements h4{
	color: #0088cc;
	font-size: 2.0rem;
	margin-bottom: 10px;
}
.three-achievements p{
	text-align: left;
}
@media(min-width: 768px){
	.sec-transport__achievement{
		width: 86.111111%;
		margin: 0 auto 60px;
	}
	.three-achievements{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 0 auto;
		padding: 0;
	}
	.three-achievements li{
		width: 47%;
		padding: 0 20px;
		margin: 0;
	}
	.sec-transport__achievement li:not(:last-child){
		margin-bottom: 60px;
	}
}
@media(min-width: 960px){
	.sec-transport{
		padding-top: 120px;
	}
	.sec-transport > p{
		margin-bottom: 70px;
	}
	.sec-transport__achievement{
		padding: 80px 6.9444444444444%;
		width: 86.111111%;
		max-width: 1240px;
		margin: 0 auto 120px;
	}
	.sec-transport__achievement h3{
		margin-bottom: 50px;
	}
	.three-achievements{
		display: flex;
		justify-content: space-between;
		flex-wrap: nowrap;
		margin: 0 auto;
		padding: 0;
		max-width: 1020px;
	}
	.three-achievements li{
		padding: 0 20px;
		margin: 0;
	}
	.sec-transport__achievement li:not(:last-child){
		margin-bottom: 0;
	}
}
@media(min-width: 1440px){
	.sec-transport__achievement{
		margin: 0 auto 120px;
		max-width: 1240px;
	}
}

/*タブメニュー===========================*/
.sec-transport__service-menu{
	margin: 0 6.588235%;
	margin-bottom: 60px;
}
.sec-transport__service-menu h3{
	margin-bottom: 40px;
}
@media(min-width: 960px){
	.sec-transport__service-menu{
		margin: 0 100px 90px;
		margin: 0 6.944444% 90px;
	}
	.sec-transport__service-menu h3{
		margin-bottom: 60px;
	}	
}
/*tabの形状*/
.tab{
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
	z-index: 3;
}
.tab li{
	width: calc(33% - 2px);
	/*padding-bottom: 3px;*/
	position: relative;
}
.tab li a{
	display: block;
	background: #0088cc;
	margin: 0 1px;
	padding:10px 16px;
	color: #fff;
	font-size: 1.2rem;
	height: 100%;
	border-radius: 6px 6px 0 0;
/*文字の中央揃え*/
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	align-items: center; /* 縦方向中央揃え */
	-webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	justify-content: center; /* 横方向中央揃え */
}
.tab li a:first-child{
	margin-left: 0;
}
.tab li a:last-child{
	margin-right: 0;
}
.tab li.active{
	border: 1px solid #bbb;
	border-bottom: 1px solid #fff;
	border-radius: 6px 6px 0 0;
}
.tab li.active a{
	background: #fff;
	color: #333;
	padding:10px 15px;
}
.tab li.active a:after{
    content: "";
    width: calc(100% - 1px);
    margin-left: 1px;
    height: calc(100% + 10px);
    background: #fff;
	position:absolute;
    z-index: -1;
    right: 0;
    top: -1px;
}
@media(min-width: 960px){
	.tab li a{
		font-size: 1.6rem;
		padding: 16px 20px;
	}
	.tab li.active a{
		font-size: 1.6rem;
	}
}
@media(min-width: 1440px){
	.tab-menu{
		margin: 0 auto 70px;
		max-width: 1240px;
	}
}

.area {
	display: none;
	opacity: 0;
	background: #fff;
	padding:50px 20px;
	padding:50px 5.42%;
	border: 1px solid #bbb;
	position: relative;
	/*z-index: -2;*/
	z-index: 2;
	border-radius: 0 0 6px 6px;
}
.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media(min-width: 960px){
	.area {
		padding: 100px 8.064516% 100px;
	}
}

/*area内のスタイリング*/
.area{
	text-align: left;
}
.area h4{
	font-size: 1.8rem;
	color: #0088cc;
	border-bottom: 2px solid #0088cc;
	padding-bottom: 8px;
	margin-bottom: 20px;
}
.area-text{
	margin-bottom: 40px;
	max-width: 720px;
}
.area-text h5{
	margin-top: 20px;
}
#home-delivery .area-text ul{
	margin-bottom: 10px;
}
.area-text ul li{
	list-style: disc;
	margin-left: 1.5em;
}
.area-text .caution{
	font-size: 1.2rem;
}
@media(min-width: 960px){
	.area h4{
		margin-bottom: 40px;
	}
	.area-text{
		margin-bottom: 60px;
	}
}

.area-image{
	height: 240px;
}
.area-image{
	background-size: cover;
	background-position: center center;
}
#home-delivery .area-image{
	background-image: url(../assets/home-delivery.jpg);
}
#charter .area-image{
	background-image: url(../assets/charter.jpg);
}
#spot .area-image{
	background-image: url(../assets/spot.jpg);
}
#move .area-image{
	background-image: url(../assets/move.jpg);
}
@media(min-width: 960px){
	.area-image{
		height: 27.78vw;
		max-height: 400px;
	}
}

/*お問い合わせリンク=========================*/
.sec-transport__contact-link{
	padding: 0 0 70px;
	width: 86.8235529%;
    max-width: 600px;
    margin: 0 auto;
}
.sec-transport__contact-link h5{
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.sec-transport__contact-link p{
	text-align: left;
}
.sec-transport__contact-link .btn{
	margin-top: 30px;
}
@media(min-width: 960px){
	.sec-transport__contact-link{
		max-width: 700px;
	}
}



/*きらっと光るアニメーション========================*/
.tab-menu li:not(.active) a{
	position: relative;
    overflow: hidden;
}
.tab-menu li:not(.active) a::before {
	position: absolute;
	z-index: 0;
	content:"";
	width: 50%;
	height: 100%;
	top: 0;
	left: -75%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.tab-menu li:not(.active) a:hover::before {
	animation: shine .7s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}



