@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: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 64px 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;
}

.roboto {
    font-family: "Roboto", 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: 180px;
    width: 100%;
}
/*終わり*/


/*<div class="u-h1-title-wrap">*/
.u-h1-title-wrap {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
}

.u-h1-en {
    width: 100%;
    color: #F5F5F5;
    font-weight: 800;
    font-size: 56px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}

.u-h1 {
    position: relative;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    z-index: 2;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding: 16px 40px;
    background-color: #0C0C0C;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 100px;
    width: 100%;
}

.footer-link-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer-link {
    color: #fff;
    font-size: 14px;
}

.copyright {
    color: #fff;
    font-size: 12px;
    text-align: center;
}
/*終わり*/


/*<footer class="u-footer">*/
.u-footer {
    padding: 24px 5vw 16px 5vw;
    background-color: #222;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
/*終わり*/



/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    body {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }

    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .parent {
        padding: clamp(48px, 64vw / 5.99, 64px) 3vw;
    }
/*終わり*/ 


/*<header class="u-header">*/
    .u-header {
        padding: 0 3vw;
        height: clamp(80px, 100vw / 5.99, 100px);
    }

    .u-header-logo {
        max-width: clamp(140px, 180vw / 5.99, 180px);
    }
/*終わり*/


/*<div class="u-h1-title-wrap">*/
    .u-h1-title-wrap {
        margin-bottom: clamp(64px, 80vw / 5.99, 80px);
    }

    .u-h1-en {
        font-size: clamp(40px, 56vw / 5.99, 56px);
    }

    .u-h1 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<footer class="footer">*/
    .footer {
        padding: 16px 3vw;
    }

    .footer-logo {
        max-width: clamp(100px, 160vw / 5.99, 160px);
    }
/*終わり*/


/*<footer class="u-footer">*/
    .u-footer {
        padding: 24px 3vw 16px 3vw;
    }
/*終わり*/
}