/*
  irusiru.jp のテーマ home.css の写しです（複製元: typedock-cms/typedock/themes/irusiru/assets/css/home.css / 5dabf51 時点）。
  irusiruslide.com は静的サイトでビルドが無いため、トンマナをそろえる手段が複製しかありません。
  トップLP側のCSSを直したときは、このファイルも同じ内容で更新してください。
  このサイト固有の見た目は css/plus.css に置き、このファイルには足しません。
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');


/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

@media screen and (max-width: 1120px) {
    html {
        overflow-x: hidden;
    }
}

body {
    overflow-x: hidden;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4em;
    color: #333;
    background-color: #F2FDFF;
}

main {
    margin-top: 120px;
}

@media screen and (max-width: 768px) {
    main {
        background-image: url(../img/personal/bg.webp);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 150%;
    }
}

@media screen and (max-width: 768px) {
    img.pc {
        display: none !important;
    }
}

img.sp {
    display: none !important;
}

@media screen and (max-width: 768px) {
    img.sp {
        display: block !important;
    }
}

@media screen and (max-width: 1120px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 1120px) {
    .sp {
        display: block;
    }
}

@media screen and (max-width: 1120px) {
    br.pc {
        display: none;
    }
}

br.sp {
    display: none;
}

@media screen and (max-width: 1120px) {
    br.sp {
        display: inline;
    }
}

.ttl {
    margin-bottom: 40px;
    font-size: 4rem;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    text-align: center;
}

@media screen and (max-width: 1120px) {
    .ttl {
        font-size: 3.2rem;
    }
}

.read {
    font-size: 1.6rem;
    line-height: 1.6;
}

.btn a {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 64px;
    display: block;
    width: 340px;
    height: 68px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s;
}

.btn a:hover {
    transform: scale(1.1);
}

.btn.orange a {
    background-color: #E96E28;
    border: 2px solid #E96E28;
    color: #fff;
    box-shadow: 0 6px 20px rgba(233, 110, 40, 0.24);
}

.btn.white a {
    color: #17AABD;
    background-color: #fff;
    border: 2px solid #17AABD;
    box-shadow: -4px 4px 30px rgba(23, 170, 189, 0.3), 0 3px 50px rgba(23, 170, 189, 0.5);
}

.btn.blue a {
    color: #fff;
    background-color: #17AABD;
    border: 2px solid #17AABD;
}


/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 72px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header__inner {
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    width: 120px;
    height: auto;
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.header__nav ul li a {
    font-weight: 500;
    transition: all 0.3s;
}

.header__nav ul li:not(.header__btn) a:hover {
    color: #0097ac;
}

.header__nav ul li.header__btn a {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #17AABD;
    display: inline-block;
}

.header__nav ul li.header__btn a:hover {
    transform: scale(1.1);
}

.header__nav ul li.header__btn.header__btn__blue a {
    color: #fff;
    background-color: #17AABD;
}

.header__nav ul li.header__btn.header__btn__white a {
    color: #17AABD;
    background-color: #fff;
}

.header .menuTrigger {
    display: none;
    position: relative;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 101;
    transition: all 0.2s ease;
}

.header .menuTrigger div {
    position: relative;
    width: 18px;
    height: 14px;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.header .menuTrigger div span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333333;
    border-radius: 10px;
    transition: all 0.4s;
    box-sizing: border-box;
    border-radius: 2px;
}

.header .menuTrigger div span:nth-of-type(1) {
    top: 0;
}

.header .menuTrigger div span:nth-of-type(2) {
    top: 6px;
}

.header .menuTrigger div span:nth-of-type(3) {
    bottom: 0;
}

.header .menuTrigger div.active span:nth-of-type(1) {
    transform: translateY(7px) translateX(0) rotate(-45deg);
    width: 18px;
    height: 2px;
}

.header .menuTrigger div.active span:nth-of-type(2) {
    opacity: 0;
}

.header .menuTrigger div.active span:nth-of-type(3) {
    transform: translateY(-5px) translateX(0) rotate(45deg);
    width: 18px;
    height: 2px;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    margin: 0 auto;
    width: 1120px;
}

.mv__layout {
    display: flex;
    align-items: stretch;
}

.mv__layout .mv__left {
    width: calc(100% - 680px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv__layout .mv__right {
    width: 680px;
}

.mv__lead {
    width: 400px;
}

/* 説明文。ロゴの塊は中央でそろえるが、この段落は行が続くので左ぞろえで読ませる。 */
.mv__catch {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.9;
    color: #344054;
    text-align: left;
}

.mv__layout .mv__left .mv__bubble {
    text-align: center;
}

