@charset "UTF-8";

:root {
  --font-lp_base: "Lato","Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_serif: "Gloock","Shippori Mincho", serif;
  --color-lp_bg: #fff;
  --color-lp_font: #272727;
  --color-lp_primary: #272727;
  --color-lp_secondary: #FFFEF5;
  --color-lp_blue_1: #E2EBF2;
  --color-lp_blue_2: #ABBCD3;
  --color-lp_pink_1: #FDF4F5;
  --color-lp_pink_2: #E2AEB8;
}

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

/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  transition: 2s;
}

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

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, calc(20 * (60rem / 430)));
  transition: 2s;
}

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

#lp_contents .fadeInLeft {
  opacity: 0;
  transform: translate(calc(-20 * (60rem / 430)), 0);
  transition: 2s;
}

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

#lp_contents .fadeInRight {
  opacity: 0;
  transform: translate(calc(20 * (60rem / 430)), 0);
  transition: 2s;
}

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

#lp_contents .delay1,
#lp_contents .sec_staff .item:nth-child(1){
  transition-delay: 0.25s;
}
#lp_contents .delay2,
#lp_contents .sec_staff .item:nth-child(2){
  transition-delay: 0.5s;
}
#lp_contents .delay3,
#lp_contents .sec_staff .item:nth-child(3){
  transition-delay: 0.75s;
}
#lp_contents .delay4,
#lp_contents .sec_staff .item:nth-child(4){
  transition-delay: 1s;
}

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

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

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

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

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

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

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

  color: var(--color-lp_font);
  background-color: var(--color-lp_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: calc(11 * (60rem / 430));
  line-height: 2;
}
#lp_contents .bnr_img{
  width: calc(330 * (60rem / 430));
  margin: auto;
}


/* nav_list
==================================*/
#lp_contents .nav_list ol{
  display: grid;
  gap: calc(15 * (60rem / 430));
  width: calc(330 * (60rem / 430));
  margin: auto;
}

#lp_contents .nav_list ol li{
  position: relative;
  padding-bottom: calc(15 * (60rem / 430));
  background-image: url(../img/line.svg);
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 100%;
  font-family: var(--font-lp_serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

#lp_contents .nav_list ol li:after{
  content: '';
  width: calc(10 * (60rem / 430));
  height: calc(8 * (60rem / 430));
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  top: calc(50% - calc(15 * (60rem / 430)));
  right: calc(15 * (60rem / 430));
}

#lp_contents .nav_list .staff_name{
  display: flex;
  align-items: center;
  width: calc(300 * (60rem / 430));
  font-size: calc(12 * (60rem / 430));
  font-weight: bold;
}

#lp_contents .nav_list .staff_name dt{
  width: calc(30 * (60rem / 430));
}

#lp_contents .nav_list .nav_ttl{
  font-size: calc(14 * (60rem / 430));
  line-height: 1.5;
}


/* section
==================================*/
#lp_contents section{
  position: relative;
}

#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 60rem;
  background-color: var(--color-lp_bg);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);
  display: grid;
  gap: calc(70 * (60rem / 430));
  padding-bottom: calc(70 * (60rem / 430));
}

#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% - 60rem) / 2);
  background-color: var(--color-lp_secondary);
  transition: all 0.5s;
}

#lp_contents .full_area[data-color=sec_mv]{
  background-color: var(--color-lp_secondary);
}

#lp_contents .full_area[data-color=sec_1],
#lp_contents .full_area[data-color=sec_3]{
  background-color: #F0F5F8;
}

#lp_contents .full_area[data-color=sec_2],
#lp_contents .full_area[data-color=sec_4]{
  background-color: #FEF9FA;
}

#lp_contents .left_area{
  left: 0;
}

#lp_contents .left_area svg path{
  transition: all 0.5s;
}

#lp_contents .left_area[data-color=sec_1] svg path,
#lp_contents .left_area[data-color=sec_3] svg path{
  fill: #2763A5;
}

#lp_contents .left_area[data-color=sec_2] svg path,
#lp_contents .left_area[data-color=sec_4] svg path{
  fill: #dc8898;
}

#lp_contents .left_area img,
#lp_contents .left_area svg{
  max-width: 25rem;
}

#lp_contents .right_area{
  right: 0;
}

#lp_contents .right_area .nav_list ol{
  gap: 1.5rem;
  width: 33rem;
}

