* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    line-height: 1;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.inner {
    width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 200px 0;
}

img {
    max-width: 100%;
}

.pc_br {
    display: block;
}

.sp_br {
    display: none;
}

.screen-reader-response {
    display: none;
}

.single-featured-image-header {
    display: none;
}

@media only screen and (max-width:1280px) {
    .inner {
        width: 950px;
    }
}

@media only screen and (max-width:1000px) {
    .inner {
        width: 95%;
        margin: 0 auto;
    }
}

@media only screen and (max-width:900px) {
    .section {
        padding: 80px 0;
    }
    .inner {
        width: 90%;
        margin: 0 auto;
    }
    .pc_br {
        display: none;
    }
    .sp_br {
        display: block;
    }
}


/*背景css　ここから*/

.bg-note {
    background-image: linear-gradient(rgba(210, 210, 210, 0.4) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.4) 1px, transparent 1px);
    background-size: 50px 50px;
    background-color: #fff;
    background-position: -14px 14px;
}

.bg-note.yellow {
    background-color: #F6E625;
    background-image: linear-gradient(rgba(223, 211, 60, 1) 1px, transparent 1px), linear-gradient(to right, rgba(223, 211, 60, 1) 1px, transparent 1px);
}


/*背景css　ここまで*/


/*font　ここから*/

.txt_xsm {
    font-size: 1.4rem;
    font-weight: 500;
}

.txt_sm {
    font-size: 1.6rem;
    line-height: 25px;
    font-weight: 600;
}

.txt_rg {
    font-size: 1.8rem;
}

.txt_md {
    font-size: 2rem;
}

.txt_lg {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 40px;
}

.txt_xlg {
    font-size: 3.2rem;
    font-weight: bold;
}

.txt_xxlg {
    font-size: 4.8rem;
    font-weight: bold;
}

.txt_xxxlg {
    font-size: 6.4rem;
    font-weight: bold;
}

.txt_xxxxlg {
    font-size: 8.8rem;
    font-weight: bold;
}

.txt_black {
    color: #01314A;
}

.txt_white {
    color: #fff;
}

.txt_yellow {
    color: #F6E625;
}

.txt_red {
    color: #E23D0F;
}

.title-frame {
    display: inline-block;
    background: #000;
    color: #ffffff;
    border: 4px solid #01314A;
    /* ネイビー枠 */
    border-radius: 7px;
    text-align: center;
    padding: 15px;
}

.title-frame.red {
    background: #E23D0F;
}

@media only screen and (max-width:900px) {
    .txt_xsm {
        font-size: 1.2rem;
    }
    .txt_sm {
        font-size: 1.4rem;
    }
    .txt_rg {
        font-size: 1.6rem;
    }
    .txt_md {
        font-size: 1.8rem;
    }
    .txt_lg {
        font-size: 2rem;
    }
    .txt_xlg {
        font-size: 2.4rem;
        font-weight: bold;
    }
    .txt_xxlg {
        font-size: 3rem;
        font-weight: bold;
    }
    .txt_xxxlg {
        font-size: 5.4rem;
        font-weight: bold;
    }
    .txt_xxxxlg {
        font-size: 7.2rem;
        font-weight: bold;
    }
    .section_title .txt_xxxxlg {
        font-size: 6rem;
    }
}

@media only screen and (max-width:480px) {
    .section_title .txt_xxxxlg {
        font-size: 4.2rem;
        font-weight: bold;
    }
}

@media only screen and (max-width:380px) {
    .txt_xxlg {
        font-size: 2.4rem;
    }
}


/*font　ここまで*/


/*見出しcss　ここから*/

h2 {
    text-align: center;
}

.pos-up {
    position: absolute;
    left: 0;
    right: 0;
    top: -90px;
    transform: translateY(50%);
    margin-top: -30px;
}

@media only screen and (max-width:900px) {
    .pos-up {
        top: -60px;
    }
}

@media only screen and (max-width:480px) {
    .pos-up {
        top: -45px;
    }
}


/*見出しcss　ここまで*/


/*btn　ここから*/

.btn {
    position: relative;
    box-shadow: 0px 5px 0px 0px rgb(1, 49, 74);
    width: 48%;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    text-align: center;
    border: 3px solid #01314A;
    transition: all 0.3s ease;
}

.btn a {
    color: #fff;
    display: block;
    font-weight: 600;
    line-height: 50px;
}

.btn:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0);
    margin-top: 10px;
}

.btn:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/gokigenya_icon_arrow.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.btn:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.btn.web {
    background: #E23D0F;
}

.btn.web:before {
    background-image: url(../img/gokigenya_icon_web.svg);
}

.btn.line {
    background: #0DB853;
}

.btn.line:before {
    background-image: url(../img/gokigenya_icon_line.svg);
}

.btn.tel {
    background: #F6E625;
}

.btn.tel:before {
    background-image: url(../img/icon_tel.svg);
    background-repeat: no-repeat;
}

.btn.tel:after {
    background-image: url(../img/gokigenya_icon_arrow_navy.svg);
}

.btn.tel a {
    color: #01314A;
}

.btn.instagram {
    background: #f87b1b;
}

.btn.instagram:before {
    background-image: url(../img/gokigenya_icon_Instagram.svg);
}

.btn.tiktok {
    background: #11224e;
}

.btn.tiktok:before {
    background-image: url(../img/gokigenya_icon_tiktok.svg);
}

.btn_two_layout {
    width: 70%;
    margin-right: 3%;
}

#footer .btn.instagram:hover,
#footer .btn.tiktok:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0);
    margin-top: 20px;
}

@media only screen and (max-width:1280px) {
    #header .btn_two_layout {
        width: 80%;
    }
    #header .btn_two_layout .txt_sm {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width:900px) {
    .btn:after {
        width: 15px;
        height: 15px;
        background-repeat: no-repeat;
    }
}


/*btn　ここまで*/


/*header　ここから*/

#header {
    height: 120px;
    width: 100%;
    background: #fff;
}

#header.fixed {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
}

#header h1 {
    padding-left: 3%;
}

#header h1 img {
    width: 190px;
}

#header .btn_box {
    width: 32%;
    text-align: center;
}

#header .btn_box .btn {
    width: 100%;
}

#header .btn_box p {
    font-weight: 600;
    color: #01314A;
}

@media only screen and (max-width:1280px) {
    #header h1 img {
        margin-top: 20px;
        width: 120px;
    }
}

@media only screen and (max-width:900px) {
    #header {
        height: 100px;
    }
    #header .btn {
        height: 40px;
    }
    #header .btn a {
        line-height: 40px;
    }
    #header .btn_box .btn {
        width: 98%;
    }
    #header .btn_two_layout {
        margin-right: initial;
    }
    #header .btn:after {
        right: 20px;
    }
    #header .btn:before {
        left: 20px;
    }
    #header h1 {
        width: 30%;
    }
    .btn_two_layout {
        width: 65%;
    }
    #header .btn_box {
        width: 90%;
    }
    #header .btn_box p {
        font-size: 1.2rem;
        text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
    }
    #header .btn_box:first-child {
        position: fixed;
        left: 1%;
        z-index: 1001;
        bottom: 1%;
        width: 140px;
    }
    #header .btn_box:nth-child(2) {
        position: fixed;
        right: 1%;
        z-index: 1001;
        bottom: 1%;
        width: 220px;
    }
    #header .btn_box:last-child {
        margin: 0 0 0 auto;
        padding-right: 3%;
    }
    #header .btn_two_layout {
        width: 65%;
    }
    #header .btn:after {
        right: 3%;
    }
    #header .btn:before {
        left: 3%;
    }
}


/*header　ここまで*/


/*fv　ここから*/

#fv {
    padding: 60px 0;
}

.fv_inner {
    width: 1100px;
    margin: 0 auto;
}

.fv_title {
    position: relative;
    background: #15C1FF;
    border: 5px solid #01314A;
    border-radius: 25px;
    padding: 56px 56px 84px;
    overflow: visible;
}

.fv_copy {
    width: 56%;
    position: relative;
    z-index: 3;
    text-align: center;
}

.fv_pref.txt_xxlg {
    font-size: 4.6rem;
    line-height: 1;
}

.fv_pref span {
    display: inline-block;
    background: #E23D0F;
    color: #fff;
    border: 4px solid #01314A;
    border-radius: 8px;
    padding: 12px 35px 11px 35px;
}

.fv_lead span {
    display: inline-block;
    color: #01314A;
    margin: 10px 0;
}

.fv_lead .fv_hl {
    color: #F6E625;
    -webkit-text-stroke: 6px #01314A;
    paint-order: stroke fill;
}

.fv_brand span {
    display: inline-block;
    color: #F6E625;
    -webkit-text-stroke: 8px #01314A;
    paint-order: stroke fill;
}

.fv_brand.txt_xxxxlg {
    font-size: 10rem;
}

.fv_price_row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    justify-content: center;
}

.fv_badge {
    width: 110px;
    height: 110px;
    background: #F6E625;
    border: 4px solid #01314A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #01314A;
}

.fv_badge .txt_lg {
    line-height: 30px;
}

