@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: hidden;
}

.parent {
    padding: 0 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}
/*終わり*/


/*<header class="header">*/
/*終わり*/


/*下層ページ共通*/
.under-body {
    background-color: #2e126e;
    color: #ddd;
}

.under {
    padding: 80px 5vw;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.under-h1 {
    text-align: center;
    font-size: 40px;
    margin: 64px 0;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding: 24px 5vw;
}

.footer-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer-ul a {
    border-bottom: solid 1px #fff;
    font-size: 16px;
}

.copyright {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  


/*下層ページ共通*/
    .under-h1 {
        font-size: 32px;
    }
/*終わり*/
  

/*<header class="header">*/
/*終わり*/ 


/*<footer class="footer">*/
    .footer-ul a {
        font-size: 14px;
    }
/*終わり*/

}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
/*終わり*/  


/*下層ページ共通*/
    .under {
        padding: 40px 5vw;
        font-size: 16px;
    }

    .breadcrumb {
        font-size: 14px;
    }    

    .under-h1 {
        font-size: 24px;
        margin: 48px 0;
    }
/*終わり*/


/*<footer class="footer">*/
    .footer-ul {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }

    .footer-ul li {
        width: 50%;
        margin-top: 4px;
    }

    .footer-ul a {
        font-size: 12px;
    }

    .copyright {
        font-size: 10px;
    }
/*終わり*/

}