#lp_contents .right_area .nav_list ol li{
  padding-bottom: 1.5rem;
}

#lp_contents .right_area .nav_list ol li:after{
  width: 1rem;
  height: 0.8rem;
  top: calc(50% - 1.5rem);
  right: 1.5rem;
}

#lp_contents .right_area .nav_list .staff_name{
  width: 30rem;
  font-size: 1.2rem;
}

#lp_contents .right_area .nav_list .staff_name dt{
  width: 3rem;
}

#lp_contents .right_area .nav_list .nav_ttl{
  font-size: 1.4rem;
}


/* sec_mv
==================================*/
#lp_contents .sec_mv{
  display: grid;
  gap: calc(50 * (60rem / 430));
}


/* sec_staff
==================================*/
/*------------ staff_name ------------*/
#lp_contents .sec_staff .staff_name{
  text-align: center;
  font-family: var(--font-lp_serif);
  font-size: calc(20 * (60rem / 430));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: calc(20 * (60rem / 430));
}

#lp_contents .sec_staff .staff_name .small{
  display: inline-block;
  font-size: calc(12 * (60rem / 430));
  margin-bottom: calc(12 * (60rem / 430));
}

/*------------ item_area ------------*/
#lp_contents .sec_staff .item_area{
  position: relative;
  padding: calc(40 * (60rem / 430)) 0 calc(60 * (60rem / 430));
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: calc(380 * (60rem / 430)), calc(380 * (60rem / 430));
}

#lp_contents .sec_staff:nth-child(even) .item_area{
  background-image: url(../img/frame_top_blue.svg), url(../img/frame_btm_blue.svg);
}

#lp_contents .sec_staff:nth-child(odd) .item_area{
  background-image: url(../img/frame_top_pink.svg), url(../img/frame_btm_pink.svg);
}

#lp_contents .sec_staff .item_area:before{
  content: '';
  display: block;
  width: calc(360 * (60rem / 430));
  height: calc(100% - calc(20 * (60rem / 430)));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

#lp_contents .sec_staff:nth-child(even) .item_area:before{
  background-color: var(--color-lp_blue_1);
}

#lp_contents .sec_staff:nth-child(odd) .item_area:before{
  background-color: var(--color-lp_pink_1);
}

/*------------ staff_wrap ------------*/
#lp_contents .sec_staff .staff_wrap{
  position: relative;
  display: grid;
  gap: calc(20 * (60rem / 430));
  margin-bottom: calc(20 * (60rem / 430));
  padding-bottom: calc(20 * (60rem / 430));
  width: calc(430 * (60rem / 430));
  /*overflow: hidden;*/
}

#lp_contents .sec_staff .staff_wrap .staff_ttl{
  text-align: center;
  font-family: var(--font-lp_serif);
  font-size: calc(22 * (60rem / 430));
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

#lp_contents .sec_staff .staff_wrap .staff_lead{
  width: calc(210 * (60rem / 430));
  margin-left: calc(200 * (60rem / 430));
  position: relative;
  z-index: 2;
}

#lp_contents .sec_staff .staff_wrap .staff_prof{
  width: calc(190 * (60rem / 430));
  padding: calc(15 * (60rem / 430));
  margin-left: calc(200 * (60rem / 430));
  border-radius: calc(10 * (60rem / 430));
  background-color: var(--color-lp_bg);
  box-shadow: 0 calc(3 * (60rem / 430)) calc(6 * (60rem / 430)) rgba(0, 0, 0, 0.16);
  rotate: 6deg;
  position: relative;
  z-index: 2;
  transition: all 0.8s;
}

#lp_contents .sec_staff .staff_wrap .staff_prof:hover{
  transform: scale(1.05);
}

#lp_contents .sec_staff .staff_wrap .staff_prof a{
  display: grid;
  gap: calc(10 * (60rem / 430));
}

#lp_contents .sec_staff .staff_wrap .prof_txt{
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(6 * (60rem / 430));
  font-size: calc(10 * (60rem / 430));
  line-height: 1.2;
}

#lp_contents .sec_staff .staff_wrap .prof_txt img{
  width: calc(30 * (60rem / 430));
  border-radius: 100%;
}

