@charset "utf-8";

/* Reset
-------------------------------------------------------------------------------*/

/* html5doctor.com Reset v1.6.1 - http://cssreset.com */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; /*追加*/
  max-height: 100%;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}

html,
body {
  background-color: #ffffff;
}
h1,
h2,
h3,
h4,
p,
strong,
span {
  font-weight: normal;
}
ul,
li {
  list-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
address {
  font-style: normal;
}
em {
  font-style: normal;
}

/* basic
-------------------------------------------------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
}

body {
  font: 15px/1.8 "Shuei MaruGo L", "ヒラギノ丸ゴ Pro W3",
    "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  text-decoration: none;
  color: #333;
}

@media (hover: hover) {
  a {
    transition: opacity 0.2s ease 0.05s;
  }
  a:hover {
    opacity: 0.6;
  }
}

a[target="_blank"]::after,
a[target="_new"]::after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
}
a[target="_blank"]:has(img)::after,
a[target="_new"]:has(img)::after {
  display: none;
}

[v-cloak] {
  display: none;
}
.is-cloaked {
  opacity: 0;
}

.warning-message {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.7);
  display: block;
  line-height: 2;
  width: fit-content;
  margin: 24px auto;
  border: 1px dotted #ccc;
  padding: 12px;
}
.warning-message a {
  text-decoration: underline;
}
.error-message {
  color: red;
}

/* module
-------------------------------------------------------------------------------*/
.wrapper {
  margin: 50px auto;
  padding-bottom: 20px;
}

/* layout
-------------------------------------------------------------------------------*/

/* main nav */
#mainNav {
  display: none;
}

.header__menu {
  position: relative;
  display: flex;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.header__menu .header__menu-btn {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
}

button.header__menu {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  border-width: 0;
}
.header__menu span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #9f9f9f;
  width: 45%;
}
.header__menu span:nth-of-type(1) {
  top: 15px;
}
.header__menu span:nth-of-type(2) {
  top: 23px;
}
.header__menu span:nth-of-type(3) {
  top: 31px;
}

.header__menu.active .header__menu-btn {
  transform: rotateY(-360deg);
}
.header__menu.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}
.header__menu.active span:nth-of-type(2) {
  opacity: 0;
}
.header__menu.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

.header__nav {
  position: absolute;
  transition: opacity 0.4s ease;
  right: 0;
  top: 50px;
  color: #333;
  background-color: #f9f8f5;
  opacity: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  max-height: max-content;
}
@media (min-width: 768px) {
  .header__nav {
    width: auto;
  }
}
.header__nav:not(.active) {
  pointer-events: none;
}
.header__nav.active {
  opacity: 1;
}
.header__nav ul {
  display: flex;
  padding: 48px 34px;
  flex-direction: column;
  gap: 20px;
}
.header__nav:not(.active) ul {
  pointer-events: none;
}
.header__nav ul li {
  display: flex;
  align-items: center;
}
.header__nav ul li:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  margin-right: 16px;
}
.header__nav ul li.nav-cart:before {
  background: url(../../images/index/ico-cart.svg) no-repeat center center;
}
.header__nav ul li.nav-account:before {
  background: url(../../images/index/ico-account.svg) no-repeat center center;
}
.header__nav ul li.nav-help:before {
  background: url(../../images/index/ico-help.svg) no-repeat center center;
}
.header__nav ul li.nav-store:before {
  background: url(../../images/index/ico-bag.svg) no-repeat center center;
}
.header__nav ul li.nav-top:before {
  background: url(../../images/index/ico-l-arrow.svg) no-repeat center center;
}
.header__nav ul li.nav-mail:before {
  background: url(../../images/index/ico-mail.svg) no-repeat center center;
}

.header-bar {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  margin: 0 auto;
  top: 0;
  opacity: 1;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.header-inner-side-left {
  width: 84px;
  display: flex;
  justify-content: start;
}

.header-inner-side-right {
  width: 84px;
  display: flex;
  justify-content: end;
}

@media (hover: hover) {
  .header__nav a {
    transition: opacity 0.2s ease 0.05s;
  }
  .header__nav a:hover {
    opacity: 0.6;
  }
}
.header-inner .store-logo {
  display: block;
}
@media only screen and (max-width: 1240px) {
  .header-inner .store-logo {
    padding-left: 20px;
  }
}

#openMenu {
  display: none;
}
#spHeadLogo {
  display: none;
}

a {
  cursor: pointer;
}

/* product detail
-------------------------------------------------------------------------------*/

.product-slide {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}

.product {
  padding: 88px 1%;
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
}

