@charset "UTF-8";

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

/* inview animation
==================================*/
@keyframes fadeInDelay {
  0% {opacity: 0;}
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

#lp_contents .fadeInDelay li{
  opacity: 0;
}
#lp_contents .fadeInDelay li.is-show {
  animation-name: fadeInDelay;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

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

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 2s;
}

#lp_contents .zoom {
  opacity: 0;
  transform: scale(1.2);
  transition: all 2s;
}

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


#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;
}


/* slider
==================================*/
#lp_contents .slick-track {
  display: flex;
}

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

#lp_contents .slick-dots{
  position: static;
  margin: auto;
  line-height: 0;
}

#lp_contents .slick-dots li{
  margin: calc(15 * (var(--rate))) calc(5 * (var(--rate))) 0;
  width: calc(8 * (var(--rate)));
  height: calc(8 * (var(--rate)));
  border-radius: 100%;
  background-color: #fff;
  border: 1px solid;
  line-height: 0;
}

#lp_contents .slick-dots li:first-child:last-child{
  display: none;
}

#lp_contents .slick-dots li.slick-active{
  background-color: #000;
}

#lp_contents .slick-dots li button{
  display: none;
}

#lp_contents .slick-dotted.slick-slider{
  margin: 0;
}

#lp_contents .slick-prev, 
#lp_contents .slick-next{
  top: auto;
  bottom: calc(-85 * (var(--rate)));
  z-index: 2;
  width: calc(45 * (var(--rate)));
  height: calc(45 * (var(--rate)));
  box-shadow: 0px 0px 10px #0000000F;
  border-radius: 100%;
  background-color: var(--color_white);
}

#lp_contents .slick-prev{
  left: calc(220 * (var(--rate)));
}

#lp_contents .slick-next{
  right: calc(70 * (var(--rate)));
}

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before{
  font-size: 0;
  content: '';
  display: block;
  width: calc(12 * (var(--rate)));
  height: calc(12 * (var(--rate)));
  background-image: url(../img/slide-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .slick-next:before{
  transform: rotate(180deg);
}


/* accordion
==================================*/
#lp_contents .accordion{
  display: none;
  opacity: 0;
  height: 0;
  transition: 0.3s;
}

#lp_contents .accordion.open{
  display: block;
  opacity: 1;
  height: auto;
}

#lp_contents .accordion__button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 * (var(--rate)));
  width: fit-content;
  margin: calc(20 * (var(--rate))) auto 0;
  padding-bottom: calc(4 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color_font);
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color_border);
}

#lp_contents .close_btn,
#lp_contents .close_btn .plus:after{
  display: none;
}



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

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

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

#header_txt_slider,
#header_img_slider {
  position: relative;
  z-index: 100;
}

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

#lp_contents{
  /*root*/
  --rate: 50rem / 390;
  --font_base: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font_faq: "Gravitas One", serif;
  --bg-default: #fff;
  --bg-beige: #F7F6F0;
  --color_font: #212121;
  --color_sub: #888;
  --color_border: #ccc;
  --color_button: #444;
  --color_primary: #51A837;
  --color_yellow: #C4B13C;
  --color_yellow_sub: #D8CB7C;
  --color_pink: #EBA4BC;
  --color_pink_sub: #E8BECC;
  --color_orange: #DDB06D;
  --color_orange_sub: #E0CCAE;
  --color_green: #8BB572;
  --color_green_sub: #B9D9A6;
  --color_blue: #67A7D1;
  --color_blue_sub: #ABCCE2;
  --color_purple: #A16FC9;
  --color_purple_sub: #D4BDE6;
  --color_white: #fff;
  
  /*style*/
  font-family: var(--font_base);
  font-size: calc(13 * (var(--rate)));
  letter-spacing: 0.03em;
  line-height: 2;
  text-align: center;

  display: flex;
  justify-content: center;

  color: var(--color_font);
  background-color: #fbfaf2;
  position: relative;
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto; image-rendering: -webkit-optimize-contrast; -webkit-backface-visibility: hidden;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8}
#lp_contents ul li,#lp_contents ol li{list-style: none;}
#lp_contents section{
  position: relative;
}
#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 50rem;
  background-color: var(--bg-default);
  order: 2;
  padding-bottom: calc(80 * (var(--rate)));
  overflow: hidden;
}

