@charset "utf-8";

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

.header{
    width: 100%;
    margin: 0 auto;
    display: flex;
    background-color: rgb(148, 190, 226);
}

.header1{
    width: 20%;
    margin: 0 auto;
}

.header1 img{
    width: 100%;
    padding-left: 3%;
    padding-top: 5%;
}

.header2{
    width: 80%;
    padding-left: 75%;
    padding-top: 1%;
    padding-bottom: 1%;
}


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

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

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 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: #faf9f9;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top:10px;
right: 10px;
cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #faf9f9;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
top:15px;	
}

.openbtn1 span:nth-of-type(2) {
top:23px;
}

.openbtn1 span:nth-of-type(3) {
top:31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/* ハンバーガーメニュー */
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    background:#f4f4f4;
    cursor: pointer;
      width: 50px;
      height:50px;
    border-radius: 5px;
  }
  
  /*ボタン内側*/
  .openbtn1 span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
    background: rgb(148, 190, 226);
      width: 45%;
    }
  
  .openbtn1 span:nth-of-type(1) {
    top:15px; 
  }
  
  .openbtn1 span:nth-of-type(2) {
    top:23px;
  }
  
  .openbtn1 span:nth-of-type(3) {
    top:31px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn1.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn1.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
  /*========= レイアウトのためのCSS ===============*/
  a:hover{
   background-color:#5a5959 ; 
  }

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



  .thumbnail{
    width: 100%;
    margin: 0 auto;
  }
  /* thumbnail */
  /*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 95%;
    margin: 0 auto;
	height: auto;
    padding-top: 3%;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/

.gallery{
	margin:0 0 5px 0;
}

.gallery li{
list-style:none;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.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:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn{
    width: 95%;
    margin: 0 auto;
}

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
	width:25%!important;
list-style:none;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
	transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
}


.main{
  width: 90%;
  margin: 0 auto;
  display: flex;
  padding-top: 10%;
}

.sample{
  width: 50%;
  margin: 0 auto;
  padding-left: 10%;
}

.sample p{
  padding-top: 2%;
  font-size: 20px;
}

.table{
  width: 50%;
  margin: 0 auto;
}

.table tr, table td{ 
  font-size: 26px;
}

.table1 h3{
  padding-top: 5%;
  font-size: 26px;
}

.price{
  width: 50%;
  margin: 0 auto;
  padding-top: 3%;
  padding-left: 10%;
  text-decoration:underline;
}

.price p{
  font-size: 26px;
}

/* ボタン */
.arrow-button {
  position: relative;
  background-color: #009805; /* 背景色 */
  color: #ffffff; /* 文字色 */
  padding: 15px 32px; /* パディング */
  text-align: center; /* 文字のアライメント */
  text-decoration: none; /* 文字装飾 */
  display: inline-block; /* ボタンの表示方法 */
  font-size: 16px; /* フォントサイズ */
  font-family: Arial, sans-serif; /* フォント */
  margin: 4px 2px; /* 外側の余白 */
  cursor: pointer; /* カーソル */
  border: 2px solid #009805; /* 枠線 */
  border-radius: 5px; /* ボタンの角丸 */
}

.arrow-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #139618 transparent transparent transparent;
 transform: rotate(-90deg);
}

.bt{
  width: 50%;
  margin: 0 auto;
  padding-top: 3%;
  padding-left: 5%;
}

.contents{
  width: 100%;
  margin: 0 auto;
  padding-top: 8%;
}

/*tabの形状*/
.tab{
  width: 80%;
  margin: 0 auto;
  list-style: none;
	display: flex;
	flex-wrap: wrap;
}


.tab li a{
	display: block;
  list-style: none;
	background:#ddd;
	margin:0 2px;
	padding:10px 20px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#fff;
}


/*エリアの表示非表示と形状*/
.area {
  width: 80%;
  margin: 0 auto;
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #ffffff;
	padding:50px 20px; 
}

.area ul{
  width: 100%;
  margin: 0 auto;
  list-style: none;
  display: grid;
  gap: 5%;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 5%;
  padding-left: 5%;
  padding-bottom: 5%;
}

.area img{
  width: 80%;
  margin: 0 auto;
 
}
.area p{
  width: 80%;
  text-align: center;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.footer{
  width: 100%;
  margin: 0 auto;
  display: flex;
  height: 200px;
  background-color: rgb(148, 190, 226);
}

.footer1{
  width: 50%;
  text-align: end;
}

.footer1 img{
  width: 25%;
  object-fit: cover;
  padding-top: 3%;
}

.footer2{
  width: 50%;
  padding-top: 2%;
  padding-left: 5%;
  color: #ffffff;
}

 .footer2 ul{
  padding-left: 7%;
 }