@charset "UTF-8";

:root {
  --font-base: "Montserrat", "source-han-sans-japanese", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-eng: "handsome-pro-nib", sans-serif;
  --color-bg: #FFF7F7;
  --color-font: #333333;
  --color-line: #333333;
  --color-main: #EC8A9E;
  --color-cute: #EC8A9E;
  --color-cute_bg: #F7CCCC;
  --color-fresh: #529D7D;
  --color-fresh_bg: #C9E6DA;
  --color-feminine: #9F82C6;
  --color-feminine_bg: #EDD9F2;
  --color-cool: #7294CC;
  --color-cool_bg: #C4CEED;
  --color-btn: linear-gradient(126deg, #ec8a9e 0%, #ffc6d1 100%);
}


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

@keyframes arrowmove{
  0%{transform:translateY(-0.5rem);}
  50%{transform:translateY(0);}
  100%{transform:translateY(-0.5rem);}
}

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

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

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

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

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

#lp_contents .zoom{
  opacity: 0;
  transform: scale(0) rotate(90deg);
}

#lp_contents .is-show .zoom{
  opacity: 1;
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  transform: scale(1) rotate(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;
}


/*------------ follow ------------*/

#lp_contents .follow{
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(100%);
}

#lp_contents .follow.fixed{
  opacity: 1;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin: auto;
  z-index: 100;
  transform: translateY(0%);
}

#lp_contents .follow.none{
  opacity: 0;
  transform: translateY(100%);
}

@media (max-width: 767px) {
  #lp_contents .follow.fixed{
    right: 2rem;
    left: auto;
  }
}


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

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

#lp_contents .slick-dots li{
  margin: 1.5rem 0.5rem 0;
  width: 0.5rem;
  height: 0.5rem;
  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{
  width: 3rem;
  height: 3rem;
  z-index: 2;
}

#lp_contents .slick-prev{
  left: -0.5rem;
}

#lp_contents .slick-next{
  right: -0.5rem;
}

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before{
  font-size: 0;
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

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


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

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

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

#lp_contents{
  font-family: YakuHanJP_Narrow , var(--font-base);
  /*font-feature-settings: "palt";*/
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: center;

  color: var(--color-font);
  background-color: var(--color-bg);
  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 ul li,#lp_contents ol li{list-style: none;}
#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: 1.4rem;
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
}
#lp_contents section{
  position: relative;
}

#lp_contents .lead{
  font-size: 2.2rem;
  line-height: 1.75;
  font-weight: bold;
  margin-bottom: 3rem;
}

#lp_contents .cute .type-color{
  color: var(--color-cute);
}
#lp_contents .cute .type-color:before{
  border-color: var(--color-cute);
}

#lp_contents .fresh .type-color{
  color: var(--color-fresh);
}
#lp_contents .fresh .type-color:before{
  border-color: var(--color-fresh);
}

#lp_contents .feminine .type-color{
  color: var(--color-feminine);
}
#lp_contents .feminine .type-color:before{
  border-color: var(--color-feminine);
}

#lp_contents .cool .type-color{
  color: var(--color-cool);
}
#lp_contents .cool .type-color:before{
  border-color: var(--color-cool);
}


/*------------ line ------------*/

#lp_contents .line:before,
#lp_contents .line:after{
  content: '';
  background-color: var(--color-line);
  position: absolute;
  margin: auto;
}

#lp_contents .line.parallel:before,
#lp_contents .line.parallel:after{
  width: calc(100% - 2rem);
  height: 1px;
  left: 0;
  right: 0;
}

#lp_contents .line.parallel:before{
  top: 0;
}

#lp_contents .line.parallel:after{
  bottom: 0;
}

#lp_contents .line.vertical:before,
#lp_contents .line.vertical:after{
  width: 1px;
  height: calc(100% - 2rem);
  top: 0;
  bottom: 0;
}

#lp_contents .line.vertical:before{
  left: 0;
}

#lp_contents .line.vertical:after{
  right: 0;
}