.fv_price {
    margin: 0;
    color: #F6E625;
    line-height: 1;
    position: relative;
    -webkit-text-stroke: 8px #01314A;
    text-stroke: 4px #01314A;
}

.fv_price_yen {
    margin-left: 6px;
    font-size: 4rem;
    -webkit-text-stroke: 6px var(--navy);
    paint-order: stroke fill;
    font-weight: 700;
}

.fv_price_num {
    -webkit-text-stroke: 8px #01314A;
    paint-order: stroke fill;
}

.fv_price_tax {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #01314A;
    -webkit-text-stroke: 0;
}

.fv_person {
    position: absolute;
    right: 0;
    top: -50px;
    width: 50%;
    z-index: 2;
}

.fv_person img {
    width: 100%;
    height: auto;
    display: block;
}

.fv_round_badge {
    position: absolute;
    right: -24px;
    top: -26px;
    width: 170px;
    height: 170px;
    background: #E23D0F;
    border: 4px solid #01314A;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 5;
    color: #fff;
}

.fv_round_badge p {
    margin: 0;
    line-height: 1.2;
}

.fv_round_badge_free {
    margin-top: 6px;
    color: #F6E625;
}

.fv_truck {
    position: absolute;
    right: 33px;
    bottom: 6px;
    width: 45%;
    max-width: 520px;
    z-index: 4;
}

.fv_tags {
    bottom: -26px;
    display: flex;
    gap: 14px;
    z-index: 6;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.fv_tag {
    display: inline-block;
    padding: 14px 22px;
    border: 4px solid #01314A;
    border-radius: 7px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.fv_tag.red {
    background: #E23D0F;
}

.fv_tag.blue {
    background: #1C8ED6;
}

.fv_tag.green {
    background: #0DB853;
}

@media (max-width: 1280px) {
    .fv_inner {
        width: 950px;
    }
    .fv_pref.txt_xxlg {
        font-size: 4.2rem;
    }
    .fv_title {
        padding: 44px 30px 94px;
    }
    .fv_copy {
        width: 62%;
    }
    .fv_brand.txt_xxxxlg {
        font-size: 9rem;
    }
    .fv_badge {
        width: 90px;
        height: 90px;
    }
    .fv_price_row {
        gap: 10px;
    }
    .fv_price .fv_price_num {
        font-size: 8rem;
    }
    .fv_round_badge {
        right: -9px;
        top: -31px;
        width: 150px;
        height: 150px;
    }
    .fv_price_tax {
        top: 14px;
        right: 31px;
    }
}

@media only screen and (max-width:900px) {
    .fv_inner {
        width: 94%;
    }
    .fv_tags {
        margin-top: 16px;
        flex-wrap: wrap;
        bottom: initial;
        position: initial;
        left: initial;
        transform: initial;
        -webkit-transform: initial;
        -ms-transform: initial;
        justify-content: center;
    }
    .fv_tag {
        padding: 14px 10px;
    }
    .fv_title {
        padding: 40px 22px 40px;
    }
    .fv_copy {
        width: 100%;
        text-align: center;
    }
    .fv_person {
        position: relative;
        right: auto;
        top: auto;
        width: min(420px, 80%);
        margin: 0;
    }
    .fv_truck {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(520px, 92%);
        margin: -10px auto 0;
        display: block;
    }
    .fv_pref.txt_xxlg {
        font-size: 3rem;
    }
    .fv_brand span {
        font-size: 6rem;
    }
    .fv_brand.txt_xxxxlg {
        font-size: 6rem;
    }
    .fv_badge {
        width: 65px;
        height: 65px;
    }
    .fv_price_num.txt_xxxxlg {
        font-size: 4.8rem;
    }
    .fv_price_row {
        justify-content: center;
    }
    .fv_price_tax {
        top: -11px;
        right: 35px;
    }
    .fv_person {
        width: 100%;
    }
    .fv_truck {
        margin: -160px auto 0;
    }
    .fv_round_badge {
        right: 6px;
        top: 345px;
        width: 130px;
        height: 130px;
        z-index: 1;
    }
    #fv {
        padding: 50px 0;
    }
    .fv_pref span {
        padding: 10px 20px 10px 20px;
    }
    .fv_lead span {
        margin: 8px 0;
    }
    .fv_badge .txt_lg {
        font-size: 1.6rem;
        line-height: 22px;
    }
}

@media only screen and (max-width: 600px) {
    #fv {
        padding: 30px 0;
        overflow: hidden;
    }
    .fv_truck {
        margin: -200px auto 0;
    }
    .fv_person {
        width: 450px;
        top: auto;
        left: 48%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .fv_pref span {
        padding: 10px 3% 10px 3%;
    }
    .fv_pref.txt_xxlg {
        font-size: 2.4rem;
    }
    .fv_lead.txt_xxlg {
        font-size: 2.4rem;
        margin-left: 8px;
    }
    .fv_pref span {
        border: 3px solid #01314A;
    }
    .fv_title {
        border: 3px solid #01314A;
        padding: 15px 3% 15px;
    }
    .fv_price {
        -webkit-text-stroke: 5px #01314A;
    }
    .fv_brand span {
        -webkit-text-stroke: 5px #01314A;
    }
    .fv_lead .fv_hl {
        margin-right: 5px;
        -webkit-text-stroke: 4px #01314A;
    }
    .fv_price_num.txt_xxxxlg {
        font-size: 5.6rem;
    }
    .fv_price_num {
        -webkit-text-stroke: 6px #01314A;
    }
    .fv_price_yen {
        font-size: 2.8rem;
        -webkit-text-stroke: 6px #01314A
    }
    .fv_price_tax {
        top: 7px;
        right: 18px;
    }
    .fv_badge {
        border: 3px solid #01314A;
    }
    .fv_round_badge {
        top: 280px;
        width: 110px;
        height: 110px;
        z-index: 1;
        right: 4px;
    }
    .fv_tags .txt_lg {
        font-size: 1.6rem;
    }
    .fv_tag {
        padding: 10px 7%;
        border: 3px solid #01314A;
    }
    .fv_truck {
        width: 100%;
        margin: -170px auto 0;
    }
    .fv_badge {
        width: 60px;
        height: 60px;
    }
    .fv_person {
        width: 400px;
    }
    .fv_tags {
        margin-top: 0px;
    }
}


/*fv　ここまで*/


/*tumihodai　ここから*/

.tumihodai {
    --yellow: #F6E625;
    --navy: #01314A;
    --red: #E23D0F;
    --white: #fff;
}

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

.tumihodai__frame {
    margin: 30px auto 0 auto;
    background: var(--white);
    border: 4px solid var(--navy);
    border-radius: 22px;
    position: relative;
}

#price .tumihodai__frame {
    width: 100%;
}

.tumihodai__top {
    background: var(--red);
    border-bottom: 4px solid var(--navy);
    padding: 5px 28px;
    text-align: center;
    border-radius: 17px 17px 0 0;
}

.tumihodai__top p {
    margin: 0;
    color: #fff;
    text-align: left;
    margin: 0 0 0 auto;
    width: 50%;
}

.tumihodai .txt_line::before,
.tumihodai .txt_line::after {
    background-color: var(--navy);
}

.tumihodai h2.txt_xlg {
    color: var(--navy);
}

.tumihodai h4.txt_xlg {
    color: var(--navy);
}

.tumihodai__body {
    display: flex;
    gap: 18px;
    padding: 22px 22px 26px;
    align-items: center;
    background: #fff;
    border-radius: 0 0 20px 20px;
    font-weight: 700;
}

.tumihodai__body .flex {
    width: 70%;
    margin: 0 0 0 auto;
}

.tumihodai__staff {
    position: absolute;
    bottom: 0;
}

.tumihodai__staff img {
    width: 100%;
    max-width: 290px;
    height: auto;
    display: block;
    object-fit: cover;
}

.tumihodai__truck {
    flex: 0 0 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tumihodai__truck img {
    display: block;
}

.tumihodai__price {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    padding-right: 8px;
}

.tumihodai__badge {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    background: var(--yellow);
    border: 4px solid var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: .02em;
}

.tumihodai__main {
    min-width: 260px;
}

.tumihodai__amount {
    display: inline-block;
    gap: 10px;
    line-height: 1;
    position: relative;
}

.tumihodai__amount .num {
    font-size: 7.2rem;
    -webkit-text-stroke: 8px var(--navy);
    paint-order: stroke fill;
    color: var(--yellow);
}

.tumihodai__amount .unit {
    font-size: 4rem;
    color: var(--navy);
    padding-bottom: .05em;
    margin-left: 5px;
}

.tumihodai__amount .tax {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin-left: 6px;
    margin-bottom: 10px;
    right: 42px;
    bottom: 38px;
    position: absolute;
}

.tumihodai__notes {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--navy);
    font-weight: 700;
}

