@charset "utf-8"; 

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1025px) {


body{
    word-spacing: .3px;
}

.container {
    width: 100%;
    margin: 0 auto;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
}

/*---------------------- 幾何学模様-------------------------------------------- */

html,
body {
    height: 100%;
    /*高さを100%にして描画エリアをとる*/
}

#particles-js {
    position: fixed;
    /*描画固定*/
    z-index: -1;
    /*描画を一番下に*/
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /*背景色*/
}

#wrapper {
    position: relative;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------- */


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

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    left: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fafafa;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 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: #494949;
	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:10px;
	left: 10px;
	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: #e6e6e6;
  	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;	
}

small{
	color:#fff;
	display: block;
	text-align: center;
}

#header{
	width:100%;
	color:#fff;
	text-align: center;
}

section{
	padding:100px 30px;
}

section:nth-child(2n){
	background:#f3f3f3;	
}

#footer{
	background:#333;
	padding:20px;
}

/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
    position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
    background:rgb(138, 128, 115);
    cursor: pointer;
      width: 50px;
      height:50px;
    border-radius: 5px;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 2px;
      border-radius: 5px;
    background: #fff;
      width: 45%;
    }
  
  
  .openbtn span:nth-of-type(1) {
    top:13px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:19px;
  }
  
  .openbtn span:nth-of-type(3) {
    top:25px;
  }
  
  .openbtn span:nth-of-type(3)::after {
    content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top:5px;
    left:-2px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  
  .openbtn.active span:nth-of-type(1) {
      top: 14px;
      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: 26px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
  
  .openbtn.active span:nth-of-type(3)::after {
    content:"Close";/*3つ目の要素のafterにClose表示を指定*/
      transform: translateY(0) rotate(-45deg);
    top:5px;
    left:4px;
  }
  /*========= レイアウトのためのCSS ===============*/
   
  a{
    color: #333;
    text-decoration: none;
  }

/* ------------------------------------------------ */

.navi {
    width: 100%;
    margin: 0 auto;
}

.navi1{
    width: 20%;
    margin: 0 auto;
    padding-top: 3%;
}

.navi1 img{
    width: 100%;
}

.navi2{
    width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.navi2 ul{
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 40px;
    justify-content: space-evenly;
    list-style: none;
    color: rgb(0, 0, 0);
}

.header1 {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    background-color: rgb(138, 128, 115);
}

.header1 h2 {
    text-align: center;
    color: white;
    padding-top: 100px;
    font-size: 28px;
}


/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 1%;
    left: 95%;
    /*矢印の動き1秒かけて永遠にループ*/
    animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
    0% {bottom: 1%;}

    50% {bottom: 3%;}

    100% {bottom: 1%;}
}

/*Scrollテキストの描写*/
.scrolldown4 span {
    /*描画位置*/
    position: absolute;
    left: -20px;
    bottom: 10px;
    /*テキストの形状*/
    color: #000000;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #000000;
    transform: skewX(-31deg);
}

.scrolldown4:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: 0;
    /*矢印の形状*/
    width: 1px;
    height: 50px;
    background: #000000;
}

/* レイアウトのためのCSS */
#header{
    width:100%;
    height:100vh;
    position: relative;
  } 

  #header:before{
    content: '';
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height: 100vh;
  }
  
  #container1{
    position: relative;
    text-align: center;
    margin-top:400px 0 ;
  }
  
  @media screen and (max-width:768px){
  
      #header,
      #header:before{
    height: 90vh;    
      }
      
  }

/* ---------------------------------------------------------------- */


.bgc {
    width: 100%;
    margin: 0 auto;
}

.grid {
    width: 70%;
    margin: 0 auto;
    display: grid;
    gap: 5%;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
    animation-delay: 0.2s;
    }
    
    .delay-time04{
    animation-delay: 0.4s;
    }

    .delay-time06{
        animation-delay: 0.6s;
        }
