@charset "UTF-8";
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}


/*
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents {
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #e0e0e0;  
  --font-yu: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
  --font-hiragino: "Hiragino Sans";
  --font-nimbus: "nimbus-sans";
  --font-trajan: "trajan-pro-3";
  --font-ja: var(--font-yu), sans-serif;
  --font-en: var(--font-nimbus), sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  font-feature-settings: "palt";
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: 140rem;
    --fz-text_title: 2.5rem;
    --fz-text_lead: 1.3rem;
    --fz-text_credit: 1.2rem;
    --fz-text_btn: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_title: calc(35*100vw/750);
    --fz-text_lead: calc(23*100vw/750);
    --fz-text_credit: calc(24*100vw/750);
    --fz-text_btn: calc(30*100vw/750);;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - others
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .l-lpcontents .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .pc_only {
    display: none !important;
  }
  .top_button {
    margin-top: calc(-110*100vw/750);
  }
}
.l-lpcontents img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - grid
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="c-grid_column"] {
  display: grid;
  grid-template-columns: repeat(var(--columns , 1), 1fr);
  gap: var(--row, 0) var(--column, 0);
}
@media screen and (min-width: 768px) {
  .l-lpcontents [class*="c-pc_grid_column"] {
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents [class*="c-sp_grid_column"] {
    display: grid;
    grid-template-columns: repeat(var(--columns , 1), 1fr);
    gap: var(--row, 0) var(--column, 0);
  }
}
.l-lpcontents :where([class*="styleview__wrap0"]) {
  position: relative;
  width: fit-content;
  height: fit-content;
  z-index: 2;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-position {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .l-lpcontents .c-pc_position {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-sp_position {
    position: absolute;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - flex
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-flex_row {
  display: flex;
  flex-direction: row;
  gap: var(--row, 0) var(--column, 0);
}
.l-lpcontents .c-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--row, 0) var(--column, 0);
}
.l-lpcontents .c-flex_column {
  display: flex;
  flex-direction: column;
  gap: var(--row, 0) var(--column, 0);
}
.l-lpcontents .c-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--row, 0) var(--column, 0);
}
@media screen and (min-width: 768px) {
  .l-lpcontents .c-pc_flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-pc_flex_row_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-pc_flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-pc_flex_column_reverse {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-sp_flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-sp_flex_row_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-sp_flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .l-lpcontents .c-sp_flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-text_title {
  position: relative;
  font-size: var(--fz-text_title);
  line-height: 2.036;
  letter-spacing: 0.06em;
  font-weight: var(--fw-regular);
  font-family: var(--font-trajan);
  color: var(--color-black);
}
.l-lpcontents .c-text_lead {
  font-size: var(--fz-text_lead);
  line-height: 2.07692307692;
  letter-spacing: 0.04em;
  font-weight: var(--fw-medium);
  font-family: var(--font-hiragino);
  text-align: justify;
}
.l-lpcontents .c-text_credit {
  font-size: var(--fz-text_credit);
  line-height: 2.16;
  letter-spacing: 0.005em;
  font-weight: var(--fw-regular);
  font-family: var(--font-en);
}
.l-lpcontents .c-text_credit li {
  display: inline-block;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  margin: 0rem 0.4rem;
}
.l-lpcontents .c-text_btn {
  width: fit-content;
  margin: 16rem auto 17rem;
  font-size: var(--fz-text_btn);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: var(--font-en);
  border-bottom: 0.1rem solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_title {
    line-height: 2.094;
    letter-spacing: 0.08em;
  }
  .l-lpcontents .c-text_lead {
    line-height: 1.8695652174;
    letter-spacing: 0.075em;
  }
  .l-lpcontents .c-text_credit {
    line-height: 2.08333333333;
  }
  .l-lpcontents .c-text_credit li {
    margin: 0rem calc(8*100vw/750);
  }
  .l-lpcontents .c-text_btn {
    margin: calc(194*100vw/750) auto calc(200*100vw/750);
    line-height: 1.3;
    letter-spacing: 0.037em;
    border-top: calc(1*100vw/750) solid var(--color-black);
    border-bottom: calc(1*100vw/750) solid var(--color-black);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__image0101 {width: 90.0rem;}
.l-lpcontents .styleview__image0201 {width: 45.0rem;}
.l-lpcontents .styleview__image0202 {width: 24.0rem;}
.l-lpcontents .styleview__image0203 {width: 35.0rem;}
.l-lpcontents .styleview__image0301 {width: 50.0rem;}
.l-lpcontents .styleview__image0302 {width: 24.0rem;}
.l-lpcontents .styleview__image0303 {width: 40.0rem;}
.l-lpcontents .styleview__image0401 {width: 45.5rem;}
.l-lpcontents .styleview__image0402 {width: 24.0rem;}
.l-lpcontents .styleview__image0403 {width: 45.5rem;}
.l-lpcontents .styleview__image0501 {width: 48.0rem;}
.l-lpcontents .styleview__image0502 {width: 24.0rem;}
.l-lpcontents .styleview__image0503 {width: 40.0rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview__image0101 {width: calc(750*100vw/750);}
  .l-lpcontents .styleview__image0201 {width: calc(600*100vw/750);}
  .l-lpcontents .styleview__image0202 {width: calc(320*100vw/750);}
  .l-lpcontents .styleview__image0203 {width: calc(550*100vw/750);}
  .l-lpcontents .styleview__image0301 {width: calc(600*100vw/750);}
  .l-lpcontents .styleview__image0302 {width: calc(330*100vw/750);}
  .l-lpcontents .styleview__image0303 {width: calc(530*100vw/750);}
  .l-lpcontents .styleview__image0401 {width: calc(558*100vw/750);}
  .l-lpcontents .styleview__image0402 {width: calc(328*100vw/750);}
  .l-lpcontents .styleview__image0403 {width: calc(537*100vw/750);}
  .l-lpcontents .styleview__image0501 {width: calc(590*100vw/750);}
  .l-lpcontents .styleview__image0502 {width: calc(328*100vw/750);}
  .l-lpcontents .styleview__image0503 {width: calc(537*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - common
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .styleview__inner {
  width: var(--width-primary);
  margin: 0 auto;
}
.l-lpcontents .styleview__text__title::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background-color: var(--color-black);
  bottom: 0.2rem;
  z-index: -1;
}
.l-lpcontents .styleview__text__title::before {
  width: 0;
  transition: width 1.5s ease, height 1s ease;
}
.l-lpcontents .styleview__text__title.is-active::before {
  width: 200rem;
}
.l-lpcontents .styleview02 .styleview__text__title.is-active::before {
  left: -153rem;
}
.l-lpcontents .styleview03 .styleview__text__title.is-active::before {
  left: 0;
}
.l-lpcontents .styleview04 .styleview__text__title.is-active::before {
  left: -150.7rem;
}
.l-lpcontents .styleview05 .styleview__text__title.is-active::before {
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .styleview__text__title::before {
    bottom: calc(2*100vw/750);
  }
  .l-lpcontents .styleview__text__title.is-active::before {
    width: calc(789*100vw/750);
  }
  .l-lpcontents .styleview02 .styleview__text__title.is-active::before {
    left: initial
  }
  .l-lpcontents .styleview03 .styleview__text__title.is-active::before {
    left: calc(200*100vw/750);
  }
  .l-lpcontents .styleview04 .styleview__text__title.is-active::before {
    left: initial;
  }
  .l-lpcontents .styleview05 .styleview__text__title.is-active::before {
    left: calc(200*100vw/750);
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - AU240919PACKKNIT
//////////////////////////////////////////////////////////////////////////////////////////////
*/