/* リセットで img が display:block のため text-align では中央に寄らない。
   margin で h1・ロゴ・CTAと中央軸を揃える（全ブレークポイント共通）。 */
.mv__layout .mv__left .mv__bubble img {
    width: 220px;
    margin: 0 auto -8px;
}

/* タグライン（キャッチコピー＋ロゴ）の1枚絵。h1の中身が画像なので、
   リセットの img { display: block } と margin で中央軸を揃える。 */
.mv__layout .mv__left .mv__ttl {
    margin-top: 0;
}

.mv__layout .mv__left .mv__ttl img {
    width: 400px;
    height: auto;
    margin: 0 auto;
}

.mv__layout .mv__right .mv__movie {
    position: relative;
    height: auto;
    width: 680px;
    max-width: 100%;
}

.mv__layout .mv__right .mv__movie img {
    width: 100%;
    height: auto;
}

.mv__layout .mv__right .mv__movie iframe {
    position: absolute;
    top: 55px;
    left: 95px;
    width: 490px;
    height: 310px;
}

.mv__layout .mv__right .mv__emblem {
    text-align: center;
    margin-top: 32px;
}

/*
    ファーストビューの「作れるスライドの例」。PCは .mv__right.pc、
    SPは .mv__box.sp が親で、出し分けは親側の .pc / .sp（1120px 切替）が
    担う。ここには共通の見た目だけを書き、余白の詰めは各メディアクエリで行う。
*/
.mv__samples {
    margin-top: 0;
}

.mv__samples__label {
    display: none;
}

/*
    カルーセル用に複製した分。カルーセルになるのは768px以下だけなので、
    それより広い幅では出さない（通常のグリッドに並んで枚数が倍に見えるため）。
*/
.mv__samples__clone {
    display: none;
}

.mv__samples__note {
    /* 直上のコピーとひと塊に見せるため、間隔は詰める */
    margin-top: 2px;
    font-size: 1.2rem;
    color: #6b7a88;
    text-align: center;
}

.mv__samples__copy {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 16px;
}

.mv__samples__grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

.mv__samples__grid li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(14, 81, 96, 0.2);
}


.mv .btn {
    display: flex;
    justify-content: center;
    width: 400px;
}

.mv .btn a {
    font-size: 2.4rem;
}

.mv .btn.orange {
    margin-top: 24px;
}

.mv .btn.white {
    margin-top: 32px;
}

/* ----------------------------------------------------------
clients（導入実績）
ロゴグリッドの見た目は /corporate の .corporate-logo-grid に合わせている
（色はCSS変数でなく実値で持つ）。/corporate と違い白帯は敷かず、
トップの単色背景に馴染ませて白いロゴカードだけで見せる。
---------------------------------------------------------- */

.clients {
    margin-top: 96px;
}

.clients__inner {
    width: min(1120px, calc(100% - 4rem));
    margin-inline: auto;
}

