/* mot/css/mot.css */

#mot {
  /* LP専用スコープ */
}

/* =========================
   Reset / Base
========================= */
#mot {
  font-family: "Noto Sans JP", system-ui, -apple-system,
               "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  padding: 0;
  margin: 0;
}

#mot *, 
#mot *::before, 
#mot *::after {
  box-sizing: border-box;
}

#mot img {
  max-width: 100%;
  height: auto;
  display: block;
}

#mot h1,
#mot h2 {
  font-weight: 700;
}

#mot p {
  font-weight: 400;
}

/* =========================
   Layout Variables
========================= */
#mot {
  --content-max: 1120px;
  --side-padding: clamp(16px, 4vw, 32px);
  --side-paddingwide: clamp(28px, 4vw, 32px);
}

/* =========================
   Container / Section
========================= */
#mot .container {
  max-width: var(--content-max);
  padding-inline: var(--side-padding);
  margin-inline: auto;
}
#mot .container2 {
  max-width: var(--content-max);
  padding: var(--side-paddingwide);
  margin-inline: auto;
}

#mot .section {
  padding-block: clamp(40px, 6vw, 70px);
}

#mot .mot-main {
  padding-top: clamp(45px, 4vw, 32px);
  padding-bottom: clamp(70px, 4vw, 32px);
}


/* =========================
   Container / PC only
========================= */
@media (min-width: 767px) {
#mot .mot-main {
  padding-top: 0;
  padding-bottom: 0;
}
}



/* =========================
   Typography
========================= */
#mot h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.2;
}

#mot h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 0.5em;
}

#mot p {
  font-size: clamp(15px, 1.2vw, 16px);
}

/* =========================
   Layout Patterns
========================= */

/* 縦 → PCで横 */
#mot .flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  #mot .flex {
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }
}

/* カード */
#mot .cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  #mot .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =========================
   PC Header
========================= */

#mot .mot-header-pc {
  position: sticky;        /* 固定するなら sticky 推奨 */
  top: 0;
  z-index: 150;

  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

/* 中身 */
#mot .mot-header-pc-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 16px var(--side-padding);
  display: flex;
  align-items: center;
}

/* ロゴ */
#mot .mot-header-pc-logo a {
  font-size: 22px;
  font-weight: 800;
  color: #004aad;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ナビ */
#mot .mot-header-pc-nav {
  margin-left: auto;
}

#mot .mot-header-pc-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#mot .mot-header-pc-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

#mot .mot-header-pc-nav a:hover {
  text-decoration: underline;
}

/* CTA */
#mot .mot-header-pc-cta {
  display: flex;
  gap: 12px;
  margin-left: 32px;
}

#mot .mot-header-pc-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 120px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}

/* Primary */
#mot .mot-header-pc-cta .is-primary {
  background: #004aad;
  color: #fff;
}

#mot .mot-header-pc-cta .is-primary:hover {
  background: #003a96;
}

/* Secondary */
#mot .mot-header-pc-cta .is-secondary {
  background: #fff;
  color: #004aad;
  border: 1px solid #004aad;
}

#mot .mot-header-pc-cta .is-secondary:hover {
  background: #f0f6ff;
}

/* =========================
   PC only
========================= */
@media (max-width: 767px) {
  #mot .mot-header-pc {
    display: none;
  }
}


/* =========================
   SP only menu
========================= */


/* ===== SP Header ===== */
#mot .mot-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eee;
  z-index: 200;
}

#mot .mot-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

#mot .mot-header-title {
  font-weight: 800;
  font-size: 14px;
  color: #0b5ed7;
}

#mot .mot-header-toggle {
  background: none;
  font-size: 14px;
  padding: 3px 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* ===== Overlay ===== */
#mot .mot-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 300;
}

/* 表示状態 */
#mot .mot-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ===== Menu Panel ===== */
#mot .mot-menu {
  background: #fff;
  margin: 56px 16px 0;
  border-radius: 8px;
  padding: 12px 0;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}

/* ふわっと下に出る */
#mot .mot-menu-overlay.is-open .mot-menu {
  transform: translateY(0);
}

#mot .mot-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mot .mot-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  border-bottom:1px dashed #ccc;
}
#mot .mot-menu li:last-child a {
  border-bottom:none;
}

/* ===== PC非表示 ===== */
@media (min-width: 768px) {
  #mot .mot-menu-overlay {
    display: none;
  }
}


