@charset "UTF-8";
@font-face {
  font-family: flexa-custom-expanded;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Expanded-Light.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-expanded;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Expanded-Regular.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-expanded;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Expanded-Medium.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-expanded;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Expanded-Bold.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-standard;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Standard-Regular.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-standard;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Standard-Bold.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-extended;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Extended-Regular.woff2) format("woff");
}
@font-face {
  font-family: flexa-custom-extended;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/GT-Flexa-Extended-Bold.woff2) format("woff");
}
:root {
  --designwidth: 1366;
  --lp_font_jp: "Noto Sans JP", sans-serif;
  --lp_font_en: flexa-custom-expanded, sans-serif;
  --lp_font_en_std: flexa-custom-standard, sans-serif;
  --lp_font_en_ext: flexa-custom-extended, sans-serif;
  --anime_duration: 0.8s;
  --color_base:#121212;
  --color_orange:#FC9762;
  --zoom:1.212;
}
@media screen and (max-width:767px) {
  :root {
    --designwidth: 428;
    --zoom:1;
  }
}

body {
  font-family: var(--lp_font_jp);
  font-weight: 500;
  font-style: normal;
}
body.is-modal-open {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.simple-footer {
  display: none !important;
}

@media screen and (max-width:767px) {
  .lp-u-show-pc {
    display: none !important;
  }
}

@media screen and (min-width:768px) {
  .lp-u-show-sp {
    display: none !important;
  }
}

.lp-u-block {
  padding-left: calc(16 / 428 * 100cqw);
  padding-right: calc(16 / 428 * 100cqw);
}
.lp-u-block > :first-child {
  margin-top: 0 !important;
}

.lp-u-block-reset {
  margin-inline: calc(-30 / 428 * 100cqw);
}

@media screen and (min-width:768px) {
  .lp-u-hover {
    transition: ease opacity 0.3s;
  }
  .lp-u-hover:hover {
    opacity: 0.7;
  }
}

.lp-u-mt0 {
  margin-top: 0 !important;
}

.lp-u-center {
  text-align: center !important;
}

.lp-l-wrapper {
  line-height: 2;
  font-weight: 400;
  font-size: calc(11 / 428 * 100cqw);
  color: var(--color_base);
  background-color: #fff;
}
.lp-l-wrapper img,
.lp-l-wrapper video {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width:768px) {
  .lp-l-wrapper {
    display: grid;
    align-items: start;
    grid-template-columns: 50% 50%;
    gap: 0;
  }
}
@media screen and (min-width:1040px) {
  .lp-l-wrapper {
    grid-template-columns: calc(469 / 1366 * 100%) calc(428 / 1366 * 100%) auto;
  }
}

.lp-l-contents {
  container-type: inline-size;
}
@media screen and (min-width:768px) {
  .lp-l-contents {
    position: relative;
    z-index: 4;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.lp-l-main {
  padding-bottom: calc(64 / 428 * 100cqw);
  background: linear-gradient(#faedcf 0%, #f8aa40 100%);
}

.lp-c-allitems {
  display: flex;
  justify-content: center;
  margin-top: calc(20 / 428 * 100cqw);
}

.lp-c-allitems__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(44 / 428 * 100cqw);
  border-radius: 50px;
  flex-shrink: 0;
  border: 1px solid var(--color_base);
  background: var(--color_orange);
  color: var(--color_base);
  font-family: var(--lp_font_en);
  font-size: calc(15 / 428 * 100cqw);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.lp-c-allitems__item--white {
  border: none;
  color: #fff;
}
@media screen and (min-width:768px) {
  .lp-c-allitems__item {
    transition: ease all 0.3s;
  }
  .lp-c-allitems__item:hover {
    background-color: var(--color_base);
    color: var(--color_orange);
  }
}
.lp-c-allitems__item:after {
  position: absolute;
  z-index: 2;
  top: calc(50% - 5px);
  right: 5%;
  width: 8px;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  display: block;
  transition: ease all 0.3s;
}

.lp-c-inlinelink {
  text-decoration: underline;
  color: inherit;
}
.lp-c-inlinelink:hover {
  text-decoration: none;
}

.lp-c-paragraph {
  margin-top: 1em;
  font-size: calc(13 / 428 * 100cqw);
  line-height: 1.7;
}

.lp-mv {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@media screen and (min-width:768px) {
  .lp-mv {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    container-type: inline-size;
  }
}

@media screen and (min-width:768px) {
  .lp-mv__obj-group {
    position: absolute;
    z-index: 5;
    bottom: 8%;
    left: 0%;
    width: 100%;
    text-align: center;
  }
}

.lp-mv__obj {
  position: absolute;
  z-index: 2;
  line-height: 1;
}
.lp-mv__obj.is-logo {
  top: calc(20 / 740 * 100%);
  right: calc(25 / 428 * 100%);
}
@media screen and (min-width:768px) {
  .lp-mv__obj.is-logo {
    top: calc(20 / 740 * 100%);
    left: calc(30 / 470 * 100%);
    right: auto;
    width: calc(65 / 470 * 100%);
  }
}
.lp-mv__obj.is-maintitle {
  width: calc(360 / 428 * 100%);
  left: calc(25 / 428 * 100%);
  bottom: calc(33 / 740 * 100%);
}
@media screen and (min-width:768px) {
  .lp-mv__obj.is-maintitle {
    margin: 0 auto;
    position: static;
    width: calc(360 / 470 * 100%);
  }
}
.lp-mv__obj.is-subtitle {
  top: calc(20 / 740 * 100%);
  left: calc(24 / 428 * 100%);
  font-family: var(--lp_font_en_std);
  color: var(--color_orange);
  font-size: calc(21 / 428 * 100cqw);
  line-height: 1.1429;
}
@media screen and (min-width:768px) {
  .lp-mv__obj.is-subtitle {
    position: static;
    color: #fff;
    font-size: calc(21 / 470 * 100cqw);
    text-align: center;
    margin-top: calc(30 / 470 * 100cqw);
  }
}

.lp-mv__bg {
  position: relative;
  display: block;
}
@media screen and (min-width:768px) {
  .lp-mv__bg img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 80% top;
       object-position: 80% top;
  }
}
@media screen and (min-width:1040px) {
  .lp-mv__bg img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.lp-mv__bg img {
  opacity: 0;
  transform: scale(1.05);
  filter: blur(10px);
  transition: ease-out all 2s;
}
.lp-mv__bg img.is-current {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}
.lp-mv__bg img:nth-child(n+2) {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.lp-intro {
  padding: calc(35 / 428 * 100cqw) calc(26 / 428 * 100cqw);
}

.lp-intro__maintitle--pc {
  text-align: center;
  font-variant: var(--color_orange);
  font-size: calc(21 / 428 * 100cqw);
  font-family: var(--lp_font_en_std);
  color: var(--color_orange);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.03em;
}

.lp-look {
  margin: 0 calc(20 / 428 * 100cqw);
  padding: 0 0 calc(50 / 428 * 100cqw);
  border-radius: 40px;
  background-color: #fff;
}
.lp-look + .lp-look {
  margin-top: calc(50 / 428 * 100cqw);
}

.lp-look__headline {
  padding: calc(34 / 428 * 100cqw) 0 calc(20 / 428 * 100cqw);
  text-align: center;
  font-size: calc(20 / 428 * 100cqw);
  line-height: 1;
  color: var(--color_orange);
  font-family: var(--lp_font_en_ext);
  font-weight: 700;
}

.lp-look__flow {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  padding: calc(8 / 428 * 100cqw) 0;
  overflow: hidden;
}
.lp-look__flow span {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 0.5em;
  line-height: 1;
  font-family: var(--lp_font_en_ext);
  font-size: calc(12 / 428 * 100cqw);
  font-weight: 400;
  animation: flowtext 10s linear infinite;
}

@keyframes flowtext {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.lp-look-headline-v1 {
  margin-top: calc(25 / 428 * 100cqw);
  text-align: center;
  font-size: calc(20 / 428 * 100cqw);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.lp-look-kv {
  position: relative;
  overflow: hidden;
}

.lp-look01-subkv {
  position: relative;
  margin: calc(40 / 428 * 100cqw) auto 0;
  width: calc(302 / 428 * 100cqw);
}

.lp-look01-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(10 / 428 * 100cqw);
  margin-top: calc(45 / 428 * 100cqw);
}

.lp-look02-subkv {
  position: relative;
  margin: calc(40 / 428 * 100cqw) auto 0;
}

.lp-look02-aside {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(10 / 428 * 100cqw);
  margin: calc(25 / 428 * 100cqw) auto 0;
  width: calc(316 / 428 * 100cqw);
}

.lp-look03-subkv {
  position: relative;
  margin: calc(25 / 428 * 100cqw) auto 0;
  width: calc(300 / 428 * 100cqw);
}

.lp-look03-aside {
  display: grid;
  grid-template-columns: 100%;
  margin: calc(40 / 428 * 100cqw) 0 0;
}

.lp-look03-aside__item {
  overflow: hidden;
}
.lp-look03-aside__item img {
  display: block;
}

.lp-look04-subkv {
  position: relative;
  margin: calc(40 / 428 * 100cqw) auto 0;
  width: calc(300 / 428 * 100cqw);
}

.lp-look04-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(8 / 428 * 100cqw);
  margin: calc(30 / 428 * 100cqw) 0 0;
}

.lp-look__creditbox {
  border: 1px solid #000;
  margin: calc(50 / 428 * 100cqw) calc(24 / 428 * 100cqw) 0;
  padding: calc(14 / 428 * 100cqw) calc(14 / 428 * 100cqw) calc(20 / 428 * 100cqw);
  display: grid;
  grid-template-columns: 100%;
  gap: calc(14 / 428 * 100cqw);
}

.lp-look__credit {
  display: grid;
  grid-template-columns: 1fr calc(90 / 428 * 100cqw);
  gap: calc(10 / 428 * 100cqw);
  text-decoration: none;
  color: #0D0D0D;
  font-size: calc(12 / 428 * 100cqw);
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width:768px) {
  .lp-look__credit {
    transition: ease color 0.3s;
  }
  .lp-look__credit:hover .lp-look__credit__link {
    color: var(--color_orange);
  }
}

.lp-look__credit__name {
  border-bottom: 1px solid #000;
  padding-bottom: calc(8 / 428 * 100cqw);
}

.lp-look__credit__name__label {
  margin-right: 0.5em;
}

.lp-look__credit__name__price:before {
  content: "¥";
}

.lp-look__credit__link {
  display: grid;
  grid-template-columns: 100%;
  align-items: end;
  border-bottom: 1px solid #000;
  padding-bottom: calc(8 / 428 * 100cqw);
  font-family: var(--lp_font_en);
  font-size: calc(10 / 428 * 100cqw);
  text-align: center;
  transition: ease color 0.2s;
}

.lp-look-modalswitch {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: var(--color_orange);
  width: calc(28 / 428 * 100cqw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  animation: modalswitch 2.6s ease-in-out infinite;
}
@media screen and (min-width:768px) {
  .lp-look-modalswitch {
    transition: ease background-color 0.3s;
  }
  .lp-look-modalswitch:hover {
    background-color: var(--color_base);
  }
}
.lp-look-modalswitch > span {
  position: relative;
  z-index: 2;
  display: block;
  aspect-ratio: 1/1;
  width: calc(13 / 428 * 100cqw);
}
.lp-look-modalswitch > span:before, .lp-look-modalswitch > span:after {
  position: absolute;
  z-index: 2;
  top: calc(50% - 1px);
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.lp-look-modalswitch > span:after {
  transform: rotate(90deg);
}

@keyframes modalswitch {
  0% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.2) scaleX(0.96);
  }
  20% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.12) scaleX(0.98);
  }
  36% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
#look01 .lp-look-kv .lp-look-modalswitch {
  top: 34%;
  left: 24%;
}
#look01 .lp-look01-subkv .lp-look-modalswitch {
  top: 43%;
  left: 70%;
}

#look02 .lp-look-kv .lp-look-modalswitch {
  top: 63%;
  left: 72%;
}
#look02 .lp-look02-subkv .lp-look-modalswitch {
  top: 62%;
  left: 60%;
}

#look03 .lp-look-kv .lp-look-modalswitch {
  top: 57%;
  left: 38%;
}

