@charset "UTF-8";
/* =============================================
 ###　共通パーツ
============================================= */
.sns_nav ul {
  display: grid;
  grid-template-columns: 16px 16px;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.sns_nav ul img {
  display: block;
}

/* =============================================
 ###　header
============================================= */
@media screen and (min-width: 768px) {
  .site_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cacaca;
    z-index: 10;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: #fff;
  }
  .site_header.show {
    background-color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .site_header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.site_header .sp__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 4%;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .site_header .sp__header {
    display: contents;
  }
}
.site_header .sp__header .sitelogo {
  width: 21.8666666667%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .site_header .sp__header .sitelogo {
    width: 100%;
  }
}
.site_header .sp__header.show {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .site_header .container {
    display: grid;
    grid-template-columns: 17% 82%;
    align-items: center;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
    gap: 20px;
  }
  .site_header .container .header__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .site_header .container {
    grid-template-columns: 100px auto;
  }
}
@media screen and (min-width: 1200px) {
  .site_header .container {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 164px auto;
  }
}
.site_header .btn__menu {
  display: flex;
  align-items: center;
}
.site_header .btn__menu .icon {
  position: relative;
  margin-left: 0;
  width: 30px;
  height: 20px;
  margin-left: 20px;
}
.site_header .btn__menu .icon::after, .site_header .btn__menu .icon::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #000;
  transform-origin: center;
}
.site_header .btn__menu .icon::after {
  top: 25%;
}
.site_header .btn__menu .icon::before {
  bottom: 25%;
}
.site_header .btn__close {
  display: flex;
  align-items: center;
}
.site_header .btn__close .icon {
  position: relative;
  margin-left: 20px;
  width: 40px;
}
.site_header .btn__close .icon::after, .site_header .btn__close .icon::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #AD8A22;
  transform-origin: center;
}
.site_header .btn__close .icon::after {
  transform: translate(-50%, -50%) rotate(15deg);
}
.site_header .btn__close .icon::before {
  transform: translate(-50%, -50%) rotate(165deg);
}

.lang-menu {
  list-style: none;
  background-color: #707070;
  color: #fff;
  width: 4em;
  text-align: center;
  border-radius: 30px 30px;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
}

.lang-menu > li {
  position: relative;
}

.lang-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 100;
  min-width: 4em;
}

.lang-menu .sub-menu li {
  padding: 8px 12px;
}

.lang-menu .sub-menu li a {
  display: block;
  text-decoration: none;
  color: #333;
}

/* hover時にサブメニュー表示 */
.lang-menu > li:hover .sub-menu {
  display: block;
}

.sub_nav1.sp-only {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: center;
  padding: 0 4%;
}
.sub_nav1.sp-only .ttl {
  text-align: center;
}
.sub_nav1.sp-only ul {
  display: flex;
  align-items: center;
}
.sub_nav1.sp-only ul li {
  width: 33%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub_nav1.sp-only ul li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sub_nav1.sp-only ul li.active {
    display: block;
  }
}
.sub_nav1.sp-only ul li.active span {
  display: inline-block;
  background-color: #707070;
  color: #fff;
  width: 80%;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .sub_nav1.sp-only ul li.active span {
    width: 100%;
    padding: 0 20px;
  }
}

.sub_nav2 {
  order: 2;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: -30px;
}
@media screen and (min-width: 768px) {
  .sub_nav2 {
    order: 1;
    margin-top: 0;
    padding: 0;
    margin-left: 20px;
  }
}
.sub_nav2 > ul > li {
  border-bottom: 1px solid #ececec;
}
@media screen and (min-width: 768px) {
  .sub_nav2 > ul > li {
    border: none;
  }
  .sub_nav2 > ul > li .en {
    display: none;
  }
  .sub_nav2 > ul > li .jp {
    font-family: "Shippori Mincho", serif;
  }
}
.sub_nav2 > ul > li a {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 12px;
}

.sub_nav3 {
  order: 3;
  width: 72%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .sub_nav3 {
    order: 1;
    width: 136px;
    margin: 0;
    margin-left: 20px;
  }
}
.sub_nav3 .btn_contact a {
  display: block;
  background-color: #AD8A23;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sub_nav3 .btn_contact a {
    padding: 0;
  }
}
.sub_nav3 .btn_contact a::after {
  content: "";
  width: 24px;
  height: 0;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .sub_nav3 .btn_contact a::after {
    display: none;
  }
}

