/* Utility */
@media print, screen and (min-width: 1025px) {
    .u-hiddenPC {
    /* 1024px以上用（PC）の記述 */
	display: none;
    }
}

@media screen and (max-width: 1024px) and (min-width: 480px) {
.u-hiddenTB {
    /* 1023px以下用（タブレット）の記述 */
	display: none;
    }
}

@media screen and (max-width: 479px) {
.u-hiddenSP {
    /* 479px以下用（スマートフォン用）の記述 */
	display: none;
    }
}

/* key visual */
/*! 埋め込み動画をレスポンシブ対応させる */
.video {
position: relative;
margin-top: 5%;
height: 0;
padding: 0 0 56.25%;
overflow: hidden;
}
.video iframe {
position: absolute;
margin-top: 10px;
left: 0;
width: 100%;
height: 100%;
}

/* contents*/
.otw-lead {
    font-size: 1.6rem;
    font-weight: normal;
	text-align: justify;
    line-height: 180%;
	margin-top: 2.4rem;
}
@media print,screen and (min-width:768px){
	.otw-lead {
	font-size: 1.8rem;
    line-height: 200%;
	}
}

.otw-logo {
	margin-top: 2.4rem;	
	margin-bottom: 4.8rem;
	width: 20rem;
	height:auto;
}
@media print,screen and (min-width:768px){
	.otw-logo {
		width: 36rem;
		height:auto;
	}
}		
.otw-caption1 {
    font-size: 1.6rem;
    font-weight: bold;
	text-align: justify;
    line-height: 180%;
}
.otw-caption2 {
    font-size: 1.4rem;
    font-weight: normal;
	text-align: justify;
    line-height: 180%;
	margin-bottom: 3.6rem;
}

/* page move */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 200%;
    background: #fff;
    transition: transform .3s ease-in-out;
    transform: translateX(-100%);
    z-index: 10000;
}
body.is-move:before {
    transform: translateX(0%);
}
