@charset "UTF-8";

:root {
  --font-lp_base: "brandon-grotesque","Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_ttl: 'Optima',"Marcellus", serif;
  --font-lp_jpn: "ads-akari", "Noto Sans JP",sans-serif;
  --color-lp_bg: #DAE3F2;
  --color-lp_font: #444444;
  --color-lp_sub: #888888;
  --color-lp_primary: #3949BA;
  --color-lp_secondary: #65A3D9;
  --color-lp_tertiary: #EDF1FA;
  --color-lp_btn: transparent linear-gradient(90deg, #6C6CD0 0%, #65a3d9 100%) 0% 0% no-repeat padding-box;
}

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

@keyframes yurayura {
  0% , 100%{
      transform: rotate(6deg);
  }
  50%{
      transform: rotate(-6deg);
  }
}

/* cursor
==================================*/
@media (min-width: 768px) {
  #lp_contents .js-cursor {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    background-image: url(https://www.cosmekitchen-webstore.jp/Contents/ImagesPkg/product/detail/miteaorganic_coolSS_2504/bear_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    width: 5rem;
    height: 3.2rem;
    transform: translate(0.5rem, -13rem);
  }
}

/* zoom
==================================*/
#lp_contents .zoom {
  opacity: 0;
  -ms-filter: blur(30px);
  filter: blur(30px);
  transform: scale(1.2);
  transition: all 2s;
}

#lp_contents .zoom.is-show {
  opacity: 1;
  -ms-filter: blur(0);
  filter: blur(0);
  transform: scale(1);
}


/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  -ms-filter: blur(30px);
  filter: blur(30px);
  transition: all 1.5s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
  -ms-filter: blur(0);
  filter: blur(0);
}

#lp_contents .delay1{
  transition-delay: 0.25s;
}
#lp_contents .delay2{
  transition-delay: 0.5s;
}
#lp_contents .delay3{
  transition-delay: 0.75s;
}
#lp_contents .delay4{
  transition-delay: 1s;
}
#lp_contents .delay5{
  transition-delay: 1.25s;
}
#lp_contents .delay6{
  transition-delay: 1.5s;
}


/* accordion
==================================*/
#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: calc(150 * (50rem / 430));
}

#lp_contents .accordion.is-hide:before{
  content: '';
  width: 100%;
  height: calc(100 * (50rem / 430));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#lp_contents .trigger {
  display: none;
  font-size: calc(12 * (50rem / 430));
  line-height: 1;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
  text-decoration: underline;
  margin-top: calc(20 * (50rem / 430));
}

#lp_contents .trigger.is-show{
  display: none;
  display: block;
}

#lp_contents .accordion.is-hide + .trigger{
  display: block;
}

#lp_contents .accordion.is-hide + .trigger::before {
  content: "VIEW MORE +";
}

#lp_contents .accordion + .trigger.is-show::before{
  content: "CLOSE -";
}


/* accordion
==================================*/
#lp_contents #follow[data-color=anker_1] ul li:nth-child(1):before,
#lp_contents #follow[data-color=anker_2] ul li:nth-child(2):before,
#lp_contents #follow[data-color=anker_3] ul li:nth-child(3):before,
#lp_contents #follow[data-color=anker_4] ul li:nth-child(4):before{
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(https://www.cosmekitchen-webstore.jp/Contents/ImagesPkg/product/detail/miteaorganic_coolSS_2504/snow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: -3rem;
  bottom: 0;
  margin: auto;
}


/* follow
==================================*/
#lp_contents .follow{
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: all 0.5s;
  opacity: 0;
}

#lp_contents .follow.fixed{
  opacity: 1;
}

#lp_contents .follow.none{
  opacity: 0;
}

#share{
  transition: all 0.5s;
  z-index: 101 !important;
  bottom: 3rem !important;
  left: auto !important;
  right: 5%;
}

#share.fixed {
  bottom: 8rem !important;
}

#share.none {
  bottom: 3rem !important;
}


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

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

#detailOne{
  padding: 0;
}

#FooterWrap{
  position: relative;
  z-index: 100;
  background-color: #fff;
}