@media (max-width: 1280px) {
    .tumihodai__staff img {
        max-width: 270px;
    }
    .tumihodai__staff {
        left: 0;
    }
    .tumihodai__badge {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 900px) {
    .tumihodai {
        width: 100%;
    }
    .tumihodai__body {
        flex-direction: column;
        align-items: stretch;
        padding: 30px 3% 30px 3%;
    }
    .tumihodai__staff,
    .tumihodai__truck {
        flex: 0 0 auto;
        min-width: 0;
    }
    .tumihodai__notes {
        text-align: justify;
        margin-top: 18px;
    }
    .tumihodai__price {
        justify-content: center;
        flex-wrap: wrap;
        padding-right: 0;
        width: 70%;
        margin: 0 0 0 auto;
    }
    .tumihodai__main {
        text-align: center;
    }
    .tumihodai__amount {
        justify-content: center;
    }
    .tumihodai__top p {
        width: 100%;
    }
    .tumihodai__top .txt_lg {
        font-size: 1.6rem;
        line-height: 25px;
    }
    .tumihodai__body .flex {
        width: 100%;
        margin: 0;
    }
    .tumihodai__truck {
        width: 70%;
        margin: 20px 0 0 auto;
    }
    .tumihodai__body .flex {
        flex-direction: column-reverse;
    }
    .tumihodai__badge {
        width: 100%;
        height: 40px;
    }
    .tumihodai__main {
        min-width: initial;
        width: 100%;
    }
    .tumihodai__staff img {
        max-width: 200px;
    }
    .tumihodai__staff {
        left: 0;
    }
    .tumihodai__badge.txt_lg {
        font-size: 1.6rem;
    }
    .tumihodai__truck {
        width: 50%;
        margin: 15px auto 15px auto;
    }
    .tumihodai__top .flex {
        flex-direction: column-reverse;
    }
    .tumihodai__top .txt_lg {
        margin-bottom: 15px;
        text-align: center;
    }
    .tumihodai__top {
        padding: 5px 5%;
    }
}

@media (max-width: 700px) {
    .tumihodai__staff img {
        max-width: 170px;
    }
    .tumihodai__amount .num {
        font-size: 4.8rem;
    }
    .tumihodai__price {
        width: 60%;
    }
    .tumihodai__amount .unit {
        font-size: 3.2rem;
    }
    .tumihodai__amount .tax {
        right: 30px;
        bottom: 30px;
    }
    .tumihodai__body {
        padding: 20px 3% 20px 3%;
    }
}

@media (max-width: 480px) {
    .tumihodai__staff {
        left: 10px;
    }
    .tumihodai__body {
        padding: 22px 5% 10px 5%;
    }
    .tumihodai h2.txt_xlg {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tumihodai__amount .num {
        font-size: 6.4rem;
        -webkit-text-stroke: 6px var(--navy);
    }
    .tumihodai__top {
        padding: 5px 3%;
    }
    .tumihodai.section {
        padding: 50px 0 0 0;
    }
    .tumihodai h2 .title-frame {
        font-size: 1.8rem;
    }
    .tumihodai__staff img {
        max-width: 35%;
    }
    .tumihodai__price {
        width: 100%;
    }
    .tumihodai__notes {
        width: 55%;
        font-size: 1.3rem;
        margin: 18px 0 18px auto;
    }
    .tumihodai__amount {
        margin-bottom: 10px;
    }
    .tumihodai__price {
        gap: 15px;
    }
    .tumihodai__amount .unit {
        margin-left: 3px;
    }
}


/*tumihodai　ここまで*/


/*question　ここから*/

.bg-question {
    background: #01314A;
}

#question .txt_blue {
    color: #fff;
}

#question .section_title {
    text-align: center;
    margin-bottom: 35px;
}

#question .section_title h2 {
    letter-spacing: .04em;
}

#question .section_title h3 {
    margin-top: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.qa_block {
    position: relative;
    padding-bottom: 34px;
}

.qa_slider {
    margin: 0;
    padding: 0;
}

.qa_slider .slick-slide {
    margin: 0 18px;
    /* 素材①の余白感を踏襲 */
}

.qa_slider li {
    text-align: center;
}

.qa_bubble {
    background: #fff;
    border: 2px solid #AFAFAF;
    border-radius: 10px;
    padding: 14px 14px;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.45;
    color: #01314A;
    box-shadow: 3px 3px 0px 0px #AFAFAF;
}

.qa_avatar {
    width: 160px;
    height: 160px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qa_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#question .slick-prev,
#question .slick-next {
    position: absolute;
    bottom: -67px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent;
    z-index: 5;
    cursor: pointer;
}

#question .slick-prev {
    left: 0;
}

#question .slick-next {
    right: 0;
}

#question .slick-prev::before,
#question .slick-next::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#question .slick-next::before {
    transform: rotate(45deg);
}

.qa_progress {
    position: relative;
    margin: 50px auto 0;
    width: 85%;
    height: 3px;
    background: rgba(255, 255, 255, .55);
    border-radius: 999px;
}

.progress-bar.qa {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background: #F6E625;
    border-radius: 999px;
}

#question .slick-prev:hover,
#question .slick-next:hover {
    background: rgba(255, 255, 255, .08);
}

@media only screen and (max-width:900px) {
    #question .section_title h3::after {
        width: 120px;
    }
    .qa_slider .slick-slide {
        margin: 0 12px;
    }
    .qa_avatar {
        width: 70%;
        height: auto;
    }
    .qa_progress {
        width: calc(100% - 90px);
    }
}

@media only screen and (max-width:650px) {
    .qa_bubble {
        min-height: 86px;
    }
}


/*question　ここまで*/


/*answer　ここから*/

#answer {
    --red: #E23D0F;
    --navy: #01314A;
    --yellow: #F6E625;
    position: relative;
}

#answer:before {
    content: '';
    display: inline-block;
    width: 250px;
    height: 250px;
    background-image: url(../img/answer_bg_01.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 200px;
    z-index: 1;
    background-repeat: no-repeat;
    left: 10%;
}

#answer:after {
    content: '';
    display: inline-block;
    width: 250px;
    height: 250px;
    background-image: url(../img/answer_bg_02.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 60px;
    z-index: 1;
    background-repeat: no-repeat;
    right: 5%;
}

.answer_top {
    background: var(--red);
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.answer_top_inner {
    position: relative;
    height: 500px;
}

.answer_title_wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: -90px;
    transform: translateY(50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.answer_en {
    margin: 0;
    font-size: 88px;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
}

.answer_red {
    color: var(--red);
}

.balloon_wrap {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 2;
}

.balloon_txt {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    line-height: 60px;
}

.answer_hero {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 490px;
    z-index: 3;
}

.answer_hero img {
    width: 100%;
    height: auto;
    display: block;
}

.answer_body {
    padding: 0 0 200px;
}

.answer_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: -40px;
    z-index: 100;
    position: relative;
}

.answer_card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 8px 8px 0px 0px #01314A;
    ;
    border: 4px solid #01314A;
}

.answer_card_head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.answer_num {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background: var(--yellow);
    border: 4px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--navy);
    flex: 0 0 auto;
    font-weight: 800;
}

.answer_card_title {
    margin: 0;
    font-size: 32px;
    line-height: 1.25;
    color: var(--navy);
    text-align: center;
}

.answer_card_img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 18px;
}

.answer_text {
    margin: 16px 0 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 700;
    color: var(--navy);
}

@media (max-width: 1280px) {
    .answer_card {
        padding: 20px;
    }
    #answer .balloon_wrap {
        left: 0;
    }
}

@media (max-width: 900px) {
    .answer_en {
        font-size: 64px;
    }
    .answer_grid {
        grid-template-columns: 1fr;
    }
    .answer_hero {
        width: 250px;
    }
    .answer_top {
        width: 100%;
        padding-top: 100px;
    }
    .answer_hero {
        width: 60%;
        z-index: 100;
        right: 0;
    }
    .answer_card {
        padding: 30px 5%;
    }
    .answer_text {
        text-align: justify;
    }
    .answer_card_head {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .answer_title_wrap {
        top: -70px;
    }
    .answer_balloon_shape {
        width: initial;
    }
    .balloon_wrap {
        top: 30%;
        left: 3%;
        width: 320px;
    }
    .balloon_txt {
        line-height: 40px;
    }
    .answer_top_inner {
        position: relative;
        height: 400px;
    }
    #answer:after {
        width: 120px;
        height: 180px;
        top: 60px;
        right: 3%;
    }
    #answer:before {
        width: 120px;
        height: 180px;
        top: 260px;
        left: 5%;
    }
    .answer_body {
        padding: 0 0 100px;
    }
}

@media (max-width: 600px) {
    .answer_top_inner {
        height: 300px;
    }
    .balloon_wrap {
        top: 50px;
        left: 3%;
        width: 300px;
    }
    .answer_hero {
        width: 65%;
        z-index: 100;
        right: -5%;
    }
    #answer:after {
        width: 90px;
        height: 140px;
        top: 50px;
    }
    #answer:before {
        width: 90px;
        height: 140px;
        top: 200px;
        left: 3%;
    }
}

