@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Mincho Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.cf:after {
    content: "";
    display: block;
    clear: both;
}

.ct-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.txt-c {
    text-align: center;
}

.txt-l {
    text-align: left;
}

.txt-r {
    text-align: right;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.page-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: rgba(29, 48, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.page-top.show {
    opacity: 1;
    pointer-events: auto;
}

.page-top:hover {
    background-color: rgba(29, 48, 99, 1);
    opacity: 1;
}

.sp-fixed-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
}

.sp-nav-top {
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.sp-nav-bottom {
    display: flex;
    background-color: #1D3063;
}

.sp-nav-simulation {
    color: #1D3063;
}

.sp-nav-simulation .sp-nav-icon {
    color: #1D3063;
}

.sp-nav-simulation .sp-nav-text {
    color: #1D3063;
}

.sp-nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    flex: 1;
    padding: 12px 8px;
}

.sp-nav-item:active {
    opacity: 0.8;
}

.sp-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sp-nav-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.sp-nav-tel-number {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.sp-nav-tel-icon {
    height: 20px;
    width: auto;
    flex-shrink: 0;
}

.sp-nav-tel,
.sp-nav-contact {
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sp-nav-contact {
    border-right: none;
}

.sp-nav-tel .sp-nav-icon,
.sp-nav-contact .sp-nav-icon {
    color: #fff;
}

.sp-nav-tel .sp-nav-text,
.sp-nav-tel .sp-nav-tel-number,
.sp-nav-contact .sp-nav-text {
    color: #fff;
}

#header-box {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-inr {
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
}

#gnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 60px;
    height: 47px;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    letter-spacing: 0.64px;
}

.company-sub {
    font-size: 12px;
    font-weight: 500;
    color: #808080;
    margin: 0;
    letter-spacing: 0.48px;
}

.headBox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tel-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tel-link {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #1D3063;
    letter-spacing: 1.04px;
}

.headBtnother {
    display: flex;
    list-style: none;
    gap: 12px;
    margin: 0;
}

.headBtnother li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #1D3063;
    border: 1px solid #1D3063;
    border-radius: 55px;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0.28px;
}

.headBtnother li a:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

.headBtnother li:last-child a {
    background-color: #1D3063;
    color: #fff;
}

.headBtnother li:last-child a:hover {
    background-color: #152547;
}

.hero {
    background: #fff url(../img/main_pc.jpg) center / cover no-repeat;
    color: #333333;
    padding: 100px 20px;
    position: relative;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-benefit-img {
    height: 28px;
    width: auto;
}

.badge {
    background-color: transparent;
    padding: 1px 2px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #F1952B;
    color: #F1952B;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-company {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    text-align: center;
    margin-bottom: 30px;
}

.hero-title-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-title-img.pc {
    display: block;
}

.hero-title-img.sp {
    display: none;
}

.hero-text {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 50px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
}

.hero-text-pc {
    display: inline;
}

.hero-text-sp {
    display: none;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: flex;
    width: 300px;
    height: 128px;
    padding: 42px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #EC5037;
    color: #fff;
    border-radius: 8px;
    filter: drop-shadow(0 4px 0 #9A200D);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(2px);
    filter: drop-shadow(0 2px 0 #9A200D);
    opacity: 1;
}

.btn-primary:first-child {
    background-color: #EC5037;
    filter: drop-shadow(0 4px 0 #9A200D);
}

.btn-primary:first-child:hover {
    filter: drop-shadow(0 2px 0 #9A200D);
}

.btn-primary:last-child {
    background-color: #F1952B;
    filter: drop-shadow(0 4px 0 #94550C);
}

.btn-primary:last-child:hover {
    filter: drop-shadow(0 2px 0 #94550C);
}

.btn-primary .btn-label {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.28px;
    line-height: 1.6;
}

.btn-primary .btn-label span {
    font-size: 32px;
}

.btn-primary .btn-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.64px;
    text-align: center;
}

section {
    padding: 80px 20px;
}

.sec-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 1.6px;
    text-align: center;
    color: #333333;
    margin-bottom: 48px;
    display: inline-block;
    width: 100%;
}

.sec-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background-color: #F1952B;
    margin: 16px auto 0;
}

.concerns {
    padding: 100px 150px 100px;
    background-color: #F8F3EC;
    position: relative;
}

.concerns::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 100px 0 100px;
    border-color: #F8F3EC transparent transparent transparent;
    z-index: 1;
}

.concerns .title-highlight {
    color: #F1952B;
}

.concerns-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 0;
    margin-bottom: 40px;
}

.concerns-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    width: 100%;
    max-width: 1140px;
}

.concern-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 4px;
    text-align: center;
    width: 358px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.concern-item p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #333333;
    margin: 0;
}

