@charset "UTF-8";
/* CSS Document */
.header {
  height: 1085px;
  background-color: #FFF;
  margin : auto;
  position: relative; /* ↓★親要素の左を基準に子要素のポジションが決まりますよという内容↓ */
  background-image: url("../img/about.jpg")
}
.header h1 top{
  position: absolute; /* ↓★サイト全体の基準にした場合の位置↓ */
}
.header h1 img{
 margin-top: 88px;
margin-bottom: 32px;
  width:20%;
}
.header__navigation {
  display: none;
}
/* SPハンバーガーボタン追記*画面が小さい時だけ、このスタイルを追加する*/
@media (max-width:480px) {
  .header {
  background-repeat: no-repeat;
  background-image: url("../img/about_SP.jpg");
  height: 675px; 
}
  .header h1 img{
  position: center; /* ↓★サイト全体の基準にした場合の位置↓ */
  width: 190px;
  margin-top: 55px;
}
  .menu-btn {
    position: fixed;
    top: 32px;
    right: 20px;
    display: flex;
    height: 108px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #c5c5c5;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
  #menu-btn-check {
    display: none;
}
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #fff;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #e2e2e2;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    color:#000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    text-align: left;
    margin-left: 35px;
    margin-top: 14px;
    margin-bottom: 14px;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #f8f4f8;
    transition: all 0.5s;/*アニメーション設定*/
}
  #menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
}
/* PC版ヘッダー */
@media (min-width:480px) /* この画面より大きくなったら、この記載をしてねの意味 */ {
  .header {
    max-width: 1400px; /* 最大の画面幅 */
    margin: 0 auto; /* 上下は０で、左右はオートにすることで、中央に揃えてサイズが大きくなる*/
    min-height: 50px; /* 一番小さい高さ５０ピクセル*/
    box-sizing: border-box; /* 余白の計り方が変わります。オフジェこみのサイズにするという意味 */
  }
  .header__navigation {
    display: block; /* ブロックで表示する意味 */
    text-align: center;
  }
  .header__navigation ul li {
    display: inline-block; /* 1行に連なっているブロック */
    margin-top:16px;
    padding-right: 42px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    color: #FFF;
  }
  .hamburger-menu input {
     display: none; 
  }
   .hamburger-menu .menu-content{
     display: none; 
  }
}


/* メインPCエリア */
@media (min-width:480px){
 .main {
   background-color: #fff;
 }
.about{
  width:880px;
  margin:45px auto;
  text-align: center;
 }

.about h2{
  font-size: 3.2em;
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
  color: #867a3a;
  margin-bottom:40px;
  text-align: center;
 }
  
  .about h3{
  font-size: 2.0em;
  font-weight: 200;
  font-style: normal;
  color: #867a3a;
  margin-bottom:20px;
 }
   .about p{
  width:880px;
  margin:45px auto;
  text-align: left;
 }


 
.footer{
    width:100%;
    height:80px;
    background-color: #fff;
    margin-top:25px;
    float:left;;
  }
 
}


/* メインSPエリア */
@media (max-width:480px) {
.main {
  background-color: #fff;
}
.about {
  width:96%;
  margin:45px auto;
  text-align: center;
 }
.about h2{
  font-size: 3.2em;
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
  color: #867a3a;
  margin-bottom:40px;
  text-align: center;
 }
 .about h3{
  font-size: 2.0em;
  font-weight: 200;
  font-style: normal;
  color: #867a3a;
    margin-top:20px;
 }
.about p{
   width:90%;
  margin:25px auto;
  text-align: left;
 }

.footer{
    font-size: 1.4rem;
    width: 100%;
    height:60px;
    background-color: #fff;
    float:both;
  }
}

