@charset "utf-8";

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

　　基本設定

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

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

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

body {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size:1.8rem;
  color: #2E2D2D;
  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 {
  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: 110px;
  line-height: 1;
}

.header__inner {
  padding: 0 30px;
  width: 100%;
}

.header__logo {
  width: 284px;
  margin: 0 auto;
}


.header__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header__menu {
  width: 68px;
}

@media screen and (max-width: 820px){
  .header {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40px;
    line-height: 1;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 4%;
    background: #FBFCEA;
  }

  .header__logo {
    width: 18%;
    max-width: 74px;
    margin: 0;
    padding: 15px 0 0;
  }

  .header__menu {
    position: relative;
    width: 60px;
    height: 60px;
  }
}

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


}


/*  ドロワーメニュー
---------------------------------------------*/
#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: #FBFCEA;
  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:  #707070;
    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: #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: #FBFCEA;
    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__logo {
  width: 500px;
  margin: 40px auto;
}

.gNav__logo a {
  display: block;
}

.gNav__list {
  margin-top: 30px;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
}

.gNav__list .menu__item {
  position: relative;
  margin-bottom: 20px;
  padding: 0 10px 20px;
  transition: all 0.6s ease;
  cursor: pointer;
}

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


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


@media screen and (max-width: 820px){
  .gNav {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 4% 40px;
    -webkit-overflow-scrolling: touch;
  }

  .gNav__logo {
    width: 80%;
    margin: 0 auto 20px;
  }

  .gNav__logo a {
    display: block;
  }

  .gNav__title {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 20px;
    font-weight: 700;
    font-size: 1.8rem;
  }

  .gNav__title::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    content: "";
    width: 2px;
    height: 20px;
    margin: 0 auto;
    background: #ccc;
  }

  .gNav__contact {
    width: 100%;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
  }

  .gNav__tel {
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
  }

  .gNav__tel a {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: #0159AA;
    color: #fff;
  }

  .gNav__tel__text{
    padding: 5px 0 0;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: left;
  }

  .gNav__tel__number {
    margin: 0 0 0 5px;
  }

  .gNav__tel__number {
    display: block;
    margin: 0 0 0 20px;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .gNav__tel__number span {
    display: block;
    font-weight: 400;
    font-size: 1.4rem;
  }

  .gNav__list {
    margin-top: 30px;
    font-size: 1.8rem;
    text-align: left;
  }

  .gNav__list .menu__item {
    position: relative;
    margin-bottom: 20px;
    padding: 0 10px 20px;
    border-bottom: 1px solid #ccc;
    transition: all 0.6s ease;
    cursor: pointer;
  }

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

  .gNav__list {
    width: 100%;
  }

  .gNav__listLeft {
    width: 100%;
  }

  .gNav__listRight {
    width: 100%;
  }

  .gNav__list .menu__list li {
    margin-bottom: 20px;
    padding: 0 10px 20px 20px;
    border-bottom: 1px solid #ccc;
    transition: all 0.6s ease;
  }

  .gNav__list .menu__list li a {
    display: block;
    width: 100%;
  }

  .gNav__list .menu__list li:hover {
    text-indent: 0.3em;
    border-bottom: 1px solid #282828;
  }

}


/*  フッター レイアウト
---------------------------------------------*/
.footer {
  position: relative;
  z-index: 100;
  padding: 160px 0;
  background: #FBFCEA;
  color: #1D391A;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 120px;
}

.footer__img {
  width: 453px;
}

.footer__block {
  width: 592px;
  text-align: left;
}

.footer__title {
  margin: 0 0 30px;
  font-size: 2.8rem;
  line-height: 1.5;
}

.footer__block p {
  line-height: 1.8;
}

.footer__copyright {
  color: #313131;
  font-size: 1.2rem;
}


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

  .footer__inner {
    display: flex;
    flex-direction: column-reverse;
    max-width: 890px;
    margin: 0 auto 60px;
  }

  .footer__img {
    width: 60%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__block {
    width: 100%;
    margin: 0 auto 20px;
    padding: 0 4%;
    text-align: left;
  }

  .footer__title {
    margin: 0 0 30px;
    font-size: 2.8rem;
    text-align: center;
  }

  .footer__block p {
    line-height: 1.8;
  }

  .footer__copyright {
    color: #313131;
    font-size: 1.2rem;
  }

}

