@charset "UTF-8";

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


body {
    word-spacing: .3px;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

/* #splash {
    /*fixedで全面に固定*/
	/* position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background:#333;
	text-align:center;
	color:#fff;
} */

/* Loadingバー中央配置　*/
/* #splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
} */ 


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


/* #container{
    width:100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #333;
}

a:hover{
     text-decoration: none;   
} */


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

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

#particles-js{ 
	position:fixed;/*描画固定*/
	width: 100%;
	height: 100%;
    z-index:-1;/*描画を一番下に*/
	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: #ffffff;
      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%;
}


/*==================================================
　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;
  }

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



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

.header1 {
    width: 100%;
    /* 親要素にrelativeをいれる。 */
    position: relative;
}

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

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

.navi1 img{
    width: 100%;
}

.navi2{
    width: 80%;
    margin: 0 auto;
    padding-top: 3%;
}

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

.header1 h1 {
    color: rgb(0, 0, 0);
    /* 子要素はabsolute */
    position: absolute;
    /* 文字をど真ん中にする */
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
}

.header1 video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    padding-top: 20px;

}

.main {
    width: 80%;
    margin: 0 auto;
    height: 400px;
    padding-top: 5%;
}

.main1 {
    width: 80%;
    margin: 0 auto;
}

.main1 h2 {
    text-align: center;
}

.main1 ul {
    padding-top: 30px;
    padding-left: 10px;
    text-align: center;
}

.button {
    width: 90%;
    text-align: end;
}

.button a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: rgb(138, 128, 115);
    padding: 18px 30px;
    border-radius: 6px;
    transition: .3s;
}

a:hover {
    background: #ffb8cf;
}


/*=== 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;
  }
  
  #container{
    position: relative;
    z-index:1;
    text-align: center;
  }
  
  @media screen and (max-width:768px){
  
      #header,
      #header:before{
    height: 90vh;    
      }
      
  }

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


.title1 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 200px
}

.service {
    width: 80%;
    display: flex;
    margin: 0 auto;
    justify-content: space-evenly;
    padding-top: 3%;
}


/* 画像の上に文字をおく */
.service1 {
    width: 20%;
    /* 親要素はrelativeにする */
    position: relative;
}

.service1 img {
    width: 100%;
}

.service1 p {
    /* 子要素はabsolute */
    position: absolute;
    /* 文字をど真ん中にする */
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0
}

/* ここまで------------------------------------ */

.service2 {
    width: 20%;
    /* 親要素はrelativeにする */
    position: relative;
}

.service2 img {
    width: 100%;
}

.service2 p {
    /* 子要素はabsolute */
    position: absolute;
    /* 文字をど真ん中にする */
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0
}


.service3 {
    width: 20%;
    /* 親要素はrelativeにする */
    position: relative;
}

.service3 img {
    width: 100%;
}

.service3 p {
    /* 子要素はabsolute */
    position: absolute;
    /* 文字をど真ん中にする */
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0
}

.ahtml {
    width: 95%;
    text-align: end;
    padding-bottom: 10%;
}

.ahtml a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: rgb(138, 128, 115);
    padding: 18px 30px;
    border-radius: 6px;
    transition: .3s;
}

a:hover {
    background: #ffb8cf;
}



.title2 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3%;
}




/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}




.phtml {
    width: 95%;
    text-align: end;
    padding-bottom: 10%;
    padding-top: 40px;
}

/* ボタンの作り方 */
.phtml a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: rgb(138, 128, 115);
    padding: 18px 30px;
    border-radius: 6px;
    transition: .3s;
}

a:hover {
    background: #ffb8cf;
}

.title3 {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    background-color: #cdc8bcbe;
    color: rgb(0, 0, 0);
}

.title3 h2 {
    text-align: center;
    color: rgb(0, 0, 0);
    padding-top: 100px;
}

.title3 p {
    text-align: center;
    padding: 5%;
}

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

.contacta a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: rgb(138, 128, 115);
    padding: 18px 30px;
    border-radius: 6px;
    transition: .3s;
}

a:hover {
    background: #ffb8cf;
}

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

