@charset "UTF-8";

/* ============================================
 * 共通設定・リセット
 * ============================================ */
html {
    font-size: 100%;
}

body {
    background-color: #F5F5F5;
    color: #333333;
    font-size: 14px;
    font-family: "Murecho", sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    color: #333333;
    text-decoration: none;
}

/* 共通ラッパー */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
}

.wrapper-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 100px 100px 100px;
}

.pan-line {
    border: 3px solid #9ADFFA;
    margin-bottom: 100px;
}

/* ============================================
 * タイポグラフィ (見出しスタイル)
 * ============================================ */

/* H1 */
h1 .ja {
    font-family: "Murecho", sans-serif;
    font-size: 20px;
    font-weight: 900;
}

h1 .en {
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

/* H2 (FV用) */
h2 {
    background-size: cover;
    width: 100%;
    height: 300px;
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 .ja {
    font-family: "Murecho", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

h2 .en {
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2em;
}

/* H3 */
h3 {
    font-family: "Murecho", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

/* H4 */
h4 .ja {
    font-family: "Murecho", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* H4 (色付き英語) */
h4 .en-Y {
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #FFF3B0;
}

h4 .en-G {
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #D4F4DD;
}

h4 .en-p {
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #FFD6E0;
}

h4 .en-b {
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #9ADFFA;
}

/* ============================================
 * ヘッダー
 * ============================================ */
#header {
    width: 100%;
    padding: 15px 80px;
    background-color: #9ADFFA;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
    padding: 0;
    font-size: 0;
    /* img と inline-block の隙間をなくすため */
}

.site-title a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.company-name .ja,
.company-name .en {
    display: block;
}

#header img {
    width: 100px;
    height: 50px;
}

.main-title {
    font-size: 32px;
    font-weight: 900;
    color: #F5F0E6;
}

/* ============================================
 * パンくずリスト
 * ============================================ */
.breadcrumb {
    max-width: 1080px;
    padding: 50px 100px 0 100px;
    margin: 0 auto;
    list-style: none;
    line-height: 2.5;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    font-weight: bold;
}

.breadcrumb li:after {
    /* ▶を表示*/
    font-family: FontAwesome;
    content: '\f0da';
    padding: 0 0.2em;
    color: silver;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #888;
}

.breadcrumb li:first-child a:before {
    /* 家アイコン */
    font-family: FontAwesome;
    content: '\f015';
    font-weight: normal;
    font-size: 1.1em;
    color: #9ADFFA;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

/* ============================================
 * フッター
 * ============================================ */
#footer {
    width: 100%;
    margin: 0 auto;
    padding: 80px 100px;
    background-color: #9ADFFA;
}

#footer .logo {
    width: 150px;
}

#footer .department {
    font-size: 32px;
    font-weight: 900;
}

#footer .footer-box {
    display: flex;
    justify-content: space-between;
}

#footer .sns-icon ul {
    display: flex;
    align-items: center;
    font-size: 2rem;
    gap: 1.5rem;
}

#footer .copyright {
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.2em;
}

#footer p {
    text-align: center;
}

/* ============================================
 * Media Queries (スマートフォン対応)
 * ============================================ */
@media screen and (max-width: 767px) {

    /* 共通ラッパー */
    .wrapper {
        padding: 50px 20px;
    }

    .wrapper-inner {
        padding: 0 20px 50px 20px;
    }

    /* --- タイポグラフィ --- */
    h1 .ja,
    h1 .en {
        font-size: 10px;
    }

    h2 {
        height: 150px;
        padding-left: 1.5rem;
    }

    h2 .ja {
        font-size: 18px;
    }

    h2 .en {
        font-size: 10px;
    }

    h3 {
        font-size: 16px;
    }

    /* --- ヘッダー --- */
    #header {
        padding: 5px 16px;
    }

    .site-title a {
        gap: 5px;
    }

    #header img {
        width: 50px;
        height: auto;
    }

    .main-title {
        font-size: 10px;
    }

    /* --- パンくずリスト --- */
    .breadcrumb {
        padding: 25px 20px 0 20px;
    }

    /* --- フッター --- */
    #footer {
        padding: 40px 16px;
    }

    #footer .logo {
        width: 100px;
    }

    #footer .department {
        font-size: 18px;
    }

    #footer .sns-icon ul {
        font-size: 1.5rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    #footer p {
        font-size: 10px;
    }
}


/*font
英語
font-family: "Quicksand", sans-serif;
font-weight: Light-300,Regular-400,Medium-500,SemiBold-600,Bold-700;

日本語
font-family: "Murecho", sans-serif;
font-weight: Thin-100,ExtraLight-200,Light-300,Regular-400,Medium-500,SemiBold-600,Bold-700,ExtraBold-800,Black-900;
*/