@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #293A66;
    letter-spacing: 0.05em;
    font-family: "Zen Kaku Gothic New", sans-serif;    
}

img {
    max-width: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 80px 40px;
}

.parent-02 {
    padding: 0 5vw;
}

.child {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.child-02 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.jost {
    font-family: "Jost", sans-serif;
}
/*終わり*/


/*<header class="u-header">*/
.u-header {
    padding: 0 40px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}

.u-header-logo-btn {
    display: inline-block;
}

.u-header-logo {
    display: block;
    max-width: 120px;
    width: 100%;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding-bottom: 16px;
    background-image: url(../img/footer_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.footer-logo {
    max-width: 160px;
    width: 100%;
}

.copyright {
    font-size: 14px;
}
/*終わり*/


/*<footer class="u-footer">*/
.u-footer {
    padding: 16px 5vw;
    background-image: url(../img/footer_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
/*終わり*/  
}