/*
Theme Name: AIワプレス
Theme URI: https://aiwapress.jp/
Author: 株式会社peko
Description: AIワプレス公式サイト用の軽量独自WordPressテーマ。
Version: 1.2.8
Text Domain: aiwapress
*/


/* =========================================================
   PAGE HERO TECHNOLOGY MOTION
========================================================= */

.aw-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.aw-page-hero__inner {
  position: relative;
  z-index: 5;
}


/* =========================================================
   接続ライン
   左右から中央へ伸び、中央付近でフェードアウト
========================================================= */

.aw-page-hero__line {
  position: absolute;
  z-index: 1;
  display: block;
  width: 46vw;
  max-width: 620px;
  height: 1px;
  overflow: hidden;
}

/* 左 → 中央 */
.aw-page-hero__line--1 {
  top: 35%;
  left: -2vw;
  transform: rotate(10deg);

  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.08) 0%,
    rgba(37, 99, 235, 0.30) 18%,
    rgba(37, 99, 235, 0.30) 58%,
    rgba(37, 99, 235, 0.16) 78%,
    transparent 100%
  );
}

/* 右 → 中央 */
.aw-page-hero__line--2 {
  right: -2vw;
  bottom: 34%;
  transform: rotate(-10deg);

  background: linear-gradient(
    270deg,
    rgba(37, 99, 235, 0.08) 0%,
    rgba(37, 99, 235, 0.30) 18%,
    rgba(37, 99, 235, 0.30) 58%,
    rgba(37, 99, 235, 0.16) 78%,
    transparent 100%
  );
}


/* ライン上を流れるデータ光 */

.aw-page-hero__line::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 110px;
  height: 3px;
  border-radius: 999px;
  opacity: 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.75),
    rgba(96, 165, 250, 0.90),
    transparent
  );

  filter: blur(0.2px);
}

/* 左から中央へ */
.aw-page-hero__line--1::after {
  left: -110px;
  animation: aw-page-data-left 5.5s ease-in-out infinite;
}

/* 右から中央へ */
.aw-page-hero__line--2::after {
  right: -110px;
  animation: aw-page-data-right 6.2s ease-in-out 1.8s infinite;
}

@keyframes aw-page-data-left {
  0% {
    left: -110px;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  70% {
    opacity: 0.8;
  }

  100% {
    left: 88%;
    opacity: 0;
  }
}

@keyframes aw-page-data-right {
  0% {
    right: -110px;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  70% {
    opacity: 0.8;
  }

  100% {
    right: 88%;
    opacity: 0;
  }
}


/* =========================================================
   ノード
========================================================= */

.aw-page-hero__dot {
  position: absolute;
  z-index: 2;
  display: block;
  width: 7px;
  height: 7px;

  border: 1px solid rgba(37, 99, 235, 0.38);
  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.035);

  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.aw-page-hero__dot.is-active {
  border-color: #2563eb;

  box-shadow:
    0 0 0 7px rgba(37, 99, 235, 0.07),
    0 0 20px rgba(37, 99, 235, 0.22);
}

.aw-page-hero__dot--1 {
  top: 26%;
  left: 11%;
}

.aw-page-hero__dot--2 {
  top: 67%;
  left: 22%;
}

.aw-page-hero__dot--3 {
  top: 28%;
  right: 12%;
}


/* =========================================================
   AI処理ラベル
========================================================= */

.aw-page-hero__signal {
  position: absolute;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 11px;

  border: 1px solid rgba(178, 192, 207, 0.70);
  border-radius: 6px;

  background: rgba(255, 255, 255, 0.88);

  color: #68798a;

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;

  white-space: nowrap;

  opacity: 0.82;

  box-shadow:
    0 4px 14px rgba(15, 41, 64, 0.035);

  animation: aw-page-signal-float 4.8s ease-in-out infinite;

  transition:
    opacity 0.45s ease,
    color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.aw-page-hero__signal::before {
  content: "";

  display: block;
  flex: 0 0 auto;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #aebbc8;

  transition:
    background 0.45s ease,
    box-shadow 0.45s ease;
}


/* JSで順番にアクティブ */

.aw-page-hero__signal.is-active {
  opacity: 1;
  color: #2563eb;
  border-color: #b9d0ef;

  box-shadow:
    0 6px 20px rgba(37, 99, 235, 0.08);
}

.aw-page-hero__signal.is-active::before {
  background: #2563eb;

  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.08);
}


/* =========================================================
   ふわふわ浮遊
========================================================= */

@keyframes aw-page-signal-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}


/* 左 */

.aw-page-hero__signal--1 {
  top: 18%;
  left: 4%;
  animation-delay: 0s;
}

.aw-page-hero__signal--2 {
  top: 48%;
  left: 9%;
  animation-delay: -1.6s;
}

.aw-page-hero__signal--3 {
  bottom: 16%;
  left: 3%;
  animation-delay: -3.1s;
}


/* 右 */

.aw-page-hero__signal--4 {
  top: 18%;
  right: 5%;
  animation-delay: -0.8s;
}

.aw-page-hero__signal--5 {
  top: 49%;
  right: 10%;
  animation-delay: -2.4s;
}

.aw-page-hero__signal--6 {
  right: 3%;
  bottom: 15%;
  animation-delay: -3.8s;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

  .aw-page-hero__line {
    width: 43vw;
  }

  .aw-page-hero__signal {
    font-size: 9px;
  }

  .aw-page-hero__signal--2,
  .aw-page-hero__signal--5 {
    display: none;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 700px) {

  .aw-page-hero__signal,
  .aw-page-hero__line {
    display: none;
  }

  .aw-page-hero__dot {
    opacity: 0.45;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .aw-page-hero__line::after,
  .aw-page-hero__signal {
    animation: none;
  }

  .aw-page-hero__signal,
  .aw-page-hero__dot {
    transition: none;
  }
}



/*********************************
TOPヒーロー
*********************************/
.aw-api-notice {
  width: 100%;
  padding: 18px 24px;
  background: #0f2940;
}

.aw-api-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.aw-api-notice__logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.aw-api-notice p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.aw-api-notice p strong {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .aw-api-notice {
    padding: 15px 18px;
  }

  .aw-api-notice__inner {
    gap: 9px;
  }

  .aw-api-notice__logo {
    width: 22px;
    height: 22px;
  }

  .aw-api-notice p {
    font-size: 13px;
  }
}


.h1-tyousei{
	font-size:40px;
	margin-left:3px;
	margin-right:3px;
}

.aw-hero h1 {
  margin: 0;
  color: #12304a;
  font-size: 52px;
  line-height: 1.32;
	letter-spacing: -0.035em;
}



.aw-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.aw-hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid #d9dee5;
  border-radius: 999px;
  background: #f7f8fa;
  color: #5f6875;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .aw-hero-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .aw-hero-tag {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 12px;
  }
}

.aw-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: #1f2937;
  isolation: isolate;
}

.aw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.aw-hero__glow {
  position: absolute;
  z-index: -2;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.17;
  animation: awHeroFloat 10s ease-in-out infinite alternate;
}

.aw-hero__glow--one {
  top: -190px;
  right: 9%;
  background: #2563eb;
}

.aw-hero__glow--two {
  bottom: -240px;
  left: 2%;
  background: #38bdf8;
  animation-delay: -4s;
}

.aw-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(560px, 0.95fr);
  align-items: center;
  gap: 60px;
  width: min(calc(100% - 48px), 1170px);
  min-height: 680px;
  margin: 0 auto;
  padding: 36px 0 36px;
}
.aw-hero__eyebrow {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
}


.aw-hero__lead {
  max-width: 630px;
  margin: 26px 0 0;
  color: #526274;
  font-size: 17px;
  line-height: 1.9;
}

.aw-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.aw-hero__actions .aw-button {
  flex: 1;
  max-width: 100%;
}

.aw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 62px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.aw-button:hover {
  transform: none;
  text-decoration: none;
}

.aw-button--primary {
  background: #2563eb;
  color: #fff;
  box-shadow: none;
}

.aw-button--primary:hover {
  background: #1d4ed8;
}

.aw-button--secondary {
  border-color: #d9e3f2;
  background: rgba(255, 255, 255, 0.76);
  color: #12304a;
}

.aw-hero__note {
  margin: 12px 0 0;
  color: #8290a3;
  font-size: 12px;
}

.aw-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce7f5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 28px 70px rgba(18, 48, 74, 0.14);
  backdrop-filter: blur(12px);
}

.aw-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.aw-demo__topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid #e7edf5;
  background: #f7f9fc;
}

.aw-demo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bdc9d8;
}

.aw-demo__app {
  margin-left: 7px;
  color: #738197;
  font-size: 11px;
  font-weight: 700;
}

.aw-demo__body {
  padding: 24px;
}

.aw-demo__input-block {
  margin-bottom: 21px;
}

.aw-demo__label {
  display: block;
  margin-bottom: 7px;
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.aw-demo__input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #fff;
  color: #12304a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.aw-demo__caret {
  display: inline-block;
  width: 1px;
  height: 1.1em;
  margin-left: 2px;
  background: #2563eb;
  vertical-align: -2px;
  animation: awCaret 0.75s steps(1) infinite;
}

.aw-demo__flow {
  display: grid;
  gap: 8px;
}

.aw-demo__step {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  background: #fbfcfe;
  color: #59697d;
  font-size: 12px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.aw-demo__step strong {
  color: #9aa6b5;
  font-size: 10px;
}

.aw-demo__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eef3f8;
  color: #7b8999;
  font-size: 10px;
  font-weight: 800;
}

.aw-demo__step.is-active {
  border-color: #bcd2ff;
  background: #f3f7ff;
  transform: translateX(3px);
}

.aw-demo__step.is-active .aw-demo__step-icon {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.aw-demo__step.is-active strong {
  color: #2563eb;
}

.aw-demo__step.is-done {
  border-color: #d9e7e1;
  background: #f8fcfa;
}

.aw-demo__step.is-done .aw-demo__step-icon {
  background: #1f8f64;
  color: #fff;
}

.aw-demo__step.is-done strong {
  color: #1f8f64;
}

.aw-demo__progress {
  overflow: hidden;
  height: 4px;
  margin: 18px 0;
  border-radius: 10px;
  background: #eaf0f7;
}

.aw-demo__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: width 0.45s ease;
}

.aw-demo__result {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  opacity: 0.4;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.aw-demo__result.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.aw-demo__result div {
  padding: 11px 8px;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.aw-demo__result strong,
.aw-demo__result span {
  display: block;
}

.aw-demo__result strong {
  color: #12304a;
  font-size: 12px;
}

.aw-demo__result span {
  margin-top: 2px;
  color: #8491a2;
  font-size: 9px;
}

@keyframes awCaret {
  50% { opacity: 0; }
}

@keyframes awHeroFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(34px, 24px, 0) scale(1.08); }
}

@media (max-width: 1000px) {
  .aw-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
    padding: 70px 0 82px;
  }

  .aw-hero__copy {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .aw-hero__inner {
    width: calc(100% - 36px);
    padding: 50px 0 60px;
  }

  .aw-hero h1 {
    font-size: 36px;
  }

  .aw-hero__lead {
    font-size: 15px;
  }

  .aw-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aw-demo__body {
    padding: 17px;
  }

  .aw-demo__step {
    grid-template-columns: 28px 1fr;
  }

  .aw-demo__step strong {
    grid-column: 2;
  }

  .aw-demo__result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-hero__glow,
  .aw-demo__caret {
    animation: none;
  }

  .aw-demo__step,
  .aw-demo__progress span,
  .aw-demo__result,
  .aw-button {
    transition: none;
  }
}

/*********************************
SEO歴15年の実績
*********************************/
.aw-experience {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px 24px 105px;
  overflow: hidden;
  background: #0a1d36;
  color: #fff;
}

.aw-experience__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

.aw-experience__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.aw-experience__label {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.aw-experience__title {
  margin: 0;
  color: #fff!important;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.aw-experience__title span {
  display: block;
}

.aw-experience__text {
  max-width: 850px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .aw-experience {
    padding: 72px 20px 76px;
  }

  .aw-experience__bg {
    font-size: 24vw;
  }

  .aw-experience__label {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .aw-experience__title {
    font-size: 28px;
    line-height: 1.5;
  }

  .aw-experience__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.9;
  }

  .aw-experience__text br {
    display: none;
  }
}
/*********************************
固定ページ共通ヒーロー
*********************************/
.aw-page-hero,
.aw-page-hero *,
.aw-features-intro,
.aw-features-intro *,
.aw-feature-detail,
.aw-feature-detail * {
  box-sizing: border-box;
}



.aw-page-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-bottom: 1px solid #e8edf3;
  background: linear-gradient(
    180deg,
    #f7fafe 0%,
    #ffffff 100%
  );
}

.aw-page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1156px);
  margin: 0 auto;
  padding: 82px 0 88px;
  text-align: center;
}



.aw-page-hero__title {
  margin: 0;
  color: #0f2940;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.aw-page-hero__lead {
  margin: 22px auto 0!important;
  color: #66717d;
  font-size: 16px;
  line-height: 2;
}


