@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.7;
}
*, *:before, *:after {
  box-sizing: border-box;
}
header {
  z-index: 320;
  position: fixed;
  width: 100%;
  height: 60px;
  padding: 0;
  background: rgba(248,117,191, 1.0);
  max-width: 780px;
  margin: 0 auto;
  left: 50%;
  margin-left:-390px;
}
header ul li a {
  font-size: 2.2rem;
  font-weight: 500;
}
header ul li a span {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'serif';
}
 
  .header nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
  background: #333;
    width: 100%;
    height: 100%;
    padding-top: 40px;
/*    box-shadow: 10px 10px 25px rgba(250, 250, 250, 0.6);*/
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    display: block;
    text-align: center;
  }
header ul {
  list-style-type: none;
  display: block;
  justify-content: space-evenly;
  align-items: center;
  height: 80px;
}
header ul li {
  padding: 25px 40px 20px;
}
  .header nav ul li a {
    line-height: 24px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    padding: 0;
  } 
  .header nav ul li a:hover {
    color: #2f2250;
  } 
  
.snslink_allh {
  position: relative;
  display: block;
  margin-top: 390px;
}
.snslink_allh p {
  font-size: 2.0rem;
  font-weight: 500;
  color: #fff;
  margin: 0 auto 40px;
}
.snslinkh {
  width: 280px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
.snslinkh img {
  width: 60px;
  height: 60px;
}
  .header-content {
    display: flex;
  }
  .header-logo {
    display: block;
    width: 142px;
    height: 24px;
    margin: 15.5px 0 0 20px;
  }
header.scroll-nav {
  background: #ff8ab5;
  box-shadow: 0 1rem 1rem rgba(255, 255, 255, 0.2);
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn7{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  background-color: rgba(0, 0, 0, 0.20);
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 4px;
  z-index: 10000;
  margin: 5px 20px 0 auto;
}

/*ボタン内側*/

.openbtn7 .openbtn-area{
    transition: all 1.0s;
}

.openbtn7 span{
    display: inline-block;
    transition: all 1.6s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 4px;
    border-radius: 2px;
  background: #fff;
    width: 45%;
  }


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

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

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

  
.openbtn7.active .openbtn-area{
  transform: rotateY(-360deg);
}

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

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

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








/* ボタン共通設定 */
.btn03{
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  
    text-align: center;
    background: transparent;
/*  border-radius: 25px;*/
/*  border: solid 1px #333;*/
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.6s ease;
  margin: 60px auto 80px;
}

/*hoverをした後のボタンの形状*/
.btn03:hover{
  border-color:transparent; 
}

/*ボタンの中のテキスト*/
.btn03 span {
  position: relative;
  z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
  display: flex;
  align-items: center;
  justify-content: center;
    padding: 0;
  width: 300px;
  height: 60px;
  background: #f5989d;
  font-size: 2.2rem;
  font-weight: 600;
/*  border-radius: 25px;*/
  color: #fff;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}

/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
    content: "";
    /*絶対配置で影の位置を決める*/
    position: absolute;
  z-index: 1;
    top: 4px;
    left: 4px;
    /*影の形状*/
    width: 100%;
    height: 100%;
/*  border-radius: 25px;*/
    background-color: #777;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
  background-color: #f5989d;
  color: #fff;
  transform: translate(4px, 4px);
}


footer {
  background: #333;
  max-width: 780px;
  margin: 0 auto;
}
.footer {
  display: flex;
  flex-direction: column;
}
.footer_logo {
  margin: 40px auto 0;
}
.footer_logo img {
  width: 187px;
  margin-right: 113px;
  
}
.footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style-type: none;
  margin: 40px auto 0;
  text-align: left;
  width: 300px;
}
.footer ul  li {
  margin-bottom: 24px;
}
.footer ul  li a {
  text-decoration: none;
  color: #fff;
  font-size: 2.0rem;
}
.snslink_allf {
  position: relative;
  display: block;
  margin-top: 36px;
}
.snslink_allf p {
  font-size: 2.0rem;
  font-weight: 500;
  color: #fff;
  margin: 0 auto 40px;
}
.snslinkf {
  width: 280px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
.snslinkf img {
  width: 60px;
  height: 60px;
}
small {
  font-size: 2.0rem;
  font-weight: 200;
  color: #fff;
  margin: 60px auto 20px;
}


@media(max-width: 780px){
  header {
  left: 0%;
  margin-left: auto;
  }
}