/*
Theme Name: karayaburi-theme
*/

@charset "UTF-8";

/* ============================================
   1. フォントファイルの読み込み (@font-face)
   ============================================ */
@font-face {
    font-family: 'ZeroGothic';
    src: url('fonts/ZeroGothic.woff2') format('woff2'),
    src: url('fonts/ZeroGothic.woff') format('woff'),
         url('fonts/ZeroGothic.otf') format('opentype');
    font-display: swap;
}

/* ============================================
   Variables (CSS変数)
   ============================================ */
:root {
    --color-primary: #00BCD4;
    --color-secondary: #333333;
    --color-text: #333333;
    --color-bg: #F9F9F9;
    --color-white: #ffffff;
    --color-accent: #FFC107;

    --font-base: "Noto Sans JP", sans-serif;
    --font-en: "Roboto", sans-serif;
    --font-title: "ZeroGothic", sans-serif; 

    --width-inner: 1000px;
    --header-height: 80px;

    --color-gold-start: #d4af37;
    --color-gold-end: #a88645;
    --color-orange-btn-start: #ff8c00;
    --color-orange-btn-end: #e65100;
    --color-alert-bg: #000000;
    --color-alert-text: #ffe600;

    --header-bg-color: #E6F8FF;
    --header-btn-color: #0097A7;
    --header-height: 80px;
    --header-title-color: #006876;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ============================================
   Global Background Override
   ============================================ */
html{
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-base);
    background-color: #fff !important;
    background-image: none !important;
}

.main {
    /* これを外すと背景画像適用範囲変更
    max-width: var(--width-inner);
    width: 100%;
    margin: 0 auto;
	*/
	
	/* 背景画像適用
    background-image: url('img/bg--top.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    background-position: center top !important;
    background-color: #F9F9F9;
	*/
	padding-bottom: 80px;
}
.main::before{
    content: "";
    display: block;
    position: fixed; /* これで背景を固定します */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* 画面いっぱいに広げる */
    background: linear-gradient(135deg, #a8d5ff 0%, #ffffff 50%, #dce5ff 100%);
    z-index: -1; /* コンテンツの下に配置 */
    
    pointer-events: none;
}

main section,
.fv, .checklist, .features, .solution, .service, .security, .voices, .flow, .faq, .company {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
}

.checklist__arrow {
    background-color: rgb(38 162 181 / 50%) !important;
}

main > .arrow-container {
    background-color: #ffffff;
    width: 100%;
}

main > .checklist__arrow {
    background-color: #D1F2FF !important; 
    max-width: 100%;
    width: 100%;
    height: 100px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 0 auto; 
    max-width: 550px;
}

.solution__top-deco {
    display: none !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
	background-color: #FFF;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    /* background-color: var(--header-bg-color); */
}

.header__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.header__title-text {
    font-family: "ZeroGothic", sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #000;
    letter-spacing: 0.05em;
    line-height: 1;
}

.header__btn {
    display: inline-block;
    background-color: var(--header-btn-color);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header__btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__title-text {
        font-size: 18px;
    }

    .header__btn {
        padding: 12px 18px;
        font-size: 16px;
    }

    .header__brand {
        gap: 8px;
    }
}

/* ============================================
   Main Visual (FV) Section
   ============================================ */
:root {
    --fv-bg-color: #E6F8FF;
    --fv-text-blue: #0097A7;
    --fv-text-light-blue: #4DD0E1;
    --fv-highlight-color: #0095a8;
}

.fv {
    position: relative;
    width: 100%;
    min-height: 800px;
    padding-top: calc(var(--header-height) + 40px);
    overflow: hidden;
}

.fv__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.fv__deco-keywords {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.fv__deco-keywords span {
    position: absolute;
    color: rgba(0, 151, 167, 0.15);
    font-size: 1rem;
    font-weight: bold;
}

.fv__header {
    margin-bottom: 30px;
}

.fv__sub-tag {
    color: var(--fv-text-blue);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: bold;
	font-family: serif;
}

.fv__main-tag {
    display: inline-block;
    background-color: #fff;
    color: var(--fv-text-blue);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fv__title {
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--color-text);
}

.fv__title--highlight {
    color: var(--fv-highlight-color);
    font-size: 1.2em;
}

.fv__image-box {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.fv__man-img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
    max-width: 500px;
    margin: 0 auto;
}

.fv__catch-copy {
    position: absolute;
    top: 60%; 
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 100%;
    font-family: "ZeroGothic", sans-serif;
    font-size: 5rem;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
    color: #00a3b1; 
    filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.2)); 
    letter-spacing: -0.02em;
    z-index: 2;
    white-space: nowrap;
}