/* ヒーロー装飾 */

.aw-page-hero__line {
  position: absolute;
  display: block;
  width: 360px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.15),
    transparent
  );
}

.aw-page-hero__line--1 {
  top: 30%;
  left: 5%;
  transform: rotate(14deg);
}

.aw-page-hero__line--2 {
  right: 6%;
  bottom: 30%;
  transform: rotate(-16deg);
}

.aw-page-hero__dot {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  background: #fff;
}

.aw-page-hero__dot--1 {
  top: 28%;
  left: 12%;
}

.aw-page-hero__dot--2 {
  top: 21%;
  right: 17%;
}

.aw-page-hero__dot--3 {
  right: 8%;
  bottom: 22%;
}


/*********************************
CTA
*********************************/
.aw-common-cta,
.aw-common-cta * {
  box-sizing: border-box;
}

.aw-common-cta {
  width: 100%;
  margin: 0px auto 0;
  padding: 0px 32px 64px 32px;
  text-align: center;
}


.aw-common-cta__logo {
  display: block;
  width:250px;
  max-width: 70%;
  height: auto;
  margin: 0 auto 30px;
}


.aw-common-cta__input-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 24px;
}

.aw-common-cta__input {
  display: block;
  width: 100%;
  height: 58px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid #d6dde5;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #2563eb;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: normal;
  box-shadow: none;
  cursor: default;
}

.aw-common-cta__input:focus {
  border-color: #b8c6d6;
  outline: none;
  box-shadow: none;
}


/* 文字幅計測用 */

.aw-common-cta__measure {
  position: absolute;
  top: 0;
  left: 20px;
  visibility: hidden;
  white-space: pre;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  pointer-events: none;
}


/* タイピングカーソル */

.aw-common-cta__caret {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 2px;
  height: 20px;
  background: #2563eb;
  transform: translateY(-50%);
  pointer-events: none;
  animation: aw-cta-caret 0.8s step-end infinite;
}

@keyframes aw-cta-caret {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}


.aw-common-cta__title {
  margin: 0;
  color: #0f2940;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-common-cta__lead {
  margin: 20px auto 0;
  color: #66717d;
  font-size: 15px;
  line-height: 1.9;
	margin-bottom:20px;
}




.aw-common-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 0 106px;
  border: 1px solid #2563eb;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.aw-common-cta__button:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
}

.aw-common-cta__note {
  display: block;
  margin-top: 14px;
  color: #7a8490;
  font-size: 12px;
  line-height: 1.6;
}




@media screen and (max-width: 520px) {

  .aw-common-cta {
    margin-top: 60px;
    padding: 46px 20px;
  }

  .aw-common-cta__logo {
    width: 150px;
    margin-bottom: 24px;
  }

  .aw-common-cta__input-wrap {
    margin-bottom: 20px;
  }

  .aw-common-cta__input {
    height: 54px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 54px;
  }

  .aw-common-cta__measure {
    left: 15px;
    font-size: 14px;
  }

  .aw-common-cta__caret {
    left: 15px;
    height: 18px;
  }

  .aw-common-cta__title {
    font-size: 24px;
  }

  .aw-common-cta__lead {
    margin-top: 16px;
    font-size: 14px;
  }

  .aw-common-cta__lead br {
    display: none;
  }

  .aw-common-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .aw-common-cta__caret {
    animation: none;
  }
}


/*********************************
設定ページ（デフォルト）
*********************************/
html,
body {
  overflow-x: hidden;
}

.aw-section-white,
.aw-section-white * {
  box-sizing: border-box;
}


.aw-section-white {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px max(24px, calc((100vw - 1156px) / 2));
	padding-bottom:80px!important;
  background: #ffffff;
}


.aw-section-gray,
.aw-section-gray * {
  box-sizing: border-box;
}


.aw-section-gray {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px max(24px, calc((100vw - 1156px) / 2));
	padding-bottom:80px!important;
  background: #f7f9fb;
}
.aw-section-heading h2 {
  margin: 0!important;
  color: #0f2940!important;
  font-size: clamp(28px, 3.5vw, 40px)!important;
  font-weight: 800!important;
  line-height: 1.45!important;
  letter-spacing: -0.025em!important;
}

.aw-section-heading {
  margin: 0 auto 52px;
  text-align: center;
}

.aw-section-heading__label {
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.14em;
}



.aw-section-heading__lead {
  margin: 22px auto 0!important;
  color: #697480;
  font-size: 15px;
  line-height: 1.9;
}



.aw-advanced__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}


.aw-advanced-card {
  min-width: 0!important;
  margin: 0!important;
  padding: 26px 24px!important;
  border: 1px solid #e2e7ed!important;
  border-radius: 10px!important;
  background: #fff!important;
}

.aw-advanced-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border: 1px solid #dce7f5;
  border-radius: 9px;
  background: #f4f8fd;
}

.aw-advanced-card__icon svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aw-advanced-card h3 {
  margin: 0 0 9px!important;
  color: #172b3d!important;
  font-size: 16px!important;
  font-weight: 700!important;
  line-height: 1.5!important;
}

.aw-advanced-card p {
  margin: 0!important;
  color: #737d87!important;
  font-size: 13px!important;
  line-height: 1.8!important;
}


.aw-advanced__note {
  margin: 42px auto 0!important;
  padding: 18px 22px;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fff;
  color: #5d6974;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
	margin-bottom:50px!important;
}



.aw-advanced__note strong {
  color: #0f2940;
}



@media screen and (max-width: 1000px) {

  .aw-section-gray {
    padding-right: 18px;
    padding-left: 18px;
  }

  .aw-advanced__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media screen and (max-width: 520px) {

  .aw-section-gray {
    padding: 64px 14px;
  }

  .aw-section-heading {
    margin-bottom: 36px;
  }

  .aw-section-heading h2 {
    font-size: 26px;
  }

  .aw-section-heading__lead {
    margin-top: 18px;
    font-size: 14px;
  }

  .aw-advanced__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-advanced-card {
    padding: 22px 20px;
  }

  .aw-advanced__note {
    margin-top: 32px;
    padding: 16px 18px;
    font-size: 13px;
  }
}


/*********************************
目次（デフォルト）
*********************************/
.aw-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  margin: 36px 0;
  padding: 0;
}

.aw-toc__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #445463;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.aw-toc__link:hover {
  color: #2563eb;
  text-decoration: none;
}

.aw-toc__icon {
  width: auto;
  height: auto;
  color: #2563eb;
  font-size: 16px;
  line-height: 1;
}

.aw-toc__text {
  display: inline-block;
}

@media screen and (max-width: 520px) {
  .aw-toc {
    justify-content: flex-start;
    gap: 9px 18px;
    margin: 28px 0;
  }

  .aw-toc__link {
    font-size: 12px;
  }

  .aw-toc__icon {
    font-size: 15px;
  }
}
/*********************************
機能説明の残り
*********************************/

.aw-feature-number {
  display: block;
  margin: 0 0 8px;
  color: #c9dcf8;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}




.aw-template-panel {
  width: 100%;
  padding: 28px;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
}

.aw-template-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.aw-template-panel__header > div {
  display: grid;
  gap: 3px;
}

.aw-template-panel__header small {
  color: #8a96a2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.aw-template-panel__header strong {
  color: #1d3347;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-template-panel__header > span {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
}

.aw-template-panel__list {
  display: grid;
  gap: 10px;
}

.aw-template-panel__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  background: #fff;
}

.aw-template-panel__item.is-selected {
  border-color: #bdd3f6;
  background: #f6f9fe;
}

.aw-template-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: #f4f8fd;
}

.aw-template-panel__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aw-template-panel__item > div:nth-child(2) {
  min-width: 0;
}

.aw-template-panel__item strong {
  display: block;
  margin-bottom: 3px;
  color: #263b4e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-template-panel__item p {
  margin: 0;
  color: #7a858f;
  font-size: 11px;
  line-height: 1.6;
}

.aw-template-panel__item > span {
  flex: 0 0 auto;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
}

.aw-template-panel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e8ecf0;
  color: #63707c;
  font-size: 12px;
  line-height: 1.6;
}

.aw-template-panel__footer span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eef6ff;
  color: #2563eb;
  font-size: 15px;
  font-weight: 700;
}



@media screen and (max-width: 520px) {

  .aw-feature-number {
    margin-bottom: 7px;
    font-size: 52px;
  }

  .aw-template-panel {
    padding: 17px;
  }

  .aw-template-panel__item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }

  .aw-template-panel__icon {
    width: 38px;
    height: 38px;
  }

  .aw-template-panel__item > span {
    grid-column: 2;
  }

}



.aw-section-heading--left {
  max-width: none;
  margin: 0;
  text-align: left;
}

.aw-section-heading--left .aw-section-heading__lead {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}




.aw-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.aw-two-column > * {
  min-width: 0;
}




.aw-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}




.aw-feature-card {
  min-width: 0;
  padding: 28px 24px 26px;
  border: 1px solid #e2e7ed;
  border-radius: 10px;
  background: #fff;
}

.aw-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid #dce7f5;
  border-radius: 9px;
  background: #f4f8fd;
}

.aw-feature-card__icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aw-feature-card h3 {
  margin: 0 0 10px!important;
  color: #172b3d!important;
  font-size: 17px!important;
  font-weight: 700!important;
  line-height: 1.5!important;
}

.aw-feature-card p {
  margin: 0;
  color: #737d87;
  font-size: 13px;
  line-height: 1.8;
}



.aw-feature-checks {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.aw-feature-checks li {
  position: relative;
  margin: 0;
  padding: 0 0 0 28px;
  color: #344454;
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
}

.aw-feature-checks li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #2563eb;
  font-weight: 800;
}




.aw-ui-demo {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
}

.aw-ui-demo__header {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #e7ebf0;
  background: #fafbfc;
}

.aw-ui-demo__header > span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd3dc;
}

.aw-ui-demo__header strong {
  margin-left: 8px;
  color: #536170;
  font-size: 12px;
  font-weight: 700;
}

.aw-ui-demo__body {
  padding: 26px;
}

.aw-ui-demo__field small {
  display: block;
  margin-bottom: 8px;
  color: #63707c;
  font-size: 12px;
  font-weight: 700;
}

.aw-ui-demo__field > div {
  width: 100%;
  padding: 14px 16px;
  overflow-wrap: anywhere;
  border: 1px solid #d9dfe6;
  border-radius: 7px;
  color: #27394a;
  font-size: 13px;
  line-height: 1.6;
}

.aw-ui-demo__process {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.aw-ui-demo__process span {
  position: relative;
  display: block;
  padding: 12px 14px 12px 38px;
  border: 1px solid #e5e9ee;
  border-radius: 7px;
  background: #fff;
  color: #79838d;
  font-size: 12px;
  line-height: 1.5;
}

.aw-ui-demo__process span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dee5;
  transform: translateY(-50%);
}

.aw-ui-demo__process .is-complete {
  color: #34485a;
}

.aw-ui-demo__process .is-complete::before {
  background: #3b82f6;
}

.aw-ui-demo__process .is-active {
  border-color: #bcd3f7;
  background: #f5f9ff;
  color: #2563eb;
  font-weight: 700;
}

.aw-ui-demo__process .is-active::before {
  background: #2563eb;
}




.aw-quality-panel {
  width: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
}

.aw-quality-panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #1d3347;
  font-size: 15px;
  font-weight: 800;
}

.aw-quality-panel__title span {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
}

.aw-quality-panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e7ebef;
  color: #5d6974;
  font-size: 13px;
}

.aw-quality-panel__item strong {
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
}

