@charset "UTF-8";
/*
Pure CSS modal box
Author: Jorge Chavez
Github: http://github.com/jorgechavz
*/
.modal {
  position: relative;
}
.modal .checkbox {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.modal .modal-overlay {
  opacity: 0;
  transition: all 0.3s ease;
  width: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  transform: scale(1);
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal .modal-wrap {
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  padding: 40px 50px;
  width: 60%;
  margin: 20px auto;
  align-self: flex-start;
  border-radius: 2px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.modal .modal-wrap.small {
  width: 30%;
}
.modal .modal-wrap.full {
  width: 100%;
  height: 100%;
}
.modal .modal-wrap.a-center {
  align-self: center;
}
.modal .modal-wrap.from-left {
  transform: translateX(-100%);
}
.modal .modal-wrap.from-right {
  transform: translateX(100%);
}
.modal .modal-wrap.from-top {
  transform: translateY(-100%);
}
.modal .modal-wrap.from-bottom {
  transform: translateY(100%);
}
.modal .modal-overlay .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #282c34;
}
.modal .modal-overlay .close:hover {
  cursor: pointer;
  color: #4b5361;
}
.modal .o-close {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -100;
}
.modal input:checked ~ .o-close {
  z-index: 19998;
}
.modal input:checked ~ .modal-overlay {
  transform: scale(1);
  opacity: 1;
  z-index: 19997;
  overflow: auto;
  display: flex;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
.modal input:checked ~ .modal-overlay .modal-wrap {
  transform: translateY(0);
  z-index: 19999;
}

/* Gray background */
/* Box */
/* Close button */
/* Responsive Design */
/* Tablet size */
@media (max-width: 800px) {
  .modal .modal-wrap {
    width: 80%;
    padding: 20px;
  }
}
/* Phone size */
@media (max-width: 500px) {
  .modal .modal-wrap {
    width: 90%;
  }
}
/* Fadein from display:none */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
.notice180906 h2 {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.notice180906 h2 strong {
  display: block;
  background-color: #f3383b;
  font-weight: bold;
  padding: 3px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}
.notice180906 .date {
  text-align: center;
}
.notice180906 p {
  font-size: 14px;
  line-height: 1.5;
}
.notice180906 .note {
  padding: 10px;
  background-color: #f3f0eb;
  font-size: 16px;
  line-height: 1.5;
}
.notice180906 .note h3 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.notice180906 .note strong {
  color: #f3383b;
}
.notice180906 .btn a {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 20px;
  font-size: 16px;
  position: relative;
}
.notice180906 .btn a:after {
  display: block;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.vacation-note .o-open {
  display: block;
  text-align: center;
  padding: 15px;
  position: relative;
  margin: 0 10px .5em;
  border: 5px solid #E7E1D7;
  background-color: #fff;
}
.vacation-note .o-open:after {
  display: block;
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(https://cdn.shopserve.jp/toyosu-shop.jp/cdnassets/img/common/icon_popup.png);
  background-size: contain;
  top: 50%;
  right: 10px;
  margin-top: -8px;
}
.vacation-note h2 {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  padding: 5px;
}
.vacation-note .date {
  text-align: center;
  padding: 10px 0;
}
.vacation-note ul li {
  position: relative;
  line-height: 1.8;
  padding-left: 20px;
}
.vacation-note ul li strong {
  color: #da1e16;
}
.vacation-note ul li:before {
  content: '●';
  position: absolute;
  display: block;
  top: 2px;
  left: 0;
  color: #E7E1D7;
}

.modal2 {
  position: relative;
}
.modal2 .checkbox {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.modal2 .modal-overlay {
  opacity: 0;
  transition: all 0.3s ease;
  width: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  transform: scale(1);
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal2 .modal-wrap {
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  padding: 40px 50px;
  width: 60%;
  margin: 20px auto;
  align-self: flex-start;
  border-radius: 2px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.modal2 .modal-wrap.small {
  width: 30%;
}
.modal2 .modal-wrap.full {
  width: 100%;
  height: 100%;
}
.modal2 .modal-wrap.a-center {
  align-self: center;
}
.modal2 .modal-wrap.from-left {
  transform: translateX(-100%);
}
.modal2 .modal-wrap.from-right {
  transform: translateX(100%);
}
.modal2 .modal-wrap.from-top {
  transform: translateY(-100%);
}
.modal2 .modal-wrap.from-bottom {
  transform: translateY(100%);
}
.modal2 .modal-overlay .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #282c34;
}
.modal2 .modal-overlay .close:hover {
  cursor: pointer;
  color: #4b5361;
}
.modal2 .o-close {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -100;
}
.modal2 input:checked ~ .o-close {
  z-index: 19998;
}
.modal2 input:checked ~ .modal-overlay {
  transform: scale(1);
  opacity: 1;
  z-index: 19997;
  overflow: auto;
  display: flex;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
.modal2 input:checked ~ .modal-overlay .modal-wrap {
  transform: translateY(0);
  z-index: 19999;
}

/* Gray background */
/* Box */
/* Close button */
/* Responsive Design */
/* Tablet size */
@media (max-width: 800px) {
  .modal2 .modal-wrap {
    width: 80%;
    padding: 20px;
  }
}
/* Phone size */
@media (max-width: 500px) {
  .modal2 .modal-wrap {
    width: 90%;
  }
}
.note200407 .o-open {
  display: block;
  text-align: center;
  padding: 10px 0;
  position: relative;
  margin: 0 10px .5em;
  line-height: 1.5;
  border: 5px solid #E7E1D7;
}
.note200407 .o-open:after {
  display: block;
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(https://cdn.shopserve.jp/toyosu-shop.jp/cdnassets/img/common/icon_popup.png);
  background-size: contain;
  top: 50%;
  right: 10px;
  margin-top: -8px;
}
.note200407 h2 {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  padding: 5px;
}
.note200407 .date {
  text-align: center;
  padding: 10px 0;
}
.note200407 ul li {
  position: relative;
  line-height: 1.8;
  padding-left: 20px;
}
.note200407 ul li strong {
  color: #da1e16;
}
.note200407 ul li:before {
  content: '●';
  position: absolute;
  display: block;
  top: 2px;
  left: 0;
  color: #E7E1D7;
}

.modal3 {
  position: relative;
}
.modal3 .checkbox {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.modal3 .modal-overlay {
  opacity: 0;
  transition: all 0.3s ease;
  width: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  transform: scale(1);
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal3 .modal-wrap {
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  padding: 40px 50px;
  width: 60%;
  margin: 20px auto;
  align-self: flex-start;
  border-radius: 2px;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.modal3 .modal-wrap.small {
  width: 30%;
}
.modal3 .modal-wrap.full {
  width: 100%;
  height: 100%;
}
.modal3 .modal-wrap.a-center {
  align-self: center;
}
.modal3 .modal-wrap.from-left {
  transform: translateX(-100%);
}
.modal3 .modal-wrap.from-right {
  transform: translateX(100%);
}
.modal3 .modal-wrap.from-top {
  transform: translateY(-100%);
}
.modal3 .modal-wrap.from-bottom {
  transform: translateY(100%);
}
.modal3 .modal-overlay .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #282c34;
}
.modal3 .modal-overlay .close:hover {
  cursor: pointer;
  color: #4b5361;
}
.modal3 .o-close {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -100;
}
.modal3 input:checked ~ .o-close {
  z-index: 19998;
}
.modal3 input:checked ~ .modal-overlay {
  transform: scale(1);
  opacity: 1;
  z-index: 19997;
  overflow: auto;
  display: flex;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
.modal3 input:checked ~ .modal-overlay .modal-wrap {
  transform: translateY(0);
  z-index: 19999;
}

/* Gray background */
/* Box */
/* Close button */
/* Responsive Design */
/* Tablet size */
@media (max-width: 800px) {
  .modal3 .modal-wrap {
    width: 80%;
    padding: 20px;
  }
}
/* Phone size */
@media (max-width: 500px) {
  .modal3 .modal-wrap {
    width: 90%;
  }
}
/*-------------------------------------------

210721　オリンピック開催期間中の配送遅延のお知らせ
-------------------------------------------*/
.note-tokyo-olympic .contentbox {
  box-sizing: border-box;
  padding: 10px;
}

.note-tokyo-olympic .contentbox .text {
  line-height: 1.8em;
}

.note-tokyo-olympic .contentbox .btn {
  margin-top: 30px;
}

.note-tokyo-olympic .contentbox .btn a {
  display: block;
  text-align: center;
  border: 5px solid #E7E1D7;
  width: 100%;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #000;
  position: relative;
  box-sizing: border-box;
}

.note-tokyo-olympic .contentbox .btn a::after {
  width: 20px;
  height: 20px;
  content: '';
  background-image: url(https://cdn.shopserve.jp/toyosu-shop.jp/cdnassets/img/common/icon_external-link.png);
  -webkit-background-size: contain;
  background-size: contain;
  display: inline-block;
  margin-left: 20px;
  position: absolute;
  right: 20px;
  top: 5px;
}

.note-tokyo-olympic .contentbox .btn a:hover {
  opacity: .8;
}

.kanpa2023.vacation-note .o-open {
  border-color: #f85555;
}
.kanpa2023 .icon_caution:before {
  display: block;
  content: '';
  position: absolute;
  width: 31px;
  height: 28px;
  background-image: url(https://toyosu-shop.jp/pic-labo/icon_caution.png);
  background-size: contain;
  top: 50%;
  left: 10px;
  margin-top: -14px;
}
