/*
Theme Name:Minzei
Theme URI:
Description:WordPressテーマ「twentytwentyfour」の自作子テーマ「Minzei」です。
Template:twentytwentyfour
Version:1.0.0
*/

:root {
    --color-primary: #00478d;
    --color-primary-pale: #BBE0F8;
    --color-line: #06c755;
    --color-gray: #F5F6F8;
    --color-orange: #FF5C00;
    --color-black: #333333;
    --color-line-shadow: #bcdeca;
    --color-primary-shadow: #08317d;
    --color-orange-shadow: #7d4c08;
}
/* WordPress管理バーのマージンをリセット（管理バーが非表示の場合用） */
html {
    margin-top: 0 !important;
}
body {
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    padding-top: 100px;
}
html {
    font-size: 100%;
    background-color: #fff;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.6;
}
h1, h2, h3, h4, h5, h6, p {
    color: var(--color-black);
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}
.large-only {
    display: block;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
.small-only {
    display: none;
}
.sp-large-only {
    display: block;
}

/* ==========================================================================
   共通スタイル
   ========================================================================== */
/* 英語セクションタイトル */
.section-label-en {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, calc(23px + 0.35vw), 30px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-primary);
    margin: 0 0 24px;
}
/* セクションタイトル */
.section-title-common {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, calc(20px + 1.56vw), 50px);
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-black);
}
/* 本文 */
.text-body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: clamp(16px, calc(15px + 0.17vw), 18px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: justify;
}
/* マーカー線 */
.highlight-primary {
    text-decoration: underline;
    text-decoration-thickness: 0.4em;
    text-decoration-color: var(--color-primary-pale);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
}
/* セクション共通padding: PC 80px 50px / SP 60px 20px */
.section-padding {
    padding: 80px 50px;
}

@media screen and (max-width: 1024px) {
    .large-only {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    body {
        padding-top: 70px;
    }
    /* SP: 英語セクションタイトル */
    .section-label-en {
        font-size: 26px;
        margin: 0 0 14px;
    }
    /* SP: セクションタイトル */
    .section-title-common {
        font-size: 32px;
    }
    /* SP: 本文 */
    .text-body {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 540px) {
    .small-only {
        display: block;
    }
    .sp-large-only {
        display: none;
    }
}