.aw-quality-panel__footer {
  margin-top: 22px;
  padding: 15px;
  border-radius: 7px;
  background: #f4f7fa;
  color: #53606c;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}




@media screen and (max-width: 1000px) {

  .aw-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-two-column {
    gap: 32px;
  }

}




@media screen and (max-width: 520px) {

  .aw-section-heading--left {
    margin-bottom: 0;
  }

  .aw-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-feature-card {
    padding: 23px 20px;
  }

  .aw-two-column {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aw-ui-demo__body,
  .aw-quality-panel {
    padding: 17px;
  }

}

/*********************************
料金部分のメインCSS
*********************************/

.aw-price {
  width: 100%;
  padding: 0px 20px 80px 20px;
}

.aw-price *,
.aw-price *::before,
.aw-price *::after {
  box-sizing: border-box;
}

.aw-price-head {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 45px;
}

.aw-price-label {
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}


.aw-price-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dce3e9;
  border-radius: 7px;
  background: #fff;
}

.aw-price-main {
  flex: 0 0 44%;
  width: 44%;
  min-width: 0;
  padding: 48px;
  border-right: 1px solid #e3e8ed;
}

.aw-price-features {
  flex: 0 0 56%;
  width: 56%;
  min-width: 0;
  padding: 48px;
}



.aw-price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.aw-price-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: 7px;
  background: #edf4ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}



.aw-price-name {
  margin: 0 0 10px;
  color: #0f2940;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-price-value {
  display: flex;
  align-items: flex-end;
  width: 100%;
  gap: 5px;
  margin: 0 0 12px;
  color: #0f2940;
  white-space: nowrap;
}

.aw-price-value strong {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}

.aw-price-yen {
  flex: 0 0 auto;
  padding-bottom: 7px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.aw-price-tax {
  flex: 0 0 auto;
  padding-bottom: 7px;
  color: #687583;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.aw-price-type {
  margin: 0;
  color: #354454;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.aw-price-description {
  margin: 24px 0 28px;
  color: #667482;
  font-size: 14px;
  line-height: 1.9;
}




.aw-price-actions {
  width: 100%;
}

.aw-price-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.aw-price-button--primary {
  border: 1px solid #F42859;
  background: #F42859;
  color: #fff;
}

.aw-price-button--primary:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: #fff;
}

.aw-price-button--free {
  margin-top: 10px;
  border: 1px solid #2563eb;
  background: #fff;
  color: #2563eb;
}

.aw-price-button--free:hover {
  background: #f5f8ff;
  color: #1d4ed8;
}

.aw-price-button span:last-child {
  flex: 0 0 auto;
  font-size: 18px;
}

.aw-price-free-note {
  margin: 9px 0 0!important;
  color: #687583;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.aw-price-api-note {
  margin: 20px 0 0;
  color: #7c8792;
  font-size: 11px;
  line-height: 1.7;
}



.aw-price-environment {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e3e8ed;
}

.aw-price-environment-title {
  margin: 0 0 14px;
  color: #0f2940;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-price-environment-list {
  width: 100%;
  margin: 0;
}

.aw-price-environment-list > div {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 7px 0;
  border-bottom: 1px solid #edf0f3;
}

.aw-price-environment-list > div:last-child {
  border-bottom: 0;
}

.aw-price-environment-list dt {
  flex: 0 0 105px;
  width: 105px;
  margin: 0;
  color: #697684;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}

.aw-price-environment-list dd {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin: 0;
  color: #354454;
  font-size: 11px;
  line-height: 1.6;
}




.aw-price-features-title {
  margin: 0 0 26px;
  color: #0f2940;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-price-feature-list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-price-feature-list li {
  display: flex!important;
  align-items: flex-start!important;
  width: 100%!important;
  gap: 11px!important;
  margin: 0!important;
  padding: 15px 0!important;
  border-bottom: 1px solid #edf0f3!important;
}

.aw-price-feature-list li:first-child {
  padding-top: 0!important;
}

.aw-price-feature-list li:last-child {
  border-bottom: 0!important;
}

.aw-price-check {
  display: flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #eaf2ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.aw-price-feature-content {
  display: block!important;
  flex: 1 1 auto!important;
  width: auto!important;
  min-width: 0!important;
  max-width: 100%!important;
}

.aw-price-feature-content strong {
  display: block;
  width: 100%;
  margin: 0 0 3px;
  color: #263747;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  writing-mode: horizontal-tb;
  word-break: normal;
}

.aw-price-feature-content p {
  display: block!important;
  width: 100%!important;
  max-width: none!important;
  margin: 0!important;
  color: #7b8793!important;
  font-size: 12px!important;
  line-height: 1.7!important;
  writing-mode: horizontal-tb!important;
  word-break: normal!important;
  overflow-wrap: break-word!important;
}



.aw-price-license {
  width: 100%;
  margin: 28px 0 0;
  padding: 19px 20px 0px 20px;
  border: 1px solid #dfe6ec;
  border-radius: 7px;
}

.aw-price-license-head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
}

.aw-price-license-head span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 4px;
  background: #0f2940;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
}

.aw-price-license-head strong {
  display: block;
  min-width: 0;
  color: #263747;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-price-license p {
  width: 100%;
  margin: 0;
  color: #788592;
  font-size: 11px;
  line-height: 1.7;
}



@media screen and (max-width: 800px) {

  .aw-price {
    padding: 60px 18px;
  }

  .aw-price-head {
    margin-bottom: 32px;
  }

  .aw-price-card {
    display: block;
    max-width: 580px;
  }

  .aw-price-main,
  .aw-price-features {
    width: 100%;
  }

  .aw-price-main {
    padding: 38px 30px 34px;
    border-right: 0;
    border-bottom: 1px solid #e3e8ed;
  }

  .aw-price-features {
    padding: 36px 30px;
  }

}



@media screen and (max-width: 480px) {

  .aw-price {
    padding: 50px 15px;
  }

  .aw-price-main,
  .aw-price-features {
    padding-left: 22px;
    padding-right: 22px;
  }

  .aw-price-value strong {
    font-size: 48px;
  }

  .aw-price-yen {
    font-size: 19px;
  }

  .aw-price-license-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .aw-price-environment-list > div {
    display: block;
  }

  .aw-price-environment-list dt {
    width: 100%;
    margin-bottom: 2px;
  }

  .aw-price-environment-list dd {
    width: 100%;
  }

}

/*********************************
料金部分のAIデータCSS
*********************************/

.aw-api-cost {
  width: 100%;
  padding: 0px 20px;
}

.aw-api-cost *,
.aw-api-cost *::before,
.aw-api-cost *::after {
  box-sizing: border-box;
}

.aw-api-cost-head {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 34px;
}

.aw-api-cost-label {
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.aw-api-cost-unit {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 18px;
  color: #0f2940;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.aw-api-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.aw-api-cost-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce3e9;
  border-radius: 7px;
  background: #fff;
}

.aw-api-cost-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 15px 14px;
  border-bottom: 1px solid #e7ebef;
}

.aw-api-cost-card-head strong {
  color: #0f2940;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.aw-api-cost-card-head span {
  color: #82909d;
  font-size: 9px;
  line-height: 1.4;
  text-align: right;
}

.aw-api-cost-steps {
  padding: 10px;
}

.aw-api-step {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  width: 100%;
  min-height: 43px;
  margin-bottom: 7px;
  padding: 6px 8px;
  border: 1px solid #e5eaf0;
  border-radius: 7px;
  background: #f9fafb;
  transition:
    background-color .12s ease,
    border-color .12s ease;
}

.aw-api-step:last-child {
  margin-bottom: 0;
}

.aw-api-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef3f8;
  color: #8090a0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color .12s ease,
    color .12s ease;
}

.aw-api-step-name {
  min-width: 0;
  color: #66788b;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
  word-break: normal;
  overflow-wrap: break-word;
  transition: color .12s ease;
}

.aw-api-step-status {
  color: #9aa6b2;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  transition: color .12s ease;
}


/* 処理中 */

.aw-api-step.is-active {
  border-color: #b9d0ff;
  background: #f1f6ff;
}

.aw-api-step.is-active .aw-api-step-number {
  background: #2563eb;
  color: #fff;
}

.aw-api-step.is-active .aw-api-step-name {
  color: #496481;
}

.aw-api-step.is-active .aw-api-step-status {
  color: #2563eb;
}


/* 完了 */

.aw-api-step.is-done {
  border-color: #d5e8e0;
  background: #f8fcfa;
}

.aw-api-step.is-done .aw-api-step-number {
  background: #1f9a73;
  color: #fff;
}

.aw-api-step.is-done .aw-api-step-name {
  color: #536c65;
}

.aw-api-step.is-done .aw-api-step-status {
  color: #1f9a73;
}


/* 金額 */

.aw-api-cost-result {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  min-height: 86px;
  padding: 13px 10px 18px;
  border-top: 1px solid #e7ebef;
  color: #0f2940;
}

.aw-api-cost-result span {
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.aw-api-cost-result strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}

.aw-api-cost.is-animated .aw-api-cost-result {
  opacity: 0;
  transform: translateY(8px);
}

.aw-api-cost.is-animated .aw-api-cost-result.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .16s ease,
    transform .16s ease;
}


/* 注意事項 */

.aw-api-cost-note {
  width: 100%;
  max-width: 1080px;
  margin: 18px auto 0;
}

.aw-api-cost-note p {
  margin: 0;
  color: #7b8793;
  font-size: 13px;
  line-height: 1.75;
}

.aw-api-cost-note p + p {
  margin-top: 3px;
}


/* タブレット */

@media screen and (max-width: 900px) {
  .aw-api-cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* スマホ */

@media screen and (max-width: 560px) {
  .aw-api-cost {
    padding: 50px 15px;
  }

  .aw-api-cost-head {
    margin-bottom: 28px;
  }

  .aw-api-cost-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-api-cost-card-head {
    padding: 15px;
  }

  .aw-api-step-name {
    font-size: 11px;
  }

  .aw-api-step-status {
    font-size: 9px;
  }

  .aw-api-cost-result {
    min-height: 78px;
  }

  .aw-api-cost-result strong {
    font-size: 34px;
  }
}



/*********************************
料金部分の最後
*********************************/



/* =========================================================
   OPENAI API - PRICE PANEL
========================================================= */

.aw-price-api__panel {
  padding: 32px;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 41, 64, 0.06);
}

.aw-price-api__panel-title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 16px;
  color: #0f2940;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-price-api__panel-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #e7ebf0;
}

.aw-price-api__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 20px;
  padding: 22px 24px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #f8fafc;
}

.aw-price-api__row span {
  color: #536170;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-price-api__row strong {
  color: #0f2940;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.aw-price-api__row small {
  grid-column: 1 / -1;
  color: #89939d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

/* AIワプレス側を少し強調 */
.aw-price-api__panel > .aw-price-api__row:first-of-type {
  border-color: #cddcff;
  background: #f5f8ff;
}

.aw-price-api__panel > .aw-price-api__row:first-of-type span {
  color: #2563eb;
}

.aw-price-api__panel > .aw-price-api__row:first-of-type strong {
  color: #0f2940;
}

/* OpenAI API側 */
.aw-price-api__plus + .aw-price-api__row {
  background: #fafbfc;
}

.aw-price-api__plus {
  position: relative;
  width: 34px;
  height: 34px;
  margin: 10px auto;
  padding: 0;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  background: #fff;
  color: #7d8995;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}

.aw-price-api__bottom {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .aw-price-api__panel {
    padding: 22px;
  }

  .aw-price-api__row {
    padding: 18px;
    gap: 5px 14px;
  }

  .aw-price-api__row strong {
    font-size: 20px;
  }

  .aw-price-api__bottom {
    font-size: 12px;
  }
}

/* =========================================================
   UPDATE
========================================================= */

.aw-price-update {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f7f9fb;
  box-shadow: 0 0 0 100vmax #f7f9fb;
  clip-path: inset(0 -100vmax);
}

.aw-price-update__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.aw-price-update__flow article {
  position: relative;
  min-width: 0;
  padding: 28px 26px 30px;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 41, 64, 0.04);
}

.aw-price-update__flow article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #eff5ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.aw-price-update__flow article > p {
  margin: 0 0 8px;
  color: #687582;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.aw-price-update__flow article > strong {
  display: block;
  color: #0f2940;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-price-update__flow article > small {
  display: block;
  margin-top: 9px;
  color: #89939d;
  font-size: 12px;
  line-height: 1.7;
}

/* 2年目以降を少し強調 */
.aw-price-update__flow article:last-child {
  border-color: #cbdcff;
  background: #f8faff;
}

.aw-price-update__flow article:last-child > span {
  background: #2563eb;
  color: #fff;
}

/* =========================================================
   UPDATE
========================================================= */

.aw-price-update {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f7f9fb;
  box-shadow: 0 0 0 100vmax #f7f9fb;
  clip-path: inset(0 -100vmax);
}

.aw-price-update__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.aw-price-update__flow article {
  position: relative;
  min-width: 0;
  padding: 30px 28px 32px;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
}

