@charset "utf-8";
/* CSS Document */
.header {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background-color: #EFEBD9;
}
.header-logo {
  width: 200px;
  position: absolute;
  top: 20px;
  left: 20px;
}
.header-nav-list__pc {
  display: flex;
  justify-content: space-between;
  width: 458px;
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 340px;
}
.dot {
  font-weight: 500;
  display: block;
  position: relative;
  z-index: 1;
}
.dot:after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E05504;
  position: absolute;
  z-index: 1;
  bottom: -16px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition-duration: .3s;
  transition-property: opacity;
}
.dot:hover {
  color: #E05504;
}
.dot:hover:after {
  opacity: 1;
  transform: rotateY(360deg);
}
.header-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.header__insta-btn {
  position: relative;
  margin-left: 50px;
  margin-right: 50px;
  top: 33px;
}
.header__insta-btn img {
  width: 36px;
  height: 36px;
}
div.header__contact-btn {
  width: 200px;
  height: 100%;
}
div.header__contact-btn a {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  color: #fff;
  background-color: #E05504;
  display: block;
  padding: 25px 40px;
  text-align: center;
  width: 200px;
  height: 100px;
}
.contact-btn__sub-title {
  font-size: 0.75rem;
  line-height: 1.12rem;
  font-weight: 500;
}
.contact-btn__title {
  font-size: 1.25rem;
  line-height: 1.87rem;
  font-weight: 700;
}
.hamburger-menu {
  display: none;
}
@media screen and (max-width: 1100px) {
.header {
    height: 60px;
    background-color:transparent;
  }
  .header-logo, .header-nav-list__pc, .header-btn {
    display: none;
  }
  /* ---------- ハンバーガーメニュー ---------- */
  .hamburger-menu {
    display: block;
  }
  /* --- インスタボタン（SP時） --- */
  .menu-insta-btn__sp {
    display: block;
    position: fixed;
    z-index: 1;
    top: 75px;
    right: 12px;
  }
  /* ----- ハンバーガーメニューのボタン ----- */
  .menu-btn {
    position: fixed; /* 位置を固定 */
    top: 0; /* 最上部 */
    right: 0; /* 右端 */
    /* 中の要素を上下中央寄せ */
    display: flex;
    justify-content: center;
    align-items: center;
    /* サイズ指定 */
    height: 60px;
    width: 60px;
    /* 最前面にする */
    z-index: 100;
    background-color: #E05504;
    border-bottom-left-radius: 20px;
    cursor: pointer;
  }
  .menu-btn .open {
    display: inline-block;
    position: absolute;
    height: 1px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }
  .menu-btn .open:nth-of-type(1) {
    top: 20px;
  }
  .menu-btn .open:nth-of-type(2) {
    top: 26px;
  }
  .menu-btn .open:nth-of-type(2)::after {
    content: "MENU"; /*2つ目の要素のafterにMenu表示を指定*/
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 5px;
    left: 1px;
    color: #fff;
    font-size: 0.625rem;
    text-transform: uppercase;
  }
  /*----- ハンバーガーメニューパーツ -----*/
  .hamburger-contents {
    background-color: #E05504;
    color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 0 30px;
    transition-duration: 0.5s;
    z-index: 1;
    overflow: auto;
    transform: translateX(110%);
  }
  /*チェックボックス：オン・オフ動作のパーツ*/
  #menu_btn_check:checked ~ .hamburger-contents {
    transform: translateX(0);
  }
  #menu_btn_check:checked + .menu-btn {
    transform: translateX(340px);
    transition-duration: 0.3s;
  }
  .hamburger-contents {
    overflow: auto;
  }
  .hamburger-menu input[type="checkbox"] {
    transform: translateX(-50vw);
  }
  .burger-menu__list {
    margin-top: 75px;
    margin-bottom: 50px;
  }
  .burger-menu__list li {
    font-weight: 700;
    padding-left: 18px;
    position: relative;
  }
  .burger-menu__list li a {
    color: #fff;
  }
  .burger-menu__list li:before {
    border-radius: 50%;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    left: 0;
    top: 25px;
    content: "";
    background: #fff;
  }
  .burger-menu__list li:first-child {
    border-top: 1px solid rgb(255, 255, 255, 0.1);
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
    margin-bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .burger-menu__list li + li {
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
    margin-bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .burger-menu__list li {
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
    margin-bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  /* ------ LINEボタン（ハンバーガーメニュー） ----- */
  .burger-menu__line-btn {
    margin-bottom: 10px;
  }
  div.burger-menu__line-btn a {
    position: relative;
    overflow: hidden;
    border-radius: 100vh;
    display: block;
    padding: 18px 0 20px;
    color: #4CC764;
    font-weight: 700;
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
  }
  div.burger-menu__line-btn a span {
    color: #4CC764;
    font-weight: 700;
    position: relative;
    z-index: 3;
  }
  div.burger-menu__line-btn a span::before {
    display: inline-block;
    content: "";
    margin-top: -5px;
    background-image: url("../images/common/LINE-logo.svg");
    width: 24px;
    height: 24px;
    margin-right: 13px;
    vertical-align: middle;
  }
  /* ----- メールボタン（ハンバーガーメニュー） ----- */
  .burger-menu__mail-btn {
    margin-bottom: 100px;
  }
  div.burger-menu__mail-btn a {
    position: relative;
    overflow: hidden;
    border-radius: 100vh;
    display: block;
    padding: 18px 0 20px;
    color: #E05504;
    font-weight: 700;
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
  }
  div.burger-menu__mail-btn a span {
    color: #E05504;
    font-weight: 700;
    position: relative;
    z-index: 3;
  }
  div.burger-menu__mail-btn a span::before {
    display: inline-block;
    content: "";
    margin-top: -5px;
    background-image: url("../images/common/MAIL-icon.svg");
    width: 24px;
    height: 24px;
    margin-right: 13px;
    vertical-align: middle;
  }
  .menu-close {
    position: fixed; /* 位置を固定 */
    top: 0; /* 最上部 */
    right: 0; /* 右端 */
    /* 中の要素を上下中央寄せ */
    display: flex;
    justify-content: center;
    /* 最前面にする */
    z-index:9;
    /* サイズ指定 */
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    cursor: pointer;
  }
  .menu-close .close {
    display: block;
    width: 22px;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    margin: 0 auto;
    background: #E05504;
  }
  .menu-close .close:nth-of-type(1) {
    transform: translate(0, -50%) rotate(20deg);
  }
  .menu-close .close:nth-of-type(2) {
    transform: translate(0, -50%) rotate(-20deg);
  }
  .menu-close .close-bottom:nth-of-type(3)::after {
    content: "CLOSE"; /*2つ目の要素のafterにMenu表示を指定*/
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    position: absolute;
    right: 16px;
    bottom: 15px;
    color: #E05504;
    font-size: 0.625rem;
    text-transform: uppercase;
  }
  /* ------ インスタボタン（クローズボタンの下） ----- */
  .burger-insta-btn {
    display: block;
    position: fixed;
    z-index: 3;
    top: 75px;
  }
}