.clients__kicker {
    margin-bottom: 10px;
    color: #087f8f;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

.clients .ttl {
    margin-bottom: 16px;
}

.clients__lead {
    margin-bottom: 32px;
    color: #526273;
    font-size: 1.7rem;
    text-align: center;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.2rem;
}

.clients__grid > div {
    display: grid;
    min-height: 8.2rem;
    padding: 1.4rem;
    place-items: center;
    border: 1px solid #e6eef0;
    border-radius: 1rem;
    background: #fff;
}

.clients__grid img {
    width: auto;
    max-width: 100%;
    max-height: 4.6rem;
}

.clients__notes {
    display: grid;
    gap: 0.3rem;
    margin: 18px auto 0;
    padding: 0;
    list-style: none;
    color: #6b7a88;
    font-size: 1.2rem;
}

.clients__notes li::before {
    content: "※";
}

/* ----------------------------------------------------------
steps（使い方の工程）
白カード＋そろった影＋等間隔3列は「AIが作った見た目」の指紋として名指し
されているため使わない。箱を外して背景に直置きし、左右を交互に振る。
番号は淡い大きな数字で見せ、ピルは使わない。
---------------------------------------------------------- */

.steps {
    padding-top: 168px;
}

.flow {
    display: grid;
    gap: 88px;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.flow__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}

.flow__item--reverse .flow__visual {
    order: 2;
}

.flow__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow__slide {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(14, 81, 96, 0.2);
}

/* 番号は、このLPが元から使っていた書式（Oswald・#0097ac・字間0.2rem）を
   そのまま大きくしただけにする */
.flow__num {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2rem;
    color: #0097ac;
}

.flow__ttl {
    margin: 6px 0 14px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
}

.flow__text {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.9;
    color: #445;
}

/*
    画面例。STEP1は入力欄、STEP2はAIが組み立てた骨組み。
    実画面に寄せた見た目で、色はプロダクトのprimary（cyan #007e8f）を使う。
*/
.steps__mock {
    width: 100%;
    padding: 16px;
    border: 1px solid #dcebee;
    border-radius: 12px;
    background-color: #fff;
    text-align: left;
    box-shadow: 0 10px 24px rgba(14, 81, 96, 0.1);
}

.steps__mock-heading {
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    color: #344054;
}

.steps__mock--input .steps__mock-text {
    min-height: 58px;
    margin: 0;
    padding: 12px;
    border: 1px solid #dcebee;
    border-radius: 8px;
    background-color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #344054;
}

.steps__mock-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.steps__mock-clip {
    display: block;
    flex: 0 0 auto;
}

.steps__mock-send {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #007e8f;
}

.steps__mock-send::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.steps__outline {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.steps__outline-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps__outline-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background-color: #eef7f9;
    font-size: 1.5rem;
    font-weight: 500;
    color: #344054;
}

.steps__outline-num {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #54A9B4;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.steps__outline-spark {
    position: absolute;
    top: -26px;
    right: -4px;
    width: 28px;
    height: 28px;
    background-color: #F5B93B;
    clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

.steps .btn {
    display: flex;
    justify-content: center;
    margin-top: 72px;
}

.steps .btn a {
    width: 460px;
}

/* ----------------------------------------------------------
reason（選ばれる理由）
ページ全体が淡い色だけで平坦だったため、このセクションだけ色のベタ帯にして
明暗のリズムを作る（グラデーションはAIらしさの指紋とされているので使わない）。
同じ型の3連続をやめ、いちばん強い理由を大きく、残り2つを小さく2列に置く。
帯の上のパネルは影を付けず、白い面だけで階層を作る。
---------------------------------------------------------- */

.reason {
    margin-top: 168px;
    padding: 88px 0 96px;
    background-color: #0e7c8a;
}

.reason__inner {
    width: min(1120px, calc(100% - 4rem));
    margin-inline: auto;
}

.reason__ttl-main {
    margin-bottom: 48px;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-align: center;
}

/* いちばん強い理由。左に実物のスライド、右に文章。面積を大きく取る */
.reason__lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 44px;
    padding: 40px;
    border-radius: 16px;
    background-color: #fff;
}

.reason__lead-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(14, 81, 96, 0.18);
}

/*
    番号ピルではなく、その理由を名指しする言葉を置く。書式は導入実績の
    キッカー（.clients__kicker）と同じにして、このページの語彙から出ない。
*/
.reason__label {
    display: block;
    margin-bottom: 10px;
    color: #087f8f;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.reason__lead-ttl {
    margin-bottom: 18px;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
}

.reason__lead-text {
    margin: 0 0 14px;
    font-size: 1.6rem;
    line-height: 1.9;
    color: #445;
}

.reason__lead-text:last-child {
    margin-bottom: 0;
}

.reason__sub {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.reason__card {
    padding: 32px 32px 36px;
    border-radius: 16px;
    background-color: #fff;
}

.reason__icon {
    display: block;
    margin-bottom: 16px;
}

.reason__card-ttl {
    margin-bottom: 12px;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
}

.reason__card-text {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #445;
}

/* ----------------------------------------------------------
使い方の動画（3ステップのセクション内。旧 .howto セクション）
独立セクションから工程セクションの中へ移したので、見出しは h3 相当まで
落とし、上の余白もセクション間ではなくブロック間の間隔にする。
`.howto__video` の名前は style.css 側の指定が参照しているため変えない。
---------------------------------------------------------- */

.steps__movie {
    margin-top: 72px;
    text-align: center;
}

.steps__movie-ttl {
    margin-bottom: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
}

.steps__movie iframe {
    width: 60vw;
    height: 33vw;
    border-radius: 10px;
}

/* 動画の下の補助リンク。矢印はCSSだけで作る（画像を増やさない） */
.steps__movie-more {
    margin-top: 20px;
    font-size: 1.5rem;
}

.steps__movie-more a {
    color: #0e7c8a;
    font-weight: 500;
    text-decoration: underline;
}

.steps__movie-more a:hover {
    text-decoration: none;
}

.steps__movie-more a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    vertical-align: 2px;
}


/* ----------------------------------------------------------
plan
---------------------------------------------------------- */

.plan {
    padding-top: 114px;
}

/*
    比較表は白カード＋細罫線のシンプルな構成（列の塗り分けはしない）。
    幅が足りない画面では .plan__wrap が横スクロールになり、機能名の列は
    sticky で画面に残す。border-collapse を separate にしているのは、
    collapse だと sticky セルに罫線が追従しないため。
*/
.plan__wrap {
    width: 90%;
    max-width: 1120px;
    margin: 40px auto 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #dcebee;
    border-radius: 12px;
    background: #fff;
}