/*------------ 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 * (var(--rate)));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: calc(10 * (var(--rate)));
  line-height: 1.5;
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}

/*------------ title ------------*/
#lp_contents .ttl_group{
  display: grid;
  gap: calc(12 * (var(--rate)));
}
#lp_contents .ttl_group .sub_ttl{
  font-size: calc(16 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
#lp_contents .ttl_group .eng_ttl{
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
}

/*------------ arrow ------------*/
#lp_contents .arrow{
  width: calc(8 * (var(--rate)));
  height: calc(8 * (var(--rate)));
  border-right: 1px solid;
  border-bottom: 1px solid;
  rotate: 45deg;
}
#lp_contents .plus{
  position: relative;
  width: calc(10 * (var(--rate)));
  height: calc(10 * (var(--rate)));
}
#lp_contents .plus:before,
#lp_contents .plus:after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#lp_contents .plus:after{
  rotate: 90deg;
}

/*------------ Button ------------*/
#lp_contents .link_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(200 * (var(--rate)));
  height: calc(36 * (var(--rate)));
  margin: auto;
  padding-right: calc(8 * (var(--rate)));
  color: var(--color_white);
  background-color: var(--color_button);
}
#lp_contents .link_btn .arrow{
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(10 * (var(--rate)));
  margin: auto;
  rotate: -45deg;
  border-color: var(--color_white);
}


/*------------ nav_list ------------*/
#lp_contents .nav_list ul{
  display: grid;
  gap: calc(10 * (var(--rate)));
  grid-template-columns: 1fr 1fr 1fr;
  width: calc(368 * (var(--rate)));
  margin: auto;
}

#lp_contents .nav_list a{
  position: relative;
  display: grid;
  gap: calc(7 * (var(--rate)));
  padding-bottom: calc(22 * (var(--rate)));
  border-radius: calc(5 * (var(--rate)));
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
}

#lp_contents .nav_list .date{
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  gap: calc(4 * (var(--rate)));
  padding: calc(8 * (var(--rate))) 0;
  font-size: calc(16 * (var(--rate)));
  line-height: 1;
}

#lp_contents .nav_list .date .new{
  font-size: calc(11 * (var(--rate)));
  color: #E68F26;
}

#lp_contents .nav_list .date .week{
  font-size: calc(10 * (var(--rate)));
}

#lp_contents .nav_list .profile{
  font-size: calc(11 * (var(--rate)));
  line-height: 1.4;
  letter-spacing: 0.05em;
}

#lp_contents .nav_list .profile .name{
  font-size: calc(14 * (var(--rate)));
}

#lp_contents .nav_list .arrow{
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(10 * (var(--rate)));
  margin: auto;
}



/*--------------------------------
              contents
--------------------------------*/

/* sec_mv
==================================*/
#lp_contents .sec_mv{
  padding-bottom: calc(60 * (var(--rate)));
}

#lp_contents .sec_mv .mv_wrap{
  margin-bottom: calc(30 * (var(--rate)));
}

#lp_contents .sec_mv .lead_wrap{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_mv .lead_wrap .lead{
  font-size: calc(14 * (var(--rate)));
}

#lp_contents .sec_mv .nav_list{
  margin-top: calc(40 * (var(--rate)));
}


/* sec_creater
==================================*/
#lp_contents .sec_creater{
  display: grid;
  gap: calc(80 * (var(--rate)));
}

#lp_contents .sec_creater .today{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
  padding: calc(6 * (var(--rate))) calc(36 * (var(--rate)));
  font-size: calc(16 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  border-radius: calc(100 * (var(--rate)));
  background-color: var(--color_primary);
  color: var(--color_white);
  transform: translateY(-50%);
}

#lp_contents .sec_creater .today:before{
  content: '';
  width: calc(14 * (var(--rate)));
  height: calc(13 * (var(--rate)));
  position: absolute;
  right: calc(20 * (var(--rate)));
  bottom: calc(-9 * (var(--rate)));
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

#lp_contents .sec_creater .creater_area{
  display: grid;
  gap: calc(40 * (var(--rate)));
}


/*------------ prof_wrap ------------*/
#lp_contents .sec_creater .prof_wrap{
  background-color: var(--bg-beige);
  padding: calc(30 * (var(--rate))) calc(15 * (var(--rate)));
}

