@charset "UTF-8";
/* Scss Document */
@keyframes zoom {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes menu {
  100% {
    background: url(../img/bg-menu-top.png) repeat-x -903px 0;
  }
}
@keyframes menu-sp {
  100% {
    background: url(../img/bg-menu-top.png) repeat-x -58.4vw 0/58.4vw auto;
  }
}
@keyframes menu-bottom {
  100% {
    background: url(../img/bg-menu-bottom.png) repeat-x 903px 0;
  }
}
@keyframes menu-bottom-sp {
  100% {
    background: url(../img/bg-menu-bottom.png) repeat-x 58.4vw 0/58.4vw auto;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 共通設定 */
html, body {
  min-height: 100%;
}

body {
  background: #e43a34;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: #333;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  background: url("../img/bg-white.jpg");
}
.wrapper.load {
  animation: fadein 1s linear forwards;
}

img {
  max-width: 100%;
  height: auto;
}

.pc {
  display: block;
}
@media screen and (max-width: 1110px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .sp {
    display: block;
  }
}

.header {
  background: #fff;
  width: 100%;
  height: 100px;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 50;
}
@media screen and (max-width: 1110px) {
  .header {
    height: 14vw;
  }
}
.header .title {
  display: inline-block;
  margin: 12px 0 0 0;
}
@media screen and (max-width: 1110px) {
  .header .title {
    margin: 1.75vw 0 0 0.5vw;
    width: 55vw;
  }
}
@media screen and (max-width: 1110px) {
  .header .title img {
    width: 100%;
  }
}
.header .menu {
  background: #fff url("../img/bg-white.jpg");
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  padding: 120px 60px;
  overflow: auto;
  height: 100vh;
  display: none;
  z-index: 60;
  /* 開閉時 */
}
@media screen and (max-width: 1110px) {
  .header .menu {
    width: 85vw;
    padding: 12.5vw 10vw;
  }
}
.header .menu .simplebar-content:before {
  background: url("../img/bg-menu-top.png") repeat-x 0 0;
  animation: menu 20s linear infinite normal;
  top: 68px;
  width: 400px;
  height: 108px;
  right: 0;
  position: fixed;
}
@media screen and (max-width: 1110px) {
  .header .menu .simplebar-content:before {
    animation: menu-sp 20s linear infinite normal;
    height: 15vw;
    top: 5.5vw;
    width: 85vw;
    background-size: 58.4vw auto;
  }
}
.header .menu .simplebar-content:after {
  background: url("../img/bg-menu-bottom.png") repeat-x 0 0;
  animation: menu-bottom 20s linear infinite normal;
  height: 108px;
  right: 0;
  width: 400px;
  bottom: 40px;
  position: fixed;
}
@media screen and (max-width: 1110px) {
  .header .menu .simplebar-content:after {
    animation: menu-bottom-sp 20s linear infinite normal;
    height: 15vw;
    width: 85vw;
    background-size: 58.4vw auto;
    bottom: 5vw;
  }
}
.header .menu.open {
  display: block;
}
.header .menu .headline {
  font-size: 3.25rem;
  font-weight: bold;
  margin: 0 0 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1110px) {
  .header .menu .headline {
    font-size: 7vw;
    margin: 0 0 10vw;
  }
}
.header .menu .gnavi {
  position: relative;
  z-index: 1;
}
.header .menu .gnavi-list {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 0 30px;
}
@media screen and (max-width: 1110px) {
  .header .menu .gnavi-list {
    font-size: 4vw;
    margin: 0 0 5vw;
  }
}
.header .menu .gnavi-listtitle {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.header .menu .gnavi-listtitle .plus {
  position: absolute;
  right: -1rem;
  top: 0.85rem;
}
@media screen and (max-width: 1110px) {
  .header .menu .gnavi-listtitle .plus {
    right: -3vw;
    top: 0;
  }
}
.header .menu .gnavi-listtitle .plus:before, .header .menu .gnavi-listtitle .plus:after {
  width: 14px;
  height: 1px;
  display: block;
  content: "";
  background: #333;
  position: absolute;
}
@media screen and (max-width: 1110px) {
  .header .menu .gnavi-listtitle .plus:before, .header .menu .gnavi-listtitle .plus:after {
    width: 3vw;
    height: 0.25vw;
    top: 2.75vw;
  }
}
.header .menu .gnavi-listtitle .plus:before {
  transform: rotate(90deg);
  transition: 0.2s;
}
.header .menu .gnavi-listtitle .plus.open:before {
  transform: rotate(0deg);
}
.header .menu .category {
  font-weight: normal;
  font-size: 1rem;
  height: 0;
  overflow: hidden;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header .menu .category {
    font-size: 3vw;
  }
}
.header .menu .category.open {
  height: 100%;
}
.header .menu .category-list {
  margin: 0 0 10px;
}
@media screen and (max-width: 1110px) {
  .header .menu .category-list {
    margin: 0 0 3vw;
  }
}
.header .menu .category-list:first-child {
  margin: 15px 0;
}
@media screen and (max-width: 1110px) {
  .header .menu .category-list:first-child {
    margin: 3vw 0;
  }
}
.header .menu-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 1110px) {
  .header .menu-icon {
    width: 14vw;
    height: 14vw;
  }
}
.header .menu-icon:after {
  content: "MENU";
  width: 100%;
  font-weight: bold;
  color: #e43a34;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 15px;
}
@media screen and (max-width: 1110px) {
  .header .menu-icon:after {
    bottom: 1.5vw;
    font-size: 2.5vw;
  }
}
.header .menu-icon span {
  width: 45px;
  height: 2px;
  display: block;
  background: #e43a34;
  position: absolute;
  left: 28px;
  top: 40px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header .menu-icon span {
    width: 8vw;
    height: 0.5vw;
    left: 3.5vw;
    top: 6vw;
  }
}
.header .menu-icon span:nth-child(1) {
  transform: translateY(-8px);
}
@media screen and (max-width: 1110px) {
  .header .menu-icon span:nth-child(1) {
    transform: translateY(-2.5vw);
  }
}
.header .menu-icon span:nth-child(2) {
  transform: translateY(8px);
  width: 30px;
  left: 43px;
}
@media screen and (max-width: 1110px) {
  .header .menu-icon span:nth-child(2) {
    transform: translateY(0.5vw);
    width: 6vw;
    left: 5.5vw;
  }
}
.header .menu-icon.open:after {
  content: "CLOSE";
}
.header .menu-icon.open span:nth-child(1) {
  transform: translateY(0) rotate(20deg);
}
.header .menu-icon.open span:nth-child(2) {
  transform: translateY(0) rotate(-20deg);
  width: 45px;
  left: 28px;
}
@media screen and (max-width: 1110px) {
  .header .menu-icon.open span:nth-child(2) {
    transform: translateY(0) rotate(-20deg);
    width: 8vw;
    left: 3.5vw;
  }
}
.header .bg-nav {
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 51;
  display: none;
  cursor: pointer;
}
.header .bg-nav.open {
  display: block;
}

.list {
  width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1110px) {
  .list {
    width: 100%;
  }
}
.list-item {
  font-size: 2rem;
  margin: 0 0 45px;
}
@media screen and (max-width: 1110px) {
  .list-item {
    font-size: 3vw;
    margin: 0 0 2.5vw;
  }
}
.list-thumb {
  margin: 0 0 15px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1110px) {
  .list-thumb {
    margin: 0 0 3vw;
  }
}
.list-thumb .list-attention {
  position: absolute;
  display: block;
  background: rgba(228, 58, 52, 0.8);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px;
  bottom: 0;
}
@media screen and (max-width: 1110px) {
  .list-thumb .list-attention {
    padding: 2vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 1110px) {
  .list-thumb img {
    width: 100%;
    height: auto;
  }
}
.list-name {
  font-size: 1.5rem;
  margin: 0 0 15px;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .list-name {
    font-size: 3vw;
    margin: 0 0 3vw;
  }
}
.list-price {
  text-align: right;
  font-size: 2.25rem;
  font-weight: bold;
  color: #e43a34;
  margin: 0 0 15px;
}
@media screen and (max-width: 1110px) {
  .list-price {
    font-size: 6vw;
    margin: 0 0 3vw;
  }
}
.list-price:before {
  font-size: 1.5rem;
  content: "$";
}
@media screen and (max-width: 1110px) {
  .list-price:before {
    font-size: 4vw;
  }
}
.list-text + a {
  width: 100%;
  line-height: 70px;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  background: #e43a34;
  color: #fff;
  text-align: center;
  border-radius: 70px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .list-text + a {
    line-height: 10vw;
    font-size: 3vw;
    border-right: 10vw;
  }
}
.list-text + a:hover {
  transform: translateX(5px);
}
@media screen and (max-width: 1110px) {
  .list-text + a:hover {
    transform: translateX(1vw);
  }
}

.content {
  width: 100%;
  position: relative;
  flex: 1;
}
.content section {
  width: 100%;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 1110px) {
  .content section {
    padding: 12.5vw 0;
  }
}
.content section:before {
  content: "";
  width: 100%;
  z-index: 0;
  position: absolute;
  top: 53px;
  height: 250px;
}
@media screen and (max-width: 1110px) {
  .content section:before {
    top: 6.75vw;
  }
}
.content section:after {
  content: "";
  width: 100%;
  z-index: 0;
  position: absolute;
  bottom: 40px;
  height: 220px;
}
@media screen and (max-width: 1110px) {
  .content section:after {
    bottom: 5vw;
  }
}
.content section .container {
  margin: 0 auto;
  width: 950px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1110px) {
  .content section .container {
    width: 90%;
  }
}
.content section .headline {
  width: 950px;
  margin: 0 0 120px;
  text-align: center;
  font-weight: bold;
  font-size: 3.25rem;
  position: relative;
}
@media screen and (max-width: 1110px) {
  .content section .headline {
    width: 100%;
    margin: 0 0 15vw;
    font-size: 7vw;
  }
}
.content section .headline:after {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 60px;
  background: #8e8e8e;
  left: calc(50% - 1px);
  bottom: -75px;
}
@media screen and (max-width: 1110px) {
  .content section .headline:after {
    width: 0.25vw;
    height: 10vw;
    bottom: -10vw;
    left: calc(50% - 0.125vw);
  }
}
.content section .headline span {
  font-size: 1rem;
  font-weight: normal;
  display: block;
}
@media screen and (max-width: 1110px) {
  .content section .headline span {
    font-size: 3vw;
  }
}
.content section.bg-red {
  background: #e43a34 url("../img/bg-red.png");
  color: #fff;
}
.content section.bg-red .headline:after {
  background: #fff;
}
.content section.bg-orange {
  background: #fbb544 url("../img/bg-orange.png");
  color: #fff;
}
.content section.bg-orange .headline:after {
  background: #fff;
}

.pagetop {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #e43a34;
  font-weight: bold;
  padding: 30px 0 0;
}
@media screen and (max-width: 1110px) {
  .pagetop {
    bottom: 3vw;
    right: 3vw;
    font-size: 3vw;
    padding: 3vw 0 0;
  }
}
.pagetop:after {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  border-top: solid 2px #e43a34;
  border-right: solid 2px #e43a34;
  position: absolute;
  transform: rotate(-45deg);
  right: 24px;
  bottom: 10px;
}
@media screen and (max-width: 1110px) {
  .pagetop:after {
    width: 5vw;
    height: 5vw;
    border-top: solid 0.25vw #e43a34;
    border-right: solid 0.25vw #e43a34;
    right: 4vw;
    bottom: 2.5vw;
  }
}

.footer {
  background: #e43a34 url("../img/bg-red.png");
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding: 90px 0;
}
@media screen and (max-width: 1110px) {
  .footer {
    font-size: 2vw;
    padding: 12.5vw 0;
  }
}
.footer .footer-link {
  margin: 0 0 45px;
}
@media screen and (max-width: 1110px) {
  .footer .footer-link {
    margin: 0 auto 10vw;
    width: 50vw;
  }
}
.footer .share {
  display: flex;
  gap: 30px;
  margin: 0 auto 60px;
  justify-content: center;
}
@media screen and (max-width: 1110px) {
  .footer .share {
    gap: 5vw;
    margin: 0 0 10vw;
  }
}
@media screen and (max-width: 1110px) {
  .footer .share-list {
    width: 10vw;
    height: 10vw;
  }
}
@media screen and (max-width: 1110px) {
  .footer .share-list img {
    width: 100%;
    height: 100%;
  }
}
.footer .copyright {
  margin: 0 0 15px;
}
@media screen and (max-width: 1110px) {
  .footer .copyright {
    margin: 0 0 3vw;
  }
}
.footer .copyright:last-child {
  margin: 0;
}
.footer .copyright span {
  display: inline-block;
  margin: 0 1em 0 0;
}/*# sourceMappingURL=common.css.map */