@charset "UTF-8";
@import url("grid.css");

:root {
    /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #1f303c;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
    display: block;
}

a {
    color: var(--link-color);
    text-decoration-line: none;
}

a:hover {
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
.header {
    display: flex;
    flex-direction: column;
    padding: 2rem 0 0 0;
    margin-bottom: 10px;
}

.header-box {
    display: none !important;
}

.header #open,
#close {
    position: absolute;
    top: 20px;
    right: 12px;
}

nav ul {
    flex-direction: column;
}

.header li {
    padding-top: 0;
}

#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}

#close {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}

#navi {
    display: none;
}

nav ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
    margin: 1rem 0 0 0;
}

nav li {
    flex: 1 0 auto;
}

nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}

nav a:hover {
    background-color: var(--back-color);
}

nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px) {
    .header {
        flex-direction: row;
        margin-bottom: 0;
    }

    .header-box {
        display: block !important;
        margin-left: auto;
        margin-top: 8px;
    }

    .contact-button {
        padding: 1rem;
        border: 2px solid var(--base-color);
    }

    /* PC時はMENUボタンを非表示 */
    #open,
    #close {
        display: none !important;
    }

    #navi {
        display: block !important;
    }

    nav ul {
        flex-direction: row;
    }
}



/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
.section-wrap {
    padding: 14.49vw 0;
}

.gray-back {
    background-color: var(--back-color);
}

@media screen and (min-width: 768px) {
    .section-wrap {
        padding: 100px 0;
    }
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}

.catch h2 {
    padding-bottom: 1rem;
}

.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding: 0 1rem 1rem 1rem;
}

.center {
    text-align: center;
    margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
    margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #fff;
    padding: 3rem 0;
}

footer h4 {
    border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 2rem 0;
}

.table {
    margin: 4rem 0;
}

.table th {
    width: 100%;
    display: block;
}

.table td {
    display: block;
}

@media screen and (min-width: 768px) {
    .table th {
        width: 250px;
        display: table-cell;
    }

    .table td {
        display: table-cell;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    color: #000;
    text-align: center;
    padding: 1rem 0;
    background: #fff;
}

.copyright a {
    color: #000;
    text-decoration: none;
    display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    line-height: 1.1;
    z-index: 20;
}

#pagetop a {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #333;
    border-radius: 50%;
    opacity: 0.9;
    transition: 0.3s;
}

#pagetop a:hover,
#pagetop a:active,
#pagetop a:focus {
    opacity: 0.6;
}

#pagetop a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    font-size: 25px;
    text-align: center;
}





/*
# =================================================================
# カスタマイズ
# =================================================================
*/

body {
    color: #000;
}

.sp {
    display: block !important;
}

.pc {
    display: none !important;
}