@media (max-width: 480px) {
    .answer_en {
        font-size: 42px;
    }
    .answer_title_wrap {
        top: -50px;
    }
    .answer_top {
        padding-top: 60px;
    }
    .answer_num {
        width: 50px;
        height: 50px;
        font-size: 24px;
        border: 3px solid var(--navy);
    }
    .answer_card {
        border: 3px solid #01314A;
    }
    .balloon_wrap {
        top: 26%;
        left: 3%;
        width: 280px;
    }
    .answer_top_inner {
        height: 300px;
    }
    .balloon_txt {
        line-height: 35px;
        font-size: 2.4rem;
    }
    #answer .balloon_wrap {
        left: 0%;
    }
    .balloon_wrap {
        width: 200px;
    }
    .balloon_txt {
        line-height: 25px;
        font-size: 1.8rem;
    }
    .answer_top_inner {
        height: 200px;
    }
    #answer:after {
        width: 70px;
        height: 120px;
        top: 30px;
    }
    .answer_card_title {
        font-size: 2.4rem;
    }
    .answer_card {
        padding: 20px 7%;
    }
    .answer_text {
        margin: 15px 0 0;
    }
    .answer_card_img {
        margin-top: 15px;
    }
}


/*answer　ここまで*/


/*cta　ここから*/

#cta.cta {
    --blue: #2fb4e8;
    --navy: #01314A;
    --red: #E23D0F;
    --yellow: #F6E625;
    background: var(--blue);
    position: relative;
    padding-top: 154px;
}

.cta_top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    position: absolute;
    left: 0;
    right: 0;
    top: -160px;
    transform: translateY(50%);
    z-index: 100;
    align-items: center;
}

.cta_people {
    width: 250px;
}

.cta_people img {
    display: block;
    width: 100%;
    height: auto;
}

.cta_mini {
    background: #fff;
    border: 3px solid var(--navy);
    border-radius: 10px;
    padding: 10px 14px;
    position: relative;
}

.cta_mini p {
    margin: 0;
    font-weight: 800;
}

.cta_main {
    background: var(--yellow);
    border: 4px solid var(--navy);
    border-radius: 20px;
    position: relative;
}

.cta_main:before {
    content: '';
    display: inline-block;
    width: 170px;
    height: 260px;
    background-image: url(../img/cta_bg_01.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -100px;
    z-index: 1;
    background-repeat: no-repeat;
    right: -90px;
}

.cta_main_inner {
    position: relative;
    min-height: 340px;
}

.cta_hero {
    position: absolute;
    right: 18px;
    bottom: 0;
    width: 46%;
}

.cta_hero img {
    display: block;
    width: 100%;
    height: auto;
}

.cta_mid {
    margin-top: 16px;
    position: relative;
}

.cta_mid:before {
    content: '';
    display: inline-block;
    width: 250px;
    height: 260px;
    background-image: url(../img/cta_bg_02.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -20px;
    z-index: 1;
    background-repeat: no-repeat;
    left: -12%;
}

#cta .tumihodai__body {
    border-radius: 0 0 0 0;
}

#cta .tumihodai__frame {
    border-radius: 22px 22px 0 0;
    position: relative;
    z-index: 2;
}

.cta_green {
    margin-bottom: 0;
    background: #19a44a;
    border: 4px solid var(--navy);
    border-radius: 0 0 0 0;
    text-align: center;
    padding: 14px 16px;
    color: #fff;
    border-top: 0;
}

.txt_line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.txt_line::before,
.txt_line::after {
    content: "";
    background-color: #fff;
    height: 3px;
    width: 30px;
}

.txt_line::before {
    margin-right: 5px;
    transform: rotate(60deg);
}

.txt_line::after {
    margin-left: 5px;
    transform: rotate(-60deg);
}

.cta_bottom {
    background: #fff;
    border: 4px solid var(--navy);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    padding: 18px;
    position: relative;
    z-index: 2;
}

#cta:before {
    content: '';
    display: inline-block;
    width: 150px;
    height: 150px;
    background-image: url(../img/cta_bg_03.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: 40px;
    z-index: 1;
    background-repeat: no-repeat;
    right: 10%;
}

.cta_tel {
    background: var(--yellow);
    border: 4px solid var(--navy);
    border-radius: 20px;
    padding: 16px 0;
    text-align: center;
    width: 60%;
}

.cta_tel p {
    margin: 0;
}

.cta_tel_num {
    margin: 10px 0;
    position: relative;
}

.cta_tel_num:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(../img/icon_tel.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 60px;
}

#cta .btn_two_layout {
    width: 34%;
    position: relative;
    z-index: 2;
}

#cta .btn_two_layout .btn {
    width: 100%;
}

#cta .btn_two_layout .btn.web {
    margin-bottom: 15px;
}

#cta .btn_two_layout .btn.web:before,
#cta .btn_two_layout .btn.line:before {
    display: none;
}

.rec_hrs {
    display: inline-block;
    line-height: 2;
}

.rec_hrs_ttl {
    border: 1px solid var(--navy);
    border-radius: 5px;
    padding: 5px;
}

.rec_hrs_open {
    border: 1px solid var(--navy);
    border-radius: 5px;
    padding: 5px;
    background: var(--navy);
    color: #fff;
}

.btn_fc {
    border: 1px solid var(--navy);
    border-radius: 5px;
    padding: 5px;
    background: var(--navy);
    color: #fff;
    margin-right: 10px;
    margin-left: 30px;
}

.cta_bottom .btn {
    text-align: left;
    height: 70px;
}

.cta_bottom .btn a {
    line-height: 70px;
}

.cta_tel a {
    pointer-events: none;
}

@media (max-width: 1280px) {
    .cta_hero {
        width: 45%;
    }
    .cta_tel .cta_tel_num {
        font-size: 4.8rem;
    }
    .cta_tel_num:before {
        width: 40px;
        height: 40px;
    }
    .cta_main:before {
        right: -13%;
    }
}

@media (max-width: 900px) {
    .cta_tel a {
        pointer-events: auto;
    }
    .cta_hero {
        right: 0;
        width: 60%;
    }
    .cta_main_inner {
        padding-bottom: 10px;
    }
    .btn_two_layout {
        flex-direction: column;
    }
    .btn_two_layout .btn_box {
        width: 100%;
    }
    #cta .tumihodai__top .txt_lg {
        text-align: center;
    }
    .cta_bottom {
        padding: 20px 3%;
    }
    .cta_tel {
        width: 100%;
        margin-bottom: 15px;
    }
    #cta .btn_two_layout {
        width: 98.5%;
        margin-right: 0;
    }
    .cta_main:before {
        right: -3%;
        width: 90px;
        height: 140px;
        top: -80px;
    }
    .cta_mid:before {
        width: 130px;
        height: 180px;
        top: -120px;
        left: -3%;
    }
    #cta:before {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 3%;
    }
}

@media (max-width: 650px) {
    _balloon_text {
        text-align: center;
    }
    .txt_line.txt_lg {
        font-size: 1.6rem;
    }
    .cta_top {
        padding: 0 3%;
    }
    .cta_green {
        padding: 14px 0px;
    }
    .cta_green .txt_yellow {
        display: contents;
    }
    .cta_green.txt_line.txt_lg {
        line-height: 25px;
    }
    .cta_green.txt_line::before,
    .cta_green.txt_line::after {
        width: 40px;
    }
    #cta .balloon_wrap {
        top: 90px;
        left: 5%;
        width: 320px;
    }
    .cta_hero img {
        position: relative;
        z-index: 2;
    }
    .cta_main_inner {
        min-height: 325px;
    }
    #cta.cta {
        padding-top: 80px;
    }
    .cta_main {
        z-index: 100;
    }
    .cta_main:before {
        display: none;
    }
    .cta_tel_num:before {
        left: 10px;
    }
    #cta:before {
        width: 80px;
        height: 80px;
        bottom: 35px;
    }
}

@media (max-width: 480px) {
    #cta.cta::before,
    #cta.cta::after {
        display: none;
    }
    .cta_top {
        gap: 0;
        padding: 0 3%;
        top: -100px;
    }
    .cta_tel_num:before {
        left: 5%;
    }
    .cta_tel .cta_tel_num {
        font-size: 3.2rem;
    }
    .cta_tel_num:before {
        width: 30px;
        height: 30px;
    }
    .cta_main_inner {
        min-height: 280px;
    }
    .cta_mini p.txt_sm {
        line-height: 20px;
    }
    .cta_people img {
        width: 95%;
    }
    #cta .balloon_wrap {
        top: 60px;
        left: 5%;
        width: 200px;
    }
    .cta_hero {
        width: 55%;
    }
    .cta_main_inner {
        min-height: 150px;
    }
}


/*cta　ここまで*/


/*service-menu　ここから*/

#service-menu.service_menu {
    --green: #0DB853;
    --navy: #01314A;
    --yellow: #F6E625;
    background: var(--green);
}

#service-menu.section {
    padding: 160px 0 0 0;
}

#service-menu {
    position: relative;
}

#service-menu .section_title {
    text-align: center;
    margin-bottom: 34px;
}

#service-menu .section_title h2 {
    letter-spacing: .05em;
}

#service-menu .section_title h3 {
    margin-top: 12px;
    font-weight: 800;
}