.navi3 ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    color: rgb(0, 0, 0);
    padding-bottom: 20px;
}


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

    /* pc用のレスポンシブ対応かっこ */
}































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

    body {
        word-spacing: .3px;
    }
    

    /*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background:rgb(138, 128, 115);
	text-align:center;
	color:#fff;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}

    /*---------------------- 幾何学模様-------------------------------------------- */
    
    html,body{
        height: 100%;/*高さを100%にして描画エリアをとる*/
    }
    
    #particles-js{ 
        position:fixed;/*描画固定*/
        width: 100%;
        height: 100%;
        z-index:-1;/*描画を一番下に*/
        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 ===============*/
    
    
    /*==================================================
    　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 ===============*/
       
     
    
    /* ------------------------------------------------ */
    /*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
    display: none;
	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 */


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

    
    .container1 {
        width: 100%;
        margin: 0 auto;
        font-family: "Shippori Mincho", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .header1 {
        width: 100%;
        margin: 0 auto;
        /* 親要素にrelativeをいれる。 */
        position: relative;
    }
    
    .navi {
        width: 100%;
        margin: 0 auto;
    }
    
    .navi1{
        width: 20%;
        margin: 0 auto;
        padding-top: 20px;
    }
    
    .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 h1 {
        color: rgb(0, 0, 0);
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0
    }
    
    .header1 video {
        width: 100%;
        margin: 0 auto;
        height: 300px;
        object-fit: cover;
    
    }
    
    .main {
        width: 80%;
        margin: 0 auto;
        height: 350px;
        padding-top: 5%;
    }
    
    .main1 {
        width: 80%;
        margin: 0 auto;
    }
    
    .main1 h2 {
        text-align: center;
    }
    
    .main1 ul {
        padding-top: 30px;
        padding-left: 10px;
        text-align: center;
    }
    
    .button {
        width: 90%;
        text-align: end;
        padding-top: 10%;
    }
    
    .button a {
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 15px 22px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    
    .title1 {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        padding-top: 3%;
    }
    
    .service {
        width: 80%;
        display: flex;
        margin: 0 auto;
        justify-content: space-evenly;
        padding-top: 3%;
    }
    
    
    
    
    /* 画像の上に文字をおく */
    .service1 {
        width: 20%;
        /* 親要素はrelativeにする */
        position: relative;
    }
    
    .service1 img {
        width: 100%;
    }
    
    .service1 p {
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0
    }
    
    /* ここまで */
    
    .service2 {
        width: 20%;
        /* 親要素はrelativeにする */
        position: relative;
    }
    
    .service2 img {
        width: 100%;
    }
    
    .service2 p {
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0
    }
    
    
    .service3 {
        width: 20%;
        /* 親要素はrelativeにする */
        position: relative;
    }
    
    .service3 img {
        width: 100%;
    }
    
    .service3 p {
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0
    }
    
    .ahtml {
        width: 95%;
        text-align: end;
        padding-top: 5%;
        padding-bottom: 10%;
    }
    
    .ahtml a {
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 15px 22px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    
    
    .title2 {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 3%;
    }
    
    
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 90%;
        margin: 0 auto;
        padding-top: 3%;
    }
    
    .slider img {
        width: 20vw;
        /*スライダー内の画像を60vwにしてレスポンシブ化*/
        height: auto;
        /* 画像に枠線をつける↓ */
    border: solid 1px 
    }
    
    .slider .slick-slide {
        transform: scale(0.8);
        /*左右の画像のサイズを80%に*/
        transition: all .5s;
        /*拡大や透過のアニメーションを0.5秒で行う*/
        opacity: 0.5;
        /*透過50%*/
    }
    
    .slider .slick-slide.slick-center {
        transform: scale(1);
        /*中央の画像のサイズだけ等倍に*/
        opacity: 1;
        /*透過なし*/
    }
    
    
    /*矢印の設定*/
    
    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #666;
        /*矢印の色*/
        border-right: 2px solid #666;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }
    
    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }
    
    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }
    
    /*ドットナビゲーションの設定*/
    
    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }
    
    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }
    
    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }
    
    .slick-dots .slick-active button {
        background: #333;
        /*ドットボタンの現在地表示の色*/
    }
    
    




    .phtml {
        width: 95%;
        text-align: end;
        padding-bottom: 10%;
    }
    
    /* ボタンの作り方 */
    .phtml a {
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 15px 22px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    .title3 {
        width: 100%;
        height: 350px;
        background-color: #cdc8bcbe;
        margin: 0 auto;
        padding-top: 30px;
        color: rgb(0, 0, 0);
    }
    
    .title3 h2 {
        text-align: center;
        color: rgb(0, 0, 0);
        padding-top: 3%;
    }
    
    .title3 p {
        text-align: center;
        padding: 5%;
    }
    
    .contacta {
        width: 100%;
        text-align: center;
        font-size: 12px;
        padding: 15px 22px;
        border-radius: 6px;
        transition: .3s;
    }
    
    .contacta a {
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 18px 30px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    .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);
    }
    
    

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

    
        /* タブレット用かっこ */
}























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

    
    body {
        word-spacing: .3px;
    }
    
    /*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background:rgb(138, 128, 115);
	text-align:center;
	color:#fff;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}

    
    /*---------------------- 幾何学模様-------------------------------------------- */
    
    html,body{
        height: 100%;/*高さを100%にして描画エリアをとる*/
    }
    
    #particles-js{ 
        position:fixed;/*描画固定*/
        width: 100%;
        height: 100%;
        z-index:-1;/*描画を一番下に*/
        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 ===============*/
 
    
    /*==================================================
    　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;
      }
    
    /* ------------------------------------------------ */
    
    /*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
    display: none;
	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 */


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

    .container1 {
        width: 100%;
        margin: 0 auto;
        font-family: "Shippori Mincho", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .header1 {
        width: 100%;
        /* 親要素にrelativeをいれる。 */
        position: relative;
    }
    
    .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;
        display: flex;
        padding-top: 3%;
    }
    
    .navi2 ul{
        display: none;
        width: 100%;
        margin: 0 auto;
        justify-content: space-evenly;
        list-style: none;
        color: rgb(0, 0, 0);
    }
    
    .header1 h1 {
        color: rgb(0, 0, 0);
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        font-size: 16px;
        margin-top: 50px;
    }
    
    .header1 video {
        width: 100%;
        height: 150px;
        object-fit: cover;
        margin-top: 50px;
    }
    
    .main {
        width: 80%;
        margin: 0 auto;
        height: 250px;
        padding-top: 5%;
    }
    
    .main1 {
        width: 80%;
        margin: 0 auto;
    }
    
    .main1 h2 {
        text-align: center;
        font-size: 15px;
    }
    
    .main1 ul {
        padding-top: 30px;
        padding-left: 10px;
        text-align: center;
        font-size: 12px;
    }
    
    .button {
        width: 90%;
        text-align: end;
        padding-top: 10%;
    }
    
    .button a {
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 10px 20px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    
    .title1 {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    
    .title1 h2{
        font-size: 15px;
    }
    
    .service {
        width: 80%;
        display: flex;
        margin: 0 auto;
        justify-content: space-evenly;
        padding-top: 3%;
    }
    
    
    .fadeUpTrigger{
        opacity: 0;
        }
    
    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration:2s;
        animation-fill-mode:forwards;
        opacity: 0;
    }
    @keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    
    /* 画像の上に文字をおく */
    .service1 {
        width: 20%;
        /* 親要素はrelativeにする */
        position: relative;
    }
    
    .service1 img {
        width: 100%;
    }
    
    .service1 p {
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        font-size: 11px;
    }
    
    /* ここまで */
    
    .service2 {
        width: 20%;
        /* 親要素はrelativeにする */
        position: relative;
    }
    
    .service2 img {
        width: 100%;
    }
    
    .service2 p {
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        font-size: 11px;
    }
    
    
    .service3 {
        width: 20%;
        /* 親要素はrelativeにする */
        position: relative;
    }
    
    .service3 img {
        width: 100%;
    }
    
    .service3 p {
        /* 子要素はabsolute */
        position: absolute;
        /* 文字をど真ん中にする */
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        font-size: 11px;
    }
    
    .ahtml {
        width: 95%;
        text-align: end;
        padding-top: 5%;
        padding-bottom: 10%;
    }
    
    .ahtml a {
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 10px 20px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    
    
    .title2 {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 3%;
    }
    
    .title2 h2{
        font-size: 15px;
    }
    
    
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 90%;
        margin: 0 auto;
        padding-top: 3%;
    }
    
    .slider img {
        width: 20vw;
        /*スライダー内の画像を60vwにしてレスポンシブ化*/
        height: auto;
        /* 画像に枠線をつける↓ */
    border: solid 1px 
    }
    
    .slider .slick-slide {
        transform: scale(0.8);
        /*左右の画像のサイズを80%に*/
        transition: all .5s;
        /*拡大や透過のアニメーションを0.5秒で行う*/
        opacity: 0.5;
        /*透過50%*/
    }
    
    .slider .slick-slide.slick-center {
        transform: scale(1);
        /*中央の画像のサイズだけ等倍に*/
        opacity: 1;
        /*透過なし*/
    }
    
    
    /*矢印の設定*/
    
    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #666;
        /*矢印の色*/
        border-right: 2px solid #666;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }
    
    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }
    
    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }
    
    /*ドットナビゲーションの設定*/
    
    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }
    
    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }
    
    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }
    
    .slick-dots .slick-active button {
        background: #333;
        /*ドットボタンの現在地表示の色*/
    }
    
    
    /*========= レイアウトのためのCSS ===============*/
    
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .phtml {
        width: 95%;
        text-align: end;
        padding-bottom: 10%;
    }
    
    /* ボタンの作り方 */
    .phtml a {
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 10px 20px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    .title3 {
        width: 100%;
        height: 250px;
        background-color: #cdc8bcbe;
        margin: 0 auto;
        color: rgb(0, 0, 0);
    }
    
    .title3 h2 {
        text-align: center;
        color: rgb(0, 0, 0);
        padding-top: 20px;
        font-size: 15px;
    }
    
    .title3 p {
        text-align: center;
        padding: 5%;
        font-size: 13px;
    }
    
    .contacta {
        width: 100%;
        text-align: center;
    }
    
    .contacta a {
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        background: rgb(138, 128, 115);
        padding: 10px 20px;
        border-radius: 6px;
        transition: .3s;
    }
    
    a:hover {
        background: #ffb8cf;
    }
    
    .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);
    }
    
    
 
.footer {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    padding-top: 25px;
    height: 80px;
    text-align: center;
    background-color:rgb(138, 128, 115);
    color: rgb(255, 255, 255);
}

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