@charset "UTF-8";
/* =======================================
共通、汎用css
 ======================================= */
:root {
  --font-gothicZen: "Zen Kaku Gothic New", sans-serif;
  --font-gothicNoto: "Noto Sans JP", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --color-base: #461e00;
  --color-primary: #45a2c8;
  --color-secondary: #f5f5f0;
  --color-tertiary: #e6dfda;
  --color-quaternary: #695546;
  --shadow: 2px 2px 6px rgba(180, 180, 175, 0.25);
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-gothicNoto);
}

body {
  color: #461e00;
  color: var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
  font-family: var(--font-gothicNoto);
  font-weight: 500;
  background: #f5f5f0;
  background: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
}

a img {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a:hover img {
  opacity: 0.8;
}
a.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a.opacity:hover {
  opacity: 0.8;
}

.base {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 240px;
  width: 100%;
  height: 60px;
  border-radius: 9999px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    max-width: 275px;
    height: 50px;
  }
}
.c-btn:after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn.blue {
  color: #fff !important;
}
.c-btn.blue {
  background: #45a2c8;
  background: var(--color-primary);
}
.c-btn.blue:after {
  background-image: url(https://www.hakuju.net/pic-labo/ico_arrow01_white.png);
}
.c-btn.brown {
  color: #461e00 !important;
  color: var(--color-base) !important;
}
.c-btn.brown {
  background: #fff;
}
.c-btn.brown:after {
  background-image: url(https://www.hakuju.net/pic-labo/ico_arrow01_brown.png);
}

.ttlbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-ttl {
  font-size: 40px !important;
  letter-spacing: 0.04em !important;
}

.c-ttl {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .c-ttl {
    font-size: 24px !important;
  }
}
.c-ttl.ico {
  padding-left: 50px !important;
}
.c-ttl.ico {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-ttl.ico {
    padding-left: 35px !important;
  }
}
.c-ttl.ico:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 44px;
  height: 44px;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .c-ttl.ico:before {
    width: 32px;
    height: 32px;
    top: -3px;
  }
}

.slider-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.slider-btn > div {
  width: 35px;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  top: 50%;
}
@media only screen and (max-width: 768px) {
  .slider-btn > div {
    width: 28px;
  }
}
.slider-btn__prev {
  left: 25px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 768px) {
  .slider-btn__prev {
    left: 15px;
  }
}
.slider-btn__next {
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .slider-btn__next {
    right: 15px;
  }
}

.c-search {
  width: 300px;
}
@media only screen and (max-width: 1099px) and (min-width: 1000px) {
  .c-search {
    width: 230px;
  }
}
.c-search form {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-search form input {
  height: 45px !important;
  padding: 0 0 0 20px !important;
}
.c-search form input {
  font-size: 16px;
  border-radius: 9999px;
  background: #fff;
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-search form button {
  width: 47px;
  height: 25px;
  background: #45a2c8;
  background: var(--color-primary);
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 9999px;
}
.c-search form button img {
  width: 21px;
  vertical-align: middle;
}
.c-search form ::-webkit-input-placeholder {
  font-size: 13px;
  color: #a2968c;
  letter-spacing: 0.02em;
}
.c-search form ::-moz-placeholder {
  font-size: 13px;
  color: #a2968c;
  letter-spacing: 0.02em;
}
.c-search form :-ms-input-placeholder {
  font-size: 13px;
  color: #a2968c;
  letter-spacing: 0.02em;
}
.c-search form ::-ms-input-placeholder {
  font-size: 13px;
  color: #a2968c;
  letter-spacing: 0.02em;
}
.c-search form ::placeholder {
  font-size: 13px;
  color: #a2968c;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 1099px) and (min-width: 1000px) {
  .c-search form ::-webkit-input-placeholder {
    font-size: 10px;
  }
  .c-search form ::-moz-placeholder {
    font-size: 10px;
  }
  .c-search form :-ms-input-placeholder {
    font-size: 10px;
  }
  .c-search form ::-ms-input-placeholder {
    font-size: 10px;
  }
  .c-search form ::placeholder {
    font-size: 10px;
  }
}

#bread-crumb {
  margin: 0;
  border-top: 1px solid #aaaaaa;
  padding: 10px 0;
}
#bread-crumb #bread-crumb-listTop {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
#bread-crumb #bread-crumb-listTop ol li {
  font-size: 14px;
  padding: 0;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-right: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #bread-crumb #bread-crumb-listTop ol li {
    font-size: 13px;
  }
}
#bread-crumb #bread-crumb-listTop ol li:after {
  content: ">";
  position: absolute;
  right: -14px;
  top: 2px;
  line-height: 1;
}
#bread-crumb #bread-crumb-listTop ol li:last-child {
  margin-right: 0;
}
#bread-crumb #bread-crumb-listTop ol li:last-child:after {
  display: none;
}
#bread-crumb #bread-crumb-listTop ol li a {
  background: none;
}

