/* ===========================
   Variables & Reset
   =========================== */
:root {
  --color-primary: #274233;
  --color-primary-dark: #264233;
  --color-beige: #f1f0ec;
  --color-orange: #e88000;
  --color-white: #ffffff;
  --color-green-light: #d9e8ae;
  --color-faq-bg: rgba(241, 240, 236, 0.85);
  --font-main: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-number: "Unbounded", sans-serif;
  --max-width: 1200px;
  --section-pad-x: 40px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--color-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-beige);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   Shared Components
   =========================== */
.section-title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary-dark);
  letter-spacing: 0.04em;
}

/* ===========================
   Header
   =========================== */
.header {
  background: var(--color-primary);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-pad-x);
}

.header__logo img {
  height: 28px;
  width: auto;
}

.header__ctas {
  display: flex;
  gap: 12px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s, transform 0.2s;
  white-space: nowrap;
}

.header__cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.header__cta--blue {
  background: #008cff;
}

.header__cta--black {
  background: #000000;
}

/* ===========================
   Owner Hero / KV
   =========================== */
.own-hero {
  position: relative;
  background: var(--color-beige);
  overflow: hidden;
}

.own-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: flex-start;
  gap: 40px;
  min-height: 582px;
}

.own-hero__text {
  flex: 0 0 auto;
  padding-top: 100px;
  max-width: 480px;
}

.own-hero__title {
  font-size: 50px;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.own-hero__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-top: 24px;
  line-height: 1.6;
}

.own-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  padding: 18px 56px;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.04em;
  margin-top: 40px;
}

.own-cta-button:hover {
  background: #d67400;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 128, 0, 0.4);
}

.own-cta-button:active {
  transform: translateY(0);
}

.own-cta-button--large {
  font-size: 20px;
  padding: 22px 72px;
}

.own-hero__phone {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.own-hero__phone img {
  width: 100%;
  max-width: 700px;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.12));
}

/* ===========================
   OLCAの特徴 (POINT Cards)
   =========================== */
.own-points {
  background: var(--color-green-light);
  padding: 80px 0 96px;
}

.own-points__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.own-points__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.own-point-card {
  background: var(--color-white);
  border-radius: 25px;
  padding: 32px 20px 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  transition: box-shadow 0.3s;
}

.own-point-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.own-point-card__header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.own-point-card__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  flex-shrink: 0;
}

.own-point-card__label {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.own-point-card__num {
  font-family: var(--font-number);
  font-size: 25px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.2;
}

.own-point-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  padding-top: 8px;
}

.own-point-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin: 20px 0 16px;
}

.own-point-card__icon img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
}

.own-point-card__text {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.9;
  letter-spacing: -0.02em;
  align-self: start;
}

@supports (grid-template-rows: subgrid) {
  .own-points__cards {
    grid-template-rows: repeat(3, auto);
  }

  .own-point-card {
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}

/* ===========================
   オーナーの声
   =========================== */
.own-voice {
  background: var(--color-beige);
  padding: 80px 0 96px;
}

.own-voice__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.own-voice__card {
  background: var(--color-white);
  border-radius: 25px;
  padding: 48px;
  margin-top: 56px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.own-voice__photo-area {
  flex-shrink: 0;
  text-align: center;
}

.own-voice__photo {
  width: 210px;
  height: 117px;
  border-radius: 12px;
  overflow: hidden;
}

.own-voice__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.own-voice__profile {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  text-align: center;
}

.own-voice__headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
}

.own-voice__headline-line {
  display: block;
  width: 149px;
  height: 5px;
  background: #f39a00;
  margin-top: 8px;
  margin-left: auto;
}

.own-voice__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 2;
  letter-spacing: -0.02em;
}

/* ===========================
   貸出開始までのステップ / 貸し出しの流れ
   =========================== */
.own-start-steps,
.own-flow {
  background: var(--color-green-light);
  padding: 80px 0 96px;
}

.own-start-steps__inner,
.own-flow__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.own-start-steps__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 28px;
  margin-top: 56px;
}

.own-flow__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin-top: 56px;
}

.own-step-card {
  background: var(--color-white);
  border-radius: 25px;
  padding: 32px 20px 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  transition: box-shadow 0.3s;
}

.own-step-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.own-step-card__header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.own-step-card__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  flex-shrink: 0;
}

