@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;
}

.child {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.manrope {
    font-family: "Manrope", sans-serif;
}

.seed {
    font-family: "LINE Seed JP", sans-serif;
}
/*終わり*/


/*<header class="header">*/
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding: 16px 40px 8px 40px;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    position: relative;
    z-index: 2;
}

.footer-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

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

.footer-link {
    font-size: 14px;
}
/*終わり*/


/*タブレット*/
@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;
    }
/*終わり*/ 


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