@charset "UTF-8";
@media screen and (max-width: 767px) {
  .main-area .main-inner {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@font-face {
  font-family: "kozuka-gothic-pr6n";
  src: url(../font/KozGoPr6N-Regular.otf);
}
@font-face {
  font-family: "sofia-pro";
  src: url(../font/UniversLTStd-Bold.otf);
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents {
  --font-kozuka: "kozuka-gothic-pr6n";
  --font-sofia: "sofia-pro";
  --font-en: var(--font-sofia);
  --font-ja: var(--font-kozuka);
  --font-main: var(--font-sofia), "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --bg_color-black: #000;
  --bg_color-white: #fff;
  --bg_color-green: #043f04;
  --bg_color-blue: #003882;
  --bg_color-orange: #e67016;
  --bg_color-lightpink: #edd8d8;
  --bg_color-lightblue: #c0d7db;
  --bg_color-blown: #ac947d;
  --bg_color-lightpurple: #d2c1ce;
  --bg_color-pink: #deb9be;
  width: var(--width-primary);
  margin-inline: auto;
  text-align: center;
  font-feature-settings: "palt";
  background-color: var(--color-orange);
}
@media screen and (min-width: 768px) {
  .l-lpcontents {
    --width-primary: 102.4rem;
    --fz-text_fv_title: 2.275rem;
    --fz-text_fv_descdate: 2.9rem;
    --fz-text_fv_desctext: 1.72rem;
    --fz-text_maintitle: 2.6rem;
    --fz-text_concept_date: 3.6rem;
    --fz-text_concept_link: 1.8rem;
    --fz-text_color_desc: 1.065rem;
  }
  #content__archive {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents {
    --width-primary: calc(750*100vw/750);
    --fz-text_fv_title: calc(26.67*100vw/750);
    --fz-text_fv_descdate: calc(29*100vw/750);
    --fz-text_fv_desctext: calc(17.2*100vw/750);
    --fz-text_maintitle: calc(32*100vw/750);
    --fz-text_concept_date: calc(37.99*100vw/750);
    --fz-text_concept_link: calc(27.71*100vw/750);
    --fz-text_color_desc: calc(17.83*100vw/750);
  }
  #content__archive {
    margin-top: calc(200*100vw/750);;
  }
}

@media screen and (min-width: 768px) {
  .l-lpcontents .sp_only {
    display: none !important;
  }
  .l-lpcontents .c-color_white {
    background-color: var(--bg_color-white);
  }
}
@media screen and (max-width: 767px) {
  .l-lpcontents .pc_only {
    display: none !important;
  }
}
.l-lpcontents img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - grid
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents [class*="grid_column-1"] {--columns: 1;}
.l-lpcontents [class*="grid_column-2"] {--columns: 2;}
.l-lpcontents [class*="grid_column-3"] {--columns: 3;}
.l-lpcontents [class*="grid_column-4"] {--columns: 4;}

.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);
  }
  .l-lpcontents [class*="pc_grid_column-1"] {--columns: 1;}
  .l-lpcontents [class*="pc_grid_column-2"] {--columns: 2;}
  .l-lpcontents [class*="pc_grid_column-3"] {--columns: 3;}
  .l-lpcontents [class*="pc_grid_column-4"] {--columns: 4;}
}
@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 [class*="sp_grid_column-1"] {--columns: 1;}
  .l-lpcontents [class*="sp_grid_column-2"] {--columns: 2;}
  .l-lpcontents [class*="sp_grid_column-3"] {--columns: 3;}
  .l-lpcontents [class*="sp_grid_column-4"] {--columns: 4;}
}
.l-lpcontents [class*="p-style_wrap0"] {
  position: relative;
  width: fit-content;
  height: fit-content;
  z-index: 2;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - flex
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.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);
}
.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);
}
@media screen and (min-width: 768px) {
  .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-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .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: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}
