@charset "UTF-8";

/*--------------------------------
                共 通
 --------------------------------*/

#Wrap,.wrapBottom,.wrapTop{
  width: 100%;
}

#lp_contents{
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

#lp_contents::before{
  content: '';
  background: url(../img/bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
}

#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;}
#lp_contents a{display: block;}
#lp_contents ul li,#LP_page ol li{list-style: none;}
#lp_contents h1{padding: 0;float: none;}
#lp_contents p {
  color: #C7A16B;
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

#lp_contents small{
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

@keyframes hover {
  0% {
    opacity: 0.7;
    background: transparent linear-gradient(90deg, #BA7651 0%, #C7A16B 25%, #C7A16B 51%, #C7A16B 79%, #BA7651 100%) 0% 0% no-repeat padding-box;
  }
  100% {
    opacity: 1;
    background: transparent linear-gradient(90deg, #BA7651 0%, #C7A16B 25%, #C7A16B 51%, #C7A16B 79%, #BA7651 100%) 0% 0% no-repeat padding-box;
  }
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/*--------------------------------
            Fade In
 --------------------------------*/

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translate(0, 20%);
  transition: 2s;
}

.fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.delay25{
  transition-delay: 0.25s;
}
.delay50{
  transition-delay: 0.5s;
}
.delay75{
  transition-delay: 0.75s;
}
.delay100{
  transition-delay: 1s;
}

/*--------------------------------
            modal slider
 --------------------------------*/

/*common*/

body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

header.hide {
  opacity: 0;
  pointer-events: none;
}

#lp_contents .modal_outside.hide {
  opacity: 0;
  pointer-events: none;
}

#lp_contents .modal_outside {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  transition: opacity .3s;
}

#lp_contents .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#lp_contents .modal_inner {
  position: relative;
  width: 104rem;
  max-height: 100%;
  margin: 0 auto;
  background: #fff;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 1.5rem;
  border: 3px solid #C7A16B;
  box-sizing: border-box;
}

#lp_contents .modal_inner::-webkit-scrollbar {
  display: none;
}

#lp_contents .modal_inner .btn-close {
  position: absolute;
  width: 4rem;
  height: 4rem;
  transition: .3s;
  background: #C7A16B;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  cursor: hand;
}

#lp_contents .modal_inner .btn-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1.6rem;
  height: 2px;
  background: #fff;
  content: "";
  transition: .3s;
}

#lp_contents .modal_inner .btn-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2px;
  height: 1.6rem;
  background: #fff;
  content: "";
  transition: .3s;
}

#lp_contents .modal_inner .slick-prev{
  width: 4rem;
  height: 4rem;
  left: -7rem;
  z-index: 5;
}

#lp_contents .modal_inner .slick-prev:before{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#lp_contents .modal_inner .slick-next{
  width: 4rem;
  height: 4rem;
  right: -7rem;
  z-index: 5;
}

#lp_contents .modal_inner .slick-next:before{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#lp_contents .modal_inner .slick-track {
  display: flex;
}

#lp_contents .modal_inner .slick-slide {
  height: auto !important;
}

/*frame*/

#lp_contents .modal_blk_inner{
  position: relative;
  border: 1px solid #C7A16B;
}

#lp_contents .modal_blk_inner .star{
  position: absolute;
  width: 100rem;
  height: 2.5rem;
}

#lp_contents .modal_blk_inner .star.top{
  top: 0;
}
#lp_contents .modal_blk_inner .star.bottom{
  bottom: 0;
}

#lp_contents .modal_blk_inner .star::before,
#lp_contents .modal_blk_inner .star::after{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  background-image: url(../img/icon_star_2.svg);
  background-size: 1.2rem;
  background-repeat: no-repeat;
  position: absolute;
}

#lp_contents .modal_blk_inner .star.top::before{
  top: -1px;
  left: -1px;
}

#lp_contents .modal_blk_inner .star.top::after{
  top: -1px;
  right: -3px;
  background-position: top right;
}

#lp_contents .modal_blk_inner .star.bottom::before{
  bottom: -1px;
  left: -1px;
  background-position: bottom left;
}

#lp_contents .modal_blk_inner .star.bottom::after{
  bottom: -1px;
  right: -3px;
  background-position: bottom right;
}