/* =======================================
 ヘッダー
 ======================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-bottom: 1px solid #695546;
  border-bottom: 1px solid var(--color-quaternary);
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
@media only screen and (max-width: 999px) {
  .header__top {
    height: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__logo {
  margin-left: 27px;
}
@media only screen and (max-width: 999px) {
  .header__logo {
    margin-left: 0;
  }
}
.header__logo img {
  width: 230px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
@media only screen and (max-width: 1099px) and (min-width: 1000px) {
  .header__logo img {
    width: 150px;
  }
}
@media only screen and (max-width: 999px) {
  .header__logo img {
    width: 140px;
    margin-right: 2px;
  }
}
.header__logo span.txt {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .header__logo span.txt {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.header__logo span.txt span {
  display: inline-block;
  margin-left: -3px;
}
.header__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 17px;
}
.header__sub li {
  text-align: center;
  margin-right: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__sub li img {
  width: 43px;
  display: block;
  margin: 0 auto;
}
.header__sub li span {
  font-size: 10px;
  display: block;
  line-height: 1;
  width: 100%;
}
.header__sub li.item01 img {
  width: 38px;
}
.header__sub li.item02 img {
  width: 36px;
}
.header__sub li.item03 img {
  width: 43px;
}
.header__sub li.item04 {
  margin-right: 0;
  width: 80px;
  height: 80px;
  background: #45a2c8;
  background: var(--color-primary);
}
.header__sub li.item04 img {
  width: 43px;
}
.header__sub li.item04 span {
  color: #fff;
}
.header__gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0 28px;
}
.header__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 38px;
}
@media only screen and (max-width: 1199px) and (min-width: 1000px) {
  .header__navi {
    gap: 15px 25px;
  }
}
.header__navi li a {
  font-size: 18px;
  color: #461e00;
  color: var(--color-base);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 1199px) and (min-width: 1000px) {
  .header__navi li a {
    font-size: 15px;
  }
}
.header__navi li a.current {
  color: #45a2c8;
  color: var(--color-primary);
}
.header__navi li.parent {
  position: relative;
  padding-right: 17px;
}
.header__navi li.parent:after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  border: solid #461e00;
  border: solid var(--color-base);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  padding: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__navi li.parent.active:after {
  top: 8px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.header .megamenu {
  padding-top: 47px;
  position: absolute;
  left: 0;
  top: 95px;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  z-index: -9999;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header .megamenu.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.header .megamenu__in {
  background: #e6dfda;
  background: var(--color-tertiary);
  padding: 5px 20px 40px;
}
.header .megamenu__in__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
  max-width: 1320px;
  margin: 0 auto;
}
.header .megamenu__in__row ul {
  width: calc(25% - 15px);
  padding: 25px 0;
  border-bottom: 1px solid #695546;
  border-bottom: 1px solid var(--color-quaternary);
}
.header .megamenu__in__row ul.border-t {
  border-top: 1px solid #695546;
  border-top: 1px solid var(--color-quaternary);
}
.header .megamenu__in__row ul.border-b-none {
  border-bottom: none;
}
.header .megamenu__in__row ul li:not(.ttl) {
  margin-bottom: 20px;
  padding-left: 20px;
}
.header .megamenu__in__row ul li:not(.ttl):nth-child(2) {
  margin-top: 23px;
}
.header .megamenu__in__row ul li:not(.ttl):last-child {
  margin-bottom: 0;
}
.header .megamenu__in__row ul li:not(.ttl) a {
  font-size: 16px;
  color: #461e00;
  color: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 1em;
}
.header .megamenu__in__row ul li:not(.ttl) a:before {
  content: "";
  width: 11px;
  height: 1px;
  background: #461e00;
  background: var(--color-base);
  position: absolute;
  left: 0;
  top: 12px;
}
.header .megamenu__in__row ul li.ttl a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
  font-weight: 700;
}
@media only screen and (max-width: 999px) {
  .header .header__toggle {
    width: 70px;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999;
    cursor: pointer;
  }
  .header .header__toggle span {
    display: block;
    background: #000;
    height: 2px;
    width: 27px;
    margin-left: -13px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
  }
  .header .header__toggle span:nth-child(1) {
    top: 33%;
  }
  .header .header__toggle span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header .header__toggle span:nth-child(3) {
    bottom: 33%;
  }
  .header .header__toggle.opened span:nth-child(1) {
    top: 48%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header .header__toggle.opened span:nth-child(2) {
    background: none;
  }
  .header .header__toggle.opened span:nth-child(3) {
    bottom: 48%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

/* =============================================
フローティングボタン
============================================= */
.btn__floating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn__floating__item {
  width: 20%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  padding-bottom: 9px;
}
.btn__floating__item .img {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn__floating__item img {
  display: block;
}
.btn__floating__item .close {
  top: 9px !important;
  width: 28px !important;
  height: 19px !important;
}
.btn__floating__item .close {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}
.btn__floating__item .close span {
  background: #461e00;
  background: var(--color-base);
  width: 100%;
  height: 2px;
  margin-left: -14px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}
.btn__floating__item .close span:nth-child(1) {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn__floating__item .close span:nth-child(2) {
  top: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn__floating__item.item01 .img {
  top: 13px;
  width: 28px;
  height: 19px;
}
.btn__floating__item.item01 .img span {
  background: #461e00;
  background: var(--color-base);
  width: 100%;
  height: 2.5px;
  margin-left: -14px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn__floating__item.item01 .img span:nth-child(1) {
  top: 1px;
}
.btn__floating__item.item01 .img span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__floating__item.item01 .img span:nth-child(3) {
  bottom: 1px;
}
.btn__floating__item.item02 .img {
  top: 11px;
}
.btn__floating__item.item03 .img {
  top: 11px;
}
.btn__floating__item.item04 .img {
  top: 10px;
}
.btn__floating__item.item05 .img {
  top: 11px;
}
.btn__floating__item path {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn__floating__item span {
  font-size: 10px;
  font-weight: 700;
  display: block;
  width: 100%;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn__floating__item.active {
  background: #45a2c8;
  background: var(--color-primary);
}
.btn__floating__item.active:before {
  opacity: 1;
}
.btn__floating__item.active.item01 .img span {
  background: #fff;
}
.btn__floating__item.active.item01 .img span:nth-child(1) {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn__floating__item.active.item01 .img span:nth-child(2) {
  opacity: 0;
}
.btn__floating__item.active.item01 .img span:nth-child(3) {
  bottom: auto;
  top: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn__floating__item.active path {
  fill: #fff;
}
.btn__floating__item.active span {
  color: #fff;
}
.btn__floating.transform {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

/* =============================================
フローティングモーダル
============================================= */
.modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  position: fixed;
  right: 0;
  bottom: 60px;
  margin: auto;
  width: 100%;
  max-width: 500px;
  height: calc(100% - 60px);
  z-index: 99999;
}
@media only screen and (max-width: 500px) {
  .modal {
    max-width: 100%;
  }
}
.modal__inner {
  width: 100%;
  height: 100%;
  background-color: #f5f5f0;
  background-color: var(--color-secondary);
  overflow-y: scroll;
  padding: 20px 20px 80px;
}
.modal .c-search {
  width: 100%;
  margin-bottom: 10px;
}
.modal__navi li:first-child a {
  border-top: none !important;
}
.modal__navi li:last-child a {
  border-bottom: 1px solid #695546;
  border-bottom: 1px solid var(--color-quaternary);
}
.modal__navi li a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 0;
  display: block;
  border-top: 1px solid #695546;
  border-top: 1px solid var(--color-quaternary);
}
.modal__navi li.parent a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
}
.modal__navi li:not(.parent) {
  padding-left: 40px;
}
.modal__navi li:not(.parent) a {
  position: relative;
  font-weight: 500;
  padding-left: 16px;
}
.modal__navi li:not(.parent) a:before {
  content: "";
  width: 10px;
  height: 1px;
  background: #461e00;
  background: var(--color-base);
  position: absolute;
  left: 0;
  top: 25px;
}
.modal__sub {
  margin: 32px 0 33px;
}
.modal__sub li {
  margin-bottom: 12px;
}
.modal__sub li:last-child {
  margin-bottom: 0;
}
.modal__sub li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.modal .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.modal .sns a {
  display: block;
  width: 20px;
}
.modal .sns a img {
  vertical-align: super;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal.open .modal__box {
  opacity: 1;
  visibility: visible;
}
.modal.hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -9999;
}

.modal-cart {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  position: fixed;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
@media only screen and (max-width: 500px) {
  .modal-cart {
    max-width: 100%;
  }
}
.modal-cart__inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-y: scroll;
  padding: 40px 20px;
}
.modal-cart.open {
  opacity: 1;
  visibility: visible;
}
.modal-cart.open .modal__box {
  opacity: 1;
  visibility: visible;
}
.modal-cart.hidden {
  opacity: 0;
  visibility: hidden;
}

/* =======================================
ヘッダーエリア
 ======================================= */
.header_area {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =======================================
フッターエリア
 ======================================= */
.footer_area {
  padding: 0 20px;
}

/* =======================================
フッター
 ======================================= */
.footer__contact {
  display: none;
  margin-bottom: -10px;
  background: url(https://www.hakuju.net/pic-labo/img_footer.png) no-repeat center bottom/1360px;
}
@media only screen and (max-width: 768px) {
  .footer__contact {
    margin-bottom: -5px;
    background: url(https://www.hakuju.net/pic-labo/img_footer_sp.png) no-repeat center bottom/342px;
  }
}
.footer__contact__btn {
  max-width: 772px;
  height: 182px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer__contact__btn {
    max-width: auto;
    height: auto;
  }
}
.footer__contact__btn .btn {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  background: #45a2c8;
  background: var(--color-primary);
  border-radius: 9999px;
  max-width: 600px;
  height: 79px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 15px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer__contact__btn .btn {
    font-size: 16px;
    max-width: 335px;
    height: 90px;
    padding: 35px 0 0;
    margin: 0 auto 12px;
  }
}
.footer__contact__btn .btn:after {
  content: "";
  background: url(https://www.hakuju.net/pic-labo/img_fukidashi.png) no-repeat center/100%;
  width: 40px;
  height: 25px;
  position: absolute;
  right: 104px;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media only screen and (max-width: 768px) {
  .footer__contact__btn .btn:after {
    width: 23px;
    height: 14px;
    right: auto;
    left: 100px;
  }
}
.footer__contact__btn .btn span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
  position: relative;
  padding-left: 50px;
}
@media only screen and (max-width: 768px) {
  .footer__contact__btn .btn span {
    padding-left: 0;
  }
}
.footer__contact__btn .btn span:before {
  content: "";
  background-image: url(https://www.hakuju.net/pic-labo/ico_mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 44px;
  height: 44px;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .footer__contact__btn .btn span:before {
    width: 40px;
    height: 40px;
    right: 0;
    margin: 0 auto;
    top: -40px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.footer__contact__btn .img {
  width: 160px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
}
@media only screen and (max-width: 768px) {
  .footer__contact__btn .img {
    width: 100px;
    position: relative;
    margin: 0 auto;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.footer__inner {
  background: #280f00;
  border-radius: 40px 40px 0 0;
  padding: 70px 0 55px;
}
@media only screen and (max-width: 768px) {
  .footer__inner {
    border-radius: 20px 20px 0 0;
    padding: 55px 0 95px;
  }
}
.footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 70px;
}
@media only screen and (max-width: 768px) {
  .footer__navi {
    margin-bottom: 35px;
  }
}
.footer__navi .col:nth-child(1) {
  width: 33%;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi .col:nth-child(1) {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .footer__navi .col:nth-child(1) {
    width: 100%;
    border-bottom: 0.84px solid #cfc4bc;
    padding-bottom: 38px;
    margin-bottom: 38px;
  }
}
.footer__navi .col:nth-child(2) {
  width: 19%;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi .col:nth-child(2) {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .footer__navi .col:nth-child(2) {
    width: 50%;
  }
}
.footer__navi .col:nth-child(3) {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col:nth-child(3) {
    width: 50%;
  }
}
.footer__navi .col:nth-child(4) {
  width: 23%;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi .col:nth-child(4) {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__navi .col:nth-child(4) {
    width: 100%;
    margin-top: 38px;
  }
}
.footer__navi .col ul.navi01 li {
  margin-bottom: 23px;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col ul.navi01 li {
    margin-bottom: 10px;
  }
}
.footer__navi .col ul.navi01 li:last-child {
  margin-bottom: 0;
}
.footer__navi .col ul.navi01 li a {
  font-size: 16px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col ul.navi01 li a {
    font-size: 12px;
  }
}
.footer__navi .col .navi02 {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col .navi02 {
    margin-top: 15px;
  }
}
.footer__navi .col .navi02 ul {
  width: 50%;
}
.footer__navi .col .navi02 ul li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col .navi02 ul li {
    margin-bottom: 7px;
  }
}
.footer__navi .col .navi02 ul li:last-child {
  margin-bottom: 0;
}
.footer__navi .col .navi02 ul li a {
  font-size: 14px;
  color: #cfc4bc;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col .navi02 ul li a {
    font-size: 12px;
  }
}
.footer__navi .col .navi02 ul li:not(.parent) {
  position: relative;
  padding-left: 1em;
}
.footer__navi .col .navi02 ul li:not(.parent):before {
  content: "";
  width: 10px;
  height: 1px;
  background: #cfc4bc;
  position: absolute;
  left: 0;
  top: 10px;
}
.footer__navi .col .navi02 ul li.parent a {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: var(--font-gothicZen);
  font-weight: 700;
  padding-left: 0;
}
.footer__navi .col ul.navi03 li {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col ul.navi03 li {
    margin-bottom: 10px;
  }
}
.footer__navi .col ul.navi03 li:first-child {
  margin-bottom: 37px;
}
@media only screen and (max-width: 768px) {
  .footer__navi .col ul.navi03 li:first-child {
    margin-bottom: 30px;
  }
}
.footer__navi .col ul.navi03 li:last-child {
  margin-bottom: 0;
}
.footer__navi .col ul.navi03 li a {
  font-size: 12px;
  color: #cfc4bc;
}
.footer__navi .col ul.navi03 li a img {
  display: block;
  margin-bottom: 5px;
}
.footer__navi .col ul.navi03 li a span {
  position: relative;
  padding-right: 20px;
}
.footer__navi .col ul.navi03 li a span:after {
  content: "";
  background: url(https://www.hakuju.net/pic-labo/ico_link.png) no-repeat center/100%;
  width: 13px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 4px;
}
.footer__navi .col .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 23px;
}
.footer__navi .col .sns a {
  display: block;
  width: 20px;
}
.footer__navi .col .sns a img {
  vertical-align: super;
}
.footer__copy {
  font-size: 12px;
  color: #cfc4bc;
  font-family: "Roboto", sans-serif;
  font-family: var(--font-roboto);
  letter-spacing: 0.04em;
  max-width: 1227px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .footer__copy {
    font-size: 10px;
  }
}

/*  =======================================
商品一覧
 ======================================= */
#itemList {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  #itemList {
    margin-top: 50px;
  }
}
#itemList .column-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 1.333%;
  overflow: visible;
  overflow: initial;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  #itemList .column-set {
    gap: 20px 2%;
  }
}
@media only screen and (max-width: 768px) {
  #itemList .column-set {
    gap: 10px 3%;
  }
}
#itemList .column-set .column4 {
  width: 24%;
  margin: 0;
  padding: 0 18px 18px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  float: none;
  -webkit-box-shadow: 2px 2px 6px rgba(180, 180, 175, 0.25);
          box-shadow: 2px 2px 6px rgba(180, 180, 175, 0.25);
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  #itemList .column-set .column4 {
    width: 32%;
  }
}
@media only screen and (max-width: 768px) {
  #itemList .column-set .column4 {
    border-radius: 10px;
    width: 48.5%;
    padding: 0 12px 12px;
  }
}
#itemList .column-set .column4 .itemThumb-wrap {
  margin: 0 -18px 18px;
}
@media only screen and (max-width: 768px) {
  #itemList .column-set .column4 .itemThumb-wrap {
    margin: 0 -12px 12px;
  }
}
#itemList .column-set .column4 .itemThumb-wrap .item-list-span-img {
  display: block;
  position: relative;
  padding-top: 100%;
}
#itemList .column-set .column4 .itemThumb-wrap .item-list-span-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#itemList .column-set .column4 .badge,
#itemList .column-set .column4 .review-summary-container,
#itemList .column-set .column4 .sps-itemList-stockDisp,
#itemList .column-set .column4 .sps-wishAddItem,
#itemList .column-set .column4 .sps-wishAddItemOk {
  display: none;
}
#itemList .column-set .column4 h2 {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
@media only screen and (max-width: 768px) {
  #itemList .column-set .column4 h2 {
    font-size: 15px;
    margin-bottom: 8px;
    -webkit-line-clamp: 4;
  }
}
#itemList .column-set .column4 h2 a {
  display: block;
}
#itemList .column-set .column4 .price {
  text-align: left;
}
#itemList .column-set .column4 .price .selling_price {
  font-size: 28px;
  font-weight: 700;
  margin-right: 3px;
  line-height: 1;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  #itemList .column-set .column4 .price .selling_price {
    font-size: 18px;
  }
}
#itemList .column-set .column4 .price .taxin {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  #itemList .column-set .column4 .price .taxin {
    font-size: 13px;
  }
}