@media screen and (max-width: 767px) {
  .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);
  }
  .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: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
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 - text
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-text_fv_title {
  font-size: var(--fz-text_fv_title);
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-white);
  writing-mode: vertical-rl;
  text-align: left;
  position: relative;
  left: 6rem;
  top: 2.4rem;
}
.l-lpcontents .c-text_fv_descdate {
  font-size: var(--fz-text_fv_descdate);
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
}
.l-lpcontents .c-text_fv_descdate > span {
  font-size: 2.5rem;
  line-height: 2.12;
  letter-spacing: 0.025em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
  margin-inline: 0.8rem ;
}
.l-lpcontents .c-text_fv_desctext {
  margin-top: -1rem;
  font-size: var(--fz-text_fv_desctext);
  line-height: 2.1197674419;
  letter-spacing: 0.025em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
}
.l-lpcontents .c-text_concept_date {
  font-size: var(--fz-text_concept_date);
  line-height: 1.4722222222;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
}
.l-lpcontents .c-text_concept_date > span {
  font-size: 2.6rem;
  line-height: 2.0384615385;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
}
.l-lpcontents .c-text_concept_date + p {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
}
.l-lpcontents .c-text_concept_date + p > span {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
}
.l-lpcontents .c-text_concept_link {
  width: fit-content;
  margin: 9.7rem auto 0rem;
  font-size: var(--fz-text_concept_link);
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
  border-bottom: 0.2rem solid var(--bg_color-orange);
}
.l-lpcontents .c-text_maintitle {
  font-size: var(--fz-text_maintitle);
  line-height: 2.0384615385;
  letter-spacing: 0.025em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-black);
  padding: 0.7rem 6.9rem;
  width: fit-content;
  margin-inline: auto;
  border-radius: 3rem;
}
.l-lpcontents .c-text_color_desc {
  position: relative;
  font-size: var(--fz-text_color_desc);
  line-height: 1.3154929577;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-white);
  z-index: 5;
  pointer-events: none;
  text-align: left;
}
.l-lpcontents .c-text_color_desc > span {
  font-size: 1.009rem;
  line-height: 1.3885034688;
  letter-spacing: 0.025em;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  color: var(--bg_color-white);
  display: inline-block;
}
.l-lpcontents .c-text_color_desc::before {
  position: absolute;
  display: block;
  content: "";
  top: 0.4rem;
  left: -1.2rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.5rem;
  background-color: var(--bg_color-white);
}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-text_fv_title {
    line-height: 1.5;
    letter-spacing: 0.035em;
    writing-mode: horizontal-tb;
    top: calc(16* 100vw / 750);
    left: calc(21* 100vw / 750);
  }
  .l-lpcontents .c-text_fv_descdate {
    text-align: left;
    line-height: 1.8275862069;
    color: var(--bg_color-white);
    padding-top: calc(164* 100vw / 750);
    padding-left: calc(21* 100vw / 750);
  }
  .l-lpcontents .c-text_fv_descdate > span {
    font-size: calc(25*100vw/750);;
    color: var(--bg_color-white);
    margin-inline: calc(13*100vw/750);;
    line-height: 1.9;
  }
  .l-lpcontents .c-text_fv_descdate > span:first-of-type {
    margin-inline: calc(9*100vw/750);;
  }
  .l-lpcontents .c-text_fv_descdate > span:last-of-type {
    margin-inline: calc(0*100vw/750) calc(10*100vw/750);
  }
  .l-lpcontents .c-text_fv_desctext {
    margin-top: calc(-8* 100vw / 750);
    color: var(--bg_color-white);
    text-align: left;
    margin-left: calc(23* 100vw / 750);
    padding-bottom: calc(37* 100vw / 750);
  }
  .l-lpcontents .c-text_concept_date {
    line-height: 1.4724927613;
  }
  .l-lpcontents .c-text_concept_date > span {
    font-size: calc(27.44*100vw/750);
    line-height: 2.0386297376;
  }
  .l-lpcontents .c-text_concept_date + p {
    font-size: calc(21.11*100vw/750);;
  }
  .l-lpcontents .c-text_concept_date + p > span {
    font-size: calc(23.22*100vw/750);
  }
  .l-lpcontents .c-text_concept_link {
    margin-top: calc(91*100vw/750);;
    line-height: 1.41;
    border-bottom: 2px solid var(--bg_color-orange);
  }
  .l-lpcontents .c-text_maintitle {
    line-height: 0.733125;
    padding: calc(30* 100vw / 750) calc(88* 100vw / 750);
    border-radius: calc(40* 100vw / 750);
  }
  .l-lpcontents .c-text_color_desc {
    line-height: 1.3157599551;
  }
  .l-lpcontents .c-text_color_desc > span {
    font-size: calc(16.89*100vw/750);
    line-height: 1.3889875666;
  }
  .l-lpcontents .c-text_color_desc::before {
    top: calc(8* 100vw / 750);
    left: calc(-17* 100vw / 750);
    width: calc(11* 100vw / 750);
    height: calc(11* 100vw / 750);
    border-radius: calc(10* 100vw / 750);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - color
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-bg_color-black {background-color: var(--bg_color-black);}
.l-lpcontents .c-bg_color-white {background-color: var(--bg_color-white);}
.l-lpcontents .c-bg_color-green {background-color: var(--bg_color-green);}
.l-lpcontents .c-bg_color-blue {background-color: var(--bg_color-blue);}
.l-lpcontents .c-bg_color-orange {background-color: var(--bg_color-orange);}
.l-lpcontents .c-bg_color-darkorange {background-color: var(--bg_color-darkorange);}
.l-lpcontents .c-bg_color-lightpink {background-color: var(--bg_color-lightpink);}
.l-lpcontents .c-bg_color-lightblue {background-color: var(--bg_color-lightblue);}
.l-lpcontents .c-bg_color-blown {background-color: var(--bg_color-blown);}
.l-lpcontents .c-bg_color-lightpurple {background-color: var(--bg_color-lightpurple);}
.l-lpcontents .c-bg_color-pink {background-color: var(--bg_color-pink);}
@media screen and (max-width: 767px) {}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - image
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .c-style_image01 {width: 30rem;}
.l-lpcontents .c-style_image02 {width: 30rem;}
.l-lpcontents .c-style_image03 {width: 30rem;}
.l-lpcontents .c-style_image04 {width: 30rem;}
.l-lpcontents .c-style_image05 {width: 30rem;}
@media screen and (max-width: 767px) {
  .l-lpcontents .c-style_image01 {width: calc(535*100vw/750);}
  .l-lpcontents .c-style_image02 {width: calc(535*100vw/750);}
  .l-lpcontents .c-style_image03 {width: calc(535*100vw/750);}
  .l-lpcontents .c-style_image04 {width: calc(535*100vw/750);}
  .l-lpcontents .c-style_image05 {width: calc(535*100vw/750);}
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - firstview
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-firstview {
  width: var(--width-primary);
  margin-inline: auto;
}
.l-lpcontents .p-firstview_inner {
  --row: 14.2rem;
}
.l-lpcontents .p-firstview_wrapper {
  grid-template-columns: 88rem auto;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-firstview_inner {
    --row: 0;
  }
  .l-lpcontents .p-firstview_desc {
    background-color: var(--bg_color-black);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - concept
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-concept {
  margin-top: 10.9rem;
}
.l-lpcontents .p-concept_text_date {
  --row: 2.5rem;
  width: 25.8rem;
  margin: 7.5rem auto 0;
}
.l-lpcontents .p-concept_text_date > hgroup {
  --row: 0.5rem;
}
.l-lpcontents .p-concept_list {
  --column: 0.89rem;
  width: 95.4rem;
  margin: 8.6rem auto 0;
}
.l-lpcontents .p-concept_item01 {
  --row: 2.3rem;
}
.l-lpcontents .p-concept_item02 {
  --row: 5.4rem;
}
.l-lpcontents .p-concept_item03 {
  --row: 4.6rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-concept {
    margin-top: calc(87*100vw/750);;
  }
  .l-lpcontents .p-concept_text_date {
    --row: calc(24*100vw/750);
    width: calc(271*100vw/750);;
    margin: calc(84*100vw/750) auto 0;
  }
  .l-lpcontents .p-concept_text_date > hgroup {
    --row: calc(5*100vw/750);
  }
  .l-lpcontents .p-concept_list {
    --column: calc(0*100vw/750);
    --row: calc(10*100vw/750);
    width: calc(562*100vw/750);
    margin-top: calc(94*100vw/750);;
  }
  .l-lpcontents .p-concept_item01 {
    --row: calc(0*100vw/750);
  }
  .l-lpcontents .p-concept_item02 {
    --row: calc(0*100vw/750);
  }
  .l-lpcontents .p-concept_item03 {
    --row: calc(0*100vw/750);
  }
  /* .l-lpcontents .p-concept .c-text_maintitle {
    padding-inline: calc(100*100vw/750);;
  } */

}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
project - style
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .p-style {
  margin-top: 20.1rem;
}
.l-lpcontents .p-style_wrapper {
  margin-top: 9.9rem;
  grid-template-columns: 45.9rem 9rem;
  grid-template-rows: repeat(3, 1fr);
}
.l-lpcontents .p-style_list {
  position: relative;
  display: flex;
}
.l-lpcontents .p-style_list::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 2.9rem;
  height: 2.85rem;
  z-index: 10;
}
.l-lpcontents .p-style_list > .p-style_item + li {
  width: 100%;
}
.l-lpcontents .p-style_list01 {
  grid-column: 1/3;
}
.l-lpcontents .p-style_list02 {
  grid-column: 3/4;
}
.l-lpcontents .p-style_list03 {
  grid-column: 1/2;
  flex-direction: row-reverse;
}
.l-lpcontents .p-style_list04 {
  grid-column: 2/4;
  flex-direction: row-reverse;
}
.l-lpcontents .p-style_list05 {
  grid-column: 1/4;
}
.l-lpcontents .p-style_list01 .c-position {
  top: 24rem;
  left: 19.7rem;
}
.l-lpcontents .p-style_list02 .c-position {
  top: 31.5rem;
  left: 12.9rem;
}
.l-lpcontents .p-style_list03 .c-position {
  top: 25rem;
  left: 29.6rem;
}
.l-lpcontents .p-style_list04 .c-position {
  top: 21.5rem;
  left: 35rem;
}
.l-lpcontents .p-style_list05 .c-position {
  top: 28.2rem;
  left: 19.1rem;
}
.l-lpcontents .p-style_list02::before {
  background-image: url(../img/logo_white.png);
  bottom: 1.2rem;
  right: 1.8rem;
}
.l-lpcontents .p-style_list03::before {
  background-image: url(../img/logo_blown.png);
  top: 1rem;
  left: 1rem;
}

.l-lpcontents .c-style_check {
  position: absolute;
  bottom: 3.3rem;
  right: 3.6rem;
  width: 19.4rem;
}
@media screen and (max-width: 767px) {
  .l-lpcontents .p-style {
    margin-top: calc(242*100vw/750);;
  }
  .l-lpcontents .p-style .c-text_maintitle {
    padding-inline: calc(166*100vw/750);;
  }
  .l-lpcontents .p-style_wrapper {
    margin-top: calc(105*100vw/750);
  }
  .l-lpcontents .p-style_list::before {
    width: calc(51*100vw/750);;
    height: calc(50*100vw/750);;
  }
  .l-lpcontents .p-style_list > .p-style_item + li {
    width: 100%;
  }
  .l-lpcontents .p-style_list02 {
    flex-direction: row-reverse;
  }
  .l-lpcontents .p-style_list03 {
    flex-direction: row;
  }
  .l-lpcontents .p-style_list01 .c-position {
    top: calc(395* 100vw / 750);
    left: calc(331* 100vw / 750);
  }
  .l-lpcontents .p-style_list02 .c-position {
    top: calc(554* 100vw / 750);
    left: calc(421* 100vw / 750);
  }
  .l-lpcontents .p-style_list03 .c-position {
    top: calc(443* 100vw / 750);
    left: calc(326* 100vw / 750);
  }
  .l-lpcontents .p-style_list04 .c-position {
    top: calc(376* 100vw / 750);
    left: calc(387* 100vw / 750);
  }
  .l-lpcontents .p-style_list05 .c-position {
    top: calc(470* 100vw / 750);
    left: calc(344* 100vw / 750);
  }
  .l-lpcontents .p-style_list01::before {
    bottom: calc(21* 100vw / 750);
    right: calc(23* 100vw / 750);
    background-image: url(../img/logo_black.png);
  }
  .l-lpcontents .p-style_list02::before {
    bottom: calc(20* 100vw / 750);
    left: calc(23* 100vw / 750);
    right: 0;
    background-image: url(../img/logo_white.png);
  }
  .l-lpcontents .p-style_list03::before {
    top: initial;
    left: initial;
    bottom: calc(21*100vw/750);;
    right: calc(23*100vw/750);;
    background-image: url(../img/logo_blown.png);
  }
  .l-lpcontents .p-style_list04::before {
    bottom: calc(21*100vw/750);;
    left: calc(23*100vw/750);;
    background-image: url(../img/logo_blown.png);
  }
  .l-lpcontents .p-style_list05::before {
    bottom: calc(21*100vw/750);;
    right: calc(23*100vw/750);;
    background-image: url(../img/logo_white.png);
  }
  .l-lpcontents .c-style_check {
    position: static;
    width: calc(467*100vw/750);;
    margin: calc(96*100vw/750) auto 0;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
animation - fade
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.l-lpcontents .js-fade > li {
  opacity: 0;
  will-change: opacity, transform;
  transition: ease-in, opacity 1000ms, transform 1000ms;
  transform: translate3d(0, 10rem, 0) scale(1);
}
.l-lpcontents .js-fade.is-active > li {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}
.l-lpcontents .js-fade.is-active > li:first-of-type {
  transition-delay: .4s;
}
.l-lpcontents .js-fade.is-active > li:nth-of-type(2) {
  transition-delay: .8s;
}
.l-lpcontents .js-fade.is-active > li:last-of-type {
  transition-delay: 1.2s;
}