.main_nav {
  padding-left: 10%;
  padding-right: 10%;
  order: 1;
}
@media screen and (min-width: 768px) {
  .main_nav {
    width: 100%;
    margin-top: 17px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .main_nav > ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.main_nav > ul > li {
  border-bottom: 1px solid #ececec;
}
@media screen and (min-width: 768px) {
  .main_nav > ul > li {
    border-left: 1px solid #a4a4a4;
    border-bottom: none;
    text-align: center;
  }
}
.main_nav > ul > li > a {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .main_nav > ul > li > a {
    padding: 0;
  }
}
.main_nav > ul > li .toggle__btn {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 12px;
  cursor: pointer;
}
.main_nav > ul > li .toggle__btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .main_nav > ul > li .toggle__btn {
    padding: 0;
  }
}
.main_nav > ul > li .toggle__content {
  display: none;
}
.main_nav > ul > li .toggle__content.open {
  display: block;
}
@media screen and (min-width: 768px) {
  .main_nav > ul > li .toggle__content.open {
    position: absolute;
    width: 100%;
    left: 0;
    top: 140px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .main_nav > ul > li .toggle__content.open .toggle__content_wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 23% auto;
    align-items: center;
  }
}
.main_nav > ul > li .toggle__content .toggle__content_ttl .en {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.main_nav > ul > li .toggle__content .toggle__content_ttl .jp {
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .main_nav > ul > li .toggle__content .toggle__content_list {
    display: flex;
    padding-left: 40px;
    flex-wrap: wrap;
    border-left: 1px solid #000;
  }
}
@media screen and (min-width: 768px) {
  .main_nav > ul > li .toggle__content li {
    margin-right: 1em;
    text-align: left;
  }
}
.main_nav > ul > li .toggle__content li a {
  display: flex;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #525252;
  line-height: 1.5em;
  padding: 10px;
}
.main_nav > ul > li .toggle__content li a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #525252;
  margin-right: 5px;
  margin-top: 7px;
}
.main_nav a:hover {
  opacity: 0.7;
}

/* =============================================
  ## SP ドロワーメニュー
============================================= */
.sp__drawer {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  display: grid;
  gap: 30px;
  overflow-y: auto;
  height: 100vh;
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .sp__drawer {
    display: contents;
  }
}
.sp__drawer .sns_nav {
  order: 4;
}

.sp__drawer_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4%;
}
.sp__drawer_head .sitelogo {
  width: 21.8666666667%;
  height: auto;
}

/* =============================================
 ###　footer
============================================= */
footer {
  position: relative;
  z-index: 20;
}

.site_footer .container {
  background-color: #1C1C1C;
  padding-top: 60px;
  color: #a4a4a4;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-align: center;
  line-height: 1.5em;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .site_footer .container {
    padding-top: 100px;
  }
}
.site_footer .container .caution_note {
  font-size: 1.1rem;
  padding-left: 3%;
  padding-right: 3%;
}
@media screen and (min-width: 768px) {
  .site_footer .container .caution_note {
    font-size: 1.2rem;
    text-align: right;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.site_footer .column_list {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .site_footer .column_list {
    grid-template-columns: 20% auto 30%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .site_footer .column_list {
    grid-template-columns: 20% auto 30%;
  }
}
@media screen and (min-width: 1200px) {
  .site_footer .column_list {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 20% auto 30%;
  }
}
.site_footer .column_list .column {
  display: grid;
  gap: 20px;
}
.site_footer .column_list .sitelogo {
  width: 33.3333333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .site_footer .column_list .sitelogo {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .site_footer .column_list .sitelogo {
    width: 196px;
  }
}
.site_footer .column_list .sitelogo .hirakawa-logo {
  color: #fff;
}
.site_footer .column_list .address {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .site_footer .column_list .address {
    font-size: 1.2rem;
  }
}
.site_footer .column_list .main_nav2 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.site_footer .column_list .main_nav2 ul li {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .site_footer .column_list .store {
    text-align: left;
  }
}
.site_footer .column_list .store .link {
  width: 80px;
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .site_footer .column_list .store .link {
    margin: 0;
  }
}
.site_footer .column_list .store .link a {
  display: flex;
  border: 1px solid #a4a4a4;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .site_footer .column_list .store .link a {
    text-decoration: underline;
    border: none;
    justify-content: flex-start;
  }
}
.site_footer .column_list .store .link a::before {
  content: "";
  width: 9px;
  height: 11px;
  background-image: url(/libs/img/common/location.svg);
  background-size: contain;
  margin-right: 5px;
}
.site_footer .column_list .store_name {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .site_footer .column_list .store_name {
    font-size: 1.3rem;
  }
}
.site_footer .footer_btm {
  width: 100%;
  background-color: #000;
  margin-top: 30px;
  padding: 50px 0 40px;
  padding-left: 3%;
  padding-right: 3%;
}
@media screen and (min-width: 768px) {
  .site_footer .footer_btm .footer_btm_warpper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.site_footer .footer_btm .sub_nav4 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .site_footer .footer_btm .sub_nav4 {
    order: 1;
  }
}
.site_footer .footer_btm .sub_nav4 ul {
  display: flex;
  font-size: 1rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .site_footer .footer_btm .sub_nav4 ul {
    font-size: 1.2rem;
  }
}
.site_footer .footer_btm .sub_nav4 ul li {
  border-left: 1px solid #a4a4a4;
}
.site_footer .footer_btm .sub_nav4 ul li:first-of-type {
  border: none;
}
.site_footer .footer_btm .sub_nav4 ul li a {
  display: block;
  padding: 0 1em;
  line-height: 1em;
}
.site_footer .footer_btm .copyright {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .site_footer .footer_btm .copyright {
    font-size: 1.2rem;
  }
}

/* =============================================
 ###　main
============================================= */
main .wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  main .wrap {
    max-width: 1200px;
  }
}/*# sourceMappingURL=layout.css.map */