#lp_contents *{
  box-sizing: border-box;
}

#lp_contents{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: calc(13 * (50rem / 430));
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url(https://www.cosmekitchen-webstore.jp/Contents/ImagesPkg/product/detail/miteaorganic_coolSS_2504/bg_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;

  color: var(--color-lp_font);
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8}
#lp_contents a.no_link {
  opacity: 1;
  pointer-events: none;
}
#lp_contents ul li,#lp_contents ol li{list-style: none;}

/*------------ Text ------------*/
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  display: block;
  margin: 0;
  font-size: calc(13 * (50rem / 430));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  margin-top: calc(8 * (50rem / 430));
  font-size: calc(12 * (50rem / 430));
  line-height: 1.5;
}
#lp_contents p small.note{
  margin-top: 0;
  font-size: calc(10 * (50rem / 430));
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .lead{
  font-family: var(--font-lp_jpn);
  font-size: calc(19 * (50rem / 430));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-lp_primary);
}

/*------------ Title ------------*/
#lp_contents .ttl_wrap{
  display: grid;
  gap: calc(30 * (50rem / 430));
  margin-bottom: calc(40 * (50rem / 430));
}
#lp_contents .ttl_bg{
  position: relative;
  width: 100%;
  padding: calc(30 * (50rem / 430)) 0;
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #ffffff 52%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
}
#lp_contents .main_ttl{
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(32 * (50rem / 430));
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-lp_primary);
}
#lp_contents .sub_ttl{
  font-family: var(--font-lp_ttl);
  font-size: calc(17 * (50rem / 430));
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-lp_primary);
  margin-bottom: calc(10 * (50rem / 430));
}
#lp_contents .item_ttl{
  display: grid;
  gap: calc(20 * (50rem / 430));
}
#lp_contents .item_eng_ttl{
  font-family: var(--font-lp_ttl);
  font-size: calc(25 * (50rem / 430));
  line-height: 1;
  color: var(--color-lp_primary);
  width: fit-content;
  margin: auto;
  padding-bottom: calc(15 * (50rem / 430));
  border-bottom: 2px solid #fff;
}
#lp_contents .item_jpn_ttl{
  font-family: var(--font-lp_jpn);
  font-size: calc(23 * (50rem / 430));
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-lp_primary);
}
#lp_contents .item_ttl .jpn{
  display: block;
  font-family: var(--font-lp_base);
  font-size: calc(12 * (50rem / 430));
  margin-top: calc(10 * (50rem / 430));
}

/*------------ btn ------------*/
#lp_contents .btn_area{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: calc(10 * (50rem / 430));
}
#lp_contents .link_btn{
  width: calc(120 * (50rem / 430));
  height: calc(32 * (50rem / 430));
  border-radius: calc(16 * (50rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(13 * (50rem / 430));
  line-height: 1;
  letter-spacing: 0.12em;
  background: var(--color-lp_btn);
  color: #fff;
}
#lp_contents .link_btn.detail{
  background: #fff;
  color: var(--color-lp_secondary);
  border: 1px solid var(--color-lp_secondary);
}
#lp_contents .all_btn{
  width: calc(360 * (50rem / 430));
  height: calc(80 * (50rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--color-lp_bg);
  font-size: calc(16 * (50rem / 430));
  line-height: 1;
  margin: calc(60 * (50rem / 430)) auto 0;
}
#lp_contents .all_btn img{
  width: calc(80 * (50rem / 430));
}


/*------------ item ------------*/
#lp_contents .text_blk{
  display: grid;
  gap: calc(20 * (50rem / 430));
  margin-top: calc(20 * (50rem / 430));
}

#lp_contents .item_price{
  font-size: calc(19 * (50rem / 430));
  line-height: 1;
}

#lp_contents .item_price .small{
  font-size: calc(14 * (50rem / 430));
}


/* section
==================================*/

#lp_contents section{
  position: relative;
}

#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 50rem;
  background-color: var(--color-lp_bg);
}

#lp_contents .full_area{
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(calc(100% - 50rem) / 2);
}