#itemList_wrap #pager-bm {
  border-top: none;
  padding: 0;
  margin: 55px 0 60px;
}
@media only screen and (max-width: 768px) {
  #itemList_wrap #pager-bm {
    margin: 37px 0 50px;
  }
}
#itemList_wrap #pager-bm .quantity {
  display: none;
}
#itemList_wrap #pager-bm .pagerlist {
  float: none !important;
}
#itemList_wrap #pager-bm .pagerlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#itemList_wrap #pager-bm ul li {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  #itemList_wrap #pager-bm ul li {
    font-size: 16px;
    margin: 0 4px;
  }
}
#itemList_wrap #pager-bm ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  #itemList_wrap #pager-bm ul li a {
    width: 40px;
    height: 40px;
  }
}
#itemList_wrap #pager-bm ul li a:hover {
  opacity: 0.8;
}
#itemList_wrap #pager-bm ul li a[title=次へ], #itemList_wrap #pager-bm ul li a[title=前へ], #itemList_wrap #pager-bm ul li a[title=最後へ], #itemList_wrap #pager-bm ul li a[title=最初へ] {
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  #itemList_wrap #pager-bm ul li a[title=次へ], #itemList_wrap #pager-bm ul li a[title=前へ], #itemList_wrap #pager-bm ul li a[title=最後へ], #itemList_wrap #pager-bm ul li a[title=最初へ] {
    font-size: 10px;
  }
}
#itemList_wrap #pager-bm ul li.selected {
  color: #fff;
  background: #45a2c8;
  background: var(--color-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  #itemList_wrap #pager-bm ul li.selected {
    width: 40px;
    height: 40px;
  }
}