/*content*/

#lp_contents .modal_list li{
  width: 91rem;
  padding: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .modal_list .modal_item_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 2rem;
}

#lp_contents .modal_list .img_wrap{
  width: 40rem;
}

#lp_contents .modal_list .text_wrap{
  width: 50rem;
}

#lp_contents .modal_list .item_blk .item_number{
  font-family: "campaign-serif", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
}

#lp_contents .modal_list .item_blk .item_number span{
  display: inline-block;
  font-size: 5.2rem;
  margin-left: 0.8rem;
}

#lp_contents .modal_list .item_blk .item_detail{
  position: relative;
  width: 100%;
}

#lp_contents .modal_list .item_blk .item_name{
  width: 32rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #555555;
}

#lp_contents .modal_list .item_blk .icon{
  width: 7.2rem;
  height: 2.4rem;
  border: 1px solid #555555;
  color: #555555;
  font-size: 1.3rem;
  line-height: 2.4rem;
  text-align: center;
  margin-top: 1rem;
}

#lp_contents .modal_list .item_blk .price{
  font-size: 1.6rem;
  color: #555555;
}

#lp_contents .modal_list .item_blk .link_btn{
  width: 16rem;
  height: 4rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border: none;
}

#lp_contents .modal_list .item_blk .link_btn a{
  width: 16rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.8rem;
  color: #fff;
}

#lp_contents .modal_list .text_blk{
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px dotted #C7A16B;
}

#lp_contents .modal_list .text_blk .item_ttl{
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #C7A16B;
  margin-bottom: 1.5rem;
}

#lp_contents .modal_list .text_blk .item_text{
  color: #555555;
  text-align: justify;
}


/*--------------------------------
                Contents
 --------------------------------*/

/*------------ sec_common ------------*/

#lp_contents .link_wrap{
  width: 80rem;
  padding: 4rem 0;
  margin: 10rem auto 0;
  background: rgb(193 147 147 / 10%);
}

#lp_contents .link_wrap .item_name{
  margin: 0 auto 3rem;
  font-family: "campaign-serif", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  color: #DEB67D;
}

#lp_contents .link_wrap .item_name span{
  display: block;
  line-height: 1;
  margin-top: 1rem;
}

#lp_contents .link_btn{
  margin: auto;
  width: 40rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #C7A16B;
}

#lp_contents .link_btn a{
  width: 39rem;
  height: 7rem;
  line-height: 7rem;
  letter-spacing: 0.02em;
  font-family: "campaign-serif", sans-serif;
  font-size: 3rem;
  text-align: center;
  color: #94071A;
  background: transparent linear-gradient(90deg, #BA7651 0%, #DCBA89 25%, #F2D4A9 51%, #D9B685 79%, #BA7651 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  transition: all 0.5s;
}

#lp_contents .link_btn a:hover{
  animation: hover 1s;
  background: transparent linear-gradient(90deg, #BA7651 0%, #C7A16B 25%, #C7A16B 51%, #C7A16B 79%, #BA7651 100%) 0% 0% no-repeat padding-box;
}

/*------------ sec_mv ------------*/

#lp_contents .sec_mv {
  margin: 0 auto 12rem;
}

#lp_contents .sec_mv .sec_mv_inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

#lp_contents .sec_mv .scroll_wrap{
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: 15rem;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*scroll_wrap*/

#lp_contents .sec_mv .scroll_wrap .frame{
  width: 15rem;
  height: 15rem;
  animation:15s linear infinite rotation;
}

#lp_contents .sec_mv .scroll_wrap .arrow{
  width: 4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

/*mv_wrap*/

#lp_contents .sec_mv .mv_wrap img{
  width: auto;
  min-width: 46rem;
  height: calc(100vh - 7rem);
  min-height: 69rem;
  max-height: 96rem;
}

/*ttl_wrap*/

#lp_contents .sec_mv .ttl_wrap > img{
  width: 24rem;
  margin: 0 auto 4rem;
}