.detail,
.related-product,
.related-content {
  width: 100%;
  padding: 54px 5%;
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.detail {
  background-color: #f5efe9;
}

.detail > div,
.related-product > div,
.related-content > div {
  width: 950px;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.description {
  padding-top: 1.5em;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.product-item li {
  max-width: 100%;
}

.product-item .product-img {
  width: 184px;
  max-width: 100%;
  margin-inline: auto;
}

.product-item .product-header {
  width: fit-content;
  margin-inline: auto;
}

.product-item h2 {
  font-size: 18px;
  font-family: "Shuei MaruGo B";
  text-align: justify;
  margin-top: 0.35em;
}

.product-item .price {
  font-size: 18px;
  margin-top: 0.35em;
}

.btn-cart {
  background-color: #4d87ff;
  color: #ffffff;
  font-size: 15px;
  width: 300px;
  max-width: 100%;
  height: 48px;
  margin-inline: auto;
  border-radius: 100vmax;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  line-height: 1.25;
}

.btn-cart small {
  display: block;
  opacity: .5;
  text-align: center;
  font-size: 12px;
}

.product-slide img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  line-height: 2;
}

.product-info a {
  color: #4d87ff;
  text-decoration: underline;
}
.product-info dd {
  margin-top: 0.5em;
}
.product-info h3 {
  font-size: 20px;
  font-family: "Shuei MaruGo B";
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dotted #333;
}

.product-info .product-article h3 {
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 0px;
}

.related-content {
  background-color: #B6D4DC;
}

.related-product {
  background-color: #FFFFFF;
}

.related-content a,
.related-product a {
  color: #333333;
  text-decoration: none;
}

.related-content ul,
.related-product ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
  justify-content: start;
  font-size: 14px;
  line-height: 2;
}

.related-content li {
  width: 200px;
}

.related-product li {
  width: 126px;
}

@media only screen and (max-width: 560px) {
  .related-content ul,
  .related-product ul {
    gap: 10vw 5vw;
    justify-content: space-between;
  }

  .related-content li {
    width: calc(50% - 2.5vw);
  }
  
  .related-product li {
    width: calc(50% - 2.5vw);
  }
}

.related-content .product-info h3,
.related-product .product-info h3 {
  border-bottom: none;
  margin-bottom: 16px;
}

.related-content .product-info h4,
.related-product .product-info h4 {
  margin-top: 10px;
}

.product-article {
  margin-top: 1rem;
}

.page-messages {
  margin-top: 1.5rem;
  max-width: 280px;
  font-size: 14px;
  margin-inline: auto;
}

.page-messages p.text-red {
  color: #DD0000;
}

.page-columns {
  display: flex;
}

.page-columns-item {
  width: 50%;
}

.page-columns-item:nth-of-type(even) {
  padding-left: 30px;
}

.cart li {
  display: none;
  margin: 8px 25px;
  vertical-align: top;
  line-height: 1;
}

.cart a:not(.sold) {
  cursor: pointer;
}

.cart a.sold {
  cursor: default;
}

.cart p {
  margin-bottom: 8px;
}

.cart li img {
  width: 100px;
}

.cart li img[alt="add_cart"] {
  width: 150px;
}

.cart li span {
  display: block;
  font-size: 11px;
  margin-top: 8px;
}

.sold {
  cursor: default;
}
@media (hover: hover) {
  .sold > img:hover {
    opacity: 1;
  }
}

.red {
  color: #f00;
}

.footer {
  background-color: #fff;
  width: 100%;
  padding: 40px 5%;
}
@media (min-width: 1025px) {
  .footer {
    padding: 35px 5%;
  }
}
.footer .button {
  font-size: 14px;
  min-width: 200px;
}
@media (min-width: 1025px) {
  .footer .button {
    font-size: 15px;
  }
}
.footer .footer__sns ul {
  display: flex;
  justify-content: space-between;
  width: 182px;
  margin: 0 auto;
}
.footer .footer__links {
  margin: 40px auto;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1025px) {
  .footer .footer__links {
    margin: 35px auto;
    flex-direction: row;
  }
}
.footer .footer__links .footer__links-contents {
  font-size: 14px;
  width: 500px;
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
  flex-direction: column;
  align-items: center;
}
.footer .footer__links .footer__links-contents .footer__links__help {
  order: 1;
}
.footer .footer__links .footer__links-contents .footer__links__top {
  order: 3;
}
.footer .footer__links .footer__links-contents .footer__links__mail {
  order: 2;
}
.footer .footer__links .footer__links-contents .footer__links__home {
  order: 4;
}
@media (min-width: 1025px) {
  .footer .footer__links .footer__links-contents {
    font-size: 15px;
    flex-direction: row;
  }
  .footer .footer__links .footer__links-contents .footer__links__top {
    order: 2;
  }
  .footer .footer__links .footer__links-contents .footer__links__mail {
    order: 3;
  }
}
.footer .footer__links .footer__links-corp {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer__corp-logo {
  display: flex;
  place-content: center;
}
.footer .footer__corp-logo img {
  width: 90px;
}
.footer .button {
  font-size: 15px;
  border: 1px solid #333333;
  border-radius: 25px;
  padding: 10px 20px;
  display: inline-block;
  text-align: center;
}

/* reflow
-------------------------------------------------------------------------------*/
@media only screen and (max-width: 560px) {
  .product,
  .detail,
  .related-product,
  .related-content {
    padding: 36px 5%;
    font-size: 14px;
  }

  .detail,
  .related-product,
  .related-content {
    gap: 40px;
  }

  .detail > div {
    gap: 32px;
  }

  .description {
    padding-top: 0;
  }  

  .page-columns {
    flex-direction: column;
    gap: 18px;
  }

  .product .page-columns {
    gap: 52px;
  }

  .page-columns-item {
    width: 100%;
  }

  .page-columns-item:nth-of-type(even) {
    padding-left: 0;
  }

  .product-item h2 {
    font-size: 17px;
  }

  .product-item .price {
    font-size: 14px;
  }

  .btn-cart {
    font-size: 12px;
    width: 230px;
    height: 38px;
  }

  .product-info h3 {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .wrapper {
    width: 100%;
  }

  #contentNav li > a {
    height: 50vw;
  }

  .manuDeactive li {
    display: none !important;
  }

  #footer {
    font-size: 14px;
  }
  #footer li + li {
    margin-left: 5%;
  }

  .cart li {
    width: 38%;
    margin: 25px 2.5%;
  }

  .cart li img {
    width: 100%;
  }
}

