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

/* ==========================================================================
preview_page
========================================================================== */

body a{
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;}
	  
body a:hover{
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
	  text-decoration:none
}


.preview-page {
	position:relative;
	overflow-x:hidden;
	font-family: "Noto Sans Japanese";
	background: rgb(161,214,219);
	background: -moz-linear-gradient(left, rgba(161,214,219,1) 0%, rgba(216,236,224,1) 58%, rgba(255,252,228,1) 100%);
	background: -webkit-linear-gradient(left, rgba(161,214,219,1) 0%,rgba(216,236,224,1) 58%,rgba(255,252,228,1) 100%);
	background: linear-gradient(to right, rgba(161,214,219,1) 0%,rgba(216,236,224,1) 58%,rgba(255,252,228,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1d6db', endColorstr='#000ce4',GradientType=1 );
}

.preview-page .preview-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 0 3%;
}

.preview-page .preview-ttl {
    font-family: YakuHanMP,'Noto Serif JP','游明朝','Yu Mincho','游明朝体','YuMincho','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HiraMinProN-W3','HGS明朝E','ＭＳ Ｐ明朝','MS PMincho',serif;
    margin: 12% 0 10%;
    font-size: 35px;
    text-align: center;
    font-weight: bold;
    color: #EA6898;
}

.preview-page .day {
    display: block;
    padding-top: 2%;
    line-height: 1;
    font-size: 20px;
}

.preview-page p {
    font-size: 15px;
    line-height: 2;
}

.preview-page .txt-space {
    margin: 0;
    padding-bottom: 4%;
}

.preview-page .preview-img-wrap {
    text-align: center;
}

.preview-page .preview-img {
    width: 100%;
    max-width: 690px;
    margin: 10% 0;
    border: 10px solid #FFFFFF;
}

.return-top-btn {
    display: block;
    width: 20%;
    max-width: 150px;
    margin: 0 auto 5%;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    color: #000;
    border: 1px #000 solid;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.return-top-btn:hover {
    color: rgba(228,0,115,1.0);
    border-color: rgba(228,0,115,1.0);
}


@media screen and (max-width: 768px){
    
    .preview-page .preview-ttl {
        font-size: 26px;
    }
    
    .preview-page .day {
        font-size: 16px;
    }
    
    .return-top-btn {
        margin: 0 auto 30px;
    }
}