.fv__footer {
    position: absolute;
    bottom: 40px;
    right: 20px;
    text-align: right;
    z-index: 2;
}

.fv__footer p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    /* text-shadow: 0 1px 3px rgba(0,0,0,1); */
    font-family: var(--font-base);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .fv {
        min-height: auto;
        background-size: auto 100%;
    }

    .fv__main-tag {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .fv__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .fv__image-box {
        max-width: 100%;
    }

    .fv__catch-copy {
        font-size: 16vw;
        top: 70%;
        filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.2));
    }

    .fv__footer {
        bottom: 20px;
        right: 10px;
    }

    .fv__footer p {
        font-size: 0.7rem;
    }
}

/* ============================================
   Checklist Section
   ============================================ */
.checklist {
    background: linear-gradient(to bottom, #E6F8FF, #D1F2FF);
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
}

.checklist__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px 60px;
    text-align: center;
}

.checklist__title {
    font-size: 2.5rem;
    color: var(--header-btn-color);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
}

.checklist__box {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist__item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(179, 220, 237, 0.4);
    text-align: left;
}

.checklist__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    margin-right: 21px;
    position: relative;
    border-radius: 4px;
}

.checklist__icon::after {
    content: '';
    position: absolute;
    left: 12px;
    top: -9px;
    width: 15px;
    height: 29px;
    border-bottom: 3px solid var(--header-btn-color);
    border-right: 3px solid var(--header-btn-color);
    transform: rotate(45deg);
}

.checklist__text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.checklist__message {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-text);
}

.checklist__arrow {
    width: 100%;
    height: 100px;
    background-color: #8FD8E3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 0 auto -1px auto;
    max-width: 550px;
}

@media (max-width: 768px) {
    .checklist__title {
        font-size: 2.1rem;
    }

    .checklist__item {
        padding: 15px;
    }

    .checklist__text {
        font-size: 1.2em;
    }
    .checklist__arrow {
        margin: 0 auto -1px auto;
        max-width: 85%;
        height: 70px;
    }
    body > main > div.arrow-container > div {
        max-width: 100%;
    }
}

/* ============================================
   Features (Point) Section
   ============================================ */
.features {
    padding: 60px 0 100px;
    background-color: #E6F8FF; 
}

.features__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px;
}

