@charset "UTF-8";
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .sp.inline {
    display: inline-block;
  }
  .pc {
    display: none;
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
@media screen and (max-width: 767px) {
  body.is-nav-open {
    overflow: hidden;
  }
}

/*/////////////////////////////////////////
//  共通パーツ
/////////////////////////////////////////*/
.c-ttl-main {
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  gap: 15px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-ttl-main {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.c-ttl-main .c-ttl-main__en {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-ttl-main .c-ttl-main__en {
    font-size: 15px;
    padding-top: 5px;
  }
}

.c-btn-more {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  min-width: 200px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  height: 50px;
  background: #2e6e8b;
  color: #fff;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .c-btn-more {
    min-width: 155px;
    height: 45px;
    font-size: 15px;
  }
}
.c-btn-more:hover {
  color: #fff;
  text-decoration: none;
}

.u-container {
  width: 1010px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .u-container {
    width: 100%;
    padding: 0 30px;
  }
}

/*/////////////////////////////////////////
// ページレイアウト
/////////////////////////////////////////*/
.l-page-wrapper {
  min-height: 100vh;
  padding-left: 230px;
}
@media screen and (max-width: 767px) {
  .l-page-wrapper {
    padding-left: 0;
  }
}

/*/////////////////////////////////////////
//  ヘッダー(PCサイドバー)
/////////////////////////////////////////*/
.l-main-navi {
  display: contents;
  visibility: hidden;
  height: 0;
}

.l-main-header {
  width: 230px;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  z-index: 2;
  gap: 29px;
}
@media screen and (max-width: 767px) {
  .l-main-header {
    width: 100%;
    height: 70px;
    padding: 0 14px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 64px;
    z-index: 11;
  }
}

.header-navi {
  position: relative;
  font-size: 14px;
  width: 100%;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header-navi {
    display: block;
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: scroll;
    padding: 40px 30px 80px;
    margin-top: 0;
    background: #f4f2ed;
    /*box-shadow: -16px 0 32px rgba(0, 0, 0, 0.18);*/
    transition: all 0.3s ease;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
    backface-visibility: hidden;
    contain: paint;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
  }
  .header-navi:before {
    content: "";
    display: inline-block;
    width: 130px;
    height: 51.64px;
    position: absolute;
    right: 0;
    top: 41px;
    mix-blend-mode: multiply;
    z-index: 1;
    background-image: url("../images/common/obj-nav.svg");
    background-size: cover;
    background-position: 0 center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .header-navi.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.header-navi .header-navi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header-navi .header-navi-list {
    text-align: left;
    font-size: 16px;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .header-navi .header-navi-list__item:nth-of-type(1) {
    border-top: 1px solid #c1c1c1;
  }
}
.header-navi .header-navi-list__item,
.header-navi .has-submenu {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-navi .header-navi-list__item,
  .header-navi .has-submenu {
    border-bottom: 1px solid #c1c1c1;
  }
}
.header-navi .header-navi-list__item > a,
.header-navi .has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .header-navi .header-navi-list__item > a,
  .header-navi .has-submenu > a {
    text-align: left;
    justify-content: flex-start;
    font-size: 16px;
    padding: 12px 10px;
  }
}
.header-navi .header-navi-list__item > a:hover,
.header-navi .header-navi-list__item > a:focus,
.header-navi .has-submenu > a:hover,
.header-navi .has-submenu > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .header-navi .has-submenu {
    position: static;
  }
  .header-navi .has-submenu > .sub-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    will-change: max-height;
  }
  .header-navi .has-submenu.is-open > .sub-menu {
    max-height: 70vh;
    padding: 16px 20px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .header-navi .has-submenu.is-open > .sub-menu {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .header-navi .has-submenu.is-open .load-menu:after {
    transform: rotate(90deg);
  }
}
.header-navi .has-submenu > .sub-menu {
  position: fixed;
  top: 0;
  left: -230px;
  width: 210px;
  height: 100vh;
  padding: 47px 24px;
  background-color: #f2f2f2;
  color: #000000;
  box-shadow: 8px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: -10;
  transition: linear all 0.2s;
  opacity: 0;
}
.header-navi .has-submenu > .sub-menu:before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 51.64px;
  position: absolute;
  right: 0;
  top: 41px;
  mix-blend-mode: multiply;
  z-index: 1;
  background-image: url("../images/common/obj-nav.svg");
  background-size: cover;
  background-position: 0 center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .header-navi .has-submenu > .sub-menu:before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .header-navi .has-submenu > .sub-menu {
    height: auto;
    position: static;
    padding: 0;
    width: 100%;
    box-shadow: none;
    background: #e2dccf;
  }
}
.header-navi .has-submenu > .load-menu {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-navi .has-submenu > .load-menu::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #b2b2b2;
  border-right: 1.5px solid #b2b2b2;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .header-navi .has-submenu > .load-menu::before {
    position: absolute;
    right: 10px;
    border: none;
    width: 12px;
    height: 1px;
    background: #000;
    transform: initial;
  }
}
@media screen and (max-width: 767px) {
  .header-navi .has-submenu > .load-menu::after {
    content: "";
    position: absolute;
    right: 15.5px;
    border: none;
    width: 1px;
    height: 12px;
    background: #000;
    transition: linear all 0.2s;
  }
}
.header-navi .has-submenu > .load-menu span {
  padding-bottom: 4px;
}
.header-navi .has-submenu.is-open .load-menu {
  text-decoration: underline;
}

.sub-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 210px;
  height: 100vh;
  padding: 47px 24px;
  background-color: #f2f2f2;
  color: #000000;
  box-shadow: 8px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  transition: linear all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .sub-menu {
    display: none;
    height: auto;
    position: static;
    padding: 0px 24px;
    width: 100%;
    box-shadow: none;
    background: #e2dccf;
  }
}
.sub-menu:before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 51.64px;
  position: absolute;
  right: 0;
  top: 41px;
  mix-blend-mode: multiply;
  z-index: 1;
  background-image: url("../images/common/obj-nav.svg");
  background-size: cover;
  background-position: 0 center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .sub-menu:before {
    content: none;
  }
}
.sub-menu.is-open {
  left: 230px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .sub-menu.is-open {
    left: 0;
  }
}
.sub-menu strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .sub-menu strong {
    display: none;
  }
}
.sub-menu .sub-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 100%;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .sub-menu .sub-menu-list {
    margin-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 0;
  }
  .sub-menu .sub-menu-list li {
    width: 50%;
  }
}
.sub-menu .sub-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
  font-size: 15px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sub-menu .sub-menu-list a {
    font-size: 14px;
    padding-left: 15px;
    padding-top: 0;
  }
}
.sub-menu .sub-menu-list a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background: #000;
}