.plan__matrix {
    width: 100%;
    /* プラン名（パーソナルプラス）と料金（5,500円/人（税込））が
       1行で収まる列幅（約180px×4）を確保する。足りない画面幅では
       横スクロールに切り替わる */
    min-width: 920px;
    border-collapse: separate;
    border-spacing: 0;
    /* 機能名列以外の4列を均等幅にする（autoだと内容量で列幅が不揃いになる） */
    table-layout: fixed;
}

.plan__matrix .plan__corner {
    width: 200px;
}

.plan__matrix th,
.plan__matrix td {
    padding: 18px 16px;
    border-top: 1px solid #e9f1f2;
    text-align: center;
    vertical-align: middle;
    font-size: 1.6rem;
    line-height: 1.6;
}

/*
    横スクロール領域のキーボード操作用に tabindex を持つが、
    マウスクリックでフォーカスリングが出ると誤操作に見えるため、
    可視リングはキーボードフォーカス時だけにする。
*/
.plan__wrap:focus {
    outline: none;
}

.plan__wrap:focus-visible {
    outline: 2px solid #17aabd;
    outline-offset: 2px;
}

/* ヘッダーだけ薄いブランド色。行はすべて白（ゼブラなし） */
.plan__matrix thead th,
.plan__matrix thead td {
    border-top: none;
    border-bottom: 1px solid #d8e9ec;
    padding: 18px 16px;
    vertical-align: middle;
    background: #eef7f9;
}

.plan__matrix tbody tr:first-child th,
.plan__matrix tbody tr:first-child td {
    border-top: none;
}