#lp_contents .sec_mv .ttl_wrap h1{
  width: 46rem;
  padding-top: 28rem;
  position: relative;
  font-weight: 400;
  text-align: center;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_img{
  position: absolute;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_1{
  width: 5.4rem;
  top: 0.5rem;
  left: 7.5rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_2{
  width: 5.9rem;
  top: 3.6rem;
  left: 14rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_3{
  width: 4.9rem;
  top: 1.6rem;
  left: 20.8rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_4{
  width: 4.96rem;
  top: 3.6rem;
  right: 14.2rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_5{
  width: 5.6rem;
  top: 0;
  right: 8rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_6{
  width: 5.4rem;
  top: 10.4rem;
  left: 0;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_7{
  width: 8rem;
  top: 14rem;
  left: 7.8rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_8{
  width: 3.6rem;
  top: 15.2rem;
  left: 17.8rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_9{
  width: 1rem;
  top: 13.8rem;
  left: 22.2rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_10{
  width: 6.5rem;
  top: 15.7rem;
  right: 13.6rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_11{
  width: 5.9rem;
  top: 11.7rem;
  right: 6.8rem;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_12{
  width: 5.7rem;
  top: 13rem;
  right: 0;
}

#lp_contents .sec_mv .ttl_wrap h1 span{
  font-family: "campaign-serif", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.1em;
  color: #DEB67D;
}

/*lead_wrap*/

#lp_contents #mv_bottom{
  margin-top: 0;
  padding-top: 12rem;
}

#lp_contents .sec_mv .lead_wrap{
  width: 74rem;
  margin: 12rem auto 0;
  overflow: hidden;
}

#lp_contents .sec_mv .lead_wrap .line{
  position: relative;
  padding: 1.5rem 4.5rem;
}

#lp_contents .sec_mv .lead_wrap .line:before,
#lp_contents .sec_mv .lead_wrap .line:after{
  content: '';
  background: url(../img/icon_star_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 0;
}

#lp_contents .sec_mv .lead_wrap .line:before{
  left: 0;
}

#lp_contents .sec_mv .lead_wrap .line:after{
  right: 0;
}

#lp_contents .sec_mv .lead_wrap .lead_text{
  margin: 6rem auto;
  font-size: 1.6rem;
  line-height: 2.6;
  letter-spacing: 0.1em;
  text-align: center;
  color: #DEB67D;
}


/*------------ point_sec ------------*/

#lp_contents .point_sec{
  margin: 0 auto 10rem;
}

#lp_contents .point_sec .img_blk{
  width: 64rem;
  margin: 0 auto 8rem;
}

#lp_contents .point_sec .point_blk:not(:first-child){
  margin: 8rem auto 0;
}

#lp_contents .point_sec .point_blk img{
  width: 69rem;
  border: 1px solid #C7A16B;
  margin: 5rem auto 0;
}

#lp_contents .point_sec .point_blk p{
  text-align: center;
}

#lp_contents .point_sec .point_icon{
  margin: 0 auto 3rem;
  width: 12rem;
  height: 4rem;
  line-height: 4rem;
  font-family: "campaign-serif", sans-serif;
  font-size: 2rem;
  color: #94071A;
  background: url(../img/point.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#lp_contents .point_sec .point_ttl{
  margin: 0 auto 3rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #DEB67D;
}


/*------------ item_sec ------------*/

#lp_contents .item_sec{
  overflow: hidden;
}

#lp_contents .item_sec .loop_blk{
  margin: 0 auto 12rem;
  display: flex;
  width: 100vw;
}

#lp_contents .item_sec .loop_blk img{
  min-width: 140rem;
}

#lp_contents .item_sec .loop_blk img:first-child {
    animation: loop 50s -25s linear infinite;
}
#lp_contents .item_sec .loop_blk img:last-child {
    animation: loop2 50s linear infinite;
}

#lp_contents .item_sec ul:not(.modal_list){
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95rem;
  margin: auto;
  padding-left: 7rem;
}

#lp_contents .item_sec ul li{
  position: relative;
}

#lp_contents .item_sec ul li a{
  position: relative;
}

#lp_contents .item_sec ul:not(.modal_list) li a:before{
  content: '';
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation:blink 1.5s ease-in-out infinite alternate;
  -moz-animation:blink 1.5s ease-in-out infinite alternate;
  animation:blink 1.5s ease-in-out infinite alternate;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

