/* CSS Reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0,0,0,0);
    outline: 0;
    font-size: 100%;
    font-weight: 400;
    vertical-align: baseline;
}

body, html {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

nav ul, ul, ol {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, select {
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: 100%;
    font-weight: 600;
}

img {
    border: 0;
    border-style: none;
    vertical-align: top;
}

input[type=submit], input[type=button] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
    display: none;
}

input[type=submit]:focus, input[type=button]:focus {
    outline-offset: -2px;
}

input[type=text], input[type=email], textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type=radio], input[type=checkbox] {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Base Styles */
body {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 2;
    background: #fff;
    color: #333;
    font-size: 100%;
    font-family: YuGothic, "游ゴシック体", "游ゴシック midium", "Yu Gothic midium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    font-weight: 500;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-text-size-adjust: 100%;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul, ol {
    padding-left: 0;
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

p, span {
    font-weight: inherit;
}

input, select, textarea, button {
    font-family: YuGothic, "游ゴシック体", "游ゴシック midium", "Yu Gothic midium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

input[type=text]:focus, input[type=email]:focus, input[type=date]:focus, select:focus, textarea:focus {
    border: 1px solid #f87a26;
    outline: 0;
}

::-webkit-input-placeholder {
    color: #abb2bc;
    background: #fff;
    opacity: 1;
}

::-moz-placeholder {
    color: #abb2bc;
    background: #fff;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #abb2bc;
    background: #fff;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #abb2bc;
    background: #fff;
    opacity: 1;
}

select:invalid, ::placeholder {
    color: #abb2bc;
    background: #fff;
    opacity: 1;
}

/* Layout */
.l-header {
    width: 100%;
    margin: 0 auto;
}

.l-footer {
    width: 100%;
    background: #fff;
    text-align: justify;
}

.l-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    min-height: 100vh;
}

.l-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1rem 1.5rem;
}

/* Components */
.c-site-title {
    margin: 0 auto;
    max-width: 560px;
    text-align: center;
    background: url(../img/bg_title.png) no-repeat center top/contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 .5rem 0;
}

@media screen and (min-width: 561px) {
    .c-site-title {
        background: none;
    }
}

.c-site-title__logo {
    width: 148px;
    margin: 1rem 0 0;
}

.c-site-title__main {
    z-index: 2;
    margin: 0 auto 1rem;
}

@media screen and (min-width: 561px) {
    .c-site-title__wrapper {
        width: 600px;
        background: url(../img/bg_title2.png) no-repeat center top/contain;
    }
}

.c-footer__links {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
}

.c-footer__links__item a {
    position: relative;
    display: block;
    padding: 0 1em 0 0;
    font-size: .75rem;
    line-height: 1.4;
    color: #333;
    z-index: 2;
}

@media screen and (min-width: 561px) {
    .c-footer__links {
        max-width: 560px;
        margin: 0 auto;
    }
}

.c-copyright {
    position: relative;
    background: #abb2bc;
    color: #fff;
    font-size: .75rem;
    line-height: 1.5;
}

.c-copyright__inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.c-copyright__logo {
    display: block;
    max-width: 258px;
    margin-bottom: 1rem;
}

.c-copyright__txt-announcement {
    display: none;
}

.c-copyright__address,
.c-copyright__txt-lawyers-association,
.c-copyright__txt-privacypolicy {
    margin-bottom: 1rem;
}

.c-copyright__txt-privacypolicy a {
    color: #fff;
    text-decoration: none;
}

.c-copyright__txt-privacypolicy a:hover {
    text-decoration: underline;
}

.c-intro {
    border: solid 6px #abb2bc;
    padding: 1rem;
    margin: -2% 0 0;
    font-size: .9375rem;
    line-height: 1.5;
    background: #fff;
    z-index: 1;
    position: relative;
}

.c-intro.strong {
    border: solid 6px #f4c8c9;
}

.c-intro__txt {
    text-align: center;
}

.c-intro__txt .medium {
    font-size: 1.125rem;
    font-weight: bold;
}

.c-intro__txt .large {
    font-size: 1.5rem;
    font-weight: bold;
}

