/* reset-css
---------------------------------------------------------------------------*/

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	cursor: pointer;
}

/*=========================================================================
# base
========================================================================== */

/* ========== Reset / Base ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: #111827; /* gray-900 */
  font-family: "Noto Sans JP", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.inner { width: min(1200px, 92%); margin: 0 auto; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 9999px; font-weight: 700;
  border: 2px solid transparent; transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease;
  white-space: nowrap; gap: .5rem;
}
.btn-lg { padding: 14px 26px; font-size: 1.05rem; }
.btn-primary {
  background: linear-gradient(135deg, #FFA857 0%, #E86C00 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(232, 108, 0, .3);
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-outline {
  background: #fff; color: #1463ff; border-color: #cfe0ff;
  box-shadow: 0 6px 16px rgba(20, 99, 255, .10);
}
.btn-outline:hover { background: #f6f9ff; transform: translateY(-1px); }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid #eef2f7;
}
.header-inner {
  display: grid; align-items: center; gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 14px 0;
}
.brand {
  font-weight: 600; letter-spacing: .2px; color: #3BA9B5; /* blue-600 */
  font-size: 22px;
	max-width:250px;
}
.global-nav ul {
  display: none; /* モバイルでは非表示 */
  list-style: none; gap: 20px; margin: 0; padding: 0;
}
.global-nav a { color: #4b5563; font-weight: 600; }
.global-nav a:hover { color: #111827; }
.header-cta { display: none; gap: 10px; }

/* ========== Hero ========== */
.hero { position: relative; padding: 40px 0 24px; overflow: clip; }

/* 斜めの青グラデーション背景（左から右に張り出す形） */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 1200px at -20% -10%, #B2E8EC 0%, #3BA9B5 55%, #3BA9B5 100%);
  clip-path: circle(70% at 0% 0%);
  transform: translateY(-220px);
}
/* Hero content */
.hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 22px;
}
.hero-text { color: #ffffff; max-width: 920px; }
.hero-text h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 6.3vw, 56px);
  line-height: 1.12; font-weight: 600; letter-spacing: .4px;
  text-wrap: balance;
}
.hero-text .lead {
  margin: 0 0 18px; font-size: clamp(14px, 2.8vw, 18px); opacity: .95;
}

.red{
	color:#FFE33B;
}


.red2{
	color:#FF0000 !important;
	padding-top:20px;
}

/* Badges */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: #0f172a;
  padding: 8px 12px; border-radius: 10px; font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.badge-ico { filter: saturate(120%); }

/* CTA row */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Right visual card */
.hero-visual {
	border-radius: 18px; padding: 14px;
  width: min(680px, 100%); justify-self: end;
}
.hero-visual img { border-radius: 12px; }

/* Partner logos row */
.logos { padding: 30px 0 10px; }
.logos-inner {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center; justify-items: center;
  filter: saturate(0.9);
}
.logos img {
 max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  vertical-align: middle;
}


@media (max-width: 992px) {
.logos-inner {
  display: grid; gap: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center; justify-items: center;
  filter: saturate(0.9);
}
.logos img {
 max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
}

/* Footer */
.site-footer { padding: 40px 0 60px; color: #6b7280; }
.site-footer .inner { text-align: center; }

/* ========== Responsive (>=992px) ========== */
@media (min-width: 992px) {
  .global-nav ul { display: flex; }
  .header-cta { display: inline-flex; }
  .header-inner { gap: 24px; }

  .hero { padding: 72px 0 46px; }
  .hero-inner {
    grid-template-columns: 0.60fr .95fr;
    gap: 48px;
  }
  .hero-text .lead { font-size: 18px;font-weight:bold; }
  .logos-inner {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
  }
}

.space{
	margin-top:-80px;
	margin-bottom:40px;
}

/* ========== Responsive (>=1280px) ========== */
@media (min-width: 1280px) {
  .hero { padding-top: 84px; }

  .hero-text h1 {
    font-size: clamp(28px, 4.5vw, 44px); /* ← PC用フォントサイズを控えめに */
    line-height: 1.15;
    text-wrap: initial; /* balanceを無効化して<br>のみ有効に */
    white-space: normal; /* 通常の改行処理 */
    word-break: keep-all; /* 英単語を途中で切らない */
  }
}



/* ========== Features Section ========== */
.features {
  background: #fffef5;
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}

.features-inner {
  position: relative;
  z-index: 2;
}

/* セクション見出し */
.section-head {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}
.section-head .section-label {
  font-weight: 700;
  color: #3BA9B5;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.section-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin: 12px 0;
  font-weight: 600;
}
.section-head .accent {
  color: #3BA9B5;
}
.section-head .section-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
  user-select: none;
}

/* ===== Feature Blocks ===== */
.feature-block {
  display: flex;
  align-items: center; /* 縦中央揃え */
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 160px;
  flex-wrap: nowrap;
}
.feature-block.reverse { flex-direction: row-reverse; }

.feature-image {
  position: relative;
  flex: 1 1 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100px;
  width: calc(100% + 100px);
  height: calc(100% + 60px);
  background: linear-gradient(135deg, #3BA9B5 0%, #a3f4fd 100%);
  border-radius: 32px;
  transform: rotate(-10deg);
  opacity: 0.7;
  z-index: -1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}
.feature-block.reverse .feature-image::before {
  transform: rotate(10deg);
}

.feature-text {
  flex: 1 1 50%;
  min-width: 320px;
  color: #111827;
}
.feature-label { color: #3BA9B5; font-weight: 700; font-size: 0.9rem; }
.feature-text h3 { font-size: clamp(22px,3vw,28px); margin: 10px 0 12px; font-weight: 800; }
.feature-text p { color: #374151; line-height: 1.8; margin-bottom: 20px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: #eef5ff;
  color: #3BA9B5;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.9rem;
}

/* ===== Background Decoration ===== */
.features::before,
.features::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #3BA9B5 0%, #a3f4fd 100%);
  width: 600px;
  height: 400px;
  border-radius: 60px;
  opacity: 0.5;
  transform: rotate(20deg);
  z-index: 0;
}
.features::before { top: -60px; left: -180px; }
.features::after { bottom: -80px; right: -160px; transform: rotate(-20deg); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .feature-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 100px;
  }
  .feature-image {
    width: 100%;
    max-width: 100%;
  }
  .feature-image::before {
    left: -30px;
    top: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
  }
  .section-bg-text { font-size: 80px; }
}


/* ========== Function Section ========== */
.function {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.function-inner {
  position: relative;
  z-index: 1;
}

/* 見出し（共通スタイルと合わせ） */
.function .section-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.function .section-label {
  color: #3BA9B5;
  font-weight: 700;
  letter-spacing: 1px;
}
.function h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin: 12px 0;
}
.function .accent {
  color: #3BA9B5;
}
.function .section-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
}

/* グリッド構造 */
.function-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-items: stretch;
  z-index: 2;
  position: relative;
}

