﻿@charset"utf-8";
body{background-color:#FDF5E6;}/* CSSコード */
/* CSSコード */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background:#FDF5E6;
}

.logo {
  font-size: 24px;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
a{color:#111;}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
   }

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 4px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 10px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 10px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 130px;
  height: 150px;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background:#FDF5E6 ;
 opacity:1.0;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}
.nav_item{margin-top:30%;}
.nav_item1,.nav_item{margin-bottom:20%;}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
h2{font-family: 'Ma Shan Zheng', cursive;
font-weight:200;font-size:5vw;margin-left:20%;margin-top:5%;}
h1{font-family: 'Ma Shan Zheng', cursive;
font-weight:200;font-size:8vw;margin-left:40%;}
.has{width:70%;margin-left:15%;margin-top:5%;border-radius:8px;}
p{text-align:right;margin-top:20%;}
.tukedasi{display:none;}
.aisatu{text-align:center;font-family:serif;font-size:3.5vw;margin-top:5%;font-weight:bold;}
.insta{display:block;margin:auto;width:8%;}

@media screen and (min-width:700px){
    h1{font-size:6vw;margin-left:45%;margin-bottom:2%;}
    h2{font-size:4.5vw;margin-left:25%;margin-top:10%;}
   .nav{display:none;}
.has{width:50%;margin-left:25%;}
.tukedasi{display:contents;font-family:serif;font-size:2.5vw;}
.tuke_list{list-style:none;text-align:center;}
.tuke_list li{display:inline-block;}
.tuke_item{margin-right:10%;margin-left:-5%;}
.tuke_item1{margin-right:10%;}
.aisatu{text-align:center;font-family:serif;font-size:2.5vw;font-weight:bold;}
.insta{display:block;margin:auto;width:4%;}