#lp_contents .item_sec .number{
  font-family: "campaign-serif", sans-serif;
  font-size: 12rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  z-index: -1;
}

#lp_contents .item_sec .item_1{
  width: 32rem;
  margin-right: 4rem;
}

#lp_contents .item_sec .item_1 .number{
  top: -5.5rem;
  left: -6.8rem;
}

#lp_contents .item_sec .item_2{
  width: 28rem;
  margin-right: 4.2rem;
  margin-top: 22.5rem;
}

#lp_contents .item_sec .item_2 .number{
  top: -13.5rem;
  left: 8.5rem;
}

#lp_contents .item_sec .item_3{
  width: 20rem;
  margin-top: 8rem;
}

#lp_contents .item_sec .item_3 .number{
  top: -8rem;
  left: -4.8rem;
}

#lp_contents .item_sec .item_4{
  width: 9rem;
  margin-right: 17rem;
  margin-top: 1.5rem;
  margin-left: -2rem;
}

#lp_contents .item_sec .item_4 .number{
  top: -5rem;
  right: -10rem;
}

#lp_contents .item_sec .item_5{
  width: 8rem;
  margin-right: 9rem;
  margin-top: 17rem;
}

#lp_contents .item_sec .item_5 .number{
  top: -8rem;
  left: -4rem;
}

#lp_contents .item_sec .item_6{
  width: 8rem;
  margin-right: 10rem;
  margin-top: 5rem;
}

#lp_contents .item_sec .item_6 .number{
  bottom: -1rem;
  right: -6rem;
}

#lp_contents .item_sec .item_7{
  width: 20rem;
  margin-top: 9rem;
}

#lp_contents .item_sec .item_7 .number{
  top: -7rem;
  right: -3rem;
  z-index: 1;
}

#lp_contents .item_sec .happy-holiday{
  width: 24rem;
  margin: 8rem auto 10rem;
}


/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 767px) {

/*--------------------------------
                共 通
 --------------------------------*/

#lp_contents::before{
  content: '';
  background: url(../img/bg_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#lp_contents .sp_only{display: inline-block;}
#lp_contents .pc_only{display: none;}
#lp_contents p {
  font-size: calc(13 *(100vw / 430));
}

#lp_contents small{
  margin-top: calc(20 *(100vw / 430));
  font-size: calc(10 *(100vw / 430));
}

#lp_contents sup{
  font-size: 80%;
  margin-top: calc(-5 *(100vw / 430));
}

/*--------------------------------
            modal slider
 --------------------------------*/

/*common*/

#lp_contents .modal_inner {
  width: 100%;
  height: 100svh;
  padding: calc(15 *(100vw / 430));
}

#lp_contents .modal_inner .btn-close {
  width: calc(50 *(100vw / 430));
  height: calc(50 *(100vw / 430));
}

#lp_contents .modal_inner .btn-close::before {
  width: calc(25 *(100vw / 430));
  height: 1px;
}

#lp_contents .modal_inner .btn-close::after {
  width: 1px;
  height: calc(25 *(100vw / 430));
}

#lp_contents .modal_inner .slick-prev{
  width: fit-content;
  height: calc(20 *(100vw / 430));
  padding-left: calc(15 *(100vw / 430));
  left: calc(30 *(100vw / 430));
  top: calc(60 *(100vw / 430));
}

#lp_contents .modal_inner .slick-prev:before{
  width: calc(6 *(100vw / 430));
  height: calc(6 *(100vw / 430));
  border-bottom: 1px solid #C7A16B;
  border-left: 1px solid #C7A16B;
  top: calc(-2 *(100vw / 430));
  right: auto;
}

#lp_contents .modal_inner .slick-prev:after{
  content: 'PREV';
  font-family: "campaign-serif", sans-serif;
  font-size: calc(12 *(100vw / 430));
  color: #C7A16B;
}

#lp_contents .modal_inner .slick-next{
  width: fit-content;
  height: calc(20 *(100vw / 430));
  padding-right: calc(15 *(100vw / 430));
  right: calc(30 *(100vw / 430));
  top: calc(60 *(100vw / 430));
}