#look04 .lp-look-kv .lp-look-modalswitch.is-pos01 {
  top: 31%;
  left: 37%;
}
#look04 .lp-look-kv .lp-look-modalswitch.is-pos02 {
  top: 76%;
  left: 72%;
}
#look04 .lp-look04-subkv .lp-look-modalswitch.is-pos01 {
  top: 44%;
  left: 14%;
}
#look04 .lp-look04-subkv .lp-look-modalswitch.is-pos02 {
  top: 78%;
  left: 62%;
}

.lp-pickup {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(22 / 428 * 100cqw) 0;
  margin: calc(45 / 428 * 100cqw) auto 0;
  width: calc(360 / 428 * 100cqw);
}
@media screen and (min-width:1040px) {
  .lp-pickup {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: grid;
    grid-template-rows: 50% 50%;
    gap: 0;
    margin: 0;
    width: calc(470 / 1366 * 100%);
    container-type: inline-size;
    height: 100vh;
    box-shadow: inset 3px 0 3px rgba(0, 0, 0, 0.16);
  }
}

.lp-pickup-section {
  position: relative;
  overflow: hidden;
  border-radius: calc(15 / 428 * 100cqw);
  background-color: #EAEAEA;
}
@media screen and (min-width:1040px) {
  .lp-pickup-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 0;
    padding: calc(10 / 428 * 100cqw) calc(20 / 428 * 100cqw);
    height: 50vh;
    opacity: 1 !important;
    transform: none !important;
  }
  .lp-pickup-section + .lp-pickup-section {
    border-top: 2px solid #fff;
  }
}