.features__white-box {
    background-color: #fff;
    border-radius: 40px;
    padding: 80px 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.features__header {
    text-align: center;
    margin-bottom: 100px;
}

.features__sub-title {
    color: var(--header-btn-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
	.features__sub-title span::before {
		content: "\A";
		white-space: pre;
	}
}

.features__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.features__logo-img {
    height: 75px;
    width: auto;
}

.features__brand-text {
    font-family: "ZeroGothic", sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}

.features__lead {
    font-weight: bold;
    font-size: 1rem;
    color: #000;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    max-width: 600px;
    margin: 0 auto;
}

.features__item {
    position: relative;
    border: 2px solid #006876;
    border-radius: 20px;
    padding: 70px 30px 40px;
    text-align: center;
    background-color: #fff;
}

.features__card-title {
    font-size: 1.5rem;
    color: #006876;
    font-weight: bold;
    margin-bottom: 20px;
}

.features__card-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.text-highlight {
    color: #006876;
    font-weight: bold;
}

.features__badge-wrapper {
    position: absolute;
    top: -50px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.features__badge-img {
    width: 100px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
    .features__white-box {
        padding: 60px 20px;
        border-radius: 20px;
    }

    .features__brand-text {
        font-size: 1.8rem;
    }

    .features__item {
        padding: 60px 10px 30px;
    }
    
    .features__card-title {
        font-size: 1.3rem;
    }
    
    .features__badge-img {
        width: 90px;
        top: -45px;
    }
}

/* ============================================
   Coaching Offer Section
   ============================================ */
html body main.main section.coaching {
    position: relative;
    padding: 0 0 80px;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('img/bg-coaching.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.coaching__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.coaching__header-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    padding-top: 20px;
    margin-top: -50px;
}

.coaching__badge {
    position: absolute;
    top: 0;
    left: -30px;
    width: 70px;
    height: 80px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}
.coaching__badge img {
	width: 100%;	
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.coaching__badge p {
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

.coaching__title-bar {
    position: relative;
    background-color: #006876;
    padding: 15px 40px 15px 60px;
    font-family: "ZeroGothic", sans-serif;
    font-size: 2rem;
    line-height: 1;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 2px solid #ffffff;
}

.coaching__title-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #ffffff transparent transparent transparent;
    z-index: 1;
}

.coaching__lead {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 50px;
}

.coaching__offer-box {
    margin-bottom: 50px;
}

.coaching__offer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -10px;
}

.coaching__price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 25px;
}

.coaching__award-img {
    height: 130px;
    width: auto;
}

.coaching__price-detail {
    display: flex;
    align-items: anchor-center;
    gap: 15px;
    font-family: var(--font-en), sans-serif;
	padding-top: 20px;
}

.coaching__price-normal {
    font-size: 1rem;
	padding-top: 20px;
}

.coaching__price-normal .strike {
    font-size: 2rem;
    text-decoration: line-through;
	font-family: 'Noto Sans JP';
    margin-left: 5px;
}

.coaching__price-normal span {
    font-size: 1.6rem;
}

.coaching__price-arrow {
	padding-top: 18px;
    font-size: 2rem;
    color: #fff;
}

.fa-caret-right:before{
	content: "▶" !important;
	font-size: .7em;
}

.coaching__price-special {
    background: linear-gradient(to bottom, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    line-height: 1;
}

.coaching__price-special .num {
    font-size: 8rem;
	font-family: 'Noto Sans JP';    
    background: linear-gradient(
        180deg, 
        #cfb372 0%,
        #f9ecb2 45%,
        #bf9652 55%,
        #8a6e2f 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    padding-right: 10px;
    font-weight: bold;
}

.coaching__price-special .unit {
    font-size: 2rem;
	color: #fff;
    font-family: var(--font-base);
}

.coaching__alert {
    display: inline-block;
    background-color: var(--color-alert-bg);
    color: var(--color-alert-text);
    font-weight: bold;
    padding: 5px 20px;
    font-size: 1.1rem;
}

.coaching__cta-wrap {
    margin-bottom: 60px;
}

.coaching__cta-btn-orange {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to bottom, var(--color-orange-btn-start), var(--color-orange-btn-end));
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 0 #bf360c, 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.coaching__cta-btn-orange:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #bf360c, 0 5px 10px rgba(0,0,0,0.3);
    opacity: 1;
}

.num-large {
    font-size: 2.4rem;
    font-family: var(--font-en);
    margin: 0 5px;
}

.coaching__bonus-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.coaching__bonus-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.coaching__bonus-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 10px 20px 15px;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--color-text);
}

.coaching__check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 10px;
    border: 2px solid var(--header-btn-color);
    border-radius: 4px;
}

.coaching__check-icon::after {
    content: '';
    position: absolute;
    left: 10px;
    top: -9px;
    width: 13px;
    height: 23px;
    border-bottom: 3px solid var(--header-btn-color);
    border-right: 3px solid var(--header-btn-color);
    transform: rotate(45deg);
}

.coaching__bonus-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--header-btn-color);
    margin-bottom: 5px;
}

.coaching__bonus-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

button#forminator-submit.forminator-button.forminator-button-submit{
	display: none !important;
}

