@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　index
 */




@media screen and (max-width: 960px) {
}


@media screen and (max-width: 768px) {
}


/* 動画→止め画像MV */


#Mv .mv {
	position: relative;
}
#Mv .mv .img{
	line-height: 0;
}
#Mv .mv .video {
	position: relative;
}
#Mv .mv .contents.on .video {
	display: none;
}
#Mv .mv .video p {
	position: relative;
	width: 100%;
	overflow: hidden;
      line-height: 0;
}
#Mv .mv .video p video {
	width: 100%;
}
#Mv .mv .video .btn_skip {
	display: flex;
	width: 86px;
	height: 40px;
	/* padding: 12px 28px;
	background: rgba(255,255,255,0.85); */
	text-align: center;
	position: absolute;
	right: 30px;
    top: 30px;
	cursor: pointer;
	transition: .3s;
}
#Mv .mv .video .btn_skip:hover {
	opacity: .7;
}
#Mv .mv .video .btn_skip img {
	vertical-align: middle;
}
#Mv .mv .img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 20;
	width: 100%;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transition: 2s;
}
#Mv .mv .contents.on .img {
	position: static;
	pointer-events: auto;
	opacity: 1;
}
#Mv .mv .img .btn_replay {
	display: flex;
	width: 104px;
	height: 40px;
	/* padding: 8px 22px;
	background: rgba(255, 255, 255, 0.85); */
	text-align: center;
	position: absolute;
	right: 30px;
    top: 30px;
	cursor: pointer;
	transition: .3s;
	z-index: 2;
}
#Mv .mv .img .btn_replay:hover {
	opacity: .7;
}
#Mv .mv .img .btn_replay img {
	vertical-align: middle;
}
#Mv .mv .img figure img {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	#Mv .mv .video .btn_skip {
		right: 18px;
        top: auto;
        bottom: 18px;
	}
	#Mv .mv .img .btn_replay {
		right: 18px;
        top: auto;
        bottom: 18px;
	}
}



.merit{}
.price{
  background: var(--green2);
  padding: 16px;
  border-radius: 16px;
  margin-top: 8px;
}
.price p{
  display: block;
  max-width: 530px;
  margin: auto;
}
.obi{
  background: var(--brown);
  padding: 8px 0;
  margin-top: 32px;
}
.obi p{
  text-align: center;
  color: var(--light);
  font-size: 4.0rem;
}
.info ul{
  background: var(--green4);
  padding: 24px;
}
.info li{
  position: relative;
}
.info li::before{
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 16px;    /* くの字を山なりに見た時、左側の長さ */
  height: 16px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 1px solid #727171;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 1px solid #727171;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);    /* くの字の向き */
}
.info .days{
  font-size: 1.3rem;
}
.info .txt{
  font-size: 1.6rem;
}

.dev_wrap{
  margin-top: 48px;
}
.dev_wrap .wrap2{
  margin-top: -32px;
}