.flex-box {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-box.align-fs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-box.align-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-box.align-fe {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-box.row-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

picture {
    display: block;
    line-height: 1;
}

.b {
    font-weight: 700;
}

.color01 {
    color: #00ada9;
}

.color02 {
    color: #f18d00;
}

.color03 {
    color: #fff799;
}

.dots {
    background-position: 100% 0;
    background-repeat: repeat-x;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

header {
    display: block;
    z-index: 9999;
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 5rem;
    box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: .625rem;
    padding-bottom: .625rem;
    max-width: unset;
}

header h1 {
    text-indent: -9999px;
    display: block;
    width: 100%;
    max-width: 200px;
    /* 適宜調整してください */
    aspect-ratio: 8.75 / 1.653;
    /* 元の画像の比率 */
    background: url(../images/service_name.webp) center center no-repeat;
    background-size: contain;
    margin: 0;
    line-height: 1;
}

header h1 a {
    height: 100%;
    width: 100%;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.top-contact-conts {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3125rem;
}

.top-tel-btn {
    background: #0075c2;
    font-size: .9375rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    padding: .875rem .9375rem 0.75rem;
    border-radius: 2rem;
    transition: 0.3s;
}

.top-tel-btn:hover,
.top-tel-btn:active,
.top-tel-btn:focus {
    color: #fff;
    filter: brightness(1.1);
}

.top-btn p {
    font-size: .625rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0;
}

.section-wrap.fv-sec {
    background: url(../images/fv_back_sp.webp) center top no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0 0;
    aspect-ratio: 414 / 556;
}

.fv-sec .tetsuzuki-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0 0;
}

.fv-sec .tetsuzuki-list li {
    color: #fff;
    border-radius: 3.125rem;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    background: #00ada9;
    padding: .375rem .75rem .3125rem;
    margin: 0;
}

.fv-sec h2 {
    font-size: 2.909rem;
    line-height: 1.2;
    font-weight: 700;
    margin: .625rem 0 0;
}

.section-wrap.top-cta-sec {
    padding: 1.5625rem 0;
}

.top-cta-sec .top-cta-text {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 1.5625rem;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.cta-btn-conts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.top-cta-sec .cta-btn-conts {
    flex-direction: row;
    justify-content: center;
    gap: .375rem;
    align-items: flex-start;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22.75rem;
    border-radius: .5rem;
    padding: 1.875rem 1rem 1.5625rem;
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    background: #f18d00;
    transition: 0.3s;
}

.cta-btn:hover,
.cta-btn:active,
.cta-btn:focus {
    color: #fff;
    filter: brightness(1.1);
}

.cta-btn-tel {
    background: #0075c2;
}

.top-cta-sec .cta-btn {
    min-width: unset;
    font-size: .7rem;
    width: 11.8125rem;
    padding: 1.25rem .625rem;
}

.cta-btn .balloon {
    position: absolute;
    top: -1.149rem;
    text-align: center;
}

.top-cta-sec .cta-btn .balloon {
    top: -.738rem;
}

.cta-btn .balloon img {
    max-width: 100%;
    display: block;
    width: 16.235rem;
    margin: 0 auto;
}

.top-cta-sec .cta-btn .balloon img {
    width: 8.49rem;
}

.cta-btn .balloon .balloon-text {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #0075c2;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    width: -moz-max-content;
    width: max-content;
}

.top-cta-sec .cta-btn .balloon .balloon-text {
    font-size: .55rem;
}

.cta-description {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    margin: .625rem 0 0;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.top-cta-sec .cta-description {
    font-size: .625rem;
    color: #000;
}

.section-wrap.intro-sec {
    padding: 0;
}

.intro-sec .first-wrap {
    padding: 2.5rem 0;
    background: #f5f2e9;
    position: relative;
}

.intro-sec .first-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.4375rem;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20vw solid transparent;
    border-left: 20vw solid transparent;
    border-top: 2.5rem solid #f5f2e9;
    border-bottom: 0;
}

h2.sec-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00ada9;
    text-align: center;
    margin: 0 0 2.1875rem;
}

.intro-sec .first-wrap .onayami-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
    list-style: none;
    margin: 0;
}

.intro-sec .first-wrap .onayami-list li {
    background: #fff;
    border-radius: .375rem;
    box-shadow: .1rem .1rem .4rem 0 rgba(0, 0, 0, .2);
    padding: .625rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.intro-sec .last-wrap {
    background: #d4ecea;
    padding: 3.75rem 0;
}

.intro-sec .last-wrap .flex-box.intro-flex {
    flex-direction: column;
    gap: 1.875rem;
}

.intro-sec .last-wrap .intro-img {
    width: 17.5rem;
    margin: 0 auto;
}

.intro-sec .last-wrap .intro-text {
    width: -moz-fit-content;
    width: fit-content;
}

.intro-sec .last-wrap .intro-text p {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.intro-sec .last-wrap .intro-text p .dots {
    background-image: radial-gradient(circle at center, #00ada9 20%, transparent 0);
    background-size: 1em .5em;
    padding-top: .3rem;
}

.section-wrap.example-sec {
    padding-bottom: 1.5625rem;
    position: relative;
}

.example-sec .example-balloon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    padding: .625rem 2rem;
    border-radius: 3.125rem;
    background: #00ada9;
    color: #fff;
    z-index: 1;
}

.example-sec .example-balloon::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: .85rem solid transparent;
    border-left: .85rem solid transparent;
    border-top: .85rem solid #00ada9;
    border-bottom: 0;
    position: absolute;
    bottom: -.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.example-sec .example-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.example-sec .example-list li {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
}

.example-sec .example-list li img {
    max-width: 20rem;
    margin: 0 auto;
}

.example-sec .example-list li p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.example-sec .example-list li p .dots {
    background-image: radial-gradient(circle at center, #00ada9 20%, transparent 0);
    background-size: 1em .5em;
    padding-top: .3rem;
}

.section-wrap.process-sec {
    padding-top: 1.5625rem;
}

.process-sec .process-balloon {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    padding: .75rem .8125rem .625rem;
    border-radius: 3.125rem;
    background: #00ada9;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
    position: relative;
}

.process-sec .process-balloon::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: .85rem solid transparent;
    border-left: .85rem solid transparent;
    border-top: .85rem solid #00ada9;
    border-bottom: 0;
    position: absolute;
    bottom: -.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.process-sec .process-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    margin-top: 1.5625rem;
}

.process-sec .process-container .process-box {
    width: 11.6875rem;
    height: 11.25rem;
    background: #fff;
    box-shadow: .1rem .1rem .4rem 0 rgba(0, 0, 0, .2);
    border-radius: .5rem;
    padding: .9375rem .75rem;
}

.process-sec .process-container .process-box .process-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.process-sec .process-container .process-box .process-title img {
    width: 1.6875rem;
}

.process-sec .process-container .process-box ul {
    margin-top: .9375rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 0;
    list-style: none;
}

.process-sec .process-container .process-box ul li {
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: .1875rem;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
    margin: 0;
}

.process-sec .process-container .process-box ul li::before {
    content: "";
    display: block;
    width: .625rem;
    height: .625rem;
    background: url(../images/icon/check.svg) no-repeat 50% / contain;
}

.section-wrap.cta-sec {
    background: url(../images/cta_back_sp.webp) center top no-repeat;
    background-size: cover;
    padding: 2.5rem 0 1.875rem;
}

.cta-sec .cta-text p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    margin: 0;
}

.cta-sec.cta-sec01 .cta-text .text-l {
    font-size: 1.75rem;
    font-weight: 700;
}

.cta-sec.cta-sec01 .cta-text p:nth-of-type(n+2) {
    margin-top: 1.25em;
}

.cta-sec.cta-sec01 .cta-btn-conts {
    margin-top: 2rem;
}

.flow-sec .stepbox {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 3.4375rem;
}

.flow-sec .stepbox.limit5 {
    margin-bottom: 2rem;
}

.flow-sec .stepbox>div {
    width: 5.3125rem;
    background-color: #00ada9;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    padding-top: 1.875rem;
    position: relative;
    line-height: 1.4;
}

.flow-sec .stepbox.limit1>div {
    background-color: #17b08f;
}

.flow-sec .stepbox.limit2>div {
    background-color: #2eb276;
}

.flow-sec .stepbox.limit3>div {
    background-color: #43b55e;
}

.flow-sec .stepbox.limit4>div {
    background-color: #59b745;
}

.flow-sec .stepbox.limit5>div {
    background-color: #6fba2c;
}

.flow-sec .stepbox>div div {
    transform: rotate(90deg);
}

.flow-sec .stepbox>div span {
    display: block;
    font-size: 1.25rem;
    letter-spacing: 0;
}

.flow-sec .stepbox>div span:last-child {
    font-size: 0.875rem;
}

.flow-sec .stepbox>div::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 2.1875rem solid transparent;
    border-top: 2.1875rem solid #00ada9;
    margin-left: -2.1875rem;
}

.flow-sec .stepbox.limit1>div::after {
    border-top: 2.1875rem solid #17b08f;
}

.flow-sec .stepbox.limit2>div::after {
    border-top: 2.1875rem solid #2eb276;
}

.flow-sec .stepbox.limit3>div::after {
    border-top: 2.1875rem solid #43b55e;
}

.flow-sec .stepbox.limit4>div::after {
    border-top: 2.1875rem solid #59b745;
}

.flow-sec .stepbox.limit5>div::after {
    border-top: 2.1875rem solid #6fba2c;
}

.flow-sec .stepbox dl {
    padding: 0.625rem 0 0 0.9375rem;
    width: 100%;
    margin: 0;
}

.flow-sec .stepbox dt {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 0.9375rem;
}

.flow-sec .stepbox dt span {
    background-color: #00ada9;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    height: 2.25rem;
    width: 2.25rem;
    text-align: center;
    vertical-align: baseline;
    line-height: 1.7;
    margin-right: 0.875rem;
    font-size: 1.375rem;
}

.flow-sec .stepbox dd {
    margin-bottom: 1.25rem;
    padding-bottom: 0.9375rem;
    line-height: 1.6;
    border-bottom: 1px solid #000;
}

.flow-sec .stepbox dd span {
    display: block;
    margin-top: 0.9375rem;
}

.flow-sec .stepbox dd .tyuui {
    font-size: 0.75rem;
}

.section-wrap.sozoku-text-sec {
    background-color: #fff;
    background: url(../images/brick-wall.png) center top repeat;
    padding-bottom: 0;
}

.sozoku-text-sec p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.sozoku-text-sec p:nth-of-type(n+2) {
    margin-top: 1.25rem;
}

.sozoku-text-sec .expert-img {
    width: 100vw;
    margin: 1.5625rem -0.9375rem 0;
}

h2.sec-title.sec-title02 {
    font-size: 2rem;
    line-height: 1.4;
}

.voice-sec .voice-list {
    margin: 0;
    list-style: none;
}

.voice-sec .voice-list li {
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    margin: 0;
    box-shadow: .1rem .1rem .4rem 0 rgba(0, 0, 0, .2);
}

.voice-sec .voice-list li:nth-child(n+2) {
    margin-top: 1.875rem;
}

.voice-sec .voice-list picture {
    border-radius: .5rem .5rem 0 0;
}

.voice-sec .voice-list .voice-text-box {
    padding: 1.25rem 0.9375rem;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
}

.voice-sec .voice-list .voice-text-box .voice-title {
    color: #00ada9;
    font-size: 1.25rem;
    lighting-color: 1.3;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.voice-sec .voice-list .voice-text p {
    line-height: 1.6;
    margin: 0;
}

.voice-sec .voice-list .voice-text p:nth-of-type(n+2) {
    margin-top: 1.25rem;
}

.cta-sec.cta-sec02 .cta-text img {
    width: 12.5rem;
    display: inline-block;
    margin: 0 .1875rem -.625rem 0;
}

.cta-sec.cta-sec02 .cta-text p .lh18 {
    line-height: 1.8;
}

.cta-sec.cta-sec02 .cta-text p.text-l {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff799;
    margin: 0.9375rem 0;
}

.cta-sec.cta-sec02 .cta-btn-conts {
    margin-top: 2rem;
}

.section-wrap.about-sec {
    background: #00ada9;
}

.about-sec h2.sec-title {
    color: #fff;
}

.about-sec .about-conts {
    margin: 0;
    list-style: none;
}

.about-sec .about-conts li {
    margin: 0;
}

.about-sec .about-conts li:nth-child(n+2) {
    margin-top: 2.5rem;
}

.about-sec .about-conts li .about-img {
    margin: 0 0 0.9375rem;
}

.about-sec .about-conts li .about-img img {
    border-radius: .375rem;
}

.about-sec .about-conts li p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.success-sec h2.sec-title {
    margin-bottom: 2.8125rem;
}

.success-sec .success-list {
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.125rem;
}

.success-sec .success-list li {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
}

.success-sec .success-list li .success-title {
    display: flex;
    align-items: center;
    gap: .625rem;
}

.success-sec .success-list li .success-title .success-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #00ada9;
}

.success-sec .success-list li .success-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00ada9;
    margin: 0;
}

.success-sec .success-list li .success-conts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.success-sec .success-list li .success-conts p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.success-sec .success-list li .success-conts .tyuui {
    font-size: .75rem;
    line-height: 1.5;
    margin-top: .625rem;
}

.section-wrap.success-bottom-conts {
    background: #e0f1f1;
    padding: 2.5rem 0;
    position: relative;
}

.success-bottom-conts::before {
    position: absolute;
    content: url(../images/icon/arrow.svg);
    top: -1.125rem;
    left: 0;
    right: 0;
    width: 6rem;
    height: 2rem;
    margin: auto;
}

.success-bottom-conts p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00ada9;
    text-align: center;
    margin: 0;
}

.success-bottom-conts p .text-s {
    font-size: 1.125rem;
}

.cta-sec.cta-sec03 .cta-text p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff799;
    text-align: center;
    margin: 0;
}

.cta-sec.cta-sec03 .cta-text p .dots {
    background-image: radial-gradient(circle at center, #fff799 20%, transparent 0);
    background-size: 1em .5em;
    padding-top: .5rem;
}

.cta-sec.cta-sec03 .cta-btn-conts {
    margin-top: 2.5rem;
}

.section-wrap.worry-sec {
    padding-bottom: 2.5rem;
}

.worry-sec .worry-conts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
    list-style: none;
    margin: 0 0 1.875rem;
}

.worry-sec .worry-conts li {
    margin: 0;
}

.worry-sec .attention-conts {
    width: 100%;
    max-width: 20rem;
    background: #00ada9;
    border-radius: .375rem;
    border: .0625rem solid #fff;
    padding: .875rem 1rem;
    margin: 0 auto;
}

.worry-sec .attention-conts .attention-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.worry-sec .attention-conts .attention-title::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: .3125rem solid transparent;
    border-left: .3125rem solid transparent;
    border-bottom: .5rem solid #fff;
    border-top: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-180deg);
}

.worry-sec .attention-conts .attention-text {
    background: #fff;
    padding: 1rem .875rem;
    border-radius: .375rem;
    margin-top: 1rem;
}

.worry-sec .attention-conts .attention-text p {
    font-size: .875rem;
    line-height: 1.8;
    margin: 0;
}

.worry-sec .attention-conts .attention-text p:nth-of-type(n+2) {
    margin-top: 0.9375rem;
}

.section-wrap.flow-sec02 {
    padding-top: 2.5rem;
}

.flow-sec02 .flow-conts {
    display: flex;
    flex-direction: column;
}

.flow-sec02 .flow-conts:nth-of-type(n+2) {
    margin-top: 2.1875rem;
}

.flow-sec02 .flow-conts .flow-num {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.flow-sec02 .flow-conts .flow-num span {
    display: block;
    color: #00ada9;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0.625rem 0 0.3125rem;
}

.flow-sec02 .flow-conts .flow-num .flow-icon {
    margin: 0 auto;
    width: 7.5rem;
}

.flow-sec02 .flow-conts .flow-num .flow-icon img {
    width: 100%;
}

.flow-sec02 .flow-conts .flow-text {
    padding-bottom: 1.875rem;
    position: relative;
}

.flow-sec02 .flow-conts:last-of-type .flow-text {
    padding-bottom: 0;
}

.flow-sec02 .flow-conts .flow-text::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #000;
    transform: translateX(-50%);
}