#lp_contents .sec_creater .prof_wrap .prof_group{
  display: grid;
  grid-template-columns: calc(190 * (var(--rate))) 1fr;
  align-items: center;
}

#lp_contents .sec_creater .prof_wrap .prof_detail{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(120 * (var(--rate)));
  padding: calc(25 * (var(--rate))) calc(10 * (var(--rate))) calc(20 * (var(--rate)));
  background-color: var(--color_white);
}

#lp_contents .sec_creater .prof_wrap .prof_date{
  position: absolute;
  top: 0;
  left: calc(12 * (var(--rate)));
  display: flex;
  align-items: baseline;
  gap: calc(6 * (var(--rate)));
  padding-left: calc(8 * (var(--rate)));
  border-left: calc(2 * (var(--rate))) solid;
  transform: translateY(-50%);
  z-index: 2;
}

#lp_contents .sec_creater .prof_wrap .prof_date .date{
  position: relative;
  width: calc(35 * (var(--rate)));
  height: calc(30 * (var(--rate)));
  aspect-ratio: 1/1;
  font-size: calc(16 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_creater .prof_wrap .prof_date .date:before{
  content: '';
  position: absolute;
  top: 0;
  left: calc(-6 * (var(--rate)));
  bottom: 0;
  display: block;
  width: calc(38 * (var(--rate)));
  height: 1px;
  margin: auto;
  rotate: -45deg;
  background-color: var(--color_border);
}

#lp_contents .sec_creater .prof_wrap .prof_date .month{
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents .sec_creater .prof_wrap .prof_date .day{
  position: absolute;
  right: 0;
  bottom: 0;
}

#lp_contents .sec_creater .prof_wrap .prof_date .week{
  font-size: calc(10 * (var(--rate)));
  line-height: 1;
  transform: translateY(calc(-2 * (var(--rate))));
}

#lp_contents .sec_creater .prof_wrap .creater_detail{
  display: grid;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_creater .prof_wrap .creater_title{
  font-size: calc(11 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .sec_creater .prof_wrap .creater_name{
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_creater .prof_wrap .creater_name .big{
  font-size: calc(21 * (var(--rate)));
}

#lp_contents .sec_creater .prof_wrap .prof_txt{
  margin-top: calc(12 * (var(--rate)));
  text-align: justify;
  font-size: calc(12 * (var(--rate)));
}

#lp_contents .sec_creater .prof_wrap .about_brand{
  display: grid;
  gap: calc(15 * (var(--rate)));
  width: 100%;
  margin: calc(20 * (var(--rate))) auto 0;
  padding: calc(20 * (var(--rate)));
  text-align: justify;
  background-color: var(--color_white);
}


/*------------ faq_wrap ------------*/
#lp_contents .sec_creater .faq_wrap{
  display: grid;
  gap: calc(25 * (var(--rate)));
  padding: 0 calc(15 * (var(--rate)));
}

#lp_contents .sec_creater .faq_wrap dl{
  width: 100%;
  padding: calc(30 * (var(--rate))) calc(20 * (var(--rate)));
  text-align: justify;
  border: 1px solid;
}

#lp_contents .sec_creater .faq_wrap dt{
  margin-bottom: calc(15 * (var(--rate)));
  padding-bottom: calc(15 * (var(--rate)));
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

#lp_contents .sec_creater .faq_wrap dd{
  display: grid;
  gap: calc(15 * (var(--rate)));
  line-height: 2;
}

#lp_contents .sec_creater .faq_wrap .faq_ttl{
  display: grid;
  grid-template-columns: calc(28 * (var(--rate))) 1fr;
  gap: calc(10 * (var(--rate)));
  text-align: left;
  line-height: 1.6;
}

#lp_contents .sec_creater .faq_wrap dt .faq_ttl{
  font-size: calc(15 * (var(--rate)));
  font-weight: 500;
}

#lp_contents .sec_creater .faq_wrap dd .faq_ttl{
  font-size: calc(15 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.075em;
}

#lp_contents .sec_creater .faq_wrap .faq_ttl .eng{
  font-family: var(--font_faq);
  font-size: calc(30 * (var(--rate)));
  line-height: 1;
}


