/* ===================================================================
   基本設定 & 変数 (デザイン刷新版)
=================================================================== */
:root {
    --color-primary: #3a7bd5;
    --color-primary-dark: #004e92;
    --color-accent: #f5af19;
    --color-accent-dark: #f12711;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg-light: #f8f9fa;
    --color-dark-bg: #1a202c;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --header-height-sp: 70px;
    --header-height-pc: 80px;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* ===================================================================
   リセット & 基本スタイル (モバイルファースト)
=================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.8;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
    /* ★★★ word-break から変更 ★★★ */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 7vw, 38px);
    font-weight: 700;
    margin: 0 0 50px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.section-title__strong {
    font-family: var(--font-heading);
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5em;
    margin: 0 0.1em;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px;
    color: var(--color-text-light);
}

.button-arrow {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    padding: 5px 25px 5px 0;
    transition: color 0.3s;
}

.button-arrow:hover {
    color: var(--color-primary-dark);
}

.button-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s;
}

.button-arrow:hover::after {
    transform: translateX(5px);
}

.button-primary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    border: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgba(0, 123, 255, 0.2);
}

/* ===================================================================
   ヘッダー (グラスモーフィズム適用)
=================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--header-height-sp);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    font-size: 20px;
    font-weight: 700;
    z-index: 101;
}

.header__logo img {
    max-height: 30px;
}

.header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header__nav.is-open {
    display: flex;
}

.header__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.header__nav li {
    margin-bottom: 30px;
}

.header__nav a {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.header__actions {
    display: none;
}

.hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.4s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* ===================================================================
   ヒーローセクション (トップページ)
=================================================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero__bg-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__bg-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.hero__bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero__title {
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.9;
}

.hero__buttons {
    margin-top: 40px;
}

.hero__button--trial {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--color-dark-bg);
    background: linear-gradient(to right, var(--color-accent), #f7971e);
    box-shadow: 0 10px 20px rgba(245, 175, 25, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero__button--trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(245, 175, 25, 0.4);
}

/* ===================================================================
   各セクション (モバイルファースト)
=================================================================== */
.strengths__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.strength-card {
    text-align: center;
    padding: 40px 25px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.08);
}

.strength-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    height: 70px;
    width: 70px;
    background: linear-gradient(to top, var(--color-bg-light), #fff);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.strength-card__icon img {
    height: 35px;
}

.strength-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

.strength-card__text {
    color: var(--color-text-light);
}

.flow__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.flow-step {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.flow-step__number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.flow-step__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    height: 60px;
    width: 60px;
    background: var(--color-bg-light);
    border-radius: 50%;
}

.flow-step__icon img {
    height: 30px;
}

.flow-step__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.flow-step__text {
    font-size: 14px;
    color: var(--color-text-light);
}

.cta {
    padding: 80px 20px;
    background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
    color: #fff;
    text-align: center;
}