.flow-sec02 .flow-conts:last-of-type .flow-text::before {
    content: none;
}

.flow-sec02 .flow-conts .flow-text .flow-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 0.9375rem;
}

.flow-sec02 .flow-conts .flow-text p {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    margin: 0;
}

.flow-sec02 .flow-conts .flow-text .flow-comment {
    margin-top: 2.5rem;
    background: #00ada9;
    border-radius: .375rem;
    padding: 2.8125rem 1.25rem 1.25rem;
}

.flow-sec02 .flow-conts .flow-text .flow-comment p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.flow-sec02 .flow-conts .flow-text .flow-comment .comment-head {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    color: #000;
    background: #fff;
    border-radius: 3.125rem;
    border: .1875rem solid #00ada9;
    width: fit-content;
    padding: 0.3125rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3.75rem auto 1.25rem;
}

.flow-sec02 .flow-conts .flow-text .flow-comment .comment-head img {
    width: 6.625rem;
}

.flow-sec02 .flow-conts .flow-text .flow-comment h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    margin: 0 0 1.25rem;
}

.section-wrap.expert-sec {
    background: #f5f2e9;
    padding-bottom: 1.5625rem;
}

.expert-sec h2.sec-title {
    color: #000;
}

.expert-sec h2.sec-title span {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0.625rem;
}

.expert-sec .expert-conts {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    align-items: center;
}

.expert-sec .expert-conts p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.section-wrap.plan-sec {
    background: #f5f2e9;
    padding-top: 1.5625rem;
}

.plan-sec .plan-box {
    background: #fff;
    border-radius: 0.375rem;
    padding: 1.5625rem 1.25rem;
}

.plan-sec .plan-box h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #00ada9;
    margin: 0 0 1.875rem;
}

.plan-sec .plan-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    list-style: none;
}

.plan-sec .plan-list .plan-conts {
    margin: 0;
}

.plan-sec .plan-list .plan-conts:nth-child(n+2) {
    margin-top: 2.5rem;
}

.plan-sec .plan-list .plan-conts .plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00ada9;
    margin: 0 0 0.625rem;
}

.plan-sec .plan-list .plan-conts.plan01 .plan-title {
    font-size: 2.125rem;
}

.plan-sec .plan-list .plan-conts.plan01 .plan-title .text-s {
    font-size: 1.25rem;
}

.plan-sec .plan-list .plan-conts ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    list-style: none;
}

.plan-sec .plan-list .plan-conts ul li {
    display: flex;
    gap: .625rem;
    align-items: center;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.plan-sec .plan-list .plan-conts ul li:nth-child(n+2) {
    margin-top: 0.5rem;
}

.plan-sec .plan-list .plan-conts ul li::before {
    content: "";
    background: url(../images/icon/check.svg) no-repeat 50% / cover;
    background-size: 100%;
    width: .9375rem;
    height: .9375rem;
}

.plan-sec .plan-list .plan-conts ul.two-columns li {
    display: grid;
    grid-template-columns: .9375rem 7.8125rem 1fr;
}

.plan-sec .plan-list .plan-conts p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.plan-sec .plan-list .plan-conts.plan02 p {
    font-weight: 500;
    margin: 1.25rem 0 0.5rem;
}

.plan-sec .plan-list .plan-conts small {
    font-size: .875rem;
    line-height: 1.8;
}

.section-wrap.difference-sec {
    background: #d4ecea;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll::before {
    content: "※横にスクロールできます。";
}

.difference-sec .difference-table {
    width: max-content;
    margin: 15px 0 0;
    position: relative;
}

.difference-sec .difference-table::before {
    position: absolute;
    top: -5px;
    left: 147px;
    content: "";
    border: 6px solid #f18d00;
    width: 170px;
    height: 101%;
}

.difference-sec .difference-table tr {
    height: 78px;
}

.difference-sec .difference-table th {
    width: 150px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    border: 1px solid #d4ecea;
    background-color: #fff;
    padding: 5px;
}

.difference-sec .difference-table th.th-blank {
    background-color: #d4ecea;
    width: auto;
    border: none;
}

.difference-sec .difference-table .th-first {
    width: 170px;
}

.difference-sec .difference-table .th-green {
    color: #fff;
    background-color: #00ada9;
}

.difference-sec .difference-table .th-yellow {
    width: 164px;
    color: #f18c0a;
    background-color: #fffbc7;
}

.difference-sec .difference-table .th-first img {
    width: 138px;
    display: inline-block;
}

.difference-sec .difference-table td {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    border: 1px solid #d4ecea;
    background-color: #fff;
    padding: 5px;
}

.difference-sec .difference-table td .text-s {
    font-size: 14px;
    font-weight: inherit;
    line-height: inherit;
}

.section-wrap.self-sec {
    padding-bottom: 3.125rem;
    position: relative;
}

.section-wrap.self-sec::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.4375rem;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20vw solid transparent;
    border-left: 20vw solid transparent;
    border-top: 2.5rem solid #fff;
    border-bottom: 0;
}

.self-sec .self-conts {
    display: flex;
    flex-direction: column;
    gap: 2.1875rem;
}

.self-sec .self-conts .self-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
}

.self-sec .self-conts .self-block h3 {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

.self-sec .self-conts .self-block .self-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
}

.self-sec .self-conts .self-block .self-list>li {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: .1rem .1rem .4rem 0 rgba(0, 0, 0, .2);
    padding: 0.9375rem;
    height: 7.625rem;
    width: 48.7%;
    margin: 0;
}

.self-sec .self-conts .self-block .self-list>li .self-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.75rem;
}

.self-sec .self-conts .self-block .self-list>li .self-title img {
    width: 1.625rem;
}

.self-sec .self-conts .self-block .self-list>li ul {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    margin: 0;
    list-style: none;
}

.self-sec .self-conts .self-block .self-list>li ul li {
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    display: flex;
    align-items: center;
    gap: .3125rem;
    margin: 0;
}

.self-sec .self-conts .self-block .self-list>li ul li::before {
    content: "";
    width: .625rem;
    height: .625rem;
    background: url(../images/icon/check.svg) no-repeat 50% / contain;
}

.self-sec .self-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    margin: 3.125rem 0 0;
}

.self-sec .self-text .text-l {
    display: block;
    font-size: 2rem;
}

.self-sec .self-text .dots {
    background-image: radial-gradient(circle at center, #00ada9 20%, transparent 0);
    background-size: 1em .5em;
    padding-top: .375rem;
}

.section-wrap.information-sec {
    background: #e0f1f1;
}

.information-sec h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 1.875rem;
}

.information-sec h2 .dots {
    background-image: radial-gradient(circle at center, #00ada9 20%, transparent 0);
    background-size: 1em .5em;
    padding-top: .3rem;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.information-sec .information-box {
    padding: 1.5625rem;
    background-color: #fff;
    border-radius: 0.375rem;
}

.information-sec .information-box .information-user {
    width: 6.5625rem;
    margin: 0 auto 1.25rem;
}

.information-sec .information-box .information-content {
    width: 20.5rem;
    margin: 0 auto 1.25rem;
}

.information-sec .information-box .information-building {
    width: 19.875rem;
    margin: 0 auto;
}

.cta-sec.cta-sec04 .cta-text p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
}

.cta-sec.cta-sec04 .cta-text p:nth-of-type(n+2) {
    margin-top: 1.5rem;
    line-height: 1.7;
}

.cta-sec.cta-sec04 .cta-text img {
    display: inline-block;
    width: 10.625rem;
    margin: 0 .625rem .25rem 1.375rem;
    vertical-align: bottom;
}

.cta-sec.cta-sec04 .cta-btn-conts {
    margin-top: 2.1875rem;
}

.section-wrap.message-sec {
    padding-bottom: 0;
}

.message-sec .container {
    display: flex;
    flex-direction: column;
    gap: 2.1875rem;
}

.message-sec .message-text {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.message-sec .message-text .message-title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #00ada9;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    margin: 0;
}

.message-sec .message-text .message-title .text-s {
    font-size: 1.5rem;
    display: block;
    line-height: 1.3;
    color: #000;
}

.message-sec .message-text div p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.message-sec .message-text div p:nth-of-type(n+2) {
    margin-top: 1.25rem;
}

.message-sec .message-text .message-bottom {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #00ada9;
    text-align: center;
    margin: 0;
}

.section-wrap.faq-sec {
    background: #e0f1f1;
}

.faq-sec .qa-container {
    margin: 0 auto;
    width: 100%;
}

.faq-sec .qa-list {
    background: #fff;
    border-radius: 0.375rem;
}

.faq-sec .qa-list:not(:first-child) {
    margin-top: 0.9375rem;
}

.faq-sec .question-title {
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 1.25rem 2.1875rem 1.25rem 3.75rem;
    position: relative;
}

.faq-sec .question-title::before {
    position: absolute;
    display: block;
    content: url(../images/icon/question.svg);
    top: 50%;
    left: 0.9375rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2.1875rem;
    height: 2.1875rem;
}

.faq-sec .question-title::after {
    position: absolute;
    display: block;
    content: '';
    top: 45%;
    right: 0.625rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    transition: all .3s ease-in-out;
    margin: auto;
}

.faq-sec .question-title.open::after {
    transform: rotate(-45deg);
    top: 55%;
}

.faq-sec .answer-text {
    display: none;
    padding: 0 2.1875rem 1.25rem 3.75rem;
    position: relative;
}

.faq-sec .answer-text::before {
    position: absolute;
    display: block;
    content: url(../images/icon/answer.svg);
    top: 0.25rem;
    left: 0.9375rem;
    width: 2.1875rem;
    height: 2.1875rem;
    margin: auto;
}

.faq-sec .answer-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.faq-sec .answer-text p:nth-of-type(n+2) {
    margin-top: 0.9375rem;
}

footer {
    padding: 7.25vw 0 2.42vw;
}

.company-logo {
    width: 67.63vw;
    margin: 0 auto 6.04vw;
}

.footer-menu {
    margin: 0;
    text-align: center;
}

.footer-menu li {
    list-style: none;
    font-size: 3.38vw;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.footer-menu li:nth-child(n+2) {
    margin-top: 2.42vw;
}

.footer-menu li a {
    text-decoration: none;
    color: #000;
}

.footer-menu li a:hover,
.footer-menu li a:active,
.footer-menu li a:focus {
    text-decoration: underline;
}

.copyright {
    padding: 2.42vw 0;
}

.copyright small {
    font-size: 3.38vw;
}



/* 利用規約ページ */

header .service-name {
    text-indent: -9999px;
    display: block;
    width: 8.75rem;
    height: 1.653rem;
    background: url(../images/service_name.webp) center no-repeat;
    background-size: cover;
    margin: 0;
    line-height: 1;
}

header .service-name a {
    height: 100%;
    width: 100%;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.law-sec h1.main-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 2.5rem;
}

.law-sec .terms-of-service p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.625rem;
}

.law-sec .terms-of-service h2 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.875rem;
    margin-bottom: 0.625rem;
}