.text-orange {
    color: #F1952B;
}

.concern-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    display: none;
}

.concerns-row:first-child .concern-item:nth-child(2)::after {
    display: block;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 16px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
}

.concerns-row:first-child .concern-item:first-child::after {
    display: block;
    bottom: -11px;
    left: 50px;
    border-width: 16px 18px 0 0;
    border-color: #fff transparent transparent transparent;
    transform: rotate(-30deg);
}

.concerns-row:first-child .concern-item:last-child::after {
    display: block;
    bottom: -11px;
    right: 50px;
    border-width: 16px 0 0 18px;
    border-color: #fff transparent transparent transparent;
    transform: rotate(30deg);
}

.concerns-row:last-child .concern-item:first-child::after {
    display: block;
    bottom: -11px;
    left: 50px;
    border-width: 16px 18px 0 0;
    border-color: #fff transparent transparent transparent;
    transform: rotate(-30deg);
}

.concerns-row:last-child .concern-item:last-child::after {
    display: block;
    bottom: -11px;
    right: 50px;
    border-width: 16px 0 0 18px;
    border-color: #fff transparent transparent transparent;
    transform: rotate(30deg);
}

.nayami-img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 40px auto 0;
}

.features {
    background-color: #fff;
    padding: 100px 150px;
}

.features .sec-title {
    padding-top: 40px;
}

.features .title-highlight {
    color: #F1952B;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 346px);
    gap: 48px;
    row-gap: 60px;
    justify-content: center;
    margin-top: 80px;
}

.feature-item {
    width: 346px;
    max-width: 600px;
    height: 321px;
    position: relative;
    margin: 0 auto;
}

.feature-img {
    width: 346px;
    height: 185px;
    object-fit: cover;
}

.feature-content {
    padding: 16px 0;
    position: relative;
}

.feature-number {
    position: absolute;
    bottom: calc(100% - 41px);
    left: 10px;
    font-family: "Adobe Garamond Pro", serif;
    font-size: 81px;
    font-weight: 400;
    color: #F1952B;
    line-height: 1;
    letter-spacing: 1.62px;
}

.feature-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.52px;
    margin-bottom: 0;
    color: #F1952B;
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #333333;
}

.merits {
    background-color: #FFEFD6;
    padding: 100px 150px;
}


.merits-grid {
    display: grid;
    grid-template-columns: repeat(4, 261px);
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
}

.merit-item {
    background-color: #fff;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-height: 258px;
}

.merit-icon {
    width: 80px;
    height: 80px;
}

.merit-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: #333333;
}

.merit-text .marker {
    background: linear-gradient(transparent 60%, #FFF28E 60%);
    padding: 0 2px;
}

.merits-message {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.36px;
    color: #333333;
    margin-top: 60px;
}

.merits-highlight {
    font-size: 32px;
    color: #EC5037;
    line-height: 44px;
}

.btnField {
    background-color: #1D3063;
    padding: 80px 20px;
}

.cta-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
    line-height: 36px;
    letter-spacing: 1.28px;
}

.cta-title .highlight-large {
    font-size: 40px;
}

.cta-title br {
    display: none;
}

.cta-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.cta-tel-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cta-tel-number {
    color: #fff;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
}

.cta-text {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #003366;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
    opacity: 1;
}

