@charset "utf-8";

/*  =============================================================

　　基本設定

============================================================= */

/*  全体　基本設定
---------------------------------------------*/

html,
body {
  width: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  background: #3ACBCB;
  font-style: normal;
  font-weight: 400;
  font-size:1.8rem;
  color: #454545;
  line-height:1;
  letter-spacing: normal;
  font-feature-settings:normal;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: 0;
}

figure {
  line-height: 0;
}

@media screen and (max-width: 640px){
  body {
    font-size: 1.4rem;
  }
}

@media(min-width: 820px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/*  ボックス 基本設定
-------------------------- */
.displayPC {
  display: block;
}

.displaySP {
  display: none;
}

.disnon-pc {
  display: none;
}

.disnon-sp {
  display: block;
}

@media screen and (max-width: 820px){
  .displayPC {
    display: none;
  }

  .displaySP {
    display: block;
  }

  .disnon-pc {
    display: block;
  }

  .disnon-sp {
    display: none;
  }
}



/*  テキスト 共通設定
-------------------------- */
em {
  font-weight: bold;
}


/*  リンク 基本設定
-------------------------- */

a {
  display: inline-block;
  outline: none;
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: #333;
}


/* 　コンテナー　設定
---------------------------------------------*/
#container {
  margin: 0 auto;
}

.content {
  padding: 96px 0 0;
  text-align: left;
}

.mainInner {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 820px){
  .content {
    padding-top: 60px;
    text-align: left;
  }

}

@media screen and (max-width: 640px){
  .content {
    padding-top: 60px;
    text-align: left;
  }

}

/*  ヘッダー レイアウト
---------------------------------------------*/
.header {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 94px;
  box-sizing: border-box;
  border-radius: 0px 0px 10px 10px;
  background: #fcfcfc;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.header__logo {
  padding: 20px 0 0 30px;
  line-height: 1;
}

.header__logo a {
  margin: 0 auto;
  color: #69BFC3;
  text-align: left;
  span {
    color: #454545;
    font-size: 1.2rem;
  }
}

.header__logo a:hover {
  opacity: 0.8;
}

.header__logo span {
  display: block;
  margin: 0 0 5px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}

.header__logo h1 {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
}

.header__tel {
  width: 243px;
}

.header__tel a {
  display: block;
  padding: 20px 0 0;
  line-height: 1;
}

.header__tel .number {
  display: block;
  margin: 0 0 10px;
  color: #69bfc3;
  font-weight: 600;
  font-size: 3rem;
}

.header__tel .text {
  display: block;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.header__nav {
  padding: 30px 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
  ul {
    display: flex;
    li {
      padding-right: 15px;
    }
    a {
      position: relative;
      padding-left: 20px;
      color: #69bfc3;
      &:hover {
        text-decoration: underline;
      }
      &::before {
        position: absolute;
        top: 3px;
        left: 0;
        content: "▶︎";
        font-size: 1.2rem;
      }
    }
  }
}

.header .spMenu {
  display: none;
}

@media screen and (max-width: 820px){
  .header {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #fff;
    line-height: 0;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
  }

  .header__logo {
    width: 35%;
    padding: 15px 0 0;
    line-height: 1;
  }

  .header__logo a {
    margin: 0 auto;
  }

  .header__logo a:hover {
    opacity: 0.8;
  }

  .header__logo span {
    display: block;
    margin: 0 0 5px;
    font-size: 1rem;
    letter-spacing: normal;
  }

  .header__logo h1 {
    font-size: 2.2rem;
  }
  .header__nav {
    display: none;
  }

  .header__tel {
    display: none;
  }
  .header .spMenu {
    display: block;
  }
}

@media screen and (max-width: 640px){
  .header__logo {
    width: 60%;
    padding: 15px 0 0;
    line-height: 1;
  }

}


/*  ドロワーメニュー
---------------------------------------------*/
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 84px;
  height: 100px;
}
#drawer-icon span {
  background:  #707070;
  display: block;
  height: 3px;
  left: 15%;
  margin: -5% 0 0 5px;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 60%;
}

#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #707070;
  border-radius: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0%;
  margin: -5% 0 0 0;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}

#drawer-icon span::after {
  margin-top: 25%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: #707070;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 0%;
  margin: 0% 0 0 0%;
  position: absolute;
  top: 0%;
  width: 100%;
  margin-top: 0;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

#drawer-content {
  visibility: hidden;
  overflow: auto;
  position: fixed;
  top: 0;
  left:0;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  transition: all .8s ease-in-out 0s;
  transform: translateX(0%);
  opacity: 0;
}
#drawer-checkbox:checked ~ #drawer-content {
  visibility: visible;
  z-index: 998;
  transition: all .8s ease-in-out 0s;
  transform: translateX(0);
  opacity: 1;
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}

#drawer-icon i {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  color: #0159AA;
  font-style: normal;
  font-size: 1.6rem;
}

@media screen and (max-width: 820px) {
  #drawer-checkbox {
    display: none;
  }
  #drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
  #drawer-icon span {
    background:  #69BFC3;
    display: block;
    height: 2px;
    left: 15%;
    margin: -5% 0 0 5px;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease-in-out;
    width: 60%;
  }

  #drawer-icon span::after {
    -webkit-transform: rotate(0);
    background: #69BFC3;
    border-radius: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0%;
    margin: -5% 0 0 0;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
  }

  #drawer-icon span::after {
    margin-top: 25%;
  }
  #drawer-checkbox:checked ~ #drawer-icon span {
    background: #fff;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }

  #drawer-checkbox:checked ~ #drawer-icon span::after {
    content: "";
    display: block;
    height: 100%;
    left: 0%;
    margin: 0% 0 0 0%;
    position: absolute;
    top: 0%;
    width: 100%;
    margin-top: 0;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    background: #fff;
  }

  #drawer-content {
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    left:0;
    z-index: -1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #00CBCB;
    transition: all .8s ease-in-out 0s;
    transform: translateX(0%);
    opacity: 0;
  }
  #drawer-checkbox:checked ~ #drawer-content {
    visibility: visible;
    z-index: 998;
    transition: all .8s ease-in-out 0s;
    transform: translateX(0);
    opacity: 1;
  }

  #drawer-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
  }
  #drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 0.3;
  }

  #drawer-icon i {
    display: none;
  }

}


/*  メニュー
---------------------------------------------*/
.gNav {
  max-width: 480px;
  margin: 0 auto;
  padding: 80px 0 40px;
  -webkit-overflow-scrolling: touch;
}

.gNav__head {
  line-height: 1.8;
  .logo {
      font-size: 1.6rem;
      a {
        color: #fff;
      }
      span {
        display: block;
        font-family: "RocknRoll One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 4rem;
      }
  }
}

.gNav__list {
  margin-top: 30px;
  padding: 0 8%;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: left;
}

.gNav__list .menu__item {
  position: relative;
  margin-bottom: 30px;
  padding: 0 10px 30px;
  border-bottom: 1px dotted #EAE21B;
}

.gNav__list .menu__item a {
  display: block;
  width: 100%;
  color: #fff;
}


.gNav__list .menu__item a:hover {
  text-decoration: underline;
}





/*  フッター レイアウト
---------------------------------------------*/
.footer {
  position: relative;
  z-index: 100;
  padding: 80px 0;
}

.footer__copyright {
  font-size: 1.6rem;
  color: #fff;
}


@media screen and (max-width: 820px){
  .footer {
    position: relative;
    z-index: 100;
    padding: 60px 0;
    color: #fff;
  }

  .footer__copyright {
    font-size: 1.4rem;
  }

}