/* 01 / 02 / 03 */
.aw-price-update__flow article > span {
  display: block;
  width: auto !important;
  height: auto !important;
  margin: 0 0 16px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  color: #d7dee6;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* 購入 / 購入から365日間 / 2年目以降 */
.aw-price-update__flow article > p {
  margin: 0 0 10px;
  color: #536170;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

/* メイン内容 */
.aw-price-update__flow article > strong {
  display: block;
  color: #0f2940;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

/* 補足 */
.aw-price-update__flow article > small {
  display: block;
  margin-top: 9px;
  color: #7d8994;
  font-size: 12px;
  line-height: 1.7;
}

/* 03だけ少し強調 */
.aw-price-update__flow article:last-child {
  border-color: #cbdcff;
  background: #f8faff;
}


/* =========================================================
   IMPORTANT
========================================================= */

.aw-price-update__important {
  position: relative;
  margin-top: 0px;
  padding: 24px 28px 24px 62px;
  border: 1px solid #d8e4fb;
  border-radius: 7px;
  background: #f5f8ff;
}

.aw-price-update__important::before {
  content: "!";
  position: absolute;
  top: 27px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.aw-price-update__important strong {
  display: block;
  color: #0f2940;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-price-update__important p {
  margin: 6px 0 0;
  color: #66717d;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .aw-price-update {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .aw-price-update__flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-price-update__flow article {
    padding: 24px 22px 26px;
  }

  .aw-price-update__flow article > span {
    margin-bottom: 13px;
    font-size: 36px;
  }

  .aw-price-update__flow article > p {
    font-size: 15px;
  }

  .aw-price-update__flow article > strong {
    font-size: 19px;
  }

  .aw-price-update__important {
    margin-top: 20px;
    padding: 20px 20px 20px 54px;
  }

  .aw-price-update__important::before {
    top: 20px;
    left: 18px;
  }
}



/* =========================================================
   FREE TRIAL
========================================================= */

.aw-price-trial {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.aw-price-trial__lead {
  margin: 20px 0 0;
  color: #66717d;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.aw-price-trial__numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  text-align: center;
}

.aw-price-trial__numbers > div {
  padding: 28px 20px;
  border-top: 1px solid #e1e6ec;
  border-bottom: 1px solid #e1e6ec;
  text-align: center;
	background:#fff;
}

.aw-price-trial__numbers strong {
  color: #2563eb;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}

.aw-price-trial__numbers span {
  margin-left: 4px;
  color: #0f2940;
  font-size: 14px;
  font-weight: 700;
}

.aw-price-trial__numbers small {
  display: block;
  margin-top: 9px;
  color: #7a858f;
  font-size: 12px;
  text-align: center;
}

/* CTA全体 */
.aw-price-trial__cta {
  width: 100%;
  margin-top: 34px;
  text-align: center;
}

/* 無料体験専用ボタン */
.aw-price-trial__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 520px;
  min-height: 56px;
  margin: 0 auto;
  padding: 14px 28px;
  box-sizing: border-box;
  border: 1px solid #2563eb;
  border-radius: 7px;
  background: #2563eb;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
}

.aw-price-trial__button:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff !important;
}

/* ボタン下 */
.aw-price-trial__note {
  margin: 12px 0 0;
  color: #858f99;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .aw-price-trial {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .aw-price-trial__numbers {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .aw-price-trial__numbers > div {
    padding: 22px 16px;
  }

  .aw-price-trial__button {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================================================
   FAQ
========================================================= */

.aw-price-faq {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.aw-price-faq__item {
  border-bottom: 1px solid #e1e6ec;
  background: #fff;
}

.aw-price-faq__item:first-of-type {
  border-top: 1px solid #e1e6ec;
}

.aw-price-faq__item summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: #263849;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.aw-price-faq__item summary::-webkit-details-marker {
  display: none;
}

.aw-price-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: #2563eb;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.aw-price-faq__item[open] summary::after {
  content: "−";
}

.aw-price-faq__item > p {
  margin: 0;
  padding: 0 64px 24px 24px;
  color: #66717d;
  font-size: 14px;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .aw-price-faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .aw-price-faq__item summary {
    padding: 20px 52px 20px 16px;
  }

  .aw-price-faq__item summary::after {
    right: 16px;
  }

  .aw-price-faq__item > p {
    padding: 0 52px 20px 16px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

  .aw-price-api {
    gap: 36px;
  }

  .aw-price-card {
    padding: 40px 32px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 520px) {

  .aw-price-main,
  .aw-price-included,
  .aw-price-api,
  .aw-price-update,
  .aw-price-restart,
  .aw-price-trial,
  .aw-price-faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* PRICE CARD */
  .aw-price-card {
    padding: 32px 20px;
  }

  .aw-price-card__price {
    display: block;
  }

  .aw-price-card__price strong {
    display: block;
    font-size: 46px;
  }

  .aw-price-card__price span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
  }

  .aw-price-card__features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
    padding-top: 26px;
  }

  .aw-price-card__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .aw-price-button {
    width: 100%;
    min-width: 0;
  }

  /* OPENAI API */
  .aw-price-api {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aw-price-api__panel {
    padding: 20px;
  }

  /* UPDATE */
  .aw-price-update__flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-price-update__flow article {
    padding: 24px 22px 26px;
  }

  .aw-price-update__flow article > span {
    font-size: 36px;
  }

  .aw-price-update__important {
    padding: 20px 20px 20px 54px;
  }

  .aw-price-update__important::before {
    top: 20px;
    left: 18px;
  }

  /* FREE TRIAL */
  .aw-price-trial__numbers {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .aw-price-trial__numbers > div {
    padding: 22px 16px;

  }

  .aw-price-trial__numbers > div + div {
    border-top: 0;

  }

  .aiwapress-free-cta__link {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* FAQ */
  .aw-price-faq__item summary {
    padding: 18px 52px 18px 16px;
    font-size: 14px;
  }

  .aw-price-faq__item summary::after {
    right: 16px;
  }

  .aw-price-faq__item > p {
    padding: 0 52px 20px 16px;
    font-size: 13px;
  }

}

/* =========================================================
   良くある質問
========================================================= */

/* =========================================================
   FAQ SEARCH
========================================================= */

.faq-h2{
	text-align:center;
	font-size:30px!important;
	margin-top:100px!important;
}

.aw-faq-search {
  margin: 60px 0 80px;
  text-align: center;
}

.aw-faq-search__inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.aw-faq-search__label {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.aw-faq-search__title {
  margin: 0;
  color: #0f2940;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.5;
}

.aw-faq-search__lead {
  margin: 14px 0 0;
  color: #66717d;
  font-size: 14px;
  line-height: 1.8;
}

.aw-faq-search__form {
  position: relative;
  margin-top: 28px;
}

.aw-faq-search__form input {
  display: block;
  width: 100%;
  height: 62px;
  padding: 0 58px 0 54px;
  box-sizing: border-box;
  border: 1px solid #d8e0e8;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #263849;
  font-size: 15px;
}

.aw-faq-search__form input:focus {
  border-color: #2563eb;
}

.aw-faq-search__form input::placeholder {
  color: #9aa4ad;
}

.aw-faq-search__icon {
  position: absolute;
  top: 50%;
  left: 20px;
  color: #718090;
  font-size: 21px;
  transform: translateY(-50%);
  pointer-events: none;
}

.aw-faq-search__clear {
  position: absolute;
  top: 50%;
  right: 17px;
  display: none;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #89949f;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
}


/* =========================================================
   SEARCH RESULTS
========================================================= */

.aw-faq-results {
  display: none;
  margin: 0 0 80px;
}

.aw-faq-results.is-visible {
  display: block;
}

.aw-faq-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid #0f2940;
}

.aw-faq-results__header strong {
  color: #0f2940;
  font-size: 18px;
  font-weight: 800;
}

.aw-faq-results__header span {
  color: #6d7883;
  font-size: 13px;
  font-weight: 700;
}

.aw-faq-results__list {
  display: grid;
  gap: 12px;
}

.aw-faq-result {
  padding: 22px 24px;
  border-left: 4px solid #2563eb;
  background: #f5f8ff;
}

.aw-faq-result__question {
  margin: 0;
  color: #0f2940;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.aw-faq-result__answer {
  margin: 8px 0 0;
  color: #5f6c78;
  font-size: 13px;
  line-height: 1.9;
}

.aw-faq-result mark {
  padding: 1px 3px;
  background: #fff0a8;
  color: inherit;
  font-weight: 800;
}

.aw-faq-results__empty {
  display: none;
  margin: 0;
  padding: 28px 20px;
  background: #f7f9fb;
  color: #707b85;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}


/* =========================================================
   FAQ
========================================================= */

.faq-h2 {
  margin: 80px 0 10px;
  color: #0f2940;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.5;
}

.aw-price-faq__item {
  border-bottom: 1px solid #e1e6ec;
  background: #fff;
}

.faq-h2 + .aw-price-faq__item {
  border-top: 1px solid #e1e6ec;
}

.aw-price-faq__item summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: #263849;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.aw-price-faq__item summary::-webkit-details-marker {
  display: none;
}

.aw-price-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: #2563eb;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.aw-price-faq__item[open] summary::after {
  content: "−";
}

.aw-price-faq__item > p {
  margin: 0;
  padding: 0 64px 24px 24px;
  color: #66717d;
  font-size: 14px;
  line-height: 1.9;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 520px) {

  .aw-faq-search {
    margin: 40px 0 60px;
  }

  .aw-faq-search__form input {
    height: 58px;
    padding-right: 48px;
    padding-left: 48px;
    font-size: 14px;
  }

  .aw-faq-search__icon {
    left: 16px;
  }

  .aw-faq-search__clear {
    right: 12px;
  }

  .aw-faq-results {
    margin-bottom: 60px;
  }

  .aw-faq-result {
    padding: 19px 18px;
  }

  .faq-h2 {
    margin-top: 60px;
    font-size: 24px;
  }

  .aw-price-faq__item summary {
    padding: 18px 52px 18px 16px;
    font-size: 14px;
  }

  .aw-price-faq__item summary::after {
    right: 16px;
  }

  .aw-price-faq__item > p {
    padding: 0 52px 20px 16px;
    font-size: 13px;
  }
}
/*********************************
TOP 導入の流れ
*********************************/

.aw-top-flow,
.aw-top-flow * {
  box-sizing: border-box;
}

.aw-top-flow__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.aw-top-flow__card {
  min-width: 0;
  height: 100%;
  padding: 30px 26px;
  border: 1px solid #e0e6ec;
  border-radius: 10px;
  background: #fff;
}

.aw-top-flow__number {
  display: block;
  margin-bottom: 18px;
  color: #c9dcf8;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.aw-top-flow__card h3 {
  margin: 0 0 10px !important;
  color: #172b3d !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

.aw-top-flow__card p {
  margin: 0;
  color: #737d87;
  font-size: 13px;
  line-height: 1.8;
}

.aw-top-flow__arrow {
  width: 32px;
  height: 32px;
  color: #2563eb;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

.aw-top-flow__manual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 13px 18px;
  border: 1px solid #d8e4f7;
  border-radius: 7px;
  background: #f5f8ff;
}

.aw-top-flow__manual .dashicons {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #2563eb;
  font-size: 18px;
  line-height: 18px;
}

.aw-top-flow__manual p {
  margin: 0!important;
  color: #5e6d7c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.aw-top-flow__link-wrap {
  margin-top: 26px;
  text-align: center;
}

.aw-top-flow__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.aw-top-flow__link:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.aw-top-flow__link .dashicons {
  width: 17px;
  height: 17px;
  font-size: 17px;
  line-height: 17px;
}

@media screen and (max-width: 900px) {
  .aw-top-flow__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-top-flow__arrow {
    margin: -3px auto;
    transform: rotate(90deg);
  }

  .aw-top-flow__card {
    height: auto;
  }
}

@media screen and (max-width: 520px) {
  .aw-top-flow__card {
    padding: 24px 20px;
  }

  .aw-top-flow__number {
    margin-bottom: 14px;
    font-size: 32px;
  }

  .aw-top-flow__card h3 {
    font-size: 17px !important;
  }

  .aw-top-flow__manual {
    align-items: flex-start;
    margin-top: 24px;
    padding: 13px 14px;
  }

  .aw-top-flow__link-wrap {
    margin-top: 22px;
  }
}
/*********************************
導入の流れ
*********************************/

.aw-flow-step,
.aw-flow-step *,
.aw-flow-overview,
.aw-flow-overview *,
.aw-start-choice,
.aw-start-choice *,
.aw-start-ui,
.aw-start-ui *,
.aw-flow-manual,
.aw-flow-manual *,
.aw-start-finish,
.aw-start-finish * {
  box-sizing: border-box;
}


/*********************************
横型説明文
*********************************/

.aw-flow-lead {
  margin: 22px 0 20px!important;
  padding: 0;
  color: #697480;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  text-align: left;
}


/*********************************
6STEP概要
*********************************/

.aw-flow-overview {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.aw-flow-overview > div {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  padding: 18px 12px;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.aw-flow-overview > div span {
  display: block;
  margin-bottom: 8px;
  color: #c3d3e7;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.aw-flow-overview > div strong {
  color: #34485a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-flow-overview > i {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  color: #2563eb;
  font-size: 15px;
  font-style: normal;
}


/*********************************
STEP共通
*********************************/

.aw-flow-copy,
.aw-flow-visual {
  min-width: 0;
}


/*********************************
STEP1
*********************************/

.aw-start-choice {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  width: 100%;
}

.aw-start-choice__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px 24px 24px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #fff;
}

.aw-start-choice__tag {
  margin-bottom: 16px;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
}

.aw-start-choice__item > strong {
  color: #0f2940;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-start-choice__item > p {
  flex: 1 1 auto;
  margin: 10px 0 0;
  color: #727f8b;
  font-size: 12px;
  line-height: 1.8;
}

.aw-start-choice__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 0;
  border-top: 1px solid #e7ebef;
  border-bottom: 1px solid #e7ebef;
}

.aw-start-choice__info span {
  color: #788592;
  font-size: 11px;
  font-weight: 600;
}

.aw-start-choice__info b {
  color: #0f2940;
  font-size: 13px;
  font-weight: 800;
}

.aw-start-choice__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 10px 15px;
  border: 1px solid #2563eb;
  border-radius: 7px;
  background: #fff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.aw-start-choice__button:hover {
  background: #f5f8ff;
  color: #1d4ed8;
  text-decoration: none;
}

.aw-start-choice__button--purchase {
  background: #2563eb;
  color: #fff;
}

.aw-start-choice__button--purchase:hover {
  background: #1d4ed8;
  color: #fff;
}

.aw-start-choice__or {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.aw-start-choice__or span {
  color: #8c98a4;
  font-size: 8px;
  font-weight: 800;
}


/*********************************
管理画面風UI
*********************************/

.aw-start-ui {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 41, 64, 0.05);
}

.aw-start-ui__header {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #e7ebf0;
  background: #fafbfc;
}

.aw-start-ui__header > span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd3dc;
}

.aw-start-ui__header strong {
  margin-left: 8px;
  color: #536170;
  font-size: 12px;
  font-weight: 700;
}

.aw-start-ui__body {
  padding: 28px;
}

.aw-start-ui__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 7px;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}


/*********************************
マイページ
*********************************/

.aw-start-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.aw-start-account > div {
  display: grid;
  gap: 3px;
}

.aw-start-account small {
  color: #8c98a4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.aw-start-account strong {
  color: #0f2940;
  font-size: 17px;
  font-weight: 800;
}

.aw-start-account > span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf8f3;
  color: #1f8f64;
  font-size: 9px;
  font-weight: 800;
}

.aw-start-download-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fafbfd;
}

.aw-start-download-box__icon {
  display: flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #edf4ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
}

.aw-start-download-box__content {
  min-width: 0;
}

.aw-start-download-box__content small {
  display: block;
  margin-bottom: 2px;
  color: #8a96a2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.aw-start-download-box__content strong {
  display: block;
  color: #304356;
  font-size: 14px;
  font-weight: 800;
}

.aw-start-download-box__content p {
  margin: 4px 0 0;
  color: #7a8691;
  font-size: 10px;
  line-height: 1.6;
}


/*********************************
WordPressインストール
*********************************/

.aw-start-wp-title {
  margin-bottom: 18px;
  color: #0f2940;
  font-size: 16px;
  font-weight: 800;
}

.aw-start-file {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px dashed #cbd6e2;
  border-radius: 8px;
  background: #fafbfd;
}

.aw-start-file > span {
  display: flex;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 7px;
  background: #edf4ff;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
}

.aw-start-file > div {
  display: grid;
  gap: 3px;
}

.aw-start-file strong {
  color: #34475a;
  font-size: 13px;
}

.aw-start-file small {
  color: #89949f;
  font-size: 10px;
}

.aw-start-install-steps {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.aw-start-install-steps > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #e5e9ee;
  border-radius: 7px;
  color: #71808e;
  font-size: 12px;
}

.aw-start-install-steps span {
  display: flex;
  flex: 0 0 23px;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #eef2f6;
  color: #7a8998;
  font-size: 10px;
  font-weight: 800;
}

.aw-start-install-steps .is-done span {
  background: #1f9a73;
  color: #fff;
}

.aw-start-install-steps .is-active {
  border-color: #bfd3fa;
  background: #f5f8ff;
  color: #2563eb;
}

.aw-start-install-steps .is-active span {
  background: #2563eb;
  color: #fff;
}


/*********************************
入力フィールド
*********************************/

.aw-start-field small {
  display: block;
  margin-bottom: 8px;
  color: #667482;
  font-size: 11px;
  font-weight: 800;
}

.aw-start-field > div {
  width: 100%;
  padding: 14px 15px;
  overflow-wrap: anywhere;
  border: 1px solid #dce3e9;
  border-radius: 7px;
  background: #fff;
  color: #35485a;
  font-size: 13px;
  line-height: 1.5;
}


/*********************************
ライセンス
*********************************/

.aw-start-license-help {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #e1e7ed;
  border-radius: 7px;
  background: #f8fafc;
}

.aw-start-license-help span {
  display: block;
  margin-bottom: 4px;
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.aw-start-license-help p {
  margin: 0;
  color: #71808d;
  font-size: 11px;
  line-height: 1.7;
}


/*********************************
API接続完了
*********************************/

.aw-start-api-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid #d4e7de;
  border-radius: 7px;
  background: #f7fcf9;
}

.aw-start-api-check > span {
  display: flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1f9a73;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.aw-start-api-check > div {
  display: grid;
  gap: 2px;
}

.aw-start-api-check strong {
  color: #416257;
  font-size: 12px;
  font-weight: 800;
}

.aw-start-api-check small {
  color: #83958f;
  font-size: 10px;
}


/*********************************
API設定フロー
*********************************/

.aw-start-api-status {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.aw-start-api-status__step {
  display: flex;
  min-width: 90px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.aw-start-api-status__step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: #eef2f6;
  color: #7c8996;
  font-size: 10px;
  font-weight: 800;
}

.aw-start-api-status__step > div {
  display: grid;
  gap: 2px;
}

.aw-start-api-status__step strong {
  color: #647280;
  font-size: 10px;
  font-weight: 700;
}

.aw-start-api-status__step small {
  color: #98a2ac;
  font-size: 8px;
}

.aw-start-api-status__step.is-done > span {
  background: #1f9a73;
  color: #fff;
}

.aw-start-api-status__step.is-active > span {
  background: #2563eb;
  color: #fff;
}

.aw-start-api-status__step.is-active strong,
.aw-start-api-status__step.is-active small {
  color: #2563eb;
}

.aw-start-api-status__line {
  flex: 1 1 auto;
  max-width: 80px;
  height: 1px;
  margin: 0 4px 32px;
  background: #dce3e9;
}


/*********************************
APIマニュアル
*********************************/

.aw-flow-manual {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 19px 20px;
  border: 1px solid #cbdcf8;
  border-radius: 8px;
  background: #f4f8ff;
}

.aw-flow-manual__icon {
  display: flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.aw-flow-manual__content {
  min-width: 0;
}

.aw-flow-manual__content strong {
  display: block;
  color: #0f2940;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.aw-flow-manual__content p {
  margin: 5px 0 9px;
  color: #667482;
  font-size: 12px;
  line-height: 1.7;
}

.aw-flow-manual__content a {
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.aw-flow-manual__content a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.aw-flow-manual__content a span {
  margin-left: 4px;
}


/*********************************
記事生成
*********************************/

.aw-start-generate-flow {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.aw-start-generate-flow > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 7px 10px;
  border: 1px solid #e5eaf0;
  border-radius: 7px;
  background: #fafbfc;
}

.aw-start-generate-flow > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #eef2f6;
  color: #8592a0;
  font-size: 9px;
  font-weight: 800;
}

.aw-start-generate-flow strong {
  color: #657482;
  font-size: 11px;
  font-weight: 700;
}

.aw-start-generate-flow small {
  color: #9aa5af;
  font-size: 9px;
  font-weight: 700;
}

.aw-start-generate-flow .is-done {
  border-color: #d7e9e1;
  background: #f8fcfa;
}

.aw-start-generate-flow .is-done > span {
  background: #1f9a73;
  color: #fff;
}

.aw-start-generate-flow .is-done small {
  color: #1f9a73;
}

.aw-start-generate-flow .is-active {
  border-color: #bdd2fb;
  background: #f3f7ff;
}

.aw-start-generate-flow .is-active > span {
  background: #2563eb;
  color: #fff;
}

.aw-start-generate-flow .is-active strong,
.aw-start-generate-flow .is-active small {
  color: #2563eb;
}


/*********************************
完了
*********************************/

.aw-start-finish {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.aw-start-finish h2 {
  margin: 0;
  color: #0f2940;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.aw-start-finish > p:not(.aw-section-heading__label) {
  max-width: 720px;
  margin: 20px auto 0;
  color: #697480;
  font-size: 15px;
  line-height: 1.9;
}

.aw-start-finish__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.aw-start-finish__flow span {
  min-width: 180px;
  padding: 17px 20px;
  border: 1px solid #d9e2eb;
  border-radius: 8px;
  background: #fff;
  color: #263b4e;
  font-size: 13px;
  font-weight: 800;
}

.aw-start-finish__flow b {
  color: #2563eb;
  font-size: 20px;
}


/*********************************
TABLET
*********************************/

@media screen and (max-width: 1000px) {

  .aw-flow-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .aw-flow-overview > i {
    display: none;
  }

  .aw-start-choice {
    grid-template-columns: 1fr;
  }

  .aw-start-choice__or {
    top: 50%;
  }
}


/*********************************
SP
*********************************/

@media screen and (max-width: 520px) {

  .aw-flow-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .aw-flow-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw-flow-overview > div {
    min-height: 88px;
    padding: 15px 10px;
  }

  .aw-flow-overview > div span {
    font-size: 19px;
  }

  .aw-flow-step .aw-flow-copy {
    order: 1;
  }

  .aw-flow-step .aw-flow-visual {
    order: 2;
  }

  .aw-start-choice {
    gap: 12px;
  }

  .aw-start-choice__item {
    padding: 22px 20px;
  }

  .aw-start-choice__or {
    display: none;
  }

  .aw-start-ui__body {
    padding: 20px;
  }

  .aw-start-download-box {
    align-items: flex-start;
    padding: 16px;
  }

  .aw-start-download-box__icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .aw-start-api-status__step {
    min-width: 70px;
  }

  .aw-start-api-status__line {
    margin-right: 0;
    margin-left: 0;
  }

  .aw-flow-manual {
    padding: 17px;
  }

  .aw-start-finish__flow {
    flex-direction: column;
    gap: 9px;
  }

  .aw-start-finish__flow span {
    width: 100%;
    min-width: 0;
  }

  .aw-start-finish__flow b {
    transform: rotate(90deg);
  }
}

/*********************************
規約系
*********************************/
.kotei-kiyaku {
  width: 100%;
  padding: 36px 100px;
  border: 1px solid #dfe5ec;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
	margin-top:20px!important;
}

/* 見出し：フォントサイズのみ指定 */
.kotei-kiyaku h1 {
  font-size: 26px !important;
	text-align:center!important;
	margin-bottom:40px!important;
}
.kotei-kiyaku h2 {
  font-size: 23px !important;
}

.kotei-kiyaku h3 {
  font-size: 20px !important;
}

/* テーブル */
.kotei-kiyaku table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.kotei-kiyaku table th,
.kotei-kiyaku table td {
  padding: 15px 18px;
  border: 1px solid #dfe5ec;
  vertical-align: top;
  text-align: left;
}

.kotei-kiyaku table th {
  width: 28%;
  background: #f7f9fb;
  color: #0f2940;
  font-weight: 700;
}

.kotei-kiyaku table td {
  background: #fff;
  color: #536170;
}

@media screen and (max-width: 767px) {
  .kotei-kiyaku {
    padding: 24px 18px;
  }

  .kotei-kiyaku h2 {
    font-size: 22px !important;
  }

  .kotei-kiyaku h3 {
    font-size: 18px !important;
  }

  .kotei-kiyaku table {
    font-size: 13px;
  }

  .kotei-kiyaku table th,
  .kotei-kiyaku table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .kotei-kiyaku table th {
    border-bottom: 0;
  }

  .kotei-kiyaku table td {
    margin-bottom: -1px;
  }
}

/*********************************
AIワプレス お問い合わせ
*********************************/

.aiwapress-contact-form,
.aiwapress-contact-form * {
  box-sizing: border-box;
}

.aiwapress-contact-form {
  width: 100%;
  margin-top: 24px;
}

.aiwapress-contact-notice {
  margin-bottom: 32px;
  padding: 20px 22px;
  border: 1px solid #dfe5ec;
  background: #f7f9fb;
}

.aiwapress-contact-notice strong {
  display: block;
  margin-bottom: 8px;
  color: #0f2940;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.aiwapress-contact-notice p {
  margin: 0;
  color: #5f6c78;
  font-size: 13px;
  line-height: 1.8;
}

.aiwapress-contact-notice ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.aiwapress-contact-notice li {
  margin: 4px 0;
  color: #687583;
  font-size: 12px;
  line-height: 1.7;
}

.aiwapress-contact-field {
  margin-bottom: 24px;
}

.aiwapress-contact-field > label {
  display: block;
  margin-bottom: 8px;
  color: #263849;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.aiwapress-contact-required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  background: #eef4ff;
  color: #2563eb;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: 1px;
}

.aiwapress-contact-form input[type="text"],
.aiwapress-contact-form input[type="email"],
.aiwapress-contact-form input[type="url"],
.aiwapress-contact-form select,
.aiwapress-contact-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d6dde5;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #263849;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: none;
}

.aiwapress-contact-form input[type="text"],
.aiwapress-contact-form input[type="email"],
.aiwapress-contact-form input[type="url"],
.aiwapress-contact-form select {
  min-height: 48px;
}

.aiwapress-contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.aiwapress-contact-form input:focus,
.aiwapress-contact-form select:focus,
.aiwapress-contact-form textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: none;
}

.aiwapress-contact-help {
  margin: 6px 0 0 !important;
  color: #84909b !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
}

.aiwapress-contact-privacy {
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid #e1e6ec;
  background: #fafbfc;
  color: #536170;
  font-size: 13px;
  line-height: 1.7;
}

.aiwapress-contact-privacy .wpcf7-list-item {
  margin: 0;
}

.aiwapress-contact-submit {
  margin-top: 24px;
}

.aiwapress-contact-submit input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 12px 20px;
  border: 1px solid #2563eb;
  border-radius: 0;
  background: #2563eb;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  box-shadow: none;
}

.aiwapress-contact-submit input[type="submit"]:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;
}

.aiwapress-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c93434;
  font-size: 11px;
}