.delay-time08{
         animation-delay: 0.8s;
            }
            .delay-time10{
                animation-delay: 1.0s;
                }
    
    /*==================================================
    スタート時は要素自体を透過0にするためのopacity:0;を指定する
    ===================================*/
    
    .box{
        opacity: 0;
    }
    
    /*==================================================
    動き自体の指定：今回は「ふわっ」
    ===================================*/
    
    .fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
        transform: translateY(100px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    

/*　画像の拡大　*/

.item img {
    transform: scale(1);
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
    /* gridのためのcss */
    width: 100%;
    margin: 0 auto;
    grid-template-rows: 100px 100px 100px;
    /* 画像に枠線をつける↓ */
    border: solid 1px 
}

.item a:hover img {
    /*hoverした時の変化*/
    transform: scale(1.2);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/

.mask {
    display: block;
    line-height: 0;
    /*行の高さを0にする*/
    overflow: hidden;
    /*拡大してはみ出る要素を隠す*/
}

/* --------------------------------------------------------------- */
.item p {
    font-size: 16px;
    color: #000000;
}


.title6 {
    background-color: #cdc8bcbe;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    color: rgb(0, 0, 0);
    margin-top: 600px;
}


.flow {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    padding: 5%;
    padding-top: 3%;
}

.navi3 {
    width: 80%;
    margin: 0 auto;
    padding-top: 110px;
    padding-bottom: 30px;
}

.navi3 ul {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    color: rgb(0, 0, 0);
}

a:hover {
    background: #ffb8cf;
}

.footer {
    width: 100%;
    margin: 0 auto;
    height: 80px;
    text-align: center;
    background-color: rgb(138, 128, 115);
    color: rgb(255, 255, 255);
    padding-top: 25px;
  }

  /* PC用かっこ */
}























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

    body{
        word-spacing: .3px;
    }
    
    .container {
        width: 100%;
        margin: 0 auto;
        font-family: "Shippori Mincho", serif;
        font-weight: 500;
        font-style: normal;
    }
    
    /*---------------------- 幾何学模様-------------------------------------------- */
    
    html,
    body {
        height: 100%;
        /*高さを100%にして描画エリアをとる*/
    }
    
    #particles-js {
        position: fixed;
        /*描画固定*/
        z-index: -1;
        /*描画を一番下に*/
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        /*背景色*/
    }
    
    #wrapper {
        position: relative;
        /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
        z-index: 1;
        /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
        width: 100%;
        height: 100%;
    }
    
    /* --------------------------------------------------- */
    
    
    /*========= ナビゲーションのためのCSS ===============*/
    
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        left: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background:#fafafa;
        /*動き*/
        transition: all 0.6s;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        left: 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: #494949;
        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:10px;
        left: 10px;
        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: #e6e6e6;
          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;	
    }
    
    small{
        color:#fff;
        display: block;
        text-align: center;
    }
    
    #header{
        width:100%;
        color:#fff;
        text-align: center;
    }
    
    section{
        padding:100px 30px;
    }
    
    section:nth-child(2n){
        background:#f3f3f3;	
    }
    
    #footer{
        background:#333;
        padding:20px;
    }
    
    /*==================================================
    　5-2-4 MENUがCLOSEに
    ===================================*/
    
    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn{
        position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
        background:rgb(138, 128, 115);
        cursor: pointer;
          width: 50px;
          height:50px;
        border-radius: 5px;
      }
      
      /*ボタン内側*/
      .openbtn span{
          display: inline-block;
          transition: all .4s;/*アニメーションの設定*/
          position: absolute;
          left: 14px;
          height: 2px;
          border-radius: 5px;
        background: #fff;
          width: 45%;
        }
      
      
      .openbtn span:nth-of-type(1) {
        top:13px; 
      }
      
      .openbtn span:nth-of-type(2) {
        top:19px;
      }
      
      .openbtn span:nth-of-type(3) {
        top:25px;
      }
      
      .openbtn span:nth-of-type(3)::after {
        content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top:5px;
        left:-2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
      }
      
      /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
      
      .openbtn.active span:nth-of-type(1) {
          top: 14px;
          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: 26px;
          left: 18px;
          transform: translateY(-6px) rotate(45deg);
          width: 30%;
      }
      
      .openbtn.active span:nth-of-type(3)::after {
        content:"Close";/*3つ目の要素のafterにClose表示を指定*/
          transform: translateY(0) rotate(-45deg);
        top:5px;
        left:4px;
      }
      /*========= レイアウトのためのCSS ===============*/
       
      a{
        color: #333;
        text-decoration: none;
      }
    
    /* ------------------------------------------------ */
    
    .navi {
        width: 100%;
        margin: 0 auto;
    }
    
    .navi1{
        width: 20%;
        margin: 0 auto;
        padding-top: 3%;
    }
    
    .navi1 img{
        width: 100%;
    }
    
    .navi2{
        width: 80%;
        margin: 0 auto;
        padding-bottom: 20px;
    }
    
    .navi2 ul{
        width: 100%;
        margin: 0 auto;
        display: flex;
        padding-top: 40px;
        justify-content: space-evenly;
        list-style: none;
        color: rgb(0, 0, 0);
    }
    
    .header1 {
        width: 100%;
        height: 200px;
        margin: 0 auto;
        background-color: rgb(138, 128, 115);
    }
    
    .header1 h2 {
        text-align: center;
        color: white;
        padding-top: 100px;
        font-size: 28px;
    }
    
    
    .bgc {
        width: 100%;
        margin: 0 auto;
    }
    
    .grid {
        width: 80%;
        margin: 0 auto;
        display: grid;
        gap: 5%;
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 5%;
        padding-bottom: 5%;
        text-align: center;
    }
    
    /* アニメーションスタートの遅延時間を決めるCSS*/
    
    .delay-time02{
        animation-delay: 0.2s;
        }
        
        .delay-time04{
        animation-delay: 0.4s;
        }
    
        .delay-time06{
            animation-delay: 0.6s;
            }
    .delay-time08{
             animation-delay: 0.8s;
                }
                .delay-time10{
                    animation-delay: 1.0s;
                    }
        
        /*==================================================
        スタート時は要素自体を透過0にするためのopacity:0;を指定する
        ===================================*/
        
        .box{
            opacity: 0;
        }
        
        /*==================================================
        動き自体の指定：今回は「ふわっ」
        ===================================*/
        
        .fadeUp {
        animation-name:fadeUpAnime;
        animation-duration:0.5s;
        animation-fill-mode:forwards;
        opacity: 0;
        }
        @keyframes fadeUpAnime{
          from {
            opacity: 0;
            transform: translateY(100px);
          }
        
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
        
    
    /*　画像の拡大　*/
    
    .item img {
        transform: scale(1);
        transition: .3s ease-in-out;
        /*移り変わる速さを変更したい場合はこの数値を変更*/
        /* gridのためのcss */
        width: 100%;
        margin: 0 auto;
        grid-template-rows: 100px 100px 100px;
        /* 画像に枠線をつける↓ */
        border: solid 1px 
    }
    
    .item a:hover img {
        /*hoverした時の変化*/
        transform: scale(1.2);
        /*拡大の値を変更したい場合はこの数値を変更*/
    }
    
    /*　画像のマスク　*/
    
    .mask {
        display: block;
        line-height: 0;
        /*行の高さを0にする*/
        overflow: hidden;
        /*拡大してはみ出る要素を隠す*/
    }
    
    /* --------------------------------------------------------------- */
    .item p {
        font-size: 18px;
        color: #000000;
    }
    
    
    .title6 {
        background-color: #cdc8bcbe;
        width: 100%;
        height: 700px;
        margin: 0 auto;
        padding-top: 30px;
        text-align: center;
        color: rgb(0, 0, 0);
    }
    
    
    .flow {
        width: 80%;
        margin: 0 auto;
        padding-top: 5px;
        padding-left: 20px;
        font-size: 18px;
        text-align: left;
        line-height: 30px;
    }
    
    .navi3 {
        width: 80%;
        margin: 0 auto;
        padding-top: 60px;
        padding-bottom: 30px;
    }
    
    .navi3 ul {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-evenly;
        list-style: none;
        color: rgb(0, 0, 0);
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    .footer {
        width: 100%;
        margin: 0 auto;
        height: 80px;
        text-align: center;
        background-color: rgb(138, 128, 115);
        color: rgb(255, 255, 255);
        padding-top: 25px;
      }
    
/* タブレット用かっこ */
}




















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


    body{
        word-spacing: .3px;
    }
    
    .container {
        width: 100%;
        margin: 0 auto;
        font-family: "Shippori Mincho", serif;
        font-weight: 500;
        font-style: normal;
    }
    
    /*---------------------- 幾何学模様-------------------------------------------- */
    
    html,
    body {
        height: 100%;
        /*高さを100%にして描画エリアをとる*/
    }
    
    #particles-js {
        position: fixed;
        /*描画固定*/
        z-index: -1;
        /*描画を一番下に*/
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        /*背景色*/
    }
    
    #wrapper {
        position: relative;
        /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
        z-index: 1;
        /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
        width: 100%;
        height: 100%;
    }
    
    /* --------------------------------------------------- */
    
    
    /*========= ナビゲーションのためのCSS ===============*/
    
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        left: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background:#fafafa;
        /*動き*/
        transition: all 0.6s;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        left: 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: #494949;
        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:10px;
        left: 10px;
        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: #e6e6e6;
          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;	
    }
    
    small{
        color:#fff;
        display: block;
        text-align: center;
    }
    
    #header{
        width:100%;
        color:#fff;
        text-align: center;
    }
    
    section{
        padding:100px 30px;
    }
    
    section:nth-child(2n){
        background:#f3f3f3;	
    }
    
    #footer{
        background:#333;
        padding:20px;
    }
    
    /*==================================================
    　5-2-4 MENUがCLOSEに
    ===================================*/
    
    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn{
        position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
        background:rgb(138, 128, 115);
        cursor: pointer;
          width: 50px;
          height:50px;
        border-radius: 5px;
      }
      
      /*ボタン内側*/
      .openbtn span{
          display: inline-block;
          transition: all .4s;/*アニメーションの設定*/
          position: absolute;
          left: 14px;
          height: 2px;
          border-radius: 5px;
        background: #fff;
          width: 45%;
        }
      
      
      .openbtn span:nth-of-type(1) {
        top:13px; 
      }
      
      .openbtn span:nth-of-type(2) {
        top:19px;
      }
      
      .openbtn span:nth-of-type(3) {
        top:25px;
      }
      
      .openbtn span:nth-of-type(3)::after {
        content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top:5px;
        left:-2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
      }
      
      /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
      
      .openbtn.active span:nth-of-type(1) {
          top: 14px;
          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: 26px;
          left: 18px;
          transform: translateY(-6px) rotate(45deg);
          width: 30%;
      }
      
      .openbtn.active span:nth-of-type(3)::after {
        content:"Close";/*3つ目の要素のafterにClose表示を指定*/
          transform: translateY(0) rotate(-45deg);
        top:5px;
        left:4px;
      }
      /*========= レイアウトのためのCSS ===============*/
       
      a{
        color: #333;
        text-decoration: none;
      }
    
    /* ------------------------------------------------ */
    
    .navi {
        width: 100%;
        margin: 0 auto;
    }
    
    .navi1{
        width: 40%;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .navi1 img{
        width: 100%;
    }
    
    .navi2{
        display: none;
        width: 80%;
        margin: 0 auto;
        padding-bottom: 20px;
    }
    
    .navi2 ul{
        display: none;
        width: 100%;
        margin: 0 auto;
        display: flex;
        padding-top: 40px;
        justify-content: space-evenly;
        list-style: none;
        color: rgb(0, 0, 0);
    }
    
    .header1 {
        width: 100%;
        height: 70px;
        margin: 0 auto;
        margin-top: 60px;
        background-color: rgb(138, 128, 115);
    }
    
    .header1 h2 {
        text-align: center;
        color: white;
        padding-top: 20px;
        font-size: 20px;
    }
    
    
    .bgc {
        width: 100%;
        margin: 0 auto;
    }
    
    .grid {
        width: 70%;
        margin: 0 auto;
        display: grid;
        gap: 5%;
        grid-template-columns: 1fr 1fr;
        padding-top: 5%;
        padding-bottom: 5%;
        text-align: center;
    }
    
    /* アニメーションスタートの遅延時間を決めるCSS*/
    
    .delay-time02{
        animation-delay: 0.2s;
        }
        
        .delay-time04{
        animation-delay: 0.4s;
        }
    
        .delay-time06{
            animation-delay: 0.6s;
            }
    .delay-time08{
             animation-delay: 0.8s;
                }
                .delay-time10{
                    animation-delay: 1.0s;
                    }
        
        /*==================================================
        スタート時は要素自体を透過0にするためのopacity:0;を指定する
        ===================================*/
        
        .box{
            opacity: 0;
        }
        
        /*==================================================
        動き自体の指定：今回は「ふわっ」
        ===================================*/
        
        .fadeUp {
        animation-name:fadeUpAnime;
        animation-duration:0.5s;
        animation-fill-mode:forwards;
        opacity: 0;
        }
        @keyframes fadeUpAnime{
          from {
            opacity: 0;
            transform: translateY(100px);
          }
        
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }
        
    
    /*　画像の拡大　*/
    
    .item img {
        transform: scale(1);
        transition: .3s ease-in-out;
        /*移り変わる速さを変更したい場合はこの数値を変更*/
        /* gridのためのcss */
        width: 100%;
        margin: 0 auto;
        grid-template-rows: 100px 100px;
        /* 画像に枠線をつける↓ */
        border: solid 1px 
    }
    
    .item a:hover img {
        /*hoverした時の変化*/
        transform: scale(1.2);
        /*拡大の値を変更したい場合はこの数値を変更*/
    }
    
    /*　画像のマスク　*/
    
    .mask {
        display: block;
        line-height: 0;
        /*行の高さを0にする*/
        overflow: hidden;
        /*拡大してはみ出る要素を隠す*/
    }
    
    /* --------------------------------------------------------------- */
    .item p {
        font-size: 14px;
        color: #000000;
    }
    
    
    .title6 {
        background-color: #cdc8bcbe;
        width: 100%;
        height: 580px;
        margin: 0 auto;
        margin-top: 100px;
        padding-top: 30px;
        text-align: center;
        color: rgb(0, 0, 0);
    }
    
    
    .flow {
        width: 80%;
        margin: 0 auto;
        padding-left: 20px;
        font-size: 13px;
        text-align: left;
        line-height: 20px;
    }
    
    .navi3 {
        width: 80%;
        margin: 0 auto;
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .navi3 ul {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-evenly;
        list-style: none;
        color: rgb(0, 0, 0);
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    .footer {
        width: 100%;
        margin: 0 auto;
        height: 80px;
        text-align: center;
        background-color: rgb(138, 128, 115);
        color: rgb(255, 255, 255);
        padding-top: 25px;
      }


/* スマホ用かっこ */
}