/* カード */
.function-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.function-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.function-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #3BA9B5;
  margin-bottom: 8px;
}
.function-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
}

/* 背景のデコレーション */
.function::before,
.function::after {
  content: "";
  position: absolute;

  width: 700px;
  height: 500px;
  border-radius: 80px;
  opacity: 0.4;
  transform: rotate(20deg);
  z-index: 0;
}
.function::before {
  top: -80px;
  left: -200px;
}
.function::after {
  bottom: -100px;
  right: -200px;
  transform: rotate(-20deg);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .function-card {
    padding: 24px 20px;
  }
  .function .section-bg-text {
    font-size: 80px;
  }
}


/* ========== PRICE SECTION ========== */
.price {
  background: #FFFEF5;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.price-inner {
  position: relative;
  z-index: 1;
}
.price .section-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.price .section-label {
  color: #3BA9B5;
  font-weight: 700;
  letter-spacing: 1px;
}
.price h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin: 12px 0;
}
.price .accent {
  color: #3BA9B5;
}
.price .section-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  z-index: -1;
}

/* グリッド構成 */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  justify-items: center;
}

/* カード */
.price-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* 中央プラン強調 */
.price-card.highlight {
  border: 2px solid #3BA9B5;
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
}

/* テキスト */
.price-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #3BA9B5;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  vertical-align: middle;
}
.price-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.price-features li {
  color: #374151;
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.price-features li::before {
  content: "✔";
  color: #3BA9B5;
  position: absolute;
  left: 0;
  top: 0;
}

/* ボタン部分 */
.price-footer {
  margin-top: auto;
}
.price-note {
  font-size: 0.8rem;
  color: #3BA9B5;
  margin-bottom: 8px;
}
.btn-download {
  display: inline-block;
  background: linear-gradient(135deg, #FFA857 0%, #E86C00 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(232, 108, 0, .3);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 9999px;
  text-decoration: none;

  transition: all 0.2s ease;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(49, 107, 255, 0.4);
}

/* 背景デコ */
.price::before,
.price::after {
  content: "";
  position: absolute;
  background: linear-gradient(120deg, #e4eaff, #ffffff);
  width: 600px;
  height: 400px;
  border-radius: 60px;
  opacity: 0.5;
  transform: rotate(20deg);
  z-index: 0;
}
.price::before {
  top: -80px;
  left: -160px;
}
.price::after {
  bottom: -100px;
  right: -160px;
  transform: rotate(-20deg);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .price-card {
    padding: 40px 24px;
  }
  .price .section-bg-text {
    font-size: 80px;
  }
}


._col-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.mod-faq {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.mod-faq:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

._head {
  font-weight: 600;
  font-size: clamp(13px, 2.2vw, 17px);
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

._head::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: #0072bc; /* 青色トーンで統一感 */
  font-weight: 700;
  font-size: 18px;
}

._body p {
  font-size: clamp(12px, 2vw, 15px);
  line-height: 1.7;
  color: #555;
  margin: 0;
  position: relative;
  padding-left: 28px;
}

._body p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a050;
  font-weight: 700;
  font-size: 16px;
}

.metu-legal {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
}

.metu-legal h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 6px;
}

.metu-legal dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 24px;
}

.metu-legal dt {
  font-weight: 600;
  color: #222;
  border-left: 3px solid #7DC3C9;
  padding-left: 10px;
  word-break: keep-all;
}

.metu-legal dd {
  margin: 0;
  padding: 0;
}

.metu-legal a {
  color: #0077cc;
  text-decoration: none;
  word-break: break-all;
}

.metu-legal a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .metu-legal {
    padding: 25px 20px;
  }

  .metu-legal dl {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }

  .metu-legal dt {
    border-left: none;
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
    font-size: 1rem;
  }

  .metu-legal dd {
    padding-bottom: 12px;
    font-size: 0.95rem;
  }

  .metu-legal h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