@media (max-width: 768px) {
    .coaching__title-bar {
        position: relative;
        padding: 15px 30px 15px 50px;
        font-family: "ZeroGothic", sans-serif;
        font-size: 1.5rem;
        line-height: 1;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .coaching__badge {
        width: 60px;
        height: 70px;
        left: -25px;
    }
    .coaching__award-img {
        height: 100px;
    }
	/*
    .coaching__price-detail {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .coaching__price-arrow {
        transform: rotate(90deg);
        font-size: 1rem;
    }*/
	.coaching__offer-title{
		font-size: 1rem;
	}
	.coaching__price-normal .strike{
		font-size: 1.2rem;
	}
	.coaching__price-normal span {
		font-size: 1.2rem;
	}
	.coaching__price-row{
		gap: 25px;
	}
    .coaching__price-special .num {
        font-size: 5rem;
    }
    .coaching__cta-btn-orange {
        font-size: 1.25rem;
        padding: 15px;
    }
    .num-large {
        font-size: 2rem;
    }
}

.line-button{
	margin: 100px 0;
}

.line-button > a{
	display: block !important;
	box-shadow:0 6px 0 #0a9d46, 0 10px 20px rgba(0,0,0,0.2) !important;
}

/* ============================================
   Problems (Chat) Section
   ============================================ */
.problems {
    padding: 30px 0 15px;
    background: linear-gradient(to bottom, rgba(220, 245, 255, 0.8), rgba(255, 255, 255, 0.9));
}

.problems__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.problems__header {
    text-align: center;
    margin-bottom: 60px;
}

.problems__label {
    display: inline-block;
    background-color: #fff;
    padding: 8px 60px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.problems__title {
    font-size: 2.2rem;
    color: var(--header-btn-color);
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}

.problems__sub-text {
    color: #666;
    font-weight: bold;
    line-height: 1.6;
	font-size: 1.2rem;
}

.problems__chat-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.problems__row {
    display: flex;
    width: 100%;
}

.problems__row--left {
    justify-content: flex-start;
}

.problems__row--right {
    justify-content: flex-end;
}

.problems__bubble {
    position: relative;
    max-width: 85%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.problems__bubble--white {
    background-color: #f0f4f8;
    color: #333;
    border-bottom-left-radius: 0;
}

.problems__bubble--green {
    background-color: #00C853;
    color: #fff;
    border-bottom-right-radius: 0;
}

.problems__bubble--white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #f0f4f8 transparent;
}

.problems__bubble--green::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 0 20px;
    border-color: transparent transparent transparent #00C853;
}

.problems__bubble-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.problems__bubble-text {
    font-size: 0.6rem;
    line-height: 1.6;
    opacity: 0.9;
}

.problems__icon {
    position: absolute;
    width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
    z-index: 2;
}

.problems__footer {
    text-align: center;
}

.problems__warning-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.problems__warning-text {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 60px;
}

.problems__cta-lead .sub {
    font-size: 1.5rem;
    color: #ff6d00;
    font-weight: bold;
    margin-bottom: 5px;
}

.problems__cta-lead .main {
    font-size: 2.5rem;
    color: #ff3d00;
    font-weight: bold;
    line-height: 1.2;
	padding-bottom: 0;
}

@media (max-width: 768px) {
    .problems__icon {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .problems__title {
        font-size: 2rem;
    }
    .problems__bubble {
        max-width: 90%;
        padding: 15px;
    }
    .problems__bubble-text {
        font-size: 0.6rem;
    }
    .problems__warning-title {
        font-size: 1.8rem;
    }
    .problems__cta-lead .sub {
        font-size: 1.2rem;
    }
    .problems__cta-lead .main {
        font-size: 1.9rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');
/* ============================================
   Solution Section
   ============================================ */
.solution {
    position: relative;
    padding: 30px 0 100px;
    background-color: #fff !important;
    /* 理想のデザインに合わせて適切なフォントファミリを指定することをお勧めします */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.solution__top-deco {
    width: 100%;
    height: 80px;
    background-color: rgba(220, 245, 255, 0.8);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-bottom: 60px;
}

.solution__inner {
    max-width: var(--width-inner); /* var(--width-inner)が定義されている前提です */
    margin: 0 auto;
    padding: 0 20px;
}

.solution__header {
    text-align: center;
    margin-bottom: 60px;
}

.solution__label {
    display: inline-block;
    background-color: #006064;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.solution__title {
    font-size: 2.5rem;
    color: #00BCD4;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.4;
}

.solution__desc {
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
}

.solution__steps {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.solution__steps::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    width: 2px;
    background-color: #ccc;
    z-index: 0;
}

.solution__step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.solution__step:last-child {
    margin-bottom: 0;
}

/* アイコンボックス */
.solution__icon-box {
    width: 80px;
    height: 80px;
    background-color: #FF5722;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 40px; /* テキストとの間隔を少し広げました */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 4px solid #fff;
}

.solution__icon-box svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    stroke-width: 2;
}

/* カード全体 */
.solution__card {
    flex-grow: 1;
    background-color: #fff;
    border-radius: 20px; /* 角丸を少し強くしました */
    padding: 40px; /* パディングを増やしてゆとりを持たせました */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.solution__content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.solution__step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.solution__step-sub {
    font-size: .9rem;
    color: #666;
    margin-bottom: 4px;
}

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

.solution__list li {
    font-size: 1rem;
    color: #666;
    position: relative;
    padding-left: 20px;
    line-height: 1;
	margin-top: 5px;
}

.solution__list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
}

.solution__bg-num {
    position: absolute;
    top: -25px;
    right: 15px;
    font-family: 'Caveat', cursive;
    font-size: 6rem;
    color: #AEEEEE;
	font-style: italic;
    line-height: 1;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .solution__title {
        font-size: 2.2rem;
    }
    .solution__steps {
        padding-left: 0;
    }
    .solution__steps::before {
        left: 30px;
    }
    .solution__icon-box {
        width: 90px;
        height: 90px;
        margin-right: 20px;
        border-width: 3px;
    }
    .solution__icon-box svg {
        width: 45px;
        height: 45px;
    }
    .solution__card {
        padding: 20px;
    }
    .solution__icon-box {
        margin-top: 5px;
    }
    .solution__bg-num {
        font-size: 5.5rem;
        top: -35px;
        right: 5px;
    }
}

/* ============================================
   Mission Section (Black Background)
   ============================================ */
html body .mission {
    background-color: #000 !important;
    color: #fff;
    padding: 70px 0;
}

.mission__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.mission__main-title {
    font-family: "ZeroGothic", sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 70px;
    text-shadow: 2px 2px 0px #333, -1px -1px 0 #555;
    letter-spacing: 0.05em;
	transform: translate(0%, 0%) rotate(-8deg);
}

.mission__title-large {
    font-size: 5rem;
    display: block;
    margin-top: 10px;
	transform: translate(0%, 0%) rotate(0deg);
}

.mission__text {
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
    margin-bottom: 120px;
}

.mission__profile-card {
    background-color: #888;
    color: #fff;
    border-radius: 30px;
    padding: 80px 30px 50px;
    position: relative;
    margin-top: 80px;
}

.mission__img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.mission__face-img {
    width: 100%;
    height: 150%;
    object-fit: cover;
}

.mission__name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mission__position {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: bold;
}

.mission__desc {
    font-size: 1.06rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.mission__timeline {
    text-align: left;
    position: relative;
}
/*
.mission__timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 50px;
    left: 48px;
    width: 2px;
    background-color: rgba(255,255,255,0.5);
    z-index: 0;
}*/

.mission__tl-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.mission__tl-dot {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
	margin-top: 5px;
}

.mission__tl-age {
    font-weight: bold;
    font-size: .95rem;
    margin-bottom: 5px;
}

.mission__tl-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ============================================
   Service Plan Section
   ============================================ */
main.main .service {
    padding: 50px 0 0;
    background-color: #fff !important;
}

.service__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px;
}

.service__header {
    text-align: center;
    margin-bottom: 60px;
}

.service__label {
    display: inline-block;
    background-color: #006064;
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00a3b1;
    line-height: 1.4;
    margin-bottom: 20px;
}

.service__lead {
    font-weight: bold;
    color: #333;
}

.service__list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 60px 30px 40px;
    position: relative;
    border-top: 5px solid #FF5722;
    text-align: center;
}

.service__badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #FF5722;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.service__badge--orange {
    background-color: #FF5722;
}

.service__icon-area {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.service__icon-circle {
    width: 70px;
    height: 70px;
    background-color: #FFCCBC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__icon-circle svg {
    width: 35px;
    height: 35px;
    stroke: #FF5722;
}

.service__card--special {
    background-color: #ffefdc;
    border-top-color: #FF5722;
}

.service__card--special .service__icon-circle {
    background-color: #FF5722;
}
.service__card--special .service__icon-circle svg {
    stroke: #fff;
}

.service__card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service__card-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.service__content-box {
    text-align: left;
    margin-bottom: 30px;
    display: inline-block;
}

.service__box-label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

.service__check-list {
    list-style: none;
}

.service__check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.service__check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #00C853;
    font-weight: bold;
}

.service__recommend-box {
    background-color: #FFF3E0;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    width: 45%;
    margin: 0 auto;
}

.service__recommend-box--orange {
    background-color: #ffd1a4;
}

.service__rec-label {
    color: #962e1a;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service__rec-list {
    list-style: none;
}

.service__rec-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    color: #D84315;
    font-size: 0.9rem;
}

.service__rec-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.service__price-card {
    border: 2px solid #FFCC80;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

.service__price-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.service__price-name {
    font-size: 2rem;
    font-weight: bold;
    color: #FF5722;
    margin-bottom: 5px;
}

.service__price-val {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF5722;
    margin-bottom: 5px;
}

.service__price-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.service__price-note {
    background-color: #FFF3E0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 5px;
    color: #D84315;
}

/* ============================================
   Security Section
   ============================================ */
.security {
    padding: 80px 0;
    background-color: #fff !important;
}

.security__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.security__title {
    font-size: 2rem;
    font-weight: bold;
    color: #00BCD4;
    margin-bottom: 40px;
}

.security__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security__card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.security__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.security__icon svg {
    width: 24px;
    height: 24px;
}

.security__icon--green {
    background-color: #E0F2F1;
    color: #009688;
}
.security__icon--blue {
    background-color: #E3F2FD;
    color: #2196F3;
}
.security__icon--purple {
    background-color: #F3E5F5;
    color: #9C27B0;
}
.security__icon--orange {
    background-color: #FBE9E7;
    color: #FF5722;
}

.security__card-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.security__card-text {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    .mission__main-title {
        font-size: 3.1rem;
    }
    .mission__title-large {
        font-size: 4.5rem;
    }
    .mission__tl-dot {
        width: 40px;
        height: 40px;
    }
    .mission__timeline::before {
        left: 38px;
    }
    .service__recommend-box {
        width: 95%;
    }
    .service__price-val {
        font-size: 2rem;
    }
}

/* ============================================
   Shared Components
   ============================================ */
.section-label--teal {
    background-color: #006064 !important;
    color: #fff !important;
    padding: 5px 60px;
    border-radius: 30px;
}

/* ============================================
   Voices Section
   ============================================ */
.voices {
    padding: 80px 0;
    background-color: #fff !important;
}

.voices__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px;
}

.voices__header {
    text-align: center;
    margin-bottom: 50px;
}

.voices__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00a3b1;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
}

