@charset "utf-8";

@media only screen and (max-width:768px) {


  /*■■■■■■■■■■■ヘッダー■■■■■■■■■■■*/
  header {
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: white;
  }

  header .titleBox {
    display: block;
    width: 100%;
    padding: 0px 10px 5px;
    margin: 0px 10px 0px;
  }

  header .titleBox .group_logo {
    display: block;
    height: auto;
    width: 80%;
    /* background-color: red; */
  }

  main {
    margin: 80px 0px;
  }


  /*■■■■■■■■■■■ナビゲーションのためのCSS■■■■■■■■■■■*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #b9eaff;
    /*動き*/
    transition: all 0.6s;
  }

  #g-nav.panelactive {
    top: 0;
  }



  /*ナビゲーション*/
  #g-nav ul {
    display: block;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    width: 100%;
    height: 65px;
    margin: 0px 0px 2px;
  }

  #g-nav li a {
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
  }

  #g-nav li a div {
    display: block;
    height: 90%;
    width: 50%;
    margin: 0px auto;
    padding: 0px;
  }

  #g-nav li a div img {
    display: inline-block;
    height: 100%;
    width: auto;
    margin: 0px;
    padding: 0px;
  }

  #g-nav li a div span {
    display: inline-block;
    padding: 11px 0px 0px 10px;
    font-size: 25px;
    height: 100%;
    width: auto;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
    color: #2896c6;
  }





  /*■■■■■■■■■■■ボタンのための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: #666;
    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%;
  }

  /* ■■■■■■■■■■footer■■■■■■■■■■ */

  .footer-cover1 div {
    width: 100vw;
    padding: 0;
  }

  .footer-cover1 p {
    width: 96vw;
    font-size: 30px;
    margin: 0 auto;
    padding: 10px 10px 0 0;
    line-height: 36px;
  }

  .request {
    margin: 0 10px 0 0;
  }


}