#lp_contents .left_area{
  left: 0;
}
#lp_contents .left_area .logo_img{
  width: 30rem;
  height: 11.5rem;
  background-image: url(https://www.cosmekitchen-webstore.jp/Contents/ImagesPkg/product/detail/miteaorganic_coolSS_2504/snow_logo.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: center;
}

#lp_contents .left_area .mv_logo{
  width: 20rem;
}

#lp_contents .right_area{
  right: 0;
}

#lp_contents .right_area .nav_list{
  display: grid;
  gap: 2.5rem;
  font-size: 2rem;
}

#lp_contents .right_area .nav_list a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#lp_contents .sec_inner{
  display: grid;
  gap: calc(40 * (50rem / 430));
}

#lp_contents .sec_btm{
  background-color: #fff;
  padding: calc(40 * (50rem / 430)) 0;
  display: grid;
  gap: calc(70 * (50rem / 430));
}


/* nav_area
==================================*/

/*------------ nav_area ------------*/
#lp_contents .nav_area ul{
  display: flex;
  flex-wrap: wrap;
  gap: calc(4 * (50rem / 430));
  margin-top: calc(80 * (50rem / 430));
}

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

#lp_contents .nav_area li a{
  width: calc(213 * (50rem / 430));
  height: calc(36 * (50rem / 430));
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8 * (50rem / 430));
  font-size: calc(12 * (50rem / 430));
  line-height: 1;
  color: var(--color-lp_primary);
}

#lp_contents .nav_area img{
  width: calc(32 * (50rem / 430));
}

#lp_contents .nav_area .mist img{
  margin-top: calc(-42 * (50rem / 430));
}

#lp_contents .nav_area .seat img{
  margin-top: calc(-20 * (50rem / 430));
}

/*pc_only*/
#lp_contents .pc_only .nav_area ul{
  display: grid;
  gap: 3rem;
  margin-top: 0;
  padding-left: 3rem;
}

#lp_contents .pc_only .nav_area li a{
  text-align: left;
  width: fit-content;
  height: fit-content;
  background-color: initial;
  gap: 1.5rem;
  font-size: 1.5rem;
}

#lp_contents .pc_only .nav_area .mist img{
  width: 4.7rem;
}

#lp_contents .pc_only .nav_area .mist img,
#lp_contents .pc_only .nav_area .seat img{
  margin-top: 0;
}

/*sp_only*/
#lp_contents .sp_only.nav_area{
  width: 100%;
  height: calc(45 * (50rem / 430));
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .sp_only.nav_area ul{
  gap: calc(18 * (50rem / 430));
  margin-top: 0;
  justify-content: center;
  align-items: center;
}

#lp_contents .sp_only.nav_area li:not(:last-child){
  padding-right: calc(18 * (50rem / 430));
}

#lp_contents .sp_only.nav_area li:not(:last-child):before{
  content: '';
  display: block;
  width: 1px;
  height: calc(15 * (50rem / 430));
  background-color: #CCCCCC;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sp_only.nav_area li a{
  width: fit-content;
  height: fit-content;
}

#lp_contents .sp_only.nav_area .mist a,
#lp_contents .sp_only.nav_area .seat a{
  font-size: calc(10 * (50rem / 430));
  line-height: 1.3;
}

#lp_contents .sp_only.nav_area .mist img{
  width: calc(18 * (50rem / 430));
}

#lp_contents .sp_only.nav_area .seat img{
  width: calc(30 * (50rem / 430));
  margin-top: calc(-24*(50rem / 430));
}

/*------------ nav_img ------------*/
#lp_contents .nav_img{
  right: 3rem;
  bottom: 3rem;
}

#lp_contents .nav_img a{
  display: grid;
  gap: 1.5rem;
}

#lp_contents .nav_img .arrow{
  width: 1.5rem;
  margin: auto;
}

#lp_contents .nav_img .nav_text{
  font-size: 1rem;
  line-height: 1;
  color: var(--color-lp_primary);
}

#lp_contents .nav_img .bear_img{
  width: 10rem;
  transform-origin: center bottom;
  animation: yurayura 3s linear infinite;
}


/* sec_mv
==================================*/

