@charset "UTF-8";

/* =========================================
   Winas トータルコーディネート LP
   ※ 画像はFigmaの一時URL(約7日間有効)を参照しています。
     本番反映前に /images へダウンロードし、
     img/背景 のパスを images/xxx.png に差し替えてください。
   ========================================= */

:root {
  --color-primary: #004fc1;
  --color-navy: #0d2760;
  --color-teal: #009e9f;
  --color-yellow: #fe0;
  --color-bg-gray: #f7f7f7;
  --color-bg-blue: #eef4fe;
  --color-text: #000000;
  --color-white: #ffffff;
  --font-jp: "Noto Sans JP", "Yu Gothic", "游ゴシック", sans-serif;
  --font-en: "Futura PT", "Poppins", var(--font-jp);
  --max-width: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

/* PC画面幅に合わせて1500px基準のデザインを拡大縮小する */
.lp-scale {
  width: 1500px;
  transform-origin: top left;
}

img {
  max-width: none;
}

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

.section {
  position: relative;
  overflow: clip;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 0 50px;
  position: relative;
}

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-bottom: 50px;
}

.section__sub {
  background: var(--color-yellow);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 4.5px;
  padding: 5px 10px;
}

.section__title {
  margin: 0;
  font-weight: 700;
  font-size: 45px;
}

.section__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

.btn__arrow {
  width: 5px;
  flex-shrink: 0;
}

/* 導入事例を見るボタンの下向き矢印（11×7 の横長SVG）。
   幅5pxのままだと短辺基準で小さく見えるため、→アイコン（5×7.86）を
   回転しただけの同寸（7.86×5）になるよう幅を合わせる */
.btn--outline .btn__arrow {
  width: 7.86px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 8px;
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 8px;
}

/* ---------- header ---------- */
/* スクロール追従。#lpScale の外に置き、scale.js が本体と同じ倍率を適用する
   （transform 済み要素の内側では position:fixed が機能しないため） */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 1500px;
  transform-origin: top left;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
  background: var(--color-white);
}

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

.header .btn {
  padding: 15px 20px 15px 40px;
  border-radius: 25px;
}

/* ---------- mv (hero) ---------- */
.mv {
  position: relative;
  height: 650px;
  background: var(--color-navy);
  overflow: clip;
}

.mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mv__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0;
  padding: 80px 0 0 100px;
}

.mv__title {
  font-weight: 900;
  color: var(--color-white);
  font-size: 50px;
  line-height: 1.5;
  margin: 0 0 20px;
  white-space: nowrap;
}

.mv__title em {
  font-style: normal;
  display: inline-block;
  background: var(--color-white);
  color: var(--color-teal);
  font-size: 65px;
  line-height: 1.35;
  padding: 0 4px;
}

.mv__catch {
  color: var(--color-white);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.6;
  margin: 30px 0 40px;
}

.mv__actions {
  display: flex;
  gap: 20px;
}

/* ---------- clients ---------- */
.clients {
  background: var(--color-white);
  text-align: center;
  padding: 35px 0 20px;
}

.clients__ribbon {
  position: relative;
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
  font-size: 25px;
  padding: 12px 30px;
  margin-bottom: 34px;
}

.clients__ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid var(--color-teal);
}

.clients__logos-wrap {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}

.clients__logos {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clients-marquee 28s linear infinite;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.clients__logos img {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  object-fit: contain;
}

/* ---------- problem ---------- */
.problem {
  position: relative;
  background: var(--color-bg-gray);
}

.problem::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -36px;
  width: 990px;
  height: 743px;
  background: url("../images/deco-blur.png") no-repeat center / contain;
  transform: rotate(180deg);
  opacity: 0.5;
  z-index: 0;
}

.problem .section__inner {
  position: relative;
  z-index: 1;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 310px);
  gap: 35px;
  justify-content: center;
}

.pain-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.pain-card__label {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-weight: 800;
}

.pain-card__label span:first-child {
  font-size: 20px;
}

.pain-card__label span:last-child {
  font-size: 30px;
}

.pain-card__title {
  font-weight: 700;
  font-size: 20px;
}

.pain-card__img {
  width: 270px;
  height: 270px;
  border-radius: 10px;
  object-fit: contain;
}

/* ---------- why winas ---------- */
.why-winas {
  position: relative;
  background: var(--color-bg-gray);
}

.why-winas::before {
  content: "";
  position: absolute;
  left: 448px;
  bottom: -70px;
  width: 1162px;
  height: 871px;
  background: url("../images/deco-blur.png") no-repeat center / contain;
  opacity: 0.5;
  z-index: 0;
}

.why-winas .section__inner {
  position: relative;
  z-index: 1;
}

.point-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.point-card__label {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-weight: 800;
}

.point-card__label span:first-child {
  font-size: 20px;
}

.point-card__label span:last-child {
  font-size: 30px;
}

.point-card__img {
  width: 280px;
  height: 200px;
  object-fit: contain;
}

.point-card__title {
  font-weight: 700;
  font-size: 20px;
}

.point-card__text {
  font-size: 16px;
  text-align: left;
}

/* ---------- total coordinate + case studies shared background ---------- */
.tc-case-wrap {
  position: relative;
  overflow: clip;
}

.tc-case-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/tc-case-bg.jpg") no-repeat top center / cover;
  opacity: 0.6;
  z-index: 0;
}

.tc-case-wrap .section {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* ---------- total coordinate ---------- */
.total-coordinate {
  background: var(--color-bg-blue);
}

.tc-columns {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 20px;
}

.tc-block {
  position: relative;
  display: flex;
  flex-direction: column;
}

.tc-block__head {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  padding: 5px 10px;
  width: 250px;
  text-align: center;
}

.tc-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 42px;
}