#lp_contents .sec_staff .staff_wrap .prof_txt:after{
  content: '';
  display: block;
  width: calc(12 * (60rem / 430));
  height: calc(2 * (60rem / 430));
  background-image: url(../img/icon_top.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_staff .staff_wrap .prof_icon{
  display: flex;
  align-items: end;
  justify-content: space-between;
}

#lp_contents .sec_staff .staff_wrap .prof_icon img{
  width: calc(68 * (60rem / 430));
}

#lp_contents .sec_staff .staff_wrap .check_txt{
  display: flex;
  align-items: center;
  gap: calc(3 * (60rem / 430));
  line-height: 1;
  width: fit-content;
  font-size: calc(13 * (60rem / 430));
}

#lp_contents .sec_staff .staff_wrap .check_txt:after{
  content: '';
  width: calc(10 * (60rem / 430));
  height: calc(8 * (60rem / 430));
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  rotate: -90deg;
}

#lp_contents .sec_staff .staff_wrap .staff_img{
  width: calc(290 * (60rem / 430));
  position: absolute;
  top: calc(50 * (60rem / 430));
  bottom: 0;
  right: calc(220 * (60rem / 430));
  margin: auto;
  z-index: 1;
}

/*------------ howto_ttl ------------*/
#lp_contents .sec_staff .howto_ttl{
  position: relative;
  font-family: var(--font-lp_serif);
  font-size: calc(17 * (60rem / 430));
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: calc(20 * (60rem / 430));
}

#lp_contents .sec_staff .howto_ttl span{
  display: block;
  width: fit-content;
  padding: 0 calc(15 * (60rem / 430));
  margin: auto;
  position: relative;
  z-index: 2;
}

#lp_contents .sec_staff:nth-child(even) .howto_ttl span{
  background-color: var(--color-lp_blue_1);
}

#lp_contents .sec_staff:nth-child(odd) .howto_ttl span{
  background-color: var(--color-lp_pink_1);
}

#lp_contents .sec_staff .howto_ttl:before{
  content: '';
  display: block;
  width: calc(270 * (60rem / 430));
  height: calc(1 * (60rem / 430));
  background-image: url(../img/line.svg);
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

/*------------ item_wrap ------------*/
#lp_contents .sec_staff .item_wrap{
  display: grid;
  gap: calc(50 * (60rem / 430));
}

#lp_contents .sec_staff .item_blk{
  position: relative;
}

#lp_contents .sec_staff .item_ttl{
  text-align: center;
  font-family: var(--font-lp_serif);
  font-size: calc(40 * (60rem / 430));
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: calc(10 * (60rem / 430));
}

#lp_contents .sec_staff .item_ttl.fixed{
  position: sticky;
  top: calc(100 * (60rem / 430));
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 0 calc(17 * (60rem / 430));
  white-space: nowrap;
  margin-bottom: 0;
}

#lp_contents .sec_staff .item_sub_ttl{
  text-align: center;
  font-family: var(--font-lp_serif);
  font-size: calc(20 * (60rem / 430));
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.5;
  width: 100%;
}

#lp_contents .sec_staff .item_detail .item_sub_ttl{
  text-align: left;
  margin-bottom: calc(10 * (60rem / 430));
}

#lp_contents .sec_staff:nth-child(even) .item_ttl,
#lp_contents .sec_staff:nth-child(even) .item_sub_ttl{
  color: var(--color-lp_blue_2);
}

#lp_contents .sec_staff:nth-child(odd) .item_ttl,
#lp_contents .sec_staff:nth-child(odd) .item_sub_ttl{
  color: var(--color-lp_pink_2);
}

#lp_contents .sec_staff .item_blk:nth-child(odd) .item_ttl.fixed{
  margin-left: auto;
}

#lp_contents .sec_staff .item_blk:nth-child(even) .item_ttl.fixed{
  margin-right: auto;
}

#lp_contents .sec_staff .row{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  gap: 0 calc(20 * (60rem / 430));
}

#lp_contents .sec_staff .row_1{
  align-items: flex-start;
}

#lp_contents .sec_staff .row:not(:last-child){
  margin-bottom: calc(30 * (60rem / 430));
}

#lp_contents .sec_staff .item_blk:nth-child(odd) .row_1{
  justify-content: left;
}

#lp_contents .sec_staff .item_blk:nth-child(even) .row_1{
  justify-content: right;
  flex-direction: row-reverse;
}