#lp_contents .sec_mv .mv_wrap{
  position: relative;
  margin-bottom: calc(50 * (50rem / 430));
}

#lp_contents .sec_mv .mv_ttl{
  position: absolute;
  z-index: 2;
}

#lp_contents .sec_mv .mv_ttl_1{
  width: calc(310 * (50rem / 430));
  top: calc(35 * (50rem / 430));
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .sec_mv .mv_ttl_2{
  width: calc(120 * (50rem / 430));
  top: calc(145 * (50rem / 430));
  left: calc(15 * (50rem / 430));
}

#lp_contents .sec_mv .mv_logo{
  width: calc(120 * (50rem / 430));
  bottom: calc(56 * (50rem / 430));
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .sec_mv .mv_ttl_3{
  width: calc(236 * (50rem / 430));
  bottom: calc(23 * (50rem / 430));
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .sec_mv .lead{
  margin-bottom: calc(20 * (50rem / 430));
}

#lp_contents .sec_mv .accordion.is-hide{
  height: calc(125 * (50rem / 430));
}

#lp_contents .sec_mv .accordion.is-hide:before{
  content: none;
}


/* sec_item
==================================*/

#lp_contents .sec_item{
  display: grid;
  gap: calc(80 * (50rem / 430));
  margin-top: calc(60 * (50rem / 430));
}

/*------------ img_wrap ------------*/
#lp_contents .img_wrap{
  overflow: hidden;
  position: relative;
}

#lp_contents .img_wrap .mv_ttl{
  position: absolute;
  z-index: 2;
  width: calc(120*(50rem / 430));
  top: calc(20*(50rem / 430));
  left: calc(20*(50rem / 430));
}

/*------------ point_wrap ------------*/
#lp_contents .point_wrap{
  position: relative;
  width: calc(390 * (50rem / 430));
  margin: calc(50 * (50rem / 430)) auto 0;
}

#lp_contents .point_wrap .bear_img{
  width: calc(75 * (50rem / 430));
  position: absolute;
  top: calc(-50 * (50rem / 430));
  right: calc(30 * (50rem / 430));
  z-index: 2;
  transform-origin: center bottom;
  animation: yurayura 3s linear infinite;
}

#lp_contents .point_wrap .point_wrap_inner{
  background-color: var(--color-lp_tertiary);
  clip-path: polygon(calc(15 * (50rem / 430)) 0, calc(100% - calc(15 * (50rem / 430))) 0, 100% calc(15 * (50rem / 430)), 100% calc(100% - calc(15 * (50rem / 430))), calc(100% - calc(15 * (50rem / 430))) 100%, calc(15 * (50rem / 430)) 100%, 0 calc(100% - calc(15 * (50rem / 430))), 0 calc(15 * (50rem / 430)));
  padding: calc(40 * (50rem / 430)) calc(20 * (50rem / 430));
}

#lp_contents .point_wrap .point_blk{
  width: 100%;
  display: grid;
  gap: calc(25 * (50rem / 430));
}

#lp_contents .point_wrap .point_blk:not(:last-child){
  padding-bottom: calc(50 * (50rem / 430));
  margin-bottom: calc(50 * (50rem / 430));
  border-bottom: 1px solid #DBD9D9;
}

/*point_ttl_area*/
#lp_contents .point_ttl_area .point{
  font-family: var(--font-lp_ttl);
  font-size: calc(28 * (50rem / 430));
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0 auto calc(15 * (50rem / 430));
  color: var(--color-lp_primary);
}

#lp_contents .point_ttl_area .point img{
  width: calc(110 * (50rem / 430));
  margin: 0 auto calc(10 * (50rem / 430));
}

#lp_contents .point_ttl_area .point_ttl{
  font-family: var(--font-lp_jpn);
  font-weight: 500;
  font-size: calc(17 * (50rem / 430));
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--color-lp_primary);
}

/*point_inner*/
#lp_contents .point_inner{
  display: grid;
  gap: calc(25 * (50rem / 430));
}

