﻿/* パンくず 追加スタイル PC */
@media only screen and (min-width: 768px){
  .breadcrumb__list{
    padding-bottom: 1.6rem;
  }
}

/* LPコンテンツ */
/* ===============================================### 
初期設定
###=============================================== */
.lp_knit{
  --activgrotesk:"aktiv-grotesk", sans-serif;
  --font-ja: var(--yugothic);
  --font-en: var(--activgrotesk);
  font-style: normal;
  --color-black: #333333;
  color: #333333;
  overflow: hidden;
}

.lp_knit img{
  width: 100%;
  height: auto;
}



/* ===============================================### 
アニメーション設定
###=============================================== */
/*** fade-up ***/
.lp_knit .js-fade-up{
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
  transition-property: opacity, transform;
}

.lp_knit .js-fade-up.show{
  opacity: 1;
  transform: translateY(0);
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.lp_knit .content .content__inner{
  width: fit-content;
  margin-inline: auto;
}

.lp_knit .credit-wrap{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/************** text **************/
.lp_knit .content__title{
  position: relative;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  text-align: center;
}

.lp_knit .content__title span{
  font-size: 4rem;
  font-weight: var(--font-weight-medium);
}

.lp_knit .content__title::after{
  content: '';
  position: absolute;
  bottom: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.1rem;
  background-color: #3C3C3C;
}

.lp_knit .credit__title{
  position: relative;
  padding-bottom: 1.4rem;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  border-bottom: 1px solid #C9C9C9;
}

.lp_knit .credit__text{
  font-family: var(--font-ja);
  font-size: 1.2rem;
  font-weight: var(--font-weight-regular);
  line-height: 2;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.lp_knit .credit__text a{
  display: inline-block;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .credit-wrap{
    gap: calc(17 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content__title{
    font-size: calc(26 * (100vw / 375));
  }

  .lp_knit .content__title span{
    font-size: calc(36 * (100vw / 375));
  }

  .lp_knit .content__title::after{
    bottom: calc(-10 * (100vw / 375));
    width: calc(60 * (100vw / 375));
    height: calc(1 * (100vw / 375));
  }

  .lp_knit .credit__title{
    padding-bottom: calc(18 * (100vw / 375));
    font-family: var(--font-en);
    font-size: calc(18 * (100vw / 375));
  }

  .lp_knit .credit__text{
    font-size: calc(12 * (100vw / 375));
    line-height: 1.5;
  }

  .lp_knit .credit__text a:not(:first-child){
    margin-top: calc(6 * (100vw / 375));
  }
}



/* ===============================================### 
MV
###=============================================== */
.lp_knit .mv__inner{
  width: fit-content;
  margin-inline: auto;
}

/************** text **************/
.lp_knit .mv__text{
  margin-top: 7.3rem;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: var(--font-weight-regular);
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
}

/************** image **************/
.lp_knit .mv__image{
  width: 120rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /************** text **************/
  .lp_knit .mv__text{
    margin-top: calc(52 * (100vw / 375));
    font-size: calc(14 * (100vw / 375));
  }

  /************** image **************/
  .lp_knit .mv__image{
    width: calc(375 * (100vw / 375));
  }
}



/* ===============================================### 
アンカーリンク
###=============================================== */
.lp_knit .link-area{
  margin-top: 7.7rem;
}

.lp_knit .link-area .content__inner{
  width: 100rem;
  margin-inline: auto;
  padding-bottom: 11rem;
  border-bottom: 1px solid #C9C9C9;
}

.lp_knit .link-area .grid-wrap{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

/************** text **************/
.lp_knit .link-name{
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  text-align: center;
}

.lp_knit .link-name span{
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
}

/************** image **************/
.lp_knit .link-image{
  position: relative;
  width: 16rem;
  margin-top: 0.9rem;
}

.lp_knit .link-image::after{
  content: '';
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.1rem;
  height: 1.1rem;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .link-area{
    margin-top: calc(41 * (100vw / 375));
  }

  .lp_knit .link-area .content__inner{
    width: calc(345 * (100vw / 375));
    padding-bottom: calc(73 * (100vw / 375));
  }

  .lp_knit .link-area .grid-wrap{
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc(6 * (100vw / 375));
    row-gap: calc(54 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .link-name{
    font-size: calc(14 * (100vw / 375));
  }

  .lp_knit .link-name span{
    font-size: calc(18 * (100vw / 375));
  }

  /************** image **************/
  .lp_knit .link-image{
    width: calc(111 * (100vw / 375));
    margin-top: calc(5 * (100vw / 375));
  }

  .lp_knit .link-image::after{
    bottom: calc(-23 * (100vw / 375));
    width: calc(16 * (100vw / 375));
    height: calc(8 * (100vw / 375));
  }
}




/* ===============================================### 
コンテンツ01
###=============================================== */
.lp_knit .content01{
  padding-top: 6.1rem;
  /* padding-top: var(--header-height); */
}

.lp_knit .content01 .content__inner{
}

.lp_knit .content01 .content__item01{
  margin-top: 3.9rem;
}

.lp_knit .content01 .content__item02{
  margin-top: 3rem;
}

.lp_knit .content01 .content__item03{
  margin-top: 3rem;
  margin-left: 20rem;
}

/************** text **************/
.lp_knit .content01 .credit{
  margin-top: 3.2rem;
}

/************** image **************/
.lp_knit .content01 .content__item01 .content__image{
  width: 56rem;
}

.lp_knit .content01 .content__item02 .content__image{
  width: 36rem;
}

.lp_knit .content01 .content__item03 .content__image{
  width: 36rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .content01{
    padding-top: calc(41 * (100vw / 375));
  }

  .lp_knit .content01 .content__inner{
  }

  .lp_knit .content01 .content__item01{
    margin-top: calc(39 * (100vw / 375));
  }

  .lp_knit .content01 .content__item02{
    margin-top: calc(30 * (100vw / 375));
  }

  .lp_knit .content01 .content__item03{
    margin-top: calc(30 * (100vw / 375));
    margin-left: calc(66 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content01 .credit{
    margin-top: calc(30 * (100vw / 375));
  }

  /************** image **************/
  .lp_knit .content01 .content__item01 .content__image{
    width: calc(345 * (100vw / 375));
  }

  .lp_knit .content01 .content__item02 .content__image{
    width: calc(280 * (100vw / 375));
  }

  .lp_knit .content01 .content__item03 .content__image{
    width: calc(280 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ02
###=============================================== */
.lp_knit .content02{
  padding-top: 8.9rem;
  /* padding-top: var(--header-height); */
}

.lp_knit .content02 .content__inner{
}

.lp_knit .content02 .content__item01{
  margin-top: 3.8rem;
}

.lp_knit .content02 .content__item02{
  margin-top: 3rem;
  margin-left: 26rem;
}

.lp_knit .content02 .content__item03{
  margin-top: 3rem;
}

/************** text **************/
.lp_knit .content02 .credit{
  margin-top: 3.3rem;
}

.lp_knit .content02 .credit__text{
  line-height: 2.2;
}

/************** image **************/
.lp_knit .content02 .content__item01 .content__image{
  width: 56rem;
}

.lp_knit .content02 .content__item02 .content__image{
  width: 30rem;
}

.lp_knit .content02 .content__item03 .content__image{
  width: 36rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .content02{
    padding-top: calc(67 * (100vw / 375));
  }

  .lp_knit .content02 .content__inner{
  }

  .lp_knit .content02 .content__item01{
    margin-top: calc(39 * (100vw / 375));
  }

  .lp_knit .content02 .content__item02{
    margin-top: calc(30 * (100vw / 375));
    margin-left: calc(106 * (100vw / 375));
  }

  .lp_knit .content02 .content__item03{
    margin-top: calc(30 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content02 .credit{
    margin-top: calc(31 * (100vw / 375));
  }

  .lp_knit .content02 .credit__text{
    line-height: 1.5;
  }

  /************** image **************/
  .lp_knit .content02 .content__item01 .content__image{
    width: calc(345 * (100vw / 375));
  }

  .lp_knit .content02 .content__item02 .content__image{
    width: calc(240 * (100vw / 375));
  }

  .lp_knit .content02 .content__item03 .content__image{
    width: calc(280 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.lp_knit .content03{
  padding-top: 7.6rem;
  /* padding-top: var(--header-height); */
}

.lp_knit .content03 .content__inner{
}

.lp_knit .content03 .content__item01{
  margin-top: 3.8rem;
}

.lp_knit .content03 .content__item02{
  margin-top: 3rem;
}

.lp_knit .content03 .content__item03{
  margin-top: 3rem;
  margin-left: 20rem;
}

/************** text **************/
.lp_knit .content03 .credit{
  margin-top: 3.2rem;
}

.lp_knit .content03 .credit__text{
  line-height: 2.2;
}

/************** image **************/
.lp_knit .content03 .content__item01 .content__image{
  width: 56rem;
}

.lp_knit .content03 .content__item02 .content__image{
  width: 36rem;
}

.lp_knit .content03 .content__item03 .content__image{
  width: 36rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .content03{
    padding-top: calc(63 * (100vw / 375));
  }

  .lp_knit .content03 .content__inner{
  }

  .lp_knit .content03 .content__item01{
    margin-top: calc(40 * (100vw / 375));
  }

  .lp_knit .content03 .content__item02{
    margin-top: calc(30 * (100vw / 375));
  }

  .lp_knit .content03 .content__item03{
    margin-top: calc(30 * (100vw / 375));
    margin-left: calc(66 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content03 .credit{
    margin-top: calc(30 * (100vw / 375));
  }

  .lp_knit .content03 .credit__text{
    line-height: 1.5;
  }

  /************** image **************/
  .lp_knit .content03 .content__item01 .content__image{
    width: calc(345 * (100vw / 375));
  }

  .lp_knit .content03 .content__item02 .content__image{
    width: calc(280 * (100vw / 375));
  }

  .lp_knit .content03 .content__item03 .content__image{
    width: calc(280 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.lp_knit .content04{
  padding-top: 7.7rem;
  /* padding-top: var(--header-height); */
}

.lp_knit .content04 .content__inner{
}

.lp_knit .content04 .content__item01{
  margin-top: 3.8rem;
}

.lp_knit .content04 .content__item02{
  margin-top: 3rem;
  margin-left: 16rem;
}

/************** text **************/
.lp_knit .content04 .credit{
  margin-top: 3.2rem;
}

.lp_knit .content04 .credit__text{
  line-height: 2.2;
}

/************** image **************/
.lp_knit .content04 .content__item01 .content__image{
  width: 56rem;
}

.lp_knit .content04 .content__item02 .content__image{
  width: 40rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .content04{
    padding-top: calc(62 * (100vw / 375));
  }

  .lp_knit .content04 .content__inner{
  }

  .lp_knit .content04 .content__item01{
    margin-top: calc(40 * (100vw / 375));
  }

  .lp_knit .content04 .content__item02{
    margin-top: calc(30 * (100vw / 375));
    margin-left: calc(46 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content04 .credit{
    margin-top: calc(30 * (100vw / 375));
  }

  .lp_knit .content04 .credit__text{
    line-height: 1.5;
  }

  /************** image **************/
  .lp_knit .content04 .content__item01 .content__image{
    width: calc(345 * (100vw / 375));
  }

  .lp_knit .content04 .content__item02 .content__image{
    width: calc(300 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.lp_knit .content05{
  padding-top: 7.7rem;
  /* padding-top: var(--header-height); */
}

.lp_knit .content05 .content__inner{
}

.lp_knit .content05 .content__item01{
  margin-top: 3.9rem;
}

.lp_knit .content05 .content__item02{
  margin-top: 3rem;
  margin-left: 26rem;
}

.lp_knit .content05 .content__item03{
  margin-top: 3rem;
}

/************** text **************/
.lp_knit .content05 .credit{
  margin-top: 3.2rem;
}

.lp_knit .content05 .credit__text{
  line-height: 2.2;
}

/************** image **************/
.lp_knit .content05 .content__item01 .content__image{
  width: 56rem;
}

.lp_knit .content05 .content__item02 .content__image{
  width: 30rem;
}

.lp_knit .content05 .content__item03 .content__image{
  width: 36rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .content05{
    padding-top: calc(66 * (100vw / 375));
  }

  .lp_knit .content05 .content__inner{
  }

  .lp_knit .content05 .content__item01{
    margin-top: calc(40 * (100vw / 375));
  }

  .lp_knit .content05 .content__item02{
    margin-top: calc(29 * (100vw / 375));
    margin-left: calc(105 * (100vw / 375));
  }

  .lp_knit .content05 .content__item03{
    margin-top: calc(30 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content05 .credit{
    margin-top: calc(30 * (100vw / 375));
  }

  .lp_knit .content05 .credit__text{
    line-height: 1.5;
  }

  /************** image **************/
  .lp_knit .content05 .content__item01 .content__image{
    width: calc(345 * (100vw / 375));
  }

  .lp_knit .content05 .content__item02 .content__image{
    width: calc(240 * (100vw / 375));
  }

  .lp_knit .content05 .content__item03 .content__image{
    width: calc(280 * (100vw / 375));
  }
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.lp_knit .content06{
  padding-top: 7.5rem;
  /* padding-top: var(--header-height); */
}

.lp_knit .content06 .content__inner{
}

.lp_knit .content06 .content__item01{
  margin-top: 3.9rem;
}

.lp_knit .content06 .content__item02{
  margin-top: 3rem;
  margin-left: 16rem;
}

/************** text **************/
.lp_knit .content06 .credit{
  margin-top: 3.3rem;
}

.lp_knit .content06 .credit__text{
  line-height: 2.2;
}


/************** image **************/
.lp_knit .content06 .content__item01 .content__image{
  width: 56rem;
}

.lp_knit .content06 .content__item02 .content__image{
  width: 40rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .content06{
    padding-top: calc(65 * (100vw / 375));
  }

  .lp_knit .content06 .content__inner{
  }

  .lp_knit .content06 .content__item01{
    margin-top: calc(40 * (100vw / 375));
  }

  .lp_knit .content06 .content__item02{
    margin-top: calc(30 * (100vw / 375));
    margin-left: calc(46 * (100vw / 375));
  }

  /************** text **************/
  .lp_knit .content06 .credit{
    margin-top: calc(29 * (100vw / 375));
  }

  .lp_knit .content06 .credit__text{
    line-height: 1.5;
  }


  /************** image **************/
  .lp_knit .content06 .content__item01 .content__image{
    width: calc(345 * (100vw / 375));
  }

  .lp_knit .content06 .content__item02 .content__image{
    width: calc(300 * (100vw / 375));
  }
}



/* ===============================================### 
top-to-button
###=============================================== */
.lp_knit .button-area{
  margin-top: 7.3rem;
  margin-bottom: 10.2rem;
}

/************** button **************/
.lp_knit .link-button{
}

.lp_knit .link-button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 5rem;
  margin-inline: auto;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.075em;
  text-align: center;
  border: 1px solid #333333;
}

.lp_knit .link-button.item{
  background-color: #333333;
  color: #ffffff;
}

.lp_knit .link-button.top{
  margin-top: 2rem;
  background-color: #ffffff;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .lp_knit .button-area{
    margin-top: calc(64 * (100vw / 375));
    margin-bottom: calc(143 * (100vw / 375));
  }

  /************** button **************/
  .lp_knit .link-button{
    width: calc(335 * (100vw / 375));
    height: calc(50 * (100vw / 375));
    font-size: calc(14 * (100vw / 375));
  }

  .lp_knit .link-button.top{
    margin-top: calc(20 * (100vw / 375));
  }
}