.aiwapress-contact-form .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 16px !important;
  border-width: 1px !important;
  font-size: 13px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .aiwapress-contact-notice {
    padding: 17px 16px;
  }

  .aiwapress-contact-field {
    margin-bottom: 20px;
  }

  .aiwapress-contact-form input[type="text"],
  .aiwapress-contact-form input[type="email"],
  .aiwapress-contact-form input[type="url"],
  .aiwapress-contact-form select,
  .aiwapress-contact-form textarea {
    padding: 11px 12px;
    font-size: 14px;
  }

  .aiwapress-contact-form textarea {
    min-height: 160px;
  }

  .aiwapress-contact-privacy {
    padding: 14px;
  }
}
/*********************************
TOP AIワプレスの特徴
*********************************/

.aw-top-feature-showcase,
.aw-top-feature-showcase * {
  box-sizing: border-box;
}

.aw-top-feature-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.aw-top-feature-showcase__item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #fff;
}


/*********************************
タイトル
*********************************/

.aw-top-feature-showcase__head {
  padding: 30px 30px 22px;
}

.aw-top-feature-showcase__number {
  display: block;
  margin-bottom: 8px;
  color: #c9dcf8;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.aw-top-feature-showcase__label {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .14em;
}

.aw-top-feature-showcase__head h3 {
  margin: 0 !important;
  color: #172b3d !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}


/*********************************
UI表示エリア
*********************************/

.aw-top-feature-showcase__visual {
  padding: 0 28px 28px;
}

.aw-feature-ui {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dce3ea;
  border-radius: 9px;
  background: #fff;

}

.aw-feature-ui__header {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #e7ebef;
  background: #fafbfc;
}

.aw-feature-ui__header > span {
  display: block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7d0da;
}

.aw-feature-ui__header strong {
  display: block;
  min-width: 0;
  margin-left: 6px;
  color: #677482;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-feature-ui__body {
  height: 300px;
  padding: 22px;
}


/*********************************
下部説明
*********************************/

.aw-top-feature-showcase__description {
  padding: 26px 30px 32px;
  border-top: 1px solid #e5eaf0;
  background: #fafbfc;
}

.aw-top-feature-showcase__description p {
  margin: 0 !important;
  color: #0f2940 !important;
  font-size: 13px !important;
  line-height: 2 !important;
}


/*********************************
共通入力
*********************************/

.aw-feature-ui__field small {
  display: block;
  margin-bottom: 7px;
  color: #667482;
  font-size: 10px;
  font-weight: 700;
}

.aw-feature-ui__field > div {
  padding: 13px 14px;
  border: 1px solid #d9e1e8;
  border-radius: 7px;
  color: #263b4e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}


/*********************************
01 記事生成
*********************************/

.aw-feature-process {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.aw-feature-process > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid #e5eaf0;
  border-radius: 7px;
  background: #fafbfc;
}

.aw-feature-process > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #eef2f6;
  color: #84919e;
  font-size: 9px;
  font-weight: 800;
}

.aw-feature-process strong {
  min-width: 0;
  color: #667583;
  font-size: 10px;
  line-height: 1.5;
}

.aw-feature-process small {
  display: block;
  width: 48px;
  color: #98a3ad;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.aw-feature-process .is-done {
  border-color: #d6e9e1;
  background: #f8fcfa;
}

.aw-feature-process .is-done > span {
  background: #1f9a73;
  color: #fff;
}

.aw-feature-process .is-done small {
  color: #1f9a73;
}

.aw-feature-process .is-active {
  border-color: #bdd2fb;
  background: #f3f7ff;
}

.aw-feature-process .is-active > span {
  background: #2563eb;
  color: #fff;
}

.aw-feature-process .is-active strong,
.aw-feature-process .is-active small {
  color: #2563eb;
}


/*********************************
02 Web調査
*********************************/

.aw-feature-research__query {
  margin-bottom: 16px;
  padding: 14px 15px;
  border: 1px solid #dce3ea;
  border-radius: 7px;
}

.aw-feature-research__query small {
  display: block;
  margin-bottom: 4px;
  color: #8b96a1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.aw-feature-research__query strong {
  color: #31475a;
  font-size: 12px;
}

.aw-feature-research__item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  padding: 11px 12px;
  border: 1px solid #e5eaf0;
  border-radius: 7px;
  background: #fafbfc;
}