/*cmpt_area*/
#lp_contents .cmpt_area .cmpt_ttl{
  width: 100%;
  padding: calc(5 * (50rem / 430));
  background-color: #fff;
  font-family: var(--font-lp_jpn);
  font-size: calc(16 * (50rem / 430));
  font-weight: 700;
  line-height: 1;
  color: var(--color-lp_primary);
  margin: 0 auto calc(20 * (50rem / 430));
}
#lp_contents .cmpt_area ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(30 * (50rem / 430));
}

#lp_contents .cmpt_area li{
  display: grid;
  gap: calc(10 * (50rem / 430));
  font-size: calc(10 * (50rem / 430));
  line-height: 1.5;
}

#lp_contents .cmpt_area img{
  border-radius: 100%;
  width: calc(90 * (50rem / 430));
  math-depth: 1/1;
}

/*------------ rcmd_wrap ------------*/
#lp_contents .rcmd_wrap{
  position: relative;
  width: calc(390 * (50rem / 430));
  margin: calc(40 * (50rem / 430)) auto 0;
}

#lp_contents .rcmd_wrap .rcmd_ttl{
  width: calc(240 * (50rem / 430));
  height: calc(30 * (50rem / 430));
  border-radius: calc(15 * (50rem / 430));
  background-color: var(--color-lp_primary);
  color: #fff;
  font-family: var(--font-lp_jpn);
  font-size: calc(16 * (50rem / 430));
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .rcmd_wrap .rcmd_ttl img{
  width: calc(60 * (50rem / 430));
  position: absolute;
  top: calc(-32 * (50rem / 430));
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}

#lp_contents .rcmd_wrap .check_list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (50rem / 430));
  background-color: #fff;
  clip-path: polygon(calc(15 * (50rem / 430)) 0, calc(100% - calc(15 * (50rem / 430))) 0, 100% calc(15 * (50rem / 430)), 100% calc(100% - calc(15 * (50rem / 430))), calc(100% - calc(15 * (50rem / 430))) 100%, calc(15 * (50rem / 430)) 100%, 0 calc(100% - calc(15 * (50rem / 430))), 0 calc(15 * (50rem / 430)));
  padding: calc(40 * (50rem / 430)) 0 calc(30 * (50rem / 430));
}

#lp_contents .rcmd_wrap .check_list .img{
  width: calc(80 * (50rem / 430));
}

#lp_contents .rcmd_wrap .check_list ul{
  display: grid;
  gap: calc(12 * (50rem / 430));
  width: calc(230 * (50rem / 430));
}

#lp_contents .rcmd_wrap .check_list li{
  padding-left: calc(22 * (50rem / 430));
  background-image: url(https://www.cosmekitchen-webstore.jp/Contents/ImagesPkg/product/detail/miteaorganic_coolSS_2504/check.svg);
  background-repeat: no-repeat;
  background-size: calc(15 * (50rem / 430));
  background-position: top calc(3 * (50rem / 430)) left;
  text-align: left;
  font-size: calc(14 * (50rem / 430));
  line-height: 1.5;
}

/*------------ item_wrap ------------*/
#lp_contents .item_wrap{
  margin-top: calc(20 * (50rem / 430));
}

/*item_area*/
#lp_contents .item_wrap .item_area{
  position: relative;
  padding: 6rem 0;
  background-image: url(https://www.cosmekitchen-webstore.jp/Contents/ImagesPkg/product/detail/miteaorganic_coolSS_2504/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

#lp_contents .item_wrap .item_area:before{
  content: '';
  display: block;
  width: 100%;
  height: 6rem;
  background: transparent linear-gradient(180deg, #EDF1FA00 0%, #edf1fa 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  bottom: 0;
}

#lp_contents .item_wrap .item_area .item_blk{
  position: relative;
}

#lp_contents .item_wrap .item_area .item_blk .img{
  position: relative;
  width: calc(300 * (50rem / 430));
  margin: auto;
}

#lp_contents .item_wrap .item_area .item_blk .img a{
  position: relative;
  z-index: 3;
}

#lp_contents .item_wrap .item_area .item_blk .img:before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

#lp_contents .item_wrap .item_area .item_blk li{
  width: calc(120 * (50rem / 430));
  height: calc(120 * (50rem / 430));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: rgba(101, 163, 217, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(11 * (50rem / 430));
  line-height: 1.5;
  position: absolute;
  z-index: 2;
}