.law-sec .terms-conditions ul {
    margin-left: 1.25rem;
    list-style-type: none;
}

.law-sec .terms-conditions ul li {
    margin-bottom: 0.625rem;
}

.law-sec .terms-conditions ul li::before {
    content: "・";
    margin-right: 0.3125rem;
}

.law-sec .terms-conditions ul li ul {
    margin: 0.625rem 0 0 1.25rem;
    font-size: 100%;
}

#terms footer,
#terms .copyright {
    background: #f5f2e9;
}



/* 相談お申し込みページ */

.contact-sec h1.main-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 2.5rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: auto;
}

.contact-form .tyuui {
    display: block;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 15px 0 0;
}

form#mailformpro .tel-time {
    margin-top: 15px;
}

form#mailformpro .radio-btn label {
    border: none !important;
}

form#mailformpro #period {
    margin-top: 15px;
}

form#mailformpro #period p {
    font-weight: 700;
    margin-bottom: 10px;
}

form#mailformpro .privacy-check {
    margin: 25px 0;
}

form#mailformpro .privacy-check .must {
    margin: 0 20px 0 0;
}

form#mailformpro .privacy-check input {
    transform: scale(2.0);
}

form#mailformpro .privacy-check label {
    border: none !important;
}

form#mailformpro .privacy-check .privacy-text {
    display: inline-block;
    margin: 0 0 0 15px;
}

form#mailformpro .btn-wrap {
    margin: 30px auto 0;
    text-align: center;
}

.btn01 {
    display: inline-block;
    margin: 0;
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    background-color: #00ada9 !important;
    text-decoration: none;
    border-radius: 30px;
    padding: 1em 1.5em !important;
    width: 250px;
    height: auto;
    transition: 0.3s;
    border: none !important;
}

.btn01:hover,
.btn01:active,
.btn01:focus {
    color: #fff;
    filter: brightness(1.1) !important;
}

#contact footer,
#contact .copyright {
    background: #f5f2e9;
}



/* サンクスページ */

#thanks .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thanks-sec .main-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 2.5rem;
}

div#mfp_thanks {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.thanks-sec p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.thanks-sec p:nth-of-type(n+2) {
    margin-top: 1.25rem;
}

.thanks-sec .thanks-btn {
    margin: 30px auto 0;
    text-align: center;
}

#thanks footer,
#thanks .copyright {
    background: #f5f2e9;
}

#thanks footer {
    margin-top: auto;
}