/*------------ link_btn ------------*/

#lp_contents .link_btn{
  position: relative;
  width: 36.5rem;
  height: 7rem;
  margin: auto;
  padding-bottom: 0.5rem;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-width: 0;
  background: var(--color-btn);
  transition: background 0.5s;
}

#lp_contents .link_btn:hover{
  background: var(--color-main);
  opacity: 1;
}

#lp_contents .link_btn:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  background-image: url(../img/btn-line.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s;
}

#lp_contents .link_btn:after {
  content: '';
  display: block;
  width: 2rem;
  height: 0.5rem;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}

#lp_contents .link_btn:hover:before{
  top: 0;
  left: 0;
}


/*------------ intro ------------*/

#lp_contents.lp_intro{
  padding-bottom: 8rem;
}

#lp_contents .anker_btn{
  width: 32.5rem;
  height: 5.4rem;
  font-size: 1.8rem;
}

#lp_contents .anker_btn:before{
  background-image: url(../img/btn-line_intro.svg);
}

#lp_contents .sec_mv .mv_lead{
  font-size: 2rem;
  margin: 6rem auto 0;
}

#lp_contents .sec_type{
  margin: 8rem auto 0;
}

/*type_wrap*/
#lp_contents .sec_type .type_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fff;
  width: fit-content;
  max-width: 100rem;
  margin: auto;
}

#lp_contents .sec_type .type_wrap li{
  position: relative;
  width: 50rem;
  padding: 5rem 0;
}

#lp_contents .sec_type .type_wrap .type_txt{
  font-size: 2.2rem;
  line-height: 1;
  margin: 0 auto 1rem;
}

#lp_contents .sec_type .type_wrap .type_txt .type{
  display: inline-block;
  padding: 0 2rem 0.8rem;
  border-bottom: 2px solid;
}

#lp_contents .sec_type .type_wrap .cute .type_txt .type{
  border-color: var(--color-cute);
}

#lp_contents .sec_type .type_wrap .fresh .type_txt .type{
  border-color: var(--color-fresh);
}

#lp_contents .sec_type .type_wrap .feminine .type_txt .type{
  border-color: var(--color-feminine);
}

#lp_contents .sec_type .type_wrap .cool .type_txt .type{
  border-color: var(--color-cool);
}

#lp_contents .sec_type .type_wrap .type_txt .multi{
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem;
}

#lp_contents .sec_type .type_wrap .type_txt .multi:before,
#lp_contents .sec_type .type_wrap .type_txt .multi:after{
  content: '';
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-line);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_type .type_wrap .type_txt .multi:before{
  transform: rotate(45deg);
}

#lp_contents .sec_type .type_wrap .type_txt .multi:after{
  transform: rotate(-45deg);
}

#lp_contents .sec_type .type_wrap .type_ttl{
  line-height: 1;
}

#lp_contents .sec_type .type_wrap .type_ttl big{
  display: block;
  font-size: 8rem;
  font-family: var(--font-eng);
  transform: rotate(-5deg);
  letter-spacing: 0;
}

#lp_contents .sec_type .type_wrap .type_ttl small{
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.5rem;
}

#lp_contents .sec_type .type_wrap .type_img{
  position: relative;
  width: 31rem;
  margin: 0 auto 1rem;
}

#lp_contents .sec_type .type_wrap .type_img .circle_1{
  position: absolute;
  left: -2.2rem;
  top: 13rem;
}

#lp_contents .sec_type .type_wrap .type_img .circle_2{
  position: absolute;
  right: -3.2rem;
  top: 15rem;
}

#lp_contents .sec_type .type_wrap .type_img .square{
  position: absolute;
  left: 0.8rem;
  top: 17.5rem;
}

#lp_contents .sec_type .type_wrap .type_img .triangle{
  position: absolute;
  right: -0.2rem;
  top: 8rem;
}

#lp_contents .sec_type .type_wrap .feminine .type_img .circle_1{
  position: absolute;
  left: 2.3rem;
  top: 11rem;
}