.own-step-card__label {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.own-step-card__num {
  font-family: var(--font-number);
  font-size: 25px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.2;
}

.own-step-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  padding-top: 8px;
}

.own-step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin: 20px 0 16px;
}

.own-step-card__icon img {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
}

.own-step-card__text {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.9;
  letter-spacing: -0.02em;
  align-self: start;
}

@supports (grid-template-rows: subgrid) {
  .own-start-steps__cards {
    grid-template-rows: repeat(3, auto);
  }

  .own-flow__cards {
    grid-template-rows: repeat(3, auto);
  }

  .own-start-steps__cards .own-step-card,
  .own-flow__cards .own-step-card {
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}

/* ===========================
   CTA Section (オーナー)
   =========================== */
.own-cta-section {
  background: var(--color-primary);
  padding: 72px 0;
}

.own-cta-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--section-pad-x);
}

.own-cta-section__title {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.own-cta-section__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 36px;
  line-height: 1.8;
  opacity: 0.92;
}

/* ===========================
   OLCAについて
   =========================== */
.own-about {
  background: var(--color-white);
  padding: 80px 0 96px;
}

.own-about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.own-about__text {
  flex: 1;
  min-width: 0;
}

.own-about__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.own-about__badges {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.own-app-badge img {
  height: 50px;
  width: auto;
}

.own-about__desc {
  margin-top: 48px;
}

.own-about__desc p {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 2;
  letter-spacing: -0.02em;
}

.own-about__phone {
  flex-shrink: 0;
  width: 500px;
}

.own-about__phone img {
  width: 100%;
  height: auto;
}

/* ===========================
   FAQ (オーナー)
   =========================== */
.own-faq {
  background: var(--color-white);
  padding: 80px 0 96px;
}

.own-faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.own-faq__list {
  max-width: 652px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.own-faq__item {
  background: var(--color-faq-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.own-faq__item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.own-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.own-faq__question::-webkit-details-marker {
  display: none;
}

.own-faq__q-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
}

.own-faq__arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  transform: rotate(180deg);
}

details[open] .own-faq__arrow {
  transform: rotate(0deg);
}

.own-faq__answer {
  padding: 0 24px 20px;
}

.own-faq__answer p {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 2;
  letter-spacing: -0.02em;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--color-primary);
  padding: 48px 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
  letter-spacing: -0.02em;
}

.footer__links a:hover {
  opacity: 0.7;
}

/* ===========================
   Animations
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.own-point-card:nth-child(2).fade-in { transition-delay: 0.08s; }
.own-point-card:nth-child(3).fade-in { transition-delay: 0.16s; }
.own-step-card:nth-child(2).fade-in { transition-delay: 0.08s; }
.own-step-card:nth-child(3).fade-in { transition-delay: 0.16s; }
.own-step-card:nth-child(4).fade-in { transition-delay: 0.24s; }

/* ===========================
   Tablet (768px - 1024px)
   =========================== */
@media (max-width: 1024px) {
  :root {
    --section-pad-x: 32px;
  }

  .header__ctas {
    gap: 8px;
  }

  .header__cta {
    font-size: 12px;
    padding: 8px 16px;
  }

  .own-hero__content {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding-bottom: 0;
  }

  .own-hero__text {
    text-align: center;
    padding-top: 48px;
    max-width: 100%;
  }

  .own-hero__title {
    font-size: 36px;
  }

  .own-hero__subtitle {
    font-size: 18px;
  }

  .own-hero__phone {
    justify-content: center;
    max-width: 500px;
  }

  .own-points__cards {
    gap: 20px;
  }

  .own-voice__card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 28px;
  }

  .own-voice__headline {
    font-size: 18px;
  }

  .own-voice__headline-line {
    margin-left: auto;
    margin-right: auto;
  }

  .own-voice__text {
    font-size: 14px;
    text-align: left;
  }

  .own-start-steps__cards {
    gap: 20px;
  }

  .own-flow__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .own-about__inner {
    flex-direction: column;
    align-items: center;
  }

  .own-about__title {
    font-size: 24px;
    text-align: center;
  }

  .own-about__badges {
    justify-content: center;
  }

  .own-about__desc {
    text-align: center;
  }

  .own-about__desc p {
    font-size: 16px;
  }

  .own-about__phone {
    width: 100%;
    max-width: 500px;
  }
}

/* ===========================
   Mobile (< 768px)
   =========================== */
