@charset "UTF-8";
/***
  The new CSS reset - version 1.8.3 (last updated 21.1.2023)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* ==================================================
  基本要素/汎用クラス
================================================== */
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 {
  font-weight: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #323232;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6em;
    line-height: 2;
  }
}

* {
  min-height: 0vw;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  text-align: center;
}
@media screen and (min-width: 768px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #FCDB00;
}

a {
  color: #323232;
  transition: 0.2s ease-in-out;
}
a:not(.disabled) {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  a:not(.disabled):hover {
    opacity: 0.8;
  }
}

button {
  display: inline-block;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
button:hover {
  opacity: 0.8;
}
button:focus {
  outline: 0;
}
button:not(:disabled) {
  cursor: pointer;
}

/* ==================================================
  表示/非表示出し分け
================================================== */
.visible_xxs {
  display: none;
}
@media screen and (max-width: 374px) {
  .visible_xxs {
    display: inline-block !important;
  }
}

.hidden_xxs {
  display: inline-block;
}
@media screen and (max-width: 374px) {
  .hidden_xxs {
    display: none !important;
  }
}

.visible_xs {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible_xs {
    display: inline-block !important;
  }
}

.hidden_xs {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .hidden_xs {
    display: none !important;
  }
}

.visible_sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .visible_sm {
    display: inline-block !important;
  }
}

.hidden_sm {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .hidden_sm {
    display: none !important;
  }
}

.visible_md {
  display: none;
}
@media screen and (min-width: 1024px) {
  .visible_md {
    display: inline-block !important;
  }
}

.hidden_md {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .hidden_md {
    display: none !important;
  }
}

.visible_lg {
  display: none;
}
@media screen and (min-width: 1366px) {
  .visible_lg {
    display: inline-block !important;
  }
}

.hidden_lg {
  display: inline-block;
}
@media screen and (min-width: 1366px) {
  .hidden_lg {
    display: none !important;
  }
}

.visible_xl {
  display: none;
}
@media screen and (min-width: 1920px) {
  .visible_xl {
    display: inline-block !important;
  }
}

.hidden_xl {
  display: inline-block;
}
@media screen and (min-width: 1920px) {
  .hidden_xl {
    display: none !important;
  }
}

.visible_all {
  display: inline-block !important;
}

.hidden_all {
  display: none !important;
}

/* ==================================================
  ヘッダー
================================================== */
.lp_header {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(2.667vw, 2rem) min(4vw, 3rem);
}
.lp_header .header_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.lp_header .header_logo img {
  width: min(26.667vw, 12rem);
  max-height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp_header .header_sns {
  width: clamp(4.4rem, 5.867vw, 4.4rem);
  background-color: #fff;
  border-radius: 100px;
}
.lp_header .header_sns a {
  display: flex;
}

/* ==================================================
  フッター
================================================== */
.lp_footer .footer_inner {
  width: 100%;
  background-color: #FCDB00;
  color: #052A83;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.lp_footer .footer_inner small {
  font-size: clamp(1.2rem, 0vw + 1.2rem, 1.2rem);
}
.lp_footer .footer_pagetop {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 8rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: clamp(1.4rem, 0vw + 1.4rem, 1.4rem);
  font-weight: 600;
  color: #052A83;
}
.lp_footer .footer_pagetop img {
  width: 30%;
  transform: rotate(90deg);
}
.lp_footer .footer_pagetop p {
  white-space: nowrap;
}

/* ==================================================
  全体レイアウト
================================================== */
.lp_wrap {
  position: relative;
  overflow: hidden;
}

.lp_container {
  position: relative;
}

.lp_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -100;
  background: url(../img/common/bg_sp.jpg) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .lp_bg {
    background: url(../img/common/bg_tab.jpg) no-repeat top right/cover;
  }
}
@media screen and (min-width: 1024px) {
  .lp_bg {
    background: url(../img/common/bg_tab.jpg) no-repeat top right/cover;
  }
}
@media screen and (min-width: 1366px) {
  .lp_bg {
    background: url(../img/common/bg_pc.jpg) no-repeat top right/cover;
    background-position-x: 75%;
  }
}

