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

body {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 62.5%;
    font-family: Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.8;
	background: url("../img/bg.png") repeat;
    background-size: 250px auto;
    
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    height: 100%;
    font-feature-settings: "palt";
}

a {
	outline: none;
    text-decoration: none;
}
a img {
	border: none;
    outline: none;
}
section, div, span {
    box-sizing: border-box;
}




/* --- L O A D I N G --- */

#fade2 {
	width: 150%;
	height: 150vh;
	display: none;
	background-color: rgba(0,0,0,1);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
    
    -webkit-transform: rotate(-8deg) translateX(-5%) scale(1.25);
    transform: rotate(-8deg) translateX(-5%) scale(1.25);
}
#loader2 {
    width: 150px;
	height: 150px;
    position: fixed;
    background: url(../../img/loading.png) no-repeat center center;
    background-size: 100% auto;
	top: 50%;
	left: 50%;
	margin-left: -75px;
    margin-top: -75px;
	z-index: 21;
	
    animation: rotate-anime 12s linear infinite;
}
@keyframes rotate-anime {
    0%    { transform: rotate(0); }
    100%  { transform: rotate(360deg); }
}




/* --- M A I N --- */

.cmt-wrap {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 0 100px 0;
}
.cmt-title {
    width: 80%;
    height: auto;
    display: block;
    margin: 80px auto 40px;
}
.cmt-subtitle {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto 50px;
}
.cmt-title img, .cmt-subtitle img,
.pic-01 span img, .pic-02 span img {
    width: 100%;
    height: auto;
    display: block;
}
.cmt-wrap h5 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 80px;
    text-align: center;
    
    color: #ffff00;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    line-height: 2.2em;
    font-weight: bold;
}
.pic-01 {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #ffff00;
}
.pic-02 {
    width: 80%;
    height: auto;
    margin: 0 auto;
    border: 1px solid #ffff00;
    
    display: flex;
    display: -webkit-flex;
    
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
}
.pic-01 span {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
.pic-02 span {
    width: 50%;
    height: auto;
    display: block;
    margin: 0;
}
.pic-01, .pic-01 span,
.pic-02, .pic-02 span {
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}
.pic-01:hover, .pic-02:hover {
    transform: scale(0.98);
}
.pic-01:hover span, .pic-02:hover span {
    opacity: 0.7;
}
.cmt-wrap p {
    width: 100%;
    height: auto;
    display: block;
    margin: 35px auto 80px;
    text-align: center;
    
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    line-height: 1em;
    font-weight: bold;
}
.cmt-wrap p span {
    display: block;
    margin: 0.7em auto 0 auto;
    font-size: 0.8em;
}



/* --------- < 600px > --------- */

@media (max-width: 600px) {

.cmt-wrap {
    padding: 0 0 30px 0;
}
.cmt-title {
    margin: 65px auto 25px;
}
.cmt-subtitle {
    width: 55%;
    margin: 0 auto 40px;
}
.cmt-wrap h5 {
    margin: 0 auto 50px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 0.8rem;
    line-height: 2em;
}
.pic-01 {
    width: calc(100% - 40px);
}
.pic-02 {
    width: calc(100% - 40px);
}
.cmt-wrap p {
    margin: 20px auto 40px;
    font-size: 0.8rem;
}
.cmt-wrap p span {
    margin: 0.6em auto 0 auto;
}

#loader2 {
    width: 100px;
	height: 100px;
	margin-left: -50px;
    margin-top: -50px;
}

}



