@charset "UTF-8";
/* --------------- ▽ setting_area ▽ --------------- */
.A0802 {
  --font_jp: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Sans",  "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", Meiryo, sans-serif;
  --font_en-01: "nimbus-sans", sans-serif;
  --font_en-02: "trajan-pro-3", serif;
  --color_black: #000000;
  --color_white: #ffffff;
  --color_border: #1a1311;
}
html {
	font-size: 62.5%;
}
@media only screen and (max-width: 1399px) and (min-width: 768px) {
	html {
		font-size: calc(10* (100vw / 1400));
	}   
}
@media only screen and (max-width: 767px) {
	html {
    font-size: calc(10* (100vw / 750));
  }
}
.header {
  position: fixed;
  top: 0;
} 
.A0802 .font_jp {
  font-family: var(--font-jp);
  font-feature-settings: "palt";
}
.A0802 .font_en-01 {
  font-family: var(--font_en-01);
}
.A0802 .font_en-02 {
  font-family: var(--font_en-02);
}
.A0802 img {
  width: 100%;
  height: auto;
}
.A0802 section {
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .A0802 .sp_only {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .A0802 {
    padding-top: calc(200*100vw/750);
  }
  .A0802 .pc_only {
    display: none;
  }
}
/* --------------- △ setting_area △ --------------- */

/* --------------- ▽ firstview_area ▽ --------------- */
.A0802 .fv {
  width: 100rem;
}
.A0802 .fv > h2 {
  width: 100%;
}
.A0802 .fv > p {
  margin-top: 9.5rem;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.075em;
  font-weight: 500;
  color: var(--color_black);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .A0802 .fv {
    width: calc(750*100vw/750);
  }
  .A0802 .fv > p {
    margin-top: calc(78*100vw/750);
    font-size: calc(23*100vw/750);
    line-height: 1.8691304348;
  }
}
/* --------------- △ firstview_area △ --------------- */

/* --------------- ▽ common_area ▽ --------------- */
.A0802 .common_lead {
  font-size: 1.3rem;
  line-height: 2.0769230769;
  font-weight: 400;
  color: var(--color_black);
  text-align: justify;
}
.A0802 .common_credit {
  font-size: 1.2rem;
  line-height: 2.1666666667;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--color_black);
}
.A0802 .common_credit > a {
  display: inline-block;
  text-decoration: underline;
  margin-inline: 0.5rem;
}
.A0802 .check_btn {
  margin: 16rem auto 16.6rem;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color_black);
}
.A0802 .check_btn > a {
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .A0802 .common_lead {
    font-size: calc(23*100vw/750);
    line-height: 1.8695652174;
    letter-spacing: 0.05em;
  }
  .A0802 .common_credit {
    font-size: calc(24*100vw/750);
    line-height: 2;
  }
  .A0802 .check_btn {
    margin: calc(196*100vw/750) auto calc(90*100vw/750);
    font-size: calc(30*100vw/750);
    line-height: 1;
    letter-spacing: 0.037em;
  }
}
/* --------------- △ common_area △ --------------- */

/* --------------- ▽ common section_details ▽ --------------- */
.A0802 section[class^="section_details"] {
  width: 100rem;
}
.A0802 .details_block {
  width: 85rem;
  margin-inline: auto; 
}
.A0802 .details_block_inner {
  display: flex;
  justify-content: space-between;
}
.A0802 .details_block_inner:nth-child(even) {
  flex-direction: row-reverse;
}
.A0802 .details_block_inner:nth-child(1) {
  margin-top: 10rem;
}
.A0802 .details_block_inner figure {
  width: 42.5rem;
}
.A0802 .details_lead {
  position: relative;
  width: 38rem;
  height: fit-content;
}
.A0802 .details_lead::before,
.A0802 .details_lead::after {
  position: absolute;
  content: "";
  background-color: var(--color_black);
  z-index: 2;
  pointer-events: none;
}
.A0802 .details_lead::before {
  width: 0rem;
  height: 1px;
  top: 50%;
}
.A0802 .details_block_inner:nth-child(odd) .details_lead::after {
  width: 1px;
  height: 0%;
  top: 0;
  left: 0;
}
.A0802 .details_block_inner:nth-child(even) .details_lead::after {
  width: 1px;
  height: 0%;
  top: 0;
  right: 0;
}
.A0802 .details_block_inner .details_lead {
  margin-top: 14.6rem;
}
.A0802 .details_block_inner .common_credit {
  margin-top: 2.3rem;
  margin-left: 2rem;
}
.A0802 .details_block_inner:nth-child(odd) .details_lead {
  padding-left: 2rem;
}
.A0802 .details_block_inner:nth-child(even) .details_lead {
  padding-right: 2rem;
}
.A0802 .details_block_inner:nth-child(odd) .details_lead::before {
  left: -2.145rem;
}
.A0802 .details_block_inner:nth-child(even) .details_lead::before {
  right: -2.145rem;
}
.A0802 .section_details-01 {
  margin-top: 10.2rem;
}
.A0802 .section_details-02 {
  margin-top: 18.2rem;
}
@media screen and (max-width: 767px) {
  .A0802 section[class^="section_details"] {
    width: calc(750*100vw/750);
  }
  .A0802 .details_block {
    width: calc(550*100vw/750);
  }
  .A0802 .details_block_inner {
    display: block;
    margin-top: calc(105*100vw/750);
  }
  .A0802 .details_block_inner:nth-child(1) {
    margin-top: calc(120*100vw/750);
  }
  .A0802 .details_block_inner figure {
    width: 100%
  }
  .A0802 .details_lead {
    width: 100%;
  }
  .A0802 .details_lead::before {
    width: 0;
    top: 0;
  }
  .A0802 .details_block_inner:nth-child(odd) .details_lead::after {
    width: 1px;
    height: calc(0*100vw/750);
    top: calc(-30*100vw/750);
    left: calc(274*100vw/750);
  }
  .A0802 .details_block_inner:nth-child(even) .details_lead::after {
    width: 1px;
    height: calc(0*100vw/750);
    top: calc(-30*100vw/750);
    right: initial;
    left: calc(274*100vw/750);
  }
  .A0802 .details_block_inner .details_lead {
    margin-top: calc(57*100vw/750);
    padding-top: calc(28*100vw/750);
  }
  .A0802 .details_block_inner .common_credit {
    margin-top: calc(47*100vw/750);
    margin-left: calc(0*100vw/750);
    text-align: center;
  }
  .A0802 .details_block_inner:nth-child(odd) .details_lead {
    padding-left: calc(0*100vw/750);
  }
  .A0802 .details_block_inner:nth-child(even) .details_lead {
    padding-right: calc(0*100vw/750);
  }
  .A0802 .details_block_inner:nth-child(odd) .details_lead::before {
    left: calc(0*100vw/750);
  }
  .A0802 .details_block_inner:nth-child(even) .details_lead::before {
    right: initial;
    left: calc(0*100vw/750);
  }
  
  .A0802 .section_details-01 {
    margin-top: calc(130*100vw/750);
  }
  .A0802 .section_details-02 {
    margin-top: calc(167*100vw/750);
  }
}
/* --------------- △ common section_details △ --------------- */