.close {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  display: none;
}
.close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: rgba(8, 48, 77, 0.8);
  mix-blend-mode: multiply;
  z-index: 1;
}
.close p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: clamp(2rem, 3.1vw + -0.3777rem, 2.8rem);
  font-weight: 800;
  color: #052A83;
  text-align: center;
  line-height: 1.6;
  padding: 5.333vw;
  background: #fff;
  border: 0.4rem solid #052A83;
  border-radius: 1.6rem;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .close p {
    width: -moz-fit-content;
    width: fit-content;
    padding: 4rem;
  }
}
.close p::after {
  content: "";
  position: absolute;
  top: -20.533vw;
  left: 0;
  display: block;
  width: 28.267vw;
  height: 21.333vw;
  background: url(../img/common/clause_img.webp) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .close p::after {
    top: -12.8rem;
    width: 16rem;
    height: 14rem;
  }
}
.close a {
  display: block;
  margin-top: 1rem;
  font-size: clamp(1.6rem, 0.8vw + 0.9864rem, 1.8rem);
  font-weight: 400;
  text-decoration: underline;
}

.fixed-attention {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  text-align: center;
  font-family: adobe-song-std, sans-serif;
  font-size: 3.2vw;
  color: #fff;
  line-height: 1.5em;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 4%;
  width: 90vw;
  z-index: 99;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.7);
  border: solid #f7cc64 1px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .fixed-attention {
    font-size: 17px;
    padding: 16px;
    max-width: 960px;
    margin-bottom: 10px;
  }
}
.fixed-attention .link-text {
  color: #ffe65b;
  text-decoration: underline;
  display: inline;
}
.fixed-attention .wrap-fixed-attention-close {
  position: relative;
  cursor: pointer;
  margin-left: 3.2vw;
  position: absolute;
  right: 1%;
  top: 0;
}
@media screen and (min-width: 768px) {
  .fixed-attention .wrap-fixed-attention-close {
    right: 16px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.fixed-attention .wrap-fixed-attention-close::before {
  display: inline;
  content: "×";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
}

.none {
  opacity: 0;
}

/* ==================================================
  main内スタイル
================================================== */
@media screen and (min-width: 768px) {
  .lp_main .lp_sec {
    width: 100%;
    margin: 2rem auto 0;
  }
  .lp_main .lp_sec.fv {
    margin: 0 auto 2rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1366px) {
  .lp_main .lp_sec.fv {
    margin: 0 auto 4rem;
  }
}
@media screen and (min-width: 768px) {
  .lp_main .lp_sec.nonMv {
    margin: 0 auto 4rem;
  }
}
.lp_main .sec_heading {
  max-width: 80%;
  position: relative;
  padding: 0.8rem;
  border-radius: 16px;
  border: 3px solid #FCDB00;
  box-shadow: 3px 3px 0 0 #FCDB00;
  font-weight: bold;
  font-size: clamp(2rem, 7.8vw + -3.9826rem, 4rem);
  background: #FCDB00;
  text-align: center;
  display: block;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .lp_main .sec_heading {
    max-width: 640px;
  }
}
.lp_main .sec_heading:before, .lp_main .sec_heading:after {
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.lp_main .sec_heading::before {
  top: 100%;
  margin-left: -9px;
  border-color: transparent;
  border-top-color: #FCDB00;
  border-right-color: #FCDB00;
  border-width: 10px;
}
.lp_main .sec_heading::after {
  top: 99%;
  margin-left: -6px;
  border-color: transparent;
  border-top-color: #FCDB00;
  border-right-color: #FCDB00;
  border-width: 6.5px;
}
.lp_main .sec_heading span {
  display: block;
}
.lp_main .sec_heading span::before {
  content: "";
  background: url(../img/common/h2_after_share.svg) no-repeat center center/contain;
  width: 50px;
  height: 30px;
  position: absolute;
  right: -23px;
  top: -15px;
  animation: heartbeat 2s infinite;
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
}
@media screen and (min-width: 1024px) {
  .lp_main .sec_heading span::before {
    width: 80px;
    height: 45px;
    right: -53px;
    top: -25px;
  }
}
.lp_main .sec_subheading {
  width: 74.667vw;
  height: auto;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .lp_main .sec_subheading {
    width: 60%;
  }
}
.lp_main .js_scroll_fade {
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.5s ease;
}
.lp_main .js_scroll_fade.is_visible {
  opacity: 1;
  transform: translateY(0);
}
.lp_main .sp-break {
  display: block;
}
@media screen and (min-width: 1024px) {
  .lp_main .sp-break {
    display: none;
  }
}

/* ==================================================
  ナビゲーション
================================================== */
.lp_nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lp_nav {
    display: block;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .lp_nav .nav_list {
    padding-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4rem;
    font-size: clamp(2.4rem, 1.6vw + 1.1728rem, 2.8rem);
    font-weight: 700;
  }
  .lp_nav .nav_item:first-of-type {
    display: none;
  }
  .lp_nav .nav_link {
    display: block;
    color: #08304D;
    padding: 0.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: 0.4s;
  }
  .lp_nav .nav_link::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    width: 88%;
    height: 0.2rem;
    background-color: #08304D;
    border-radius: 1rem;
    opacity: 0;
    transition: 0.4s;
  }
  .lp_nav .nav_link.is_active::after {
    opacity: 1;
  }
}

/* ==================================================
  fixed-btn
================================================== */
.fixed-btn-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .fixed-btn-pc {
    height: 80px;
    margin: auto;
    font-size: clamp(1.1rem, 1.9vw + -0.3573rem, 1.6rem);
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    background: #E25B45;
    border: 2px solid #FCDB00;
    color: #fff;
    box-shadow: 5px 5px 0 #FED9E1;
    position: fixed;
    min-width: 200px;
    max-width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.6rem;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    right: 2rem;
    bottom: 2rem;
    transform-origin: center bottom;
    padding: 2rem 5rem 2rem 2rem;
    margin-bottom: 0;
    border-radius: 1rem;
  }
  .fixed-btn-pc b {
    font-size: clamp(2.4rem, 0vw + 2.4rem, 2.4rem);
    font-weight: 800;
  }
  .fixed-btn-pc img:hover {
    opacity: 0.9;
  }
  .fixed-btn-pc::after {
    content: "";
    background: url(../img/common/cart_icon.webp) no-repeat center right/contain;
    position: absolute;
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    right: -8%;
    top: -5%;
    animation: yurayura 3s linear infinite;
  }
}

.fixed-btn-sp {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #E25B45;
  font-weight: 800;
  color: #fff;
  font-size: 4.267vw;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  overflow: hidden;
}
.fixed-btn-sp::before {
  content: "";
  background: url(../img/common/cart_icon.webp) no-repeat top right/contain;
  position: absolute;
  right: -9px;
  top: -4%;
  width: 90%;
  height: 190%;
  animation: yurayura 3s linear infinite;
}
@media screen and (min-width: 1024px) {
  .fixed-btn-sp {
    display: none;
  }
}

/* ==================================================
  fv
================================================== */
.fv {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .fv {
    max-width: 120rem;
  }
}
.fv_inner {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .fv_inner {
    text-align: center;
  }
}
.fv_title {
  position: relative;
  z-index: 10;
  text-align: center;
}
.fv_title img {
  width: 70%;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .fv_title {
    text-align: center;
  }
}
.fv_content {
  position: relative;
  margin: 0 auto;
  z-index: 10;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  gap: 0.4rem;
  -webkit-text-stroke: 4px #ffffff;
  text-stroke: 2px black;
  paint-order: stroke;
}
@media screen and (min-width: 1024px) {
  .fv_content {
    margin-top: 2rem;
  }
}
.fv_discount-txt {
  color: #FF8357;
  text-align: center;
  font-size: clamp(2.2rem, 2.3vw + 0.4359rem, 2.8rem);
  font-weight: 800;
  z-index: 10;
  line-height: 1.5em;
}
.fv_discount-txt .rate {
  font-size: clamp(3.2rem, -1.6vw + 4.4272rem, 2.8rem);
}
.fv_period-txt {
  text-align: center;
  font-size: clamp(1.8rem, 2.3vw + 0.0359rem, 2.4rem);
  font-weight: 800;
  z-index: 10;
  line-height: 1.5em;
}
.fv_period-txt .serises {
  background-color: #FF8357;
  color: #FCDB00;
  padding: 1px 4px;
  margin-right: 8px;
}
.fv_period-txt .emphasis {
  color: #FF8357;
}
@media screen and (max-width: 374px) {
  .fv_period-txt {
    font-size: 3.733vw;
  }
}
.fv_annotation-txt {
  position: relative;
  font-size: clamp(1.1rem, 1.9vw + -0.3573rem, 1.6rem);
  text-align: center;
  z-index: 10;
}
.fv_annotation-txt a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fv_works {
  position: absolute;
  top: 13.333vw;
  left: -10%;
  align-items: center;
  width: 120%;
  overflow: hidden;
  white-space: nowrap;
  z-index: -1;
  transform: rotate(-8deg);
}
@media screen and (min-width: 1024px) {
  .fv_works {
    top: 55rem;
  }
}
.fv_works ul {
  margin-right: 2.667vw;
}
@media screen and (min-width: 1024px) {
  .fv_works ul {
    margin-right: 8rem;
  }
}
.fv_works ul li {
  display: inline-block;
  height: 18rem;
  margin-right: 2.667vw;
}
@media screen and (min-width: 1024px) {
  .fv_works ul li {
    height: 28rem;
    margin-right: 2rem;
  }
}
.fv_works ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ==================================================
  pickup
================================================== */
.relative {
  position: relative;
}

.pickup {
  position: relative;
  margin-top: 4rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7960784314);
  border-top: 2px solid #FCDB00;
  border-bottom: 2px solid #FCDB00;
}
@media screen and (min-width: 1024px) {
  .pickup {
    padding: 8rem 4rem 4rem;
    margin-top: 12rem;
  }
}
.pickup .sec_heading {
  position: absolute;
  width: 80%;
  max-width: 540px;
  top: -7.6%;
}
@media screen and (min-width: 1024px) {
  .pickup .sec_heading {
    top: -9.5%;
  }
}
.pickup .sec_body {
  margin-top: 5.333vw;
}
@media screen and (min-width: 1024px) {
  .pickup .sec_body {
    margin-top: 3.2rem;
    max-width: 90%;
    margin: 0 auto;
  }
}
@keyframes skelton_flash {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.pickup .skelton-screen .pickup_image,
.pickup .skelton-screen .pickup_txt .pickup_title,
.pickup .skelton-screen .pickup_txt .pickup_detail .old-cost,
.pickup .skelton-screen .pickup_txt .pickup_detail p {
  background-color: #eee;
}
.pickup .skelton-screen .pickup_txt .pickup_title {
  margin-bottom: 2px;
}
.pickup .skelton-screen .pickup_image::before,
.pickup .skelton-screen .pickup_txt .pickup_title::before,
.pickup .skelton-screen .pickup_txt .pickup_detail .old-cost::before,
.pickup .skelton-screen .pickup_txt .pickup_detail p::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5333333333), rgba(255, 255, 255, 0));
  animation: skelton_flash 1.5s linear infinite;
  will-change: animation;
}