#lp_contents .sec_staff .make_img{
  width: calc(220 * (60rem / 430));
}

#lp_contents .sec_staff .item{
  display: grid;
  justify-content: center;
  gap: calc(10 * (60rem / 430));
}

#lp_contents .sec_staff .item_img{
  position: relative;
  width: calc(140 * (60rem / 430));
  margin: auto;
}

#lp_contents .sec_staff .item_txt{
  font-size: calc(10 * (60rem / 430));
  line-height: 1.5;
  padding: calc(5 * (60rem / 430)) calc(15 * (60rem / 430));
  border-radius: calc(100 * (60rem / 430));
  background-color: rgba(255, 255, 255, .8);
  position: absolute;
  bottom: 0;
  white-space: nowrap;
}

#lp_contents .sec_staff .item_txt:before{
  content: '';
  display: block;
  width: calc(10 * (60rem / 430));
  height: calc(8 * (60rem / 430));
  background-image: url(../img/pop-arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(-8 * (60rem / 430));
}

#lp_contents .sec_staff .item_detail{
  width: fit-content;
  margin: auto;
}

#lp_contents .sec_staff .item_detail .item_tag{
  width: fit-content;
  padding: calc(4 * (60rem / 430)) calc(4 * (60rem / 430)) calc(3 * (60rem / 430));
  font-size: calc(8 * (60rem / 430));
  border: 1px solid #999;
  line-height: 1;
  margin-bottom: calc(4 * (60rem / 430));
}

#lp_contents .sec_staff .item_detail .item_name{
  font-size: calc(10 * (60rem / 430));
  line-height: 1.5;
}

#lp_contents .sec_staff .item_detail .item_price{
  font-size: calc(10 * (60rem / 430));
  line-height: 1;
  margin-top: calc(4 * (60rem / 430));
}

#lp_contents .sec_staff .link_btn{
  width: calc(50 * (60rem / 430));
  height: calc(16 * (60rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-lp_primary);
  color: #fff;
  font-size: calc(10 * (60rem / 430));
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: calc(8 * (60rem / 430));
}

/*------------ staff_1 ------------*/
#lp_contents .sec_staff .item_1{
  position: absolute;
  top: 0;
  right: calc(40 * (60rem / 430));
  z-index: 2;
}

#lp_contents .sec_staff .item_4{
  transform: translateY(calc(20 * (60rem / 430)));
}

#lp_contents .sec_staff .item_4 .item_img{
  width: calc(160 * (60rem / 430));
}

#lp_contents .sec_staff .item_5{
  position: absolute;
  top: calc(-90 * (60rem / 430));
  right: calc(20 * (60rem / 430));
}

#lp_contents .sec_staff .item_5 .item_img{
  width: calc(180 * (60rem / 430));
}

#lp_contents .sec_staff .item_5 .item_txt{
  right: calc(-20 * (60rem / 430));
}

#lp_contents .sec_staff .item_5 .item_txt:before{
  transform: scale(-1, 1);
  right: calc(50 * (60rem / 430));
}

#lp_contents .sec_staff .item_6{
  transform: translateX(calc(-65 * (60rem / 430)));
}

#lp_contents .sec_staff .item_6 .item_img{
  width: calc(160 * (60rem / 430));
}

#lp_contents .sec_staff .item_6 .item_txt{
  left: calc(-65 * (60rem / 430));
}

#lp_contents .sec_staff .item_6 .item_txt:before{
  right: calc(35 * (60rem / 430));
}

#lp_contents .sec_staff .item_7{
  position: absolute;
  top: calc(-60 * (60rem / 430));
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
}

#lp_contents .sec_staff .item_7 .item_img{
  width: calc(150 * (60rem / 430));
}

#lp_contents .sec_staff .item_9 .item_txt{
  top: calc(-10 * (60rem / 430));
  bottom: auto;
  right: calc(-15 * (60rem / 430));
}

#lp_contents .sec_staff .item_9 .item_txt:before{
  top: auto;
  bottom: calc(-8 * (60rem / 430));
  right: calc(45 * (60rem / 430));
  transform: scale(-1, -1);
}

#lp_contents .staff_1 .row_3{
  gap: calc(100 * (60rem / 430));
}

/*------------ staff_2 ------------*/
#lp_contents .staff_2 .staff_wrap .staff_img{
  width: calc(260 * (60rem / 430));
  right: calc(210 * (60rem / 430));
}