#lp_contents .sec_type .type_wrap .feminine .type_img .circle_2{
  position: absolute;
  right: -2.2rem;
  top: 18rem;
}

#lp_contents .sec_type .type_wrap .feminine .type_img .square{
  position: absolute;
  left: -2.7rem;
  top: 15.5rem;
}

#lp_contents .sec_type .type_wrap .feminine .type_img .triangle{
  position: absolute;
  right: -0.8rem;
  top: 12rem;
}

#lp_contents .sec_type .type_wrap p b{
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/*btn_wrap*/
#lp_contents .sec_type .btn_wrap{
  margin: 8rem auto 0;
}

#lp_contents .sec_type .btn_wrap .lead{
  margin-bottom: 1.5rem;
}

#lp_contents .sec_type .btn_wrap .check_txt{
  font-size: 8rem;
  font-family: var(--font-eng);
  transform: rotate(-5deg);
  letter-spacing: 0;
  line-height: 1;
  color: var(--color-main);
}

#lp_contents .sec_type .btn_wrap .check-arrow{
  width: 2rem;
  margin: 1rem auto 0;
  animation: arrowmove 1.5s ease-in-out infinite;
}

#lp_contents .sec_type .btn_wrap .link_btn{
  margin: 2.5rem auto 0;
}


@media (min-width: 768px) {
  #lp_contents .sec_type .type_wrap li:nth-child(n+3) .line.parallel:before,
  #lp_contents .sec_type .type_wrap li:nth-child(even) .line.vertical:before{
    content: none;
  }
}


/*------------ diagnose ------------*/

#lp_contents.lp_diagnose{
  padding: 6rem 0;
}

#lp_contents .shindan > li {
  position: absolute;
  width: 100%;
  transition : all 500ms;
  opacity: 0;
  z-index: 1;
  display: none;
}
#lp_contents .shindan > li.active {
  opacity: 1;
  z-index: 9;
  position: relative;
  display: block;
}
#lp_contents .shindan .next {
  pointer-events: none;
  cursor: not-allowed;
}
#lp_contents .shindan .next.active {
  pointer-events: auto;
  cursor: pointer;
}

#lp_contents .sec_diagnose{
  position: relative;
  width: 100rem;
  background-color: #fff;
  margin: auto;
  padding: 3rem 1.5rem 5rem;
}

#lp_contents .sec_diagnose .question_ttl{
  font-size: 2.4rem;
  line-height: 1;
}

#lp_contents .sec_diagnose .question_ttl .num{
  font-family: var(--font-eng);
  font-size: 7rem;
}

#lp_contents .sec_diagnose .question_txt{
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1rem;
}

#lp_contents .sec_diagnose .question_img{
  width: 56rem;
  margin: 2.5rem auto 0;
}

#lp_contents .sec_diagnose .q_list{
  width: 50rem;
  margin: 2.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

#lp_contents .sec_diagnose input{
  display: none;
}

#lp_contents .sec_diagnose label{
  position: relative;
  width: 24rem;
  height: 6rem;
  border-radius: 0.8rem;
  border: 1px solid #C6C6C6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
  padding: 1rem;
  pointer-events: painted;
}

#lp_contents .sec_diagnose label:before{
  content: '';
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  bottom: 0;
  left: 1rem;
  margin: auto;
  background-color: #EAEAEA;
  border: none;
}

#lp_contents .sec_diagnose input[type="radio"]~label::before{
  border-radius: 100%;
}

#lp_contents .sec_diagnose input:checked~label{
  border: 1px solid var(--color-line);
}

#lp_contents .sec_diagnose input:checked~label::before{
  border: 0.4rem solid;
  box-sizing: border-box;
}

#lp_contents .sec_diagnose .btn_wrap{
  margin: 3rem auto 0;
}

#lp_contents .sec_diagnose .btn_wrap .next{
  width: 27.5rem;
  height: 5.5rem;
  font-size: 1.8rem;
  background: #c1c1c1;
}