.service_menu_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service_card {
    text-align: center;
    max-width:290px;
}

.service_thumb {
    position: relative;
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}

.service_thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.service_icon {
    position: absolute;
    left: 50%;
    top: -18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_icon img {
    width: 60px;
    height: 60px;
}

.service_title {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.25;
    color: var(--yellow);
}

.service_text {
    line-height: 1.7;
    color: #fff;
}

@media (max-width: 900px) {
    .service_menu_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

@media (max-width: 650px) {
    .service_menu_grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 480px) {
    .service_menu_grid {
        gap: 40px;
    }
    #service-menu {
        padding-top: 140px;
    }
}


/*service-menu　ここまで*/


/*price　ここから*/

#price {
    position: relative;
    --sky: #15C1FF;
    --navy: #01314A;
    --yellow: #F6E625;
    --green: #0DB853;
    --red: #E23D0F;
    padding-top: 160px;
}

#price .section_title {
    color: var(--navy);
    text-align: center;
}

#price .title_line {
    background: var(--navy);
}

#price .section_title h3 {
    margin-top: 10px;
}

#price.tumihodai h4 {
    text-align: center;
}

#price .tumihodai__top p {
    width: 56%;
    text-align: center;
}

.tumihodai__point {
    margin: 20px auto 0 auto;
}

@media (max-width: 480px) {
    #price.tumihodai h4 {
        font-size: 2rem;
    }
}


/*price　ここまで*/


/*point　ここから*/

#point.point {
    --sky: #15C1FF;
    --navy: #01314A;
    --yellow: #F6E625;
    --green: #0DB853;
    --red: #E23D0F;
    background-color: var(--sky);
}

#point .section_title {
    text-align: center;
    margin-bottom: 36px;
}

#point .section_title h3 {
    margin-top: 14px;
}

.point_frame {
    border: 6px solid var(--navy);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.point_top {
    background: var(--yellow);
    border-bottom: 4px solid var(--navy);
    position: relative;
    min-height: 260px;
    padding: 26px;
}

.point_model {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 320px;
    z-index: 1;
}

.point_model img {
    width: 100%;
    display: block;
}

.point_bar {
    background: var(--green);
    border-bottom: 4px solid var(--navy);
    text-align: center;
    padding: 18px;
    letter-spacing: .02em;
}

.point_body {
    padding: 50px 5%;
    background: #fff;
}

.point_chart {
    width: 40%;
}

.point_content {
    width: 55%;
}

.point_chart img {
    width: 100%;
    height: auto;
    display: block;
}

.point_label {
    display: inline-block;
    background: var(--yellow);
    border: 3px solid var(--navy);
    border-radius: 5px;
    padding: 6px 14px;
    margin-bottom: 16px;
    color: var(--navy);
}

.point_title {
    line-height: 1.4;
    margin-bottom: 18px;
    color: var(--navy);
}

.point_text {
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--navy);
}

@media (max-width: 900px) {
    .point_top {
        min-height: 320px;
        padding: 22px;
    }
    .point_model {
        width: 45%;
        right: 5%;
    }
    .point_top .balloon_wrap {
        width: 360px;
    }
    .point_grid {
        grid-template-columns: 1fr;
    }
    .point_body .flex {
        flex-direction: column-reverse;
    }
    .point_chart {
        width: 100%;
        margin-top: 20px;
    }
    .point_content {
        width: 100%;
    }
    .point_body {
        padding: 30px 5%;
    }
    .point_bar {
        line-height: 30px;
    }
}

@media (max-width:650px) {
    .point_bar {
        padding: 14px 12px;
    }
    #point .section_title .txt_line.txt_lg {
        font-size: 2rem;
    }
    .txt_line::before,
    .txt_line::after {
        width: 20px;
    }
    .point_bar.txt_line.txt_lg {
        line-height: 25px;
    }
    .point_bar.txt_line::before,
    .point_bar.txt_line::after {
        width: 40px;
    }
    #price .tumihodai__top p {
        width: 100%;
    }
    .tumihodai__point {
        font-size: 1.6rem;
        margin: 10px auto 0 auto;
    }
    .point_top .balloon_wrap {
        width: 340px;
        top: 90px;
    }
    .point_top {
        min-height: 270px;
        padding: 20px;
    }
    .point_model {
        width: 48%;
        right: 3%;
        z-index: 2;
    }
    .point_body {
        padding: 25px 5%;
    }
}

@media (max-width: 480px) {
    .point_top {
        min-height: 250px;
    }
    #price {
        padding-top: 130px;
    }
    #price .txt_xlg .title-frame {
        font-size: 1.8rem;
    }
    .tumihodai__point.txt_lg {
        font-size: 1.6rem;
        line-height: 25px;
    }
    .point_top .balloon_wrap {
        width: 280px;
    }
    .cta_contact_head .balloon_txt {
        line-height: 30px;
        width: 80%;
        font-size: 2rem;
    }
    .point_top .balloon_wrap {
        width: 220px;
        top: 67px;
        left: 5%;
    }
    .point_text {
        text-align: justify;
    }
    .point_body {
        padding: 25px 7%;
    }
}

@media (max-width: 420px) {
    .point_top {
        min-height: 180px;
    }
}


/*point　ここまで*/


/*cta-contact　ここから*/

#cta-contact {
    position: relative;
    padding-top: 160px;
}

#cta-contact:before {
    content: '';
    display: inline-block;
    width: 250px;
    height: 250px;
    background-image: url(../img/cta-contact_bg_01.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 60px;
    z-index: 1;
    background-repeat: no-repeat;
    right: 5%;
}

#cta-contact:after {
    content: '';
    display: inline-block;
    width: 250px;
    height: 250px;
    background-image: url(../img/cta-contact_bg_02.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: 40px;
    z-index: 1;
    background-repeat: no-repeat;
    left: 5%;
}

#cta-contact.cta_contact_section {
    --red: #E23D0F;
    --navy: #01314A;
    --yellow: #F6E625;
    background: var(--red);
    position: relative;
}

.cta_contact_head {
    position: relative;
    padding-top: 20px;
}

.cta_contact_desc {
    text-align: center;
    line-height: 1.9;
    margin-bottom: 34px;
    position: relative;
}

.cta_contact_balloon.balloon_wrap {
    left: 5%;
    color: var(--navy);
}

.cta_contact_balloon.pos-up {
    margin-top: -140px;
    z-index: 2;
}

#cta-contact .cta_bottom {
    background: #fff;
    border: 4px solid var(--navy);
    border-radius: 20px;
    padding: 18px;
    position: relative;
    z-index: 2;
}

#cta-contact .cta_bottom .btn_two_layout {
    width: 37%;
    margin-right: initial;
    position: relative;
    z-index: 2;
}

#cta-contact .cta_bottom .btn {
    width: 100%;
}

#cta-contact .btn:before {
    display: none;
}

#cta-contact .cta_bottom .btn.line {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .cta_contact_box {
        flex-direction: column;
    }
    #cta-contact .cta_bottom .btn_two_layout {
        width: 98.5%;
    }
    .cta_contact_head .balloon_wrap {
        width: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    .cta_contact_head .balloon_txt {
        line-height: 35px;
        width: 90%;
        font-size: 2.4rem;
    }
    .cta_contact_balloon.pos-up {
        margin-top: -200px;
    }
    #cta-contact:before {
        height: 180px;
        width: 130px;
        top: 220px;
        right: 2%;
    }
    #cta-contact:after {
        width: 130px;
        height: 130px;
        left: 2%;
        bottom: 30px;
    }
    .cta_contact_head {
        position: relative;
        padding-top: 0;
    }
}

@media (max-width: 650px) {
    #cta-contact {
        padding-top: 90px;
    }
    .cta_contact_balloon.pos-up {
        margin-top: -120px;
    }
    #cta-contact:before {
        height: 140px;
        width: 100px;
        top: 164px;
    }
}

@media (max-width: 480px) {
    .cta_contact_balloon.pos-up {
        margin-top: -100px;
    }
    #cta-contact {
        padding-top: 60px;
    }
    .cta_contact_head .balloon_txt {
        line-height: 25px;
        font-size: 1.6rem;
    }
}


/*cta-contact　ここまで*/


/*PURCHASE　ここから*/

#purchase {
    position: relative;
    padding-top: 160px;
}

#purchase.purchase {
    --green: #0DB853;
    --navy: #01314A;
    --yellow: #F6E625;
    background-color: var(--green);
    position: relative;
}

#purchase .section_title {
    text-align: center;
    margin-bottom: 34px;
}

#purchase .section_title h3 {
    margin-top: 16px;
}

.title_line {
    width: 60px;
    height: 4px;
    background: #fff;
    margin: 14px auto 0;
    border-radius: 999px;
}

.purchase_intro {
    width: min(760px, 100%);
    margin: 0 auto 34px;
    background: #fff;
    border: 5px solid var(--navy);
    border-radius: 14px;
    overflow: hidden;
}

.purchase_intro_head {
    background: var(--yellow);
    border-bottom: 4px solid var(--navy);
    text-align: center;
    padding: 14px 16px;
}

