@charset "UTF-8";

@media screen and (max-width:767px) {
    body{
        font-size: 15px;
    }
    img{
        max-width: 100%;
        height: auto;
    }
}

body{
    font-size: 20px;
    color: black;
    font-family: "Avenir";
}

a:hover{
    text-decoration: none;
    color: #555;
}

/*---------- header ----------*/

header{
    padding: 20px 20px 35px;
    border-bottom: 1px solid #333;
}

.inner{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

header h1{
    margin: 20px 0 0 20px;
    color: #333;
}

header h1 a{
    color: #333;
    text-decoration: none;
    font-size: 30px;
}

#g-nav ul{
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
}

#g-nav ul li a{
    display: block;
    padding: 10px 15px 0;
    text-decoration: none;
    color: black;
}

#g-nav ul li a:hover{
    color: #888;
}

@media screen and (max-width:820px) {
    header{
        display:block;
        padding: 5% 3%;
    }

    header h1{
        margin: 20px 0 0 10px;
        text-align: center;
        margin-top: 0px;
    }

    #g-nav ul{
    display:block;
    }

    #g-nav ul li{
    padding-left:0;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#9e9e9f;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:43px;
	right: 25px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}


@media screen and (max-width:768px) {
    header{
        display:block;
        padding: 5% 3%;
    }

    header h1{
        margin: 20px 0 0 10px;
        text-align: center;
        margin-top: 0px;
    }

    #g-nav ul{
    display:block;
    }

    #g-nav ul li{
    padding-left:0;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#9e9e9f;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:41px;
	right: 25px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}


@media screen and (max-width:767px) {
    header{
        display:block;
        padding: 5% 3%;
    }

    header h1{
        margin: 20px 0 0 10px;
        text-align: center;
        margin-top: 0px;
    }

    #g-nav ul{
    display:block;
    }

    #g-nav ul li{
    padding-left:0;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#9e9e9f;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:22px;
	right: 9px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}

@media screen and (max-width:280px) {

    header{
        display:block;
        padding: 5% 3% 5%;
    }

    header h1{
        margin: 20px 0 0 10px;
        text-align: center;
        margin-top: 0px;
    }

    header h1 a{
        color: #333;
        text-decoration: none;
        font-size: 25px;
    }

    #g-nav ul{
    display:block;
    }

    #g-nav ul li{
    padding-left:0;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#9e9e9f;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:17px;
	right: 9px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}

/*---------- footer ----------*/

footer{
    background: #fff;
    padding: 20px;
    border-top: 1px solid #333;
}

footer ul{
    list-style: none;
    margin: 0 0 5px;
    padding: 0;
    text-align: center;
}

footer li{
    text-align: center;
}

footer li a{
    text-decoration: none;
    font-size: 13px;
    color: #000;
}

footer li a:hover{
    color: #888;
}

footer ul li.ig img{
    width: 30px;
    height: auto;
}

footer small{
    margin: 1.5% 0;
    display: block;
    text-align:  center;
    color: #888;
}

/*---------- main ----------*/
.wrapper{
    line-height: 1.7;
    padding: 5% 0;
}

.wrapper h2{
    margin-bottom:0;
}
@media screen and (max-width:912px) {
    .wrapper{
        padding: 12% 10%;
    }
}

@media screen and (max-width:820px) {
    .wrapper{
        padding: 12% 10%;
    }
}

@media screen and (max-width:768px) {
    .wrapper{
        padding: 13% 10%;
    }
}

@media screen and (max-width:767px) {
    .wrapper{
        padding: 20% 10%;
    }
}

/*==================================================
スライダーのためのcss
===================================*/


/*画像の横幅を100%にしてレスポンシブ化*/
.gallery img{
    width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
    text-align: center;
    margin: 0 auto;
  }
  
  /*メイン画像下に余白をつける*/
  
  .gallery{
    padding: 3% 10%;
  }
  
  /*矢印の設定*/
  
  /*戻る、次へ矢印の位置*/
  .slick-prev, 
  .slick-next {
      position: absolute;/*絶対配置にする*/
    z-index: 3;
      top: 42%;
      cursor: pointer;/*マウスカーソルを指マークに*/
      outline: none;/*クリックをしたら出てくる枠線を消す*/
      border-top: 2px solid #ccc;/*矢印の色*/
      border-right: 2px solid #ccc;/*矢印の色*/
      height: 25px;
      width: 25px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
      left:0;
      transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
      right:0;
      transform: rotate(45deg);
  }
  
  /*選択するサムネイル画像の設定*/
  
  .choice-btn li{
    cursor: pointer;
    outline: none;
    background:#333;
    width:25%!important;
  }
  
  .choice-btn li img{
    opacity: 0.4;/*選択されていないものは透過40%*/
  }
  
  .choice-btn li.slick-current img{
    opacity: 1;/*選択されているものは透過しない*/
  }
  
  .choice-btn .slick-track {
    transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
  }
  
  /*========= レイアウトのためのCSS ===============*/
  
  /*エリア全体を中央寄せ*/
  .wrapper{
    width:94%;
    max-width:900px;
    margin:0 auto;
  }  
  
  a{
    color: #333;
  }
  
  a:hover,
  a:active{
    text-decoration: none;
  }
  
  @media screen and (max-width:912px) {
    .slick-prev {/*戻る矢印の位置と形状*/
        left:-5%;
        transform: rotate(-135deg);
    }
    
    .slick-next {/*次へ矢印の位置と形状*/
        right:-5%;
        transform: rotate(45deg);
    }
  }