#lp_contents .sec_diagnose .btn_wrap .next.active{
  background: var(--color-btn);
  pointer-events: auto;
}

#lp_contents .sec_diagnose .btn_wrap .next.active:hover{
  background: var(--color-main);
}

#lp_contents .sec_diagnose .btn_wrap .next:before{
  background-image: url(../img/btn-line_diagnose.svg);
}

#lp_contents .sec_diagnose .btn_wrap .next:after{
  top: 2rem;
}

#lp_contents .sec_diagnose .btn_wrap .back{
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #9F9F9F;
  margin-top: 2rem;
  padding: 0;
  background: none;
  border: none;
  pointer-events: auto;
}

#lp_contents .progress_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto 0;
}

#lp_contents .progress_ttl{
  font-size: 1.7rem;
  line-height: 1;
} 

#lp_contents .progress-bar {
  display: flex;
  justify-content: center;
}

#lp_contents .progress-bar li {
  width: 7rem;
  height: 0.4rem;
  background-color: #000000;
  opacity: 0.1;
}

#lp_contents .progress-bar li.active {
  opacity: 1;
}


/*------------ result ------------*/

#lp_contents.lp_result{
  padding-top: 6rem;
}

/*sec_result*/
#lp_contents .sec_result .ttl_wrap{
  margin: 0 auto 3rem;
}

#lp_contents .sec_result .ttl_wrap .result-ttl{
  width: 32.4rem;
  height: 8.6rem;
  display: flex;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  background-image: url(../img/frame_1_pc.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: auto;
  padding-top: 2.1rem;
}

#lp_contents .sec_result .ttl_wrap .result-type{
  font-size: 2.7rem;
  line-height: 1.75;
  font-weight: 700;
  margin-top: 1rem;
}

#lp_contents.lp_result .sec_type{
  margin-top: 4rem;
}

/*sec_item*/
#lp_contents .sec_item{
  margin: 8rem auto 0;
}

#lp_contents .sec_item .ttl_wrap .result-ttl{
  width: 47.4rem;
  height: 10.5rem;
  background-image: url(../img/frame_2_pc.svg);
  padding-top: 3rem;
}

#lp_contents .sec_item .brand_wrap{
  background-color: #fff;
  padding: 3rem 0;
}

#lp_contents .sec_item .brand_wrap .logo_ttl img{
  width: 48rem;
  margin: auto;
}

#lp_contents .sec_item .brand_wrap .logo_ttl small{
  display: block;
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

#lp_contents .sec_item .brand_wrap .brand_link{
  width: 18rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  border: 1px solid #BCBCBC;
  font-size: 1.3rem;
  color: #BCBCBC;
  margin: 2rem auto 0;
}

#lp_contents .sec_item .item_wrap{
  padding: 8rem 0;
}

#lp_contents .sec_item .item_wrap .item_blk:not(:last-child){
  margin-bottom: 8rem;
}

#lp_contents .sec_item .item_wrap .item_ttl{
  position: relative;
  width: fit-content;
  min-width: 13.5rem;
  min-height: 13.5rem;
  background-color: #fff;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem 1rem;
  margin: 0 auto 5rem;
}

#lp_contents .sec_item .item_wrap .item_ttl:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}

#lp_contents .sec_item .item_wrap .item_ttl big{
  display: block;
  font-size: 6.5rem;
  font-family: var(--font-eng);
  transform: rotate(-5deg);
  letter-spacing: 0;
  line-height: 1;
}

#lp_contents .sec_item .item_wrap .item_ttl small{
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1.5rem;
}

#lp_contents .sec_item .item_wrap .flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
}

#lp_contents .sec_item .item_wrap .flex:nth-child(n+3){
  margin-top: 6rem;
}

#lp_contents .sec_item .item_wrap .img_blk{
  width: 39rem;
}

#lp_contents .sec_item .item_wrap .text_blk{
  text-align: left;
  width: 39rem;
}

#lp_contents .sec_item .item_wrap .item_name{
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