.purchase_intro_text {
    text-align: center;
    line-height: 1.9;
    padding: 18px 18px;
}

.purchase_slider_wrap {
    width: 100%;
    padding: 0 0 24px;
    position: relative;
}

.purchase_slider .slick-slide {
    margin: 0 18px;
}

.purchase_slider {
    margin: 0;
    padding: 0;
}

.purchase_card {
    background: #fff;
    border: 4px solid var(--navy);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
}

.purchase_card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.purchase_slider .slick-center .purchase_card {
    border-color: var(--yellow);
}

.purchase_label {
    margin-top: 12px;
    text-align: center;
    color: var(--navy);
}

.purchase_slider .slick-center .purchase_label {
    color: var(--yellow);
}

.purchase_slider_wrap .slick-prev,
.purchase_slider_wrap .slick-next {
    position: absolute;
    bottom: -60px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent;
    z-index: 5;
    cursor: pointer;
}

.purchase_slider_wrap .slick-prev {
    left: 15%;
}

.purchase_slider_wrap .slick-next {
    right: 15%;
}

.purchase_slider_wrap .slick-prev::before,
.purchase_slider_wrap .slick-next::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.purchase_slider_wrap .slick-next::before {
    transform: rotate(45deg);
}

.purchase_progress_area {
    margin-top: 40px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.purchase_progress_track {
    height: 4px;
    background: rgba(255, 255, 255, .7);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar.purchase {
    height: 100%;
    width: 0%;
    background: var(--yellow);
    border-radius: 999px;
}

.purchase_note {
    width: min(760px, 100%);
    margin: 30px auto 0;
    background: #fff;
    border: 4px solid var(--navy);
    border-radius: 14px;
    padding: 18px 18px;
    text-align: center;
}

.purchase_note p {
    margin: 0;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .purchase_slider_wrap .slick-prev {
        left: 20px;
    }
    .purchase_slider_wrap .slick-next {
        right: 20px;
    }
    .purchase_card img {
        height: 200px;
    }
    .purchase_intro {
        width: 90%;
    }
    .purchase_note {
        width: 92%;
        padding: 20px 3%;
    }
}

@media (max-width: 650px) {
    .purchase_slider .slick-slide {
        margin: 0 12px;
    }
    .purchase_card img {
        height: 190px;
    }
}


/*PURCHASE　ここまで*/


/*howto　ここから*/

#howto {
    --blue: #2fb4e8;
    --navy: #01314A;
    --red: #E23D0F;
    --yellow: #F6E625;
    position: relative;
    padding-top: 160px;
}

.howto_section {
    background: #F0F0F0;
}

.howto_title {
    text-align: center;
    margin-bottom: 34px;
    color: #01314A;
}

.howto_en {
    letter-spacing: .04em;
    line-height: 1;
}

.howto_underline {
    width: 64px;
    height: 4px;
    background: #01314A;
    margin: 14px auto 18px;
    border-radius: 999px;
}

.howto_layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    padding-left: 70px;
}

.howto_side {
    flex: 0 0 100px;
    position: relative;
}

.howto_box {
    flex: 1;
    background: #fff;
    border: 4px solid #01314A;
    border-radius: 20px;
    overflow: hidden;
}

.howto_item {
    border-bottom: 4px solid #01314A;
    padding: 30px 50px;
}

.howto_item_last {
    border-bottom: none;
}

.howto_row {
    display: flex;
    gap: 10%;
    align-items: center;
}

.howto_left {
    display: flex;
    gap: 18px;
    align-items: center;
    width: 40%;
}

.step_num {
    width: 90px;
    height: 90px;
    background: #F6E625;
    border: 4px solid #01314A;
    border-radius: 10px;
    font-size: 4.8rem;
    font-weight: bold;
    color: #01314A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 90px;
}

.howto_step_title {
    margin: 0;
    color: #01314A;
    line-height: 42px;
}

.howto_right {
    flex: 1;
}

.howto_right p {
    margin: 0;
    font-weight: 700;
    line-height: 1.9;
    color: #01314A;
}

.howto_btns {
    margin-top: 16px;
    gap: 16px;
}

#howto .btn_two_layout {
    flex-direction: column;
    align-items: stretch;
}

#howto .btn_two_layout .btn_box {
    width: 100%;
}

#howto .btn_two_layout .btn_box>p {
    display: none;
}

.howto_note {
    margin: 30px 0 0 0;
    background: #F6E625;
    border: 3px solid #01314A;
    border-radius: 10px;
    text-align: center;
    padding: 18px 16px;
    line-height: 1.7;
}

#howto .btn_two_layout {
    width: 100%;
}

#howto .btn_two_layout .btn {
    width: 100%;
    text-align: left;
}

#howto .btn:before {
    display: none;
}

#howto .btn {
    margin-top: 15px;
}

.howto_side {
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 20px;
    width: 24px;
    pointer-events: none;
    --p: 0;
}

.howto_side::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .15);
    border-radius: 999px;
}

.howto_side_line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: calc(var(--p) * 100%);
    transform: translateX(-50%);
    background: #0b2b4a;
    border-radius: 999px;
}

.howto_side_head {
    position: absolute;
    left: 39%;
    top: calc(var(--p) * 100%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0px;
    border-left: 10px solid transparent;
    border-top: 14px solid #0b2b4a;
}

.howto_side_head:after {
    content: '';
    display: inline-block;
    width: 180px;
    height: 180px;
    background-image: url(../img/howto_arrow_02.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -107px;
    z-index: 1;
    background-repeat: no-repeat;
    left: -100px;
}

#howto .cta_tel {
    width: 100%;
    border-radius: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--navy);
}

#howto .cta_tel .txt_xxxlg {
    font-size: 4.8rem;
}

#howto .cta_tel_num:before {
    width: 40px;
    height: 40px;
    left: -40px;
}

@media only screen and (max-width: 1280px) {
    .howto_item {
        padding: 30px 20px;
    }
    .howto_row {
        gap: 4%;
    }
}

@media only screen and (max-width: 900px) {
    .howto_title .txt_xxxxlg {
        font-size: 6rem;
    }
    .howto_row {
        flex-direction: column;
        gap: 14px;
    }
    .howto_left {
        width: 100%;
        flex: none;
    }
    .step_num {
        width: 70px;
        height: 70px;
        font-size: 3.6rem;
        flex: 0 0 70px;
    }
    .howto_item {
        padding: 20px 7%;
    }
    .howto_box {
        width: 100%;
    }
    .howto_side {
        display: none;
    }
    .howto_layout {
        gap: 0;
        padding-left: 0;
    }
    .btn_fc {
        margin-left: 3%;
    }
}

@media only screen and (max-width: 480px) {
    #howto {
        padding-top: 140px;
    }
    .howto_title .txt_xxxxlg {
        font-size: 4.2rem;
    }
    .step_num {
        width: 50px;
        height: 50px;
        font-size: 2.4rem;
        flex: 0 0 50px;
        border: 3px solid #01314A;
    }
    #howto .cta_tel .txt_xxxlg {
        font-size: 3.2rem;
    }
    #howto .cta_tel_num:before {
        width: 26px;
        height: 26px;
        left: -23px;
    }
    .howto_item .howto_step_title {
        font-size: 2rem;
    }
    #howto .btn_two_layout .btn {
        width: 98%;
    }
    #howto .cta_tel {
        width: 98%;
    }
    .howto_right p {
        line-height: 23px;
        text-align: justify;
    }
    .howto_row {
        gap: 10px;
    }
    .howto_note {
        margin: 15px 0 0 0;
    }
}


/*howto　ここまで*/


/*area　ここから*/

#area {
    --blue: #2fb4e8;
    --navy: #01314A;
    --red: #E23D0F;
    --yellow: #F6E625;
    --green: #0DB853;
    position: relative;
    padding-top: 160px;
    color: var(--navy);
}

#area.section {
    padding: 160px 0 0 0;
}

#area .section_title {
    color: var(--navy);
    text-align: center;
}

#area .title_line {
    background: var(--navy);
}

#area .section_title h3 {
    margin-top: 10px;
}

.area__frame {
    width: 48%;
    box-shadow: 8px 8px 0px 0px #01314A;
    background: var(--navy);
    border-radius: 20px;
}

.area__top {
    background: var(--red);
    border: 4px solid var(--navy);
    border-radius: 20px 20px 0 0;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.area__top.wakayama {
    background: var(--green);
}

.area__body {
    background: #fff;
    border: 4px solid var(--navy);
    border-radius: 0 0 20px 20px;
    border-top: 0;
    padding: 20px 5%;
    height: 520px;
}

.area__txt {
    margin-top: 20px;
}

@media only screen and (max-width:900px) {
    .area__frame {
        width: 100%;
    }
    .area__frame:nth-child(2) {
        margin-top: 50px;
    }
    .area__body {
        height: auto;
    }
}

@media only screen and (max-width:650px) {
    #area.section {
        padding: 140px 0 0 0;
    }
}

@media only screen and (max-width:480px) {
    #area {
        padding-top: 100px;
    }
}


/*area　ここまで*/


/*faq　ここから*/