.voices__note {
    font-size: 1rem;
    color: #666;
}

.voices__list {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.voice-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    border: 1px solid #eee;
}

.voice-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.voice-card__icon {
    width: 50px;
    height: 50px;
    background-color: #FF5722;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}

.voice-card__name {
    font-weight: bold;
    font-size: 1.1rem;
}

.voice-card__job {
    font-size: 0.9rem;
    color: #666;
}

.voice-card__status {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.voice-card__status .label {
    font-weight: 900;
    margin-right: 5px;
}

.voice-card__status--before {
    background-color: #FFEBEE;
    color: #D32F2F;
}

.voice-card__status--after {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.voice-card__comment {
    border-left: 4px solid #FF5722;
    padding-left: 15px;
    margin: 20px 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.voice-card__stars {
    color: #FFC107;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 5px;
}

.voices__footer-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

/* ============================================
   Service Flow Section
   ============================================ */
.flow {
    padding: 80px 0;
    background: transparent; 
}

.flow__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px;
}

.flow__header {
    text-align: center;
    margin-bottom: 50px;
}

.flow__header .section-label--teal {
    padding: 5px 40px;
}

.flow__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 3px 5px rgba(0,0,0,0.8);
    line-height: 1.4;
    margin-top: 50px;
}

.flow__steps {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.flow__steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: #666;
    z-index: -1;
}

.flow__item {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 50px;
}

.flow__badge-wrap {
    margin-bottom: -25px;
    z-index: 1;
    background: #D4AF37;
    padding: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.flow__badge {
    width: 80px;
    height: 70px;
    background: linear-gradient(to bottom, #2c3e50, #000000);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #FFD700;
}

.flow__badge-wrap {
    background: #D4AF37;
    padding: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.flow__badge .step-en {
    font-size: 0.6rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.flow__badge .step-num {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.flow__card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 20px 30px;
    text-align: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flow__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.flow__card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 80px 0;
    background-color: #fff !important;
}

.faq__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.faq__title {
    font-size: 3rem;
    color: #00a3b1;
    font-weight: bold;
    margin: 40px 0;
}

.faq__desc {
    color: #666;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq__q, .faq__a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq__q {
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.faq__a {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.faq__q .text {
    padding-top: 5px;
}

.faq__q .text , .faq__a .text {
    font-size: 0.9em;
}

.icon-q, .icon-a {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
}

.icon-q {
    background-color: #FF5722;
}

.icon-a {
    background-color: #00C853;
}

/* ============================================
   Company Section
   ============================================ */
.company {
    padding: 80px 0 20px;
    background: transparent; 
}

.company__inner {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.company__header {
    text-align: center;
    margin-bottom: 50px;
}

.company__title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 3px 5px rgba(0,0,0,0.8);
    line-height: 1.4;
    margin-top: 50px;
}

.company__card {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company__card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    border-bottom: none;
}

.company__icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    stroke: #FF5722;
}

.company__dl {
    display: grid;
    gap: 15px;
}

.company__row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.company__row dt {
    font-weight: bold;
    width: 30%;
}

.company__row dd {
    width: 70%;
    text-align: left;
}

.company__philosophy{
	text-align: center;
}

.philosophy-head {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.philosophy-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.philosophy-list {
    list-style: none;
}

.philosophy-list li {
    position: relative;
    margin-bottom: 5px;
}


.company__message {
    text-align: center;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 60px;
}

.message-main {
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 7px 4px 11px rgba(0,0,0,0.3);
    text-align: left;
}

.message-text {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: bold;
    text-align: left;
    text-shadow: 3px 3px 16px rgba(0,0,0,0.5)
}

/* ============================================
   New Footer
   ============================================ */
.site-footer {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.site-footer__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer__logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.site-footer__logo-text {
    font-family: "ZeroGothic", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.site-footer__tagline {
    color: #666;
	margin-top: 20px;
    margin-bottom: 20px;
	font-size: .85rem;
}

.site-footer__slogan {
    color: #666;
    margin-bottom: 40px;
    font-size: 0.85rem;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    color: #888;
}

.site-footer__links a:hover {
    text-decoration: underline;
}

.site-footer__copy {
    color: #aaa;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .voices__title, .flow__title {
        font-size: 2.3rem;
    }
    
    .faq__title {
        font-size: 2.5rem;
    }

    .message-main {
        font-size: 3.3rem;
    }
    .message-text{
        font-size: 1.3rem;
    }

    .site-footer__links {
        flex-direction: column;
        gap: 10px;
    }
}




/* ============================================
   Forminator ID: 7 & 11
   ============================================ */

#forminator-module-7,
#forminator-module-11 {
    background: #ffffff;
    padding: 50px 40px !important;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 640px;
    margin: 40px auto;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    width: 95%;
}

#forminator-module-7 .forminator-pagination--content,
#forminator-module-11 .forminator-pagination--content {
    background: transparent !important;
    padding: 30px 15px !important;
    margin-top: 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 30px;
    margin-bottom: 35px;
}

.diagnosis__form-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 640px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    text-align: center;
}

.diagnosis__header {
    margin-bottom: 30px;
}

.diagnosis__badge {
    display: inline-block;
    background-color: #008C9E;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 10px 40px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.diagnosis__title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.diagnosis__desc {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    font-weight: 500;
}

.diagnosis__text {
    color: #666;
    text-align: center;
    padding: 0;
}

.forminator-input.forminator-name--field,
.forminator-input.forminator-email--field{
    border: 1px solid #AAA !important;
    border-radius: 20px !important;
}

/* スマホ対応 */
@media (max-width: 480px) {
    .diagnosis__text {
        width: 100%;
        display: inline-block;
        font-size: 13px;
    }
}


/* ============================================
   Forminator Override (フォーム側のリセット)
   ※ラッパー側にスタイルを移したため、フォーム自体の装飾を解除します
   ============================================ */
#forminator-module-7,
#forminator-module-11 {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 auto !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .diagnosis__form-wrapper {
        padding: 40px 20px;
        width: 95%;
    }

    .diagnosis__badge {
        font-size: 1.6rem;
        padding: 8px 33px 10px;
    }

    .diagnosis__title {
        font-size: 1.4rem;
    }

    .diagnosis__desc {
        font-size: 0.95rem;
    }
}


#forminator-module-7 .forminator-label,
#forminator-module-11 .forminator-label {
    font-size: .9rem !important;
    font-weight: bold !important;
    text-align: center;
    margin-bottom: 20px !important;
    color: #333;
    line-height: 1.4;
}

#forminator-module-7 .forminator-required,
#forminator-module-11 .forminator-required,
.forminator-ui.forminator-custom-form[data-design=flat] .forminator-pagination-progress {
    display: none !important;
}

#forminator-module-7 .forminator-field-radio,
#forminator-module-11 .forminator-field-radio {
    counter-reset: radio-counter;
}

#forminator-module-7 .forminator-radio,
#forminator-module-11 .forminator-radio {
    display: block !important;
    width: 100%;
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 15px;
    margin-bottom: 20px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 !important;
    overflow: hidden;
}

#forminator-module-7 .forminator-radio:hover,
#forminator-module-11 .forminator-radio:hover {
    background-color: #fafafa;
    border-color: #ccc;
}

