@charset "UTF-8";
/* ===========================================
 * 
	----------------------------------
  Structure
  ----------------------------------
  00. common parts
  01. fv
  02. about
 * ======================================== */

/* ===========================================
 * fv
 * ======================================== */
.fv {
  container-type: inline-size;
  /*
  padding-top: var(--spc-120-60);*/
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.fv__bg {
  background-image: url('../img/img_fv_parking.webp');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.fv__inner {
  padding-block: var(--spc-120-60);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@container (width <= 1300px) {
  .fv__inner {
    align-items: center;
  }
}

/* catch */
/* ======================================== */
.fv__catch-wrap {
  color: var(--color-font-wh);
  padding-bottom: var(--spc-80-40);
}
.fv__catch-area {
  display: flex;
  flex-direction: column;
}
.fv__catch-block {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
}

.fv__catch-sub,
.fv__catch-main,
.fv__catch-bottom {
  line-height: 1.6;
  font-weight: bold;
}

.fv__catch-sub {
  --clamp-min: 27;
  --clamp-max: 54;
}
.fv__catch-main {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.fv__catch-main-text {
  position: relative;
  --clamp-min: 40;
  --clamp-max: 80;
}
.fv__catch-suffix {
  margin-left: var(--spc-10-5);
  --clamp-min: 40;
  --clamp-max: 80;
}
.fv__catch-en {
  letter-spacing: .2em;
}
.fv__catch-bottom {
  --clamp-min: 27;
  --clamp-max: 54;
}

/* 線のスタイル */
.fv__catch-line {
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-wh);
}
.line-top { top: 0; }
.line-bottom { bottom: 0; }

/* JavaScript用アニメーションクラス */
.fv__catch-line.is-active {
  width: 100%;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@container (width <= 1300px) {
  .fv__catch-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .fv__catch-suffix {
    padding-left: auto;
  }
  .fv__catch-line,
  .fv__catch-block--3 {
    display: none;
  } 
}

/* fv_btn */
/* ======================================== */
.fv__btn-wrap {
  color: var(--color-font-wh);
}
.fv__btn-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: var(--spc-40-20);
  --clamp-min: 15;
  --clamp-max: 30;
}
.fv__btn-item {
  --clamp-min: 15;
  --clamp-max: 30;
}
.fv__btn-link {
  display: block;
  font-weight: bold;
  color: var(--color-font-wh);
  background-color: rgb(0 0 0 / 65%);
  border: 1px solid var(--color-font-wh);
  padding: var(--spc-10-5) var(--spc-40-20);
  border-radius: 50px;
  text-align: center;
  transition: background-color 0.3s ease, border 0.3s ease;
}
@media (hover: hover) {
  .fv__btn-link:hover {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
  }
}
@container (width <= 1300px) {
  .fv__btn-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .fv__btn-link {
    max-width: 400px;
    width: 100%;
  }
}


/* ===========================================
 * about
 * ======================================== */
.about {
  container-type: inline-size;
  position: relative;
  overflow-x: hidden;
}
.about::before,
.about::after {
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--len-620-310);
  height: var(--len-620-310);
  z-index: -1;
}
.about::before {
  top: 8%;
  left: -100px;
  background-image: url('../img/img_signboard.webp');
}
.about::after {
  top: 12%;
  right: -80px;
  background-image: url('../img/img_calculator.webp');
}
.about__inner {
  padding-block: var(--spc-120-60);
}
.about__head {
  text-align: center;
  font-weight: bold;
  padding-bottom: var(--spc-160-80);
}
.about__sub {
  --clamp-min: 22;
  --clamp-max: 44;
}
.about__title {
  --clamp-min: 27;
  --clamp-max: 54;
  color: var(--color-font-or);
  padding-bottom: var(--spc-80-40);
}
.about__text {
  --clamp-min: 18;
  --clamp-max: 20;
  padding-bottom: var(--spc-80-40);
}
@container (width <= 1300px) {
  .about::before,
  .about::after {
    width: var(--len-340-170);
    height: var(--len-340-170);
  }
  .about::before {
    top: 0;
  }
  .about::after {
    top: 2%;
  }
  .about__text {
    text-align-last: left;
  }
}
@container (width <= 768px) {
  .about::before {
    left: -4%;
    top: 0;
  }
  .about::after {
    right: -2%;
    top: 16%;
  }
}

/* about bodyエリア */
/* ======================================== */
.about__body {
  padding-bottom: var(--spc-80-40);
}
.about__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spc-80-40) var(--spc-20-10);
}
.about__item {
  display: grid;
  gap: var(--spc-20-10);
  grid-row: span 3;
  grid-template-rows: subgrid;
  position: relative;
  padding-top: var(--spc-40-20);
  border: 1px solid var(--color-border-bk);
}
.about__item::after {
  content: '';
  display: block;
  background-image: url('../img/icon_graph.png');
  background-repeat: no-repeat;
  background-size: contain;

  background-position: center center;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: var(--len-80-40);
  height: var(--len-80-40);
}
.about__item:nth-child(2)::after {
  background-image: url('../img/icon_calculator.png');
}
.about__item:nth-child(3)::after {
  background-image: url('../img/icon_map.png');
}
.about__item:nth-child(4)::after {
  background-image: url('../img/icon_calendar.png');
}
.about__item-title {
  --clamp-min: 18;
  --clamp-max: 28;
  font-weight: bold;
  padding-top: var(--spc-20-10);
  padding-inline: var(--spc-20-10);
  text-align: center;
}

.about__item-text {
  --clamp-min: 16;
  --clamp-max: 20;
  padding-inline: var(--spc-10-5);
}
.about__bottom {
  display: flex;
  justify-content: center;
}
.about__bottom-link {
  --clamp-min: 22;
  --clamp-max: 44;
  font-weight: bold;
  display: inline-block;
  font-feature-settings: "palt" 1;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .about__bottom-link:hover {
    color: var(--color-font-or);
  }
}
@container (width <= 768px) {
  .about__item::after {
    top: -6%;
  }
  .about__bottom-text {
    border-bottom: none;
  }
}