#lp_contents .sec_item .item_wrap .item_price{
  margin-bottom: 1.5rem;
}

#lp_contents .sec_item .item_wrap .link_btn{
  width: 22rem;
  height: 5rem;
  margin-top: 3rem;
  margin-left: 0;
}

#lp_contents .cute .sec_item .item_wrap .link_btn{
  background: var(--color-cute);
}

#lp_contents .fresh .sec_item .item_wrap .link_btn{
  background: var(--color-fresh);
}

#lp_contents .feminine .sec_item .item_wrap .link_btn{
  background: var(--color-feminine);
}

#lp_contents .cool .sec_item .item_wrap .link_btn{
  background: var(--color-cool);
}

#lp_contents .sec_item .item_wrap .link_btn:before{
  background-image: url(../img/btn-line_result.svg);
}

#lp_contents .sec_item .item_wrap .link_btn:after{
  top: 1.8rem;
}

/*sec_link*/
#lp_contents .sec_link{
  padding: 6rem 0;
  background-color: #fff;
}

#lp_contents .sec_link .link_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto 4rem;
}

#lp_contents .sec_link .link_list li{
  width: 22rem;
}

#lp_contents .sec_link .link_list li a{
  opacity: 1 !important;
  border-radius: 2rem;
}

#lp_contents .sec_link .link_list li img{
  border-radius: 2rem;
}

#lp_contents .sec_link .link_list li a:hover{
  box-shadow: 0 0 2rem #f4eaea;
}

/*sec_bnr*/
#lp_contents .sec_bnr{
  padding: 8rem 0;
}

#lp_contents .sec_bnr .bnr_blk{
  width: 60rem;
  margin: auto;
}