#forminator-module-7 .forminator-radio.forminator-is_checked,
#forminator-module-11 .forminator-radio.forminator-is_checked {
    border-color: #00BCD4;
    background-color: #f0fdff;
    box-shadow: 0 0 0 1px #00BCD4 inset;
}

#forminator-module-7 .forminator-radio-label,
#forminator-module-11 .forminator-radio-label {
    display: flex !important;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 15px 5px 0;
    font-weight: bold;
    color: #555;
    font-size: .8rem;
}

#forminator-module-7 .forminator-radio-label::before,
#forminator-module-11 .forminator-radio-label::before {
    counter-increment: radio-counter;
    content: counter(radio-counter, upper-alpha);
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 30px;
    height: 30px;
    min-width: 30px;
    
    border: 2px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    
    font-weight: 900;
    font-size: 21px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    padding-bottom: 3px;
}

#forminator-field-radio-2-label-3 > span.forminator-radio-label::before {
    padding-right: 2px;
}


#forminator-module-7 .forminator-radio input[type="radio"],
#forminator-module-7 .forminator-radio-bullet,
#forminator-module-11 .forminator-radio input[type="radio"],
#forminator-module-11 .forminator-radio-bullet{
    display: none !important;
}

#forminator-module-7 .forminator-button-next,
#forminator-module-7 .forminator-button-back,
#forminator-module-11 .forminator-button-next,
#forminator-module-11 .forminator-button-back{
    display: none !important;
}