.swiper {
  position: relative;
}
.swiper-wrapper {
  display: flex;
  gap: 2rem;
}
.swiper-slide {
  position: relative;
  width: 49%;
  height: auto;
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .swiper-slide {
    width: 32%;
    border-radius: 0.8rem;
    max-width: 280px;
  }
}
.swiper-slide .pickup_image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  padding-top: 75%;
  background: #e5e5e5;
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
  border-bottom: 1px dotted #ccc;
}
@media screen and (min-width: 1024px) {
  .swiper-slide .pickup_image {
    border-radius: 0.8rem 0.8rem 0 0;
  }
}
.swiper-slide .pickup_image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.swiper-slide .pickup_txt {
  padding: 2.133vw;
  flex-grow: 1;
  display: flex;
  gap: 4px;
  flex-direction: column;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .swiper-slide .pickup_txt {
    padding: 2rem;
  }
}
.swiper-slide .pickup_label {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.swiper-slide .pickup_label span {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  display: inline-block;
  background-color: #e5e5e5;
  padding: 2px 8px;
  border-radius: 100px;
  color: #333;
}
.swiper-slide .pickup_label span.voice {
  background-color: #FC9A9D;
}
.swiper-slide .pickup_label span.manga {
  background-color: #A7DEED;
}
.swiper-slide .pickup_label span.game {
  background-color: #F7D97F;
}
.swiper-slide .pickup_label span.spgame {
  background-color: #F0C0FA;
}
.swiper-slide .pickup_label span.commercial {
  background-color: #A0E6CF;
}
.swiper-slide .pickup_label span.dojin {
  background-color: #C2C6F6;
}
.swiper-slide .pickup_label span.video {
  background-color: #c9c9c9;
}
.swiper-slide .pickup_title {
  font-size: clamp(1.2rem, 2.3vw + -0.5641rem, 1.8rem);
  font-weight: 800;
  line-height: 1.5;
  flex-grow: 1;
}
.swiper-slide .pickup_title span {
  font-size: clamp(1rem, 1.6vw + -0.2272rem, 1.4rem);
  font-weight: 400;
}
.swiper-slide .pickup_detail {
  width: 100%;
}
.swiper-slide .pickup_price {
  margin-top: 2.133vw;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .swiper-slide .pickup_price {
    margin-top: 2rem;
  }
}
.swiper-slide .pickup_price .old-cost {
  font-size: clamp(1rem, 1.6vw + -0.2272rem, 1.4rem);
  display: flex;
  gap: 2px;
  align-items: baseline;
  text-decoration: line-through;
}
.swiper-slide .pickup_price .old-cost span {
  font-size: clamp(0.9rem, 1.2vw + -0.0204rem, 1.2rem);
}
.swiper-slide .pickup_price .after-discount {
  font-size: clamp(1.6rem, 3.1vw + -0.7777rem, 2.4rem);
  display: flex;
  gap: 4px;
  align-items: baseline;
  font-weight: 800;
  color: #FF8357;
}
.swiper-slide .pickup_price .after-discount span {
  font-size: clamp(1.2rem, 2.3vw + -0.5641rem, 1.8rem);
}
.swiper-slide .pickup_price .after-discount span b {
  margin-left: 4px;
  font-size: clamp(1.2rem, 1.6vw + -0.0272rem, 1.6rem);
}
.swiper-slide .pickup_price .discount-rate {
  font-size: clamp(1.2rem, 1.6vw + -0.0272rem, 1.6rem);
  color: #FF8357;
  font-weight: 800;
}
.swiper-slide .pickup_btn {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .swiper-slide .pickup_btn {
    display: flex;
    justify-content: space-between;
  }
}
.swiper-slide .pickup_btn .btn {
  width: 100%;
  height: 8vw;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 0.8vw + 0.5864rem, 1.4rem);
  font-weight: 800;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .swiper-slide .pickup_btn .btn {
    width: 49%;
    height: 4rem;
  }
}
.swiper-slide .pickup_btn .detail {
  background-color: #FCDB00;
}
.swiper-slide .pickup_btn .cart {
  margin-top: 0.6rem;
  background-color: #FF8357;
  color: #FCDB00;
}
.swiper-slide .pickup_btn .cart.disabled {
  background-color: #757575;
  color: #fff;
  text-shadow: none;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .swiper-slide .pickup_btn .cart {
    margin-top: 0;
  }
}
.swiper-arrows {
  position: absolute;
  top: 20%;
  left: -4%;
  width: 108%;
  height: 44px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .swiper-arrows {
    top: 50%;
    transform: translateY(-50%);
    width: 104%;
    left: -2%;
    top: 25%;
  }
}
@media screen and (min-width: 768px) {
  .swiper-arrows {
    top: 50%;
    transform: translateY(-50%);
    width: 104%;
    left: -2%;
    top: 50%;
  }
}
@media screen and (min-width: 1366px) {
  .swiper-arrows {
    width: 110%;
    left: -5%;
  }
}
@media screen and (min-width: 1024px) {
  .swiper-arrows {
    width: 110%;
    left: -5%;
  }
}
.swiper-arrows img {
  width: 3.2vw;
  height: 3.733vw;
}
@media screen and (min-width: 768px) {
  .swiper-arrows img {
    width: 1.6rem;
    height: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .swiper-arrows img {
    width: 2.8rem;
    height: 3.2rem;
  }
}
.swiper-arrow-prev {
  background-color: #FCDB00;
  border-radius: 100px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .swiper-arrow-prev {
    padding: 12px;
    border: none;
  }
}
.swiper-arrow-next {
  background-color: #FCDB00;
  border-radius: 100px;
  transform: rotate(180deg);
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .swiper-arrow-next {
    padding: 12px;
    border: none;
  }
}
.swiper-scrollbar {
  width: 100%;
  height: 1rem;
  border-radius: 1rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  background-color: #FCDB00;
}
.swiper-scrollbar-drag {
  height: 1rem;
  border-radius: 1rem;
  background-color: #FCDB00;
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: #FCDB00;
  opacity: 1;
  border: 1px solid #FCDB00;
  width: 1.4rem;
  height: 1.4rem;
}

.swiper-pagination-bullet-active {
  background: #FCDB00;
}

/* ==================================================
  lineup
================================================== */
.lineup {
  padding: 0 0 4rem 0;
  /* ウィンターセール用セクション */
}
@media screen and (min-width: 1024px) {
  .lineup {
    margin: 12rem auto 0;
  }
}
.lineup .sec_body {
  width: 110%;
  margin-left: -5%;
  padding-top: 4vw;
}
@media screen and (min-width: 1024px) {
  .lineup .sec_body {
    width: 100%;
    margin: 0;
    padding-top: 0;
  }
}
.lineup_genre {
  display: flex;
  justify-content: center;
  gap: 3.2vw;
  border-bottom: 2px solid #FCDB00;
}
@media screen and (min-width: 1024px) {
  .lineup_genre {
    gap: 1.2rem;
  }
}
.lineup_genre_btn {
  width: 29.333vw;
  padding: 1.067vw 0;
  background-color: #fff;
  color: #7D2CB2;
  border: #052A83 2px solid;
  border-bottom: none;
  border-radius: 0.4rem 0.4rem 0 0;
  text-align: center;
  font-size: clamp(1.4rem, 3.1vw + -0.9777rem, 2.2rem);
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  .lineup_genre_btn {
    width: 32rem;
    padding: 1rem 6.8rem;
    border-radius: 1rem 1rem 0 0;
  }
}
.lineup_genre_btn:hover {
  background-color: #EFFB72;
  opacity: 1 !important;
}
.lineup_genre .active {
  background-color: #7D2CB2;
  color: #fff;
}
.lineup_content {
  margin: auto;
  padding: 2rem 6% 4rem;
  background-color: #7D2CB2;
  border-bottom: 2px solid #FCDB00;
}
@media screen and (min-width: 1024px) {
  .lineup_content {
    padding: 2rem 0 4rem;
    border-bottom: 2px solid #08304D;
  }
}
@media screen and (min-width: 1024px) {
  .lineup_inner {
    max-width: 1024px;
    padding: 0 2rem;
    margin: auto;
    position: relative;
  }
}
@media screen and (min-width: 1366px) {
  .lineup_inner {
    max-width: 90%;
  }
}
.lineup_toggle_button {
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
  padding: 8px;
  gap: 1.333vw;
  color: #fff;
  font-size: clamp(1.2rem, 1.6vw + -0.0272rem, 1.6rem);
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .lineup_toggle_button {
    gap: 1rem;
  }
}
.lineup_toggle_button::before {
  content: "";
  background: url(../img/common/icon_filter.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
  width: 16px;
  height: 16px;
  position: relative;
  margin-right: 2px;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .lineup_toggle_button::before {
    width: 24px;
    height: 24px;
  }
}
.lineup_toggle_input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .lineup_toggle_input {
    width: 40%;
  }
}
.lineup_toggle_label {
  width: 8vw;
  height: 4vw;
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 5rem;
  background-color: #EDF8FB;
  transition: 0.4s;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .lineup_toggle_label {
    width: 5.2rem;
    height: 3.2rem;
    border-radius: 20rem;
  }
}
.lineup_toggle_label::after {
  content: "";
  position: absolute;
  width: 3.2vw;
  height: 3.2vw;
  border-radius: 100%;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  background: #052A83;
  border: 2px solid #FCDB00;
  transition: all 0.1s ease 0s;
}
@media screen and (min-width: 1024px) {
  .lineup_toggle_label::after {
    width: 2.6rem;
    height: 2.6rem;
    transition: all 0.4s ease 0s;
  }
}
.lineup_art-form {
  padding-top: 13.333vw;
  color: #fff;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .lineup_art-form {
    padding-top: 6rem;
  }
}
.lineup_art-form p {
  text-align: center;
  font-size: clamp(1.4rem, 0.8vw + 0.7864rem, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup_art-form .art-form_list {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
}
@media screen and (min-width: 1024px) {
  .lineup_art-form .art-form_list {
    margin-top: 1.6rem;
  }
}
.lineup_art-form .art-form_list li {
  position: relative;
  width: 33%;
  text-align: center;
  padding: 2.667vw 1.3%;
  border-left: #fff solid 0.1rem;
  border-right: #fff solid 0.1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.lineup_art-form .art-form_list li:hover {
  background-color: #FCDB00;
  color: #052A83;
}
@media screen and (min-width: 1024px) {
  .lineup_art-form .art-form_list li {
    padding: 1.6rem 2%;
    border-right: #fff solid 0.1rem;
  }
}
.lineup_art-form .art-form_list li + li {
  border-left: 0;
}
.lineup_art-form .art-form_list li p {
  position: relative;
  font-size: clamp(1.2rem, 2.3vw + -0.5641rem, 1.8rem);
}
.lineup_art-form .art-form_list li p::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .lineup_art-form .art-form_list li p::before {
    width: 24px;
    height: 24px;
  }
}
.lineup_art-form .art-form_list li p.manga::before {
  background: url(../img/common/icon_manga.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
}
.lineup_art-form .art-form_list li p.game::before {
  background: url(../img/common/icon_game.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
}
.lineup_art-form .art-form_list li p.asmr::before {
  background: url(../img/common/icon_asmr.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
}
.lineup_art-form .art-form_list .active, .lineup_art-form .art-form_list li:hover {
  position: relative;
  color: #052A83;
}
.lineup_art-form .art-form_list .active::before, .lineup_art-form .art-form_list li:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcdb00;
}
.lineup_art-form .art-form_list .active .manga::before, .lineup_art-form .art-form_list li:hover .manga::before {
  background: url(../img/common/icon_manga_navy.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
}
.lineup_art-form .art-form_list .active .game::before, .lineup_art-form .art-form_list li:hover .game::before {
  background: url(../img/common/icon_game_navy.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
}
.lineup_art-form .art-form_list .active .asmr::before, .lineup_art-form .art-form_list li:hover .asmr::before {
  background: url(../img/common/icon_asmr_navy.svg) no-repeat center center/contain;
  shape-rendering: geometricPrecision;
}
.lineup_list {
  width: 100%;
  padding: 0 1rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .lineup_list {
    padding-top: 2rem;
    gap: 12px;
  }
}
.lineup_list li {
  position: relative;
  width: calc((100% - 8px) / 2);
  background-color: #fff;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  max-width: 280px;
}
@media screen and (min-width: 1024px) {
  .lineup_list li {
    width: 24%;
  }
}
.lineup_list li .lineup_image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  padding-top: 75%;
  background: #e5e5e5;
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
  border-bottom: 1px dotted #ccc;
}
.lineup_list li .lineup_image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.lineup_list li .lineup_txt {
  padding: 2.133vw;
  flex-grow: 1;
  display: flex;
  gap: 4px;
  flex-direction: column;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .lineup_list li .lineup_txt {
    padding: 1.6rem;
  }
}
.lineup_list li .lineup_label {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.lineup_list li .lineup_label span {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  display: inline-block;
  background-color: #e5e5e5;
  padding: 2px 8px;
  border-radius: 100px;
  color: #333;
}
.lineup_list li .lineup_label span.voice {
  background-color: #fc9a9d;
}
.lineup_list li .lineup_label span.manga {
  background-color: #a7deed;
}
.lineup_list li .lineup_label span.game {
  background-color: #f7d97f;
}
.lineup_list li .lineup_label span.spgame {
  background-color: #f0c0fa;
}
.lineup_list li .lineup_label span.commercial {
  background-color: #a0e6cf;
}
.lineup_list li .lineup_label span.dojin {
  background-color: #c2c6f6;
}
.lineup_list li .lineup_label span.video {
  background-color: #c9c9c9;
}
.lineup_list li .lineup_title {
  font-size: clamp(1.2rem, 1.6vw + -0.0272rem, 1.6rem);
  font-weight: 800;
  line-height: 1.5;
  flex-grow: 1;
}
.lineup_list li .lineup_title span {
  font-size: clamp(1rem, 1.6vw + -0.2272rem, 1.4rem);
  font-weight: 400;
}
.lineup_list li .lineup_note {
  font-size: clamp(1rem, 0.8vw + 0.3864rem, 1.2rem);
  font-weight: 400;
}
.lineup_list li .lineup_detail {
  width: 100%;
}
.lineup_list li .lineup_price {
  margin-top: 2.133vw;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .lineup_list li .lineup_price {
    margin-top: 2rem;
  }
}
.lineup_list li .lineup_price .old-cost {
  font-size: clamp(1rem, 1.6vw + -0.2272rem, 1.4rem);
  display: flex;
  gap: 4px;
  align-items: baseline;
  text-decoration: line-through;
}
.lineup_list li .lineup_price .old-cost span {
  font-size: clamp(0.9rem, 1.2vw + -0.0204rem, 1.2rem);
}
.lineup_list li .lineup_price .after-discount {
  font-size: clamp(1.4rem, 3.1vw + -0.9777rem, 2.2rem);
  display: flex;
  gap: 2px;
  align-items: baseline;
  font-weight: 800;
  color: #FF8357;
}
.lineup_list li .lineup_price .after-discount span {
  font-size: clamp(1.2rem, 0.8vw + 0.5864rem, 1.4rem);
}
.lineup_list li .lineup_price .after-discount span b {
  margin-left: 4px;
  font-size: clamp(1.2rem, 0.8vw + 0.5864rem, 1.4rem);
}
.lineup_list li .lineup_price .discount-rate {
  font-size: clamp(1.2rem, 0.8vw + 0.5864rem, 1.4rem);
  color: #FF8357;
  font-weight: 800;
}
.lineup_list li .lineup_btn {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .lineup_list li .lineup_btn {
    display: flex;
    justify-content: space-between;
  }
}
.lineup_list li .lineup_btn .btn {
  width: 100%;
  height: 8vw;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 0vw + 1.2rem, 1.2rem);
  font-weight: 800;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .lineup_list li .lineup_btn .btn {
    width: 49%;
    height: 40px;
  }
}
.lineup_list li .lineup_btn .detail {
  background-color: #ADC965;
  color: #08304D;
}
.lineup_list li .lineup_btn .cart {
  margin-top: 0.6rem;
  background-color: #E25B45;
  color: #fff;
}
.lineup_list li .lineup_btn .cart.disabled {
  background-color: #757575;
  color: #fff;
  text-shadow: none;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .lineup_list li .lineup_btn .cart {
    margin-top: 0;
  }
}
.lineup_wintersale {
  text-align: center;
  color: #FCDB00;
  font-weight: 800;
  margin: 2rem auto;
}
.lineup_wintersale p {
  font-size: clamp(1.6rem, 3.1vw + -0.7777rem, 2.4rem);
}
.lineup_wintersale-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .lineup_wintersale-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.lineup_wintersale-btn {
  font-size: clamp(1.4rem, 1.6vw + 0.1728rem, 1.8rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2.4rem;
  background-color: #fff;
  border: 2px solid #052A83;
  border-radius: 1rem;
  box-shadow: 0.8rem 0.8rem 0 0 #FCDB00;
  color: #052A83;
  font-weight: 800;
  width: 80%;
  max-width: 36rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .lineup_wintersale-btn {
    width: calc(50% - 1rem);
    max-width: none;
  }
}
.lineup_wintersale-btn::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/common/icon_arrow_navy.svg") no-repeat center/contain;
}
.lineup_wintersale-btn:hover {
  opacity: 0.6;
}

.lineup_toggle_input:checked + .lineup_toggle_label {
  background-color: #FCDB00;
}

.lineup_toggle_input:checked + .lineup_toggle_label:after {
  left: 4.267vw;
}
@media screen and (min-width: 1024px) {
  .lineup_toggle_input:checked + .lineup_toggle_label:after {
    left: 2.3rem;
  }
}

/* ==================================================
  share
================================================== */
.share {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .share {
    max-width: 120rem;
    padding: 4rem 0;
  }
}
.share img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .share img {
    width: 60%;
  }
}
.share .sec_body {
  padding: 2.4rem 0;
}
@media screen and (min-width: 1024px) {
  .share .sec_body {
    padding: 2.4rem 0;
  }
}
.share .sec_heading {
  width: 90%;
  max-width: 480px;
  position: relative;
  padding: 1rem 1rem 1rem 1.5rem;
  margin-top: 2rem;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  font-weight: bold;
  font-size: 26px;
  background-color: #fff;
  font-size: clamp(1.4rem, 2.3vw + -0.3641rem, 2rem);
}
@media screen and (min-width: 1024px) {
  .share .sec_heading {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    line-height: 1.6;
    padding: 2rem 2rem 2rem 4rem;
    text-align: left;
  }
}
.share .sec_heading b {
  font-size: clamp(2rem, 3.1vw + -0.3777rem, 2.8rem);
}
.share .sec_heading b span {
  color: #E25B45;
  display: inline-block;
}
.share .sec_heading b span::before {
  background: url(../img/common/h2_after_share.svg) no-repeat;
}
.share .sec_heading:before, .share .sec_heading:after {
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.share .sec_heading::after {
  top: 99%;
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
  margin-left: -7px;
  border-color: transparent;
  border-top-color: white;
  border-right-color: white;
  border-width: 6.5px;
}
.share a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
  width: 13.333vw;
  height: 13.333vw;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  box-shadow: 0px 0px 2rem 1rem rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1024px) {
  .share a {
    width: 8rem;
    height: 8rem;
    margin: 0 1rem;
  }
}
.share a img {
  width: 6.667vw;
  height: 6.667vw;
}
@media screen and (min-width: 1024px) {
  .share a img {
    width: 44px;
    height: 44px;
  }
}
.share .share_illust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5%;
}
.share .share_illust img {
  width: 80%;
  max-width: 360px;
}

/* ==================================================
  cart
================================================== */
@media screen and (min-width: 1024px) {
  .sec_cart {
    max-width: 120rem;
  }
}
.sec_cart a {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: 540px;
  padding: 5.333vw 0;
  font-size: clamp(1.4rem, 3.9vw + -1.5913rem, 2.4rem);
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  background: #E25B45;
  box-shadow: 0px 0px 2rem 1rem rgba(255, 255, 255, 0.3);
  margin-bottom: 4rem;
  border-radius: 2rem;
  border: 2px solid #FCDB00;
  color: #fff;
  position: relative;
  box-shadow: 5px 5px 0 #FCDB00;
}
.sec_cart a::after {
  content: "";
  background: url(../img/common/cart_icon.webp) no-repeat center right/contain;
  position: absolute;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  right: -8%;
  top: -5%;
  animation: yurayura 3s linear infinite;
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(3deg);
  }
  10% {
    transform: rotate(-3deg);
  }
}
.sec_cart a b {
  font-size: clamp(2.4rem, 9.3vw + -4.7331rem, 4.8rem);
  font-weight: 800;
}
@media screen and (min-width: 1024px) {
  .sec_cart a {
    width: 64rem;
    padding: 4rem 0;
    margin-bottom: 0;
    border-radius: 3rem;
    border: 4px solid #FCDB00;
  }
}
.sec_cart a img {
  width: 100%;
}/*# sourceMappingURL=lp.css.map */