@charset "UTF-8";
/* CSS Document */ :root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --brand: #C09F3C;
  --brand-weak: #e6f3f1;
  --card: #fafafa;
  --line: #e5e7eb;
  --radius: 16px;
  --shadow: 0 3px 20px rgba(0, 0, 0, .06);
  --maxw: 880px;
}
* {
  box-sizing: border-box
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-optical-sizing: auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block
}
a {
  color: var(--brand);
  text-decoration: none
}
a:hover {
  text-decoration: underline
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 18px 72px
}
header.hero {
  position: relative;
  padding: 0 0 18px
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 60%;
  z-index: -1;
}
.eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: .06em;
  padding: .35em .65em;
  border-radius: 999px
}
h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: .6rem 0 1rem;
  line-height: 1.2
}
.lead {
  font-size: 110%;
  color: #374151;
	margin-top: 20px;
}
/* 単一カラム */
main {
  display: block;
  margin-top: 10px
}
.card {
  background: var(--bg);
  border: none;
}
/* Flow */
section.flow {
  margin-top: 22px;
}
.flow-h2 {
  font-size: clamp(1.4rem, 2vw, 1.4rem);
  margin: 20px 0 21px;
}
.flow-intro {
  margin: 0 0 -20px;
  font-size: 1.05rem;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow)
}
.step .body {
  padding: 16px 16px 10px
}

.step .body {
   width: 70%;
	float: left
}

/* 画像：本文の下に小さく表示 */
.step .media {
  width: 30%;
	float: left;
  background: #f3f4f6;
  overflow: hidden;
}
.step .media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
@media(max-width:600px) {
  .step .media {
    width: 85%
  }
}
.step-tittle-box {
  width: 100%;
  float: left;
  clear: both;
  background: var(--brand);
  color: var(--bg);
  margin-bottom: 20px;
}
.badge {
  font-optical-sizing: auto;
  width: auto;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  float: left;
  padding: 15px 20px 5px;
}
.h3-step-title {
  font-size: 1.2rem;
  width: auto;
  float: left;
  padding: 15px 5px 8px;
  font-weight: bold;
}
.step p {
  margin: 0;
  color: #4b5563;
  font-size: .98rem;
  line-height: 1.7
}
.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}
.meta .tag {
  font-size: .85rem;
  color: #0f172a;
  background: #eef2ff;
  border: 1px solid #dbe3ff;
  padding: .25em .55em;
  border-radius: 999px
}

/* 矢印コネクタ（下向き） */
.connector {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  margin: 10px 0
}
.connector svg {
  width: 50px;
  height: 50px
}
.connector svg path {
  fill: var(--brand)
}
/* CTA / Note */
.cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .8em 1.1em;
  border-radius: 12px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700
}
.btn--ghost {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand)
}
.btn:hover {
  opacity: .92;
  text-decoration: none
}
.note {
  font-size: 1rem;
  margin-top: 16px
}
/* 概要・強み（縦一列で下に） */
aside.info {
  margin-top: 22px
}
aside.info h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.3vw, 1.4rem)
}
aside.info ul {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9
}
aside.info hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0
}


.list_test-wrap {
    list-style:  none;      /* デフォルトのアイコンを消す */
    margin:  0;             /* デフォルト指定上書き */
    padding: 0;             /* デフォルト指定上書き */
	font-size: 105%
}

.list_test-wrap li {
    margin: 10px 0
}


.list_maru:before{
    content:  "";     /* 空の要素作成 */
    width:  10px;               /* 幅指定 */
    height:  10px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: #000000;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: -1px;                  /* 位置調整 */
    margin-right: 5px;          /* 余白指定 */
}

details{
    margin-top: 25px;
		font-size: 105%;
	margin-left: 10px
}




