@charset "UTF-8";
/* ----------------------------------------------------------------------
ひらいだし君の特徴
---------------------------------------------------------------------- */
:root {
  --blue: #1a6fb5;
  --blue-dark: #0d4f8a;
  --blue-mid: #2a7fcf;
  --blue-light: #e8f2fb;
  --cyan: #00b4d8;
  --green: #3cb34a;
  --gray-bg: #f2f4f7;
  --gray-light: #eaecf0;
  --text: #2c2c2c;
  --text-mid: #555;
  --text-light: #888;
  --white: #fff;
  --radius: 8px;
  /* 左右の余白：フルHD(約1920px)で片側約257px、画面が狭くなると比例縮小、最小20px */
  --gutter: clamp(20px, 15.34vw - 37.5px, 320px);
}

/* ===== LAYOUT ===== */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
	width:90%;
}

.sec-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

/* ===== INTRO ===== */
.intro-sec {
  background: var(--white);
}

/* 上段：左画像 + 右テキスト */
.intro-grid {
  display: flex;
  gap: clamp(1.5rem, 5vw, 8rem);
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.intro-ss {
  width: clamp(200px, 46%, 561px);
  flex-shrink: 0;
  aspect-ratio: 561/355;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
}

.intro-ss img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-body {
  flex: 1;
}

.intro-body h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.intro-body p {
  font-size: 1.8rem;
  line-height: 1.9;
}

.intro-body p + p {
  margin-top: 1em;
}

/* 下段：CTAカード2枚横並び */
.cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.cta-block {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: clamp(70px, 9vw, 110px);
}

.cta-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-thumb {
  width: clamp(80px, 13%, 160px);
  flex-shrink: 0;
  background: linear-gradient(160deg, #b8cfe0, #7aacc8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.cta-body {
  flex: 1;
  background: linear-gradient(135deg, #2a8de0, #0d4f8a);
  color: var(--white);
  padding: clamp(0.75rem, 1.5vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.4rem, 0.8vw, 0.7rem);
}

.cta-body h3 {
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  font-weight: 700;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--white);
  color: var(--blue);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 700;
  padding: 0.4em 1em;
  border-radius: 4px;
  width: fit-content;
}

.cta-btn::after {
  content: "❯";
  font-size: 0.7em;
}

/* ===== FLOW ===== */
.flow-sec {
  margin-top: 12rem;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.flow-step {
  position: relative;
}

.flow-step-label {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  font-size: 3.2rem;
  font-weight: bold;
  color: #063681;
  transform: translateX(-50%);
  width: 110%;
  text-align: center;
  -webkit-text-stroke: 6px #ffffff;
  text-stroke: 6px ffffff;
  paint-order: stroke;
}

.flow-arrow {
  display: flex;
  color: #063681;
  font-size: 35px;
  line-height: 0;
  align-items: center;
  align-self: center;
  letter-spacing: -24px;
}

.flow-arrow img {
  display: block;
}

.flow-desc {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  color: var(--text-mid);
}

/* ===== REASON ===== */
.reason-sec {
  margin-top: 18rem;
}

.reason-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7.5rem;
  margin-top: 2rem;
}

.reason-photo {
  width: 37%;
}
.reason-photo img{
	width:100%; border-radius:8px;
}

.reason-text {
  width: 57.5%;
}

.reason-text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.reason-text p {
  font-size: 1.8rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.reason-cards {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.reason-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.r-num {
  position: absolute;
  top: 0;
  left: 50%; /* 画像の上端ラインの中央に配置 */
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
}

.r-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 420/250;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.25rem;
  margin: 0 auto;
  overflow: hidden;
}

.r-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 外枠は文字部分のカードだけに付け、画像をその上に重ねる */
.r-text {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto; /* 画像の下端と少し重ねる */
  padding: 22px 26px 22px; /* 重なり分(24px)＋余白(20px)で文字が画像に隠れない */
  border: 1px solid #ccc;
  border-radius: var(--radius);
  text-align: left;
}

.r-text h4 {
  text-align: center;
}

.reason-card h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 1.8rem;
  line-height: 1.85;
}

/* ===== PROBLEM ===== */
.problem-sec {
  margin-top: 18.5rem;
}

.problem-grid {
  position: relative;
}

.prob-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prob-bubble {
  padding: 12px 22px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prob-bubble.bubble01 {
  background: url(../images/feature_prob_bubble01.svg) no-repeat center center/cover;
  width: 46rem;
  height: 19.2rem;
  top: 1.3rem;
  left: 14.7rem;
}

.prob-bubble.bubble02 {
  background: url(../images/feature_prob_bubble02.svg) no-repeat center center/cover;
  width: 46rem;
  height: 19.2rem;
  right: 10.3rem;
  top: 2.7rem;
}

.prob-bubble.bubble03 {
  background: url(../images/feature_prob_bubble03.svg) no-repeat center center/cover;
  width: 51.3rem;
  height: 17.9rem;
  bottom: 9rem;
}

.prob-bubble.bubble04 {
  background: url(../images/feature_prob_bubble04.svg) no-repeat center center/cover;
  width: 46.5rem;
  height: 17.9rem;
  right: 0;
  bottom: 4.3rem;
}

.prob-figure {
  width: 37.2rem;
  margin: 12.2rem auto 2rem;
}

.prob-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prob-msg {
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 700;
}

.prob-msg strong {
  color: #000;
  font-weight: 700;
}

/* ===== FEATURES ===== */
.feat-sec {
  margin-top: 17rem;
}

.feat-item {
  display: grid;
  grid-template-columns: 37fr 60fr;
  gap: 4rem;
  background: #f2f6fa;
  border-radius: var(--radius);
  padding: 5.2rem;
  margin-bottom: 3.8rem;
}

.feat-item:last-child {
  margin-bottom: 0;
}

.feat-item.rev .feat-media {
  order: 2;
}

.feat-item.rev .feat-body {
  order: 1;
}

.feat-badge {
  display: inline-block;
  background: #3189e0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 12px;
  border-radius: 20px;
  margin-bottom: 2.4rem;
  margin-top: 3.2rem;
  letter-spacing: 0.1em;
}

.feat-body h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.feat-body h4 {
  font-size: 2rem;
  color: #3189e0;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.6;
}

.feat-body p {
  line-height: 1.95;
}

/* ===== COMPARE ===== */
.compare-sec {
  margin-top: 18.5rem;
}

.compare-lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 16px;
  color: var(--text-mid);
}

table.ctbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

table.ctbl th {
  padding: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  width: 25%;
}

/* 1列目（ソフト）：青・白枠 */
table.ctbl th:first-child {
  background: #77b7e5;
  border: 2px solid #fff;
  border-right: none;
}

/* ひらいだしくん：緑ヘッダー（背景で上辺を表現、枠は出さない） */
table.ctbl th.th-h {
  background: var(--green);
  border: none;
}

/* 他社A・B：グレー・白枠 */
table.ctbl th.th-a, table.ctbl th.th-b {
  background: #b3b3b3;
  border: 2px solid #fff;
}

table.ctbl td {
  padding: 15px 14px;
  border: 1px solid #e6eaee;
  text-align: center;
  background: var(--white);
}

/* 1列目（ラベル）：青・白枠 */
table.ctbl td:first-child {
  background: #77b7e5;
  color: #fff;
  font-weight: 500;
  border: 2px solid #fff;
  border-right: none;
}

/* ひらいだしくん列：白地＋緑の縦枠（列全体を緑で囲む） */
table.ctbl td.td-h {
  background: var(--white);
  border-top: 1px solid #e6eaee;
  border-bottom: 1px solid #e6eaee;
  border-left: none;
  border-right: none;
  box-shadow: inset 3px 0 0 var(--green), inset -3px 0 0 var(--green);
}

table.ctbl tbody tr:last-child td.td-h {
  box-shadow: inset 3px 0 0 var(--green), inset -3px 0 0 var(--green), inset 0 -3px 0 var(--green);
}

/* 緑枠の右隣（他社A）の薄グレー罫線を消し、緑ラインを上書き表示 */
table.ctbl td.td-h + td {
  border-left: none;
}

table.ctbl th.th-h + th {
  border-left: none;
}

.circ {
  color: var(--green);
  font-weight: 700;
}

.circ.g {
  color: var(--green);
}

/* ===== MORE ===== */
.more-sec {
  margin-top: 11rem;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 7rem;
}

.more-card {
  text-align: left;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.more-card-img img {
  display: block;
}

.more-card-label {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 16px;
}

.more-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #063681;
  color: var(--white);
  font-size: 0.6rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUuMjggNS44OSI+IDxkZWZzPiA8c3R5bGU+IC5jbHMtMSB7IGZpbGw6ICNmZmY7IH0gPC9zdHlsZT4gPC9kZWZzPiA8ZyBpZD0iX+ODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPiA8cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik00Ljk0LDIuMzVMMS4wMi4wOUMuNTctLjE3LDAsLjE2LDAsLjY4djQuNTJjMCwuNTIuNTcuODUsMS4wMi41OWwzLjkyLTIuMjZjLjQ1LS4yNi40NS0uOTIsMC0xLjE4WiIvPiA8L2c+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5px 6px;
}

.more-cta {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 10px;
}

.more-sec .cta-card {
  height: 20rem;
  padding: 2rem 0;
}

.more-sec .cta-card-title {
  margin-bottom: 2rem;
  margin-top: 3rem;
}

/*-----レスポンシブ調整-----*/
@media screen and (max-width: 1440px) {
	.flow-step-label{font-size:2.8rem;}
}
@media screen and (max-width: 1024px) {
	.flow-step-label{font-size:1.8rem;}
	.reason-text h3 {font-size: 2.0rem;}
	.reason-card h4 {font-size: 1.8rem;}
	.reason-card p {font-size: 1.6rem;}
	.prob-bubble {	font-size: 1.8rem;}
	.prob-bubble.bubble01{width: 32rem;    height: 14rem;    top: 4rem;    left: 5rem;}
	.prob-bubble.bubble02{width: 32rem;    height: 13rem;    right: 0rem;    top: 6rem;}
	.prob-bubble.bubble03{width: 34rem;    height: 10rem;    bottom: 9rem;}
	.prob-bubble.bubble04{width: 32rem;    height: 12rem;    right: 0;    bottom: 2rem;}
	.feat-badge{margin-top:0;}
	.intro-grid{align-items:flex-start;}
	.sec-title {  font-size: 3.2rem;}
	.flow-step {width: 24rem;}
	.reason-sec {    margin-top: 11rem;}
	.problem-sec{    margin-top: 11rem;}
	.feat-sec{margin-top: 10rem;}
	.compare-sec {    margin-top: 11rem;}
}
@media screen and (max-width: 820px){
	.intro-grid{align-items:flex-start;}
	.intro-body h2 {font-size: 2.6rem;}
	.flow-step-label {  font-size: 1.2rem;  }
	.flow-step {width: 18rem;}
	.flow-desc,.reason-card h4{font-size: 1.6rem;}
	.r-text {font-size: 1.6rem;padding: 1.4rem;}
	.r-num{font-size:2.2rem; width:40px; height:40px;}
	.prob-bubble {	font-size: 1.4rem;}
	.prob-bubble.bubble01 {   width: 27rem;	height: 11rem;}
	.prob-bubble.bubble02 {   width: 26rem;	height: 11rem;}
	.prob-bubble.bubble03 {   width: 29rem;	height: 10rem;}
	.prob-bubble.bubble04 {   width: 25rem;height: 9rem;}
	.prob-msg {	font-size: 2.0rem;}
	.feat-body h3 {		font-size: 2.2rem;}
	.feat-body h4 {		font-size: 1.6rem;}
	.feat-body p {    line-height: 1.8;}
	.feat-item {    gap: 2rem;    padding: 3rem;    margin-bottom: 2rem;}
	.feat-badge{margin-bottom:1rem;}
	.compare-lead{text-align:left;}
	.more-card-label {		font-size: 1.4rem;}
	.more-cta{font-size:1.8rem;}
}
@media screen and (max-width: 520px){
	.intro-grid {  flex-wrap: wrap;    }
	.intro-ss {		width: 100%;}
	.intro-body h2 {        font-size: 2.0rem;  line-height: 1.8; margin-bottom:0.5rem;  }
	.intro-body p {    font-size: 1.4rem;    line-height: 1.8;}
	.intro-body p + p {    margin-top: 0.5rem;}
	.cta-inner{margin-top: 7.5rem;}
	.flow-sec {    margin-top: 11rem;}
	.sec-title {        font-size: 2.4rem;  letter-spacing: 0.03em;  }
	.flow-steps {		display: block;}
	.flow-step {  width: 94%;        margin: 0 auto 3rem;  }
	.flow-step-label {        font-size: 2.4rem;    }
	.flow-arrow{position: absolute;  left: 44%; transform: rotate(90deg);    margin-top: -6rem;}
	.flow-arrow span:nth-of-type(-n+3){display:none;}
	.flow-desc {        font-size: 1.4rem;        text-align: left;        line-height: 1.7;    }
	.reason-top{display:block;margin-bottom: 4.5rem;}
	.reason-photo {    width: 100%;margin-bottom: 2rem;}
	.reason-text {    width: 100%;}
	.reason-text h3{margin-bottom:1rem;}
	.reason-text p {    font-size: 1.4rem;		line-height: 1.7;}
	.reason-cards{display:block;}
	.r-text {        padding: 1.6rem;    }
	.reason-card{margin-bottom:4rem;}
	.prob-figure {    width: 24rem;    margin: 46rem auto 2rem;}
	.prob-bubble.bubble01 {   width: 26rem;	height: 10rem;top: 0rem;  left: 1rem;}
	.prob-bubble.bubble02 {   width: 24rem;	height: 10rem; right: 0rem; top: 11rem;}
	.prob-bubble.bubble03 {   width: 26rem;	height: 10rem;bottom: 39rem;background: url(../images/feature_prob_bubble01.svg) no-repeat center center/cover;}
	.prob-bubble.bubble04 {   width: 24rem;height: 10rem;right: 0; bottom: 28rem;background: url(../images/feature_prob_bubble02.svg) no-repeat center center/cover;}
	.prob-msg {    font-size: 1.6rem;text-align: left;    }
	.feat-item {grid-template-columns: 1fr; padding: 2.5rem 2.2rem;margin-bottom: 3rem;}
	.feat-body h3 {        font-size: 2.0rem;    }
	.feat-body h4{margin-bottom:8px;}
	.feat-body p {   font-size: 1.4rem;    }
	.compare-lead{font-size: 1.4rem;line-height: 1.7;        margin-bottom: 23px;  }
	.more-grid {grid-template-columns: repeat(1, 1fr);margin-bottom: 3rem;}
	.more-card{display:flex; align-items:center;}
	.more-card .more-card-img{width:12rem; height:10rem;}
	.more-card .more-card-img img {    display: block;    width: 100%;    height: 100%;    object-fit: cover;}
   .more-card-label {  width: calc(100% - 12rem);    }
	.more-cta {  font-size: 1.6rem; text-align:left;  line-height: 1.7;    }
	.table-wrap{overflow-x:scroll;width: 100vw;   margin: 0 calc(50% - 50vw);}
	.table-wrap table{width: 100%;     min-width: 780px;}
	.table-wrap table th,.table-wrap table td{font-size:10px; padding:7px;}
	.more-sec .cta-card {height: 18rem;}
	.more-sec .cta-card-title {	margin-top: 1rem;}
}

/*# sourceMappingURL=page-feature.css.map */