#AU240919PACKKNIT {
  width: 140rem;
  margin: 0 auto;
}

/* fv_area */
.fv_area {
  width: 140rem;
  margin: 0 auto 15rem;
  position: relative;
}
.fv_area_text {
  font-style: var(--font-nimbus);
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 0.888;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* sec01 */ 
.sec01 {
  width: 140rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18.3rem;
}
.sec01_left {
  width: 30.3rem;
}
.sec01_middle {
  width: 56.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec01_middle_text {
  font-family: var(--font-hiragino);
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  line-height: 1.86;
  color: var(--color-black);
  position: relative;
  top: 1.3rem;
  left: -0.3rem;
}
.sec01_right {
  width: 53.2rem;
}
.credit_wrap.credit-02 {
  margin-left: 5rem;
}
.credit_wrap.credit-01 {
  margin-left: 2.8rem;
  margin-top: -0.2rem;
}

/* sec02 */
.sec02 {
  width: 117.7rem;
  margin: 0 auto 18rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  left: -1.2rem;
}
.sec02_left {
  width: 65rem;
  position: relative;
}
.sec02_left-img {
  margin-bottom: 4rem;
}
.credit_wrap {
  display: flex;
  gap: 1.2rem;
}
.credit_wrap .credit_text {
  text-decoration: underline;
  font-size: 1.2rem;
  letter-spacing: 0.005em;
  line-height: 1;
  font-style: var(--font-nimbus);
  color: var(--color-black);
}
.credit_wrap.credit_center {
  justify-content: center;
}
.sec02_black {
  position: absolute !important;
  top: 4.8rem;
  right: -2.7rem;
}
.sec02_black {
  font-family: var(--font-nimbus);
  writing-mode: vertical-rl;
  font-feature-settings: "vpal";
  font-size: 6rem;
  letter-spacing: 0.2em;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  rotate: 180deg;
}
.sec02_right {
  width: 44.9rem;
  margin-top: 10.4rem;
  position: relative;
}
.sec02_right-img {
  width: 40rem;
  margin-left: auto;
  margin-bottom: 3.9rem;
}
.sec02_ivory {
  position: absolute !important;
  bottom: 29rem;
  right: 0rem;
}
.sec02_ivory {
  font-family: var(--font-nimbus);
  font-size: 4rem;
  letter-spacing: 0.2em;
  font-weight: var(--fw-bold);
  color: var(--color-black);
}
.sec02_lead {
  margin-top: 10.2rem;
  font-family: var(--font-hiragino);
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
  line-height: 2;
  color: var(--color-black);
}

/* sec03 */
.sec03 {
  width: 140rem;
  height: 45rem;
  margin: 0 auto 18.2rem;
  display: flex;
  justify-content: center;
}
.sec03_left {
  width: 50%;
  background: #1C2534;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec03_left_img {
  width: 50rem;
}
.sec03_right {
  width: 50%;
  background: #162B58;
  display: flex;
  justify-content: center;
  align-items: center;
}
.white_ttl {
  font-style: var(--font-hiragino);
  font-size: 1.8rem;
  letter-spacing: 0.125em;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-white);
}
.white_lead {
  font-style: var(--font-hiragino);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 2.07;
  color: var(--color-white);
  text-align: justify;
}
.sec03_right > div {
  width: 47rem;
  position: relative;
  top: 0.4rem;
}

/* sec04 */
.sec04 {
  width: 130rem;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.sec02_black.sec04_ivory {top: 25.8rem;right: -3rem;}
.sec02_right.sec04_right {
  margin-top: 4.5rem;
  width: 57.3rem;
}
.sec02_ivory.sec04_navy {bottom: unset;top: -2rem;right: unset;left: 7rem;}
.sec04_bottom_img {
  margin-bottom: 18rem;
  width: 28rem;
  position: relative;
  right: -82.7rem;
  margin-top: 1.5rem;
}
.sec02_right-img.sec04_right-img {
  width: 50rem;
}
.sec02_lead.sec04_lead {margin-top: 8.5rem;}
.sec02_right.sec04_right .credit_wrap.credit-02 {
  margin-left: 7.3rem;
}
.sec02_right.sec04_right .sec02_right-img.sec04_right-img {
  margin-bottom: 3.9rem;
}

/* sec05 */
.sec03_right.sec05_right > div {}
.sec03_right.sec05_right > div .white_lead {/* letter-spacing: 0.058em; */}
.sec03.sec05 {margin: 0 auto 18.4rem;}

/* sec06 */
.sec06 {
  width: 130rem;
  display: flex;
  justify-content: space-between;
}
.other_ttl {
  font-style: var(--font-nimbus);
  font-size: 6rem;
  letter-spacing: 0.16em;
  color: var(--color-black);
  font-weight: var(--fw-bold);
  text-align: right;
  margin-top: 10.2rem;
  margin-bottom: 6.6rem;
}
.credit_wrap.credit_right {
  justify-content: flex-end;
}
.sec02_black.sec06_navy {
  font-size: 4rem;
  top: 27.1rem;
  right: -2rem;
}
.sec02_left.sec06_left {
  width: 57rem;
}
.sec02_left-img.sec06_left-img {
  width: 57rem;
  margin-bottom: 3.9rem;
}
.sec02_right.sec06_right {
  width: 65.7rem;
  margin-top: 0;
}
.sec02_right-img.sec06_right-img {
  width: 60rem;
  margin-bottom: 3.9rem;
}
.sec06_bottom_img {
  /* margin-bottom: 18rem; */
  width: 28rem;
  position: relative;
  right: -64.3rem;
  margin-top: 2.2rem;
}
.sec02_lead.sec06_lead {
  margin-top: 9.3rem;
}
.sec02_ivory.sec06_black {
  bottom: 29.7rem;
  right: 43.3rem;
}




/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-mv {
  opacity: 0;
}
.l-lpcontents .js-mv.is-active {
  opacity: 1;
  transition: opacity 880ms 440ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-lpcontents .js-apper {
  opacity: 0;
}
.l-lpcontents .js-apper.is-active {
  opacity: 1;
  transition: opacity 380ms 1220ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 380ms 1220ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-lpcontents .js-show {
  opacity: 0;
}
.l-lpcontents .js-show.is-active {
  opacity: 1;
  transition: opacity 480ms 380ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.l-lpcontents .js-fade {
  opacity: 0;
}
.l-lpcontents .js-fade.is-active {
  transition: opacity 580ms cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 580ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}
.l-lpcontents .js-slide_in {
  opacity: 0;
}
.l-lpcontents .js-slide_in.is-active {
  animation: img-opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}
.l-lpcontents .js-slide_in.is-active::before {
  animation: img-animation 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: var(--color-white);
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: -0.01em;
  top: 0;
  z-index: 1;
}
@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* delay */
.l-lpcontents .js-fade.anime_delay01 {
  transition-delay: 0.5s;
}


.pc_on {
  display: block;
}
.sp_on {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_on {
    display: none;
  }
  .sp_on {
    display: block;
  }
.fv_area_text {
  font-size: calc(70* (100vw /750));
}
.sec01_left {
  width: calc(224* (100vw /750));
}
.sec01_middle {
  width: calc(526* (100vw /750));
}
.sec01_middle_text {
  font-size: calc(23* (100vw /750));
  letter-spacing: 0.03em;
  top: calc(-5* (100vw /750));
  left: calc(-1* (100vw /750));
  line-height: 2;
}
.sec01_right {
  width: calc(530* (100vw /750));
  margin-top: calc(80* (100vw /750));
}
.sec01 {
  width: calc(750* (100vw /750));
  justify-content: center;
  margin-bottom: calc(186* (100vw /750));
}
.sec02 {
  width: calc(750* (100vw /750));
  margin: 0 auto calc(180* (100vw /750));
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  left: 0;
}
.sec02_left {
  width: calc(600* (100vw /750));
}
.sec02_left-img {
  margin-bottom: calc(40* (100vw /750));
}
.credit_wrap {
  flex-wrap: wrap;
  justify-content: center !important;
  gap: calc(20* (100vw /750));
}
.credit_wrap .credit_text {
  font-size: calc(24* (100vw /750));
}
.credit_wrap.credit-01 {
  width: calc(584*(100vw / 750));
  margin-left: calc(1*(100vw / 750));
}
.sec02_right {
  width: calc(616*(100vw / 750));
  margin-top: calc(0*(100vw / 750));
}
.sec02_right-img {
  width: calc(500*(100vw / 750));
  margin-bottom: calc(40*(100vw / 750));
  margin-top: calc(84*(100vw / 750));
  margin-right: auto;
}
.sec02_black {
  font-size: calc(60*(100vw / 750));
  top: calc(302*(100vw / 750));
  right: unset;
  left: calc(-25*(100vw / 750));
}
.sec02_ivory {
  font-size: calc(50*(100vw / 750));
  writing-mode: vertical-rl;
  font-feature-settings: "vpal";
  bottom: unset;
  top: calc(397*(100vw / 750));
  right: calc(26*(100vw / 750));
}
.sec02_lead {
  margin-top: calc(94*(100vw / 750));
  font-size: calc(25*(100vw / 750));
}
.sec03 {
  width: calc(750*(100vw / 750));
  flex-wrap: wrap;
  height: calc(932*(100vw / 750));
  margin: 0 auto calc(180*(100vw / 750));
}
.sec03_left {
  width: 100%;
}
.sec03_left_img {
  width: calc(600*(100vw / 750));
}
.sec03_right {
  width: 100%;
}
.white_ttl {
  font-size: calc(28*(100vw / 750));
  margin-bottom: calc(14*(100vw / 750));
  letter-spacing: 0.09em;
}
.white_lead {
  font-size: calc(23*(100vw / 750));
  line-height: 1.87;
  top: calc(8*(100vw / 750));
  letter-spacing: 0.075em;
}
.sec03_right > div {
  width: calc(650*(100vw / 750));
  top: calc(0(100vw / 750));
}
.sec04 {
  width: calc(750*(100vw / 750));
  flex-wrap: wrap;
  justify-content: center;
}
.sec02_right.sec04_right {
  margin-top: 0;
  width: calc(665*(100vw / 750));
}
.sec02_right-img.sec04_right-img {
  width: calc(500*(100vw / 750));
}
.sec02_right.sec04_right .sec02_right-img.sec04_right-img {
  margin-bottom: calc(36*(100vw / 750));
}
.sec04_bottom_img {
  margin-bottom: calc(180*(100vw / 750));
  width: calc(400*(100vw / 750));
  right: calc(-176*(100vw / 750));
  margin-top: calc(95*(100vw / 750));
}
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}
.sec06 {
  width: calc(750*(100vw / 750));
  flex-wrap: wrap;
  justify-content: center;
}
.sec03.sec05 {
  margin: 0 auto calc(180*(100vw / 750));
}
.sec02_left.sec06_left {
  width: calc(750*(100vw / 750));
}
.sec02_right.sec06_right {
  width: calc(644*(100vw / 750));
}
.other_ttl {
  font-size: calc(60*(100vw / 750));
  margin-top: calc(0*(100vw / 750));
  margin-bottom: calc(90*(100vw / 750));
  text-align: center;
}
.sec02_right-img.sec06_right-img {
  width: calc(600*(100vw / 750));
  margin-bottom: calc(40*(100vw / 750));
}
.sec02_lead.sec06_lead {
  margin-top: calc(84*(100vw / 750));
  margin-bottom: calc(80*(100vw / 750));
}
.sec02_left-img.sec06_left-img {
  width: calc(570*(100vw / 750));
  margin-bottom: calc(40*(100vw / 750));
  margin-left: auto;
  margin-right: auto;
}
.sec06_bottom_img {
  width: calc(400*(100vw / 750));
  right: calc(-176*(100vw / 750));
  margin-top: calc(100*(100vw / 750));
}
.sec02_black.sec06_navy {
  font-size: calc(50* (100vw /750));
  top: calc(24* (100vw /750));
  right: unset;
  left: calc(70* (100vw /750));
}
.fv_area_text {
  top: 50.2%;
}
.fv_area {
  width: calc(750* (100vw /750));
  margin: 0 auto calc(132* (100vw /750));
}
.credit_wrap.credit-02 {
  margin-left: calc(0* (100vw /750));
}
.sec02_black.sec04_ivory {
  top: calc(336*(100vw / 750));
  right: unset;
  rotate: 0deg;
  width: calc(56*(100vw / 750));
  left: calc(580*(100vw / 750));
}
.sec02_left .credit_wrap {
  left: calc(-1* (100vw /750));
}
.sec02_lead.sec04_lead {
  margin-top: calc(81*(100vw / 750));
}
.sec02_ivory.sec04_navy {
  top: calc(356*(100vw / 750));
  left: calc(56*(100vw / 750));
  rotate: 180deg;
}
.sec02_right.sec04_right .credit_wrap.credit-02 {
  margin-left: 0;
}
.sec02_right.sec06_right .credit_wrap {
  left: calc(-7* (100vw /750));
}
.sec02_left.sec06_left .credit_wrap {
  left: calc(0* (100vw /750));
}
.sec04 .sec02_left .credit_wrap {
  left: calc(-8* (100vw /750));
}
.sec02_ivory.sec06_black {
  bottom: unset;
  top: calc(447*(100vw / 750));
  right: unset;
  left: calc(600*(100vw / 750));
}



/*================================
  header
=================================*/
#header .header__inner svg{
  fill: #fff;
}
.cls-4{
  stroke: #fff;
}
.header .navigation__list{
  color: #fff;
}
.header .drawer-btn__border{
  background: #fff;
}
.header .drawer-btn__border::after{
  background: #fff;
}
.header .drawer-btn__border::before{
  background: #fff;
}
#AU240919PACKKNIT {
  width: calc(750* (100vw /750));
  margin: calc(-120* (100vw /750)) auto 0;
}

}

::-webkit-full-page-media, :future, :root .sec02_ivory {
  top: calc(400*(100vw / 750));
}
::-webkit-full-page-media, :future, :root .sec02_lead {
  font-size: calc(24*(100vw / 750));
}
::-webkit-full-page-media, :future, :root .sec02_lead.sec06_lead {
  font-size: calc(24*(100vw / 750));
}