#forminator-module-7 .forminator-pagination-footer,
#forminator-module-11 .forminator-pagination-footer{
    display: flex !important;
    justify-content: center !important;
    padding-bottom: 40px;
    margin-top: 0 !important;
}

#forminator-module-7 .forminator-button-submit,
#forminator-module-11 .forminator-button-submit{
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    padding: 18px;
    background: linear-gradient(to bottom, #ff8c00, #e65100) !important;
    color: #fff !important;
    font-weight: bold;
    font-size: 1.3rem;
    border-radius: 50px;
    border: none !important;
    box-shadow: 0 5px 0 #bf360c, 0 10px 20px rgba(0,0,0,0.2) !important;
    transition: all 0.2s ease;
    cursor: pointer;
}


/* ============================================
   Progress Bar Design
   ============================================ */
#forminator-module-7 .forminator-pagination-steps,
#forminator-module-11 .forminator-pagination-steps { 
    display: none !important; 
}

.my-progress-container { margin-bottom: 40px; font-family: "Noto Sans JP", sans-serif; padding: 0 5px; }
.my-progress-labels { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: bold; color: #666; margin-bottom: 10px; }
.my-progress-track { width: 100%; height: 12px; background-color: #333; border-radius: 50px; overflow: hidden; }
.my-progress-fill { height: 100%; background-color: #00BCD4; width: 20%; border-radius: 50px; transition: width 0.5s ease; }


/* ============================================
   Forminator Slide Animation
   ============================================ */
#forminator-module-7 .forminator-pagination,
#forminator-module-11 .forminator-pagination {
    animation: slideInRight 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#forminator-module-7 .forminator-pagination.slide-out,
#forminator-module-11 .forminator-pagination.slide-out {
    animation: slideOutLeft 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    pointer-events: none;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-50px); }
}