.cta__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta__text {
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta__button {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    width: 90%;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta__button--primary {
    background: linear-gradient(to right, var(--color-accent), #f7971e);
    color: var(--color-dark-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta__button--secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(5px);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.2), 0 0 10px rgba(0, 123, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.5), 0 0 30px rgba(0, 123, 255, 0.5);
    }
}

.plans__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.plan-card {
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #eee;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1), 0 0 15px rgba(58, 123, 213, 0.3);
}

.plan-card--featured {
    overflow: visible;
    border: 2px solid var(--color-primary);
}

.plan-card__badge {
    position: absolute;
    top: 18px;
    right: -8px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    padding: 6px 12px;
    transform: rotate(45deg) translate(25%, -50%);
    transform-origin: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 10px rgba(0, 123, 255, 0.3);
    animation: pulse-glow 2.5s infinite ease-in-out;
}

.plan-card__header {
    text-align: center;
    padding: 40px 20px 30px;
}

.plan-card__name {
    font-size: 24px;
    font-weight: 700;
}

.plan-card__catch {
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 5px;
}

.plan-card__price {
    text-align: center;
    padding: 25px 20px;
    background-color: var(--color-bg-light);
}

.plan-card__price-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
}

.plan-card__price-unit {
    font-size: 14px;
    color: var(--color-text-light);
}

.plan-card__features {
    list-style: none;
    padding: 30px;
    margin: 0;
    flex-grow: 1;
}

.plan-card__features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.plan-card__features li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.plan-card__footer {
    padding: 20px 30px 40px;
    text-align: center;
}

.simulator__wrapper {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.simulator__group {
    margin-bottom: 25px;
}

.simulator__group h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.simulator__select,
.simulator__checkbox {
    display: block;
    width: 100%;
}

.simulator__select {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.simulator__checkbox {
    margin-bottom: 10px;
}

.simulator__result {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #ccc;
    text-align: center;
}

.simulator__result-label {
    font-weight: 700;
}

.simulator__result-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 40px 20px 0;
    font-size: 18px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question.is-open {
    color: var(--color-primary);
}

.faq-question::before,
.faq-question::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s;
}

.faq-question::after {
    transform: rotate(90deg);
}

.faq-question.is-open::after {
    transform: rotate(0);
}

.faq-question span {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-right: 10px;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    overflow: hidden;
    transition: height 0.4s ease, padding 0.4s ease;
    height: 0;
}

.faq-answer p {
    color: var(--color-text-light);
}

.form-container {
    max-width: 700px;
}

.form-lead {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-required {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 8px;
    font-size: 12px;
    background-color: #dc3545;
    color: #fff;
    border-radius: 3px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(58, 123, 213, 0.2);
}

.form-radio-label {
    display: block;
    margin-bottom: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.sub-hero {
    height: 35vh;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.sub-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.sub-hero__inner {
    position: relative;
    z-index: 2;
}

.sub-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.sub-hero__subtitle {
    margin-top: 5px;
    font-size: 16px;
}

.breadcrumb {
    padding: 15px 0;
    background-color: var(--color-bg-light);
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--color-text-light);
}

.info-table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.info-table th,
.info-table td {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table th {
    font-weight: 700;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid #ddd;
}

.info-table thead th {
    font-size: 18px;
    text-align: center;
    background-color: var(--color-dark-bg);
    color: #fff;
    border-bottom: 1px solid var(--color-dark-bg);
}

.info-table tfoot {
    font-weight: 700;
}

.info-table tfoot strong {
    font-size: 1.2em;
    color: var(--color-primary);
}

.notes {
    margin-top: 30px;
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
}

.notes p {
    margin-bottom: 0.5em;
}

.post-container {
    max-width: 800px;
}

.post-header {
    margin-bottom: 40px;
}

.post-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-date {
    color: var(--color-text-light);
}

.post-body {
    line-height: 2;
}

.post-body p,
.post-body ul {
    margin-bottom: 2em;
}

.post-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 2.5em 0 1.5em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--color-primary);
}

.feature-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.feature-layout__img {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-layout__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-layout__title {
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.feature-layout__title .highlight {
    background: linear-gradient(to top, rgba(245, 175, 25, 0.5) 40%, transparent 40%);
}

.feature-layout__lead {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-layout__text p:not(.feature-layout__lead) {
    color: var(--color-text-light);
}

.voice-section {
    margin-top: 80px;
}

.voice-section__title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.voice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.voice-card {
    background-color: var(--color-bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid #eee;
}

.voice-card::before {
    content: '“';
    font-family: serif;
    font-size: 80px;
    color: rgba(0, 123, 255, 0.1);
    position: absolute;
    top: 0;
    left: 15px;
}

.voice-card__text {
    position: relative;
    z-index: 2;
}

.voice-card__meta {
    text-align: right;
    font-weight: 700;
    margin-top: 15px;
    color: var(--color-text-light);
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    width: 4px;
    height: calc(100% - 40px);
    background: var(--color-bg-light);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 5px;
    width: 24px;
    height: 24px;
    border: 4px solid var(--color-bg-light);
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item__content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    word-break: keep-all;
    /* ★★★ 修正箇所 ★★★ */
}

.timeline-item__content p {
    color: var(--color-text-light);
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.icon-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
}

.icon-list__icon {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-primary);
    font-weight: 700;
}

/* --- フッター --- */
.footer {
    padding: 80px 0 30px;
    background-color: var(--color-dark-bg);
    color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer__logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.footer__logo img {
    max-height: 35px;
    filter: brightness(0) invert(1);
}

.footer__address {
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.8;
}

.footer__nav {
    margin-top: 30px;
}

.footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav li {
    margin-bottom: 15px;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.6;
}

/* ===================================================================
   PC表示用のスタイル (@media)
=================================================================== */
@media (min-width: 768px) {
    .section-padding {
        padding: 120px 0;
    }

    .header {
        height: var(--header-height-pc);
    }

    .header__logo img {
        max-height: 40px;
    }

    .hamburger {
        display: none;
    }

    .header__nav {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        backdrop-filter: none;
        flex-direction: row;
        align-items: center;
    }

    .header__nav ul {
        display: flex;
    }

    .header__nav li {
        margin: 0 15px;
        margin-bottom: 0;
    }

    .header__nav a {
        color: var(--color-text);
    }

    .header__actions {
        display: flex;
        align-items: center;
        margin-left: 20px;
    }

    .header__button {
        padding: 8px 20px;
        font-weight: 700;
        transition: all 0.3s;
    }

    .header__button--secondary {
        border: 2px solid #ddd;
        color: var(--color-text);
    }

    .header__button--secondary:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    .header__button--primary {
        background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
        color: #fff;
        border: none;
    }

    .header__button--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -5px rgba(0, 123, 255, 0.2);
    }

    .hero {
        height: 80vh;
        min-height: 600px;
    }

    .strengths__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .flow__steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .flow-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 95px;
        left: 100%;
        width: 30px;
        height: 2px;
        background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
        background-size: 10px 2px;
    }

    .cta__buttons {
        flex-direction: row;
        justify-content: center;
    }

    .plans__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .simulator__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 50px;
    }

    #price-simulator-form {
        width: 60%;
    }

    .simulator__result {
        width: calc(40% - 30px);
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .info-table th,
    .info-table td {
        display: table-cell;
        width: auto;
        text-align: left;
    }

    .info-table th {
        width: 25%;
    }

    .info-table tfoot td:last-child {
        text-align: right;
    }

    .notes {
        text-align: left;
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer__nav {
        margin-top: 0;
    }

    .footer__nav ul {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .footer__nav li {
        margin: 5px 0 5px 30px;
    }

    .feature-layout {
        flex-direction: row;
        gap: 5%;
    }

    .feature-layout.reverse {
        flex-direction: row-reverse;
    }

    .feature-layout__text {
        width: 50%;
    }

    .feature-layout__img {
        width: 45%;
    }

    .voice-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 50px;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item::before {
        left: 100%;
        transform: translate(-50%, -50%);
        top: 50%;
    }

    .timeline-item:nth-child(even)::before {
        left: 0;
    }
}

@media (min-width: 1024px) {
    .header__nav li {
        margin: 0 20px;
    }
}

/* ===================================================================
   FAQページ カテゴリ見出し
=================================================================== */
.faq-category-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.faq-accordion>.faq-category-title:first-of-type {
    margin-top: 0;
}

/* ===================================================================
   特商法ページ テーブル内リストのスタイル
=================================================================== */
.info-table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-table td ul li {
    margin-bottom: 0.5em;
}

.info-table td ul li:last-child {
    margin-bottom: 0;
}

/* ===================================================================
   お知らせがない場合の表示スタイル
=================================================================== */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    color: var(--color-text-light);
}