#lp_contents .modal_inner .slick-next:before{
  width: calc(6 *(100vw / 430));
  height: calc(6 *(100vw / 430));
  border-top: 1px solid #C7A16B;
  border-right: 1px solid #C7A16B;
  top: calc(-2 *(100vw / 430));
  left: auto;
}

#lp_contents .modal_inner .slick-next:after{
  content: 'NEXT';
  font-family: "campaign-serif", sans-serif;
  font-size: calc(12 *(100vw / 430));
  color: #C7A16B;
}

#lp_contents .modal_inner .slick-slide{
  height: calc(100svh - calc(40 *(100vw / 430))) !important;
  overflow-y: scroll;
}

/*frame*/

#lp_contents .modal_blk_inner .star{
  width: calc(390 *(100vw / 430));
  height: calc(20 *(100vw / 430));
}

#lp_contents .modal_blk_inner .star::before,
#lp_contents .modal_blk_inner .star::after{
  width: calc(20 *(100vw / 430));
  height: calc(20 *(100vw / 430));
  background-size: calc(12 *(100vw / 430));
}

/*content*/

#lp_contents .modal_list li{
  display: block;
  width: calc(390 *(100vw / 430));
  padding: calc(100 *(100vw / 430)) calc(30 *(100vw / 430)) calc(30 *(100vw / 430));
  box-sizing: border-box;
}

#lp_contents .modal_list .modal_item_inner{
  flex-wrap: wrap;
  flex-direction: column;
  gap: calc(20 *(100vw / 430));
}

#lp_contents .modal_list .img_wrap{
  width: calc(270 *(100vw / 430));
}

#lp_contents .modal_list .text_wrap{
  width: calc(340 *(100vw / 430));
}

#lp_contents .modal_list .item_blk .item_number{
  width: 100%;
  font-size: calc(32 *(100vw / 430));
  text-align: center;
  position: absolute;
  top: calc(30 *(100vw / 430));
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .modal_list .item_blk .item_number span{
  font-size: calc(52 *(100vw / 430));
  margin-left: calc(8 *(100vw / 430));
}

#lp_contents .modal_list .item_blk .item_name{
  width: 100%;
  font-size: calc(16 *(100vw / 430));
  font-weight: bold;
  text-align: center;
}

#lp_contents .modal_list .item_blk .icon{
  width: calc(72 *(100vw / 430));
  height: calc(24 *(100vw / 430));
  font-size: calc(13 *(100vw / 430));
  line-height: calc(24 *(100vw / 430));
  margin: calc(12 *(100vw / 430)) auto 0;
}

#lp_contents .modal_list .item_blk .price{
  font-size: calc(16 *(100vw / 430));
  text-align: center;
}

#lp_contents .modal_list .item_blk .link_btn{
  width: calc(180 *(100vw / 430));
  height: calc(36 *(100vw / 430));
  position: static;
  margin: calc(15 *(100vw / 430)) auto 0;
}

#lp_contents .modal_list .item_blk .link_btn a{
  width: calc(180 *(100vw / 430));
  height: calc(36 *(100vw / 430));
  line-height: calc(36 *(100vw / 430));
  font-size: calc(18 *(100vw / 430));
}

#lp_contents .modal_list .text_blk{
  padding-top: calc(30 *(100vw / 430));
  margin-top: calc(30 *(100vw / 430));
}

#lp_contents .modal_list .text_blk .item_ttl{
  font-size: calc(18 *(100vw / 430));
  margin-bottom: calc(15 *(100vw / 430));
}


/*--------------------------------
                Contents
 --------------------------------*/

/*------------ sec_common ------------*/

#lp_contents .link_wrap{
  width: calc(380 *(100vw / 430));
  padding: calc(40 *(100vw / 430)) 0;
  margin: calc(80 *(100vw / 430)) auto 0;
}

#lp_contents .link_wrap .item_name{
  margin: 0 auto calc(25 *(100vw / 430));
  font-size: calc(26 *(100vw / 430));
}

#lp_contents .link_wrap .item_name span{
  margin-top: calc(10 *(100vw / 430));
}

#lp_contents .link_btn{
  width: calc(300 *(100vw / 430));
  height: calc(60 *(100vw / 430));
}

#lp_contents .link_btn a{
  width: calc(295 *(100vw / 430));
  height: calc(55 *(100vw / 430));
  line-height: calc(55 *(100vw / 430));
  font-size: calc(24 *(100vw / 430));
  text-align: center;
}