.lp-pickup__logo {
  position: absolute;
  z-index: 5;
  top: calc(20 / 428 * 100cqw);
  right: calc(20 / 428 * 100cqw);
  width: calc(50 / 428 * 100cqw);
  line-height: 1;
}
@media screen and (min-width:1040px) {
  .lp-pickup__logo {
    top: calc(15 / 470 * 100cqw);
    right: calc(20 / 470 * 100cqw);
    width: calc(47 / 470 * 100cqw);
  }
}

.lp-pickup-section__header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: calc(20 / 428 * 100cqw);
}
@media screen and (min-width:1040px) {
  .lp-pickup-section__header {
    position: static;
    padding: 0;
  }
}

.lp-pickup-section__header__sub {
  font-size: calc(11 / 428 * 100cqw);
  font-weight: 700;
  line-height: 1.4706;
}
@media screen and (min-width:1040px) {
  .lp-pickup-section__header__sub {
    font-size: calc(11 / 470 * 100cqw);
  }
}

.lp-pickup-section__header__main {
  margin-top: 0.2em;
  font-size: calc(16 / 428 * 100cqw);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-pickup__detail {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 calc(24 / 470 * 100cqw) calc(20 / 470 * 100cqw);
}
@media screen and (min-width:1040px) {
  .lp-pickup__detail {
    position: static;
    padding: 0;
  }
}
.lp-pickup__detail .lp-c-allitems {
  margin-top: calc(15 / 428 * 100cqw);
}
@media screen and (min-width:1040px) {
  .lp-pickup__detail .lp-c-allitems__item {
    height: calc(44 / 470 * 100cqw);
    width: calc(310 / 470 * 100cqw);
    font-size: calc(15 / 470 * 100cqw);
  }
}

.lp-pickup__detail__lead {
  padding: 0 calc(10 / 428 * 100cqw);
  font-size: calc(11 / 428 * 100cqw);
  font-weight: 400;
  line-height: 1.5455;
  text-shadow: -1px -1px 2px rgba(255, 255, 255, 0.5), 1px 1px 2px rgba(255, 255, 255, 0.5);
}
@media screen and (min-width:1040px) {
  .lp-pickup__detail__lead {
    margin: calc(15 / 470 * 100cqw) 0 0;
    padding: 0;
    text-shadow: none;
    font-size: calc(11 / 470 * 100cqw);
    width: calc(170 / 470 * 100cqw);
    font-weight: 400;
  }
}

@media screen and (min-width:1040px) {
  .lp-pickup-section__bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lp-pickup-section__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right center;
       object-position: right center;
  }
}

