/* style.css */
@charset "UTF-8";

/* Google FontsからInterフォントを読み込み */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    font-size: 1.25rem;
}

section {
    padding: 1.5rem 0 1rem;
}

b {
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:hover {
    opacity: 0.6;
}

a,
a:hover,
a:visited,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

button {
    outline: none;
    text-decoration: none;
}

button:focus,
button:active {
    outline: none;
    text-decoration: none;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: normal;
    text-align: center;
    padding-bottom: 1rem;
}

@media (min-width: 900px) {
    h3 {
        font-size: 2.5rem;
    }
}

.wrapper {
    width: 100%;
    max-width: 832px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dispPC {
    display: none;
}

.dispSP {
    display: block;
}

@media (min-width: 900px) {
    .dispSP {
        display: none;
    }

    .dispPC {
        display: block;
    }
}

/* ========================
   Text Color
======================== */

.color-yellow {
    color: #FFDC38;
}

.color-orange {
    color: #F54D03;
}

.color-red {
    color: #CB1400;
}

.line-yellow {
    background: #FFD502;
}

/* ========================
   Header
======================== */
.header {
    background-color: #fff;
    width: 100%;
}

.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
}

.header__logo {
    width: 20rem;
    height: 2rem;
}

.header__catch {
    width: 5.1rem;
    height: auto;
}

/* ========================
   Footer
======================== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 0;
    text-align: center;
    color: #FFF;
    text-align: center;
    font-size: 0.625rem;
}

.footer__list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}