@media (min-width : 768px) {

    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

    header {
        position: sticky;
        height: 80px;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, .4);
    }

    header .container {
        padding: 13px 25px !important;
        max-width: unset !important;
    }

    header h1 {
        width: 25%;
        max-width: 200px;
        height: 38px;
    }

    .top-contact-conts {
        gap: 5px;
    }

    .tel-num {
        font-size: 3.0rem;
        font-weight: 700;
        line-height: 1;
        margin: 0;
        font-feature-settings: "palt";
        letter-spacing: 0;
    }

    .tel-text {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.3;
        margin: 3px 0 0;
        font-feature-settings: "palt";
        letter-spacing: 0.03em;
    }

    .top-btn {
        gap: .625rem;
    }

    .top-tel-btn {
        font-size: 1.8rem;
        line-height: 2;
        padding: 10px 20px;
        border-radius: 30px;
        height: 54px;
    }

    .section-wrap.fv-sec {
        background: url(../images/fv_back_pc.webp) 53% top no-repeat;
        background-size: cover;
        display: block;
        padding: 5.61vw 0 0;
        aspect-ratio: 980 / 560;
    }

    .fv-sec .container {
        padding: 0 4.08vw;
    }

    .fv-sec .catch {
        width: 67.35vw;
    }

    .fv-sec .tetsuzuki-list {
        margin: 4.59vw 0 0;
        width: 66.02vw;
    }

    .fv-sec .tetsuzuki-list li {
        border-radius: 40px;
        font-size: 2.24vw;
        padding: 1.02vw 2.04vw 0.82vw;
    }

    .fv-sec h2 {
        font-size: 7.96vw;
        margin: 1.02vw 0 0;
    }

    .section-wrap.top-cta-sec {
        padding: 50px 0 40px;
    }

    .top-cta-sec .top-cta-text {
        font-size: 3.4rem;
        margin: 0 0 40px;
    }

    .cta-btn-conts {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        max-width: 890px;
        margin: 0 auto;
        gap: 50px;
    }

    .top-cta-sec .cta-btn-conts {
        max-width: 680px;
        margin: 0 auto;
        gap: 40px;
        align-items: flex-start;
    }

    .cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 490px;
        border-radius: 12px;
        padding: 40px 20px 35px;
        position: relative;
        font-size: 3.4rem;
    }

    .top-cta-sec .cta-btn {
        font-size: 2rem;
        width: 320px;
        padding: 30px 20px 25px;
    }

    .cta-btn .balloon {
        top: -26px;
    }

    .top-cta-sec .cta-btn .balloon {
        top: -20px;
    }

    .cta-btn .balloon img {
        width: 300px;
    }

    .top-cta-sec .cta-btn .balloon img {
        width: 230px;
    }

    .cta-btn .balloon .balloon-text {
        font-size: 1.8rem;
    }

    .top-cta-sec .cta-btn .balloon .balloon-text {
        font-size: 1.7rem;
    }

    .cta-description {
        font-size: 2.2rem;
        margin: 10px 0 0;
    }

    .top-cta-sec .cta-description {
        font-size: 1.6rem;
    }

    .intro-sec .first-wrap {
        padding: 70px 0 60px;
    }

    .intro-sec .first-wrap::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -59px;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 120px solid transparent;
        border-left: 120px solid transparent;
        border-top: 60px solid #f5f2e9;
        border-bottom: 0;
    }

    h2.sec-title {
        font-size: 4.0rem;
        margin: 0 0 40px;
    }

    .intro-sec .first-wrap .onayami-list {
        width: 665px;
        gap: 25px;
        margin: 0 auto;
    }

    .intro-sec .first-wrap .onayami-list li {
        border-radius: 10px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        padding: 20px 20px 15px;
        font-size: 2.4rem;
    }

    .intro-sec .last-wrap {
        padding: 120px 0;
    }

    .intro-sec .last-wrap .flex-box.intro-flex {
        max-width: 850px;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 auto;
        gap: 40px;
    }

    .intro-sec .last-wrap .intro-img {
        width: 320px;
        margin: 0 auto;
    }

    .intro-sec .last-wrap .intro-text {
        width: fit-content;
        margin: 0 auto;
    }

    .intro-sec .last-wrap .intro-text p {
        font-size: 3.0rem;
        line-height: 1.5;
        text-align: left;
    }

    .intro-sec .last-wrap .intro-text p .dots {
        background-size: 1em .9em;
        padding-top: 1.25rem;
    }

    .intro-sec .last-wrap .intro-text p:nth-of-type(n+2) {
        margin-top: 40px;
    }

    .section-wrap.example-sec {
        padding: 100px 0 40px;
        position: relative;
    }

    .example-sec .example-balloon {
        font-size: 3.0rem;
        padding: 12px 50px 10px;
        border-radius: 50px;
    }

    .example-sec .example-balloon::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 18px solid transparent;
        border-left: 18px solid transparent;
        border-top: 18px solid #00ada9;
        border-bottom: 0;
        position: absolute;
        bottom: -17px;
        left: 50%;
        transform: translateX(-50%);
    }

    .example-sec .example-list {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 950px;
        margin: 0 auto;
    }

    .example-sec .example-list li {
        gap: 25px;
    }

    .example-sec .example-list li img {
        max-width: unset;
        width: 450px;
    }

    .example-sec .example-list li p {
        font-size: 2.8rem;
        line-height: 1.5;
        text-align: left;
    }

    .example-sec .example-list li p .dots {
        background-size: 1em .9em;
        padding-top: 1.25rem;
    }

    .section-wrap.process-sec {
        padding: 40px 0 100px;
    }

    .process-sec .process-balloon {
        font-size: 3.0rem;
        padding: 20px 50px 15px;
        border-radius: 50px;
    }

    .process-sec .process-balloon::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 18px solid transparent;
        border-left: 18px solid transparent;
        border-top: 18px solid #00ada9;
        border-bottom: 0;
        position: absolute;
        bottom: -17px;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-sec .process-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 28px;
        max-width: 486px;
        margin: 40px auto 0;
    }

    .process-sec .process-container .process-box {
        width: 229px;
        height: 220px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        border-radius: 10px;
        padding: 20px 10px 20px 15px;
    }

    .process-sec .process-container .process-box .process-title {
        gap: 15px;
        font-size: 2.6rem;
    }

    .process-sec .process-container .process-box .process-title img {
        width: 34px;
    }

    .process-sec .process-container .process-box ul {
        margin-top: 20px;
        gap: 8px;
    }

    .process-sec .process-container .process-box ul li {
        font-size: 1.4rem;
        align-items: center;
        gap: 5px;
    }

    .process-sec .process-container .process-box ul li::before {
        content: "";
        display: block;
        width: 14px;
        height: 14px;
    }

    .section-wrap.cta-sec {
        background: url(../images/cta_back_pc.webp) center top no-repeat;
        background-size: cover;
        padding: 80px 0;
    }

    .cta-sec.cta-sec01 .cta-text p {
        font-size: 3.2rem;
        line-height: 1.4;
    }

    .cta-sec.cta-sec01 .cta-text p .pc {
        display: inline !important;
    }

    .cta-sec.cta-sec01 .cta-text .text-l {
        font-size: 3.2rem;
        font-weight: 500;
    }

    .cta-sec.cta-sec01 .cta-text p:nth-of-type(n+2) {
        margin-top: 50px;
    }

    .cta-sec.cta-sec01 .cta-text .text-l-pc {
        font-size: 4.0rem;
        font-weight: 700;
        line-height: 1.7;
        color: #fff799;
        margin-left: -10px;
        margin-right: -10px;
    }

    .cta-sec.cta-sec01 .cta-text .text-l-pc .text-l {
        font-size: 4.0rem;
        font-weight: 700;
    }

    .cta-sec.cta-sec01 .cta-text .text-l-pc .dots {
        background-image: radial-gradient(circle at center, #fff799 20%, transparent 0);
        background-size: 1em .5em;
        padding-top: 1rem;
    }

    .cta-sec.cta-sec01 .cta-btn-conts {
        margin-top: 60px;
    }

    .flow-sec h2.sec-title {
        margin-bottom: 90px;
    }

    .flow-sec .stepbox {
        display: flex;
        flex-wrap: nowrap;
        margin-bottom: 90px;
    }

    .flow-sec .stepbox.limit5 {
        margin-bottom: 40px;
    }

    .flow-sec .stepbox>div {
        width: 136px;
        font-size: 2.2rem;
        padding-top: 40px;
        position: relative;
        line-height: 1.4;
    }

    .flow-sec .stepbox>div span {
        font-size: 3.0rem;
    }

    .flow-sec .stepbox>div span:last-child {
        font-size: 1.8rem;
    }

    .flow-sec .stepbox>div::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        border-width: 60px;
        border-top-width: 60px !important;
        margin-left: -60px;
    }

    .flow-sec .stepbox dl {
        padding: 10px 0 0 30px;
    }

    .flow-sec .stepbox dt {
        font-size: 3.0rem;
        padding-bottom: 15px;
    }

    .flow-sec .stepbox dt span {
        height: 50px;
        width: 50px;
        line-height: 1.7;
        margin-right: 15px;
        font-size: 3.0rem;
    }

    .flow-sec .stepbox dd {
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-size: 1.8rem;
        line-height: 1.8;
    }

    .flow-sec .stepbox dd span {
        display: block;
        margin-top: 15px;
    }

    .flow-sec .stepbox dd .tyuui {
        font-size: 1.4rem;
    }

    .sozoku-text-sec p {
        font-size: 2.4rem;
        line-height: 1.8;
        text-align: center;
    }

    .sozoku-text-sec p:nth-of-type(n+2) {
        margin-top: 25px;
    }

    .sozoku-text-sec .expert-img {
        width: 100%;
        margin: 20px 0 0;
    }

    h2.sec-title.sec-title02 {
        font-size: 4.8rem;
        line-height: 1.4;
    }

    .voice-sec h2.sec-title.sec-title02 {
        font-size: 4.4rem;
        margin-bottom: 20px;
    }

    .voice-sec .voice-description {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        margin: 0 0 50px;
    }

    .voice-sec .voice-list {
        display: flex;
        justify-content: center;
        gap: 26px;
    }

    .voice-sec .voice-list li {
        width: 316px;
        border-radius: 8px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
        margin: 0 !important;
    }

    .voice-sec .voice-list picture {
        border-radius: 8px 8px 0 0;
    }

    .voice-sec .voice-list .voice-text-box {
        padding: 20px 15px;
        gap: 15px;
    }

    .voice-sec .voice-list .voice-text-box .voice-title {
        font-size: 2.2rem;
    }

    .voice-sec .voice-list .voice-text p {
        font-size: 1.6rem;
    }

    .voice-sec .voice-list .voice-text p:nth-of-type(n+2) {
        margin-top: 15px;
    }

    .section-wrap.cta-sec.cta-sec02 {
        background: none;
        padding: 0;
    }

    .cta-sec.cta-sec02 .container {
        max-width: unset;
        padding: 0;
    }

    .cta-sec.cta-sec02 .cta-text {
        padding: 80px 0 70px;
        background-image: url(../images/cta_back02_pc.webp), url(../images/cta_back_pc.webp);
        background-position: 40% bottom, center top;
        background-repeat: no-repeat;
        background-size: 1080px 565px, cover;

    }

    .cta-sec.cta-sec02 .cta-text>div {
        margin: 0 auto 0 36%;
        padding-right: 20px;
        width: fit-content;
    }

    .cta-sec.cta-sec02 .cta-text p {
        text-align: left;
        font-size: 3.4rem;
        font-weight: 500;
        line-height: 1.5;
    }

    .cta-sec.cta-sec02 .cta-text img {
        width: 340px;
        margin: 0 10px -20px 0;
    }

    .cta-sec.cta-sec02 .cta-text p.text-l {
        font-size: 5.0rem;
        line-height: 1.3;
        margin: 40px 0;
    }

    .cta-sec.cta-sec02 .cta-btn-conts {
        max-width: 970px;
        margin: 0 auto;
        padding: 80px 40px 60px;
        background: #fff;
    }

    .cta-sec.cta-sec02 .cta-btn-conts .cta-description {
        color: #000;
    }

    .about-sec h2.sec-title {
        color: #fff;
    }

    .about-sec .about-conts {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .about-sec .about-conts li {
        width: 475px;
        margin: 0 !important;
    }

    .about-sec .about-conts li .about-img {
        margin: 0 0 25px;
    }

    .about-sec .about-conts li .about-img img {
        border-radius: 8px;
    }

    .about-sec .about-conts li p {
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .success-sec h2.sec-title {
        margin-bottom: 90px;
    }

    .success-sec .success-list {
        gap: 100px;
    }

    .success-sec .success-list li {
        gap: 30px;
    }

    .success-sec .success-list li .success-title {
        gap: 20px;
    }

    .success-sec .success-list li .success-title .success-num {
        width: 74px;
        height: 74px;
        font-size: 3.8rem;
    }

    .success-sec .success-list li .success-title h3 {
        font-size: 4.0rem;
    }

    .success-sec .success-list li .success-conts {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 6%;
    }

    .success-sec .success-list li .success-conts .success-text {
        width: 46%;
    }

    .success-sec .success-list li .success-conts .success-img {
        width: 48%;
    }

    .success-sec .success-list li .success-conts p {
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .success-sec .success-list li .success-conts .tyuui {
        font-size: 1.6rem;
        margin-top: 25px;
    }

    .section-wrap.success-bottom-conts {
        padding: 100px 0 90px;
        position: relative;
    }

    .success-bottom-conts::before {
        position: absolute;
        content: url(../images/icon/arrow.svg);
        top: -25px;
        left: 0;
        right: 0;
        width: 150px;
        height: 50px;
        margin: auto;
    }

    .success-bottom-conts p {
        font-size: 4.4rem;
    }

    .success-bottom-conts p .text-s {
        font-size: 3.4rem;
    }

    .cta-sec.cta-sec03 .cta-text p {
        font-size: 4.0rem;
    }

    .cta-sec.cta-sec03 .cta-text p .dots {
        background-size: 1em .5em;
        padding-top: 1.5rem;
    }

    .cta-sec.cta-sec03 .cta-btn-conts {
        margin-top: 70px;
    }

    .section-wrap.worry-sec {
        padding-bottom: 75px;
    }

    .worry-sec .worry-conts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 0 0 50px;
    }

    .worry-sec .worry-conts li {
        width: 485px;
    }

    .worry-sec .attention-conts {
        max-width: 500px;
        border-radius: 8px;
        padding: 25px 25px 20px;
    }

    .worry-sec .attention-conts .attention-title {
        font-size: 2.6rem;
        position: relative;
    }

    .worry-sec .attention-conts .attention-title::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 10px solid #fff;
        border-top: 0;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%) rotate(-180deg);
    }

    .worry-sec .attention-conts .attention-text {
        padding: 20px 15px;
        border-radius: 8px;
        margin-top: 20px;
    }

    .worry-sec .attention-conts .attention-text p {
        font-size: 1.6rem;
    }

    .worry-sec .attention-conts .attention-text p:nth-of-type(n+2) {
        margin-top: 20px;
    }

    .section-wrap.flow-sec02 {
        padding-top: 75px;
    }

    .flow-sec02 .flow-conts {
        flex-direction: row;
        gap: 40px;
        padding: 40px 0;
    }

    .flow-sec02 .flow-conts:nth-of-type(n+2) {
        margin-top: 10px;
    }

    .flow-sec02 .flow-conts .flow-num {
        padding: 0 0 40px;
        text-align: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .flow-sec02 .flow-conts .flow-num::before {
        content: "";
        display: block;
        background: #00ada9;
        width: 2px;
        height: calc(100% - 60px);
        position: absolute;
        bottom: -100px;
        left: calc(50%);
    }

    .flow-sec02 .flow-conts:last-of-type .flow-num::before {
        height: calc(100% - 160px);
        bottom: 0;
    }

    .flow-sec02 .flow-conts .flow-num span {
        font-size: 3.0rem;
        margin: 0;
    }

    .flow-sec02 .flow-conts .flow-num .flow-icon {
        width: 100px;
        height: auto;
    }

    .flow-sec02 .flow-conts .flow-text {
        width: 100%;
        padding-bottom: 0;
    }

    .flow-sec02 .flow-conts .flow-text::before {
        content: none;
    }

    .flow-sec02 .flow-conts .flow-text .flow-title {
        font-size: 4.0rem;
        text-align: left;
        margin: 0 0 15px;
    }

    .flow-sec02 .flow-conts .flow-text p {
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .flow-sec02 .flow-conts .flow-text .flow-comment {
        margin-top: 60px;
        border-radius: 10px;
        padding: 60px 30px 25px;
    }

    .flow-sec02 .flow-conts .flow-text .flow-comment p {
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .flow-sec02 .flow-conts .flow-text .flow-comment .comment-head {
        font-size: 2.6rem;
        line-height: 1.6;
        border-radius: 50px;
        border: 3px solid #00ada9;
        padding: 8px 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -90px 0 25px;
    }

    .flow-sec02 .flow-conts .flow-text .flow-comment .comment-head img {
        width: 172px;
    }

    .flow-sec02 .flow-conts .flow-text .flow-comment h4 {
        font-size: 3.0rem;
        text-align: left;
        margin: 0 0 25px;
    }

    .section-wrap.expert-sec {
        padding-bottom: 50px;
    }

    .expert-sec h2.sec-title {
        margin-bottom: 60px;
    }

    .expert-sec h2.sec-title span {
        font-size: 2.8rem;
        margin-top: 15px;
    }

    .expert-sec .expert-conts {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4%;
    }

    .expert-sec .expert-conts .expert-img {
        width: 50%;
    }

    .expert-sec .expert-conts p {
        width: 46%;
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .section-wrap.plan-sec {
        padding-top: 50px;
    }

    .plan-sec .plan-box {
        border-radius: 10px;
        padding: 50px 20px 30px;
    }

    .plan-sec .plan-box h2 {
        font-size: 4.8rem;
        margin: 0 0 20px;
    }

    .plan-sec .plan-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .plan-sec .plan-list .plan-conts {
        width: 50%;
        padding: 20px;
        margin: 0 !important;
    }

    .plan-sec .plan-list .plan-conts:last-of-type {
        width: 100%;
    }

    .plan-sec .plan-list .plan-conts .plan-title {
        font-size: 2.8rem;
        margin: 0 0 15px;
    }

    .plan-sec .plan-list .plan-conts.plan01 .plan-title {
        font-size: 3.6rem;
        line-height: 1.1;
    }

    .plan-sec .plan-list .plan-conts.plan01 .plan-title .text-s {
        font-size: 2.2rem;
    }

    .plan-sec .plan-list .plan-conts ul {
        display: flex;
        flex-direction: column;
        margin: 0;
        list-style: none;
    }

    .plan-sec .plan-list .plan-conts ul li {
        align-items: baseline;
        gap: 8px;
        font-size: 1.6rem;
    }

    .plan-sec .plan-list .plan-conts ul li:nth-child(n+2) {
        margin-top: 8px;
    }

    .plan-sec .plan-list .plan-conts ul li::before {
        content: "";
        background: url(../images/icon/check.svg) no-repeat 50% / cover;
        background-size: 100%;
        width: 14px;
        height: 14px;
    }

    .plan-sec .plan-list .plan-conts ul.two-columns li {
        display: grid;
        grid-template-columns: 14px 120px 1fr;
    }

    .plan-sec .plan-list .plan-conts p {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .plan-sec .plan-list .plan-conts.plan02 p {
        margin: 25px 0 5px;
    }

    .plan-sec .plan-list .plan-conts small {
        font-size: 1.4rem;
    }

    .difference-sec .difference-table {
        margin: 10px 0 0;
    }

    .section-wrap.self-sec {
        padding-bottom: 80px;
        position: relative;
    }

    .section-wrap.self-sec::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -59px;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 120px solid transparent;
        border-left: 120px solid transparent;
        border-top: 60px solid #fff;
        border-bottom: 0;
    }

    .self-sec .self-conts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .self-sec .self-conts .self-block {
        gap: 20px;
        width: calc((100% - 40px) / 2);
        min-width: 480px;
    }

    .self-sec .self-conts .self-block h3 {
        font-size: 3.2rem;
    }

    .self-sec .self-conts .self-block .self-list {
        gap: 20px;
    }

    .self-sec .self-conts .self-block .self-list>li {
        border-radius: 10px;
        box-shadow: 1px 1px 8px rgba(0, 0, 0, .2);
        padding: 20px 15px 15px;
        height: 150px;
        width: calc(50% - 20px);
    }

    .self-sec .self-conts .self-block .self-list>li .self-title {
        gap: 10px;
        font-size: 2.4rem;
        margin: 0 0 15px;
    }

    .self-sec .self-conts .self-block .self-list>li .self-title img {
        width: 32px;
    }

    .self-sec .self-conts .self-block .self-list>li ul {
        gap: 6px;
    }

    .self-sec .self-conts .self-block .self-list>li ul li {
        font-size: 1.4rem;
        gap: 5px;
    }

    .self-sec .self-conts .self-block .self-list>li ul li::before {
        width: 14px;
        height: 14px;
    }

    .self-sec .self-text {
        font-size: 3.4rem;
        line-height: 1.6;
        margin: 110px 0 0;
    }

    .self-sec .self-text .text-l {
        font-size: 5.2rem;
    }

    .self-sec .self-text .dots {
        background-size: 1em .5em;
        padding-top: 1.25rem;
    }

    .information-sec h2 {
        font-size: 4.4rem;
        margin: 0 0 30px;
    }

    .information-sec h2 .dots {
        background-size: 1em .5em;
        padding-top: 1.25rem;
    }

    .information-sec .information-box {
        padding: 35px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .information-sec .information-box .information-user {
        width: 211px;
        margin: 0;
    }

    .information-sec .information-box .information-content {
        width: 511px;
        margin: 0;
    }

    .information-sec .information-box .information-building {
        width: 207px;
        margin: 0;
    }

    .cta-sec.cta-sec04 .cta-text p {
        font-size: 4.0rem;
    }

    .cta-sec.cta-sec04 .cta-text p:nth-of-type(n+2) {
        margin-top: 5px;
        line-height: 1.5;
    }

    .cta-sec.cta-sec04 .cta-text img {
        width: 250px;
        margin: 0 5px 8px 0;
        vertical-align: middle;
    }

    .cta-sec.cta-sec04 .cta-btn-conts {
        margin-top: 80px;
    }

    .message-sec .container {
        gap: 50px;
    }

    .message-sec .message-text {
        gap: 50px;
    }

    .message-sec .message-text .message-title {
        font-size: 5.2rem;
        gap: 10px;
        margin: 0 0 20px;
    }

    .message-sec .message-text .message-title .text-s {
        font-size: 4.0rem;
    }

    .message-sec .message-text div p {
        font-size: 2.4rem;
        line-height: 1.8;
        text-align: center;
    }

    .message-sec .message-text div p:nth-of-type(n+2) {
        margin-top: 35px;
    }

    .message-sec .message-text .message-bottom {
        font-size: 3.0rem;
    }

    .message-sec .message-text .message-bottom .pc {
        display: inline !important;
    }

    .message-sec .message-img {
        max-width: 850px;
        margin: 0 auto;
    }

    .faq-sec .qa-list {
        border-radius: 10px;
    }

    .faq-sec .qa-list:not(:first-child) {
        margin-top: 40px;
    }

    .faq-sec .question-title {
        cursor: pointer;
        font-size: 2.4rem;
        padding: 30px 70px 30px 90px;
        position: relative;
    }

    .faq-sec .question-title::before {
        position: absolute;
        display: block;
        content: url(../images/icon/question.svg);
        top: 50%;
        left: 20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
    }

    .faq-sec .question-title::after {
        position: absolute;
        display: block;
        content: '';
        top: 45%;
        right: 20px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        transform: rotate(135deg);
        transition: all .3s ease-in-out;
        margin: auto;
    }

    .faq-sec .answer-text {
        padding: 0 70px 25px 90px;
        position: relative;
    }

    .faq-sec .answer-text::before {
        position: absolute;
        display: block;
        content: url(../images/icon/answer.svg);
        top: 6px;
        left: 20px;
        width: 50px;
        height: 50px;
        margin: auto;
    }

    .faq-sec .answer-text p {
        font-size: 1.8rem;
        line-height: 1.8;
    }

    .faq-sec .qa-list:nth-of-type(4) .answer-text p {
        min-height: 60px;
    }

    .faq-sec .answer-text p:nth-of-type(n+2) {
        margin-top: 15px;
    }

    footer {
        padding: 50px 0 10px;
    }

    .company-logo {
        width: 350px;
        margin: 0 auto 35px;
    }

    .footer-menu li {
        font-size: 1.6rem;
        display: inline-block;
        margin: 0 0 0 40px !important;
    }

    .footer-menu li:first-child {
        margin-left: 0 !important;
    }

    .copyright {
        padding: 15px 0;
    }

    .copyright small {
        font-size: 1.6rem;
    }



    /* 利用規約ページ */

    header .service-name {
        width: 25%;
        max-width: 200px;
        height: 38px;
    }

    .law-sec .container {
        max-width: 930px;
    }

    .law-sec h1.main-title {
        font-size: 4.0rem;
        margin-bottom: 50px;
    }

    .law-sec .terms-of-service p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .law-sec .terms-of-service h2 {
        font-size: 2.4rem;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .law-sec .terms-conditions ul {
        margin-left: 20px;
    }

    .law-sec .terms-conditions ul li {
        margin-bottom: 15px;
    }

    .law-sec .terms-conditions ul li ul {
        margin: 15px 0 0 20px;
    }



    /* 相談お申し込みページ */

    .contact-sec h1.main-title {
        font-size: 4.0rem;
        margin-bottom: 50px;
    }

    .contact-form .tyuui {
        font-size: 1.2rem;
        margin: 20px 0 0;
    }

    form#mailformpro .tel-time {
        margin-top: 20px;
    }

    form#mailformpro #period {
        margin-top: 25px;
    }

    form#mailformpro #period p {
        margin-bottom: 10px;
    }

    form#mailformpro .privacy-check {
        text-align: center;
        margin: 40px 0;
    }

    form#mailformpro .privacy-check .must {
        margin: 0 5px;
    }

    form#mailformpro .privacy-check input {
        transform: scale(2.5);
    }

    form#mailformpro .privacy-check .privacy-text {
        margin: 0 15px;
    }

    .btn01 {
        font-size: 1.8rem;
    }



    /* サンクスページ */

    .thanks-sec .main-title {
        font-size: 3.0rem;
        margin: 0 0 50px;
    }

    div#mfp_thanks {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .thanks-sec p {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: center;
        margin: 0;
    }

    .thanks-sec p:nth-of-type(n+2) {
        margin-top: 30px;
    }

    .thanks-sec .thanks-btn {
        margin: 50px auto 0;
    }






}