.tc-step-arrow {
  display: block;
  width: 20px;
  height: 14px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: 10px;
  padding: 5px;
  width: 250px;
  display: flex;
  gap: 10px;
}

.step-card__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.step-card__num {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.step-card__num img {
  width: 40px;
  height: 40px;
}

.step-card__num span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
}

.step-card__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.step-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-card__title {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}

.step-card__desc {
  font-size: 12px;
  margin: 0;
}

.tc-center {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 450px;
  text-align: center;
}

.tc-center__catch1 {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 35px;
  margin: 0;
}

.tc-center__catch2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 60px;
  margin: 10px 0;
}

.tc-center__catch3 {
  font-weight: 500;
  font-size: 25px;
}

.tc-center img {
  width: 450px;
}

.tc-lineup {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 120px);
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-top: 42px;
}

.lineup-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 10px;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lineup-card img {
  width: 100%;
  height: 85px;
  object-fit: contain;
}

.lineup-card__label {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 1.35;
}

.tc-note {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  max-width: 995px;
  margin: 20px auto 0;
}

.tc-note img {
  width: 30px;
  height: 30px;
}

.tc-note p {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

/* ---------- case studies ---------- */
.case-studies {
  background: var(--color-white);
}

.case-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 50px;
}

.case-card {
  display: flex;
  flex-direction: column;
  width: 420px;
  border-radius: 10px;
  overflow: clip;
}

.case-card__head {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 9px 20px;
}

.case-card__head p:first-child {
  font-size: 16px;
  color: #eef4fe;
  margin: 0 0 5px;
}

.case-card__head p:last-child {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.case-card__body {
  flex: 1;
  background: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* 導入事例カードの制作物画像。アスペクト比がまちまちなので、
   全体が切れずに収まるよう contain＋固定高ボックスで統一する */
.case-card__img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--color-bg-gray);
  border-radius: 8px;
  display: block;
}

.case-card__stat {
  background: var(--color-bg-blue);
  border-radius: 10px;
  width: 100%;
  padding: 15px 10px;
  text-align: center;
}

.case-card__stat-num {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 30px;
  margin: 0;
}

.case-card__stat-label {
  font-size: 16px;
  margin: 0;
}

.case-card__desc {
  font-size: 16px;
  margin: 0;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  padding: 5px 10px;
}

.case-card-wide {
  width: 890px;
  margin: 0 auto 50px;
  border-radius: 10px;
  overflow: clip;
}

.case-card-wide__head {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px 9px;
}

.case-card-wide__head p:first-child {
  font-size: 16px;
  color: #eef4fe;
  margin: 0 0 5px;
}

.case-card-wide__head p:last-child {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.case-card-wide__body {
  background: var(--color-white);
  padding: 20px;
  display: flex;
  gap: 30px;
}

.case-card-wide__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.case-card-wide__info .tags {
  justify-content: center;
}

/* 横長事例カードの説明文だけ左寄せ（統計値・タグは中央のまま） */
.case-card-wide__info .case-card__desc {
  align-self: stretch;
  text-align: left;
}

.case-card-wide__img {
  width: 300px;
  height: 380px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--color-bg-gray);
  flex-shrink: 0;
  align-self: flex-start;
}

.case-card-wide__stat {
  text-align: center;
}

.case-card-wide__stat-num {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 30px;
  margin: 0;
}

.case-card-wide__stat-label {
  font-size: 16px;
}

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  background: var(--color-white);
}

.faq__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1536px;
  height: 1024px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.faq .section__inner {
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 450px);
  gap: 30px;
  margin: 0 auto;
  justify-content: center;
}

.faq-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 2px 14px rgba(3, 106, 183, 0.18);
  border: 1px solid rgba(3, 106, 183, 0.12);
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.faq-card__q {
  display: flex;
  gap: 10px;
  align-items: center;
}

.faq-card__q-mark {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 40px;
  flex-shrink: 0;
}

.faq-card__q-text {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.faq-card__a {
  font-size: 16px;
  margin: 0;
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  background: var(--color-primary);
  overflow: clip;
  padding: 80px 0;
  color: var(--color-white);
}

.contact__illustration {
  position: absolute;
  top: -121px;
  left: 750px;
  width: 680px;
  height: 680px;
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  text-align: left;
}

.contact__title {
  font-weight: 900;
  font-size: 32px;
  margin: 0;
}

.contact__lead {
  font-size: 22px;
  margin: 0;
}

/* ---------- footer ---------- */
.footer {
  background: var(--color-white);
  padding: 50px 0 20px;
  text-align: center;
}

.footer__row {
  display: flex;
  gap: 60px;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto 20px;
  text-align: left;
}

.footer__logo img {
  width: 130px;
}

.footer__office p:first-child {
  font-weight: 700;
  margin: 0 0 4px;
}

.footer__office p {
  font-size: 14px;
  margin: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer__links a {
  color: #036ab7;
  font-weight: 500;
  font-size: 16px;
}

.footer__copyright {
  font-size: 14px;
  margin: 0;
}

/* ---------- page top ---------- */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top img {
  width: 100%;
  height: 100%;
}

/* ---------- reCAPTCHAバッジ非表示（他ページ = assets/css/style.css と同じ挙動に揃える）
   Contact Form 7 の reCAPTCHA v3 が全ページで表示するバッジをLPでも非表示にする ---------- */
.grecaptcha-badge {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