#lp_contents .sec_bnr .bnr_blk p{
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  width: fit-content;
  margin: 3rem auto 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-line);
}


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

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

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

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

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

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

  #lp_contents .lead{
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  #share{
    bottom: 2.7rem !important;
  }


  /*------------ intro ------------*/

  #lp_contents.lp_intro{
    padding-bottom: 6rem;
  }

  #lp_contents .sec_mv .mv_lead{
    font-size: 1.7rem;
    margin: 4rem auto 0;
  }

  #lp_contents .sec_type{
    margin: 5rem auto 0;
  }

  /*type_wrap*/
  #lp_contents .sec_type .type_wrap{
    width: 39rem;
  }

  #lp_contents .sec_type .type_wrap li{
    width: 100%;
  }

  #lp_contents .sec_type .type_wrap .type_txt{
    font-size: 2rem;
  }

  #lp_contents .sec_type .type_wrap .type_ttl big{
    font-size: 6rem;
  }

  #lp_contents .sec_type .type_wrap .type_img{
    width: 25rem;
  }

  #lp_contents .sec_type .type_wrap .type_img .circle_1{
    left: -2.5rem;
    top: 12rem;
  }

  #lp_contents .sec_type .type_wrap .type_img .circle_2{
    right: -2.2rem;
    top: 13.5rem;
  }

  #lp_contents .sec_type .type_wrap .type_img .square{
    left: 0.2rem;
    top: 15.8rem;
  }

  #lp_contents .sec_type .type_wrap .feminine .type_img .circle_1{
    left: 1.4rem;
  }

  #lp_contents .sec_type .type_wrap .feminine .type_img .circle_2{
    right: -2.2rem;
    top: 16.6rem;
  }

  #lp_contents .sec_type .type_wrap .feminine .type_img .square{
    top: 15rem;
  }

  /*btn_wrap*/
  #lp_contents .sec_type .btn_wrap{
    margin: 6rem auto 0;
  }

  #lp_contents .sec_type .btn_wrap .check_txt{
    font-size: 6rem;
  }

  #lp_contents .sec_type .type_wrap li:not(:last-child) .line.parallel:after{
    content: none;
  }


  /*------------ diagnose ------------*/

  #lp_contents.lp_diagnose{
    padding: 4rem 0;
  }

  #lp_contents .sec_diagnose{
    width: 39rem;
  }

  #lp_contents .sec_diagnose .question_ttl{
    font-size: 1.6rem;
  }

  #lp_contents .sec_diagnose .question_ttl .num{
    font-size: 4.5rem;
  }

  #lp_contents .sec_diagnose .question_txt{
    font-size: 2rem;
  }

  #lp_contents .sec_diagnose .question_img{
    margin: 3rem auto 0;
    width: 100%;
  }

  #lp_contents .sec_diagnose .q_list{
    width: 34rem;
    margin: 1.5rem auto 0;
  }

  #lp_contents .sec_diagnose label{
    width: 16rem;
    height: 5rem;
    font-size: 1.8rem;
  }

  #lp_contents .progress_ttl{
    font-size: 1.4rem;
  } 

  #lp_contents .progress-bar li {
    width: 3rem;
    height: 0.4rem;
  }


  /*------------ result ------------*/

  #lp_contents.lp_result{
    padding-top: 4rem;
  }

  /*sec_result*/
  #lp_contents .sec_result .ttl_wrap .result-ttl{
    width: 26.5rem;
    height: 7.5rem;
    font-size: 2rem;
    padding-top: 1.9rem;
    background-image: url(../img/frame_1_sp.svg);
  }

  #lp_contents .sec_result .ttl_wrap .result-type{
    font-size: 2.4rem;
  }

  #lp_contents.lp_result .sec_type{
    margin-top: 3rem;
  }

  /*sec_item*/
  #lp_contents .sec_item .ttl_wrap .result-ttl{
    width: 38.5rem;
    height: 9rem;
    background-image: url(../img/frame_2_sp.svg);
    padding-top: 2.7rem;
  }

  #lp_contents .sec_item .brand_wrap{
    padding: 2rem 0;
  }

  #lp_contents .sec_item .brand_wrap .logo_ttl img{
    width: 39rem;
  }

  #lp_contents .sec_item .brand_wrap .brand_link{
    width: 15rem;
    height: 2.7rem;
    font-size: 1.2rem;
  }

  #lp_contents .sec_item .item_wrap{
    padding: 4rem 0 6rem;
  }

  #lp_contents .sec_item .item_wrap .item_blk:not(:last-child){
    margin-bottom: 6.5rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl{
    min-width: 10.5rem;
    min-height: 10.5rem;
    padding: 0 2.5rem 1rem;
    margin: 0 auto 3rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl big{
    font-size: 5.2rem;
  }

  #lp_contents .sec_item .item_wrap .img_blk{
    width: 36rem;
  }

  #lp_contents .sec_item .item_wrap .flex:nth-child(n+3){
    margin-top: 5rem;
  }

  #lp_contents .sec_item .item_wrap .text_blk{
    text-align: center;
  }

  #lp_contents .sec_item .item_wrap .item_name{
    margin-bottom: 0;
  }

  #lp_contents .sec_item .item_wrap .item_price{
    margin-bottom: 1.2rem;
  }

  #lp_contents .sec_item .item_wrap .link_btn{
    margin-left: auto;
    margin-top: 2.5rem;
  }

  /*sec_link*/
  #lp_contents .sec_link{
    padding: 4rem 0;
  }

  #lp_contents .sec_link .link_list li{
    width: 18rem;
  }

  #lp_contents .sec_link .link_list li a{
    border-radius: 2rem;
    box-shadow: 0 0 2rem #f4eaea;
  }

  #lp_contents .sec_link .link_list li img{
    border-radius: 2rem;
  }

  /*sec_bnr*/
  #lp_contents .sec_bnr{
    padding: 6rem 0;
  }

  #lp_contents .sec_bnr .lead{
    font-size: 1.6rem;
  }

  #lp_contents .sec_bnr .bnr_blk{
    width: 39rem;
  }

  #lp_contents .sec_bnr .bnr_blk p{
    font-size: 1.6rem;
    margin: 2.5rem auto 0;
  }
}