/*------------ cmnt_wrap ------------*/
#lp_contents .sec_creater .cmnt_wrap{
  display: grid;
  gap: calc(25 * (var(--rate)));
  padding: calc(40 * (var(--rate))) 0 calc(108 * (var(--rate)));
  background-color: var(--bg-beige);
}

#lp_contents .sec_creater .cmnt_wrap .cmnt_group{
  position: relative;
  width: calc(390 * (var(--rate)));
}

#lp_contents .sec_creater .cmnt_wrap .cmnt_detail{
  padding: calc(30 * (var(--rate))) calc(45 * (var(--rate))) calc(60 * (var(--rate)));
}

#lp_contents .sec_creater .cmnt_wrap .cmnt_detail:before{
  content: '';
  position: absolute;
  top: 0;
  left: calc(-45 * (var(--rate)));
  width: calc(450 * (var(--rate)));
  height: 100%;
  background-image: url(../img/frame.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

#lp_contents .sec_creater .cmnt_wrap .cmnt_detail dt{
  margin-bottom: calc(15 * (var(--rate)));
  padding-bottom: calc(15 * (var(--rate)));
  font-size: calc(16 * (var(--rate)));
  font-weight: bold;
  line-height: 1.75;
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: linear-gradient(to right, var(--color_border) 2px, transparent 2px);
}

#lp_contents .sec_creater .cmnt_wrap .cmnt_detail dd{
  display: grid;
  gap: calc(15 * (var(--rate)));
  text-align: justify;
  line-height: 2;
}

#lp_contents .sec_creater .cmnt_wrap .creater_img{
  position: absolute;
  left: calc(70 * (var(--rate)));
  bottom: calc(-80 * (var(--rate)));
  width: calc(130 * (var(--rate)));
  z-index: 2;
}


/*------------ item_wrap ------------*/
#lp_contents .sec_creater .item_wrap{
  display: grid;
  gap: calc(25 * (var(--rate)));
}

#lp_contents .sec_creater .item_wrap .item_content{
  display: grid;
  gap: calc(15 * (var(--rate)));
}

#lp_contents .sec_creater .item_wrap .pouch_img{
  position: relative;
  width: calc(340 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_creater .item_content .item_summary{
  display: grid;
  gap: calc(6 * (var(--rate)));
  padding: 0 calc(25 * (var(--rate)));
}

#lp_contents .sec_creater .item_wrap .item_lead{
  font-size: calc(15 * (var(--rate)));
  font-weight: 600;
  line-height: 1.75;
}

#lp_contents .sec_creater .item_wrap .item_txt{
  text-align: justify;
  line-height: 1.75;
}

#lp_contents .sec_creater .item_wrap .item_list{
  width: calc(390 * (var(--rate)));
}

#lp_contents .sec_creater .item_wrap .item{
  position: relative;
  display: grid;
  gap: calc(10 * (var(--rate)));
  width: calc(340 * (var(--rate)));
  margin: 0 calc(5 * (var(--rate)));
  padding: calc(15 * (var(--rate)));
  border: 1px solid var(--color_border);
}

#lp_contents .sec_creater .item_wrap .item_num{
  position: absolute;
  top: calc(8 * (var(--rate)));
  left: calc(8 * (var(--rate)));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(20 * (var(--rate)));
  padding-top: calc(1 * (var(--rate)));
  padding-left: calc(1 * (var(--rate)));
  aspect-ratio: 1/1;
  font-size: calc(10 * (var(--rate)));
  line-height: 1;
  border-radius: 100%;
  border: 1px solid;
  background-color: var(--color_white);
}

#lp_contents .sec_creater .item_wrap .item_group{
  display: grid;
  grid-template-columns: calc(100 * (var(--rate))) 1fr;
  align-items: center;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_creater .item_wrap .item_detail{
  display: grid;
  gap: calc(4 * (var(--rate)));
  text-align: left;
}

#lp_contents .sec_creater .item_wrap .item_name{
  line-height: 1.5;
}