@media (max-width: 768px) {
  :root {
    --section-pad-x: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .header {
    height: 56px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .header__logo img {
    height: 22px;
  }

  .header__ctas {
    gap: 6px;
  }

  .header__cta {
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 4px;
  }

  .header__cta--black {
    display: none;
  }

  /* --- KV --- */
  .own-hero__content {
    padding: 32px 20px 0;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .own-hero__text {
    text-align: center;
    padding-top: 0;
  }

  .own-hero__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .own-hero__subtitle {
    font-size: 15px;
    margin-top: 16px;
  }

  .own-cta-button {
    font-size: 15px;
    padding: 14px 32px;
    margin-top: 24px;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
  }

  .own-cta-button--large {
    font-size: 16px;
    padding: 16px 40px;
  }

  .own-hero__phone {
    max-width: 320px;
    justify-content: center;
  }

  .own-hero__phone img {
    max-width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
  }

  /* --- OLCAの特徴 --- */
  .own-points {
    padding: 48px 0 56px;
  }

  .own-points__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .own-point-card {
    padding: 24px 16px 20px;
    border-radius: 20px;
  }

  .own-point-card__icon {
    height: 80px;
    margin: 16px 0 12px;
  }

  /* --- オーナーの声 --- */
  .own-voice {
    padding: 48px 0 56px;
  }

  .own-voice__card {
    flex-direction: column;
    padding: 28px 20px;
    margin-top: 32px;
    gap: 20px;
    text-align: center;
  }

  .own-voice__photo {
    width: 180px;
    height: 100px;
    margin: 0 auto;
  }

  .own-voice__profile {
    font-size: 13px;
  }

  .own-voice__headline {
    font-size: 16px;
  }

  .own-voice__headline-line {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  .own-voice__text {
    font-size: 13px;
    text-align: left;
    line-height: 1.9;
  }

  /* --- 貸出ステップ / 貸し出しの流れ --- */
  .own-start-steps,
  .own-flow {
    padding: 48px 0 56px;
  }

  .own-start-steps__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .own-flow__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .own-step-card {
    padding: 20px 14px 18px;
    border-radius: 18px;
  }

  .own-step-card__header {
    gap: 6px;
  }

  .own-step-card__label {
    font-size: 11px;
  }

  .own-step-card__num {
    font-size: 20px;
  }

  .own-step-card__title {
    font-size: 12px;
    padding-top: 4px;
  }

  .own-step-card__icon {
    height: 64px;
    margin: 12px 0 10px;
  }

  .own-step-card__icon img {
    max-width: 100px;
  }

  .own-step-card__text {
    font-size: 10px;
    line-height: 1.7;
  }

  /* --- CTA --- */
  .own-cta-section {
    padding: 48px 0;
  }

  .own-cta-section__title {
    font-size: 18px;
  }

  .own-cta-section__text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* --- OLCAについて --- */
  .own-about {
    padding: 48px 0 56px;
  }

  .own-about__inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .own-about__title {
    font-size: 22px;
    text-align: center;
  }

  .own-about__badges {
    justify-content: center;
    margin-top: 20px;
  }

  .own-app-badge img {
    height: 40px;
  }

  .own-about__desc {
    margin-top: 28px;
  }

  .own-about__desc p {
    font-size: 14px;
    line-height: 1.9;
  }

  .own-about__phone {
    width: 100%;
    max-width: 360px;
  }

  /* --- よくある質問 --- */
  .own-faq {
    padding: 48px 0 56px;
  }

  .own-faq__list {
    margin-top: 28px;
    max-width: 100%;
    gap: 8px;
  }

  .own-faq__question {
    padding: 14px 16px;
    gap: 12px;
  }

  .own-faq__q-text {
    font-size: 13px;
  }

  .own-faq__answer {
    padding: 0 16px 14px;
  }

  .own-faq__answer p {
    font-size: 12px;
    line-height: 1.8;
  }

  /* --- フッター --- */
  .footer {
    padding: 32px 0;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer__logo img {
    height: 24px;
  }

  .footer__links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__links a {
    font-size: 12px;
  }
}

/* ===========================
   Small Mobile (< 400px)
   =========================== */
@media (max-width: 400px) {
  .header__ctas {
    flex-direction: column;
    gap: 4px;
  }

  .header__cta {
    font-size: 9px;
    padding: 4px 8px;
  }

  .own-hero__title {
    font-size: 24px;
  }
}