.contents_ttl{
  text-align: center;
  color: var(--green1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  margin: 40px auto;
  width: fit-content;
}
.contents_ttl.icon_exmark::before{
  content: '';
  display: block;
  background-image: url(../common/image/icon_exmark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 26px;
  position: absolute;
  top: 20px; right: -30px;

}
.contents_ttl .en{
  font-size: 4.0rem;
}
.contents_ttl .ja{
  font-size: 2.4rem;
  position: relative;
  padding-top: 8px;
}
.contents_ttl .ja::before{
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background: var(--green1);
  position: absolute;
  top: 0;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.concept_img{
  max-width: 80%;
  margin: auto;
}
.concept_img.img02{
  margin-top: 40px;
}

.collaboration{
  margin-top: 48px;
}
.collaboration_ttl{
  color: var(--green1);
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6;
}
.collaboration_ttl small{
  font-size: 80%;
}
.collaboration_block{
  margin-top: 40px;
}
.collaboration_block .ttl{
  text-align: center;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px;
  margin-bottom: 48px;
}
.collaboration_block ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5%;
  margin-top: 32px;
  flex-wrap: nowrap; /* 折り返しを禁止 */
  width: 100%;       /* 親の幅を固定 */
}

.collaboration_block li {
  flex: 0 1 auto;    /* 1を指定して、必要に応じて縮小を許可 */
  min-width: 0;      /* Flexboxの子要素が縮小できるようにするための重要設定 */
}

.collaboration_block li .img{
  text-align: center;
}
.collaboration_block li .img img {
  max-width: 100%;   /* 親要素（li）からはみ出さないように縮小 */
  height: auto;      /* 比率を維持 */
  display: block;
  margin: auto;
}
.collaboration_block li dl{
  margin-top: 8px;
}
.collaboration_block li dt{
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.collaboration_block li dd{
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
}

.concept_img.img03{
  margin-top: 80px;
  margin-bottom: 32px;
}
.concept_img.img03 small{
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
  display: block;
  margin-top: 32px;
}


.content_area{
}
.contents_box{
  margin-bottom: 32px;
  border-radius: 32px;
  overflow: visible; /* ここを変更 */
  position: relative;
}
.contents_box a{
  display: block;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.con_ttl{
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.contents_box .txt_area{
  text-align: center;
  color: var(--light);
  padding: 24px 8px;
  background: var(--green1);
  font-size: 2.8rem;
  line-height: 1.6;
}
.contents_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3%;
}
.contents_flex .contents_box{
  flex-basis: 48.5%;
}

.contents_box .item{
  position: absolute;
  width: fit-content;
  z-index: 2;
}
.contents_box .item.land01{
  top: -32px;
  right: 24px;
  max-width: 36%;
}
.contents_box .item.com01{
     top: -45px;
    right: -17px;
    max-width: 56%;
}
.contents_box .item.com01-2{
    bottom: -64px;
    left: 137px;
    max-width: 11%;
}
.contents_box .item.com01-3{
    bottom: -34px;
    right: 11px;
    max-width: 17%;
}
.contents_box .item.acc01{
        bottom: 28px;
    right: -17px;
    max-width: 26%;
}
.contents_box .item.acc01-2{
        bottom: -47px;
    right: 82px;
    max-width: 18%;
}
.contents_box .item.com02{
        bottom: 26px;
    right: -28px;
    max-width: 48%;
}
.contents_box .item.com02-2{
    bottom: -37px;
    right: 173px;
    max-width: 8%;
}
.contents_box .item.land02{
    bottom: -20px;
    right: 21px;
    max-width: 44%;
}
.contents_box .item.pos01{
    bottom: -23px;
    right: -7px;
    max-width: 44%;
}
.contents_box .item.pla01{
    bottom: -27px;
    right: -13px;
    max-width: 32%;
}
.contents_box .item.pla01-2{
    top: -32px;
    right: 125px;
    max-width: 12%;
}
.contents_box .item.eq01{
    bottom: -29px;
    right: -21px;
    max-width: 21%;
}
.contents_box .item.eq01-2{
    top: -33px;
    left: 211px;
    max-width: 7%;
}
.contents_box .item.eq01-3{
    bottom: 22px;
    left: 3px;
    max-width: 10%;
}
.contents_box .item.safe01{
    bottom: -44px;
    right: -5px;
    max-width: 37%;
}
.contents_box .item.eco01{
    bottom: -44px;
    right: -5px;
    max-width: 49%;
}
.contents_box .item.eco01-2{
    top: 132px;
    right: -20px;
    max-width: 25%;
}


html{
      overflow: visible;
}
#Page {
  overflow: visible;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    z-index: 98;
    bottom: 0px;
    left: 0;
}
.top_concept{
  margin-top: 130px;
}


/* coming soon */

.contents_box.soon a{
  position: relative;
}
.contents_box.soon a::after{
      content: 'COMING SOON';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    backdrop-filter: blur(2px);
    color: #fff;
    text-align: center;
    font-size: 20px;
    letter-spacing: 3px;
}

/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 1250px) {


.merit{}
.price{
  padding: 16px;
  border-radius: 8px;
}
.price p{
  max-width: 300px;
}
.obi{
  background: var(--brown);
  padding: 8px 0;
  margin-top: 8px;
}
.obi p{
  font-size: 2.4rem;
}
.info ul{
  padding: 16px;
}
.info .days{
  font-size: 1.1rem;
}
.info .txt{
  font-size: 1.3rem;
}



.contents_ttl{
  margin: 32px auto;
  gap: 6px;
}
.contents_ttl.icon_exmark::before{
  width: 22px;
  top: 7px;
}
.contents_ttl .en{
  font-size: 3.2rem;
  line-height: 1.3;
}
.contents_ttl .ja{
  font-size: 1.6rem;
  position: relative;
  padding-top: 3px;
}

.concept_img{
  max-width: 100%;
}

.collaboration{
  margin-top: 48px;
}
.collaboration_ttl{
  font-size: 1.6rem;
}
.collaboration_block{
  margin-top: 24px;
}
.collaboration_block .ttl{
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.collaboration_block ul {
  display: flex;
  justify-content: center; /* 中央寄せ */
  align-items: flex-start; /* 高さを揃えず上合わせ（文字数差対策） */
  gap: 20px 4%;          /* 縦の隙間を20px、横を5%に設定 */
  margin-top: 32px;
  flex-wrap: wrap; 
  width: 100%;
}

.collaboration_block li {
  /* 2カラムにするため、幅を50%弱に設定 */
  width: 47.5%; 
  box-sizing: border-box;
}

.collaboration_block li .img {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration_block li .img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.collaboration_block.seller ul:nth-of-type(1) li:nth-of-type(1) .img img{width: 170px !important;}
.collaboration_block.seller ul:nth-of-type(1) li:nth-of-type(2) .img img{width: 126px !important;}
.collaboration_block.seller ul:nth-of-type(1) li:nth-of-type(3) .img img{width: 126px !important;}
.collaboration_block.seller ul:nth-of-type(2) li:nth-of-type(1) .img img{width: 110px !important;}
.collaboration_block.seller ul:nth-of-type(2) li:nth-of-type(2) .img img{width: 126px !important;}
.collaboration_block.seller ul:nth-of-type(3) li:nth-of-type(1) .img img{width: 150px !important;}
.collaboration_block.seller ul:nth-of-type(3) li:nth-of-type(2) .img img{width: 160px !important;}
.collaboration_block.seller ul:nth-of-type(4) li:nth-of-type(1) .img img{width: 126px !important;}
.collaboration_block.seller ul:nth-of-type(4) li:nth-of-type(2) .img img{width: 126px !important;}
.collaboration_block.seller ul:nth-of-type(4) li:nth-of-type(3) .img img{width: 160px !important;}

.collaboration_block.life ul:nth-of-type(1) li:nth-of-type(1) .img img{width: 163px !important;}
.collaboration_block.life ul:nth-of-type(1) li:nth-of-type(2) .img img{width: 110px !important;}
.collaboration_block.life ul:nth-of-type(2) li:nth-of-type(1) .img img{width: 150px !important;}
.collaboration_block.life ul:nth-of-type(2) li:nth-of-type(2) .img img{width: 90px !important;}
.collaboration_block.life ul:nth-of-type(2) li:nth-of-type(3) .img img{width: 140px !important;}
.collaboration_block.life ul:nth-of-type(3) li:nth-of-type(1) .img img{width: 163px !important;}
.collaboration_block.life ul:nth-of-type(3) li:nth-of-type(2) .img img{width: 120px !important;}

.collaboration_block.space ul:nth-of-type(1) li:nth-of-type(1) .img img{width: 110px !important;}
.collaboration_block.space ul:nth-of-type(1) li:nth-of-type(2) .img img{width: 163px !important;}
.collaboration_block.space ul:nth-of-type(1) li:nth-of-type(3) .img img{width: 90px !important;}
.collaboration_block.space ul:nth-of-type(1) li:nth-of-type(4) .img img{width: 163px !important;}
.collaboration_block.space ul:nth-of-type(2) li:nth-of-type(1) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(2) li:nth-of-type(2) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(2) li:nth-of-type(3) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(3) li:nth-of-type(1) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(3) li:nth-of-type(2) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(3) li:nth-of-type(3) .img img{width: 126px !important;} 
.collaboration_block.space ul:nth-of-type(4) li:nth-of-type(1) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(4) li:nth-of-type(2) .img img{width: 126px !important;}
.collaboration_block.space ul:nth-of-type(4) li:nth-of-type(3) .img img{width: 126px !important;} 

.collaboration_block li dl {
  margin-top: 8px;
  text-align: center; /* テキストも中央寄せ */
}
.collaboration_block li dt{
  font-size: 1.0rem;
  line-height: 1.3;
}
.collaboration_block li dd{
  font-size: 0.9rem;
  line-height: 1.3;
  padding-top: 4px;
}

.concept_img.img03{
  margin-top: 64px;
  margin-bottom: 24px;
}
.concept_img.img03 small{
  margin-top: 16px;
}


.content_area{
}
.contents_box{
  margin-bottom: 16px;
  border-radius: 24px;
}
.contents_box a{
  border-radius: 16px;
}
.con_ttl{width: 128px;}

.contents_box .txt_area{
  text-align: center;
  color: var(--light);
  padding: 12px 8px;
  background: var(--green1);
  font-size: 1.6rem;
  line-height: 1.3;
}
.contents_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3%;
}
.contents_flex .contents_box{
  flex-basis: 48.5%;
}

.contents_box .item{
  position: absolute;
  width: fit-content;
  z-index: 2;
}
.contents_box .item.land01{
  top: -32px;
  right: 24px;
  max-width: 36%;
}
.contents_box .item.com01{
     top: -45px;
    right: -17px;
    max-width: 56%;
}
.contents_box .item.com01-2{
    bottom: -64px;
    left: 137px;
    max-width: 11%;
}
.contents_box .item.com01-3{
    bottom: -34px;
    right: 11px;
    max-width: 17%;
}
.contents_box .item.acc01{
    bottom: 53px;
        right: -17px;
        max-width: 32%;
}
.contents_box .item.acc01-2{
    bottom: -25px;
        right: 75px;
        max-width: 19%;
}
.contents_box .item.com02{
            bottom: -34px;
        right: -17px;
        max-width: 46%;
}
.contents_box .item.com02-2{
    bottom: -37px;
    right: 173px;
    max-width: 8%;
}
.contents_box .item.land02{
    bottom: 13px;
        right: 2px;
        max-width: 37%;
}
.contents_box .item.pos01{
    bottom: -23px;
    right: -7px;
    max-width: 44%;
}
.contents_box .item.pla01{
    bottom: 12px;
        right: -13px;
        max-width: 30%;
}
.contents_box .item.pla01-2{
    top: -32px;
    right: 125px;
    max-width: 12%;
}
.contents_box .item.eq01{
    bottom: -29px;
    right: -21px;
    max-width: 21%;
}
.contents_box .item.eq01-2{
    top: -6px;
        left: 265px;
        max-width: 7%;
}
.contents_box .item.eq01-3{
    bottom: 16px;
        left: 8px;
        max-width: 13%;
}
.contents_box .item.safe01{
    bottom: 27px;
        right: -13px;
        max-width: 27%;
}
.contents_box .item.eco01{
    bottom: -6px;
        right: -5px;
        max-width: 50%;
}
.contents_box .item.eco01-2{
    top: 132px;
    right: -20px;
    max-width: 25%;
}





/* slick */

.slick-dotted.slick-slider{
	margin-bottom: 0 !important;
}
.dots-wrap {
    display: flex;
    justify-content: center;
	position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.dots-wrap li {
    width: 40px;
    height: 4px;
    margin: 0 5px;
    background: var(--gray);
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: var(--beije);
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}


.sticky {
    position: -webkit-sticky;
    position: sticky;
    z-index: 98;
    bottom: 70px;
    left: 0;
}



.contents_box.soon a::after{
      content: 'COMING SOON';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 102.2%;
    background-color: rgba(0, 0, 0, .7);
    backdrop-filter: blur(2px);
    color: #fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
}
}