#lp_contents .sec_creater .item_wrap .item_credit{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lp_contents .sec_creater .item_wrap .item_price{
  font-size: calc(15 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_creater .item_wrap .link_btn{
  width: calc(80 * (var(--rate)));
  height: calc(20 * (var(--rate)));
  margin: 0;
  padding-right: 0;
  font-size: calc(12 * (var(--rate)));
}


/*------------ notice_wrap ------------*/
#lp_contents .sec_creater .notice_wrap{
  position: relative;
  width: calc(340 * (var(--rate)));
  margin: auto;
  padding: calc(21 * (var(--rate))) calc(20 * (var(--rate))) calc(15 * (var(--rate)));
  background-color: #F3F5F2;
}

#lp_contents .sec_creater .notice_wrap .notice_ttl{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
  padding: calc(4 * (var(--rate))) calc(20 * (var(--rate)));
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  border-radius: calc(100 * (var(--rate)));
  background-color: var(--color_primary);
  color: var(--color_white);
  transform: translateY(-50%);
}

#lp_contents .sec_creater .notice_wrap .notice_txt{
  font-size: calc(15 * (var(--rate)));
  font-weight: bold;
  line-height: 1.75;
}


/*------------ creater_list ------------*/
#lp_contents .sec_creater .creater_list{
  display: grid;
  gap: calc(8 * (var(--rate)));
  width: calc(360 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_creater .creater_list a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10 * (var(--rate)));
  width: 100%;
  padding-right: calc(15 * (var(--rate)));
  border-radius: calc(5 * (var(--rate)));
  border: 1px solid var(--color_border);
}

#lp_contents .sec_creater .creater_list .prof_date{
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: calc(60 * (var(--rate)));
}

#lp_contents .sec_creater .creater_list .prof_date .date{
  position: relative;
  width: calc(35 * (var(--rate)));
  height: calc(30 * (var(--rate)));
  margin: auto;
  aspect-ratio: 1/1;
  font-size: calc(16 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_creater .creater_list .prof_date .date:before{
  content: '';
  position: absolute;
  top: 0;
  left: calc(-6 * (var(--rate)));
  bottom: 0;
  display: block;
  width: calc(38 * (var(--rate)));
  height: 1px;
  margin: auto;
  rotate: -45deg;
  background-color: var(--color_border);
}

#lp_contents .sec_creater .creater_list .prof_date .month{
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents .sec_creater .creater_list .prof_date .day{
  position: absolute;
  right: 0;
  bottom: 0;
}

#lp_contents .sec_creater .creater_list .prof_date .week{
  margin-top: calc(8 * (var(--rate)));
  font-size: calc(10 * (var(--rate)));
  line-height: 1;
  transform: translateY(calc(-2 * (var(--rate))));
}

#lp_contents .sec_creater .creater_list .creater_detail{
  display: grid;
  gap: calc(5 * (var(--rate)));
  padding: calc(10 * (var(--rate))) 0;
}

#lp_contents .sec_creater .creater_list .creater_title{
  font-size: calc(12 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .sec_creater .creater_list .creater_name{
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_creater .creater_list .creater_name .big{
  font-size: calc(18 * (var(--rate)));
}

#lp_contents .sec_creater .creater_list .arrow{
  rotate: -135deg;
}


/*------------ creater_6 ------------*/
#lp_contents .sec_creater #creater_6 .prof_wrap .prof_date,
#lp_contents .sec_creater #creater_6 .faq_wrap dl{
  border-color: var(--color_purple_sub);
}

#lp_contents .sec_creater #creater_6 .faq_wrap dt{
  background-image: linear-gradient(to right, var(--color_purple_sub) 2px, transparent 2px);
}

#lp_contents .sec_creater #creater_6 .faq_wrap dd .faq_ttl,
#lp_contents .sec_creater #creater_6 .cmnt_wrap .cmnt_detail dt,
#lp_contents .sec_creater #creater_6 .item_wrap .item_lead{
  color: var(--color_purple);
}

#lp_contents #creater_6 .ttl_group .eng_ttl,
#lp_contents .sec_creater #creater_6 .faq_wrap .faq_ttl .eng{
  color: var(--color_purple_sub);
}

#lp_contents .nav_list .creater_6 .date,
#lp_contents .sec_creater .creater_list .creater_6 .prof_date{
  background-color: rgba(212, 189, 230, .2);
}

#lp_contents .sec_creater .notice_wrap .notice_txt .creater_6{
  background: linear-gradient(transparent 70%, var(--color_purple_sub) 50%);
}