/*------------ sec_mv ------------*/

#lp_contents .sec_mv {
  margin: calc(30 *(100vw / 430)) auto calc(100 *(100vw / 430));
}

#lp_contents .sec_mv .sec_mv_inner{
  flex-wrap: wrap;
  gap: calc(25 *(100vw / 430));
}

/*mv_wrap*/

#lp_contents .sec_mv .mv_wrap img{
  width: calc(300 *(100vw / 430));
  min-width: calc(300 *(100vw / 430));
  height: calc(450 *(100vw / 430));
  min-height: calc(450 *(100vw / 430));
  max-height: calc(450 *(100vw / 430));
}

/*ttl_wrap*/

#lp_contents .sec_mv .ttl_wrap > img{
  width: calc(150 *(100vw / 430));
  margin: 0 auto calc(25 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1{
  width: calc(300 *(100vw / 430));
  padding-top: calc(172 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_1{
  width: calc(35.6 *(100vw / 430));
  top: calc(2 *(100vw / 430));
  left: calc(50 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_2{
  width: calc(38.5 *(100vw / 430));
  top: calc(25 *(100vw / 430));
  left: calc(90 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_3{
  width: calc(32 *(100vw / 430));
  top: calc(10 *(100vw / 430));
  left: calc(135 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_4{
  width: calc(32 *(100vw / 430));
  top: calc(23 *(100vw / 430));
  right: calc(93 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_5{
  width: calc(37 *(100vw / 430));
  top: 0;
  right: calc(52 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_6{
  width: calc(35.5 *(100vw / 430));
  top: calc(68 *(100vw / 430));
  left: 0;
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_7{
  width: calc(53 *(100vw / 430));
  top: calc(90 *(100vw / 430));
  left: calc(50 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_8{
  width: calc(23 *(100vw / 430));
  top: calc(100 *(100vw / 430));
  left: calc(116 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_9{
  width: calc(6 *(100vw / 430));
  top: calc(91 *(100vw / 430));
  left: calc(146 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_10{
  width: calc(42 *(100vw / 430));
  top: calc(104 *(100vw / 430));
  right: calc(90 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_11{
  width: calc(38 *(100vw / 430));
  top: calc(76 *(100vw / 430));
  right: calc(44 *(100vw / 430));
}

#lp_contents .sec_mv .ttl_wrap h1 .txt_12{
  width: calc(37 *(100vw / 430));
  top: calc(84 *(100vw / 430));
  right: 0;
}

#lp_contents .sec_mv .ttl_wrap h1 span{
  font-size: calc(27 *(100vw / 430));
}

/*lead_wrap*/

#lp_contents #mv_bottom{
  margin-top: 0;
  padding-top: calc(60 *(100vw / 430));
}

#lp_contents .sec_mv .lead_wrap{
  width: 100%;
  margin: calc(60 *(100vw / 430)) auto 0;
}

#lp_contents .sec_mv .lead_wrap .line{
  position: relative;
  margin: auto;
  padding: calc(14 *(100vw / 430)) 0;
  width: calc(300 *(100vw / 430));
  min-width: 300px;
  box-sizing: border-box;
}

#lp_contents .sec_mv .lead_wrap .line:before,
#lp_contents .sec_mv .lead_wrap .line:after{
  width: calc(25 *(100vw / 430));
  height: calc(25 *(100vw / 430));
}

#lp_contents .sec_mv .lead_wrap .line:before{
  left: calc(-35 *(100vw / 430));
}

#lp_contents .sec_mv .lead_wrap .line:after{
  right: calc(-35 *(100vw / 430));
}

#lp_contents .sec_mv .lead_wrap .lead_text{
  margin: calc(60 *(100vw / 430)) auto;
  font-size: calc(13 *(100vw / 430));
}


/*------------ point_sec ------------*/

#lp_contents .point_sec{
  margin: 0 auto calc(60 *(100vw / 430));
}

#lp_contents .point_sec .img_blk{
  width: calc(380 *(100vw / 430));
  margin: 0 auto calc(60 *(100vw / 430));
}

#lp_contents .point_sec .point_blk:not(:first-child){
  margin: calc(80 *(100vw / 430)) auto 0;
}

#lp_contents .point_sec .point_blk img{
  width: calc(380 *(100vw / 430));
  margin: calc(30 *(100vw / 430)) auto 0;
}

#lp_contents .point_sec .point_blk p:not(.point_icon):not(.point_ttl){
  text-align: justify;
  width: calc(380 *(100vw / 430));
  margin: auto;
}

#lp_contents .point_sec .point_icon{
  margin: 0 auto calc(30 *(100vw / 430));
  width: calc(120 *(100vw / 430));
  height: calc(40 *(100vw / 430));
  line-height: calc(40 *(100vw / 430));
  font-size: calc(20 *(100vw / 430));
}

#lp_contents .point_sec .point_ttl{
  margin: 0 auto calc(20 *(100vw / 430));
  font-size: calc(18 *(100vw / 430));
  line-height: 1.5;
  text-align: center;
}


/*------------ item_sec ------------*/

#lp_contents .item_sec .loop_blk{
  margin: 0 auto calc(100 *(100vw / 430));
}

#lp_contents .item_sec .loop_blk img{
  min-width: calc(1200 *(100vw / 430));
}

#lp_contents .item_sec ul:not(.modal_list){
  width: calc(375 *(100vw / 430));
  padding-left: calc(0 *(100vw / 430));
}

#lp_contents .item_sec ul:not(.modal_list) li a:before{
  width: calc(15 *(100vw / 430));
  height: calc(15 *(100vw / 430));
}

#lp_contents .item_sec .number{
  font-size: calc(63 *(100vw / 430));
}

#lp_contents .item_sec .item_1{
  width: calc(170 *(100vw / 430));
  margin-right: calc(20 *(100vw / 430));
  margin-left: calc(30 *(100vw / 430));
}

