@charset "UTF-8";
/* ボディー */
body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
/* ボタン共通スタイル */
.link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    background-color: #4AB817;
    width: 280px;
    height: 88px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-decoration: none;
}
.line-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.line-link span {
    background-color: #FFFFFF;
    color: #4AB817;
    padding: 2px 16px;
    gap: 10px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0em;
}
/* ヘッダー */
header {
    background-color: #7E5639;
    width: 100%;
    box-sizing: border-box;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
}
header img {
    width: 213.49px;
}
header div {
    display: flex;
    align-items: center;
    gap: 40px;
}
header div ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
header div ul a {
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    color: #FFFFFF;
}
.header-button {
    background-color: #4ab817;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
header nav div {
    display: none;
}
header > svg {
    display: none;
}
.information-link {
    background-color: #f76140;
}
@media screen and (max-width: 959px) {
    header > a {
        display: none;
    }
    header > svg {
        display: block;
    }
    header nav {
        display: none;
        background-color: #7e5639;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 200;
        padding: 40px 0;
    }
    header nav.show {
        display: block;
    }
    header nav ul {
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px;
    }
    header nav div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}
/* メイン */
main .page-title {
    display: flex;
    justify-content: center;
    padding: 64px 0;
    margin-bottom: 64px;
    background-image: url('img/lower_fv.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
}
main .page-title h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #7E5639;
}
main section {
    width: 1040px;
    margin: 0 auto;
    max-width: 98%;
}
main section h2 {
    padding-bottom: 16px;
    margin: 0 0 40px 0;
    border-bottom: 1px solid #CFCFCF;
}
main section p {
    margin: 0 0 16px 0;
}
main section iframe {
    width: 100%;
    margin-bottom: 64px;
}
main section table {
    border-collapse: collapse;
    margin-bottom: 64px;
}
main section table tr {
    border-bottom: 8px solid #FFFFFF;
}
main section table th {
    background-color: #F6F1E6;
    width: 280px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    text-align: left;
}
main section table td {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    text-align: left;
}
main section .cv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 64px;
    background-color: #FFF6E1;
    gap: 24px;
}
main section .messages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
main section .messages p {
    margin: 0;
}
main section .messages p:first-of-type {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0em;
}
main section .messages p:last-of-type {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0em;
    color: #333333;
}
@media screen and (max-width: 959px) {
    main .page-title {
        margin-bottom: 32px;
    }
    main section {
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }
    main section h2 {
        text-align: center;
        margin-bottom: 20px;
    }
    main section p {
        margin-bottom: 20px;
    }
    main section table th {
        width: 200px;
    }
    main section .cv {
        margin-bottom: 32px;
    }
}
@media screen and (max-width: 767px) {
    main .page-title h1 {
        font-size: 28px;
    }
    main section table th {
        width: 120px;
    }
}
/* フッター */
footer {
    background-color: #7F5639;
    padding: 0 0 16px 0;
}
footer .footer-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 1040px;
    max-width: 98%;
    margin: 0 auto 16px auto;
    padding: 24px 0;
}
footer .footer-inner ul {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-inner ul li {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0em;
}
footer .footer-inner ul li a {
    color: #FFFFFF;
    text-decoration: none;
}
footer .copy {
    display: flex;
    justify-content: center;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0em;
    color: #F5F6FC;
}
@media screen and (max-width: 959px) {
    footer .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
    footer .footer-inner ul {
        gap: 32px;
    }
    footer .footer-inner ul li {
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    footer .footer-inner ul {
        flex-direction: column;
    }
}