/*------------ creater_5 ------------*/
#lp_contents .sec_creater #creater_5 .prof_wrap .prof_date,
#lp_contents .sec_creater #creater_5 .faq_wrap dl,
#lp_contents .sec_creater #creater_5 .creater_list .prof_date{
  border-color: var(--color_blue_sub);
}

#lp_contents .sec_creater #creater_5 .faq_wrap dt{
  background-image: linear-gradient(to right, var(--color_blue_sub) 2px, transparent 2px);
}

#lp_contents .sec_creater #creater_5 .faq_wrap dd .faq_ttl,
#lp_contents .sec_creater #creater_5 .cmnt_wrap .cmnt_detail dt,
#lp_contents .sec_creater #creater_5 .item_wrap .item_lead{
  color: var(--color_blue);
}

#lp_contents #creater_5 .ttl_group .eng_ttl,
#lp_contents .sec_creater #creater_5 .faq_wrap .faq_ttl .eng{
  color: var(--color_blue_sub);
}

#lp_contents .nav_list .creater_5 .date,
#lp_contents .sec_creater .creater_list .creater_5 .prof_date{
  background-color: rgba(171, 204, 226, .2);
}

#lp_contents .sec_creater .notice_wrap .notice_txt .creater_5{
  background: linear-gradient(transparent 70%, var(--color_blue_sub) 50%);
}

/*------------ creater_4 ------------*/
#lp_contents .sec_creater #creater_4 .prof_wrap .prof_date,
#lp_contents .sec_creater #creater_4 .faq_wrap dl{
  border-color: var(--color_green_sub);
}

#lp_contents .sec_creater #creater_4 .faq_wrap dt{
  background-image: linear-gradient(to right, var(--color_green_sub) 2px, transparent 2px);
}

#lp_contents .sec_creater #creater_4 .faq_wrap dd .faq_ttl,
#lp_contents .sec_creater #creater_4 .cmnt_wrap .cmnt_detail dt,
#lp_contents .sec_creater #creater_4 .item_wrap .item_lead{
  color: var(--color_green);
}

#lp_contents #creater_4 .ttl_group .eng_ttl,
#lp_contents .sec_creater #creater_4 .faq_wrap .faq_ttl .eng{
  color: var(--color_green_sub);
}

#lp_contents .nav_list .creater_4 .date,
#lp_contents .sec_creater .creater_list .creater_4 .prof_date{
  background-color: rgba(185, 217, 166, .2);
}

#lp_contents .sec_creater .notice_wrap .notice_txt .creater_4{
  background: linear-gradient(transparent 70%, var(--color_green_sub) 50%);
}

/*------------ creater_3 ------------*/
#lp_contents .sec_creater #creater_3 .prof_wrap .prof_date,
#lp_contents .sec_creater #creater_3 .faq_wrap dl{
  border-color: var(--color_orange_sub);
}

#lp_contents .sec_creater #creater_3 .faq_wrap dt{
  background-image: linear-gradient(to right, var(--color_orange_sub) 2px, transparent 2px);
}

#lp_contents .sec_creater #creater_3 .faq_wrap dd .faq_ttl,
#lp_contents .sec_creater #creater_3 .cmnt_wrap .cmnt_detail dt,
#lp_contents .sec_creater #creater_3 .item_wrap .item_lead{
  color: var(--color_orange);
}

#lp_contents #creater_3 .ttl_group .eng_ttl,
#lp_contents .sec_creater #creater_3 .faq_wrap .faq_ttl .eng{
  color: var(--color_orange_sub);
}

#lp_contents .nav_list .creater_3 .date,
#lp_contents .sec_creater .creater_list .creater_3 .prof_date{
  background-color: rgba(224, 204, 174, .2);
}

#lp_contents .sec_creater .notice_wrap .notice_txt .creater_3{
  background: linear-gradient(transparent 70%, var(--color_orange_sub) 50%);
}

/*------------ creater_2 ------------*/
#lp_contents .sec_creater #creater_2 .prof_wrap .prof_date,
#lp_contents .sec_creater #creater_2 .faq_wrap dl{
  border-color: var(--color_pink_sub);
}

#lp_contents .sec_creater #creater_2 .faq_wrap dt{
  background-image: linear-gradient(to right, var(--color_pink_sub) 2px, transparent 2px);
}