/* ============================================
   Submit Button Animation
   ============================================ */

#forminator-module-7 .forminator-button-submit,
#forminator-module-11 .forminator-button-submit {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 30px auto 0 !important;
    padding: 18px !important;
    
    background: linear-gradient(to bottom, #ff8c00, #e65100) !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 1.3rem !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    
    box-shadow: 0 6px 0 #bf360c, 0 10px 20px rgba(0,0,0,0.2) !important;
    
    transition: all 0.1s ease !important;
    transform: translateY(0) !important;
    position: relative !important;
    top: 0 !important;
}

#forminator-module-7 .forminator-button-submit:hover,
#forminator-module-11 .forminator-button-submit:hover,
.line-button > a:hover {
    background: linear-gradient(to bottom, #06c755, #06c755) !important;
    
    transform: translateY(3px) !important; 
    
    box-shadow: 0 3px 0 #06c755, 0 5px 10px rgba(0,0,0,0.2) !important; 
}

#forminator-module-7 .forminator-button-submit:active,
#forminator-module-7 .forminator-button-submit:focus,
#forminator-module-11 .forminator-button-submit:active,
#forminator-module-11 .forminator-button-submit:focus,
.line-button > a:active,
.line-button > a:focus {
    transform: translateY(6px) !important; 
    
    box-shadow: none !important; 
    
    outline: none !important;
}