html {
    scroll-behavior: smooth;
}

* {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
img {
    height: auto;
}
/* font */
.sen {
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.contrail {
    font-family: "Contrail One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* color */
:root {
    --blue01: #025392;
    --blue02: #164A78;
    --blue03: #003E75;
    --blue04: #1F68A8;
    --blue05: #0F7A8D;
    --blue06: #F2FDFF;
    --blue07: #98EFFF;
    --blue08: #003E75;
    --blue09: #03697C;
    --orange: #FF8A03;
    --orange01: #FFDA6A;
    --orange02: #844702;
    --orange03: #E07800;
    --green: #0F7A8D;
    --red: #FF0000;
    --yellow: #FAFE0C;
    --white: #fff;
    --grad01: linear-gradient(to right, #AFD6FF 0%, #D5F9FF 100%);
    --grad02: linear-gradient(to left, #AFD6FF 0%, #D5F9FF 100%);
}
.c_blue01 {
    color: var(--blue01);
}
.c_blue02 {
    color: var(--blue02);
}
.c_blue03 {
    color: var(--blue03);
}
.c_blue04 {
    color: var(--blue04);
}
.c_blue05 {
    color: var(--blue05);
}
.c_blue06 {
    color: var(--blue06);
}
.c_blue07 {
    color: var(--blue07);
}
.c_orange {
    color: var(--orange);
}
.c_orange01 {
    color: var(--orange01);
}
.c_green_grad {
    background-image: linear-gradient(to bottom, #3AA5B8, #1A4952);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c_blue_grad {
    background-image: linear-gradient(to top, #67EBFF, #2672FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hover_c_blue01:hover {
    color: var(--blue01) !important;
    opacity: 1;
}
.hover_c_blue02:hover {
    color: var(--blue02) !important;
    opacity: 1;
}
.no_opa {
    opacity: 0.7;
}
.no_opa:hover {
    opacity: 1;
}

/* フェードイン（一回のみ） */
.fadeIn {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s, transform 0.6s;
}
.fadeIn.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.fade01.is-inview,
.fade02.is-inview,
.fade03.is-inview,
.fade04.is-inview,
.fade05.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.fade01,
.fade02,
.fade03,
.fade04,
.fade05 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
/* common */
.flex_align_center {
    display: flex;
    align-items: center;
}
.underline {
    position: relative;
    padding-bottom: 12px;
}
.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background-color: var(--yellow);
    clip-path: polygon(3% 0, 100% 10%, 97% 100%, 0% 100%);
}

/* header */
header {
    padding: 24px 40px;
    justify-content: space-between;
    background-color: unset;
}
header.scrolled {
    background-color: #F2FDFF;
}
header .header_link_box {
    flex-wrap: wrap;
    margin-right: auto;
}
.header_link_box .link_box {
    margin: 0 12px;
}
.header_link_box .link_box .link_item {
    font-size: 14px;
    display: block;
    margin: 5px 0;
}
header .icon_link {
    flex-shrink: 0;
    justify-content: right;
    gap: 10px;
    align-items: flex-end;
}
header .icon_link .tel_link .img_box {
    max-width: 20px;
    margin-right: 5px;
}
header .icon_link .tel_link .img_box img{
    display: block;
    margin: auto;
}
header .icon_link .tel_link .tel_text {
    color: var(--blue01);
    margin-bottom: 4px;
}

header .icon_link .contact_link {
    color: #164A78;
    background-color: #FAFE0C;
    display: block;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 48px;
    padding: 0 12px;
    margin-left: 5px;
    border-radius: 10px;
    border: 1px solid #164A78;
}
header .icon_link .quotation_link {
    color: var(--white);
    background-color: var(--blue01);
    display: block;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #164A78;
}
header .icon_link .simple_quote_link {
    color: var(--white);
    background-color: #FF8A03;
    display: block;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #164A78;
}
header .sp_btn {
    display: none;
}
header .col p {
    text-align: center;
    font-weight: 700;
    color: #025392;
    margin-top: -10px;
}
@media (max-width:1280px) {
    .header_link_box .link_box {
        margin: 0 8px;
    }
    header .icon_link .tel_link .img_box {
        max-width: 15px;
        margin-right: 3px;
    }
    header .icon_link .quotation_link {
        padding: 12px 15px;
        margin-left: 10px;
    }
}
@media (max-width:1024px) {
    header .icon_link .tel_link .tel_text {
        font-size: 22px;
    }
}
@media (max-width:768px) {
    header {
        justify-content: space-between;
        padding: 15px;
    }
    header .sp_btn {
        display: block;
    }
    header .sp_btn .contact_link {
        color: #164A78;
        background-color: #FAFE0C;
        display: block;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 35px;
        padding: 0 5px;
        border-radius: 10px;
        border: 1px solid #164A78;
    }
    header .header_link_box,header .icon_link {
        display: none;
    }
    header .icon_link .tel_link .img_box {
        max-width: 12px;
    }
    header .icon_link .quotation_link {
        padding: 10px 15px;
        margin-left: 8px;
        letter-spacing: -1px;
        font-size: 14px;
    }
    header .icon_link .contact_link,
    header .icon_link .quotation_link,
    header .icon_link .simple_quote_link {
        display: none;
    }
}

/* footer */
footer{
    max-width: 1050px;
    margin: auto;
    width: 96%;
    margin-top: 70px;
}
.footer_top {
    justify-content: space-between;
}
.footer_top .left_box .img_box{
    max-width: 295px;
    width: 80%;
}
.footer_top .left_box .addr {
    font-size: 15px;
    line-height: 2;
    margin-left: 10px;
}
.top_link {
    position: relative;
    display: inline-block;
    line-height: 1;
    padding-top: 30px;
    font-size: 15px;
}
.top_link::before,
.top_link::after {
    content: '';
    background-color: #000;
    position: absolute;
    width: 70%;
    height: 1px;
    top: 18%;
}
.top_link::after {
    transform: rotate(45deg);
    right: -3px;
}
.top_link::before {
    transform: rotate(-45deg);
    left: -3px;
}
.footer_link_box {
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.footer_link_box .link_box {
    margin: 15px 20px 0;
    position: relative;
}
.footer_link_box .link_box > a:hover {
    opacity: 1;
    color: #025392;
}
.footer_link_box .link_box.pointer {
    cursor: pointer;
    transition: all .3s ease;
}
.footer_link_box .link_box.pointer:hover {
    color: #025392;
}
.footer_link_box .link_box .sub_menu {
    width: 100%;
    position: absolute;
    padding: 0.5rem;
    display: none;
    background-color: #fff;
    z-index: 1;
    bottom: 1em;
}
.footer_link_box .link_box.br_item {
    width: 100%;
}

.footer_link_box .link_box .link_item {
    display: block;
    font-size: 16px;
}
.copy {
    line-height: 1;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid;
    margin-top: 45px;
    background: var(--grad01);
}
@media (max-width:768px) {
    .footer_top .left_box .img_box {
        max-width: 195px;
    }
    .footer_top .left_box .addr {
        font-size: 14px;
        line-height: 1.4;
        margin-left: 6px;
    }
}
@media (max-width:480px) {
    .footer_top {
        flex-direction: column;
    }
    .footer_top .left_box {
        display: block;
        order: 2;
        width: 100%;
    }
    .footer_top .top_link {
        order: 1;
        margin: 0 20px 0 auto;
    }
    .footer_top .left_box .img_box {
        max-width: 250px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 12px;
    }
    .footer_top .left_box .addr {
        text-align: center;
        margin-left: 0;
    }
    .footer_link_box .link_box {
        margin: 4px auto;
        /* width: 100%; */
        width: 50%;
        text-align: center;
        border-right: 1px solid #000;
    }
    .footer_link_box .link_box:nth-child(2n),
    .footer_link_box .link_box:nth-child(9) {
        border-right: transparent;
    }
    .footer_link_box .link_box:nth-child(9) .link_item,
    .footer_link_box .link_box:nth-child(10) .link_item {
        font-size: 14px;
    }
    .footer_link_box .link_box.br_item {
        display: none;
    }
}



/* head-container */
.head_container {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.head_container .head_ja {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.head_container .head_ja .img_box {
    position: absolute;
    left: -80px;
    max-width: 124px;
    z-index: -1;
    bottom: -35px;
    margin: auto;
}

.head_container .head_ja .img_box img {
    display: block;
    margin: auto;
}

.head_container .head_en {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}
@media (max-width:768px) {
    .head_container .head_ja {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .head_container .head_en {
        font-size: 16px;
        letter-spacing: 0.1px;
    }
    .head_container .head_ja .img_box {
        left: -55px;
        max-width: 95px;
        bottom: -25px;
    }
}
@media (max-width: 480px) {
    .head_container {
        margin-bottom: 35px;
    }
    .head_container .head_ja {
        font-size: 24px;
    }
    .head_container .head_ja .img_box {
        left: -40px;
        max-width: 70px;
        bottom: -18px;
    }
    .head_container .head_en {
        font-size: 12px;
        letter-spacing: 0px;
    }
}


/* link-container */
.link_container {
    width: 94%;
    margin: auto;
}

.link_container .tel_wrap {
    margin-bottom: 40px;
    justify-content: center;
}

.link_container .tel_wrap .img_box {
    max-width: 45px;
    width: 30%;
    margin-right: 12px;
}

.link_container .tel_wrap .img_box img {
    display: block;
}

.link_container .tel_wrap .text_box .text {
    color: var(--blue05);
    font-weight: 700;
    transition: .2s;
}
.link_container .tel_wrap:hover .text_box .text {
    color: var(--blue08);
    opacity: 1;
}

.link_container .tel_wrap .text_box p {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
    text-align: center;
}

.link_container .tel_wrap .text_box a {
    font-size: 54px;
    line-height: 1;
}

.link_container .link_wrap {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 0;
}

.link_container .link_box .top_text {
    text-align: center;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.link_container .link_box .top_text i {
    display: block;
    width: 20px;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.link_container .link_box .top_text i.icon_left {
    margin-right: 15px;
}

.link_container .link_box .top_text i.icon_right {
    margin-left: 15px;
}

.link_container .link_box.quotation .top_text i.icon_left {
    background-image: url('../../../assets/img/lp/b_left.png');
}

.link_container .link_box.quotation .top_text i.icon_right {
    background-image: url('../../../assets/img/lp/b_right.png');
}

.link_container .link_box.simple_quote .top_text i.icon_left {
    background-image: url('../../../assets/img/lp/o_left.png');
}

.link_container .link_box.simple_quote .top_text i.icon_right {
    background-image: url('../../../assets/img/lp/o_right.png');
}

.link_container .link_box .link {
    padding: 15px 0;
    margin: 0 30px;
    border-radius: 10px;
    min-width: 400px;
    justify-content: center;
}

.link_container .link_box.quotation .link {
    background-color: var(--blue04);
    box-shadow: 3px 4px 0 var(--blue08);
}
.link_container .link_box.quotation .link:hover {
    background-color: var(--blue01);
    opacity: 1;
}

.link_container .link_box.simple_quote .link {
    background-color: var(--orange);
    box-shadow: 3px 4px 0 var(--orange02);
}
.link_container .link_box.simple_quote .link:hover {
    background-color: var(--orange03);
    opacity: 1;
}

.link_container .link_box .link .img_box {
    max-width: 55px;
    margin-right: 10px;
}

.link_container .link_box .link .img_box img {
    display: block;
}

.link_container .link_box .link .text {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.link_container .link_box .link .triangle {
    font-size: 28px;
    line-height: 1;
    margin-left: 10px;
}

@media (max-width:1024px) {
    .link_container .tel_wrap .img_box {
        max-width: 35px;
        margin-right: 10px;
    }

    .link_container .tel_wrap .text_box p {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .link_container .tel_wrap .text_box a {
        font-size: 45px;
    }

    .link_container .link_box .link .text {
        font-size: 22px;
    }

    .link_container .link_box .link {
        padding: 20px 0;
        margin: 0 22px;
        min-width: 310px;
    }

    .link_container .link_box .link .img_box {
        max-width: 45px;
    }
}

@media (max-width:768px) {
    .link_container .link_box .top_text {
        font-size: 18px;
    }

    .link_container .link_wrap {
        display: block;
    }

    .link_container .link_box .link {
        padding: 12px 0;
        max-width: 300px;
        min-width: none;
        margin: auto;
    }

    .link_container .link_box {
        margin: 20px 0;
    }
}

@media (max-width:480px) {
    .link_container .tel_wrap .text_box p {
        font-size: 15px;
    }

    .link_container .tel_wrap .text_box a {
        font-size: 38px;
    }

    .link_container .link_box .link .triangle {
        font-size: 18px;
    }

    body {
        padding-bottom: 116px;
    }
}