.lp-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.lp-footer__label {
  position: absolute;
  z-index: 5;
  top: calc(34 / 428 * 100cqw);
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--lp_font_en_std);
  font-size: calc(13 / 428 * 100cqw);
  line-height: 1.1538;
  color: var(--color_orange);
}

.lp-footer-bottom {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-bottom: calc(30 / 428 * 100cqw);
}

.lp-footer__title {
  width: calc(255 / 428 * 100cqw);
  margin: 0 auto;
}

.lp-footer-credit {
  margin-top: calc(25 / 428 * 100cqw);
  font-family: var(--lp_font_en_std);
  font-size: calc(12 / 428 * 100cqw);
  line-height: 1.5;
  list-style: none;
}

.lp-footer__brand {
  margin: calc(50 / 428 * 100cqw) auto 0;
  width: calc(70 / 428 * 100cqw);
}

.lp-footer-copyright {
  margin-top: calc(24 / 428 * 100cqw);
  font-size: calc(12 / 428 * 100cqw);
  font-family: var(--lp_font_en_std);
}

.lp-footer__bg {
  filter: blur(10px);
  opacity: 0;
  transition: ease all 1.5s;
}
.lp-footer__bg.is-show {
  opacity: 1;
  filter: blur(0px);
}

.lp-fixcv {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 calc(46 / 428 * 100cqw) calc(20 / 428 * 100cqw);
  border: none;
  transform: translateY(100%);
  transition: ease transform 0.4s;
}
.lp-fixcv .lp-c-allitems__item {
  border: none;
}
.lp-fixcv.is-active {
  transform: translateY(0);
}