#faq {
    --blue: #2fb4e8;
    --navy: #01314A;
    --red: #E23D0F;
    --yellow: #F6E625;
    --green: #0DB853;
    background: #F0F0F0;
}

#faq .section_title {
    color: var(--navy);
    text-align: center;
}

#faq .title_line {
    background: var(--navy);
}

#faq .section_title h3 {
    margin-top: 10px;
}

.accordion-area {
    list-style: none;
    width: 100%;
    margin: 50px auto 0 auto;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    background: var(--navy);
    border-radius: 10px;
    padding: 2% 2%;
}

.title {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    transition: all .5s ease;
}

.title.flex {
    justify-content: left;
}

.title::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 13px;
    background-image: url(../img/gokigenya_icon_accordion.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.title.close::before {
    transform: rotate(180deg);
}

.box {
    display: none;
    background: #fff;
    padding: 2%;
    margin-top: 2%;
    border-radius: 10px;
}

#faq .circle {
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-weight: bold;
    margin-right: 10px;
    background: #fff;
    border-radius: 100px;
    text-align: center;
    color: var(--navy);
}

#faq .title h3 {
    color: #fff;
}

#faq .box .circle {
    background: var(--navy);
    color: #fff;
}

#faq .box p {
    width: 80%;
    color: var(--navy);
}

#faq .open .flex {
    display: flex;
}

#faq .box.flex {
    justify-content: left;
}

@media only screen and (max-width:480px) {
    .title::before {
        width: 14px;
        height: 9px;
    }
}


/*faq　ここまで*/


/*contact　ここから*/

#wpcf7-f9-o1 {
    width: 100%;
}

#contact {
    position: relative;
    padding-top: 160px;
    --blue: #2fb4e8;
    --sky: #15C1FF;
    --navy: #01314A;
    --red: #E23D0F;
    --yellow: #F6E625;
    --green: #0DB853;
    position: relative;
}

#contact .section_title {
    color: var(--navy);
    text-align: center;
}

#contact .title_line {
    background: var(--navy);
}

#contact h3 {
    margin-top: 10px;
}

#contact.section {
    background-color: var(--sky);
}

#contact {
    position: relative;
    color: #01314A;
}

#contact .inner {
    width: 650px;
    background: #fff;
    border-radius: 20px;
    padding: 3%;
    margin-top: 50px;
    border: 4px solid #01314A;
    position: relative;
}

#contact .inner:before {
    content: '';
    display: inline-block;
    width: 400px;
    height: 220px;
    background-image: url(../img/gokigenya_character_02.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
    top: -184px;
    right: -180px;
}

input.wpcf7-form-control.wpcf7-text,
.cf7-textarea,
.wpcf7-select {
    border: none;
    background: #ececec;
    width: 65%;
    padding: 10px 2%;
    font-size: 1.6rem;
}

.wpcf7-select {
    width: 69%;
}

.cf7-label {
    width: 30%;
    display: inline-block;
}

.cf7-field {
    margin-bottom: 20px;
}

.cf7-field .flex {
    align-items: flex-start;
}

.zip_box,
.date_box {
    width: 69%;
}

.zip_box .cf7-sub-label,
.date_box .cf7-sub-label {
    width: 29.5%;
    display: inline-block;
}

.zip_box .cf7-col,
.date_box .cf7-col {
    margin-bottom: 20px;
}

.zip_box .cf7-grid--addr1 .cf7-col {
    margin-bottom: 0;
}

.cf7-field--condition.flex,
.cf7-field--photo.flex,
.cf7-field--type.flex {
    align-items: flex-start;
}

.cf7-field--condition.flex .wpcf7-form-control-wrap {
    width: 70%;
}

.cf7-field--condition.flex .wpcf7-form-control-wrap .cf7-textarea {
    width: 95.5%;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.web.txt_white.txt_sm {
    margin: 30px auto 30px auto;
    display: block;
}

.cf7-required {
    color: #f87b1b;
}

.cf7-form {
    font-weight: 600;
}

.wpcf7 input[type="file"] {
    font-size: 1.6rem;
    margin-top: 15px;
}

.recaptcha_txt {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha_txt a {
    color: #01314A;
    border-bottom: 1px solid #01314A;
    padding-bottom: 2px;
}

.wpcf7 .btn {
    line-height: 44px;
}

.cf7-field .file_box {
    width: 70%;
}

.cf7-field .file_box .wpcf7-form-control-wrap:first-child input[type="file"] {
    margin-top: 0;
}

.cf7-field--type.flex .wpcf7-form-control-wrap {
    width: 70%;
}

.cf7-field--type.flex .wpcf7-form-control-wrap .wpcf7-list-item {
    margin: 5px 0 5px 0;
    width: 50%;
}

.hidden-fields-container {
    border: none;
}

.wpcf7-date {
    width: 64%;
    height: 30px;
    padding: 0px 2%;
}

.cf7-field--textarea {
    display: flex;
    align-items: flex-start;
}

.cf7-textarea {
    width: 100%;
}

.cf7-field--textarea .wpcf7-form-control-wrap {
    width: 67%;
}

.cf7-acceptance .wpcf7-list-item {
    display: block;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #01314A;
    border-radius: 10px;
    padding: 25px 0;
    box-shadow: 0 0px 15px rgba(51, 161, 224, 0.15);
    background: #fff;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.cf7-acceptance .wpcf7-list-item a {
    border-bottom: 1px solid #01314A;
    color: #01314A;
    padding-bottom: 5px;
}

#contact .btn.web {
    background: #F6E625;
    color: #01314A;
    width: 100%;
    height: 55px;
}

#contact .btn.web:before {
    display: none;
}

#contact .cf7-actions {
    position: relative;
    width: 48%;
    margin: 0 auto;
    height: 55px;
    margin-bottom: 30px;
}

#contact .cf7-actions:after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../img/gokigenya_icon_arrow_navy.svg);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.cf7-field.cf7-field--date {
    margin-bottom: 0;
}

@media only screen and (max-width:1000px) {
    #contact:before {
        right: 2%;
        width: 200px;
        height: 200px;
    }
    #contact .inner:before {
        width: 300px;
        height: 170px;
        top: -139px;
        right: 0;
    }
}

@media only screen and (max-width:900px) {
    #contact .inner {
        width: 84%;
    }
    .cf7-label {
        width: 100%;
        margin-bottom: 10px;
    }
    input.wpcf7-form-control.wpcf7-text,
    .cf7-textarea {
        width: 96%;
        font-size: 1.6rem;
    }
    .zip_box {
        width: 100%;
    }
    .wpcf7-select {
        width: 100%;
    }
    .cf7-field--condition.flex .wpcf7-form-control-wrap {
        width: 100%;
    }
    input.wpcf7-form-control.wpcf7-text {
        height: 35px;
    }
    .wpcf7 input[type="file"] {
        width: 100%;
    }
    .cf7-field--type.flex .wpcf7-form-control-wrap {
        width: 100%;
    }
    .cf7-field--type.flex .wpcf7-form-control-wrap .wpcf7-list-item {
        margin: 0 1em 1em 0;
        width: initial;
    }
    #contact .inner:before {
        width: 180px;
        height: 100px;
        top: -84px;
        right: 0;
    }
    .date_box .cf7-sub-label {
        width: 100%;
    }
    .wpcf7-date {
        width: 100%;
    }
    .date_box {
        width: 100%;
    }
    .cf7-field--textarea {
        flex-wrap: wrap;
    }
    .cf7-field--textarea .wpcf7-form-control-wrap {
        width: 100%;
    }
    .date_box .wpcf7-form-control-wrap {
        width: 100%;
        display: block;
    }
    .wpcf7-date {
        -webkit-appearance: none;
        appearance: none;
        display: block;
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 8px;
        background: #ececec;
        color: #01314A;
        font-size: 16px;
        line-height: 48px;
        box-sizing: border-box;
        text-align: left;
    }
    /* iPhone Safari対策 */
    @supports (-webkit-touch-callout: none) {
        .wpcf7-date {
            min-height: 48px;
            height: 48px;
            padding: 0 16px;
            font-size: 16px;
            line-height: 48px;
            width: 100%;
        }
    }
}

@media only screen and (max-width:740px) {
    #contact.section {
        padding-top: 150px;
    }
    #contact:before {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        right: initial;
        width: 180px;
        height: 170px;
    }
}

@media only screen and (max-width:480px) {
    #contact .inner {
        width: 73%;
    }
    #contact .inner {
        padding: 8%;
    }
    #contact .wpcf7 .txt_sm {
        font-size: 1.6rem;
    }
    #contact:before {
        width: 140px;
        height: 140px;
    }
    #contact.section {
        padding-top: 180px;
    }
    #contact .cf7-actions {
        width: 100%;
    }
    #contact .cf7-actions .btn {
        width: 100%;
    }
    #contact .inner:before {
        width: 290px;
        height: 170px;
        top: -134px;
        right: 0;
    }
}


/*contact　ここまで*/


/*footer　ここから*/

#footer {
    --blue: #2fb4e8;
    --navy: #01314A;
    --red: #E23D0F;
    --yellow: #F6E625;
    --green: #0DB853;
}

