@charset "UTF-8";

/**************************************************
* 共通
***************************************************/
.l-wrapper {
  padding-top: 60px;
  padding-bottom: 20px;
}
.l-block {
  padding: 3em 0;
}
.l-block--padding-bottom-m {
  padding-bottom: 2em !important;
}

.l-wrap-inner {
  width: 100%;
  margin: auto;
}

.l-wrap-s, .l-wrap-m {
  width: 94%;
  margin: auto;
}
.l-wrap-l {
  width: 90%;
  margin: auto;
}
.l-wrap-s {
  max-width: 930px;
}

.l-wrap-m {
  max-width: 1100px;
}

.l-wrap-l {
  max-width: 1400px;
}


/* 背景色 */
.l-bg--campaign {
  background-color: #F0F2F5;
  background-image: url(../images/p-campaign-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom; 
}


/* 施術者紹介 */
.l-bg--therapist {
  background: #F9F8ED;
  background: -moz-linear-gradient( #FFF 0%, #F9F8ED 35%, #EAE7B7 55%, #ECDFCA 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(35%, #F9F8ED), color-stop(55%, #EAE7B7), to(#ECDFCA));
  background: -webkit-linear-gradient( #FFF 0%, #F9F8ED 35%, #EAE7B7 55%, #ECDFCA 100%);
  background: -o-linear-gradient( #FFF 0%, #F9F8ED 35%, #EAE7B7 55%, #ECDFCA 100%);
  background: -ms-linear-gradient( #FFF 0%, #F9F8ED 35%, #EAE7B7 55%, #ECDFCA 100%);
  background: linear-gradient( #FFF 0%, #F9F8ED 35%, #EAE7B7 55%, #ECDFCA 100%);
}


.l-bg--light-beige {
  background: #F4F1EB;
}
.l-bg--light-beige2 {
  background: #F5F5EE;
}

/* 頭皮のお悩み背景画像 */
.l-bg--worries {
  position: relative;
  background-color: #FFF;
  background-image: url(../images/p-worries-bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 10em !important;
  padding-bottom: 6em;
}


/**************************************************
* ヘッダー ※変更不可
***************************************************/
/* ヘッダー */
.l-header {
  position: fixed;
  width: 100%;
  height: 60px;
  background: #F1F2ED;
  z-index: 100000;
  padding: 5px 0;
}
.l-header__txt {
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
}
.l-header__logo {
  max-width: 205px;
  margin: auto;
  line-height: 1;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 5px;
  top: 11px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #393636;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.active ul#menu {
  display: block;
}

/*　メニュー　*/
.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #F1F2ED;
  text-align: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 60px);
}
/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}


  /* チェックボックスを非表示 */
  #navi input {
    display: none;
  }
  /* ハンバーガーメニュー */
  .l-header__nav-menu {
    margin-top: 60px;
    padding: 0 20px;
  }
  /* 項目 */
  .l-header__nav-menu-item {
    position: relative;
    white-space: nowrap;
    height: auto;
    width: 100%;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    border-bottom: 1px solid #707070;
  }
  .l-header__nav-menu-item a {
    display: block;
    color: #393636;
    font-weight: bold;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .l-header__nav-menu-item a:hover {
    opacity: 0.7;
  }


/**************************************************
* フッター
***************************************************/
.l-footer {
  background: #FFEC9E;
  background: -moz-linear-gradient( #FFEC9E 0%,#F1B082 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#EB6309), to(#F1B082));
  background: -webkit-linear-gradient( #FFEC9E 0%, #F1B082 100%);
  background: -o-linear-gradient( #FFEC9E 0%,#F1B082 100%);
  background: -ms-linear-gradient( #FFEC9E 0%, #F1B082 100%);
  background: linear-gradient(90deg, #ffec9e 0%, #F1B082 100%);

  height: 160px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.l-footer-logo {
  max-width: 200px;
}
.l-footer-logo__item {
  margin-bottom: 30px;
}
.l-footer-logo__item:last-child {
  margin-bottom: 0;
}

.l-footer__pagetop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #616161;
  opacity: 1;
  border-radius: 50%;
}
.l-footer__pagetop a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
.l-footer__pagetop a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  font-size: 3.0rem;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -7px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


#pagetop.pc {
  display: none !important;
}

@media screen and (max-width: 320px) {

}


/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .l-bg--worries {
    padding-bottom: 8em;
  }

  .l-header-nav.sp {
    display: block;
  }

  .l-footer-logo {
    max-width: 250px;
  }

  .l-footer__pagetop {
    width: 60px;
    height: 60px;
  }
  .l-footer__pagetop a {
    width: 60px;
    height: 60px;
  }
  .l-footer__pagetop a::before {
    top: 5px
  }

  .l-bg--worries {
    background-image: url(../images/p-worries-bg-tb.png);
  }

}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1025px) {
  .l-wrapper {
    padding-top: 80px;
  }
  .l-block {
    padding: 4em 0;
  }

  .l-bg--worries {
    background-image: url(../images/p-worries-bg-pc.png);
    padding-bottom: 8em;
  }

  .l-header {
    display: flex;
    align-items: center;
    height: 80px;
  }
  .l-header-nav.sp {
    display: none;
  }
  .l-header__inner,
  .l-header-nav-inner,
  .l-header__nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-header__inner {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .l-header-nav-inner nav {
    display: flex;
    align-items: center;
  }
  .l-header__nav-menu {

    margin-top: 0;
    padding: 0;
  }
  .l-header__nav-menu-item {
    border-bottom: none;
    padding: 0;
    margin-right: 15px;
  }
  .l-header__nav-menu-item a {
    color: #7F6161;
    transition: all .3s;
  }

  .l-header__nav-menu-item a:hover {
    opacity: 0.8;
    transition: all .3s;
  }
  
  .l-header__line {
    width: 200px;
  }
  @media screen and (min-width: 1025px ) and ( max-width: 1400px) {

    .l-header__inner {
      padding: 0 10px;
    }

    .l-header__nav-menu-item {
      margin-right: 10px;
    }
    .l-header__nav-menu-item a {
      font-size: 15px;
    }
    .l-header__line {
      width: 150px;
    }
  }
  @media screen and (min-width: 1025px ) and ( max-width: 1150px) {
    .l-header__title {
      max-width: 140px;
    }
    .l-header__nav-menu-item a {
      font-size: 14px;
    }
  }

  .l-footer {
    height: 250px;
  }

  
}
/*=================== PCここまで ==================*/