@charset "UTF-8";
@import url("https://use.typekit.net/ava1hih.css");
/*-----------------------------*/
/*CSS関数*/
/*-----------------------------*/
:root {
    --fontfamily_jp: "Noto Sans JP", sans-serif;
    --fontfamily_en: "futura-pt", sans-serif;
    --main_color: #316eb3;
    --support_color: #235081;
    --accent_color: #000;
    --default_font-color: #000;
}
/*-----------------------------*/
/*　全体*/
/*-----------------------------*/
html {
    height: 100%;
}

body {
    font-family: var(--fontfamily_jp);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.11vw, 16px);
    line-height: 1.5em;
    color: var(--default_font-color);
    letter-spacing: .08em;
    font-feature-settings: "palt";
    max-width: 2560px;
    margin: 0 auto;
    counter-reset: number 0;
}

/* フォント設定 */
.hind {
    font-family: "Hind", sans-serif;
    font-weight: 500;
    font-style: normal;
}

:root {
    --fontfamily01:"Noto Sans JP", serif;
    --fontfamily02: "Hind", sans-serif;
    --default-lineheight: 1.8em;
}

img {
    width: 100%;
    display: block;
}
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
a {
    display: block;
    width: fit-content;
    color: #000000;
    transition: .3s;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    letter-spacing: .1em;
}
@media (hover: hover) and (pointer: fine) {
    a:hover, a:focus {
        opacity: .7;
        transition: .2s;
        cursor: pointer;
    }
}

/*---------------------------------
       共通設定
-----------------------------------*/

.w_style01{
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
}
.w_style02{
    width: 85%;
    margin: 0 auto;
    max-width: 1400px;
}

.w-style-default{
    max-width: calc(12% + 1024px);
    margin: 0px auto;
    padding: 0px 6%;
}

.w-style-min{
    max-width: calc(12% + 860px);
    margin: 0px auto;
    padding: 0px 6%;
}