@media screen and (max-width: 767px) {
  .sp-menu-footer {
    padding-top: 30px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
  .sp-menu-footer .sp-menu-blog {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 55px;
    border: 1px solid #000;
    gap: 18px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .sp-menu-footer .sp-menu-blog:before {
    content: "";
    display: inline-block;
    width: 17.51px;
    height: 27.5px;
    background-image: url("../images/common/icon-blog.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .sp-menu-footer .sp-menu-footer__item {
    font-size: 12px;
    margin-top: 16px;
  }
  .sp-menu-footer .sp-menu-footer__item a {
    text-decoration: underline;
  }
}

.header-help-navi-box {
  width: 100%;
}
.header-help-navi-box a {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.header-help-navi-box a:before {
  content: "";
  display: inline-block;
  width: 24.14px;
  height: 24.14px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.header-help-navi-box .my-account a:before {
  background-image: url("../images/common/icon-user.svg");
}
.header-help-navi-box .my-cart a {
  background: #f8cf4e;
  position: relative;
}
.header-help-navi-box .my-cart a:before {
  background-image: url("../images/common/icon-cart.svg");
}
.header-help-navi-box .my-cart a .p-global-header__cart-count {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 30px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
}

.l-header-search__area {
  padding: 10px 0;
}
.l-header-search__area form {
  display: flex;
  justify-content: flex-end;
}
.l-header-search__area form input {
  width: 200px;
  height: 35px;
  border: 1px solid #808080;
  border-radius: 0;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
.l-header-search__area form .l-header-search__submit {
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.sp-menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 17px;
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 999;
  }
}
.sp-menu-btn span {
  display: block;
  height: 1px;
  background-color: #000;
  border-radius: 2px;
  width: 100%;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}
.sp-menu-btn.is-active .bar-middle {
  opacity: 0;
}
.sp-menu-btn.is-active .bar-top {
  transform: translateY(8px) rotate(45deg);
}
.sp-menu-btn.is-active .bar-bottom {
  transform: translateY(-8px) rotate(-45deg);
}

.icon-list {
  display: none;
}
@media screen and (max-width: 767px) {
  .icon-list {
    display: flex;
    gap: 18px;
  }
  .icon-list .sp-my-cart {
    position: relative;
  }
  .icon-list .p-global-header__cart-count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -16px;
    top: -10px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    background: #000;
    color: #fff;
    border-radius: 50%;
  }
}

/*/////////////////////////////////////////
//  メインコンテンツ　フレーム
/////////////////////////////////////////*/
body .l-main {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  body .l-main {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 70px !important;
  }
}
body .l-main .c-main-contents {
  margin: 0 auto;
  padding: 0;
}

/*/////////////////////////////////////////
//  フッター
/////////////////////////////////////////*/
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 50px;
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }
}
.l-footer .l-footer-shopinfo {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-shopinfo {
    align-items: center;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.l-footer .l-footer-shopinfo__logo {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer-shopinfo__logo {
    width: 147.19px;
  }
}
.l-footer .info-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer .f-shop-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer .f-shop-info .tel a {
  color: #2e6e8b;
  font-size: 23px;
  font-weight: 700;
}
.l-footer .f-shop-info .tel a span {
  font-size: 16px;
  font-weight: 700;
}
.l-footer .f-shop-info .time {
  font-size: 9px;
}
.l-footer .f-shop-info .addr {
  font-size: 12px;
  margin-top: 14.5px;
}
.l-footer .f-nav-area {
  display: flex;
  gap: 54px;
}
@media screen and (max-width: 767px) {
  .l-footer .f-nav-area {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer .f-nav-area .f-nav-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .l-footer .f-nav-area .f-nav-list {
    display: none;
  }
}
.l-footer .f-nav-area .f-nav-list a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-footer .f-nav-area .f-nav-list a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  transform: rotate(45deg);
  transition: linear all 0.2s;
}
@media screen and (max-width: 767px) {
  .l-footer .f-nav-area .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.l-footer .f-nav-area .nav-right .f-blog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 55px;
  border: 1px solid #000;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
}
.l-footer .f-nav-area .nav-right .f-blog:before {
  content: "";
  display: inline-block;
  width: 17.51px;
  height: 27.5px;
  background-image: url("../images/common/icon-blog.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.l-footer .f-nav-area .nav-right .f-sns-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.l-footer .f-nav-area .nav-right .f-sns-block h2 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight:500;
}
.l-footer .f-nav-area .nav-right .f-sns-block h2:after {
  content: "";
  display: inline-block;
  width: 36.1px;
  height: 6.44px;
  background-image: url("../images/common/sns-arrow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.l-footer .f-nav-area .nav-right .f-sns-block li {
  margin-left: 0 !important;
}
.l-footer .f-nav-area .nav-right .f-sns-block .f-sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-footer .copyright {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer .copyright {
    text-align: center;
    justify-content: center;
    margin-top: 36px;
  }
}

.sp-footer-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-footer-nav {
    display: block;
    position: fixed;
    width: 100%;
    z-index: 10;
    bottom: 0;
    left: 0;
  }
  .sp-footer-nav .nav-list {
    display: flex;
    background: #e2dccf;
  }
  .sp-footer-nav .nav-list > li {
    width: 20%;
    position: relative;
  }
  .sp-footer-nav .nav-list > li:not(:last-child) {
    border-right: 1px solid #fff;
  }
  .sp-footer-nav .nav-list > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1;
    height: 70px;
  }
  .sp-footer-nav .nav-list > li.f-cart a {
    background: #f8cf4e;
  }
  .sp-footer-nav .nav-list > li.is-open > a {
    background: #bfbbb2;
  }
}

@media screen and (max-width: 767px) {
  .f-sub-menu {
    bottom: -100%;
    width: 100%;
    background: #fff;
    padding: 40px 30px 60px;
    position: fixed;
    transition: linear all 0.3s;
    left: 0;
    z-index: 9;
    background-image: url("../images/common/obj-footer-menu.svg");
    background-size: 221.5px 67.89px;
    background-position: 100% 10%;
    background-repeat: no-repeat;
  }
  .f-sub-menu strong {
    font-size: 20px;
  }
  .f-sub-menu .sub-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0;
    margin-top: 48px;
  }
  .f-sub-menu .sub-menu-list li {
    width: 50%;
  }
  .f-sub-menu .sub-menu-list li a {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .f-sub-menu .sub-menu-list li a:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 1px;
    background: #000;
  }
  .f-sub-menu.is-open {
    bottom: 70px;
    position: fixed;
  }
}

.sp-footer-nav li.is-open .f-sub-menu {
  bottom: 70px;
  position: fixed;
}

.overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
  }
  .overlay.is-open {
    display: block;
  }
}