#lp_contents .sec_staff.staff_2 .item_7{
  position: absolute;
  top: calc(-55 * (60rem / 430));
  right: calc(24 * (60rem / 430));
  left: auto;
}

#lp_contents .sec_staff.staff_2 .item_7 .item_img{
  width: calc(150 * (60rem / 430));
}

#lp_contents .sec_staff .item_12{
  margin-left: calc(15 * (60rem / 430));
}

#lp_contents .sec_staff .item_12 .item_img{
  width: calc(210 * (60rem / 430));
}

#lp_contents .sec_staff .item_14{
  transform: translateY(calc(-50 * (60rem / 430)));
}

#lp_contents .sec_staff .item_16 .item_img{
  width: calc(180 * (60rem / 430));
}

#lp_contents .sec_staff .item_16 .item_txt{
  right: calc(-20 * (60rem / 430));
}

#lp_contents .sec_staff .item_16 .item_txt:before{
  right: calc(50 * (60rem / 430));
  transform: scale(-1, 1);
}

#lp_contents .sec_staff .item_17 .item_img{
  width: calc(170 * (60rem / 430));
}

#lp_contents .sec_staff .item_18{
  position: absolute;
  top: calc(40 * (60rem / 430));
  left: calc(46 * (60rem / 430));
  z-index: 2;
}

#lp_contents .sec_staff .item_18 .item_sub_ttl{
  text-align: left;
  margin-left: calc(24 * (60rem / 430));
}

#lp_contents .sec_staff .item_18 .item_img{
  width: calc(220 * (60rem / 430));
}

#lp_contents .sec_staff .item_18 .item_detail{
  position: absolute;
  right: calc(-105 * (60rem / 430));
  bottom: calc(-40 * (60rem / 430));
}

#lp_contents .sec_staff .item_19{
  display: flex;
  align-items: center;
  gap: calc(20 * (60rem / 430));
}

#lp_contents .sec_staff .item_19 .item_img{
  width: calc(180 * (60rem / 430));
}

#lp_contents .sec_staff .item_19 .item_detail{
  transform: translateY(calc(20 * (60rem / 430)));
}

#lp_contents .staff_2 .item_blk:nth-of-type(2) .row_2{
  justify-content: left;
  transform: translateX(calc(-10 * (60rem / 430)));
  margin-bottom: 0;
}

#lp_contents .sec_staff .item_20{
  transform: translateX(calc(-53 * (60rem / 430)));
}

#lp_contents .sec_staff .item_21{
  margin-top: calc(40 * (60rem / 430));
  margin-left: calc(10 * (60rem / 430));
  position: relative;
  z-index: 2;
}

#lp_contents .staff_2 .item_blk:nth-of-type(3) .row_1{
  margin-bottom: calc(110 * (60rem / 430));
}

#lp_contents .staff_2 .item_blk:nth-of-type(3) .row_2{
  position: absolute;
  left: calc(30 * (60rem / 430));
  bottom: 0;
}

#lp_contents .sec_staff .item_23{
  transform: translateX(calc(-45 * (60rem / 430)));
}

/*------------ staff_3 ------------*/
#lp_contents .staff_3 .staff_wrap .staff_img{
  width: calc(220 * (60rem / 430));
  right: calc(230 * (60rem / 430));
}

#lp_contents .staff_3 .item_blk:nth-of-type(1) .row_1{
  justify-content: center;
  gap: calc(60 * (60rem / 430));
  margin-bottom: calc(65 * (60rem / 430));
}

#lp_contents .sec_staff .item_24 .item_detail{
  margin: 0;
}

#lp_contents .sec_staff .item_25 .item_img{
  width: calc(180 * (60rem / 430));
}

#lp_contents .sec_staff .item_25{
  position: relative;
  z-index: 2;
}

#lp_contents .sec_staff .item_26{
  position: absolute;
  bottom: calc(-35 * (60rem / 430));
  left: calc(115 * (60rem / 430));
  display: flex;
  align-items: flex-end;
  gap: calc(10 * (60rem / 430));
}

#lp_contents .sec_staff .item_26 .item_img{
  width: calc(120 * (60rem / 430));
}

#lp_contents .sec_staff .item_26 .item_detail{
  margin: 0;
}

