@charset "utf-8";

/**
 * ランディングページの共通スタイル
 * /css/landing_page.css
 */

body {
    margin: 0px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    font-weight: 700;
}

h1 {
    font-size: 2.8125rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    h6 {
        font-size: 1rem;
    }
}

/* ボックス */
.multi-box {
    background: #dbdbdb;
    padding: 1rem 1.5rem;
    margin: 15px auto;
}
.multi-box p {
    margin: 0px;
}

/* 引用 */
.quote-box {
    background: #eaecef;
    padding: 1rem 1.5rem;
    border-left: 4px solid #d4d8de;
    margin: 15px auto;
}
.quote-box p {
    margin: 0px;
}

/* カード */
.card {
    margin: 15px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 5px 0px rgba(175, 175, 175, 0.5);
}
.card-title {
    border-bottom: 2px solid #dbdbdb;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

/* 表 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.table {
    background: #fcfcfc;
    width: 100%;
    margin: 30px auto;
}
.table th,
.table td {
    white-space: normal;
    padding: 4px 5px;
    border: solid 1px #d4d8de;
}
.table th {
    background-color: #eaecef;
}
.table thead th {
    border-bottom: 2px solid #d4d8de;
}

@media (max-width: 480px) {
    table.table th,
    table.table td {
        display: flex;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ボタン */
.my-button {
    font-size: 24px;
    padding: 8px;
    width: 100%;
    color: #ffffff;
    background-color: #0d6efd;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.my-button:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .my-button {
        width: 100%;
    }
}