#footer .col_left {
    width: 40%;
}

#footer .col_right {
    width: 52%;
}

#footer .btn {
    width: 100%;
    margin-top: 15px;
    text-align: left;
}

#footer .btn .btn_fc {
    border: 1px solid var(--navy);
    border-radius: 5px;
    padding: 5px;
    background: var(--navy);
    color: #fff;
    margin-right: 10px;
    margin-left: 30px;
}

#footer .btn:before {
    display: none;
}

#footer .columns.flex {
    align-items: flex-start;
}

#footer .col_left p {
    margin: 20px 0 10px 0;
    font-weight: bold;
    color: var(--navy);
}

#footer .col_right .frame_blue {
    display: block;
    border-radius: 0;
    padding: 6px 3% 8px 3%;
    margin-bottom: 10px;
}

#footer .col_right h3 {
    margin-top: 10px;
}

#footer .col_right img {
    margin-top: 10px;
}

#footer .col_right p {
    margin: 10px 0;
    font-weight: 500;
    line-height: 22px;
    text-align: justify;
}

#footer .footer_nav .btn:after {
    background-image: url(../img/gokigenya_icon_arrow_navy.svg);
}

#footer .footer_nav .btn.top_btn {
    background: var(--navy);
}

#footer .footer_nav .btn.top_btn a {
    color: #fff;
}

#footer .footer_nav .btn.top_btn:after {
    background-image: url(../img/gokigenya_icon_arrow.svg);
}

#footer .footer_nav .btn {
    box-shadow: initial;
}

#footer .footer_nav .btn a {
    color: var(--navy);
    margin-left: 30px;
}

.copyright {
    text-align: end;
    display: block;
    margin-top: 30px;
}

.copyright.txt_xsm {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--navy);
}

@media only screen and (max-width:900px) {
    #footer .col_left {
        width: 100%;
    }
    #footer .col_right {
        width: 100%;
        margin-top: 5px;
    }
    #footer .columns {
        margin-top: 0;
    }
    #footer .footer_logo {
        margin: 0px auto 30px auto;
    }
    #footer .col_left p {
        margin: 30px 0 20px 0;
    }
    #footer.section {
        padding: 60px 0 90px 0;
    }
    #footer .col_right .frame_blue {
        font-size: 1.6rem;
    }
    #footer .col_right p {
        margin: 5px 0;
        line-height: 20px;
    }
    #footer .col_left {
        display: flex;
        flex-direction: column-reverse;
    }
    .btn:after {
        right: 3%;
    }
    #footer .btn .btn_fc {
        margin-left: 3%;
    }
    #footer .footer_nav .btn a {
        margin-left: 3%;
    }
}

@media only screen and (max-width:480px) {
    #footer .footer_logo {
        width: 200px;
    }
}


/*footer　ここまで*/


/*404　ここから*/

.gk-404 {
    --gk-blue: #1496d6;
    --gk-blue2: #0b6fb2;
    --gk-orange: #ff8a00;
    --gk-bg: #f3fbff;
    --gk-text: #11324a;
    --gk-muted: #5c7487;
    --gk-line: #d9eef9;
    --gk-radius: 18px;
}

.gk-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.gk-head {
    text-align: center;
    margin-bottom: clamp(18px, 3vw, 30px);
}

.gk-eyebrow {
    display: inline-block;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--gk-blue2);
    background: #e7f6ff;
    border: 1px solid var(--gk-line);
    border-radius: 999px;
    padding: 6px 12px;
    margin: 0 0 10px;
    font-size: 12px;
}

.gk-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.2;
}

.gk-lead {
    margin: 0 auto;
    max-width: 56rem;
    color: var(--gk-muted);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.8;
}

.gk-grid {
    display: flex;
    justify-content: center;
}

.gk-card {
    background: #fff;
    border: 1px solid var(--gk-line);
    border-radius: var(--gk-radius);
    box-shadow: 0 10px 30px rgba(20, 150, 214, .08);
    padding: clamp(18px, 2.4vw, 26px);
}

.gk-dl {
    margin: 0;
}

.gk-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--gk-line);
}

.gk-row:last-child {
    border-bottom: 0;
}

.gk-row dt {
    font-weight: 800;
    color: var(--gk-blue2);
}

.gk-row dd {
    margin: 0;
    color: var(--gk-text);
    line-height: 1.7;
}

.gk-row a {
    color: var(--gk-blue2);
    font-weight: 700;
    text-decoration: none;
}

.gk-row a:hover {
    text-decoration: underline;
}

.gk-404 {
    padding: clamp(34px, 5vw, 62px) 0;
    background: linear-gradient(180deg, var(--gk-bg), #ffffff 70%);
    border-bottom: 1px solid var(--gk-line);
}

.gk-404 .gk-lead {
    margin: 30px auto;
    max-width: 100%;
}

.gk-404 .btn {
    background: #34a1e0;
    margin: 0 auto;
    width: 60%;
}


/* responsive */

@media (max-width: 980px) {
    .gk-grid {
        grid-template-columns: 1fr;
    }
    .gk-toc {
        position: relative;
        top: auto;
    }
}

@media (max-width: 560px) {
    .gk-toc__nav a {
        padding: 10px 10px;
        font-size: 13px;
    }
    .gk-sec__title {
        font-size: 16px;
    }
    .gk-contact__item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media only screen and (max-width:480px) {
    .gk-404 .gk-lead {
        text-align: justify;
    }
}


/*404　ここまで*/


/*サンクスページ　ここから*/

.gk-thanks {
    padding: clamp(34px, 5vw, 62px) 0;
    background: linear-gradient(180deg, var(--gk-bg), #ffffff 70%);
    border-bottom: 1px solid var(--gk-line);
}

.gk-thanks .gk-lead {
    margin: 30px auto;
    max-width: 100%;
}

.gk-thanks .btn {
    background: #34a1e0;
    margin: 0 auto;
    width: 60%;
}

@media only screen and (max-width:480px) {
    .gk-thanks .gk-lead {
        text-align: justify;
    }
}


/*サンクスページ　ここまで*/


/*車アニメ　ここから*/

.car_box {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(0);
}

.car_box.run {
    animation: carRunLeft 7s linear forwards;
}

@keyframes carRunLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100vw + 100% + 5%));
    }
}

#footer .car_box.run {
    animation: carRunLeft2 4s linear forwards;
}

@keyframes carRunLeft2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 50% + 5%));
    }
}

.car_section {
    width: 100%;
    height: 300px;
    position: relative;
}

.car {
    width: 300px;
    height: auto;
}

.car_box.run .car {
    animation: carBounce 0.25s ease-in-out infinite;
}

@keyframes carBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media only screen and (max-width: 900px) {
    .car {
        width: 150px;
    }
    .car_section {
        height: 150px;
    }
    #footer .car_section {
        height: 120px;
    }
    #footer .car_box.run {
        animation: carRunLeft2 4s linear forwards;
    }
    @keyframes carRunLeft2 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90vw + 100%));
        }
    }
}


/*車アニメ　ここまで*/


/*最新チラシ　ここから*/

#flyer {
    position: relative;
    --sky: #15C1FF;
    --navy: #01314A;
    --yellow: #F6E625;
    --green: #0DB853;
    --red: #E23D0F;
    padding-top: 160px;
}

#flyer .section_title {
    color: var(--navy);
    text-align: center;
}

#flyer .title_line {
    background: var(--navy);
}

#flyer .section_title h3 {
    margin-top: 10px;
}

.flyer {
    max-width: 100%;
    cursor: pointer;
}

.flyer_modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.flyer_modal.active {
    display: block;
}

.flyer_modal_bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
}

.flyer_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}

.flyer_modal_img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.flyer_close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.flyer_area {
    width: 50%;
    margin: 0 auto;
}

@media only screen and (max-width: 650px) {
    #flyer {
        padding-top: 140px;
    }
    .flyer_area {
        width: 70%;
        margin: 0 auto;
    }
    .flyer_modal_img {
        max-height: 100vh;
    }
}


/*最新チラシ　ここまで*/


/*会社概要　ここから*/

.gk-company .gk-lead {
    max-width: 100%;
}

.gk-company .gk-grid {
    display: block;
}

.gk-company .gk-card {
    width: 800px;
    margin: 0 auto;
}

@media only screen and (max-width:800px) {
    .gk-company .gk-card {
        width: 90%;
    }
}


/*会社概要　ここまで*/


/*サンクスページ　ここから*/

.gk-thanks {
    padding: clamp(34px, 5vw, 62px) 0;
    background: linear-gradient(180deg, var(--gk-bg), #ffffff 70%);
    border-bottom: 1px solid var(--gk-line);
}

.gk-thanks .gk-lead {
    margin: 30px auto;
    max-width: 100%;
}

.gk-thanks .btn {
    background: #34a1e0;
    margin: 0 auto;
    width: 60%;
}

@media only screen and (max-width:480px) {
    .gk-thanks .gk-lead {
        text-align: justify;
    }
}


/*サンクスページ　ここまで*/