.btn-cta .btn-label {
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.btn-cta .btn-text {
    font-size: 18px;
    font-weight: 700;
}

.tel-box {
    text-align: center;
}

.tel-large {
    display: inline-block;
    font-size: 36px;
    font-weight: 900;
    color: #d32f2f;
    letter-spacing: 0.05em;
    padding: 20px 40px;
    border: 3px solid #d32f2f;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tel-large:hover {
    background-color: #d32f2f;
    color: #fff;
    opacity: 1;
}

.flow {
    background-color: #fff;
    padding: 100px 150px;
}


.flow-intro {
    margin-bottom: 80px;
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #333333;
}

.flow-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 32px;
    position: relative;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.flow-item {
    width: 257.5px;
    height: 156px;
    background-color: #FFEFD6;
    padding: 48px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.flow-arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.flow-row:first-child .flow-arrow-break {
    position: absolute;
    right: -36px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    z-index: 10;
}

.flow-number {
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background-color: #F1952B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
    font-family: "Adobe Garamond Pro", serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.flow-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: #333333;
    text-align: center;
}

.pricing {
    background: url('../img/price_bg.jpg') center/cover no-repeat;
    background-color: #f8f9fa;
}


.pricing-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    margin-top: 0;
}

.pricing-image-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-graph {
    width: 100%;
    height: auto;
}

.pricing-graph.pc {
    display: block;
}

.pricing-graph.sp {
    display: none;
}

.message {
    background-color: #F8F3EC;
}

.message-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    line-height: 38px;
    letter-spacing: 0.52px;
    margin-bottom: 40px;
}

.message-layout {
    display: flex;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.message-image {
    flex-shrink: 0;
}

.ceo-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ceo-photo.pc {
    display: block;
}

.ceo-photo.sp {
    display: none;
}

.message-content {
    flex: 1;
    background-color: #fff;
    padding: 24px 24px;
    margin-left: -60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-content p {
    margin-bottom: 24px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.32px;
}

.message-content .message-lead {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.message-signature {
    text-align: right;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #333333;
    margin-bottom: 0;
}

.company-info {
    max-width: 1140px;
    margin: 0 auto;
}

.company-info table {
    width: 100%;
    border-collapse: collapse;
}

.company-info th,
.company-info td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.company-info th {
    border-top: 1px solid #BFBAB4;
    border-bottom: 1px solid #BFBAB4;
    background: #DEDBD7;
    font-weight: 700;
    width: 20%;
    min-width: 100px;
}
.company-info td {
    border-top: 1px solid #BFBAB4;
    border-bottom: 1px solid #BFBAB4;
    background: var(--white, #FFF);
    width: 80%;
}

.faq {
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: visible;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 60px 20px 20px;
    cursor: pointer;
    position: relative;
    background-color: #FFEFD6;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #ffe8c2;
}

.faq-q,
.faq-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.48px;
    flex-shrink: 0;
    margin-right: 15px;
}

.faq-q {
    color: #F1952B;
    background-color: #fff;
}

.faq-a {
    color: #fff;
    background-color: #F1952B;
}

.faq-question-text {
    flex: 1;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 8px;
}

.faq-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    margin: 8px 0 0 0;
    border-radius: 8px;
}

.faq-answer-inner p {
    flex: 1;
    line-height: 1.8;
    color: #555;
}

.contact {
    background-color: #e4eef9;
    padding: 100px 20px;
}


.contact-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #333333;
    margin-bottom: 60px;
    margin-top: 0;
}

.form-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.52px;
    margin-bottom: 40px;
    color: #F1952B;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 80px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 32px;
    position: relative;
}

.error-message {
    display: none;
    color: #EC5037;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.4;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #EC5037;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin-bottom: 8px;
    color: #333333;
}

.required {
    color: #EC5037;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    line-height: 24px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F1952B;
}

.form-select {
    width: 40%;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M7 10l5 5 5-5z" fill="%23333"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.name-group {
    display: flex;
    gap: 16px;
}

.name-input {
    width: 32%;
}

