@charset "utf-8";
/* CSS Document */

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

* {
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
blockquote,
hr,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  vertical-align: middle;
}

address {
  font-style: normal;
}

.form [type="text"],
.form [type="password"],
.form [type="file"],
.form [type="submit"],
.form [type="reset"],
.form [type="button"],
.form [type="search"],
.form [type="tel"],
.form [type="url"],
.form [type="email"],
.form [type="number"],
.form textarea,
.form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

@media (max-width: 767px) {

  .form [type="text"],
  .form [type="password"],
  .form [type="search"],
  .form [type="tel"],
  .form [type="url"],
  .form [type="email"],
  .form [type="date"],
  .form [type="time"],
  .form [type="number"],
  .form [type="color"],
  .form textarea,
  .form select {
    font-size: 1.6rem;

    .fs-c-sortItems {
      border: 1px solid #ccc;
    }

    .fs-c-sortItems__list {
      border-left: 1px solid #ccc;
    }

    .fs-p-productSearch__formSwitch {
      background: rgba(126, 126, 126, 0.2);
    }
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
    color: inherit;
  }
}

/* 001 */
.button001 {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button001:hover {
  background: #313131;
  color: #FFF;
}

.button001:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button001:hover:after {
  border-color: #FFF;
}

#popup {
  display: none;
  /* label でコントロールするので input は非表示に */
}

.popup-open {
  cursor: pointer;
  /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.popup-overlay {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

#popup:checked~.popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup-window {
  width: 90vw;
  max-width: 800px;
  /*padding: 20px;*/
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-text {
  margin: 0;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}

.fs-c-buttonContainer {
  justify-content: center !important;
}

.fs-c-button--inquiryAboutProduct {
  display: inline-block;
  width: 100%;
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  color: #000000;
  margin-top: 0.5em;
  padding: 1em !important;
  background: #e5e5e5 !important;
  border: 1px solid #e5e5e5 !important;
  transition: 0.6s;
}

.fs-c-productActionButton .fs-c-button--subscribeToArrivalNotice--detail {
  display: inline-block;
  width: 100%;
  line-height: 1.6;
}