.aw-feature-research__item > span {
  display: flex;
  flex: 0 0 25px;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #eef2f6;
  color: #84919e;
  font-size: 9px;
  font-weight: 800;
}

.aw-feature-research__item > div {
  min-width: 0;
}

.aw-feature-research__item strong,
.aw-feature-research__item small {
  display: block;
}

.aw-feature-research__item strong {
  color: #586b7c;
  font-size: 10px;
}

.aw-feature-research__item small {
  margin-top: 2px;
  color: #929da7;
  font-size: 8px;
}

.aw-feature-research__item.is-done > span {
  background: #1f9a73;
  color: #fff;
}

.aw-feature-research__item.is-active {
  border-color: #bdd2fb;
  background: #f3f7ff;
}

.aw-feature-research__item.is-active > span {
  background: #2563eb;
  color: #fff;
}


/*********************************
03 SEO
*********************************/

.aw-feature-seo {
  border-top: 1px solid #e6eaee;
}

.aw-feature-seo > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 45px;
  padding: 10px 4px;
  border-bottom: 1px solid #e6eaee;
}

.aw-feature-seo span {
  color: #333;
  font-size: 11px;
}

.aw-feature-seo strong {
  color: #1f9a73;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}


/*********************************
04 品質
*********************************/

.aw-feature-quality__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
}

.aw-feature-quality__head > strong {
  color: #0f2940;
  font-size: 13px;
  font-weight: 800;
}

.aw-feature-quality__head > span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #2563eb;
  font-size: 8px;
  font-weight: 800;
}

.aw-feature-quality__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 2px;
  border-bottom: 1px solid #e7ebef;
}

.aw-feature-quality__item span {
  color: #333;
  font-size: 10px;
}

.aw-feature-quality__item strong {
  color: #1f9a73;
  font-size: 9px;
  font-weight: 800;
}

.aw-feature-quality__complete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 11px;
  border-radius: 7px;
  background: #f5f8ff;
}

.aw-feature-quality__complete span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.aw-feature-quality__complete strong {
  color: #31527a;
  font-size: 10px;
}


/*********************************
05 アイキャッチ
*********************************/

.aw-feature-image__preview {
  display: flex;
  min-height: 135px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed #cdd9e5;
  border-radius: 7px;
  background: #f8faff;
  text-align: center;
}

.aw-feature-image__preview .dashicons {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  color: #2563eb;
  font-size: 32px;
  line-height: 32px;
}

.aw-feature-image__preview small {
  color: #8a96a2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.aw-feature-image__preview strong {
  margin-top: 5px;
  color: #30475c;
  font-size: 11px;
}

.aw-feature-image__status {
  margin-top: 14px;
}

.aw-feature-image__status > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 2px;
  border-bottom: 1px solid #e6eaee;
}

.aw-feature-image__status span {
  color: #333;
  font-size: 10px;
}

.aw-feature-image__status strong {
  color: #1f9a73;
  font-size: 9px;
}


/*********************************
06 WordPress投稿
*********************************/

.aw-feature-publish__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 7px;
  background: #f5f8ff;
}

.aw-feature-publish__status span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.aw-feature-publish__status strong {
  color: #31527a;
  font-size: 10px;
}

.aw-feature-publish__rows {
  margin-top: 15px;
  border-top: 1px solid #e6eaee;
}

.aw-feature-publish__rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 9px 2px;
  border-bottom: 1px solid #e6eaee;
}

.aw-feature-publish__rows span,
.aw-feature-publish__rows strong {
  font-size: 10px;
}

.aw-feature-publish__rows span {
  color: #333;
}

.aw-feature-publish__rows strong {
  color: #263b4e;
  font-weight: 800;
}

.aw-feature-publish__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 42px;
  margin-top: 15px;
  border-radius: 7px;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}


/*********************************
07 一括記事生成
*********************************/

.aw-top-feature-showcase .aw-feature-bulk {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.aw-top-feature-showcase .aw-feature-bulk__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 15px !important;
  margin: 0 0 13px !important;
}

.aw-top-feature-showcase .aw-feature-bulk__head-title {
  display: block !important;
  color: #0f2940 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  writing-mode: horizontal-tb !important;
}

.aw-top-feature-showcase .aw-feature-bulk__count {
  display: block !important;
  flex: 0 0 auto !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  background: #eef4ff !important;
  color: #2563eb !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  gap: 10px !important;
  margin: 0 0 7px !important;
  padding: 10px !important;
  border: 1px solid #e5eaf0 !important;
  border-radius: 7px !important;
  background: #fafbfc !important;
}

