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


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* 共通 */
.h2 {
	font-size: 32px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: 600;
	margin-bottom: 30px;
}



/* mv */
.mv__img {
	background-image: url("/img/service/mv.jpg");
}




/* transport */
.transport {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.transport__thumbnail {
	width: 50%;
	background-image: url("/img/service/img_transport.jpg");
	background-size: cover;
	background-position: center center;
	border-radius: 30px 0 0 30px;
}

.transport__content {
	width: 50%;
}

.transport__inner {
	width: calc(50vw - 50px);
	max-width: 550px;
	margin: 0 50px 0 auto;
}

.transport__txt {
	font-size: 18px;
	margin-bottom: 30px;
}



/* keep */
.keep {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	width: 100%;
	background-color: #fffabb;
}

.keep__thumbnail {
	width: 50%;
	background-image: url("/img/service/img_keep.jpg");
	background-size: cover;
	background-position: center center;
	border-radius: 0 30px 30px 0;
}

.keep__content {
	width: 50%;
}

.keep__inner {
	width: calc(50vw - 50px);
	max-width: 550px;
	margin: 0 auto 0 50px;
}

.keep__txt {
	font-size: 18px;
	margin-bottom: 30px;
}



/* car */
.car__wrapper {
	display: flex;
}

.car__left {
	width: 300px;
}

.car__right {
	width: calc(100% - 300px);
}

.car__tbl {
	width: 100%;
	border-top: 1px solid #DDD;
	font-size: 18px;
}

.car__tbl tr th {
	width: 50%;
	padding: 25px 20px;
	border-bottom: 1px solid #DDD;
}

.car__tbl tr td {
	width: 50%;
	padding: 20px;
	border-bottom: 1px solid #DDD;
	text-align: right;
}

.car__btn {
	margin: 70px auto;
}

.car__img {
	display: block;
	width: 95%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	border-radius: 30px;
}






/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){

/* transport */
.transport__inner {
	width: calc(50vw - 7.5%);
	margin: 0 5% 0 2.5%;
}



/* keep */
.keep__inner {
	width: calc(50vw - 7.5%);
	margin: 0 2.55% 0 5%;
}

	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* car */
.car__left {
	width: 200px;
}

.car__right {
	width: calc(100% - 200px);
}

	
	
}



/******************************************************

タブレットの設定 ~767pxの場合に適用 

*******************************************************/

@media screen and (max-width: 767px){
	
	
/* 共通 */
.h2 {
	font-size: 20px;
	margin-bottom: 15px;
}



/* transport */
.transport {
	display: block;
	width: 100%;
}

.transport__thumbnail {
	width: calc(100% - 20px);
	height: 200px;
	border-radius: 10px 0 0 10px;
	margin: 0 0 0 20px;
}

.transport__content {
	width: calc(100% - 40px);
	margin: 0 auto 30px auto;;
}

.transport__inner {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.transport__txt {
	font-size: 14px;
	margin-bottom: 20px;
}
	
.transport__btn {
	margin: 0 auto;
}



/* keep */
.keep {
	display: block;
	width: 100%;
}

.keep__thumbnail {
	width: calc(100% - 20px);
	height: 200px;
	border-radius: 0 10px 10px 0;
	margin: 0 20px 0 0;
}

.keep__content {
	width: calc(100% - 40px);
	margin: 0 auto 30px auto;;
}

.keep__inner {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.keep__txt {
	font-size: 14px;
	margin-bottom: 20px;
}
	
.keep__btn {
	margin: 0 auto;
}



/* car */
.car__wrapper {
	display: block;
}

.car__left {
	width: 100%;
}

.car__right {
	width: 100%;
}

.car__tbl {
	width: 100%;
	border-top: 1px solid #DDD;
	font-size: 14px;
}

.car__tbl tr th {
	display: block;
	width: 100%;
	padding: 15px 5px 5px 5px;
	border-bottom: none;
	font-weight: 600;
}

.car__tbl tr td {
	display: block;
	width: 100%;
	padding: 0 5px 15px 5px;
	border-bottom: 1px solid #DDD;
	text-align: left;
}

.car__btn {
	margin: 30px auto 50px auto;
}

.car__img {
	width: calc(100% - 40px);
	border-radius: 10px;
}

	
	
}