@charset "utf-8";
/* レイアウトのためのCSS */

body{
    background:#333;
    font-family: 'Rammetto One', cursive, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #333;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}

body.appear{
     background:#fff;   
}

@media screen and (max-width:768px) {
body{
	font-size:0.8rem;
	}
}

/*見出し設定*/
h1{
    position:fixed;
    left:20px;
    top:10px;
    width:5em;
}

@media screen and (max-width:768px) {
h1{
    left:10px;
}    
}

.pv-title{
    position:fixed;
    bottom:0;
    color:#d87514;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 5vw;
    line-height: 0.9;
    white-space: nowrap;
}

/*ナビゲーション位置*/

#g-nav{
    position: absolute;
    z-index: 2;
    top:20px;
    right:20px;
}

/* container */
.wrapper{
    width:100%;
    background-color:#fff;
}
.wrapper .container{
    max-width:1000px;
    margin:0px auto;
    padding:80px 0px;
}
/* content */
@media (min-width: 992px) {
    .wrapper .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.wrapper .content-item {
    width:100%;
}
@media (min-width: 992px) {
    .wrapper .content-item {
        width:50%;
    }
}
.wrapper .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.wrapper .text{
    padding:50px;
}
.wrapper .text .heading{
    margin:0px 0px 40px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}