@charset "UTF-8";

:root {
    --color-text-h: #333;
    --color-text-p: #474747;
    --color-text-p-secondary: #808080;
    --color-text-white: #fff;
    --color-text-a: #474747;
    --color-text-a-hover: #F08300;
    --color-text-a-visited: #474747;
    --color-text-red: #ED2621;
    --color-bg: #EFF4F4;
    --color-bg-white: #fff;
    --color-bg-dark: #403D3C;
    --color-bg-primary: #F08300;
    --color-bg-primary-hover: #fc910e;
    --color-bg-secondary: #00457C;
    --color-bg-secondary-hover: #4C7094;
    --color-bg-tertiary: rgb(212 212 212 / 1);
    --color-bg-success: #F08300;
    --color-bg-success-hover: #fc910e;
    --color-bg-danger: #ED2621;
    --color-bg-danger-hover: #FF241E;
    --color-bg-01: #EFEFEF;
    --color-bg-02: #F6F6F6;
    --color-bg-03: linear-gradient(180deg,rgb(1 30 72/ .06) 0%, rgb(0 92 154/ .12) 100%);
    --color-bg-04: linear-gradient(180deg,rgb(1 30 72/ 1) 0%, rgb(0 92 154/ 1) 100%);
    --shadow-01: 0 0 1px rgb(60 64 67/ 0.1) , 0 0 2px rgb(60 64 67 / 0.1) ;
    --shadow-02: 0 1px 2px rgb(60 64 67/0.08), 0 1px 3px rgb(60 64 67 / 0.08);
    --shadow-03: 0 2px 3px rgb(60 64 67 /0.05), 0 2px 4px rgb(60 64 67 / 0.05) ;
    --shadow-white01:  0 0 12px rgb(255 255 255 / 1), 0 0 24px rgb(255 255 255 / 1);
    --font-1: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    --font-2: 'Noto Sans JP', sans-serif;
    /*--font-2: "YuGothic","Yu Gothic Medium","Yu Gothic","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;*/
    --font-3: 'Font Awesome 6 Free';
    --header-fixed: 72px;
    --brand: var(#F08300);

}
/*============================================================*/
/* common */
/*============================================================*/

input[type="button"],
input[type="submit"],
button{
    -webkit-appearance: none;
}

html{
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
    scrollbar-color: var(--brand) Canvas;
}

body{
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    font-size: 1.08rem;
    font-family: var(--font-2);
    color: var(--color-text-p);
    background: var(--color-bg-white);
    position: relative;
}

.h1, h1,.h2, h2,.h3, h3,.h4, h4,.h5, h5,.h6, h6{
    font-feature-settings: "palt";
    font-weight: 600;
    padding: .5rem 0;
    color: var(--color-text-h);
}

.h1, h1 {font-size: clamp(32px, 3vw, 52px); font-weight: bold;}
.h2, h2 {font-size: clamp(28px, 3vw, 36px);}
.h3, h3 {font-size: clamp(18px, 3vw, 24px); }
.h4, h4 {font-size: clamp(17px, 3vw, 19px); }

p,
li{
    color: var(--color-text-p);
    word-break: break-all;
    line-height: 1.6;
}

.container,
.container-fluid{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

ul{
    list-style: none;
    padding: 0;
}

img{
    max-width: 100%;
    height: auto;
    box-sizing: content-box;
}

a,
a:link,
a:visited,
a:active{
    color: var(--color-text-a);
    text-decoration: none;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--color-bg-primary) !important;
}

/*--text-link--*/

.text-link{
    text-decoration:underline !important;
    color:var(--color-text-a);
}

.text-link:visited{
    color: var(--color-text-a-visited);
}

/*--text-red--*/

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

/*--button--*/

.btn,
.btn:focus {
    outline: none !important;
    font-weight: normal;
    display: block;
    text-align: center;
    border-radius: 4px;
}

.btn-text {
    --bs-btn-border-color: none;
}

.btn-lg {
    --bs-btn-padding-y: 0.65rem;
    --bs-btn-padding-x: 1.5rem;
    font-size: 1.05rem;
    font-weight: bold;
}

.btn-xl{
    padding: 2rem 32px;
    font-weight: bold;
    font-size: 1.26rem;
}

.btn-block{
    width: 100%;
}

.btn,
.btn:active,
.btn:focus-visible{
    color: var(--color-text-a);
}

.btn:hover{
    color: var(--color-text-a-hover);
}

.btn-white,
.btn-white:hover,
.btn-white:active,
.btn-white:focus-visible{
    background: var(--color-bg-white) !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus-visible{
    background: var(--color-bg-primary) !important;
    border-color: var(--color-bg-primary) !important;
    color: var(--color-text-white) !important;
}

.btn-primary:hover {
    background: var(--color-bg-primary-hover) !important;
    border-color: var(--color-bg-primary) !important;
    color: var(--color-text-white) !important;
}

.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible{
    background: var(--color-bg-white) !important;
    border-color: var(--color-text-p-secondary) !important;
    color: var(--color-text-p-secondary) !important;
}

.btn-outline-primary:hover {
    background: var(--color-bg-white) !important;
    border-color: var(--color-bg-primary) !important;
    color: var(--color-bg-primary) !important;
}

.btn-outline-primary:active{
    border-color: var(--color-bg-primary) !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus-visible{
    background: var(--color-bg-secondary) !important;
    border-color: var(--color-bg-secondary) !important;
    color: var(--color-text-white) !important;
}

.btn-secondary:hover {
    background: var(--color-bg-secondary-hover) !important;
    border-color: var(--color-bg-secondary) !important;
    color: var(--color-text-white) !important;
}

/*--brand--*/

:root { accent-color: var(--brand); }
:focus-visible { outline-color: var(--brand); }
::selection { background-color: var(--brand); }
::marker { color: var(--brand); }


.bg-02{
    background: var(--color-bg-02);
}
.bg-03{
    background: var(--color-bg-03);
}

/*============================================================*/
/* header */
/*============================================================*/

header{
    width: 100%;
    height: 80px;
    padding : 0;
    background:  var(--color-bg-03);
    box-shadow: var(--shadow-03);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

header .container-fluid{
    padding-top: 0;
    padding-bottom: 0;
}

header .container-fluid,
header .row{
    height: 100%;
}

.logo,
.logo-mma{
    margin: 0;
    display: block;
}

.logo{ max-width: 100px;}
.logo-mma{max-width: 200px;}


header figure{
    margin: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

/*--header-menu--*/

.header-menu{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu ul{
    display: flex;
    align-items: center;
}

/*============================================================*/
/* footer */
/*============================================================*/

footer{
    background: #242937;
}

.head-back{
    position: fixed;
    bottom: 20px;
    right: 20px;
}

footer small{
    display: block;
    width: 100%;
    color: #92949b;
    text-align: center;
    padding: 1rem 15px;
    border-top: 1px solid #92949b;
}

footer .container-fluid{
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-logo{
    width: 207px;
    display: block;
}

footer dl{
    color: #92949b;
    border-left: 1px solid #92949b;
    padding: 0 0 0 30px;
}

footer dl dt{
    color: #92949b;
    margin: 0 0 .2rem;
    font-size: 1.1rem;
}

footer dl dd{
    color: #92949b;
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.45;
}

footer dl ul{
    display: flex;
}

footer dl li{
    color: #92949b;
    line-height: 1.45;
    padding: 0 1rem 0 0;
}

/*============================================================*/
/* contact (form.cssの設定もセット)*/
/*============================================================*/

.btn-group{
    display: flex;
    justify-content: center;
    margin: 0;
}

.btnInq a {
    display: block;
    text-align: center;
    width: 480px;
    padding: 19px 0 20px;
    margin: 0 40px 0 0;
    border-radius: 3px;
    background-color: #036;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.btnInq a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 16px;
    margin-right: 10px;
    background: url(../img/icon_mail.png) no-repeat 0 0 / cover;
}

.btnInq a span {
    display: block;
    font-size: 60%;
    line-height: 1.45;
}

.btnInq a:hover {
    text-decoration: none;
    opacity: .7;
}

.btnPp a {
    width: 168px;
    height: 100%;
    padding-top: 9px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: inline-block;
    text-align: center;
    color: #333;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: bold;
}

.btnPp a img {
    width: 33px;
    height: auto;
    margin-bottom: 5px;
}

/*============================================================*/
/* main */
/*============================================================*/

main section{
    padding-top: 80px;
    padding-bottom: 80px;
}

main .section-btn-group{
    padding-top: 27px;
    padding-bottom: 27px;
}


/*--hero--*/

.hero-content{
    padding: 0;
    position: relative;
    overflow: hidden;
    /*background: var(--color-bg-04);
    background: url(../img/hm-bg.png) left top /cover no-repeat;
    height: 78vh;
    min-height: 760px;*/
}

.hero-content .container-fluid,
.section-00{
    padding: 0 !important;
    position: relative;
}

.hero-main{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60dvh;
    display: flex;
    align-items: center;
}

.hero-image{
    width: 100%;
    margin: 0;
}

.hero-image img{
    display: block;
    margin: 0 auto;
}

.hero-main figure{
    width: 360px;
}

/*--fixed-area--*/
.fixed-area{
    position: fixed;
    bottom: 80px;
    right: 0;
    width: 200px;
}

/*--section-00--*/

.section-00{
    margin: -5dvh 0 0;
}

.section-00 figure{
    display: block;
    text-align: right
}

.section-00 figure img{
    width: 180px;
}

.section-00 h1{
    text-align: right;
}

.section-00 h1 + p{
    font-size: 124%;
}

/*--section-03--*/

.section-03 .section-main{
    display: flex;
    justify-content: center;
    width: 100%;
}

/*--section-04--*/

.section-04 .py-4{
    border-top: 1px solid rgb(60 69 84 /.25);
}

/*--section-05--*/

.section-05 h3 span{
    padding: 0 15px 0 0;
}

.section-05 h3 + p{
    margin: 0 0 2.6rem;
    padding: 0 0 0 74px;
}

.msj-h3 h3{
    position: relative;
    padding-left: 28px;
    display: flex;
}

.msj-h3 h3::before,
.msj-h3 h3::after{
    content: '';
    height: 15px;
    width: 8px;
    background: #0076B0;
    position: absolute;
    top: 10px;
    left: 0;
}

.msj-h3 h3::before{
    background: #0076B0;
    top: 10px;
    left: 0;
}

.msj-h3 h3::after{
    background: #3EB8EB;
    top: 25px;
    left: 0;
}


/*--grid-list-2--*/

.grid-area-2{
    display: grid;
    grid-template-columns: 1fr .7fr 1fr;
    padding: 40px;
    background-image: radial-gradient(#b6b4b4 20%, transparent 0), radial-gradient(#8b8a8a 20%, transparent 0);
    background-position: 0 0, 3px 3px;
    background-size: 3px 3px;
    gap: 0 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.grid-area-2::before{
    content: '';
    position: absolute;
    height: 410px;
    width: 410px;
    display: block;
    z-index: 1;
    border-radius: 50%;
    border: 3px solid rgb(0 118 176 / .32);
    background: rgb(0 118 176 / .04);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}


.grid-area-2 > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.grid-area-2-1{
    order: 2;
}

.grid-area-2-1 figure{
    width: 90%;
    margin: 0;
}

.grid-area-2-2{
    order: 1;

}

.grid-area-2-3{
    order: 3;
}

/*--grid-list-2--*/

.grid-list-2{
    margin: 0;
    width: 100%;
}

.grid-list-2 li{
    width: 100%;
    height: 74px;
}

.grid-list-2 li div{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    background: #fff;
    border: 1px solid rgb(0 118 176 / .3);
    padding: 0 20px 0 0;
}

.grid-list-2 li:not(:last-child){
    margin-bottom: 8px;
}

.grid-list-2 li figure{
    margin: 0 20px 0 0 !important;
    flex: 0 0 84px;
    padding: 10px 16px;
    background: rgb(62 184 235 / .25);
}

.grid-list-2 li figure img{
    height: 52px;
    width: 52px;
    display: block;
}

.grid-area-2-2 li:first-child div{margin-left: 40px;}
.grid-area-2-2 li:nth-child(2n) div{margin-left: 15px;}
.grid-area-2-2 li:nth-child(3n) div{}
.grid-area-2-2 li:nth-child(4n) div{margin-left: 20px;}
.grid-area-2-2 li:last-child div{margin-left: 40px;}


.grid-area-2-3 li:first-child div{margin-left: -40px;}
.grid-area-2-3 li:nth-child(2n) div{margin-left: -15px;}
.grid-area-2-3 li:nth-child(3n) div{}
.grid-area-2-3 li:nth-child(4n) div{margin-left: -15px;}
.grid-area-2-3 li:last-child div{margin-left: -40px;}


/*--number-list-1--*/

.number-list-1 {
    list-style: none; /* デフォルトのマーカーを消す */
    padding: 0;
    counter-reset: item-counter; /* カウンターのリセット */
    display: flex;
    flex-direction: column;
}

.number-list-1 li {
    position: relative;
    padding: 0 0 0 80px;
    margin: 0 0 1rem;
    counter-increment: item-counter; /* 各liでカウンターを+1 */
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    font-size: 1.262rem;
}

.number-list-1 li::before {
    content: counter(item-counter);
    position: absolute;
    font-weight: normal;
    font-size: 1.58rem;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-white);
    text-align: center;
    box-sizing: border-box;
}

/*--cube-list-1--*/

.cube-list-1 li {
    padding: 0 0 0 24px;
    position: relative;
}

.cube-list-1 li::before {
    position: absolute;
    content: '';
    height: 12px;
    width: 12px;
    display: block;
    top: 8px;
    left: 0;
    background: var(--color-bg-primary);
}

/*--tel-info--*/

.tel-info{
    padding: 2rem 40px;
    background: rgb(0 0 0 /.06);    
}

.tel-info h4{
    background: #3C4554;
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.tel-info-single{
    border-radius: 2px;
    padding: 15px 20px;
    background: rgb(255 255 255 /.71); 
    height: 100%;
}

.tel-info dl{
    margin: 0;
}

.tel-info dl dt,
.tel-info dl dd{
    text-align: center;
    font-size: 1rem;
}

.tel-info dl dt{
    padding: .5rem 0 0;
}

.tel-info dl dt:not(:first-child){
    border-top: 1px solid rgb(0 0 0 /.2);
}

.tel-info dl dd{
    text-align: center;
    font-size: 1rem;
}


/*===============menu-area==================*/

.menu-area{
    height: calc(100dvh - var(--header-fixed));
    transition: .1s all ease;
    position: relative;
    background: var(--color-bg-tertiary);
    flex: 0 0 0;
    padding: 0;
    box-shadow: 0 1px 2px rgb(0 0 0 / .34);
    z-index: 50;
    position: sticky;
    top: var(--header-fixed);
}

/*--menu-area-switch--*/

.menu-area-switch{
    position: absolute;
    left: 0px;
    top: 10px;
    transition: .1s all ease;
    z-index: 49;
    display: none;
    transition: .1s all linear;
}

.menu-area-switch:hover{
    left: -32px;
}

.menu-area-switch.menu-area-switch-active{
    left: -36px;
    display: block;
}

.menu-area-switch.menu-area-switch-active:hover{
    left: -32px;
}

.menu-area-switch label{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    border-radius: 6px 0 0 6px;
    background: var(--color-bg-tertiary);
    cursor: pointer;
    box-shadow: -1px 0 2px rgb(0 0 0 / .14);
}

.menu-area-switch input[type=checkbox]{
    display: none;
}

.menu-area:has( input[type=checkbox]:checked) nav{
    padding: 0 20px 0 20px;
    display: block;
}

.menu-area-switch i{
    transition: .1s all linear;
    color: var(--color-text-white);
}

.menu-area-switch i:has( + input[type=checkbox]:checked){
    transform: rotate(-180deg);
}


.mbr{
    display: none;
}

/*============================================================*/
/* responsive PC-first */
/*============================================================*/

/*--xl-1800px未満--*/
@media (max-width: 1799.98px) {

}

/*--xl-1200px未満--*/
@media (max-width: 1199.98px) {
    .section-00 {
        margin: -1dvh 0 0;
    }

    .grid-area-2{
        grid-template-columns: 1fr 1fr;
        gap: 1rem 30px;
    }

    .grid-area-2 > div {
        align-items: start;
    }

    .grid-area-2-1 {
        order: 1;
	    grid-column: 1 / 3;
    }

    .grid-area-2-2 {
        order: 2;
    }

    .grid-area-2-3 {
        order: 3;
    }

    .grid-area-2-1 figure {
        width: 260px;
    }

    .grid-area-2-2 li div{margin-left: 0 !important;}
    .grid-area-2-3 li div{margin-left: 0 !important;}

    .grid-area-2::before{
        display: none;
    }
}

/*--lg-992px未満--*/
@media (max-width: 991.98px) {

}

/*--md-768px未満--*/
@media (max-width: 767.98px) {
    .footer-logo {
        margin: 0 auto;
    }

    footer dl {
        color: #92949b;
        border-left: none;
        padding: 0;
    }

    footer dl dt,
    footer dl dd{
        text-align: center;
    }

    footer dl ul {
        justify-content: center;
    }

    .btn-group{
        flex-direction: column;
    }

    .btn-group li{
        display: flex;
        justify-content: center;
    }

    .btnInq a {
        width: 240px;
        padding: 10px 0;
        margin: 0 0 1.4rem;
        font-size: 1.1rem;
    }

    .btnPp a {
        width: 240px;
        padding-top: 0;
    }

    /*--main--*/

    main section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-00 {
        margin: 4dvh 0 0;
    }

    .section-00 figure,
    .section-00 h1{
        text-align: left;
    } 

    .grid-area-2 {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grid-area-2-1 {
        order: 1;
        grid-column: 1 / 1;
    }

    .grid-list-2 li figure img{
        height: 42px;
        width: 42px;
    }

    .grid-list-2 li figure {
        flex: 0 0 70px;
        padding: 14px;
    }

    .grid-list-2{
        grid-template-columns: 1fr;
        gap: 1rem 30px;
    }

    .number-list-2 li {
        padding: 0 0 0 56px;
    }

    .number-list-2 li:not(:last-child) {
        margin:0 0 2.4rem;
    }

    .number-list-2 li::before{
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 1.14rem;
    }

    .msj-h3 h3::before {
        top: 4px;
    }

    .msj-h3 h3::after{
        top: 19px;
    }

    .tel-info {
        padding: 1rem 20px;
        background: rgb(0 0 0 / .06);
    }

    .contact-btn a i{
        display: none;
    }

    .mbr{
     display: block;
    } 
}

/*--sm-576px未満--*/
@media (max-width: 575.98px) {

}

/*--380px未満--*/
@media (max-width: 379.98px) {

}