@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:bold}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: 14px/1.8 "秀英丸ゴシック L", "Shuei MaruGo L","ヒラギノ丸ゴ Pro W3", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333;
}

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

@media(hover: hover) {
  .op:hover,
  a > img {
    transition: opacity 0.2s ease 0.05s;
  }
  a > img:hover{ opacity: 0.6; }
}

a[target="_blank"]::after,
a[target="_new"]::after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
}

[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{
  width: 1000px;
  margin: 50px auto;
  padding-bottom: 20px;
}

.clmn2, .clmn3, .clmn4, .clmn5{
  width: 100%;
  letter-spacing: -0.35em;
}

.clmnBox, .clmnBoxList > li{
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  letter-spacing: 0;
}

.clmn2 .clmnBox{ width: 50%; }
.clmn3 .clmnBoxList > li{ width: 33%; }
.clmn4 .clmnBoxList > li{ width: 25%; }


/* 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 .4s;
  width: 100%;
  height: 100%;
}

button.header__menu {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  border-width: 0;
}
.header__menu span {
  display: inline-block;
  transition: all .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 .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: 1000px;
  max-width: 100%;
  background-color: #fff;
  z-index: 10;
  margin: 0;
  top: 0;
  opacity: 1;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 18px;
}
@media (hover: hover) {
  .header__nav a {
    transition: opacity .2s ease .05s;
  }
  .header__nav a:hover {
    opacity: .6
  }
}

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

#footer{
  margin-top: 45px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.2em;
}
#footer li{ display: inline-block; }
#footer li + li{ margin-left: 52px; }
#footer li > a{ display: block; }

#footer ul{ margin-top: 25px; }
#footer ul:first-of-type img{ width: 39px; }

#footer ul:last-of-type{
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #000;
}
#footer ul:last-child li{ margin-bottom: 3%; }

#footer p img{ width: 229px; }

/* product detail
-------------------------------------------------------------------------------*/
.productSlide img{
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productSlide {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  transition: opacity 0.2s ease;
}
.productSlide .mainImgs{
  position: relative;
  box-sizing: border-box;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.productSlide .mainImgs li{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .5s;
}

.productSlide .thumb{
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  background-color: #fff;
}
ul.thumb li + li {
  border-left: 1px solid #000;
}
.productSlide .thumb li{
  box-sizing: border-box;
  cursor: pointer;
  background-color: #fff;
}
.productSlide .thumb li img {
  opacity: 0.6;
  transition: opacity .2s;
}
.productSlide .thumb li.active img,
.productSlide .thumb li.over img { opacity: 1; }
@media(hover: hover) {
  .productSlide .thumb li img:hover {
    opacity: 1;
  }
}
.slide-enter-from,
.slide-leave-to {
  opacity: 0;
}
.productInfo {
  padding-bottom: 15px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.productInfo a {
  color: #4d87ff;
  text-decoration: underline;
}
.productInfo dl + dl {
  margin-top: 1.25em;
}
.productInfo dd {
  margin-top: 0.5em;
  line-height: 1.5;
}
.productInfo h3 {
  font-size: 120%;
  margin-top: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
}

.productDetail{
  box-sizing: border-box;
  margin: 10px 0;
  border: 1px solid #000;
  padding: 6.8% 0;
}
.productDetail > div:first-child{
  width: 450px;
  text-align: center;
}
.productDetail > div:last-child{ width: 540px; padding-right: 42px; }

.productDetail .productImg > img{ width: 270px; }

.productDetail h1,
.productDetail h2 {
  margin: 15px auto;
  padding: 0 2%;
}

.productDetail .cartLabel > img{ width: 134px; }

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

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

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

.size4 li{ margin: 25px; }
.size6 li{ margin: 25px 10px; }

.cart li img,
.size4 li img,
.size6 li img{ width: 100px; }

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

.cart li img[alt^="size"],
.size4 li img[alt^="size"],
.size6 li img[alt^="size"]{ width: 150px; }

.size1 li img{ width: 150px; } 

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

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

.productDetail > div:last-child > p{ margin-bottom: 30px; }
.productDetail > div:last-child > p strong{
  display: block;
  font-size: 15px;
}

.productDetail > div:last-child a{ color: #4d87ff; }

.red{ color: #f00; }


/* reflow
-------------------------------------------------------------------------------*/
/* 500px 以下 */
@media only screen and (max-width: 500px) {
  
  .wrapper{ width: 100%; }
  
  .clmn2 .clmnBox,
  .clmnBoxList > li{ width: 100%; }
  .clmn3 .clmnBoxList > li{ width: 100% !important; }
  .clmn4 .clmnBoxList > li{ width: 50%;}
  #contentNav li > a{
    height: 50vw;
  }
  
  .manuDeactive li{ display: none !important; }
  
  #footer{ font-size:14px; }
  #footer li + li{ margin-left: 5%; }

  .productSlide,
  .productDetail {
    border-left: none;
    border-right: none;
  }
  .productDetail > div:first-child{ width: 100%; }
  .productDetail > div:last-child{
    width: 100%;
    margin-top: 25px;
    padding: 5%;
  }
  
  .cart li{
    width: 38%;
    margin: 25px 2.5%;
  }
  
  /* .size1 li{ width: 50%; } */
  .size4 li, .size6 li{ margin: 25px 2.5%; }

  .cart li img,
  .size4 li img,
  .size6 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__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,.8);
}
.modal__content p + p {
  margin-top: 1em;
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .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 .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .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;
}

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

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

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

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

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(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;
}