.plan__matrix tbody th {
    width: 200px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

/* 横スクロール時に先頭列を固定する。右罫線でスクロール領域と区切る */
.plan__matrix tbody th,
.plan__matrix .plan__corner {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
    border-right: 1px solid #e9f1f2;
}

.plan__matrix .plan__corner {
    background: #eef7f9;
}

.plan__matrix tbody tr:hover th,
.plan__matrix tbody tr:hover td {
    background: #f7fcfd;
}

/*
    プラン名の下へ価格を出す。注記の行数がプランごとに違っても
    CTAの高さがそろうよう、ヘッダーのセルは縦に伸ばしてボタンを下に寄せる。
*/
.plan__matrix thead th {
    vertical-align: top;
    height: 1px; /* Safari で height:100% の子を効かせるための下敷き */
}

.plan__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.plan__head .plan__cta {
    margin-top: auto;
}

.plan__name {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.plan__price {
    display: block;
    margin-top: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0e7c8a;
}

.plan__price-sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: #526273;
}

.plan__price-note {
    display: block;
    margin-top: 2px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #6b7a88;
}

.plan__price-note a {
    text-decoration: underline;
}

.plan__price-note a:hover {
    text-decoration: none;
}

.plan__cta {
    display: inline-block;
    margin-top: 12px;
    flex: 0 0 auto;
    padding: 8px 22px;
    border: 2px solid #E96E28;
    border-radius: 50px;
    background-color: #E96E28;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.plan__cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.plan__cta--outline {
    border-color: #17aabd;
    background-color: #fff;
    color: #0e7c8a;
}

.plan__yes {
    color: #17aabd;
    font-size: 2rem;
    font-weight: 700;
}

.plan__no {
    color: #b9c6cb;
    font-size: 2rem;
    font-weight: 700;
}

.plan__matrix .notes {
    display: block;
    margin-top: 2px;
    font-size: 1.3rem;
    color: #6b7a88;
}

.plan__matrix .notes a {
    text-decoration: underline;
}

.plan__matrix .notes a:hover {
    text-decoration: none;
}

.plan__matrix .notes--sub {
    font-size: 1.2rem;
}

.plan__hint {
    width: 95%;
    max-width: 1120px;
    margin: -16px auto 12px;
    font-size: 1.3rem;
    color: #526273;
}

.plan__cta-bottom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.plan__cta-bottom a {
    width: 340px;
}

/* ----------------------------------------------------------
plan（スマホのカード）
表は幅740pxで、スマホでは横に画面2つぶんスクロールしないと全プランを
見られなかった。同じデータからカードを組み、判断に使う4項目だけを出す。
PCでは表を出すのでカードは隠す。
---------------------------------------------------------- */

.plan__cards {
    display: none;
}

/* ----------------------------------------------------------
cta
---------------------------------------------------------- */

.cta {
    padding: 150px;
    background-image: url(../img/personal/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1120px;
}

.cta .btn a {
    width: 406px;
    margin: 0 auto;
}

.cta .cta__title {
    font-size: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 行き先ごとのカード。白カード＋teal見出し＋右端の矢印で、
   塗りボタン（新規登録）と役割の差が見えるようにする。 */
.cta__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 40px auto 0;
}

.cta__card {
    position: relative;
    display: block;
    padding: 28px 64px 28px 32px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(14, 81, 96, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(14, 81, 96, 0.18);
}

.cta__card-ttl {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0e7c8a;
}

.cta__card-note {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    color: #526273;
}

/* 矢印はCSSだけで作る（画像を増やさない） */
.cta__card-arrow {
    position: absolute;
    top: 50%;
    right: 32px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #231815;
    border-right: 3px solid #231815;
    transform: translateY(-50%) rotate(45deg);
}

.cta__trial {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.cta__trial a {
    font-size: 2.4rem;
    width: 460px;
}

.cta__trial-note {
    margin-top: 16px;
    font-size: 1.3rem;
    color: #526273;
    text-align: center;
}


/* ----------------------------------------------------------
column
---------------------------------------------------------- */

.column {
    padding-top: 168px;
}

.column__layout {
    display: flex;
    justify-content: space-between;
    width: 1120px;
    margin: 0 auto;
}

.column__layout a {
    width: 352px;
    display: block;
    background-color: #fff;
}

.column__layout .column__box {
    padding: 16px;
    box-sizing: border-box;
}

.column__layout .column__box .column__ttl {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 16px;
}

.column__layout .column__box .column__img img {
    width: 100%;
}

/* ----------------------------------------------------------
qa
---------------------------------------------------------- */

.qa {
    padding-top: 168px;
}

.qa .read {
    text-align: center;
}

.qa__wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 75vw;
    max-width: 930px;
    margin: 60px auto 0 auto;
}

.qa__content {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.qa__content dt {
    color: #54A9B4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
}

.qa__content dt.trigger .trigger__btn {
    position: relative;
    width: 14px;
    height: 14px;
}

.qa__content dt.trigger .trigger__btn::before,
.qa__content dt.trigger .trigger__btn::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
    border-radius: 2px;
}

.qa__content dt.trigger .trigger__btn::after {
    transform: rotate(-90deg);
}

.qa__content dt.trigger.isShow .trigger__btn::after {
    transform: rotate(360deg);
}

.qa__content dt span:first-of-type {
    width: calc(100% - 24px);
}

.qa__content dd {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-top: 20px;
}

.qa__content dd span {
    color: rgb(226, 12, 12);
}

.qa__content dd.hidden {
    display: none;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */


.footer {
    padding: 24px 0;
    background-color: #fff;
}

.footer__layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1120px;
    padding: 24px 0;
    margin: 0 auto;
}

.footer__logo img {
    width: 255px;
    height: auto;
}

.footer__nav__layout {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer__nav__layout .footer__nav:last-of-type {
    margin-left: 64px;
}

.footer__nav__layout .footer__nav li {
    margin-bottom: 10px;
}

.footer__nav__layout .footer__nav li img {
    margin-left: 10px;
}

.footer__isms {
    text-align: center;
    margin: 0 auto 24px;
}

.footer__isms img {
    width: 310px;
}

.footer__copy {
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.04em;
}










@media screen and (max-width: 1120px) {

    /* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

    .btn a {
        font-size: 2rem;
        line-height: 64px;
        width: 340px;
        height: 68px;
    }

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header__inner {
        padding: 0 2.5vw;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 100;
    }

    .header__nav ul {
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        gap: 25px;
    }

    .header__nav ul li {
        width: 100%;
        text-align: center;
    }

    .header__nav ul li a {
        font-size: 18px;
    }

    .header__nav ul li.header__btn a {
        width: 250px;
        display: inline-block;
    }

    .header .menuTrigger {
        display: flex;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        width: 90vw;
    }

    .mv__layout {
        display: block;
    }

    .mv__layout .mv__left {
        width: 100%;
    }

    .mv__lead {
        width: auto;
    }

    /* 1カラムになる幅では、説明文はスライド見本より前に長い文章が挟まるので出さない */
    .mv__catch {
        display: none;
    }

    .mv__layout .mv__left .mv__bubble img {
        width: 170px;
    }

    .mv__layout .mv__left .mv__ttl {
        margin-top: 0;
    }

    .mv__layout .mv__left .mv__ttl img {
        width: 280px;
    }

    .mv__layout .mv__box .mv__movie {
        position: relative;
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .mv__layout .mv__box .mv__movie img {
        width: 100%;
        height: auto;
    }

    .mv__layout .mv__box .mv__movie iframe {
        position: absolute;
        top: 7.6vw;
        left: 0;
        right: 0;
        width: 65vw;
        height: 41vw;
        margin: 0 auto;
    }

    .mv__layout .mv__box .mv__emblem {
        margin-top: 24px;
    }

    .mv__layout .mv__box .mv__emblem img {
        width: 100%;
    }

    .mv .btn {
        display: flex;
        justify-content: center;
        /* ベースの 400px 固定幅のままだと 375px 端末で右へあふれる */
        width: 100%;
    }

    .mv .btn.orange {
        margin-top: 24px;
    }

    .mv .btn.white {
        margin-top: 20px;
    }

    .mv__box .mv__samples {
        margin-top: 16px;
    }

    .mv__samples__copy {
        font-size: 1.6rem;
    }

    .mv__samples__grid {
        margin-top: 0;
        gap: 12px;
    }


    /* ----------------------------------------------------------
clients（導入実績）
---------------------------------------------------------- */

    .clients {
        margin-top: 64px;
    }

    .clients__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    /* ----------------------------------------------------------
steps
---------------------------------------------------------- */

    .steps {
        padding-top: 96px;
    }

    .flow {
        gap: 64px;
    }

    .flow__item {
        gap: 36px;
    }

    .flow__num {
        font-size: 4.2rem;
    }

    .flow__ttl {
        font-size: 2.4rem;
    }

    .steps .btn {
        margin-top: 48px;
    }

    .steps .btn a {
        width: 352px;
    }

    /* ----------------------------------------------------------
reason（選ばれる理由）
---------------------------------------------------------- */

    .reason {
        margin-top: 144px;
        padding: 64px 0 72px;
    }

    .reason__ttl-main {
        margin-bottom: 32px;
        font-size: 3.2rem;
    }

    .reason__lead {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px;
    }

    .reason__lead-ttl {
        font-size: 2.4rem;
    }

    .reason__sub {
        grid-template-columns: 1fr;
    }

    .reason__card {
        padding: 28px 24px 32px;
    }

    .reason__card-ttl {
        font-size: 1.9rem;
    }

    /* ----------------------------------------------------------
使い方の動画
---------------------------------------------------------- */

    .steps__movie {
        margin-top: 56px;
    }

    .steps__movie-ttl {
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .steps__movie iframe {
        width: 90vw;
        height: 50vw;
    }

    .steps__movie-more {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
plan
---------------------------------------------------------- */

    .plan {
        padding-top: 144px;
    }

    .plan__wrap {
        width: 95%;
    }

    /* ----------------------------------------------------------
cta
---------------------------------------------------------- */

    .cta {
        padding: 48px 20px;
        background-size: 100%;
    }

    .cta .btn a {
        width: 340px;
    }

    .cta .cta__title {
        font-size: 2.8rem;
        display: block;
        text-align: center;
    }

    .cta__cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .cta__card {
        padding: 20px 40px 20px 20px;
    }

    .cta__card-ttl {
        font-size: 1.6rem;
    }

    .cta__card-arrow {
        right: 20px;
    }

    .cta__trial {
        margin-top: 28px;
    }

    .cta__trial a {
        font-size: 1.8rem;
        width: 340px;
    }


    /* ----------------------------------------------------------
column
---------------------------------------------------------- */

    .column {
        padding-top: 144px;
    }

    .column__layout {
        width: 95%;
        gap: 10px;
    }

    .column__layout a {
        width: 33.33%;
    }

    .column__layout .column__box {
        padding: 16px;
    }

    /* ----------------------------------------------------------
qa
---------------------------------------------------------- */

    .qa {
        padding-top: 144px;
    }

    .qa__wrap {
        gap: 24px;
        width: 90vw;
    }

    .qa__content dt {
        font-size: 1.7rem;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer__layout {
        width: 95%;
    }

    .footer__logo img {
        width: 142px;
        height: auto;
    }

}


@media screen and (max-width: 768px) {

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header__nav ul {
        gap: 15px;
    }

    .header__nav ul li a {
        font-size: 14px;
    }

    .header__nav ul li.header__btn a {
        width: 180px;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    /*
        ファーストビューに「無料ではじめる」が収まるよう、スマホでは
        スライド見本を2×2でなく横スクロールの1行にする（2026-08-31 MTG）。
        1枚を大きく見せ、何の画像かが分かる見出しを付ける。長い訴求コピーは
        出さない（縦の場所をボタンに使う）。
    */
    main {
        margin-top: 96px;
    }

    .mv__samples__label {
        display: block;
        margin: 0 0 8px;
        color: #087f8f;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    /*
        1枚を中央に置き、左右に次と前を少しだけ覗かせる。左右の余白を
        (100% - 80%) / 2 = 10% 取ると、先頭の1枚もちょうど中央に来る。
    */
    .mv__box .mv__samples__grid {
        display: flex;
        overflow-x: auto;
        /*
            -webkit-overflow-scrolling: touch は付けない。iOSで独立した
            スクロール層ができ、JSからスクロール位置を動かしても戻される
            ことがある（自動送りが効かない原因になる）。いまのiOSは指定が
            なくても慣性スクロールする。
        */
        gap: 10px;
        padding-right: 10%;
        padding-bottom: 8px;
        padding-left: 10%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .mv__box .mv__samples__grid::-webkit-scrollbar {
        display: none;
    }

    /*
        flex-basis の % は左右の余白を除いた幅に対して効くので、100% で
        「画面幅の8割」になる（余白が10%ずつあるため）。80% と書くと
        さらに8割に縮んでしまう。
    */
    .mv__box .mv__samples__grid li {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .mv__box .mv__samples__grid .mv__samples__clone {
        display: block;
    }

    .mv__box .mv__samples__copy {
        display: none;
    }

    .mv__box .mv__samples__note {
        margin-top: 4px;
        font-size: 1.1rem;
        text-align: left;
    }

    /*
        ファーストビューのボタン。実測で338×68px・文字24pxあり、2つ並ぶと
        画面を占めすぎていた。高さと文字を落として、主役をタグラインへ戻す。
    */
    .mv .btn a {
        height: 56px;
        font-size: 1.8rem;
        line-height: 52px;
    }

    .mv .btn.white a {
        font-size: 1.6rem;
        /* 既定の光彩（ぼかし50px・不透明度0.5）は、隙間が狭いスマホだと
           上のオレンジのボタンへかぶって重なって見えるため弱める */
        box-shadow: 0 4px 16px rgba(23, 170, 189, 0.25);
    }

    .mv .btn.white {
        margin-top: 20px;
    }

    .mv__layout .mv__box .mv__emblem {
        margin-top: 12px;
    }

    .mv__samples__grid li img {
        border-radius: 6px;
        box-shadow: 0 8px 20px rgba(14, 81, 96, 0.2);
    }

    /* ----------------------------------------------------------
clients（導入実績）
---------------------------------------------------------- */

    .clients__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clients__grid > div {
        min-height: 6.8rem;
        padding: 1rem;
    }

    .clients__grid img {
        max-height: 3.8rem;
    }

    /* ----------------------------------------------------------
steps
---------------------------------------------------------- */

    /*
        スマホは1カラム。番号→見出し→説明→画面例の順に統一する。
        絵を先に出すと、直前のステップの続きに見えてしまう
        （特にSTEP2の構成リストが01の絵に見える）。
    */
    .flow {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
        gap: 40px;
    }

    .flow__item,
    .flow__item--reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow__visual,
    .flow__item--reverse .flow__visual {
        order: 1;
    }

    /*
        スマホは工程を縦線でつなぐ形にする。番号・見出し・説明・図を単に
        縦に積むだけだと、どこで1項目が終わるのかが読み取れず、3つの区切りが
        分からないという指摘があった（2026-09-01）。
        番号は丸で囲んで線の上に置き、内容は線の右へ寄せる。数字の大きさは
        他社実測（バッジ36px・円内22px）に収まる範囲にしている。
    */
    .flow__item {
        position: relative;
        padding-left: 46px;
    }

    .flow__item:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 38px;
        bottom: -40px;
        left: 15px;
        width: 2px;
        background-color: #bcdde3;
    }

    .flow__body {
        display: block;
    }

    .flow__num {
        position: absolute;
        top: 0;
        left: 0;
        display: grid;
        place-items: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #0097ac;
        color: #fff;
        font-size: 1.5rem;
        letter-spacing: 0;
    }

    .flow__ttl {
        margin-bottom: 10px;
        font-size: 2.1rem;
    }

    .flow__text {
        font-size: 1.5rem;
    }

    /* ----------------------------------------------------------
reason（選ばれる理由）
---------------------------------------------------------- */

    .reason__lead {
        padding: 24px 20px 28px;
    }

    .reason__lead-ttl {
        font-size: 2.2rem;
    }

    .reason__lead-text {
        font-size: 1.5rem;
    }

    .reason__card-ttl {
        font-size: 1.8rem;
    }


    /* ----------------------------------------------------------
plan
---------------------------------------------------------- */

    .plan {
        padding-top: 56px;
    }

    /* 横スクロールの表はやめ、同じデータから作ったカードに差し替える */
    .plan__wrap.pc-table,
    .plan__hint {
        display: none;
    }

    .plan__cards {
        display: grid;
        gap: 16px;
        margin: 0 20px;
    }

    .plan__card {
        position: relative;
        padding: 24px 20px 28px;
        border: 1px solid #dcebee;
        border-radius: 16px;
        background-color: #fff;
    }

    /* いちばん見せたいプランだけ枠を強くする（他は同じ体裁） */
    .plan__card--recommended {
        border: 2px solid #17aabd;
    }

    /*
        全プランにラベルを付ける。どれを選ぶかの手掛かりにするのが目的なので、
        既定は控えめな枠線のみにし、いちばん見せたいプランだけ塗りで強調する。
    */
    .plan__card-badge {
        position: absolute;
        top: -11px;
        left: 20px;
        padding: 3px 12px;
        border: 1px solid #b7dbe1;
        border-radius: 999px;
        background-color: #fff;
        color: #0e7c8a;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .plan__card-badge--recommended {
        border-color: #17aabd;
        background-color: #17aabd;
        color: #fff;
    }

    .plan__card-name {
        margin-bottom: 6px;
        font-size: 1.8rem;
        font-weight: 700;
        color: #333;
    }

    .plan__card-price {
        margin: 0;
        font-size: 2.6rem;
        font-weight: 700;
        line-height: 1.3;
        color: #0e7c8a;
    }

    .plan__card-price-sub {
        font-size: 1.3rem;
        font-weight: 600;
        color: #526273;
    }

    .plan__card-note {
        margin: 2px 0 0;
        font-size: 1.2rem;
        color: #6b7a88;
    }

    .plan__card-note a {
        text-decoration: underline;
    }

    .plan__card-specs {
        margin: 16px 0 0;
    }

    .plan__card-spec {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        padding: 9px 0;
        border-top: 1px solid #edf4f5;
    }

    .plan__card-spec dt {
        font-size: 1.4rem;
        color: #445;
    }

    .plan__card-spec dd {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
        text-align: right;
    }

    .plan__card-spec .plan__yes,
    .plan__card-spec .plan__no {
        font-size: 1.6rem;
    }

    .plan__card-spec .notes {
        display: block;
        margin-top: 0;
        font-weight: 400;
    }

    .plan__card-more {
        margin-top: 14px;
    }

    .plan__card-more summary {
        font-size: 1.4rem;
        font-weight: 600;
        color: #0e7c8a;
        cursor: pointer;
    }

    .plan__card-cta {
        display: block;
        margin-top: 18px;
        padding: 13px 0;
        border: 2px solid #E96E28;
        border-radius: 999px;
        background-color: #E96E28;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        text-align: center;
    }

    .plan__card-cta--outline {
        border-color: #17aabd;
        background-color: #fff;
        color: #0e7c8a;
    }

    /* カードにCTAがあるので、セクション末尾のボタンは重複させない */
    .plan__cta-bottom {
        display: none;
    }

    .plan__matrix th,
    .plan__matrix td {
        padding: 14px 12px;
        font-size: 1.4rem;
    }

    /* スマホでは機能名列を狭くして、横スクロールで見える範囲を広げる
       （長い機能名は2行に折り返す前提） */
    .plan__matrix .plan__corner {
        width: 130px;
    }

    .plan__matrix tbody th {
        width: 130px;
        min-width: 130px;
        padding-left: 10px;
        padding-right: 10px;
        line-height: 1.5;
    }

    .plan__name {
        font-size: 1.5rem;
    }

    .plan__cta {
        padding: 7px 14px;
        font-size: 1.3rem;
    }

    .plan__yes,
    .plan__no {
        font-size: 1.8rem;
    }

    .plan__matrix .notes {
        font-size: 1.2rem;
    }

    .plan__matrix .notes--sub {
        font-size: 1.1rem;
    }

    /* ----------------------------------------------------------
qa
---------------------------------------------------------- */

    .qa__content dt {
        font-size: 1.5rem;
    }

    .qa__content dd {
        font-size: 1.4rem;
        padding-top: 14px;
    }

    /* ----------------------------------------------------------
cta
---------------------------------------------------------- */
    .cta {
        background-image: none;
    }

    .cta .ttl {
        font-size: 2.8rem;
    }

    .cta .cta__title {
        font-size: 2rem;
    }

    /* ----------------------------------------------------------
column
---------------------------------------------------------- */

    .column__layout {
        display: block;
    }

    .column__layout a {
        width: 352px;
        margin: 0 auto;
    }

    .column__layout .column__box {
        margin: 0 auto 24px;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer__layout {
        display: block;
        padding: 0 20px;
    }

    .footer__nav__layout {
        justify-content: center;
        margin-top: 24px;
        padding: 24px 0;
    }
}

/* 導入実績のロゴは460px以下では2列に落とす（/corporateと同じ切り替え幅） */
@media screen and (max-width: 460px) {
    .clients__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