body.is-modal-open {
  overflow: hidden;
  height: 100vh;
}

[data-modal-id] {
  cursor: pointer;
}

.c-modal-list {
  display: none;
}

.c-modal-wrapper {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.11);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal-wrapper.is-active {
  opacity: 1;
  visibility: visible;
}

.c-modal-view {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.c-modal-view__contents {
  position: relative;
  border-radius: 0;
  width: calc(100% - 30px);
  max-height: 90%;
  display: flex;
  margin: 0 auto;
  max-width: 428px;
  container-type: inline-size;
  width: calc(262 / 428 * 100%);
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (min-width:768px) {
  .c-modal-view__contents {
    max-width: 375px;
    width: calc(100% - 60px);
  }
}
.c-modal-view__contents > :first-child {
  margin-top: 0;
}
.is-active .c-modal-view__contents {
  opacity: 1;
  transform: translateY(0);
}

.c-modal-view__block {
  padding: 40px 0;
  width: 100%;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.c-modal-view__block::-webkit-scrollbar {
  display: none;
}

.lp-modal-credit__close {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  cursor: pointer;
  display: block;
  width: calc(28 / 262 * 100cqw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color_orange);
  transform: translate(-50%, 50%);
}
@media screen and (min-width:768px) {
  .lp-modal-credit__close {
    transition: ease background-color 0.3s;
  }
  .lp-modal-credit__close:hover {
    background-color: var(--color_base);
  }
}
.lp-modal-credit__close:before, .lp-modal-credit__close:after {
  position: absolute;
  z-index: 2;
  top: calc(50% - 1px);
  right: 20%;
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.lp-modal-credit__close:after {
  transform: rotate(45deg);
}

.lp-modal-contents__box {
  position: relative;
  padding: calc(20 / 262 * 100cqw) calc(15 / 262 * 100cqw) calc(34 / 262 * 100cqw);
  border-radius: calc(17 / 262 * 100cqw);
  border: 1px solid var(--color_orange);
  background-color: #fff;
  font-size: calc(12 / 262 * 100cqw);
  line-height: 1.4167;
}

.lp-modal-icon {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  padding: calc(3 / 262 * 100cqw) calc(10 / 262 * 100cqw) calc(1 / 262 * 100cqw);
  text-align: center;
  transform: translate(-50%, -50%);
  background-color: var(--color_orange);
  color: #000;
  border-radius: 50px;
  font-size: calc(11 / 262 * 100cqw);
  font-family: var(--lp_font_en_ext);
  font-weight: 700;
}

.lp-modal-kv {
  position: relative;
  text-align: center;
}
.lp-modal-kv img {
  width: calc(187 / 262 * 100cqw);
}

.lp-modal-kv__caption {
  display: flex;
  align-items: baseline;
  font-family: var(--lp_font_en_ext);
  position: absolute;
  top: 30%;
  left: 65%;
  white-space: nowrap;
  transform: rotate(83deg);
}
.lp-modal-kv__caption dt {
  margin-right: 0.5em;
  font-size: calc(7 / 262 * 100cqw);
}
.lp-modal-kv__caption dd {
  font-size: calc(13 / 262 * 100cqw);
}

.lp-modal-lead {
  margin-top: calc(15 / 262 * 100cqw);
  font-size: calc(12 / 262 * 100cqw);
  text-align: justify;
}

.lp-modal-credit {
  margin-top: calc(10 / 262 * 100cqw);
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width:768px) {
  .lp-modal-credit {
    transition: ease opacity 0.3s;
  }
  .lp-modal-credit:hover .lp-modal-credit__link {
    text-decoration: none;
    color: var(--color_orange);
  }
}

.lp-modal-credit__name__label {
  font-weight: 500;
  display: block;
}

.lp-modal-credit__name__price {
  display: block;
  font-weight: 500;
  font-size: calc(14 / 262 * 100cqw);
}
.lp-modal-credit__name__price:before {
  content: "¥";
}

.lp-modal-credit__link {
  flex-shrink: 0;
  text-decoration: underline;
  font-size: calc(10 / 262 * 100cqw);
  font-family: var(--lp_font_en);
  transition: ease color 0.3s;
}

#modal02-01 .lp-modal-kv img {
  width: calc(187 / 262 * 100cqw);
}
#modal02-01 .lp-modal-kv__caption {
  top: 41%;
  left: 47%;
}

#modal03-01 .lp-modal-kv img {
  width: calc(187 / 262 * 100cqw);
}
#modal03-01 .lp-modal-kv__caption {
  top: 34%;
  left: 55%;
}

#modal04-01 .lp-modal-kv img {
  width: calc(187 / 262 * 100cqw);
}
#modal04-01 .lp-modal-kv__caption {
  top: 45%;
  left: 45%;
}

#modal04-02 .lp-modal-kv img {
  width: calc(214 / 262 * 100cqw);
}
#modal04-02 .lp-modal-kv__caption {
  top: 32%;
  left: 69%;
}

.animation-fadein {
  opacity: 0;
  transition: ease-out var(--anime_duration);
  transition-property: opacity, transform;
}
.animation-fadein.is-show {
  opacity: 1 !important;
}

.animation-fadeup {
  opacity: 0;
  transform: translateY(10px);
  transition: ease-out var(--anime_duration);
  transition-property: opacity, transform;
}
.animation-fadeup.is-show {
  opacity: 1 !important;
  transform: translateY(0px);
}

.animation-clip {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: ease-out var(--anime_duration);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.animation-clip.is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}