#lp_contents .item_wrap .item_area .item_blk li:nth-of-type(1){
  top: 0;
  left: calc(45 * (50rem / 430));
}

#lp_contents .item_wrap .item_area .item_blk li:nth-of-type(2){
  top: 0;
  bottom: 0;
  left: calc(5 * (50rem / 430));
  margin: auto;
}

#lp_contents .item_wrap .item_area .item_blk li:nth-of-type(3){
  bottom: 0;
  left: calc(45 * (50rem / 430));
}

#lp_contents .item_wrap .item_area .item_blk li:nth-of-type(4){
  top: 0;
  right: calc(45 * (50rem / 430));
}

#lp_contents .item_wrap .item_area .item_blk li:nth-of-type(5){
  top: 0;
  bottom: 0;
  right: calc(5 * (50rem / 430));
  margin: auto;
}

#lp_contents .item_wrap .item_area .item_blk li:nth-of-type(6){
  bottom: 0;
  right: calc(45 * (50rem / 430));
}

#lp_contents .item_wrap .item_area .item_blk .bold{
  color: var(--color-lp_primary);
}

/*text_area*/
#lp_contents .item_wrap .text_area{
  background-color: var(--color-lp_tertiary);
  padding-bottom: calc(50 * (50rem / 430));
}

#lp_contents .item_wrap .text_area .text_frame{
  width: calc(370 * (50rem / 430));
  margin: auto;
  padding: calc(30 * (50rem / 430)) calc(25 * (50rem / 430));
  border: 1px solid #B2C4E3;
  display: grid;
  gap: calc(40 * (50rem / 430));
}

#lp_contents .item_wrap .text_area p.text{
  text-align: justify;
}

#lp_contents .item_wrap .text_area .accordion.is-hide:before{
  background: transparent linear-gradient(180deg, #EDF1FA00 0%, #edf1fa 100%) 0% 0% no-repeat padding-box;
}

/*------------ sec_item_seat ------------*/
#lp_contents .sec_item_seat .cmpt_area ul{
  width: 80%;
  margin: auto;
}

#lp_contents .sec_item_seat .img_1{
  display: flex;
  gap: calc(10 * (50rem / 430));
}

#lp_contents .sec_item_seat .img_1 img{
  width: calc(165 * (50rem / 430));
}

#lp_contents .sec_item_seat .img_1 img:nth-of-type(2){
  transform: translateY(calc(30 * (50rem / 430)));
}

#lp_contents .sec_item_seat .img_2{
  position: relative;
  width: 100%;
  margin: calc(140 * (50rem / 430)) auto 0;
}

#lp_contents .sec_item_seat .img_2 img{
  width: calc(210 * (50rem / 430));
  margin: auto;
}

#lp_contents .sec_item_seat img.point_text_img{
  width: calc(340 * (50rem / 430));
  transform: rotate(-2deg);
  position: absolute;
  top: calc(-100 * (50rem / 430));
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .sec_item_seat .rcmd_wrap .check_list .img{
  width: calc(110 * (50rem / 430));
}

#lp_contents .sec_item_seat .item_text_img{
  width: calc(204 * (50rem / 430));
  margin: auto;
}


/* sec_lineup
==================================*/

#lp_contents .sec_lineup ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: calc(40 * (50rem / 430)) 0;
  margin: auto;
}

#lp_contents .sec_lineup li{
  width: 50%;
  text-align: justify;
  height: fit-content;
  display: grid;
  gap: calc(15 * (50rem / 430));
}

#lp_contents .sec_lineup .img{
  overflow: hidden;
}

#lp_contents .sec_lineup .img a:hover{
  transform: scale(1.08);
  opacity: 1;
}

#lp_contents .sec_lineup .text_area{
  display: grid;
  gap: 1rem;
}

#lp_contents .sec_lineup .text_area,
#lp_contents .sec_lineup .btn_area,
#lp_contents .sec_lineup .item_text{
  padding: 0 calc(12.5 * (50rem / 430));
}