.form-help {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.28px;
    color: #666666;
    margin-bottom: 8px;
    margin-top: 0;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #333333;
    position: relative;
    padding-left: 32px;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #CCCCCC;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.radio-label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F1952B;
    transition: transform 0.2s ease;
}

.radio-label input[type="radio"]:checked + span::before,
.radio-label:has(input[type="radio"]:checked)::before {
    border-color: #F1952B;
}

.radio-label input[type="radio"]:checked ~ *::after,
.radio-label:has(input[type="radio"]:checked)::after {
    transform: translateY(-50%) scale(1);
}

.radio-label:hover::before {
    border-color: #F1952B;
    box-shadow: 0 0 0 8px rgba(241, 149, 43, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333333;
    position: relative;
    padding-left: 32px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #CCCCCC;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.checkbox-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + span::before,
.checkbox-label:has(input[type="checkbox"]:checked)::before {
    background-color: #F1952B;
    border-color: #F1952B;
}

.checkbox-label input[type="checkbox"]:checked ~ *::after,
.checkbox-label:has(input[type="checkbox"]:checked)::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label:hover::before {
    border-color: #F1952B;
    box-shadow: 0 0 0 8px rgba(241, 149, 43, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    width: 80%;
    max-width: none;
    padding: 16px 32px;
    background-color: #EC5037;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.36px;
    cursor: pointer;
    filter: drop-shadow(0 4px 0 #9A200D);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(2px);
    filter: drop-shadow(0 2px 0 #9A200D);
}

.privacy {
    background-color: #e4eef9;
    padding: 0 20px 80px;
}

.privacy-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
}

.privacy-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
    color: #333333;
    text-align: center;
}

.privacy-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.28px;
    color: #333333;
}

.privacy-content h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #333333;
}

.privacy-content p {
    line-height: 24px;
    color: #333333;
    margin-bottom: 16px;
}

footer {
    background-color: #272B37;
    color: #fff;
    padding: 60px 3% 60px 3%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 60px;
    height: 47px;
    object-fit: contain;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-company-name {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 24px;
}

.footer-address {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
    margin: 0;
}

@media screen and (max-width: 1100px) {
    .concerns {
        padding: 60px 40px;
    }

    .concerns-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .concerns-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .concern-item {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .flow-intro {
        margin-bottom: 20px;
    }

    .flow-grid {
        gap: 0;
    }

    .flow-row {
        flex-direction: column;
        gap: 0;
    }

    .flow-arrow-icon,
    .flow-arrow-break {
        display: none;
    }

    .flow-item {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: 72px;
        padding: 16px;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 24px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

    .flow-item::after {
        content: '';
        position: absolute;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 24px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M8.58997 16.59L13.17 12L8.58997 7.41L9.99997 6L16 12L9.99997 18L8.58997 16.59Z" fill="%23EC5037"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        transform: translateX(-50%) rotate(90deg);
    }

    .flow-row:last-child .flow-item:last-child::after {
        display: none;
    }

    .flow-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 56px;
        height: 56px;
        font-size: 28px;
        padding: 0;
        flex-shrink: 0;
        background-color: #F1952B;
    }

    .flow-title {
        font-size: 18px;
        line-height: 26px;
        text-align: left;
        font-weight: 700;
    }

    .sp-fixed-nav {
        display: flex !important;
    }

    .hero {
        background-image: url('../img/main_sp.jpg');
        padding: 40px 15px 50px;
    }

    .badge {
        padding: 6px 20px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text-pc {
        display: none;
    }

    .hero-text-sp {
        display: inline;
    }

    .hero-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
        padding: 16px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: center;
        width: 100%;
    }

    .btn-primary {
        flex: 1;
        width: auto;
        height: auto;
        min-width: auto;
        padding: 16px 8px;
    }

    .btn-primary .btn-label {
        font-size: 15px;
        line-height: 1.4;
    }

    .btn-primary .btn-label span {
        font-size: 24px;
    }

    .btn-primary .btn-text {
        font-size: 12px;
        line-height: 18px;
    }

    .concerns {
        padding: 60px 16px;
    }

    .concerns::after {
        bottom: -40px;
        border-width: 40px 50px 0 50px;
    }

    .concerns-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .concerns-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .concern-item {
        width: 100%;
        height: auto;
        min-height: 88px;
        padding: 24px 20px;
    }

    .concerns-row:first-child .concern-item:nth-child(1)::after {
        display: block;
        bottom: -11px;
        right: 50px;
        left: auto;
        border-width: 16px 0 0 18px;
        border-color: #fff transparent transparent transparent;
        transform: rotate(30deg);
    }

    .concerns-row:first-child .concern-item:nth-child(2)::after {
        display: block;
        bottom: -11px;
        left: 50px;
        border-width: 16px 18px 0 0;
        border-color: #fff transparent transparent transparent;
        transform: rotate(-30deg);
    }

    .concerns-row:first-child .concern-item:nth-child(3)::after {
        display: block;
        bottom: -11px;
        right: 50px;
        left: auto;
        border-width: 16px 0 0 18px;
        border-color: #fff transparent transparent transparent;
        transform: rotate(30deg);
    }

    .concerns-row:last-child .concern-item:nth-child(1)::after {
        display: block;
        bottom: -11px;
        left: 50px;
        border-width: 16px 18px 0 0;
        border-color: #fff transparent transparent transparent;
        transform: rotate(-30deg);
    }

    .concerns-row:last-child .concern-item:nth-child(2)::after {
        display: block;
        bottom: -11px;
        right: 50px;
        left: auto;
        border-width: 16px 0 0 18px;
        border-color: #fff transparent transparent transparent;
        transform: rotate(30deg);
    }

    .features {
        padding: 60px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-item {
        width: 100%;
        height: auto;
    }

    .feature-img {
        width: 100%;
        height: auto;
    }

    .feature-number {
        font-size: 60px;
        bottom: calc(100% - 30px);
        left: 10px;
    }

    .feature-title {
        font-size: 20px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .cta-title .highlight-large {
        font-size: 28px;
    }

    .cta-tel-number {
        font-size: 32px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta {
        min-width: 100%;
        padding: 18px 20px;
    }

    .tel-large {
        font-size: 28px;
        padding: 15px 20px;
    }

    .pricing {
        background-image: url('../img/price_bg_sp.jpg');
    }

    .pricing-subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 24px;
        margin-top: 0;
    }

    .pricing-graph.pc {
        display: none !important;
    }

    .pricing-graph.sp {
        display: block !important;
    }

    .faq-question {
        padding: 15px 40px 15px 15px;
    }

    .faq-q,
    .faq-a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .privacy {
        padding: 0 15px 50px;
    }

    .privacy-box {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 18px;
        line-height: 26px;
    }

    .privacy-content {
        font-size: 12px;
        line-height: 20px;
    }

    .privacy-content h4 {
        font-size: 12px;
        margin-top: 16px;
    }

    footer {
        padding: 60px 0 100px;
    }

    .header-tel,
    .headBtnother {
        display: none;
    }

    .merits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
        gap: 12px;
    }

    .merit-item {
        min-height: auto;
    }

    .pricing-graph {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 16px;
    }

    .sec-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 48px;
    }

    .sec-title::after {
        width: 80px;
        margin: 12px auto 0;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    #gnav {
        padding: 12px 0;
    }

    .logo-img {
        width: 48px;
        height: auto;
    }

    .logo-text {
        font-size: 14px;
    }

    .company-sub {
        font-size: 11px;
    }

    .merits {
        padding: 60px 16px;
    }

    .merits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .merit-item {
        padding: 24px;
    }

    .merits-message {
        font-size: 18px;
        line-height: 32px;
        margin-top: 40px;
    }

    .merits-highlight {
        font-size: 26px;
    }

    .flow {
        padding: 60px 16px;
    }

    .flow-intro {
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 22px;
    }

    .message {
        padding: 60px 16px;
    }

    .message-subtitle {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .message-layout {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .message-image {
        width: 100%;
    }

    .ceo-photo.pc {
        display: none !important;
    }

    .ceo-photo.sp {
        display: block !important;
        width: 95%;
        margin: 0 auto;
        height: auto;
    }

    .message-content {
        margin-left: 0;
        padding: 20px;
    }

    .message-content p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 22px;
    }

    .message-content .message-lead {
        font-size: 18px;
        line-height: 28px;
    }

    .message-signature {
        font-size: 14px;
        line-height: 22px;
    }

    .company-info th,
    .company-info td {
        display: block;
        width: 100%;
        padding: 12px;
    }

    .company-info th {
        border-bottom: none;
    }

    .company-info td {
        border-top: none;
    }

    .contact-form {
        padding: 40px 20px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .name-group {
        flex-direction: column;
        gap: 16px;
    }

    .name-input {
        width: 100%;
    }

    .form-select {
        width: 100%;
    }

    .sp-footer {
        background-color: #272B37;
        color: #fff;
        padding: 40px 16px calc(100px + env(safe-area-inset-bottom)) 16px;
    }

    .sp-footer-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .sp-footer-nav a {
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        text-decoration: none;
    }

    .sp-footer-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .sp-footer-links a {
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        text-decoration: none;
    }

    .sp-footer-company {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .sp-footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sp-footer-logo-img {
        width: 48px;
        height: auto;
    }

    .sp-footer-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .sp-footer-company-name {
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        margin: 0;
    }

    .sp-footer-address {
        font-size: 13px;
        line-height: 18px;
        color: #fff;
        margin: 0;
    }

    .sp-footer-copyright {
        text-align: center;
    }

    .sp-footer-copyright p {
        font-size: 14px;
        color: #fff;
        margin: 0;
    }
}

@media screen and (max-width: 320px) {
    .logo-text {
        font-size: 12px;
    }

    .company-sub {
        font-size: 10px;
    }
}

/* ===================================
   Thanks Page Styles
   =================================== */

.thanks-page .header-tel,
.thanks-page .headBtnother,
.thanks-page .sp-fixed-nav {
    display: none !important;
}

.thanks-main {
    background-color: #F5F5F5;
    min-height: calc(100vh - 80px);
    padding: 60px 16px;
}

.thanks-container {
    max-width: 390px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px 16px;
    text-align: center;
}

.thanks-logo {
    margin-bottom: 32px;
}

.thanks-logo-img {
    width: 120px;
    height: auto;
}

.thanks-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #1D3063;
    margin-bottom: 32px;
}

.thanks-message {
    margin-bottom: 32px;
}

.thanks-message p {
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
}

.thanks-btn {
    display: block;
    background-color: #F1952B;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    margin-bottom: 32px;
    filter: drop-shadow(0 4px 0 #94550C);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.thanks-btn:hover {
    transform: translateY(2px);
    filter: drop-shadow(0 2px 0 #94550C);
}

.thanks-contact-box {
    border: 2px solid #1D3063;
    padding: 24px 16px;
    margin-bottom: 32px;
}

.thanks-contact-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

.thanks-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.thanks-tel-icon {
    width: 24px;
    height: auto;
}

.thanks-tel-number {
    font-size: 28px;
    font-weight: 700;
    color: #1D3063;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
}

.thanks-hours {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.thanks-image {
    width: 100%;
    margin-top: 32px;
}

.thanks-photo {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

@media screen and (min-width: 769px) {
    .thanks-main {
        padding: 80px 16px;
    }

    .thanks-container {
        max-width: 600px;
        padding: 60px 40px;
    }

    .thanks-logo-img {
        width: 150px;
    }

    .thanks-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .thanks-message p {
        font-size: 16px;
    }

    .thanks-btn {
        font-size: 18px;
        padding: 20px 32px;
    }

    .thanks-contact-box {
        padding: 32px 24px;
    }

    .thanks-contact-text {
        font-size: 16px;
    }

    .thanks-tel-icon {
        width: 32px;
    }

    .thanks-tel-number {
        font-size: 36px;
    }
}