/* =========================
   Animation (Initial State)
========================= */
#mot .js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#mot .js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   CTA
========================= */

#mot .cta-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center; /* ← 追加 */
  gap: 8px;
  padding: 12px;
  background: #ffffff7e; /* 青帯 */
  z-index: 100;
}

#mot .cta-btn {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

#mot .cta-fixed-inner {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 500px; /* ← ここがポイント */
}


#mot .cta-btn.primary {
  border:2px solid #ff8c00;
  color: #ff8c00;
  background: #ffffff url(../images/fv_btn_arrow2.png) no-repeat left center;

}

#mot .cta-btn.secondary {
  background: #ff8c00 url(../images/fv_btn_arrow.png) no-repeat left center;
  color: #ffffff;
}


/* =========================
   SCROLL TOP
========================= */

#mot .to-top {
  position: fixed;
  right: 16px;
  bottom: 96px; /* CTAの上 */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b5ed7;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 101;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mot .to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}


/* =========================
   COMMONS
========================= */

.text-center {
    text-align: center;
}
.fw-bold {
  font-weight: 800 !important;
}

#mot .img-wrap {
  aspect-ratio: 3 / 2;
  width: 100%;
}

#mot .img-wrap img {
  width: 100%;
  height: auto;          /* ←100%をやめる */
  object-fit: contain;
}

#mot .bg-add {
  background: #004bad11;
}

#mot .shadow {
  box-shadow: 0px 2px 8px 2px #989898;
}

/* 初期：PC */
.sp-only {
  display: none;
}
.pc-only {
  display: inline;
}

@media (min-width: 1024px) {
  .pc-only { display: block; }
  .sp-only { display: none; }
}

/* スマホ */
@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
}

/* 背景ぼかし */
@keyframes bg-blur-in {
  from {
    filter: blur(20px);
  }
  to {
    filter: blur(0);
  }
}
/* =========================
   PC FV
========================= */

#mot .fv-pc {
  position: relative;
  background: #F7F7F7;
  padding-block: 60px;
  overflow: hidden;
}

#mot .fv-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--side-padding);
  position: relative;
  z-index: 2;
}

#mot .fv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#mot .fv-text h1 {
  font-size: clamp(42px, 4.5vw, 56px);
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 24px;
  color: #555;
}

#mot .fv-lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
  color: #666;
}

#mot .fv-visual {
  text-align: center;
}

#mot .fv-device {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

#mot .fv-device img {
  max-width: 450px;
  height: auto;
}

#mot .fv-copy {
    background: #fff;
    width: 300px;
    margin: 0 auto 20px;
    padding: 10px 0;
    font-weight: bold;
}

#mot .fv-bg-circle {
  position: absolute;
  right: 0;
  top: -2%;
  width: 480px;
  height: 480px;
  background: url(../images/fv_circle.png) no-repeat center/contain;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  filter: blur(50%);
  animation: bg-blur-in 1.5s ease-out forwards;
}

#mot .fv-bg-circle3 {
  position: absolute;
  right: 70px;
  bottom: -75px;
  width: 652px;
  height: 151px;
  background: url(../images/fv_circle3.png) no-repeat center/contain;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  filter: blur(50%);
  animation: bg-blur-in 1.5s ease-out forwards;
}

@media (min-width: 1024px) {
  .overview-intro-card {
    max-width: 980px;
    margin: auto;
  }
}


/* =========================
   FV CTA（PC用の上書き）
========================= */

#mot .fv-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

#mot .fv-cta .cta-btn {
  flex: none;                  /* ← 最重要：SP用ルールを解除 */
  width: 260px;                /* PCでは固定幅が安定 */
  padding: 16px 20px 16px 25px;/* 背景矢印ぶん左を空ける */
  line-height: 1.4;
  white-space: normal;         /* 2行OK */
  background-position: 0 center;
}


/* =========================
   SP FV
========================= */

/* ===== Hero ===== */

#mot .fv {
}

#mot .fv .hero {
  padding:15px;
      background:#F7F7F7 url(../images/fv_mot_sp_bg.png) no-repeat center bottom;
}

#mot .fv .hero h1 {
  margin-bottom:10px;
  font-size: clamp(40px, 7.5vw, 60px);
  line-height: 1.2;
  font-weight: 700;
}