#lp_contents .staff_3 .item_blk:nth-of-type(1) .row_2 .item_sub_ttl{
  margin-bottom: 0;
}

#lp_contents .sec_staff .item_30{
  position: absolute;
  top: calc(180 * (60rem / 430));
  right: calc(55 * (60rem / 430));
  z-index: 2;
}

#lp_contents .sec_staff .item_30 .item_img{
  width: calc(160 * (60rem / 430));
}

#lp_contents .sec_staff .item_31 .item_img{
  width: calc(180 * (60rem / 430));
}

#lp_contents .sec_staff .item_31 .item_txt {
  right: calc(-20 * (60rem / 430));
}

#lp_contents .sec_staff .item_31 .item_txt:before {
  transform: scale(-1, 1);
  right: calc(50 * (60rem / 430));
}

#lp_contents .staff_3 .item_blk:nth-of-type(3) .row_1{
  margin-bottom: calc(100 * (60rem / 430));
}

#lp_contents .sec_staff .item_32{
  margin-top: calc(40 * (60rem / 430));
}

#lp_contents .sec_staff .item_33{
  position: absolute;
  bottom: calc(-100 * (60rem / 430));
  left: calc(50 * (60rem / 430));
}

/*------------ staff_4 ------------*/
#lp_contents .staff_4 .staff_wrap .staff_img{
  width: calc(260 * (60rem / 430));
  right: calc(190 * (60rem / 430));
  top: calc(30 * (60rem / 430));
}

#lp_contents .staff_4 .make_img{
  width: calc(240 * (60rem / 430));
}

#lp_contents .staff_4 .item_blk:nth-of-type(1) .row_1{
  justify-content: center;
  z-index: 2;
}

#lp_contents .sec_staff .item_36{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: calc(10 * (60rem / 430));
  margin-top: calc(-40 * (60rem / 430));
}

#lp_contents .sec_staff .item_37{
  position: absolute;
  display: flex;
  align-items: center;
  gap: calc(10 * (60rem / 430));
  top: calc(195 * (60rem / 430));
  left: calc(155 * (60rem / 430));
}

#lp_contents .sec_staff .item_37 .item_detail{
  position: relative;
  z-index: 3;
}

#lp_contents .sec_staff .item_38{
  display: flex;
  align-items: center;
  gap: calc(20 * (60rem / 430));
}

#lp_contents .sec_staff .item_38 .item_img{
  width: calc(180 * (60rem / 430));
}

#lp_contents .staff_4 .item_blk:nth-of-type(2) .row_2{
  margin-bottom: calc(10 * (60rem / 430));
}

#lp_contents .sec_staff .item_39{
  position: absolute;
  top: calc(-30 * (60rem / 430));
  right: calc(42 * (60rem / 430));
}

#lp_contents .sec_staff .item_40{
  transform: translateX(calc(-70 * (60rem / 430)));
}

#lp_contents .sec_staff .item_41{
  position: absolute;
  top: calc(30 * (60rem / 430));
  right: calc(20 * (60rem / 430));
  z-index: 2;
}

#lp_contents .sec_staff .item_41 .item_txt{
  top: calc(-20 * (60rem / 430));
  left: calc(-80 * (60rem / 430));
  bottom: auto;
}

#lp_contents .sec_staff .item_41 .item_txt:before{
  top: auto;
  bottom: calc(-8 * (60rem / 430));
  left: calc(30 * (60rem / 430));
  transform: scale(1, -1);
}

#lp_contents .sec_staff .item_42{
  position: absolute;
  top: calc(60 * (60rem / 430));
  right: calc(140 * (60rem / 430));
  z-index: 2;
}

#lp_contents .sec_staff .item_43{
  display: flex;
  align-items: flex-end;
  gap: calc(10 * (60rem / 430));
  transform: translateX(calc(-20 * (60rem / 430)));
}

#lp_contents .sec_staff .item_43 .item_detail{
  margin-bottom: calc(10 * (60rem / 430));
}

/* sec_btm
==================================*/
#lp_contents .sec_btm{
  display: grid;
  gap: calc(50 * (60rem / 430));
}

#lp_contents .sec_btm .nav_list ol li:after{
  transform: scale(1, -1);
}

/*--------------------------------
            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));
  }

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

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

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

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

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

  .page-share-btn{
    height: 0;
  }

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

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

}