/* =========================================================
   Base
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

:root {
  --ABCcontainer: 1448px;
  --ABCblack: #010101;
  --ABCfontSerif: "adobe-caslon-pro", "Shippori Mincho", "Noto Serif JP", serif;
  --ABCsp1-pc: 120px; /* セクション間余白 */
  --ABCsp1-sp: 64px;
  --ABCsp2-pc: 96px; /* タイトル下余白 */
  --ABCsp2-sp: 24px;
  --font-7: clamp(13px, calc(0.28vw + 11.99px), 16px);
  --font-8: clamp(14px, calc(0.37vw + 12.67px), 18px);
  --font-9: clamp(14px, calc(0.74vw + 11.33px), 22px);
  --font-11: clamp(16px, calc(0.74vw + 13.33px), 24px);
  --font-12: clamp(18px, calc(0.74vw + 15.33px), 26px);
  --font-14: clamp(20px, calc(1.1111vw + 16px), 32px);
}

/* header */
.ABC-header {
  background-color: var(--ABCblack);
}
.ABC-logo img {
  width: 200px;
  display: block;
}
.ABC-header__row {
  display: flex;
  align-items: flex-start;
  align-items: center;
  height: 50px;
}
.ABC-fv {
  position: relative;
}
.ABC-fv__row {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--ABCcontainer);
  width: 100%;
  padding: 0 24px;
}
.ABC-fv__h1 {
  color: #fff;
  font-size: clamp(14px, calc(1.2037vw + 9.6667px), 27px);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.ABC-fv__h1-span {
  display: block;
  font-size: clamp(30px, calc(4.8148vw + 12.6667px), 82px);
}
@media (max-width: 767px) {
  .ABC-fv__row {
    top: 33%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}

/* fvアニメーション */
/* 初期状態: 少し下にいて透明 */
.ABC-fv__h1 {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* 1文字ずつのアニメーション */
.ABC-fv__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

/* 表示トリガー */
.ABC-fv__h1.is-visible .ABC-fv__char {
  animation: abcCharFadeInFromBottom 600ms ease-out forwards;
  animation-delay: calc(var(--char-index) * 60ms);
}

/* span 用（スタイル保持） */
.ABC-fv__h1-span {
  display: block;
}

.ABC-fv__h1-span.is-visible .ABC-fv__char-span {
  animation: abcCharFadeInFromBottom 600ms ease-out forwards;
  animation-delay: calc((var(--char-index) + 15) * 60ms);
}

@keyframes abcCharFadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ABC-fv__char,
  .ABC-fv__char-span {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* main */
.ABC-main {
  font-family: var(--ABCfontSerif);
}

/* section01 */
.ABC-sec01 {
  background-color: var(--ABCblack);
  padding: var(--ABCsp1-pc) 0 0;
}

.ABC-sec01__row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.ABC-sec01__body {
  width: 48%;
  color: #fff;
}

.ABC-sec01__lead {
  font-size: var(--font-8);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.ABC-sec01__ttl {
  font-size: var(--font-14);
  line-height: 1.55;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 84px;
}

.ABC-sec01__txt {
  font-size: var(--font-9);
  line-height: 1.95;
}

.ABC-sec01__img {
  width: 36%;
}

.ABC-sec01__img img {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .ABC-sec01 {
    padding: var(--ABCsp1-sp) 0 0;
  }

  .ABC-sec01__row {
    flex-direction: column;
    gap: var(--ABCsp1-sp);
  }

  .ABC-sec01__body,
  .ABC-sec01__img {
    width: 100%;
  }

  .ABC-sec01__lead {
    margin-bottom: 16px;
  }

  .ABC-sec01__ttl {
    margin-bottom: 24px;
  }

  .ABC-sec01__txt {
    line-height: 1.85;
  }
}

/* section02 */
.ABC-sec02 {
  color: #fff;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  --abc-sec02-fill-width: 0px;
  --abc-sec02-fill-color: transparent;
}

.ABC-sec02::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--abc-sec02-fill-width);
  background-color: var(--abc-sec02-fill-color);
  pointer-events: none;
}

.ABC-sec02 > .container {
  position: relative;
  z-index: 1;
}

.ABC-sec02__h-track > .ABC-sec02:nth-child(odd) {
  --abc-sec02-fill-color: #010101;
  background-image: url("../images/sec02-bg-black.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
}

.ABC-sec02__h-track > .ABC-sec02:nth-child(even) {
  --abc-sec02-fill-color: #192d5b;
  background-image: url("../images/sec02-bg-blue.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
}

.ABC-sec02__h-track > .ABC-sec02:first-child {
  background-color: var(--ABCblack);
  background-image: none;
}
/* @media (min-width: 768px) {
  .ABC-sec02__h-track > .ABC-sec02:first-child {
    padding-top: 40px;
  }
} */

.ABC-sec02__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

.ABC-sec02__body {
  width: 50%;
}

.ABC-sec02__ttl-img {
  max-width: 480px;
  margin-bottom: 70px;
}

.ABC-sec02__ttl-img img {
  width: 100%;
  display: block;
}

.ABC-sec02__subttl {
  font-size: clamp(28px, calc(0.3704vw + 26.67px), 32px);
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
}
.ABC-sec02__subttl-span {
  font-style: normal;
  font-size: 14px;
}
.ABC-sec02__ttl {
  font-size: clamp(19px, calc(0.463vw + 17.33px), 24px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 16px;
}

.ABC-sec02__txt {
  font-size: var(--font-7);
  line-height: 1.6;
}

.ABC-sec02__profile {
  width: 50%;
}

.ABC-sec02__profile-img {
  margin-bottom: 22px;
}

.ABC-sec02__profile-img img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .ABC-sec02__row {
    gap: 40px;
  }

  .ABC-sec02__ttl-img {
    margin-bottom: 56px;
  }

  .ABC-sec02__profile {
    padding-top: 58px;
  }

  .ABC-sec02__name {
    font-size: var(--font-8);
  }
}

@media (max-width: 767px) {
  .ABC-sec02 {
    /* padding: var(--ABCsp1-sp) 0; */
    padding: 0;
    height: auto;
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .ABC-sec02 > .container {
    width: 100%;
  }

  .ABC-sec02__h-track > .ABC-sec02:nth-child(odd),
  .ABC-sec02__h-track > .ABC-sec02:nth-child(even) {
    background-position: center;
  }

  .ABC-sec02__row {
    flex-direction: column;
    gap: 24px;
  }

  .ABC-sec02__body,
  .ABC-sec02__profile {
    width: 100%;
  }

  .ABC-sec02__ttl-img {
    max-width: 280px;
    /* margin-bottom: var(--ABCsp2-sp); */
    margin-bottom: 24px;
  }

  .ABC-sec02__ttl {
    margin-bottom: 16px;
  }

  .ABC-sec02__txt {
    line-height: 1.6;
  }

  .ABC-sec02__profile {
    padding-top: 0;
  }

  .ABC-sec02__name {
    font-size: var(--font-8);
  }
  .ABC-sec02__subttl {
    margin-bottom: 8px;
  }
}

/* section03 */
.ABC-sec03 {
  background-color: var(--ABCblack);
  color: #fff;
  padding: var(--ABCsp1-pc) 0 0;
}

.ABC-sec03__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

.ABC-sec03__body {
  width: 56%;
}

.ABC-sec03__ttl-img {
  max-width: 480px;
  margin-bottom: var(--ABCsp2-pc);
}

.ABC-sec03__ttl-img img {
  width: 100%;
  display: block;
}

.ABC-sec03__ttl {
  font-size: var(--font-11);
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 36px;
}

.ABC-sec03__txt {
  font-size: var(--font-7);
  line-height: 2.08;
  opacity: 0.92;
}

.ABC-sec03__profile {
  width: 44%;
}

.ABC-sec03__profile-img {
  margin-bottom: 22px;
}

.ABC-sec03__profile-img img {
  width: 100%;
  display: block;
}

.ABC-sec03__name {
  font-size: var(--font-7);
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .ABC-sec03__row {
    gap: 40px;
  }

  .ABC-sec03__ttl-img {
    margin-bottom: 56px;
  }

  .ABC-sec03__profile {
    padding-top: 58px;
  }
}

@media (max-width: 767px) {
  .ABC-sec03 {
    /* padding: var(--ABCsp1-sp) 0 0; */
    padding: 0;
  }

  .ABC-sec03__row {
    flex-direction: column;
    gap: 32px;
  }

  .ABC-sec03__body,
  .ABC-sec03__profile {
    width: 100%;
  }

  .ABC-sec03__ttl-img {
    max-width: 280px;
    margin-bottom: var(--ABCsp2-sp);
  }

  .ABC-sec03__ttl {
    margin-bottom: 24px;
  }

  .ABC-sec03__txt {
    line-height: 1.6;
  }

  .ABC-sec03__profile {
    padding-top: 0;
  }

  .ABC-sec03__name {
    font-size: var(--font-8);
  }
  .ABC-sec03__profile-img {
    margin-bottom: 16px;
  }
}

/* section04 */
.ABC-sec04 {
  background-color: var(--ABCblack);
  color: #fff;
  padding: var(--ABCsp1-pc) 0;
}

.ABC-sec04__ttl-img {
  max-width: 480px;
  margin-bottom: var(--ABCsp2-pc);
}

.ABC-sec04__ttl-img img {
  width: 100%;
  display: block;
}

.ABC-sec04__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.ABC-sec04__body {
  width: 50%;
}

.ABC-sec04__ttl {
  font-size: var(--font-11);
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 40px;
}

.ABC-sec04__txt {
  font-size: var(--font-8);
  line-height: 2.1;
  opacity: 0.9;
}

.ABC-sec04__img {
  width: 50%;
}

.ABC-sec04__img img {
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .ABC-sec04__row {
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .ABC-sec04 {
    padding: var(--ABCsp1-sp) 0;
  }

  .ABC-sec04__ttl-img {
    /* max-width: 220px; */
    margin-bottom: var(--ABCsp2-sp);
  }

  .ABC-sec04__row {
    flex-direction: column;
    gap: 32px;
  }

  .ABC-sec04__body,
  .ABC-sec04__img {
    width: 100%;
  }

  .ABC-sec04__ttl {
    margin-bottom: 28px;
  }

  .ABC-sec04__txt {
    line-height: 1.6;
  }
}

/* section05 */
.ABC-sec05 {
  padding: var(--ABCsp1-pc) 0 120px;
  background-color: #dcc39a;
  background-image: url("/wp-content/themes/kawajun-LP/assets/ht/ALBaggageCart/images/sec05-bg-img.webp");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  color: #111;
}

.ABC-sec05__ttl-img {
  max-width: 480px;
  margin-bottom: var(--ABCsp2-pc);
}

.ABC-sec05__ttl-img img {
  width: 100%;
  display: block;
}

.ABC-sec05__wrapper {
  width: 100%;
}

.ABC-sec05__pc-imeg {
  width: 100%;
}

.ABC-sec05__pc-imeg img {
  width: 100%;
  display: block;
}

@media (min-width: 1449px) {
  .ABC-sec05 {
    overflow: hidden;
  }

  .ABC-sec05__pc-imeg img {
    width: calc(100% + 300px);
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1448px) {
  .ABC-sec05 {
    overflow: hidden;
  }

  .ABC-sec05__pc-imeg img {
    width: 120.72%;
    max-width: none;
  }
}

.ABC-sec05__row {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.ABC-sec05__item {
  width: calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ABC-sec05__inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.ABC-sec05__body {
  flex: 1 1 auto;
  min-width: 0;
}

.ABC-sec05__name {
  font-size: var(--font-14);
  line-height: 1.25;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ABC-sec05__specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ABC-sec05__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-8);
  line-height: 1.5;
}

.ABC-sec05__spec dt {
  flex: 0 0 auto;
  padding: 2px 8px;
}

.ABC-sec05__spec dd {
  margin: 0;
}

.ABC-sec05__note {
  font-size: var(--font-8);
  line-height: 1.7;
  margin-top: 22px;
}

.ABC-sec05__img {
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ABC-sec05__img--bird {
  background-image: url("/wp-content/themes/kawajun-LP/assets/ht/ALBaggageCart/images/sec05-img01.webp");
  width: 320px;
  height: 420px;
}

.ABC-sec05__img--baggage {
  background-image: url("/wp-content/themes/kawajun-LP/assets/ht/ALBaggageCart/images/sec05-img02.webp");
  width: 280px;
  height: 420px;
}

@media (min-width: 768px) {
  .ABC-sec05__wrapper {
    width: 100%;
    overflow: visible;
  }

  .ABC-sec05__pc-imeg {
    width: 100%;
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  .ABC-sec05__row {
    gap: 32px;
  }

  .ABC-sec05__item {
    width: calc(50% - 16px);
  }

  .ABC-sec05__inner {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .ABC-sec05 {
    background-image: url("/wp-content/themes/kawajun-LP/assets/ht/ALBaggageCart/images/sec05-bg-img_sp.webp");
  }
  .ABC-sec05 {
    padding: var(--ABCsp1-sp) 0;
  }

  .ABC-sec05__ttl-img {
    /* max-width: 240px; */
    margin-bottom: var(--ABCsp2-sp);
  }

  .ABC-sec05__row {
    flex-direction: column;
    gap: var(--ABCsp1-sp);
  }

  .ABC-sec05__item {
    width: 100%;
    gap: 20px;
  }

  .ABC-sec05__inner {
    flex-direction: column;
    gap: 20px;
  }

  .ABC-sec05__img--bird,
  .ABC-sec05__img--baggage {
    width: 100%;
    height: 260px;
  }

  .ABC-sec05__spec {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ABC-sec05__note {
    font-size: var(--font-7);
  }
}
/* section06 */
.ABC-sec06 {
  background-color: var(--ABCblack);
  color: #fff;
  padding: var(--ABCsp1-pc) 0 0;
}

.ABC-sec06__ttl-img {
  max-width: 480px;
  margin-bottom: var(--ABCsp2-pc);
}
.ABC-sec06__row01 {
  display: flex;
  justify-content: center;
}
.ABC-sec06__img01 {
  width: 56vw;
}
.ABC-sec06__row02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26vw;
  margin-top: var(--ABCsp2-pc);
}
.ABC-sec06__img02 {
  width: 70.19vw;
}
.ABC-sec06__img03 {
  width: 60.73vw;
}
.ABC-sec06__img04 {
  width: 56vw;
}

.ABC-sec06__img01,
.ABC-sec06__img02,
.ABC-sec06__img03,
.ABC-sec06__img04 {
  clip-path: inset(0 0);
  transition: clip-path 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: clip-path;
}

.ABC-sec06__img01 {
  clip-path: inset(0 1.875vw);
}

.ABC-sec06__img01 img {
  position: relative;
  top: 50%;
  transform: translateY(-50%) scale(0.91);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ABC-sec06__img01.is-clipped,
.ABC-sec06__img02.is-clipped,
.ABC-sec06__img03.is-clipped,
.ABC-sec06__img04.is-clipped {
  clip-path: inset(3.125vw 0);
}

.ABC-sec06__img01.is-clipped img {
  transform: translateY(-50%);
}

.ABC-sec06__row04 {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--ABCsp2-pc);
}
@media (max-width: 1448px) {
  .ABC-sec06__img02 {
    margin-left: 24px;
  }
}

@media (min-width: 1449px) {
  .ABC-sec06__img02 {
    margin-left: calc(((100vw - var(--ABCcontainer)) / -2) - 24px);
  }
}
@media (max-width: 767px) {
  .ABC-sec06 {
    padding: var(--ABCsp1-sp) 0;
  }
  .ABC-sec06__ttl-img {
    margin-bottom: var(--ABCsp1-sp);
  }
  .ABC-sec06__row02 {
    flex-direction: column;
    gap: var(--ABCsp1-sp);
  }
  .ABC-sec06__row02,
  .ABC-sec06__row04 {
    margin-top: var(--ABCsp1-sp);
  }
  .ABC-sec06__row01,
  .ABC-sec06__row04 {
    padding: 0 var(--px);
  }
  .ABC-sec06__img01 {
    width: 100%;
  }
  .ABC-sec06__img02 {
    width: 100%;
    margin: auto;
  }
  .ABC-sec06__img02 img {
    width: 80%;
  }
  .ABC-sec06__img03 {
    width: 100%;
  }
  .ABC-sec06__img03 img {
    width: 55%;
    margin-left: auto;
    margin-right: 0;
  }
  .ABC-sec06__img04 {
    width: 100%;
  }
}

/* section07 */
.ABC-sec07 {
  background-color: var(--ABCblack);
  color: #fff;
  padding: var(--ABCsp1-pc) 0 0;
}

.ABC-sec07__ttl {
  font-size: var(--font-11);
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 20px;
}

.ABC-sec07__txt {
  font-size: var(--font-8);
  line-height: 2.1;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .ABC-sec07 {
    padding: var(--ABCsp1-sp) 0 0;
  }

  .ABC-sec07__ttl {
    margin-bottom: 28px;
  }

  .ABC-sec07__txt {
    line-height: 1.6;
    font-size: var(--font-7);
  }
}

/* section08 */
.ABC-sec08 {
  background-color: var(--ABCblack);
  color: #fff;
  padding: var(--ABCsp1-pc) 0;
}

.ABC-sec08__ttl-img {
  max-width: 480px;
  margin-bottom: var(--ABCsp2-pc);
}

.ABC-sec08__row {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ABC-sec08__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
}

.ABC-sec08__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ABC-sec08__q {
  font-size: var(--font-7);
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 0;
  padding-left: 45px;
  position: relative;
}

.ABC-sec08__q::before {
  content: "Q.";
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  font-style: italic;
  position: absolute;
  left: 0;
  top: -7px;
  font-family: "adobe-caslon-pro", serif;
}

.ABC-sec08__a {
  font-size: var(--font-7);
  line-height: 2.1;
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin: 0;
  padding-left: 45px;
  position: relative;
}

.ABC-sec08__a::before {
  content: "A.";
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  font-style: italic;
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "adobe-caslon-pro", serif;
}

.ABC-sec08__a-link {
  color: inherit;
  text-decoration: underline;
}

.ABC-sec08__a-link:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .ABC-sec08 {
    padding: var(--ABCsp1-sp) 0;
  }

  .ABC-sec08__ttl-img {
    margin-bottom: var(--ABCsp1-sp);
  }

  .ABC-sec08__row {
    gap: 32px;
  }
  .ABC-sec08__item {
    padding-bottom: 0;
  }
  .ABC-sec08__q {
    margin-bottom: 8px;
  }

  .ABC-sec08__a {
    line-height: 1.95;
  }
  .ABC-sec08__q::before {
    font-size: 20px;
    top: -2px;
  }
  .ABC-sec08__a::before {
    font-size: 20px;
    top: 2px;
  }
}

/* section02 stacking */
.ABC-sec02__h-scroll {
  margin-top: 0;
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  margin-bottom: -1px;
  position: relative;
}

.ABC-sec02__ttl-fixed {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.ABC-sec02__ttl-img-placeholder {
  visibility: hidden;
}

.ABC-sec02__h-track {
  position: relative;
}

.ABC-sec02__h-track > .ABC-sec02:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .ABC-sec02__h-scroll {
    margin-top: 0;
    margin-left: 0;
    width: auto;
  }

  .ABC-sec02__ttl-fixed {
    top: 24px;
  }
}