#mot .fv .hero-text {
  margin-bottom: 32px;
  color: #555;
}

#mot .fv .hero-lead {
  margin-top: 16px;
  font-size: 15px;
  
}
#mot .fv .hero-visual {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* CTA wrapper */
#mot .fv .fv-cta {
  display: flex;
  gap: 8px;
  padding: 12px;
}

/* CTA button */
#mot .fv .fv-cta .cta-btn {
  flex: 1;               /* ← 同じ幅にする最重要ポイント */
  text-align: center;
  padding: 14px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.4;
}

/* 色 */
#mot .fv .fv-cta .cta-btn.secondary {
  background: #ff8c00 url(../images/fv_btn_arrow.png) no-repeat left center;
  color: #ffffff;
}

/* ===== Fade Animation ===== */
#mot .fv .js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

#mot .fv .js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延用 */
#mot .fv .delay-1 {
  transition-delay: 0.15s;
}

/* =========================
 overview intro
========================= */
#mot .overview-intro {
  background: #e6eef9;
  padding-block: 20px;
  position: relative;
}

#mot .fv-bg-circle2 {
  position: absolute;
  left: 70px;
  top: 60px;
  width: 400px;
  height: 440px;
  background: url(../images/fv_circle2.png) no-repeat center / contain;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(50%);
  animation: bg-blur-in 1.5s ease-out forwards;
}

/* カード */
#mot .overview-intro-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  position: relative;
}

/* 吹き出し */
#mot .overview-intro-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border-width: 14px 14px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

#mot .overview-intro-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

#mot .overview-intro-lead {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

#mot .overview-intro-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

#mot .overview-intro-desc {
  flex: 1;
  font-size: 12px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* 画像 */
#mot .overview-intro-image {
  flex-shrink: 0;
}

#mot .overview-intro-image img {
  width: 120px;
  height: auto;
  display: block;
}

/* PC */
@media (min-width: 768px) {
  #mot .overview-intro-card {
    padding: 32px;
    gap: 0;
  }

  #mot .overview-intro-content {
    gap: 24px;
    width: 70%;
  }

  #mot .overview-intro-image img {
    position: absolute;
    width: 200px;
    right: 20px;
    top: 10%;
  }

  #mot .overview-intro-title {
    font-size: 20px;
  }

  #mot .overview-intro-lead {
    font-size: 16px;
  }

  #mot .overview-intro-desc {
    font-size: 14px;
  }
}


/* =========================
   CONTENT OVERVIEW
========================= */
/* ===== Overview ===== */

#overview {
  padding-block: clamp(48px, 6vw, 96px);
  position: relative;
}

#overview .overview-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 16px;
  text-align: center;
}

/* 見出し */
#overview .overview-title {
  font-size: clamp(30px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* 説明文 */
#overview .overview-lead {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 760px;
  margin: 0 auto 32px;
}

/* 中央アイコン */
#overview .overview-icon {
  margin-bottom: 15px;
}

#overview .overview-icon img {
  height: auto;
}

/* =========================
 images
========================= */
#overview .overview-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
}

/* 各画像 */
#overview .overview-image-item {
  max-width: 320px;
}

#overview .overview-image-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャプション */
#overview .overview-image-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-align: left;
}

/* =========================
 PC
========================= */
/* PC */
@media (min-width: 768px) {
#overview .overview-image-item {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 100px;
  }
  /* 吹き出し */
#mot .overview::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-width: 14px 14px 0;
  border-style: solid;
  border-color: #e6eef9 transparent transparent;
}
  #overview .overview-icon-pc {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);

  }
}

/* =========================
 SP
========================= */
@media (max-width: 767px) {
  #overview .overview-images {
    gap: 16px;
  }

  #overview .overview-image-item {
    max-width: 160px;
  }

  #overview .overview-icon img {
    margin: auto;
  }

  /* 吹き出し */
  #mot .overview::before {
    content: "";
    border-width: none
  }
}



/* =========================
   CONTENT USE CASE
========================= */
/* ===== Use Cases ===== */

#mot .use-cases-head {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 32px);
}

#mot .use-cases-title {
  font-size: clamp(30px, 4.5vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

#mot .use-cases-lead {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* list */
#mot .use-cases-list {
  display: grid;
  gap: 24px;
  padding: 15px;
}

/* item */
#mot .use-case-item {
  background: #ffffff;
  border-top: 7px solid #004AAD;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