@media (min-width : 910px) {

    .plan-sec .plan-list .plan-conts {
        width: 33% !important;
    }

}

/*横幅910px以上*/



@media (min-width : 980px) {

    .section-wrap.fv-sec {
        background: url(../images/fv_back_pc.webp) center top no-repeat;
        background-size: cover;
        padding: 55px 0 0;
        height: 560px;
        aspect-ratio: auto;
    }

    .fv-sec .container {
        padding: 0 40px;
    }

    .fv-sec .catch {
        width: 660px;
    }

    .fv-sec .tetsuzuki-list {
        margin: 45px 0 0;
        width: 648px;
    }

    .fv-sec .tetsuzuki-list li {
        font-size: 2.2rem;
        padding: 10px 20px 8px;
    }

    .fv-sec h2 {
        font-size: 7.8rem;
        margin: 10px 0 0;
    }



}



@media (min-width : 1080px) {

    header .container {
        padding: 13px 40px !important;
    }

    h2.sec-title {
        font-size: 4.4rem;
    }

    h2.sec-title.sec-title02 {
        font-size: 5.2rem;
    }

    .process-sec .process-container {
        max-width: 1000px;
    }

    .cta-sec.cta-sec02 .cta-text {
        background-image: url(../images/cta_back02_pc.webp), url(../images/cta_back_pc.webp);
        background-position: center bottom, center top;
        background-repeat: no-repeat;
        background-size: 1080px 565px, cover;

    }

    .cta-sec.cta-sec02 .cta-text>div {
        margin: 0 auto 0 46%;
    }

    .plan-sec .plan-box h2 {
        font-size: 5.2rem;
    }

    .table-scroll::before {
        content: none;
    }



}

