body {
    margin:0;
    padding:0;
}
#header {
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
    background:#dacebf;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    z-index: 2;
    }
.header-title {
    margin-left:20px;
}
h1 {
    font-size:200%;
    color:#1e1210;
    margin-left: 20px;
    line-height: 1;
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
h1 span {
    font-size: 40%;
}
h3 {
    text-align: center;
    border-bottom: 3px solid #1e1210;
    width: 100px;
    margin: 0 auto 4%;
    font-size:150%;
}
.fas {
    margin-right:2px;
}
main {
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
a.scroll {
    position: absolute;
    bottom: 5%;
    left: 50%;
    text-decoration: none;
    color:#fff;
    font-weight: bold;
    padding-left: 5px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  a.scroll .fas {
    font-size:300%;
  }
  a.scroll span {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 30px;
    height: 30px;
    animation: sdb 1.5s infinite;
    box-sizing: border-box;
    margin-left: -12px;
  }
  
   @keyframes sdb {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translate(0px, 20px);
      opacity: 0;
    }
  }
#introduction:before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background:url(../img/main01.jpg) center no-repeat;
    background-size:cover;
    padding-top:80px;
  }

#introduction {
    margin:0 auto;
    padding-top:100vh;
}
#introduction h3 {
    width: 90%;
    border-bottom: none;
    margin-top:4%;
    font-family: 'Big Shoulders Text', cursive;
    font-size: 200%;
    /*font-family: 'Economica', sans-serif;*/
}
#introduction .inner {
    padding: 50px 0;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    max-width: 90%;
    margin: 0 auto 50px;
}
#introduction .inner_box {
    padding: 7%;
    /*margin: 0 auto;*/
    overflow: hidden;
}
#introduction .right {
    float:right;
    margin-left: 7%;
}
#introduction .left {
    float:left;
    margin-right: 7%;
}
#introduction .inner_box img {
    width: 50%;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .5);
}
.more {
    margin-top: 3%;
}
.more a {
    margin: 0 auto;
    text-align: center;
    background: #1e1210;
    color:#fff;
    border-radius: 30px;
    padding: 1% 4%;
    text-decoration: none;
    
    border:#1e1210 solid 1px;
}
.more a:hover {
    background: #dacebf;
    color:#1e1210;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, .5);
}
#news_a {
    padding-top: 80px;
    margin-top: -80px;
    display: block;
}
#news {
    padding: 5% 5% 10%;
    background: #fff;
}
.news_box {
    /*width:1024px;*/
    margin:0 auto;
}
.news_box_inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 0;
    margin: 8% auto 0;
    width:70%;
}
.news_box_inner p {
    padding:0 1% 3px;
    font-size:90%;
    border-bottom: 2px #1e1210 dotted;
    margin: 0 3%;
}
.news_box_inner p span {
    font-weight:bold;
}
#news a {
    color:#187da9;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: .3s;
}
#news a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #187da9;
    transition: .3s;
    transform: translateX(-50%);
  }
#news a:hover::after{
    width: 100%;
  }
#news a:hover {
    color:#187da9;
    text-decoration: none;
}
#works {
    background:#eeeeee;
    padding: 5% 5% 5%;
}
.works_box {
    /*width:1024px;*/
    margin:0 auto;
}
#works ul {
    padding: 20px 0;
    overflow: hidden;
}
#works li {
    display: block;
    float: left;
    list-style-type: none;
    padding-right:3%;
    padding-bottom:3%;
    width:22.75%;
}
#works li:nth-of-type(4n) {
    padding-right:0;
}
#works li img {
    border:8px solid #fff;
    width:100%;
    box-sizing: border-box;
}	
.instagram {
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
}
.instagram img {
    border:8px solid #fff;
    width:100%;
    box-sizing: border-box;
}
#sns {
    /*width:1024px;*/
    margin:0 auto;
    padding: 5% 5% 10%;
    background: #fff;
}
#sns .inner ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
}
#sns .inner ul li {
    margin-right:5%;
}
#sns .inner ul li a {
    font-size: 50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color:#fff;
    text-align:center;
    line-height: 120px;
    background :#1e1210;
    display:block;
}
#sns .inner ul li:last-child {
    margin-right:0;
}
#sns li a:hover {
    opacity:0.8;
}
footer p {
    background:#dacebf;
    padding:2% 0;
    width:100%;
    text-align: center;
    color:#1e1210;
    font-size: 80%;
    margin: 0;
}

