@charset "utf-8";
/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1025px) {

.container{
    width: 100%;
    font-family: "Noto Serif JP", serif;

}

.han{
    display: none;
}

.main{
    width: 100%;
    text-align: center;
}


/* ボタン */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}



.btn,
a.btn,
button.btn {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #0a0400;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #161412;
}

a.btn--radius {
   border-radius: 100vh;
}

.web{
    width: 100%;
    margin-top: 10%;
    text-align: center;
}

.web ul{
    display: flex;
    list-style: none;
}
.web img{
    width: 50%;
}

.web1{
    width: 100%;
    margin-top: 7%;
    text-align: center;
    margin-bottom: 20%;
}
.web1 ul{
    display: flex;
    list-style: none;
}
.web1 img{
    width: 50%;
}


.navi1{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 10%;
}
.navi1 ul{
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 8%;
    list-style: none;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 20px;
}

.copy{
    width: 100%;
    height: 50px;
    padding-top: 10px;
    text-align: center;
    background-color: #f2eded;
}
}









/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1024px) {

        .container{
            width: 100%;
        }
        
        .han{
            display: none;
        }
        .main{
            width: 100%;
            text-align: center;
        }

        .main img{
            width: 100%;
        }
        
        
        /* ボタン */
        /*まずはお決まりのボックスサイズ算出をborer-boxに */
        *,
        *:before,
        *:after {
          -webkit-box-sizing: inherit;
          box-sizing: inherit;
        }
        
        
        
        .btn,
        a.btn,
        button.btn {
          font-size: 1.0rem;
          font-weight: 700;
          line-height: 1.5;
          position: relative;
          display: inline-block;
          padding: 1rem 4rem;
          cursor: pointer;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none;
          -webkit-transition: all 0.3s;
          transition: all 0.3s;
          text-align: center;
          vertical-align: middle;
          text-decoration: none;
          letter-spacing: 0.1em;
          color: #212529;
          border-radius: 0.5rem;
        }
        
        .btn--orange,
        a.btn--orange {
          color: #fff;
          background-color: #0a0400;
        }
        .btn--orange:hover,
        a.btn--orange:hover {
          color: #fff;
          background: #161412;
        }
        
        a.btn--radius {
           border-radius: 100vh;
        }
        
        .web{
            width: 100%;
            margin-top: 10%;
            text-align: center;
        }
        
        .web ul{
            display: flex;
            list-style: none;
        }
        .web img{
            width: 50%;
        }
        
        .web1{
            width: 100%;
            margin-top: 7%;
            text-align: center;
            margin-bottom: 20%;
        }
        .web1 ul{
            display: flex;
            list-style: none;
        }
        .web1 img{
            width: 50%;
        }
        
        
        .navi1{
            width: 100%;
            display: flex;
            justify-content: space-around;
            margin-top: 10%;
        }
        .navi1 ul{
            display: flex;
            justify-content: space-around;
            width: 100%;
            height: 8%;
            list-style: none;
            padding-top: 20px;
            text-align: center;
            padding-bottom: 20px;
        }
        
        .copy{
            width: 100%;
            height: 50px;
            padding-top: 10px;
            text-align: center;
            background-color: #f2eded;
        }
}











/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

    .container{
        width: 100%;
    }


    /* ハンバーガー */
    
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#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;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	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%;
}

/*========= レイアウトのためのCSS ===============*/

h1{
	font-size:1.2rem;
}

h2{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 30px 0;
}

p{
	margin-top:20px;	
}










    
    .main{
        width: 100%;
        text-align: center;
    }
    .main img{
        width: 100%;
    }
    
    
    /* ボタン */
    /*まずはお決まりのボックスサイズ算出をborer-boxに */
    *,
    *:before,
    *:after {
      -webkit-box-sizing: inherit;
      box-sizing: inherit;
    }
    
    
    
    .btn,
    a.btn,
    button.btn {
      font-size: 0.8rem;
      font-weight: 700;
      line-height: 1.0;
      position: relative;
      display: inline-block;
      padding: 1rem 2rem;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      text-align: center;
      vertical-align: middle;
      text-decoration: none;
      letter-spacing: 0.1em;
      color: #212529;
      border-radius: 0.5rem;
    }
    
    .btn--orange,
    a.btn--orange {
      color: #fff;
      background-color: #0a0400;
    }
    .btn--orange:hover,
    a.btn--orange:hover {
      color: #fff;
      background: #161412;
    }
    
    a.btn--radius {
       border-radius: 100vh;
    }
    
    .web{
        width: 100%;
        margin-top: 10%;
        text-align: center;
    }
    
    
    .web img{
        width: 50%;
    }
    
    .web li{
        margin-top: 20px;
        margin-bottom: 20px;

    }
    .web1{
        width: 100%;
        margin-top: 7%;
        text-align: center;
        margin-bottom: 20%;
    }
    
    .web1 img{
        width: 50%;
    }
    
    .web1 li{
        margin-bottom: 20px;
    }
    .navi1{
        width: 100%;
        height: 50px;
        margin-top: 50px;
    }
    .navi1 ul{
        display: flex;
        justify-content: space-around;
        list-style: none;
        padding-top: 20px;
        text-align: center;
        padding-bottom: 20px;
    }
    
    .copy{
        width: 100%;
        height: 50px;
        padding-top: 10px;
        text-align: center;
        background-color: #f2eded;
    }
}
