@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: #002A3A;
    --color-text-a-visited: #474747;
    --color-text-red: #ED2621;
    --color-bg: #EFF4F4;
    --color-bg-white: #fff;
    --color-bg-dark: #403D3C;
    --color-bg-primary: #002A3A;
    --color-bg-primary-hover: #053649;
    --color-bg-secondary: #FF9E1B;
    --color-bg-secondary-hover: #fca22c;
    --color-bg-tertiary: #2E505D;
    --color-bg-success: #002A3A;
    --color-bg-success-hover: #053649;
    --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%);
    --color-bg-05: rgb(0 42 58 / .78);
    --color-bg-06: #DDE5ED;    
    --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 7 Free';
    --header-fixed: 72px;
    --brand: var(#002A3A);

}
/*============================================================*/
/* 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(30px, 2.3vw, 36px);}
.h3, h3 {font-size: clamp(18px, 3vw, 23px);  line-height: 1.6 !important; opacity: 0.8 !important; font-weight: normal !important;}
.h4, h4 {font-size: clamp(26px, 3vw, 32px);  line-height: 1.6 !important;}

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 30px;
    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: #fff; color: var(--brand);}
::marker { color: var(--brand); }



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

.bg-ring::after{
    content: '';
    display: block;
    height: 100%;
    width: 33.333333%;
    position: absolute;
    right: -20px;
    top: 0%;
    z-index: 3;
    background:url(../img/ring-image.png) right center / contain no-repeat;
}

/*--inview--*/