/*  =======================================
特商法、ご利用案内、ショップについて
======================================= */
div#main-column section#shopGuide_wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  div#main-column section#shopGuide_wrap {
    margin-bottom: 50px;
  }
}

section #guide .chart .ttlShop {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 35px 0 15px;
}
@media only screen and (max-width: 768px) {
  section #guide .chart .ttlShop {
    font-size: 20px;
    margin: 25px 0 15px;
  }
}

section #guide table th {
  font-size: 16px;
  background: #e6dfda;
  background: var(--color-tertiary);
  width: 20%;
}
@media only screen and (max-width: 768px) {
  section #guide table th {
    font-size: 15px;
  }
}

section #guide table td {
  font-size: 16px;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  section #guide table td {
    font-size: 15px;
  }
}

section #guide .guide01 {
  padding-bottom: 30px;
}

section #guide p {
  font-size: 16px;
  padding-bottom: 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  section #guide p {
    font-size: 15px;
  }
}

section #guide .guide01 h2 {
  height: auto;
  margin-bottom: 25px;
  line-height: 1.4;
  padding-bottom: 10px;
}

section #guide .inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section #guide .inner .fL {
  float: none;
  width: 25%;
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  section #guide .inner .fL {
    width: 100%;
    margin-bottom: 15px;
  }
}
section #guide .inner .fR {
  float: none;
  width: 75%;
  max-width: 100%;
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  section #guide .inner .fR {
    padding-left: 0;
    width: 100%;
  }
}