/*スマホ*/
@media screen and (max-width: 480px) {
    h1 {
        margin-left: 0;
    }
    /*a.scroll .fas {
        font-size:200%;
    }*/
    a.scroll span {
        bottom:50px;
    }
    #introduction .inner {
        border-radius: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    #introduction p {
        font-size:90%;
      }
    #introduction:before {
        width:200%;
      }
    #introduction .right {
        float:none;
        margin-left: 0;
    }
    #introduction .left {
        float:none;
        margin-right: 0;
    }
    #introduction .inner_box img {
        width: 100%;
    }
    .more a {
        padding: 1% 0;
        width: 80%;
        display: block;
    }
    .news_box_inner {
        width:100%;
    }
    .news_box_inner p {
        line-height: 1.5;
    }
    #works li {
        padding-right: 5%;
        padding-bottom: 5%;
        width: 47.25%;
    }
    #works li:nth-child(even) {
        padding-right:0;
    }
    #sns .inner ul {
        padding:7% 0;
    }
    #sns .inner ul li a {
        font-size: 25px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}
/*Gナビ*/
#global-navi {
    padding-top:30px;
     
}
#wrapper nav ul {
    margin:0;
    padding:0;
}
#wrapper nav ul li {
    display:inline-block;
    font-size: 16px;
    padding:  0 20px;
}
#wrapper nav ul li a {
    color: #1e1210;
    text-decoration:none;
    font-weight: bold;
}
#wrapper nav ul li a:hover {
    color:#aaa;
}
@media screen and (max-width: 980px) {
    #wrapper nav ul li span.none {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    #wrapper nav ul li span.none {
        display: inline;
    }
}
/*スマホ画面でハンバーガーメニューの形にする*/
@media screen and (max-width: 600px) {
#wrapper nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    background:#f9f5ef;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2
}
#wrapper nav ul li {
    display:block;
    padding: 30px 40px 10px;
}
 
#wrapper nav ul li a {
    text-decoration: none;
    color: #1e1210;
}
 
#wrapper .btn-gnavi {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
 
#wrapper .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #666;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
 
#wrapper .btn-gnavi span:nth-child(1) {
    top: 0
}
 
#wrapper .btn-gnavi span:nth-child(2) {
    top: 10px
}
 
#wrapper .btn-gnavi span:nth-child(3) {
    top: 20px
}
 
#wrapper .btn-gnavi.open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}
 
#wrapper .btn-gnavi.open span {
    background: #666
}
 
#wrapper .btn-gnavi.open span {
    width: 24px;
}
#wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 6px #666
}
 
#wrapper .contents section:nth-child(odd) p {
    left: 10%
}
 
#wrapper .contents section:nth-child(even) p {
    right: 10%
}
}
.content{
    line-height: 1.6;
    margin: 0 auto;
    padding-top: 100px;
}
.content p{
    margin-bottom: 40px;
}

/*フェードイン*/
.fi-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 25px;
  }
  .fi-wrapper li{
    width: 48%;
    /*margin: 0 0 100px;*/
  }
  .fi-wrapper img{
    width: 100%;
    height: auto;
  }
  .fadeInUp {
    opacity : 0;
    transform: translateY(20px);
    transition: 2s;
  }

/*ロゴ画面*/
.logo_fadein{
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
    font-size:300%;
    text-align: center;
    color:#1e1210;
    line-height: 1;
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.logo_fadein p span {
    font-size: 40%;
}

@media screen and (max-width: 480px) {
    .logo_fadein p {
        font-size:200%;
    }
}

/*TOPへ戻るボタン*/
#page_top {
    width: 90px;
    height: 100px;
    position: fixed;
    right: 1%;
    bottom: 5px;
    text-align: center;
  }
  #page_top a {
    text-decoration: none;
  }
  #page_top a span {
    font-size:90%;
    color: #1e1210;
    font-weight: bold;
  }
.gotop {
    font-size:70px;
    color: #1e1210;
}
@media screen and (max-width: 480px) {
    #page_top {
        width: 70px;
        height: auto;
      }
      #page_top a span {
        font-size:70%;
      }
      .gotop {
        font-size:50px;
    }
}