.inview {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.inview.view {
    opacity: 1;
    transform: translateY(0);
}

.inview.view-delay02 {
transition-delay: 0.2s;
}

.inview.view-delay04 {
transition-delay: 0.4s;
}

.mbr-block{
    display: none;
}

/*============================================================*/
/* 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{
    margin: 0 0 1rem;
    width: 50%;
    min-width: 160px;
}

.logo img{
    display: block;
    width: 42%;
     width: 350px;
}


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-section{
    background: none;
    height: 80dvh;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #002A3A;
}

.hero-section .container-fluid{
    position: relative;
    z-index: 5;
    height:  100%;
    padding: 0;
}

.hero-section .container-fluid > div{
    height: 100%;
}

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

.hero-content-main{
    width: 100%;
    padding: 30px 5% 30px 16%;
}

.hero-content-picture{
    height: 100%;
    position: relative;
}

.animation-bg{
    width: 46%;
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.animation-bg div{
    width: 100%;
    height: 100%;
}

.hero-content h1,
.hero-content h2,
.hero-content p{
    color: #fff!important;
}

.edge-l::before,
.edge-r::before{
    content: '';
    display: block;
    height: 100%;
    width: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.edge-l::before{
    z-index: 2;
    background: #002A3A;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    left: -2px;
}

.edge-r::before{
    z-index: 2;
    background: #002A3A;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    right: 0;
}

.w58p{
    width: 58%;
}

.movie-content{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.pattern-bg,
.list-1 li figure{
  background-image: linear-gradient(rgb(0 0 0 / .04) 1px, transparent 1px),linear-gradient(90deg, rgb(0 0 0 / .04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.list-1 li img{
    filter: drop-shadow(0 1px 2px rgb(0 0 0 /.28));
}

.bg-image-01{
    background: url(../img/image-51.png) right center /35% no-repeat;
}

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


/*---------------*/
.glass-lt{
    border-top: 1px solid rgb(255 255 255 /.25);
    border-left: 1px solid rgb(255 255 255 /.25);    
}

.glass-rb{
    border-right: 1px solid rgb(0 0 0 /.15);
    border-bottom: 1px solid rgb(0 0 0 /.15);  
}

/*--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 04--*/

.section-03 h2,
.section-03 h3{
    color: #fff;
}

.section-03 h4{
    margin: 0 0 2.4rem;
}

.section-03 h4 span{
    font-size: 65%;
    padding: 0 0 0 10px;
}

.section-03 .section-main-content{
    padding: 40px 50px;
    background: #fff;
    border-radius: 20px;
    margin: 0 0 3rem;
    box-shadow: 0 1px 10px 6px rgb(0 0 0 /.08);
    position: relative;
    overflow: hidden;
}

.section-03 .section-main-content-block{
    padding: 0 0 0 120px;
}

.section-03 .section-main-content > figure{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 0 20px 0 0;
    padding: 40px 20px;
    height: 100%;
    width: 120px;
    background: #002a3a;
}

.section-03 .section-main-content > figure img{
    display: block;
    height: 60px;
    width: 60px;
}

.section-03 .dl-01 dt::before{
    content: '\f00c';
    font-family: var(--font-3);
    display: inline-flex;
    height: 36px;
    width: 36px;
    font-weight: bold;
    color: #9898a0;
    font-size: 1.3rem;
}

.section-03 .dl-01 dd{
    margin: 0 0 1.8rem 44px;
}


.section-03 .image-area figure,
.section-03 .image-area iframe{
    max-width: 600px;
    display: block;
}

.section-03 .image-area figure{
    margin: 0 auto 1rem;
}

.section-03 .image-area iframe{
    margin: 0 auto;
}

.section-04 figure{
    height: 150px;
    width: 150px;
    margin: 0 auto;
    border-radius: 20px;
}

.section-04 .section-main-content{
    padding: 0 40px;
    width: 100%;
    border-radius: 20px;
    background: rgb(255 255 255/ .3);
    margin: 0 0 1rem;
    box-shadow: 0 1px 4px rgb(0 0 0 /.08);
}

/*--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-dl dt{
    position: relative;
    display: flex;
    font-size: clamp(18px, 3vw, 24px);
    padding: .5rem 0 .5rem 28px;
}

.msj-dl dd{
    padding: 0 0 1rem 28px;
}

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

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

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

.list-1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 40px;
    list-style: none;
    padding: 0;
}

.list-1 li{
    flex: 0 0 320px;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 2px 1px rgb(0 0 0 /.08);
}

.list-1 li dt{
    font-size: 1.38rem;
    line-height: 1.4;
    font-weight: bold;
    padding: 0 15px 0.8rem;
}

.list-1 li dd{
    padding: 0 15px;
    font-size: 1rem;
}

.list-1 li figure{
    background-color: #DDE5ED;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 140px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 1rem;
    box-shadow: 0 1px 10px rgb(0 0 0 / .06) inset;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
}

.list-1 li figure::before{
    content: '';
    height: 100%;
    width:  100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 2;
    background: rgb(255 255 255 / .25);
}


.list-1 li figure img{
    height: 100px;
    width: 100px;
    display: block;
    position: relative;
    z-index: 3;
}

/*--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-tertiary);
    color: var(--color-text-white);
    text-align: center;
    box-sizing: border-box;
}

/*--dl--*/

.dl-01 dt{
    font-size: 1.32rem;
}

.dl-01 dd{
    font-size: 1rem;
    margin: 0 0 1.6rem;
    opacity: .9;
}

.dl-02 dt{
    font-size: 1.64rem;
}

.dl-02 dd{
    font-size: 1.08rem;
    margin: 0;
    opacity: .9;
}

/*--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;
    padding:　1rem 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;
}


.ta-btn > span{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ta-btn i {
    display: block;
    margin: 0 15px 0 0;
    font-size: 2.7rem;
}

.ta-btn i + strong{
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 1.5rem;
}

.ta-btn i + strong span{
    font-size: 75%;
    display: block;
}

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

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

}

/*--xl-1200px未満--*/
@media (max-width: 1199.98px) {

    .mbr{
        display: none;
    }

    .hero-section {
        height: auto;
    }

    .w58p.hero-content{
        width: 100% !important;
    }

    .hero-content-main {
        padding: 50px 7.8%;
    }

    .logo {
        width: 240px;
        display: block;
        margin: 1rem auto;
    }

    .hero-content + div{
        height: 250px;
    }

    .list-1 {
        gap: 25px 25px;
    }

    .list-1 li{
        flex: 0 0 45%;
    }

    .edge-l::before,
    .edge-r::before{
        width: 100%;
        height: 40px;
        top: -1px;
    }

    .dl-01{
        margin: 0 0 2.6rem;
    }
}

/*--lg-992px未満--*/
@media (max-width: 991.98px) {
    .list-1 {
        gap: 25px 25px;
        flex: 0 0 400px;
    }

    .section-03 .section-main-content-block{
        padding: 100px 0 0;
    }

    .section-03 .section-main-content > figure {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: start;
        margin: 0 20px 0 0;
        padding: 20px 20px;
        height: 100px;
        width: 100%;
        border-top: 1px solid rgb(255 255 255 /.3);
        border-left: 1px solid rgb(255 255 255 /.3);
    }

    .dl-02 dt {
        font-size: 1.36rem;
        padding: .5rem 0;
    }

    .bg-image-01{
        background: none; 
    }

    .bg-image-01 figure{
        max-width: 400px;
        margin: 0 auto;
    }
}

/*--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;
    }

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

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

    .list-1 li {
        flex: 0 0 100%;
    }

    .logo {
        width: 160px;
    }

}

/*--sm-576px未満--*/
@media (max-width: 575.98px) {
    h2 {
        font-size: 1.52rem !important;   
    }

    .section-03 .section-main-content {
        padding: 20px 30px;
    }
    
    .ta-btn > span{
        flex-direction: column;
        justify-content: center;
    }

    .ta-btn i{
        display: flex;
        height: 50px;
        align-items: center;
        margin: 0;
    }

    .ta-btn i + strong {
        font-size: 1.3rem;
        text-align: center;
    }

    .mbr-block{
        display: inline-block;
    }
}

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

}