/*  =======================================
固定ページ
======================================= */
#Journal {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}
#Journal h2 {
  line-height: 1.4;
  margin-bottom: 30px;
}

/*  =======================================
カート画面
======================================= */
#contact #center1 .centerbox h3.title1 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
#contact #center1 .centerbox .mainFrame {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact #center1 .centerbox .mainCont {
  background: none;
}

/*  =======================================
サイトマップ
======================================= */
section #document .txt-list02 section.tree00 {
  width: 100%;
}

/* =======================================
 PC/SP切り替え用
 ======================================= */
@media only screen and (min-width: 1000px) {
  .sp-nav {
    display: none !important;
  }
}
@media only screen and (max-width: 999px) {
  .pc-nav {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* =======================================
 ロゼッタai
 ======================================= */
.rosetta-recommender {
  background: none !important;
  margin: 70px auto 60px !important;
}
.rosetta-recommender {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.rosetta-recommender .__title {
  font-size: 40px !important;
  color: #461e00 !important;
  color: var(--color-base) !important;
  letter-spacing: 0.04em !important;
}
.rosetta-recommender .__title {
  font-weight: 700;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .rosetta-recommender .__title {
    font-size: 24px !important;
  }
  .rosetta-recommender .__title {
    margin-bottom: 20px;
  }
}
.rosetta-recommender .__tab-content-group {
  margin: 0 !important;
}
.rosetta-recommender .__tab-title {
  margin: 0 !important;
}
.rosetta-recommender .__tab-header {
  display: block !important;
}
.rosetta-recommender .__tab-header {
  width: 100%;
  text-align: left;
}
.rosetta-recommender.rosetta-carousel .__outer-container {
  padding: 0 !important;
}
.rosetta-recommender.rosetta-carousel .__outer-container .__tab-content-group {
  margin: 0 !important;
}
.rosetta-recommender.rosetta-carousel .__item .__description {
  width: 100% !important;
}
.rosetta-recommender.rosetta-carousel .__item .__description .__name {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-align: left !important;
}
@media only screen and (max-width: 768px) {
  .rosetta-recommender.rosetta-carousel .__item .__description .__name {
    font-size: 15px !important;
  }
  .rosetta-recommender.rosetta-carousel .__item .__description .__name {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.rosetta-recommender.rosetta-carousel .__item .__description .__price {
  font-size: 25px !important;
  color: #461e00 !important;
  color: var(--color-base) !important;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-family: var(--font-gothicZen) !important;
  font-weight: 700 !important;
  text-align: left !important;
  display: block !important;
}
.rosetta-recommender.rosetta-carousel .__item .__description .__price {
  width: 100%;
}