#lp_contents .item_sec .item_1 .number{
  top: calc(-30 *(100vw / 430));
  left: calc(-30 *(100vw / 430));
}

#lp_contents .item_sec .item_2{
  width: calc(150 *(100vw / 430));
  margin-right: 0;
  margin-top: calc(120*(100vw / 430));
}

#lp_contents .item_sec .item_2 .number{
  top: calc(-73 *(100vw / 430));
  left: calc(53 *(100vw / 430));
}

#lp_contents .item_sec .item_3{
  width: calc(110 *(100vw / 430));
  margin-top: calc(12 *(100vw / 430));
  margin-right: calc(58 *(100vw / 430));
}

#lp_contents .item_sec .item_3 .number{
  top: calc(-45 *(100vw / 430));
  left: calc(85 *(100vw / 430));
}

#lp_contents .item_sec .item_4{
  width: calc(50 *(100vw / 430));
  margin-right: calc(80 *(100vw / 430));
  margin-top: calc(54 *(100vw / 430));
  margin-left: 0;
}

#lp_contents .item_sec .item_4 .number{
  top: 0;
  right: calc(-25 *(100vw / 430));
}

#lp_contents .item_sec .item_5{
  width: calc(50 *(100vw / 430));
  margin-right: 0;
  margin-top: calc(80 *(100vw / 430));
}

#lp_contents .item_sec .item_5 .number{
  top: calc(-45 *(100vw / 430));
  left: calc(-20 *(100vw / 430));
}

#lp_contents .item_sec .item_6{
  width: calc(45 *(100vw / 430));
  margin-right: calc(60 *(100vw / 430));
  margin-left: calc(15 *(100vw / 430));
  margin-top: calc(17 *(100vw / 430));
}

#lp_contents .item_sec .item_6 .number{
  bottom: auto;
  right: auto;
  top: calc(-28 *(100vw / 430));
  left: calc(-43 *(100vw / 430));
}

#lp_contents .item_sec .item_7{
  width: calc(120 *(100vw / 430));
  margin-top: calc(54 *(100vw / 430));
}

#lp_contents .item_sec .item_7 .number{
  top: calc(-40 *(100vw / 430));
  right: calc(2 *(100vw / 430));
}

#lp_contents .item_sec .happy-holiday{
  width: calc(200 *(100vw / 430));
  margin: calc(80 *(100vw / 430)) auto;
}
}