.aw-top-feature-showcase .aw-feature-bulk__num {
  display: flex !important;
  flex: 0 0 28px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #eef2f6 !important;
  color: #83909d !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-bulk__text {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aw-top-feature-showcase .aw-feature-bulk__title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #5f6f7e !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

.aw-top-feature-showcase .aw-feature-bulk__meta {
  display: block !important;
  width: 100% !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  color: #939ea8 !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-bulk__status {
  display: block !important;
  flex: 0 0 62px !important;
  width: 62px !important;
  min-width: 62px !important;
  max-width: 62px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #9aa5af !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: right !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row.is-done {
  border-color: #d8e8e1 !important;
  background: #f8fcfa !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row.is-done .aw-feature-bulk__num {
  background: #1f9a73 !important;
  color: #fff !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row.is-done .aw-feature-bulk__status {
  color: #1f9a73 !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row.is-active {
  border-color: #bdd2fb !important;
  background: #f3f7ff !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row.is-active .aw-feature-bulk__num {
  background: #2563eb !important;
  color: #fff !important;
}

.aw-top-feature-showcase .aw-feature-bulk__row.is-active .aw-feature-bulk__status {
  color: #2563eb !important;
}


/*********************************
08 記事テンプレート
*********************************/

.aw-top-feature-showcase .aw-feature-template {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.aw-top-feature-showcase .aw-feature-template__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 15px !important;
  margin: 0 0 13px !important;
}

.aw-top-feature-showcase .aw-feature-template__head-title {
  display: block !important;
  color: #0f2940 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

.aw-top-feature-showcase .aw-feature-template__head-note {
  display: block !important;
  flex: 0 0 auto !important;
  color: #8995a0 !important;
  font-size: 9px !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-template__item {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  gap: 10px !important;
  margin: 0 0 7px !important;
  padding: 10px !important;
  border: 1px solid #e5eaf0 !important;
  border-radius: 7px !important;
  background: #fafbfc !important;
}

.aw-top-feature-showcase .aw-feature-template__num {
  display: flex !important;
  flex: 0 0 28px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #eef2f6 !important;
  color: #82909d !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-template__text {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aw-top-feature-showcase .aw-feature-template__title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #5b6c7b !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-template__meta {
  display: block !important;
  width: 100% !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  color: #929da7 !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-template__status {
  display: block !important;
  flex: 0 0 62px !important;
  width: 62px !important;
  min-width: 62px !important;
  max-width: 62px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #2563eb !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: right !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}

.aw-top-feature-showcase .aw-feature-template__item.is-selected {
  border-color: #bdd2fb !important;
  background: #f3f7ff !important;
}

.aw-top-feature-showcase .aw-feature-template__item.is-selected .aw-feature-template__num {
  background: #2563eb !important;
  color: #fff !important;
}


/*********************************
SP
*********************************/

@media screen and (max-width: 520px) {

  .aw-top-feature-showcase .aw-feature-bulk__row,
  .aw-top-feature-showcase .aw-feature-template__item {
    gap: 8px !important;
    padding: 9px !important;
  }

  .aw-top-feature-showcase .aw-feature-bulk__num,
  .aw-top-feature-showcase .aw-feature-template__num {
    flex-basis: 26px !important;
    width: 26px !important;
    min-width: 26px !important;
    height: 26px !important;
  }

  .aw-top-feature-showcase .aw-feature-bulk__status,
  .aw-top-feature-showcase .aw-feature-template__status {
    flex-basis: 55px !important;
    width: 55px !important;
    min-width: 55px !important;
    max-width: 55px !important;
  }

}



/*********************************
詳しく見る
*********************************/

.aw-top-feature-showcase__more {
  margin-top: 38px;
  text-align: center;
}

.aw-top-feature-showcase__more a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.aw-top-feature-showcase__more a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.aw-top-feature-showcase__more .dashicons {
  width: 17px;
  height: 17px;
  font-size: 17px;
  line-height: 17px;
}


/*********************************
TABLET
*********************************/

@media screen and (max-width: 900px) {

  .aw-top-feature-showcase__grid {
    grid-template-columns: 1fr;
  }

}


/*********************************
SP
*********************************/

@media screen and (max-width: 520px) {

  .aw-top-feature-showcase__grid {
    gap: 20px;
  }

  .aw-top-feature-showcase__head {
    padding: 24px 20px 18px;
  }

  .aw-top-feature-showcase__number {
    font-size: 31px;
  }

  .aw-top-feature-showcase__head h3 {
    font-size: 18px !important;
  }

  .aw-top-feature-showcase__visual {
    padding: 0 14px 18px;
  }

  .aw-feature-ui__body {
    height: auto;
    min-height: 0;
    padding: 16px;
  }

  .aw-top-feature-showcase__description {
    padding: 22px 20px 25px;
  }

  .aw-top-feature-showcase__description p {
    font-size: 13px !important;
    line-height: 1.9 !important;
  }

  .aw-feature-process > div {
    grid-template-columns: 25px minmax(0, 1fr) 45px;
  }

  .aw-feature-bulk__row {
    grid-template-columns: 24px minmax(0, 1fr) 48px !important;
  }

  .aw-feature-bulk__row > b {
    width: 48px !important;
    min-width: 48px !important;
  }

  .aw-feature-template__item {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .aw-feature-template__item > b {
    grid-column: 2;
  }

  .aw-top-feature-showcase__more {
    margin-top: 30px;
  }

}

/*********************************
TOP 記事制作がどう変わるか
*********************************/

.aw-top-change,
.aw-top-change * {
  box-sizing: border-box;
}

.aw-top-change__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.aw-top-change__panel {
  min-width: 0;
  padding: 32px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  background: #fff;
}

.aw-top-change__head {
  margin-bottom: 26px;
}

.aw-top-change__head > span {
  display: block;
  margin-bottom: 8px;
  color: #8a96a2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .14em;
}

.aw-top-change__panel--after .aw-top-change__head > span {
  color: #2563eb;
}

.aw-top-change__head h3 {
  margin: 0 0 10px !important;
  color: #0f2940 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

.aw-top-change__head p {
  margin: 0 !important;
  color: #707d89 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}


/*********************************
これまで
*********************************/

.aw-top-change__flow {
  display: flex;
  flex-direction: column;
}

.aw-top-change__step {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 11px 14px;
  border: 1px solid #e3e8ed;
  border-radius: 7px;
  background: #fafbfc;
}

.aw-top-change__step > span {
  display: flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2f6;
  color: #778695;
  font-size: 9px;
  font-weight: 800;
}

.aw-top-change__step > div {
  min-width: 0;
}

.aw-top-change__step strong {
  display: block;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.aw-top-change__step small {
  display: block;
  margin-top: 2px;
  color: #45596b;
  font-size: 9px;
  line-height: 1.5;
}

.aw-top-change__arrow {
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px auto;
  color: #a8b3be;
  font-size: 18px;
  line-height: 18px;
}


/*********************************
AIワプレス
*********************************/

.aw-top-change__panel--after {
  border-color: #cddcf5;
}

.aw-top-change__start {
  padding: 18px;
  border: 1px solid #cbdaf4;
  border-radius: 8px;
  background: #f7f9ff;
}

.aw-top-change__start small {
  display: block;
  margin-bottom: 4px;
  color: #2563eb;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.aw-top-change__start strong {
  display: block;
  margin-bottom: 10px;
  color: #0f2940;
  font-size: 16px;
  font-weight: 800;
}

.aw-top-change__start > div {
  padding: 12px 13px;
  border: 1px solid #d8e1ec;
  border-radius: 6px;
  background: #fff;
  color: #34495b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.aw-top-change__main-arrow {
  display: block;
  width: 24px;
  height: 24px;
  margin: 10px auto;
  color: #2563eb;
  font-size: 24px;
  line-height: 24px;
}

.aw-top-change__auto {
  padding: 20px;
  border: 1px solid #bcd2fa;
  border-radius: 8px;
  background: #f4f7ff;
}

.aw-top-change__auto-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}

.aw-top-change__auto-head span {
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.aw-top-change__auto-head strong {
  color: #0f2940;
  font-size: 12px;
  font-weight: 800;
}

.aw-top-change__auto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.aw-top-change__auto-grid > div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #dce5f4;
  border-radius: 6px;
  background: #fff;
}

.aw-top-change__auto-grid span {
  display: flex;
  flex: 0 0 21px;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.aw-top-change__auto-grid strong {
  min-width: 0;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.aw-top-change__finish {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #cfe3da;
  border-radius: 8px;
  background: #f7fcf9;
}

.aw-top-change__finish > span {
  display: flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1f9a73;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.aw-top-change__finish > div {
  min-width: 0;
}

.aw-top-change__finish strong {
  display: block;
  color: #345d50;
  font-size: 14px;
  font-weight: 800;
}

.aw-top-change__finish small {
  display: block;
  margin-top: 3px;
  color: #82938d;
  font-size: 9px;
  line-height: 1.5;
}


/*********************************
最後の一言
*********************************/

.aw-top-change__message {
  max-width: 900px;
  margin: 36px auto 0;
  padding: 20px 24px;
  border-top: 1px solid #dce3ea;
  border-bottom: 1px solid #dce3ea;
  text-align: center;
}

.aw-top-change__message p {
  margin: 0 !important;
  color: #586775 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

.aw-top-change__message strong {
  color: #0f2940;
  font-weight: 800;
}


/*********************************
SP
*********************************/

@media screen and (max-width: 767px) {

  .aw-top-change__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aw-top-change__panel {
    padding: 24px 20px;
  }

  .aw-top-change__head h3 {
    font-size: 19px !important;
  }

  .aw-top-change__auto-grid {
    grid-template-columns: 1fr;
  }

  .aw-top-change__message {
    margin-top: 28px;
    padding: 18px 12px;
  }

  .aw-top-change__message p {
    font-size: 14px !important;
  }

}



.footer-company{
	font-size:13px;
}

/*********************************
TOP こんな方に向いています
*********************************/

.aw-top-target,
.aw-top-target * {
  box-sizing: border-box;
}

.aw-top-target__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

.aw-top-target__item {
  display: flex;
  min-width: 0;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid #e0e6ec;
  border-radius: 9px;
  background: #fff;
}

.aw-top-target__icon {
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d9e5f5;
  border-radius: 8px;
  background: #f4f8fd;
  color: #2563eb;
}

.aw-top-target__icon .dashicons {
  width: 21px;
  height: 21px;
  font-size: 21px;
  line-height: 21px;
}

.aw-top-target__content {
  min-width: 0;
}

.aw-top-target__content h3 {
  margin: 0 0 9px !important;
  color: #172b3d !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.6 !important;
}

.aw-top-target__content p {
  margin: 0 !important;
  color: #707c87 !important;
  font-size: 12px !important;
  line-height: 1.85 !important;
}

@media screen and (max-width: 1000px) {

  .aw-top-target__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media screen and (max-width: 600px) {

  .aw-top-target__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aw-top-target__item {
    gap: 14px;
    padding: 21px 18px;
  }

  .aw-top-target__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .aw-top-target__icon .dashicons {
    width: 19px;
    height: 19px;
    font-size: 19px;
    line-height: 19px;
  }

  .aw-top-target__content h3 {
    font-size: 14px !important;
  }

}
/* AIワプレス：記事生成パフォーマンス */

.aw-performance,
.aw-performance * {
  box-sizing: border-box;
}

.aw-performance {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid #d4dde7;
  border-bottom: 1px solid #d4dde7;
  background: #f2f5f8;
  color: #1b2633;
}



.aw-performance__inner {
  width: min(calc(100% - 48px), 1170px);
  margin: 0 auto;
  padding: 70px 0 82px;
}

.aw-performance__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
  align-items: center;
  gap: 62px;
}

.aw-performance__copy {
  min-width: 0;
}

.aw-performance__eyebrow {
  margin: 0 0 17px;
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.22em;
}

.aw-performance__title {
  margin: 0 !important;
  color: #102a43 !important;
  font-size: clamp(38px, 3.7vw, 52px) !important;
  font-weight: 760;
  line-height: 1.3 !important;
  letter-spacing: -0.045em;
}

.aw-performance__title span,
.aw-performance__title strong {
  display: block;
}

.aw-performance__title span {
  font-size: 0.7em;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.aw-performance__title strong {
  margin-top: 10px;
  color: #2563eb;
  font-weight: 800;
}

.aw-performance__lead {
  margin: 27px 0 0!important;
  color: #526172;
  font-size: 15px;
  line-height: 2;
}

.aw-performance__daily {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 58px;
  margin-top: 27px;
  padding: 12px 17px 12px 13px;
  border: 1px solid #c7d2df;
  border-left: 3px solid #2563eb;
  background: #fff;
}

.aw-performance__daily-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #13795b;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.aw-performance__daily-copy {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 9px;
  min-width: 0;
  line-height: 1.5;
}

.aw-performance__daily-copy span,
.aw-performance__daily-copy strong,
.aw-performance__daily-copy small {
  white-space: nowrap;
  word-break: keep-all;
}

.aw-performance__daily-copy span {
  color: #425166;
  font-size: 13px;
  font-weight: 650;
}

.aw-performance__daily-copy strong {
  color: #102a43;
  font-size: 16px;
  font-weight: 800;
}

.aw-performance__daily-copy small {
  color: #526172;
  font-size: 12px;
  font-weight: 650;
}

.aw-performance__run {
  position: relative;
  overflow: hidden;
  border: 1px solid #b9c7d6;
  border-radius: 5px;
  background: #fff;
}

.aw-performance__run::after {
  content: "100";
  position: absolute;
  right: -10px;
  bottom: -58px;
  z-index: 0;
  color: rgba(16, 42, 67, 0.035);
  font-size: 180px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.aw-performance__run-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  padding: 0 17px;
  border-bottom: 1px solid #d5dee8;
  background: #e8edf3;
}

.aw-performance__run-head > div {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
}

.aw-performance__run-head span {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a7b4c2;
}

.aw-performance__run-head strong {
  overflow: hidden;
  margin-left: 7px;
  color: #5d6c7e;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aw-performance__run-head small {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 24px;
  margin-left: 12px;
  padding: 3px 8px;
  border: 1px solid #b8d7ca;
  background: #f4faf7;
  color: #13795b;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.aw-performance__run-head small::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
}

.aw-performance__run-body {
  position: relative;
  z-index: 1;
  padding: 31px 29px 27px;
}

.aw-performance__time-flow {
  display: grid;
  grid-template-columns: 82px minmax(40px, 1fr) 82px;
  align-items: center;
  gap: 14px;
}

.aw-performance__time {
  text-align: center;
}

.aw-performance__time-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-bottom: 7px;
  border: 1px solid #c8d3df;
  border-radius: 50%;
  background: #fff;
}

.aw-performance__time-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aw-performance__time--night .aw-performance__time-icon {
  color: #415a77;
}

.aw-performance__time--night .aw-performance__time-icon svg {
  fill: currentColor;
  stroke: none;
}

.aw-performance__time--morning .aw-performance__time-icon {
  color: #b7791f;
}

.aw-performance__time small,
.aw-performance__time strong {
  display: block;
  white-space: nowrap;
}

.aw-performance__time small {
  color: #7b8795;
  font-size: 9px;
  font-weight: 650;
}

.aw-performance__time strong {
  margin-top: 2px;
  color: #102a43;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.aw-performance__time-line {
  position: relative;
  height: 3px;
  background: #d6dee8;
}

.aw-performance__time-line::before,
.aw-performance__time-line::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  outline: 1px solid #aebdcd;
  background: #2563eb;
}

.aw-performance__time-line::before {
  left: -1px;
}

.aw-performance__time-line::after {
  right: -1px;
}

.aw-performance__time-line span,
.aw-performance__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #2563eb;
  transform-origin: left center;
}

.aw-performance__complete {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 25px;
  padding: 24px 23px;
  border: 1px solid #c9d4df;
  border-left: 3px solid #2563eb;
  background: #f8fafc;
}

.aw-performance__complete-number {
  display: flex;
  align-items: baseline;
  min-width: 128px;
  color: #102a43;
}

.aw-performance__complete-number > span {
  font-size: 62px;
  font-weight: 820;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.aw-performance__complete-number small {
  margin-left: 7px;
  color: #526172;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.aw-performance__complete-copy {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding-left: 21px;
  border-left: 1px solid #d2dbe5;
}

.aw-performance__complete-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #13795b;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.aw-performance__complete-copy strong,
.aw-performance__complete-copy small {
  display: block;
}

.aw-performance__complete-copy strong {
  color: #102a43;
  font-size: 12px;
  line-height: 1.5;
}

.aw-performance__complete-copy small {
  margin-top: 3px;
  color: #7b8795;
  font-size: 9px;
  line-height: 1.5;
}

.aw-performance__progress {
  height: 3px;
  margin-top: 20px;
  overflow: hidden;
  background: #d8e0e9;
}

.aw-performance__progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #7b8795;
  font-size: 9px;
  font-weight: 700;
}

.aw-performance__progress-meta strong {
  color: #102a43;
}

.aw-performance__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}

.aw-performance__stat {
  min-width: 0;
  padding: 32px 22px 28px;
  border: 1px solid #c5d0dc;
  border-top: 3px solid #102a43;
  background: #fff;
  text-align: center;
}

.aw-performance__stat--primary {
  border-color: #102a43;
  border-top-color: #333;
  background: #102a43;
}

.aw-performance__stat p {
  margin: 0 0 12px;
  color: #6f7d8d;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.aw-performance__stat > strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 61px;
  color: #102a43;
  font-size: clamp(39px, 4vw, 55px);
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.aw-performance__stat > strong small {
  margin-right: 5px;
  color: #738195;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
}

.aw-performance__stat > strong span {
  margin: 0 2px;
  color: #5b6a7d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.aw-performance__stat > strong [data-aw-count] {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.aw-performance__stat > div {
  margin-top: 9px;
  color: #657386;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}

.aw-performance__stat--primary p {
  color: #9fb1c3;
}

.aw-performance__stat--primary > strong {
  color: #fff;
}

.aw-performance__stat--primary > strong small {
  color: #b8c6d4;
}

.aw-performance__stat--primary > strong span {
  color: #d8e2ec;
}

.aw-performance__stat--primary > div {
  color: #c0ccd8;
}

.aw-performance__note {
  max-width: 910px;
  margin: 23px auto 0!important;
  color: #788596;
  font-size: 9px;
  line-height: 1.75;
  text-align: center;
}

/* 要素は初めから表示し、ゲージだけ動かす */
.aw-performance-js .aw-performance__time-line span,
.aw-performance-js .aw-performance__progress span {
  transform: scaleX(0);
}

.aw-performance.is-visible .aw-performance__time-line span {
  transform: scaleX(1);
  transition: transform 1.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.aw-performance.is-visible .aw-performance__progress span {
  transform: scaleX(1);
  transition: transform 1.7s 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1120px) {
  .aw-performance__intro {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .aw-performance__copy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .aw-performance__lead,
  .aw-performance__daily {
    margin-right: auto;
    margin-left: auto;
  }

  .aw-performance__run {
    width: min(100%, 680px);
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  .aw-performance__inner {
    padding: 80px 0 68px;
  }

  .aw-performance__stats {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    margin: 52px auto 0;
  }
}

@media (max-width: 600px) {
  .aw-performance__inner {
    width: calc(100% - 36px);
    padding: 66px 0 58px;
  }

  .aw-performance::before {
    width: calc(100% - 36px);
  }

  .aw-performance__eyebrow {
    margin-bottom: 13px;
    font-size: 9px;
    letter-spacing: 0.17em;
  }

  .aw-performance__title {
    font-size: 34px !important;
  }

  .aw-performance__title span {
    font-size: 0.68em;
  }

  .aw-performance__lead {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.9;
  }

  .aw-performance__lead br {
    display: none;
  }

  .aw-performance__daily {
    align-items: flex-start;
    max-width: none;
  }

  .aw-performance__daily-copy {
    display: grid;
    gap: 2px;
  }

  .aw-performance__run-head {
    padding: 0 12px;
  }

  .aw-performance__run-head strong {
    font-size: 8px;
  }

  .aw-performance__run-head small {
    margin-left: 8px;
    padding: 3px 6px;
    font-size: 8px;
  }

  .aw-performance__run-body {
    padding: 24px 16px 20px;
  }

  .aw-performance__time-flow {
    grid-template-columns: 66px minmax(30px, 1fr) 66px;
    gap: 8px;
  }

  .aw-performance__time-icon {
    width: 39px;
    height: 39px;
  }

  .aw-performance__time small,
  .aw-performance__time strong {
    font-size: 8px;
  }

  .aw-performance__complete {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 21px 19px;
    text-align: center;
  }

  .aw-performance__complete-number {
    justify-content: center;
  }

  .aw-performance__complete-number > span {
    font-size: 58px;
  }

  .aw-performance__complete-copy {
    grid-template-columns: 31px minmax(0, 1fr);
    padding: 15px 0 0;
    border-top: 1px solid #d2dbe5;
    border-left: 0;
    text-align: left;
  }

  .aw-performance__note {
    margin-top: 18px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-performance-js .aw-performance__time-line span,
  .aw-performance-js .aw-performance__progress span,
  .aw-performance.is-visible .aw-performance__time-line span,
  .aw-performance.is-visible .aw-performance__progress span {
    transform: none;
    transition: none;
  }
}
.aw35,
.aw35 * {
  box-sizing: border-box;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

section.aw35 {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #102a43;
}

.aw35 .aw35__inner {
  display: block;
  width: min(calc(100% - 48px), 1170px);
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 0 46px;
}

.aw35 .aw35__header {
  display: block;
  width: 100%;
  max-width: 930px;
  margin: 0 auto 30px;
  padding: 0;
  text-align: center;
}

.aw35 .aw35__eyebrow {
  display: block;
  width: auto;
  margin: 0 0 10px;
  padding: 0;
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.2em;
  white-space: normal;
}

.aw35 .aw35__title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #102a43;
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.045em;
  text-align: center;
  white-space: normal;

}

.aw35 .aw35__title > span,
.aw35 .aw35__title > b {
  display: block;
  width: 100%;
}

.aw35 .aw35__title > span {
  margin-bottom: 5px;
  color: #52677b;
  font-size: 0.56em;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.aw35 .aw35__title > b {
  color: #102a43;
  font-weight: 800;
}

.aw35 .aw35__lead {
  display: block;
  width: 100%;
  max-width: 850px;
  margin: 15px auto 0;
  padding: 0;
  color: #62778b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  text-align: center;
  white-space: normal;
}

.aw35 .aw35__compare {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(260px, auto);
  align-items: stretch;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8e1ea;
  background: linear-gradient(
    90deg,
    #ffffff 0,
    #ffffff 50%,
    #f4f7fc 50%,
    #f4f7fc 100%
  );
}

.aw35 .aw35__side {
  float: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  width: auto;
  min-width: 0;
  max-width: none;
  min-height: 260px;
  height: 100%;
  margin: 0;
  padding: 27px 34px 24px;
  clear: none;
  text-align: center;
}

.aw35 .aw35__side--market {
  background: #ffffff;
}

.aw35 .aw35__side--eco {
  background: #f4f7fc;
}

.aw35 .aw35__side--eco::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #2563eb;
}

.aw35 .aw35__side-head {
  display: block;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0;
}

.aw35 .aw35__side-head > span {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  padding: 0;
  color: #7b8fa3;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: center;
  white-space: normal;
}

.aw35 .aw35__side--eco .aw35__side-head > span {
  color: #2563eb;
}

.aw35 .aw35__side-head > p {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #334e68;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
  white-space: normal;
}

.aw35 .aw35__price {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 88px;
  margin: 5px 0 0;
  padding: 0;
}

.aw35 .aw35__price > span {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  margin: 0 13px 0 0;
  padding: 0;
  color: #71869a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.aw35 .aw35__price > div {
  display: flex;
  flex: 0 1 auto;
  align-items: baseline;
  justify-content: center;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.aw35 .aw35__price b,
.aw35 .aw35__price small {
  display: inline-block;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
}

.aw35 .aw35__price b {
  font-weight: 850;
  letter-spacing: -0.065em;
}

.aw35 .aw35__price--market b {
  color: #334e68;
  font-size: clamp(44px, 4.4vw, 60px);
}

.aw35 .aw35__price--market small {
  margin-left: 8px;
  color: #62778b;
  font-size: 13px;
  font-weight: 750;
}

.aw35 .aw35__price--eco b {
  color: #2563eb;
  font-size: clamp(66px, 7vw, 90px);
}

.aw35 .aw35__price--eco small {
  margin-right: 6px;
  margin-left: 6px;
  color: #52677b;
  font-size: 14px;
  font-weight: 750;
}

.aw35 .aw35__caption {
  display: block;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  color: #71869a;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  white-space: normal;
}

.aw35 .aw35__divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 0;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  background: transparent;
  pointer-events: none;
}

.aw35 .aw35__divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  transform: none;
  background: #cbd5df;
}

.aw35 .aw35__divider > span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 1px solid #b9c7d4;
  border-radius: 50%;
  background: #ffffff;
  color: #102a43;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}

.aw35 .aw35__hundred {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 28px;
  margin: 0;
  padding: 17px 25px;
  background: #102a43;
  color: #ffffff;
}

.aw35 .aw35__hundred > div {
  display: flex;
  align-items: baseline;
  gap: 13px;
  min-width: 0;
}

.aw35 .aw35__hundred > div > span {
  color: #68a0ff;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.aw35 .aw35__hundred > div > p {
  margin: 0;
  color: #d7e2ec;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.aw35 .aw35__hundred-price {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  margin: 0;
  padding: 0;
  color: #ffffff;
  white-space: nowrap;
}

.aw35 .aw35__hundred-price small {
  margin-right: 4px;
  color: #b8c8d8;
  font-size: 12px;
  font-weight: 700;
}

.aw35 .aw35__hundred-price b {
  color: #ffffff;
  font-size: 29px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
}

.aw35 .aw35__hundred-price span {
  margin-left: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 750;
}

.aw35 .aw35__process {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  border: 1px solid #d8e1ea;
  background: #ffffff;
}

.aw35 .aw35__process-title {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 15px 20px;
  border-right: 1px solid #d8e1ea;
  color: #102a43;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.aw35 .aw35__process ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw35 .aw35__process li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 51px;
  margin: 0;
  padding: 9px 8px;
  color: #52677b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  list-style: none;
}

.aw35 .aw35__process li + li {
  border-left: 1px solid #e1e8ef;
}

.aw35 .aw35__process li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  border-radius: 50%;
  background: #e8f8f2;
  color: #13845f;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.aw35 .aw35__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 15px;
  margin: 17px 0 0;
  padding: 0;
  color: #62778b;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.aw35 .aw35__notice > b {
  color: #102a43;
  font-size: 15px;
  font-weight: 750;
}

.aw35 .aw35__notice > p {
  margin: 0;
  padding-left: 15px;
  border-left: 1px solid #cbd5df;
	font-size:14px;
	color:#333;
}

.aw35 .aw35__note {
  display: block;
  width: 100%;
  max-width: 1050px;
  margin: 10px auto 0;
  padding: 0;
  color: #8798a9;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 900px) {
  .aw35 .aw35__compare {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 1fr;
    background: #ffffff;
  }

  .aw35 .aw35__divider {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 0;
    height: 0;
    transform: translateY(-50%);
    border: 0;
  }

  .aw35 .aw35__divider::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
    transform: none;
  }

  .aw35 .aw35__process {
    grid-template-columns: minmax(0, 1fr);
  }

  .aw35 .aw35__process-title {
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid #d8e1ea;
  }

  .aw35 .aw35__process ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aw35 .aw35__process li:nth-child(4) {
    border-top: 1px solid #e1e8ef;
    border-left: 0;
  }

  .aw35 .aw35__process li:nth-child(5) {
    border-top: 1px solid #e1e8ef;
  }
}

@media (max-width: 620px) {
  .aw35 .aw35__inner {
    width: calc(100% - 36px);
    padding: 47px 0 37px;
  }

  .aw35 .aw35__header {
    margin-bottom: 26px;
  }

  .aw35 .aw35__title {
    font-size: 32px;
  }

  .aw35 .aw35__title > span {
    font-size: 0.62em;
  }

  .aw35 .aw35__lead {
    font-size: 13px;
  }

  .aw35 .aw35__side {
    min-height: 214px;
    padding: 24px 16px 21px;
  }

  .aw35 .aw35__price--market b {
    font-size: 43px;
  }

  .aw35 .aw35__price--market small {
    font-size: 11px;
  }

  .aw35 .aw35__price--eco b {
    font-size: 72px;
  }

  .aw35 .aw35__hundred,
  .aw35 .aw35__hundred > div {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .aw35 .aw35__hundred {
    padding: 16px 18px;
  }

  .aw35 .aw35__process ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aw35 .aw35__process li:nth-child(3),
  .aw35 .aw35__process li:nth-child(5) {
    border-left: 0;
  }

  .aw35 .aw35__process li:nth-child(4) {
    border-left: 1px solid #e1e8ef;
  }

  .aw35 .aw35__process li:nth-child(n + 3) {
    border-top: 1px solid #e1e8ef;
  }

  .aw35 .aw35__process li:last-child {
    grid-column: 1 / -1;
  }

  .aw35 .aw35__notice {
    flex-direction: column;
    gap: 4px;
  }

  .aw35 .aw35__notice > p {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 390px) {
  .aw35 .aw35__title {
    font-size: 28px;
  }

  .aw35 .aw35__price {
    flex-direction: column;
    gap: 6px;
  }

  .aw35 .aw35__price > span {
    margin-right: 0;
  }

  .aw35 .aw35__price--market b {
    font-size: 39px;
  }
}