#lp_contents .sec_creater #creater_2 .faq_wrap dd .faq_ttl,
#lp_contents .sec_creater #creater_2 .cmnt_wrap .cmnt_detail dt,
#lp_contents .sec_creater #creater_2 .item_wrap .item_lead{
  color: var(--color_pink);
}

#lp_contents #creater_2 .ttl_group .eng_ttl,
#lp_contents .sec_creater #creater_2 .faq_wrap .faq_ttl .eng{
  color: var(--color_pink_sub);
}

#lp_contents .nav_list .creater_2 .date,
#lp_contents .sec_creater .creater_list .creater_2 .prof_date{
  background-color: rgba(232, 190, 204, .2);
}

#lp_contents .sec_creater .notice_wrap .notice_txt .creater_2{
  background: linear-gradient(transparent 70%, var(--color_pink_sub) 50%);
}

/*------------ creater_1 ------------*/
#lp_contents .sec_creater #creater_1 .prof_wrap .prof_date,
#lp_contents .sec_creater #creater_1 .faq_wrap dl{
  border-color: var(--color_yellow_sub);
}

#lp_contents .sec_creater #creater_1 .faq_wrap dt{
  background-image: linear-gradient(to right, var(--color_yellow_sub) 2px, transparent 2px);
}

#lp_contents .sec_creater #creater_1 .faq_wrap dd .faq_ttl,
#lp_contents .sec_creater #creater_1 .cmnt_wrap .cmnt_detail dt,
#lp_contents .sec_creater #creater_1 .item_wrap .item_lead{
  color: var(--color_yellow);
}

#lp_contents #creater_1 .ttl_group .eng_ttl,
#lp_contents .sec_creater #creater_1 .faq_wrap .faq_ttl .eng{
  color: var(--color_yellow_sub);
}

#lp_contents .nav_list .creater_1 .date,
#lp_contents .sec_creater .creater_list .creater_1 .prof_date{
  background-color: rgba(216, 203, 124, .2);
}

#lp_contents .sec_creater #creater_1 .prof_wrap .creater_title{
  font-size: calc(9 * (var(--rate)));
}



/*--------------------------------
            Layout  PC
 --------------------------------*/
@media screen and (min-width: 768px){
  #lp_contents .full_area{
    position: sticky;
    top: 0;
    height: 100vh;

    width: calc(calc(100% - 50rem) / 2);
    max-width: 60rem;

    padding: 3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #lp_contents .left_area{
    left: 0;
    order: 1;
  }

  #lp_contents .left_area .title{
    width: min(360px, calc(360 * (100vw / 1400)));
  }

  #lp_contents .left_area .sticker{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: min(70px, calc(70 * (100vw / 1400)));
    margin: auto;
    transform: translate(18.5rem, -3rem);
  }

  #lp_contents .right_area{
    right: 0;
    order: 3;
  }

  #lp_contents .right_area .nav_list ul{
    gap: 1rem;
    width: 40rem;
  }

  #lp_contents .right_area .nav_list a{
    gap: 1rem;
    padding-bottom: 2.8rem;
    border-radius: 0.5rem;
  }

  #lp_contents .right_area .nav_list .date{
    gap: 0.4rem;
    padding: 0.8rem 0;
    font-size: 1.8rem;
  }

  #lp_contents .right_area .nav_list .date .new{
    font-size: 1.3rem;
  }

  #lp_contents .right_area .nav_list .date .week{
    font-size: 1.2rem;
  }

  #lp_contents .right_area .nav_list .profile{
    font-size: 1.3rem;
  }

  #lp_contents .right_area .nav_list .profile .name{
    font-size: 1.6rem;
  }

  #lp_contents .right_area .nav_list .arrow{
    bottom: 1rem;
  }
}


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

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

  #lp_contents .left_area,
  #lp_contents .right_area{
    display: none;
  }
}

/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 767px) {
  html {
    font-size: calc(10 * (100vw / 500));
  }

  #share{
    z-index: 100 !important;
  }

  .share-txt {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .share-txt span {
    margin-top: calc(40 * (100vw / 750));
    margin-bottom: calc(40* (100vw / 750));
  }

  #FooterWrap {
    margin-top: -3rem;
  }

  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{opacity: 1}
}