@media (max-width: 430px) {
    .w_style01 {
        width: 100%;
        margin: 0 auto;
        max-width: 1300px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .w_style02{
        width: 88%;
        margin: 0 auto;
        max-width: 880px;
    }
}
main {
    margin-top: 65px;
}

/*-------------------------------------*/
/*　　　 　　　　ボタン　　　　　　　*/
/*-------------------------------------*/
.btn_box_contact {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.contact {
    width: 100%;
    max-width: 240px;
}
.contact a {
    background-color: #F4BB03;
    font-size: clamp(16px, 4vw, 18px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .8em 1em;
    border-radius: 40px;
    width: 100%;
    border: 1px solid #F4BB03;
    transition: .2s;
    white-space: nowrap;
}
.contact a::before {
    content: "";
    width: 1.3em;
    height: 1em;
    display: inline-block;
    background-image: url("../img/common/i_mail.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: .3em;
    margin-top: .4em;
    transition: .2s;
}
.contact a:hover::before {
    background-image: url("../img/common/i_mail_hover.png");
    transition: .2s;
}
.tel {
    display: flex;
    gap: 5px;
}
.tel a {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 32px;
    font-weight: 500;
    min-width: 185px;
    transition: .2s;
    font-family: var(--fontfamily_en);
    letter-spacing: 0;
    position: relative;
    padding-left: 28px;
}
.tel a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: auto;
    aspect-ratio: 1/1;
    background: url("../img/common/i_tel.png") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    top: 2px;
}
.tel a span {
    font-size: 13px;
    margin-top: 4px;
}

@media (max-width: 920px) {
    .contact a {
        font-size: 14px;
    }
    .tel a {
        font-size: 25px;
        padding-left: 21px;
    }
    .tel a::before {
        width: 16px;
    }
    .tel a span {
        font-size: 12px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .contact a:hover {
        background-color: #fff;
        color: #F4BB03;
        opacity: 1;
        transition: .2s;
    }
    .tel a:hover {
        opacity: .7;
        transition: .2s;
    }
}
/*-------------------------------------*/
/*　　　 　　　　表示非表示　　　　　　　*/
/*-------------------------------------*/
.visible_768 {
    display: none;
}
.none_768 {
    display: block;
}
@media (max-width: 768px) {
    .visible_768 {
        display: block;
    }
    .none_768 {
        display: none;
    }
}
.visible_430 {
    display: none;
}
@media (max-width: 430px) {
    .visible_430 {
        display: block;
    }
    .none_430 {
        display: none;
    }
}




/*-----------------------------*/
/*　ヘッダー*/
/*-----------------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: top 0.3s ease;
    z-index: 1000;
    background-color: #fff;
    height: 65px;
}
header .logo img {
    width: auto;
    height: 40px;
}
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
nav a {
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    transition: .2s;
}
@media (hover: hover) and (pointer: fine) {
    nav a:hover {
        opacity: 1;
        color: var(--support_color);
        transition: .2s;
    }
}
/* お問い合わせボタン */
nav .contact {
    max-width: 130px;
}
nav .contact a {
    font-size: 15px;
    padding: .4em 1em;
}
nav .tel a {
    color: var(--support_color);
    font-size: 23px;
}
nav .tel a::before {
    background: url(../img/common/i_tel03.png) center no-repeat;
    background-size: contain;
}
nav .tel a span {
    font-size: 12px;
    margin-top: 0;
}
@media (max-width: 1000px) {
    nav .tel a::before {
        background: url(../img/common/i_tel.png) center no-repeat;
        background-size: contain;
    }
}
/* ハンバーガーボタン */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 10px;
    height: 22px;
    justify-content: space-between;
    z-index: 1100;
}
.btn-trigger {
    position: relative;
    width: 25px;
    height: 18px;
    cursor: pointer;
}
.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}
.btn-trigger, .btn-trigger span {
    transition: all .5s;
    box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
    top: 0;
}
.btn-trigger span:nth-of-type(2) {
    top: 8px;
}
.btn-trigger span:nth-of-type(3) {
    bottom: 0;
}
/* ハンバーガーボタン動き */
.btn-trigger.open span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
.btn-trigger.open span:nth-of-type(2) {
    opacity: 0;
}
.btn-trigger.open span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
body.no-scroll {
    overflow: hidden; /* ← スクロール禁止 */
}
.block_1000_contact {
    display: none;
}

/*1000pxでハンバーガーボタンに切り替え*/
@media (max-width: 1000px) {
    nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px; /* 初期は画面外 */
        width: 250px;
        height: 100vh;
        background: var(--main_color);
        padding: 60px 20px 10px;
        gap: 15px;
        transition: right 0.3s ease;
    }
    nav.open {
        right: 0; /* スライドイン */
    }
    .hamburger {
        display: flex;
    }
    nav a {
        color: #fff;
        border-bottom: 1px solid #e1f9ff;
        display: block;
        width: 100%;
        padding-bottom: 15px;
    }
    nav .contact {
        margin-top: auto;
        max-width: unset;
    }
    nav .contact a {
        padding: .6em 1em;
    }
    nav .tel a {
        color: #fff;
        align-items: center;
        border-bottom: unset;
    }
    .block_1000_contact {
        display: block;
    }

    /*ヘッダー(白いバー)にあるお問い合わせボタン*/
    .block_1000_contact {
        margin-left: auto;
        margin-right: 15px;
        max-width: 120px;
    }
    .block_1000_contact a {
        padding: .4em 1em;
        font-size: 15px;
    }
}

@media (max-width: 430px) {
    /*ヘッダー(白いバー)にあるお問い合わせボタン*/
    .block_1000_contact {
        margin-left: auto;
        max-width: 100px;
    }
    .block_1000_contact a {
        padding: .3em .5em;
        font-size: 13px;
    }
}

/*-----------------------------*/
/*　フッダー*/
/*-----------------------------*/
footer .cta {
    background-image: url("../img/common/cta_bg.jpg");
    width: 100%;
    background-size: cover;
    position: relative;
    padding: 40px 0;
}

footer .cta .inner {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
}
footer .cta .text_box {
    color: #fff;
    width: 100%;
    text-align: center;
}
footer .cta h3 {
    font-size: clamp(21px, 3.5vw, 32px);
    line-height: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
}
footer .cta p {
    margin: 20px 0;
    line-height: 1.8em;
}
footer .cta .img_box {
    width: 35%;
    display: none;
}
footer .foot {
    padding: 50px 0 20px;
}
footer .foot .logo img {
    max-width: 160px;
    width: 80%;
}
footer .foot .box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 20px;
}
footer .foot .sitemap {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
    align-content: flex-start;
}
footer .foot .sitemap a {
    transition: .2s;
    font-size: 15px;
}
@media (hover: hover) and (pointer: fine) {
    footer .foot .sitemap a:hover {
        opacity: 1;
        color: var(--support_color);
        transition: .2s;
    }
}
footer .foot .link_box {
    border-left: 1px solid #DCDDDB;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
footer .foot .link_box a {
    font-size: 14px;
}
footer .foot .link_box a::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("../img/common/i_link.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
}
footer .foot .box2 {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
footer .foot .privacy_link {
    display: flex;
    align-items: flex-end;
    gap: 3%;
    font-size: 12px;
}
footer .foot .privacy_link a {
    color: #AAAAAA;
    white-space: nowrap;
}
footer .foot .privacy_link a + a {
    border-left: 1px solid #DCDDDB;
    padding-left: 3%;
}
footer .foot .privacy_link img {
    width: 60px;
}
footer .foot .copy {
    font-size: 12px;
    color: #AAAAAA;
}

@media (max-width: 768px) {
    footer .cta .inner {
        flex-direction: column-reverse;
        align-items: center;
    }
    footer .cta .text_box {
        width: 100%;
    }
    footer .cta .img_box {
        width: 200px;
    }
}
@media (max-width: 480px) {
    footer .cta .text_box {
        text-align: left;
    }
}
@media (max-width: 430px) {
    footer .foot .privacy_link {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .foot .privacy_link a + a {
        border-left: unset;
        padding-left: 0;
    }
    footer .foot .privacy_link img {
        margin-bottom: 10px;
    }
}
/*---------------------------------------------------------*/
/*　下層共通*/
/*----------------------------------------------------------*/
.low_header {
    padding: 23px 0;
    margin-bottom: 70px;
    background-image: url("../img/common/low_header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.low_header h2 {
    font-weight: 500;
    color: #fff;
    font-size: clamp(18px, 3.5vw, 24px);
}
@media (max-width: 768px) {
    .low_header {
        margin-bottom: 50px;
    }
}
@media (max-width: 430px) {
    .low_header {
        margin-bottom: 40px;
    }
}