#mot .use-case-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

#mot .use-case-text {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #333;
}

#mot .use-case-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* PC */
@media (min-width: 768px) {
  #mot .use-cases-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

#mot .use-cases .delay-1 {
  transition-delay: 0.2s;
}

#mot .use-cases .delay-2 {
  transition-delay: 0.3s;
}
}

/* =========================
   CONTENT FEATURES
========================= */
/* ===== Features ===== */

#mot .features {
  background:url(../images/features_bg.png) no-repeat 50px 30px;
  padding-block:50px;
}

#mot .features-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 40px);
}

/* マーカー */
#mot .features-title .marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* マーカー背景 */
#mot .features-title .marker::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 2px;
  width: calc(100% + 12px);
  height: 70%;
  background: url(../images/line.png) no-repeat center / cover;
  transform-origin: left;
  transform: scaleX(0);

  z-index: -1;
}

/* 親に is-show が付いたら発火 */
#mot .js-fade.is-show .marker::before {
  animation: marker-slide 0.8s ease-out forwards;
  animation-delay: 1s;  /* ←ここがポイント */
}

@keyframes marker-slide {
  to {
    transform: scaleX(1);
  }
}

#mot .features-title {
  font-size: clamp(30px, 4.5vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  padding: 0 15px;
}

#mot .features-lead {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  text-align: left;
  padding: 0 15px;
}

/* デバイス画像 */
#mot .features-devices {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(24px, 5vw, 40px);
}

#mot .device-item img {
  max-width: 350px;
  height: auto;
  display: block;
}

/* 着用イメージ */
#mot .features-wear {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(24px, 5vw, 40px);
}

#mot .features-wear img {

  height: auto;
}

#mot .features-wear figcaption {
  font-size: 12px;
  margin-top: 4px;
  text-align: center;
}

/* 機能リスト */
#mot .features-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

#mot .features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mot .features-list li {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}

#mot .features-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* PC */
@media (min-width: 768px) {
  #mot .features-body {
    display: grid;
    grid-template-columns: 340px 1fr 350px;
    gap: 40px;
    align-items: center;
  }

  #mot .features-pc .features-list {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
  }

  #mot .features-device {
    position: relative;
    text-align: center;
  }

  /* 正面 */
  #mot .device-front {
    max-width: 260px;
    position: relative;
    z-index: 2;
  }

  /* 斜め */
  #mot .device-angle {
    position: absolute;
    right: -200px;
    top: -167px;
    max-width: 200px;
    z-index: 1;
  }

#mot .features-wear-pc {
  text-align: center;
  position: relative;
}

#mot .features-wear-pc img {
  max-width: 350px;
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}

#mot .features-wear-pc .caption {
  font-size: 12px;
  margin-top: 8px;
}

  #mot .features-wear img {
    max-width: 160px;
  }

  #mot .features-lead {
    margin-top: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    text-align: left;
    padding: 0 15px;
  }

  #mot .features {
    background:url(../images/features_bg.png) no-repeat;
    background-position: right;
    transition-delay: 0.15s;
    padding-block: clamp(140px, 8vw, 150px);
  }

  #mot .features-list {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    max-width:400px;
  }

  #mot .features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #mot .features-list li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
  }

}


/* =========================
   CONTENT CASES
========================= */
/* ===== Cases ===== */

#mot .cases-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 40px);
}

#mot .cases-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 700;
}

#mot .cases-lead {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

/* list */
#mot .cases-list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
  scroll-behavior: auto;
  
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}

/* Chrome / Safari */
#mot .cases-list::-webkit-scrollbar {
  display: none;
}


/* card */
#mot .case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  scroll-snap-align: start;
}

/* image */
#mot .case-image img {
  width: 100%;
  height: auto;
  display: block;
}

#mot .case-image {
  margin-bottom: 0;
}


/* body */
#mot .case-body {
  padding: 20px;
}

#mot .case-summary {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

#mot .case-meta {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

#mot .case-body hr {
  margin: 16px 0;
  border: none;
  border-top: 1px solid #eee;
}

#mot .case-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

#mot .case-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

#mot .cases-list.is-drag {
  scroll-snap-type: none;
}



/* PC拡張はここから */
@media (min-width: 768px) {
  #mot .cases-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;   /* ← ここをJSでスライダー拡張できる */
  }

  #mot .case-card {
    flex: 0 0 480px;
  }

  #mot .case-summary {
  font-size: 20px;
  }
}