/* modal
-------------------------------------------------------------------------------*/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

#modal-cart .modal__container {
  padding: 0;
  width: 90vw;
  max-width: 1000px;
}

#modal-cart .modal__close {
  color: #FFFFFF;
  font-size: 18px;
}

#modal-cart .cart-sku-img {
  width: 50px;
}

#modal-cart .cart-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

#modal-cart .cart-icon-plus {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

#modal-cart .cart-wrapper {
  padding-block: 4px;
}

#modal-cart .cart-btn {
  background-color: #4D87FF;
  color: #FFFFFF;
  width: auto;
  height: 48px;
  max-width: 240px;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: opacity .3s;
}

#modal-cart .cart-btn.sold {
  background-color: #ccc;
  color: #666;
  cursor: default;
}

#modal-cart .cart-stock {
  text-align: center;
  margin-top: 4px;
  font-size: 14px;
}

#modal-cart .cart-rearrival {
  margin-top: 4px;
  font-size: 14px;
}

#modal-cart .cart-header {
  max-width: 960px;
  margin-inline: auto;
  padding: 16px 4.25vw;
  border-bottom: 1px solid #e6e6e6;
}

#modal-cart .cart-page-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

#modal-cart .cart-collection-name {
  display: none;
  color: #666;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

#modal-cart .cart-product {
  padding-block: 16px;
}

#modal-cart .cart-container {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding: 8px 4.25vw;
}

#modal-cart .cart-container dt {
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#modal-cart .cart-container dd {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid #e6e6e6;
}

#modal-cart header {
  background-color: #4D87FF;
  height: 32px;
  line-height: 1;
  padding-inline: 16px 4px; 
}

#modal-cart .modal__title {
  color: #FFFFFF;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}

#modal-cart .cart-btn span {
  display: none;
}

#modal-cart .cart-product-message .text-red {
  color: #DD0000;
}

@media screen and (min-width: 768px) {
  #modal-cart .cart-btn span {
    display: block;
  }
}

.modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__content p + p {
  margin-top: 1em;
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__footer {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #4d87ff;
  color: #fff;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
  position: relative;
  z-index: 20;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

#modal-age-verify1,
#modal-age-verify2 {
  font-size: 16px;
}
.age-verify-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
  margin-bottom: 1em;
}
.age-verify-form > div {
  display: flex;
  align-items: center;
}
.age-verify-form input {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.age-verify-form label {
  font-size: 18px;
  font-weight: 700;
  margin-right: 0.5em;
}
.age-verify-form span {
  margin-right: 0.2em;
}
input#birth-year {
  width: 5em;
}
input#birth-month,
input#birth-day,
input#birth-age {
  width: 3em;
}