.c-progressbar {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.c-progressbar__item {
    z-index: 2;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #abb2bc;
    padding: 5px;
}

.c-progressbar__item + .c-progressbar__item::before {
    z-index: 1;
    content: "";
    background: #abb2bc;
    width: 28px;
    height: 6px;
    position: absolute;
    right: calc(100% - 2px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-progressbar__item:last-child {
    width: 32px;
    height: 32px;
    background: url(../img/ic_flag.svg) no-repeat center center/contain;
}

.c-progressbar__item:last-child::before {
    width: 20px;
    right: calc(100% + 4px);
}

.c-answer {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff2e5;
    border-radius: 30px;
}

.c-answer--sub {
    background: #fff;
    border: 1px solid #fff2e5;
}

.c-answer__txt {
    padding: 1.5rem 0 0;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    word-break: keep-all;
}

.c-answer__flock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0 0;
}

.c-amount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 0;
}

.c-amount__tit {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.c-amount__input {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .75rem;
    white-space: nowrap;
}

.c-amount-result__txt {
    background: #e8effa;
    padding: 2px 4px;
    margin-top: .5rem;
}

.c-amount-result__price {
    text-align: right;
    margin-top: .25rem;
}

.c-triangle {
    margin: 1rem auto;
    width: 40px;
    height: 16px;
    background: #f87a26;
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.c-result {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff2e5;
    border-radius: 30px;
}

.c-result__main {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 30px;
    border: 2px solid #ffc8ab;
    font-weight: bold;
    font-size: 1.125rem;
}

.c-result__main__txt {
    font-size: 1.25rem;
    margin-top: .5rem;
    line-height: 200%;
}

.c-result__strong {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.c-result__tit {
    font-size: 18px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.c-result__tit img {
    width: 60px;
    margin-right: .75rem;
}

.c-result__txt {
    background: #e8effa;
    padding: 1rem;
}

.c-strength__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0 2rem;
    position: relative;
    min-height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.125rem;
}

.c-strength__tit::before,
.c-strength__tit::after {
    content: "";
    background: url(../img/ic_kiduki.svg) no-repeat center center/contain;
    width: 22px;
    height: 44px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-strength__tit::after {
    left: inherit;
    right: 0;
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
}

.c-strength__point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.c-strength__point__item {
    background: #fff;
    border-radius: 30px;
    border: 2px solid #fff2e5;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.5;
}

.c-strength__point__txt {
    width: 100%;
}

.c-strength__point__img {
    width: 80px;
}

@media screen and (min-width: 561px) {
    .c-strength__point__item {
        padding: 1.25rem;
    }
}

/* Buttons */
.c-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 1rem 2rem;
}

.c-btn__answer,
.c-btn__tel,
.c-btn__arrow,
.c-btn__submit {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    width: 100%;
    height: 68px;
    -webkit-box-shadow: 0 6px 0 0 #c55911;
    box-shadow: 0 6px 0 0 #c55911;
    border: none;
    border-radius: 100vh;
    background: #f87a26;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
}

.c-btn__answer:hover,
.c-btn__tel:hover,
.c-btn__arrow:hover,
.c-btn__submit:hover {
    top: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #c55911;
    cursor: pointer;
}

.c-btn__answer .strong,
.c-btn__tel .strong,
.c-btn__arrow .strong,
.c-btn__submit .strong {
    display: contents;
    color: #ffe165;
    font-weight: bold;
}

.c-btn__send {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    height: 68px;
    -webkit-box-shadow: 0 6px 0 0 #7b7b7b;
    box-shadow: 0 6px 0 0 #7b7b7b;
    border: none;
    border-radius: 100vh;
    background: #abb2bc;
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    align-content: center;
}

.c-btn__send__sml {
    font-size: 1rem;
}

.c-btn__tel__txt {
    padding-left: 1.5rem;
    position: relative;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1;
}

.c-btn__tel__txt::before {
    content: "";
    width: 18px;
    height: 28px;
    background: #fff;
    -webkit-mask: url(../img/ic_smartphone.svg) no-repeat center center/contain;
    mask: url(../img/ic_smartphone.svg) no-repeat center center/contain;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-btn__tel__free {
    background: #ffe165;
    color: #f87a26;
    padding: 4px 8px;
    line-height: 1;
    font-size: .875rem;
    font-weight: bold;
    border-radius: 100vh;
    margin-left: .5rem;
}

.c-btn__arrow {
    background: #fff;
    border: 2px solid #333;
    color: #333;
    padding: 0 2.5rem;
    -webkit-box-shadow: 0 6px 0 0 rgba(0,0,0,.16);
    box-shadow: 0 6px 0 0 rgba(0,0,0,.16);
    position: relative;
}

.c-btn__arrow::before {
    content: "";
    position: absolute;
    background: url(../img/ic_arrow_circle.svg) no-repeat center center/contain;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-btn__arrow:hover {
    background: #fff;
}

.c-btn__back::before {
    right: inherit;
    left: 1rem;
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
}

.c-tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-left: 38px;
    background: url(../img/ic_tel.svg) no-repeat center left/30px auto;
    min-height: 30px;
    font-size: 1.5rem;
    color: #f87a26;
    font-family: "Oswald", sans-serif;
}

/* Form Inputs */
.c-input__name {
    width: 100%;
    padding: 8px;
    border: 1px solid #abb2bc;
    font-size: 1.125rem;
}

.c-input__txt {
    width: 100%;
    padding: 8px;
    border: 1px solid #abb2bc;
    font-size: 1.125rem;
}

.c-input__radio-label {
    display: inline-block;
    position: relative;
    line-height: 2;
    padding: 0 2rem;
    font-size: 1.125rem;
    cursor: pointer;
}

.c-input__radio-label::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 23px;
    height: 23px;
    border: 1px solid #abb2bc;
    border-radius: 50%;
    background-color: #fff;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
}

.c-input__radio-label::after {
    position: absolute;
    top: 50%;
    left: 7px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #127ceb;
    -webkit-transform: scale(2) translateY(-50%);
    transform: scale(2) translateY(-50%);
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: 0;
    content: "";
}

.c-input__radio input[type=radio]:checked + .c-input__radio-label::after {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
}

.c-input__checkbox-label {
    display: inline-block;
    position: relative;
    line-height: 2;
    padding: 0 2rem;
    font-size: 1.125rem;
    cursor: pointer;
}

.c-input__checkbox-label::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #abb2bc;
    background-color: #fff;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
}

.c-input__checkbox-label::after {
    position: absolute;
    top: 50%;
    left: 8px;
    width: 16px;
    height: 8px;
    border-bottom: 4px solid #127ceb;
    border-left: 4px solid #127ceb;
    -webkit-transform: rotate(45deg) translateY(-85%);
    transform: rotate(45deg) translateY(-85%);
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: 0;
    content: "";
}

.c-input__checkbox input[type=checkbox]:checked + .c-input__checkbox-label::after {
    opacity: 1;
    -webkit-transform: rotate(-45deg) translateY(-85%);
    transform: rotate(-45deg) translateY(-85%);
}

.c-input__checkbox-label--mini {
    font-size: .875rem;
}

.c-input__checkbox-label--mini:before {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.c-input__select {
    position: relative;
    width: 100%;
    padding: 8px;
    border: 1px solid #abb2bc;
    background: #fff;
    color: #333;
    font-size: 1.125rem;
    line-height: 1.5;
}

.c-input__select-wrap {
    position: relative;
    width: 100%;
}

.c-input__select-wrap::after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 12px;
    height: 12px;
    margin-top: -3px;
    border-right: 1px solid #abb2bc;
    border-bottom: 1px solid #abb2bc;
    -webkit-transform: rotate(45deg) translateY(-80%);
    transform: rotate(45deg) translateY(-80%);
    pointer-events: none;
    content: "";
}

.c-input__date {
    padding: 8px 4px;
    border: 1px solid #abb2bc;
    background: #fff;
    color: #333;
    font-size: 1.125rem;
}

.c-input__textarea {
    width: 100%;
    max-width: 720px;
    height: 254px;
    line-height: 1.7;
    padding: 8px;
    border: 1px solid #abb2bc;
    font-size: 1.125rem;
}

input[type=text], input[type=email], select, textarea {
    border-radius: 6px;
}

input[type=radio]:focus + label::before,
input[type=checkbox]:focus + label::before {
    border: 1px solid #f87a26;
    outline: 0;
}

.c-fileup {
    margin-top: .5rem;
    font-size: .875rem;
    font-weight: bold;
}

.c-privacypolicy {
    margin-bottom: 1rem;
}

.c-privacypolicy .opt {
    display: none;
}

.c-privacypolicy br {
    display: none;
}

input[type=text].require-input,
input[type=email].require-input,
select.require-input,
.c-input__select.require-input,
textarea.require-input {
    border: 2px solid #c43434;
}

/* Page Components */
.p-arrow {
    background: url(../img/bg_arrow.png) no-repeat top center;
    background-size: contain;
    padding: 3% 1rem 4.5%;
}

.p-arrow__txt {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

.p-form__list {
    padding-top: 2rem;
}

.p-form__list dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.p-form__ttl {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
    margin: 0 1rem 1rem 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: bold;
}

.p-input__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.p-input__name-last {
    width: 100%;
}

.p-thanks {
    padding: 2rem 1rem;
}

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

.p-strength {
    margin: 2rem auto;
    position: relative;
}

.p-strength::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: url(../img/bg_title2.png) no-repeat center top/130% auto;
    width: calc(100% + 2rem);
    height: 100%;
    top: 2rem;
    left: -1rem;
}

@media screen and (min-width: 561px) {
    .p-strength::before {
        background-size: 100% auto;
        width: 660px;
        top: 1.5rem;
        left: -66px;
    }
}

/* Utility Classes */
.u-required {
    margin: 0 .5em 0 -1.5rem;
    padding: 0 10px;
    background: #f87a26;
    color: #fff;
    font-weight: bold;
    border-radius: 0 100vh 100vh 0;
}

.u-optional {
    margin: 0 .5em 0 -1.5rem;
    padding: 0 10px;
    background: #fff;
    color: #f87a26;
    font-weight: bold;
    border-radius: 0 100vh 100vh 0;
}

.u-error {
    position: relative;
    padding-left: 1em;
    color: #c43434;
    font-size: .75rem;
    font-weight: bold;
}

.u-error::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    content: "※";
}

.u-link__blank {
    position: relative;
}

.u-link__blank::after {
    content: "";
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    width: 9px;
    height: 8px;
    margin: 0 3px;
    background: url(https://inquiry.vbest.jp/common_api/img/ico_blank.svg) no-repeat center center;
    background-size: contain;
}

.u-bold {
    font-weight: bold;
}

.u-red {
    color: #c43434;
}

.u-txt-color--main {
    color: #f87a26;
}

.u-marker {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #FFE165));
    background: linear-gradient(transparent 60%, #FFE165 40%);
    padding: 0 .2em;
}

.u-strong {
    font-size: 1.125rem;
    font-weight: bold;
}

.u-notice {
    padding-left: 1.1em;
    text-indent: -1.1em;
    font-size: .875rem;
}

.u-notice::before {
    content: "※";
}

/* Alignment Utilities */
.u-align--left {
    text-align: left;
}

.u-align--center {
    text-align: center;
}

.u-align--right {
    text-align: right;
}

/* Margin Bottom Utilities */
.u-margin-b--none {
    margin-bottom: 0;
}

.u-margin-b--xsmall {
    margin-bottom: .5rem;
}

.u-margin-b--small {
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.u-margin-b--normal {
    margin-bottom: 1.5rem;
}

.u-margin-b--medium {
    margin-bottom: 2rem;
}

.u-margin-b--large {
    margin-bottom: 3rem;
}

.u-margin-b--xlarge {
    margin-bottom: 4rem;
}

/* Margin Top Utilities */
.u-margin-t--none {
    margin-top: 0;
}

.u-margin-t--xsmall {
    margin-top: .5rem;
}

.u-margin-t--small {
    margin-top: 1rem;
}

.u-margin-t--normal {
    margin-top: 1.5rem;
}

.u-margin-t--medium {
    margin-top: 2rem;
}

.u-margin-t--large {
    margin-top: 3rem;
}

.u-margin-t--xlarge {
    margin-top: 4rem;
}

/* Padding Bottom Utilities */
.u-padding-b--none {
    padding-bottom: 0;
}

.u-padding-b--xsmall {
    padding-bottom: .5rem;
}

.u-padding-b--small {
    padding-bottom: 1rem;
}

.u-padding-b--normal {
    padding-bottom: 1.5rem;
}

.u-padding-b--medium {
    padding-bottom: 2rem;
}

.u-padding-b--large {
    padding-bottom: 3rem;
}

.u-padding-b--xlarge {
    padding-bottom: 4rem;
}

/* Padding Top Utilities */
.u-padding-t--none {
    padding-top: 0;
}

.u-padding-t--xsmall {
    padding-top: .5rem;
}

.u-padding-t--small {
    padding-top: 1rem;
}

.u-padding-t--normal {
    padding-top: 1.5rem;
}

.u-padding-t--medium {
    padding-top: 2rem;
}

.u-padding-t--large {
    padding-top: 3rem;
}

.u-padding-t--xlarge {
    padding-top: 4rem;
}

/* Font Size Utilities */
.u-font-size--xsmall {
    font-size: .75rem;
}

.u-font-size--small {
    font-size: .875rem;
}

.u-font-size--medium {
    font-size: 1.125rem;
}

.u-font-size--large {
    font-size: 1.25rem;
}

.u-font-size--xlarge {
    font-size: 1.5rem;
}







/* --------------------------- footerセクション --------------------------- */




.site-footer {
    background: #505050;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
    text-align: center;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    display: block;
    margin: 0 auto 30px;
    width: 180px;
    height: auto;
  }
  
  .footer-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    /* padding: 10px; */
  }
  
  .footer-divider {
    height: 1px;
    background: #fff;
    margin: 20px auto;
    max-width: 1200px;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #ccc;
    font-size: 13px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-copy {
    margin-top: 10px;
    font-size: 12px;
    color: #ccc;
  }




  /* 前に戻るボタン */

  .c-btn__back {
    max-width: 240px;
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    /* margin-right: 10px; */
    font-size: 15px;
    margin: 0 auto;
}

.c-btn__back:hover {
    background-color: #5a6268;
}








/* ボタンの無効状態 */
.c-btn__send:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ボタンの有効状態 */
.c-btn__send:enabled {
    background-color: #f87a26; /* または既存の色 */
    color: white;
    cursor: pointer;
    opacity: 1;
}


.call_cta{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.call_cta h1{
    font-size: 2.4rem;
    white-space: nowrap;
    margin: 0;
}

.call_cta img{
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin-bottom: 0px;
}


.btn_cover{
    gap: 12px;
}