/* =========================
   CONTENT FAQ
========================= */
/* ===== FAQ ===== */

#mot .faq-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 40px);
}

#mot .faq-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 700;
}

/* list */
#mot .faq-list {
  display: grid;
  gap: 16px;
}

#mot .faq-answer-body p {
  margin-block: 0;
}


/* question */
#mot .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #eef3fb;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

/* icon */
#mot .faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

#mot .faq-q {
  background: #0b5ed7;
  color: #fff;
}

#mot .faq-a {
  background: #ff8c00;
  color: #fff;
}

/* answer */
#mot .faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

#mot .faq-answer-inner {
  background: #fff7eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 12px;
  margin-top: 8px;
  margin-bottom:30px;
}

#mot .faq-answer p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333;
}

#mot .faq-answer p:last-child {
  margin-bottom: 0;
}

/* SP: 常に表示 */
@media (max-width: 767px) {
  #mot .faq-answer {
    height: auto !important;
  }
}


/* =========================
   CONTENT COMPARISON
========================= */
/* ===== Comparison ===== */

#mot .comparison {
  position: relative;
  background: url(../images/comparison_bg.jpg) no-repeat;
  background-size: 330vw auto;
  background-position: center bottom;
}

@media (min-width: 767px) {
  #mot .comparison {
  background: url(../images/comparison_bg.jpg) no-repeat;
  background-size: auto;
  background-position: center bottom;
  }
}

/* 見出し */
#mot .comparison-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 40px);
}

#mot .comparison-head::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  width: 80px;
  height: 7px;
  background:#ddd;
  border-radius: 999px; /* ← 角丸 */
  transform: translate(-50%, -50%);
}


#mot .comparison-title {
  font-size: clamp(30px, 4.5vw, 32px);
  font-weight: 700;
}

#mot .comparison-lead {
  margin-top: 8px;
  font-size: 14px;
}

/* 行構造 */
#mot .comparison-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

/* 上段2カラム */
#mot .comparison-row-top {
  grid-template-columns: 1fr 1fr;
}

/* 下段全幅 */
#mot .comparison-row-bottom {
  grid-template-columns: 1fr;
}

/* ボックス（透過・角なし） */
#mot .comparison-box {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
}

/* MOT強調 */
#mot .comparison-box.is-main {
  background: rgba(11, 94, 215, 0.75);
  color: #fff;
}

/* 全幅ボックス */
#mot .comparison-box.is-wide {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}
#mot .comparison-box.is-wide p {
  margin-block: 0;
  font-size: 13px;
  line-height: 1.6;
}

/* 中身 */
#mot .comparison-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

#mot .comparison-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mot .comparison-box li {
  font-size: 12px;
  margin-bottom: 6px;
  padding-left: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
}

#mot .comparison-box p {
  font-size: 12px;
}

#mot .comparison-box li::before {
    content: "・";
    position: absolute;
    left: 0;
}
#mot .comparison-cap {
  font-weight: bold;
  font-size: 80%;
}


/* PC */
@media (min-width: 768px) {
  #mot .comparison-row-top {
    gap: 24px;
  }
  #mot .comparison-box h3 {
    font-size: 28px;
  }
  #mot .comparison-box li {
    font-size: 16px;
  }
  #mot .comparison-box p {
  font-size: 14px;
  }
}


/* =========================
   CONTENT SECURITY
========================= */
/* ===== Security ===== */

#mot .security-head {
  text-align: center;
  margin-bottom: clamp(64px, 7vw, 80px);
}

#mot .security-title {
  font-size: clamp(30px, 4.5vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

#mot .security-lead {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* list */
#mot .security-list {
  display: grid;
  gap: 32px;
}

/* item */
#mot .security-item {
  text-align: center;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

#mot .security-image img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

#mot .security-item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  text-align: left;
}

#mot .security-text {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

/* PC */
@media (min-width: 768px) {
  #mot .security-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  #mot .container2 {
      padding: 15px;
      margin-inline: auto;
  }

  #mot .security-image img {
    max-width: 240px;
  }
  #mot .security-item-title {
    font-size: 18px;

  }


  /* 基本 */
  #mot .security-item {
    position: relative;
  }

  /* 1：そのまま（指定なし） */

  /* 2：上に50px */
  #mot .security-item:nth-child(2) {
    transform: translateY(-50px);
  }

  /* 3：下に30px */
  #mot .security-item:nth-child(3) {
    transform: translateY(30px);
  }

  /* 4：上に50px */
  #mot .security-item:nth-child(4) {
    transform: translateY(-50px);
  }

}


