﻿@charset "utf-8";
/*--------------------------------------------------------------------------------
 
  flow

--------------------------------------------------------------------------------*/
.flow-sec {
  padding-bottom: var(--space-3l);
}

/*--------------------------------------------------------------------------------
  .flow-intro
--------------------------------------------------------------------------------*/
.flow-intro {
  padding-bottom: var(--space-l);
  display: flex;
  gap: var(--space-m);
}
.flow-intro_ttl {
  font-family: var(--ff-go);
}
.flow-intro_ttl .ttl-sub {
  font-weight: 500;
  font-size: var(--fs-m);
  padding-bottom: 1rem;
}
.flow-intro_ttl .ttl {
  font-weight: 700;
  width: fit-content;
  font-size: var(--fs-3l);
  line-height: 1.5;
  text-align-last: justify;
  text-justify: inter-ideograph;
}
.flow-intro_ttl .ttl .em {
  color: var(--color-quaternary);
  display: block;
  font-size: var(--fs-l);
}
.flow-intro_txt {
  flex: 1;
}
@media (min-width: 801px) {
  .flow-intro_txt {
    align-self: flex-end;
  }
}
@media (max-width: 800px) {
  .flow-intro {
    flex-direction: column;
  }
  .flow-intro_ttl {
    text-align: center;
  }
  .flow-intro_ttl .ttl {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------------------------
  .flow-btn
--------------------------------------------------------------------------------*/
.flow-btn {
  display: flex;
  font-size: var(--fs-m);
  margin-bottom: var(--space-s);
}
.flow-btn li {
  width: 100%;
  text-align: center;
  position: relative;
}
.flow-btn a,
.flow-btn a:hover { color: inherit; text-decoration: none; }
.flow-btn a {
  background-color: rgba(var(--color-tertiary-light-rgb), 0.3);
  display: block;
  padding: 0.75rem;
}
.flow-btn li:not(:first-of-type) a {
  border-left: 1px solid var(--bg-color);
}
.flow-btn li:has(.is-active) a {
  border-left-color: var(--color-quaternary);
}
.flow-btn .is-active,
.flow-btn .is-active:hover {
  background-color: var(--color-quaternary);
  color: #FFF;
}
.flow-btn li:after {
  content: "";
  width: 20px;
  height: 10px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition: bottom 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.flow-btn li:has(.is-active):after {
  opacity: 1;
  bottom: -9px;
  background-color: var(--color-quaternary);
}
.flow-btn li:has(.is-active) + li a { border-left-color: var(--color-quaternary); }
@media (max-width: 999px) {
  .flow-btn {
    margin-left: calc(-1 * (var(--side-space) / 2));
    margin-right: calc(-1 * (var(--side-space) / 2));
  }
}
@media (hover: hover) {
  .flow-btn a:hover {
    background-color: rgba(var(--color-tertiary-light-rgb), 0.5);
  }
}

/*--------------------------------------------------------------------------------
  .flow
--------------------------------------------------------------------------------*/
.js_tab-content { display: none; }
:root {
  --flow-cgap: clamp(1rem, 3vw, 3rem);
  --flow-arrow-color: var(--color-tertiary-light);
}
.flow {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--flow-cgap);
}
@media (max-width: 999px) {
  .flow { margin: 0 calc(-1 * (var(--side-space) / 2)); }
}
.flow_item { width: 100%; }
.flow_item.-half {
  flex-basis: calc(50% - (var(--flow-cgap) / 2));
  display: flex;
  flex-direction: column;
}
.flow_box {
  background-color: #FFF;
  padding: var(--box-space-m);
}
.flow_box2 {
  border: 1px dashed var(--color-quaternary);
  padding: 1rem;
  color: var(--color-quaternary);
}
.flow_arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 2.5rem;
}
.flow_arrow:before {
  content: "";
  width: 4px;
  height: calc(100% - 10px);
  background-color: var(--flow-arrow-color);
  position: absolute;
  left: calc(50% - 2px);
  top: 0;
}
.flow_arrow:after {
  content: "";
  width: 14px;
  height: 16px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--flow-arrow-color);
}
.flow_step {
  color: var(--color-quaternary);
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------------------------
 
  spec

--------------------------------------------------------------------------------*/
@media (min-width: 1000px) { :root { --spec-hd-break-point: 1200; } }
@media (max-width: 999px) { :root { --spec-hd-break-point: 800; } }
.spec-hd {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: clamp(280px, calc(560 / var(--spec-hd-break-point) * 100vw), 560px);
}
.spec-hd:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../../image/spec/img.webp") no-repeat center center;
  background-size: cover;
  filter: brightness(80%);
}
.spec-hd_ttl {
  position: relative;
  color: #FFF;
  font-weight: bold;
  padding-bottom: var(--space-l);
}
.spec-hd_ttl .sub { font-size: var(--fs-m); line-height: 1.2; }
.spec-hd_ttl .main { font-size: var(--fs-4l); padding-top: 1rem; }

/*--------------------------------------------------------------------------------
  .spec-standard
--------------------------------------------------------------------------------*/
.spec-standard {
  padding-top: var(--space-2l);
  display: grid;
}
.spec-standard_item {
  border-top: 1px solid var(--color-secondary);
  padding: var(--box-space-l) 0;
  display: flex;
}
.spec-standard_item .ttl {
  font-weight: bold;
  font-size: var(--fs-m);
}
@media (min-width: 1000px) {
  .spec-standard_item {
    align-items: center;
  }
  .spec-standard_item .ttl {
    width: 10em;
    text-align: center;
  }
  .spec-standard_item .txt {
    flex: 1;
  }
}
@media (min-width: 641px) {
  .spec-standard {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-m);
  }
}
@media (max-width: 999px) {
  .spec-standard_item {
    flex-direction: column;
  }
  .spec-standard_item .ttl {
    padding-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------------------------
  .spec-products
--------------------------------------------------------------------------------*/
.spec-products {
  padding-top: var(--space-l);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l) var(--space-s);
}
.spec-products .ttl {
  font-weight: bold;
  font-size: var(--fs-m);
  padding: 0.75rem 0 0.5rem 0;
}
.spec-products .tag {
  position: relative;
  padding-right: 1rem;
  margin-right: 1rem;
}
.spec-products .tag:after {
  content: "";
  width: 1px;
  height: 1em;
  border-right: 1px solid var(--color-secondary);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 999px) {
  .spec-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .spec-products {
    grid-template-columns: 1fr;
  }
}