/* --------------- ▽ common section_model ▽ --------------- */
.A0802 .model_inner {
  display: flex;
  justify-content: space-between;
}
.A0802 .model_inner > figure:nth-child(odd) {
  width: calc(458*100vw/1400);
}
.A0802 .model_inner > figure:nth-child(even) {
  display: flex;
  flex-direction: column;
  width: calc(455*100vw/1400);
}
.A0802 .model_inner > figure:nth-child(even) a:nth-child(2) {
  margin-top: -0.01rem;
}
.A0802 .model_inner figure p {
  margin-top: 3.1rem;
  text-align: center;
}
.A0802 section[class^="section_model"] > p {
  width: 67.6rem;
  margin: 4.4rem auto 0;
}

.A0802 .section_model-01 {
  margin-top: 19.83rem;
}
.A0802 .section_model-02 {
  margin-top: 6.1rem;
}
@media screen and (max-width: 767px) {
  .A0802 .model_inner {
    flex-wrap: wrap;
  }
  .A0802 .model_inner > figure:nth-child(odd) {
    width: calc(366.99*100vw/750);
  }
  .A0802 .model_inner > figure:nth-child(even) {
    width: calc(650*100vw/750);
    margin: calc(68*100vw/750) auto 0;
    order: 1;
  }
  .A0802 .model_inner > figure:nth-child(even) > a {
    width: calc(484.84*100vw/750);
  }
  .A0802 .section_model-01 .model_inner > figure:nth-child(even) > a:nth-child(2),
  .A0802 .section_model-02 .model_inner > figure:nth-child(even) > a:nth-child(1) {
    margin-left: calc(165.2*100vw/750);
  }
  .A0802 .model_inner figure p {
    margin-top: calc(56*100vw/750);
  }
  .A0802 section[class^="section_model"] > p {
    width: calc(650*100vw/750);
    margin: calc(111*100vw/750) auto 0;
  }
  .A0802 .section_model-01 {
    margin-top: calc(126*100vw/750);
  }
  .A0802 .section_model-02 {
    margin-top: calc(110*100vw/750);
  }
}
/* --------------- △ common section_model △ --------------- */

/* --------------- ▽ animation__area ▽ --------------- */
.A0802 .js-scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.A0802 .js-scroll.show {
  opacity: 1;
  transition: .5s ease;
  transform: none;
  visibility: visible;
}
.A0802 .js-scroll picture {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  overflow: hidden;
  transform: translateY(0);
}
.A0802 .js-scroll.show picture {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  transition: 1.5s ease;
}
@media screen and (min-width: 768px) {
  .A0802 .details_txt.js-scroll.show .details_lead::after,
  .A0802 .details_lead.js-scroll.show::after {
    height: 100%;
    transition-duration: 1s;
  }
  .A0802 .details_lead.js-scroll.show::before {
    width: 2.145rem;
    transition-duration: 1s;
  }
}
@media screen and (max-width: 767px) {
  .A0802 .details_txt.js-scroll.show .details_lead::after,
  .A0802 .details_lead.js-scroll.show::after {
    height: calc(30*100vw/750);
    transition-duration: 1s;
  }
  .A0802 .details_lead.js-scroll.show::before {
    width: 100%;
    transition-duration: 1s;
  }
  
}
/* --------------- △ animation__area △ --------------- */