/* =========================
   CONTENT PRICING
========================= */
/* ===== Pricing ===== */

#mot .pricing {
  padding-bottom: 100px;
}

#mot .pricing-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 40px);
}

#mot .pricing-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 700;
}

#mot .pricing-lead {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* pricing box */
#mot .pricing-box {
  position: relative;
  background: #0b5ed7;
  color: #fff;
  padding: 24px 24px 60px 24px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* unit */
#mot .pricing-unit {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 3px solid rgba(255,255,255,.4);
  margin-bottom: 16px;
}

/* rows */
#mot .pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

#mot .pricing-label {
  font-size: 14px;
}

#mot .pricing-price {
  font-size: 20px;
  font-weight: 700;
}

#mot .pricing-price span {
  font-size: 13px;
  margin-left: 2px;
}

/* total */
#mot .pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 3px solid rgba(255,255,255,.6);
}

#mot .pricing-total-price {
  font-size: 26px;
  font-weight: 800;
}

/* note */
#mot .pricing-note {
    position: absolute;
    width: 70%;
    content: "";
    right: 0;
    bottom: -110px;
}


/* PC */
@media (min-width: 768px) {
  #mot .pricing-box {
  position: relative;
  background: #0b5ed7;
  color: #fff;
  padding: 60px 60px 100px 60px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
#mot .pricing-unit {
  font-size:18px;
}
#mot .pricing-label {
  font-size: 18px;
}
#mot .pricing-price {
  font-size: 26px;
}
#mot .pricing-total-price {
  font-size: 30px;
}
#mot .pricing-note {
    width: auto;
    right: -89px;
    bottom: -135px;
}
}

/* ダックビルくん跳ねる */
#mot .pricing-note img {
  transform: translateY(40px);
  opacity: 1;
}

/* is-show後に発火 */
#mot .pricing-note.is-show img {
  animation: bounce-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.8s; /* ←時間差ここ */
}


@media (prefers-reduced-motion: reduce) {
  #mot .pricing-note img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ぴょんアニメ */
@keyframes bounce-in {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  60% {
    transform: translateY(-10px);
    opacity: 1;
  }

  80% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================
   CONTENT CONTACT
========================= */
/* ===== Contact ===== */

.contact {
  padding: 80px 20px;
  background: #f7fbfd;
}

.contact__inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact__head {
  text-align: center;
  margin-bottom: 32px;
}

.contact__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.4;
  color: #222;
}

.contact__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
}

.contact__box {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact__placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #c9dce7;
  border-radius: 12px;
  color: #6b7c85;
  font-size: 1rem;
  background: #fafdff;
}

.submitbtn01{
    width: 100% !important;
    max-width: 372px !important;
    margin: 0 auto !important;
    display: block !important;
    border: 1px solid #003d70 !important;
    background-color: #fff;
    color: #003d70;
    font-size: 19px !important;
    text-align: center;
    padding: 12px;
    position: relative;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}


@media (max-width: 767px) {
  .contact {
    padding: 56px 16px;
  }

  .contact__box {
    padding: 20px;
  }
}


/* =========================
   CONTENT COMPANY
========================= */
/* ===== Company ===== */

.company {
  padding: 60px 20px 114px;
  background: #1f2a30; /* 少し重めで締める */
  color: #fff;
}

.company__inner {
  max-width: 900px;
  margin: 0 auto;
}

.company__info {
  text-align: center;
  margin-bottom: 40px;
}

.company__title {
  margin: 0 0 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #9fbac7;
}

.company__name {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
}

.company__address {
  margin: 0 0 12px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #d6e2e8;
}

.company__tel {
  margin: 0;
  font-size: 1rem;
}

.company__tel a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.company__tel a:hover {
  opacity: 0.8;
}

.company__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  text-align: center;
}

.company__copy {
  margin: 0;
  font-size: 0.8rem;
  color: #9fbac7;
}

@media (max-width: 767px) {
  .company {
    padding: 50px 16px 24px;
  }

  .company__name {
    font-size: 1.2rem;
  }
}