.center-text {
    text-align: center;
    font-size: 28px;
}

.right-small-text {
    text-align: right;
    font-size: 14px;
}


.drop-shadow {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: #1f1f1f;
    font-size: 40px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
    /* ←これがドロップシャドウ */
    letter-spacing: 1px;
    text-transform: none;
}

@media (min-width: 768px) {
    .drop-shadow {
        font-size: 80px;
    }
}



.plan-section {
    padding: 40px 20px;
    background-color: #f8f8f8;
    font-family: 'Noto Sans JP', sans-serif;
}

.plan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-box {
    flex: 1 1 300px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.full-support {
    background-color: #F08D00;
    /* フルサポプラン背景色 */
    color: white;
}

.property-plan {
    background-color: #1AB0AB;
    /* 基本プラン背景色 */
    color: white;
}

.houki-plan {
    background-color: #70B92C;
    /* 放棄プラン背景色 */
    color: white;
}

.yuigon-plan {
    background-color: #0375C2;
    /* 遺言プラン背景色 */
    color: white;
}

.plan-label {
    font-size: 14px;
    margin-bottom: 10px;
}

.plan-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.plan-new {
    font-size: 16px;
    color: #ffd84c;
    /* フルサポプラン新登場 */
    margin-bottom: 20px;
}

.plan-details {
    background-color: rgba(255, 255, 255, 0.9);
    color: #df6235;
    /* 値段(共有) */
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.plan-description {
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.plan-description-bot {
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
    font-size: 18px;
    /* PCサイズのデフォルト */
}

/* スマホ用（〜767px） */
@media (max-width: 767px) {
    .plan-description {
        font-size: 16px;
    }
}

.plan-price {
    font-size: 28px;
    font-weight: bold;
}

.plan-price span {
    font-size: 36px;
}

.plan-note {
    font-size: 12px;
    color: #fff;
    margin-bottom: 15px;
}

.plan-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.plan-button.yellow {
    background-color: #FFF69C;
    /* フルサポプラン 詳しい内容はこちらから　背景 */
    color: #333;
    /* 文字色 */
}

.plan-button.red {
    background-color: #FFF69C;
    /* 基本プラン 詳しい内容はこちらから　背景 */
    color: #333;
    /* 文字色 */
}


@media (max-width: 768px) {
    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-box {
        width: 100%;
        max-width: 400px;
    }
}

.plan-included-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.plan-included-text {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* スマホ用レスポンシブ調整 */
@media (max-width: 767px) {
    .plan-included-title {
        font-size: 16px;
    }

    .plan-included-text {
        font-size: 14px;
    }
}





.profile-section {
    padding: 20px;
    display: flex;
    justify-content: center;
    /* PC時に中央揃え */
}

.profile-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    flex-wrap: wrap;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-caption {
    margin-top: 8px;
}

.caption {
    display: block;
    font-size: 18px;
    color: #666;
}

.name {
    display: block;
    font-weight: bold;
    font-size: 25px;
    color: #333;
}

.profile-image {
    width: 300px;
}

.profile-text {
    flex: 1;
}

.profile-text p {
    margin: 0;
    text-align: left;
    font-size: 18px;
    /* フォントサイズを大きく */
    font-weight: normal;
    /* 太字に */
    color: #333;
}

.greeting-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* スマホ用スタイル */
@media screen and (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-image {
        width: 60%;
        margin: 0 auto;
        /* 画像を中央揃えにする */
    }

    .profile-text {
        margin-top: 20px;
        width: 100%;
    }

    .greeting-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .profile-text p {
        margin: 0;
        text-align: left;
        font-size: 15px;
        /* フォントサイズを大きく */
    }

}



/* ヘッダー内のレイアウトを調整（Flex + 折返し対応） */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding-right: 16px;
    /* 右端の余白 */
}

/* ハンバーガーメニュー位置とスタイル */
.hamburger {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-39%);
    width: 50px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    /* ← これが超重要！ */
    width: 40px;
    height: 6px;
    background: #333;
    border-radius: 3cap;
    transition: all 0.3s ease;
}

/* 通常：3本横線 */
.hamburger span:nth-child(1) {
    top: -10px;
}

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

.hamburger span:nth-child(3) {
    top: 10px;
}



/* アクティブ：X形に変化 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 0;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 0;
}

/* ナビゲーションメニュー（初期状態は非表示＋右にオフセット） */
.global-nav {
    position: fixed;
    top: 60px;
    right: 0;
    width: 250px;
    background: white;
    border-radius: 12px 0 0 12px;
    /* 右上角だけ丸く */
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.global-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.global-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /* ← 追加 */
    flex-direction: column;
    /* ← 縦並びにする */
}

.global-nav li a {
    display: block;
    padding: 14px 24px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

/* ハンバーガーと電話ボタンの重なり防止 */
@media (max-width: 767px) {
    .top-contact-conts {
        margin-right: 80px;
        /* SP時の余白 */
    }
}

@media (min-width: 768px) {
    .top-contact-conts {
        margin-right: 80px;
        /* PC時の余白 */
    }
}



/*運営事務所*/
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.office-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: #fff;
}

.eyecatch {
    background: #00ada9;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.eyecatch h1 {
    margin: 0;
    font-size: 2rem; /* PCサイズを基準に */
  }
  
  @media (max-width: 600px) {
    .eyecatch h1 {
      font-size: 1rem; /* スマホ用に上書き */
    }
  }

.office-info dl {
    margin-top: 20px;
    border-top: 1px solid #ddd;
  }
  
  .office-info dt,
  .office-info dd {
    padding: 12px 10px;
  }
  
  .office-info dt {
    background-color: #f5f5f5;
    font-weight: bold;
    border-bottom: 1px solid #eee;
  }
  
  .office-info dd {
    border-bottom: 1px solid #eee;
  }
  
  .office-info dl > dt,
  .office-info dl > dd {
    display: flex;
    align-items: center;
  }
  
  @media (min-width: 601px) {
    .office-info dl {
      display: grid;
      grid-template-columns: 150px 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .office-info dl {
      display: block;
    }
  
    .office-info dt {
      border-bottom: none;
    }
  }

  @media (max-width: 600px) {
    .office-info dl {
      display: block;
    }
  
    .office-info dt,
    .office-info dd {
      border-bottom: 1px solid #eee;
      padding: 12px 10px;
    }
  
    /* 項目と項目の間に余白 */
    .office-info dt {
      margin-top: 20px;
      background-color: #f5f5f5;
    }
  
    .office-info dd {
      margin-bottom: 10px;
    }
  }



  .profile-info {
    margin-top: 20px;
    line-height: 1.8;
  }
  
  .career-section {
    margin-top: 30px;
  }
  
  .career-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    border-left: 4px solid #00ada9;
    padding-left: 10px;
  }
  
  .career-list {
    list-style: none;
    padding-left: 0;
  }
  
  .career-list li {
    margin-bottom: 8px;
    padding-left: 1em;
    position: relative;
  }
  
  .career-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #00ada9;
  }
  .section-divider {
    border: none;
    border-top: 3px solid #00ada9;
    margin: 40px 0;
  }

  @media (max-width: 600px) {
    .career-title {
      font-size: 1rem;
      padding-left: 8px;
      border-left-width: 3px;
    }
  
    .career-list li {
      font-size: 0.7rem;
      padding-left: 0.9em;
    }
  
    .profile-info {
      font-size: 0.3rem;
      margin-top: 16px;
    }
  
    .section-divider {
      margin: 30px 0;
      border-top: 2px solid #00ada9;
    }
  }




  /* 銀行との比較 */

.inheritance-comparison {
    padding: 40px 20px;
    background: #f9f9f9;
  }
  
  /* ★ 横並びコンテナの修正 */
.comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 少し詰める */
    justify-content: center;
    align-items: stretch; /* ★ 高さを揃えるポイント */
  }
  
  /* ★ 各ブロックの横幅を縮める＆高さを揃える */
  .comparison-block {
    flex: 1 1 320px; /* 元は300px以上。少し縮小 */
    max-width: 380px; /* ★ 最大幅を制限 */
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ★ 中身を上下にバランスよく配置 */
  }
  
  /* ★ グラフ部分の高さを固定 */
  .chart {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    height: 160px;
    border-radius: 12px; /* ★ 角を丸く */
    overflow: hidden;    /* ★ 丸みに合わせて中身を切る */
  }
  
  .chart-segment {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-align: center;
  }
  
  .segment-1 { background-color: #1abc9c; }
  .segment-2 { background-color: #F08D00; }
  .segment-3 { background-color: #cc4d2d; }
  .segment-4 { background-color: #F08D00; }
  
  /* レスポンシブ調整 */
  @media (max-width: 768px) {
    .comparison-container {
      flex-direction: column;
    }
  
    .comparison-block {
      max-width: 100%;
    }
  }
  /* 高さを明示的に指定して「銀行への手数料」が大きく見えるようにする */
.chart.chart-banking {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 240px; /* 高さは大きめに */
    border-radius: 12px;
    overflow: hidden;
  }
  
  .chart-banking .segment-1,  /* 実費 */
  .chart-banking .segment-2 { /* 司法書士等 */
    flex: 0 0 25%; /* 各25%固定 */
  }
  
  .chart-banking .segment-3 { /* 銀行への手数料 */
    flex: 0 0 50%; /* 残り半分を占めるように */
  }
  @media (max-width: 768px) {
    .inheritance-comparison .title {
      font-size: 1.3rem;
    }
  
    .inheritance-comparison p {
      font-size: 0.95rem;
      line-height: 1.6;
    }
  
    .inheritance-comparison .cost-highlight {
      font-size: 1.1rem;
    }
  
    .chart-segment {
      font-size: 0.9rem;
      padding: 8px;
    }
  }
  @media (max-width: 768px) {
    .heading-title {
      font-size: 1.5rem;
    }
  
    .heading-description {
      font-size: 0.90rem;   /* 少し小さく */
      line-height: 1.7;     /* 行間も少し詰める */
      padding: 0 10px;      /* スマホ用に左右に余白 */
      text-align: left;     /* ご希望なら left に変更可能 */
    }
  }
  /* 通常（PC〜タブレット）表示時 */
.heading-note {
    font-size: 1.3rem;
    color: #555;
    display: block;
    margin-top: 10px;
  }
  
  /* スマホ向けサイズ縮小 */
  @media (max-width: 768px) {
    .heading-note {
      font-size: 0.7rem;
      color: #666;
    }
  }



 /* タイトル・説明セクション */
.comparison-heading {
    padding: 60px 20px 20px;
    text-align: center;
    background-color: #ffffff;
  }
  
  .heading-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .heading-title {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 3px solid #04ada9;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 20px;
  }
  
  .heading-description {
    font-size: 1.8rem;
    color: #333;
    line-height: 1.9;
    margin: 0 auto;
  }
  
  /* ▼ レスポンシブ対応（スマホ） */
  @media (max-width: 768px) {
    .heading-title {
      font-size: 1.3em;
    }
  
    .heading-description {
      font-size: 1rem;
      line-height: 1.7;
    }
  }


  .eyecatch {
    position: relative;
    background-image: var(--eyecatch-bg);
    background-size: cover;
    background-position: center;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 左寄せ */
    color: white;
  }
  
  .eyecatch::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2); /* 暗めフィルター */
    z-index: 1;
  }
  
  .eyecatch-inner {
    position: relative;
    z-index: 2;
    padding-left: 5%;
  }
  
  .eyecatch-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .eyecatch {
      height: 160px;
    }
  
    .eyecatch-title {
      font-size: 1.4rem;
    }
  }




  .price-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .price-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .price-title {
    font-size: 4rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    border-bottom: 3px solid #1abc9c;
    padding-bottom: 6px;
    margin: 0 auto 20px;
    width: fit-content;
  }
  
  .price-note {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.7;
  }
  
  .price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 2rem;
  }
  
  .price-table th,
  .price-table td {
    border: 1px solid #eee;
    padding: 12px;
    text-align: center;
  }
  
  .price-table .highlight {
    color: #F08D00;
    font-weight: bold;
  }
  
  .price-table .section-header {
    background-color: #f1f1f1;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    font-size: 1.1rem;
  }
  .price-title.center {
    text-align: center;
  }
  
  .price-table .thead-gray th {
    background-color: #f1f1f1;
    font-weight: bold;
    text-align: center;
    padding: 10px;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .price-title {
      font-size: 1.4rem;
    }
  
    .price-note {
      font-size: 1rem;
    }
  
    .price-table {
      font-size: 0.95rem;
    }
  
    .price-table th,
    .price-table td {
      padding: 10px 6px;
    }
  }

  .top-url-btn {
    display: inline-block;
    background-color: #F08D00;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 9999px; /* 丸ボタン */
    font-size: 1.7rem;
    transition: background-color 0.3s ease;
  }
  
  .top-url-btn:hover {
    background-color: #d57700;
  }

  @media (max-width: 767px) {
    .top-tel-btn {
      font-size: 0.8rem;
      padding: 0.5rem 0.75rem;
      height: auto;
    }
  }




  .process-sec .process-container .process-box2 {
    flex: 1 1 250px; /* 最小幅300pxで自動調整 */
    max-width: 320px;
    height: auto; /* 高さを内容に応じて伸縮 */
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 20px 10px 20px 15px;
    box-sizing: border-box;
  }

