@charset "utf-8";

/*==================================================
    全体共通設定
===================================*/

body {
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif !important;
    color: #000 !important;
    overflow-x: hidden;
    background-color: #fff;
}

/* 英字フォント */
.font-en {
    font-family: "Montserrat", sans-serif;
}

/* 画像 */
img {
    width: 100%;
    vertical-align: bottom;
}

/* コンテンツ幅の指定 */
.inner {
    padding: 60px 4%;
    max-width: 1200px;
    margin: 0 auto;
}

/* スマホの時のみ表示 */
.sp {
    display: block;
}

.pc {
    display: none;
}

/* content-title */
.content-title {
    text-align: center;
    margin-bottom: 90px;
}

.content-title p {
    margin-bottom: 5px;
    font-weight: bold;
    letter-spacing: .1em;
    color: #FCCF38;
    text-transform: uppercase;
}

.content-title h2 {
    color: #000055;
    font-size: 2em;
    letter-spacing: .05em;
}

.text {
    color: #333;
    line-height: 1.6;
    letter-spacing: .05em;
    font-weight: 500;
}

/*==================================================
    タブレットCSS
===================================*/

@media(min-width:600px) {
    body {
        font-size: 15px;
    }
}

/*==================================================
    デスクトップCSS
===================================*/

@media(min-width:1025px) {
    body {
        font-size: 16px;
    }

    .inner {
        padding: 90px 0;
    }

    /* パソコンの時は非表示 */
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }
}