#lp_contents .sec_lineup .text{
  line-height: 1.75;
}

#lp_contents .sec_lineup .caption{
  font-size: calc(11 * (50rem / 430));
}

#lp_contents .sec_lineup .item_name{
  line-height: 1.75;
}

#lp_contents .sec_lineup .item_price{
  font-size: calc(16 * (50rem / 430));
  margin-top: calc(5 * (50rem / 430));
}

#lp_contents .sec_lineup .link_btn{
  width: calc(calc(100% - 1rem) / 2);
  height: calc(27 * (50rem / 430));
  font-size: calc(11 * (50rem / 430));
}

/*------------ bnr_wrap ------------*/
#lp_contents .bnr_wrap{
  width: calc(390 * (50rem / 430));
  margin: calc(70 * (50rem / 430)) auto 0;
  padding-top: calc(70 * (50rem / 430));
  border-top: 1px solid #DBD9D9;
}

#lp_contents .bnr_wrap .ttl_wrap{
  margin-bottom: calc(25 * (50rem / 430));
}

#lp_contents .bnr_wrap ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(70 * (50rem / 430)) calc(80 * (50rem / 430));
}

#lp_contents .bnr_wrap li{
  width: calc(360 * (50rem / 430));
  gap: 0;
}


/* sec_store
==================================*/

#lp_contents .sec_store .ttl_wrap{
  margin-bottom: calc(25 * (50rem / 430));
}

#lp_contents .sec_store .main_ttl{
  font-size: calc(32 * (50rem / 430));
}

#lp_contents .sec_store .store_wrap{
  width: calc(350 * (50rem / 430));
  padding: calc(30 * (50rem / 430)) calc(20 * (50rem / 430)) calc(20 * (50rem / 430));
  margin: auto;
  display: grid;
  gap: calc(40 * (50rem / 430));
  border-radius: calc(10 * (50rem / 430));
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}

#lp_contents .sec_store .store_wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(35 * (50rem / 430)) calc(60 * (50rem / 430));
}

#lp_contents .sec_store .store_wrap .ck{
  width: calc(142 * (50rem / 430));
}

#lp_contents .sec_store .store_wrap .bp{
  width: calc(60 * (50rem / 430));
}

#lp_contents .sec_store .store_wrap .fm{
  width: calc(155 * (50rem / 430));
}


/* sec_theory
==================================*/

#lp_contents .sec_theory .ttl_wrap{
  margin-bottom: calc(25 * (50rem / 430));
  gap: calc(20 * (50rem / 430));
}

#lp_contents .sec_theory .main_ttl{
  font-size: calc(32 * (50rem / 430));
}

#lp_contents .sec_theory .sub_ttl{
  font-family: var(--font-lp_base);
  font-size: calc(18 * (50rem / 430));
  color: var(--color-lp_font);
  line-height: 1.75;
  margin-bottom: 0;
}

#lp_contents .sec_theory .about_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: calc(20 * (50rem / 430)) calc(30 * (50rem / 430));
  width: calc(360 * (50rem / 430));
  margin: auto;
}

#lp_contents .sec_theory .heading{
  font-size: calc(20 * (50rem / 430));
  line-height: 1.5;
  margin-bottom: calc(15 * (50rem / 430));
}

#lp_contents .sec_theory .text{
  text-align: left;
}

#lp_contents .sec_theory .img{
  width: 100%;
}


/* sec_credit
==================================*/

#lp_contents .sec_credit{
  width: calc(360 * (50rem / 430));
  margin: auto;
}

#lp_contents .sec_credit p{
  text-align: left;
  font-size: calc(11 * (50rem / 430));
  display: grid;
  gap: calc(6 * (50rem / 430));
}


/*--------------------------------
            Responsive
 --------------------------------*/

@media screen and (max-width: 1600px){
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: calc(10 * (100vw / 1200));
  }
}

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

  html {
    font-size: calc(10 * (100vw / 500));
  }

  #FooterWrap {
    margin-top: -3rem;
  }
  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{opacity: 1}

  #lp_contents .lp_inner{
    box-shadow: none;
  }

}