.process-sec .process-container .process-box2 .process-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.process-sec .process-container .process-box2 .process-title img {
    width: 1.6875rem;
}

.process-sec .process-container .process-box2 ul {
    margin-top: .9375rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 0;
    list-style: none;
}

.process-sec .process-container .process-box2 ul li {
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    align-items: baseline;
    gap: .1875rem;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
    margin: 0;
}

.process-sec .process-container .process-box2 ul li::before {
    content: "";
    display: block;
    width: .625rem;
    height: .625rem;
}

.section-wrap.cta-sec {
    background-size: cover;
    padding: 2.5rem 0 1.875rem;
}
.process-sec .process-container .process-box2 {
    width: 229px;
    height: 220px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 20px 10px 20px 15px;
}

.process-sec .process-container .process-box2 .process-title {
    gap: 15px;
    font-size: 2.6rem;
}

.process-sec .process-container .process-box2 .process-title img {
    width: 34px;
}

.process-sec .process-container .process-box2 ul {
    margin-top: 20px;
    gap: 8px;
}

.process-sec .process-container .process-box2 ul li {
    font-size: 1.4rem;
    align-items: center;
    gap: 5px;
}

.process-sec .process-container .process-box2 ul li::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .process-sec .process-container {
      flex-direction: column;
      align-items: center;
    }
  
    .process-sec .process-container .process-box2 {
      width: 90%;
      max-width: 100%;
    }
  
    .process-sec .process-container .process-box2 .process-title {
      font-size: 1.5rem;
    }
  
    .process-sec .process-container .process-box2 ul li {
      font-size: 1rem;
    }
  }