@charset "utf-8";

/* --- */
/* 全体 */
/* --- */

* {
    margin: 0;
    padding: 0;
}

:root{
    --text-size: 18px;
    --main-color:#656565;
    --sab-color-blue:#59D2DD;
    --font-marugothic: "vdl-v7marugothic", sans-serif;
}

body {
    /* background-color: #FFF; */
    color: var(--main-color);
    font-size: var(--text-size);
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
}

.inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;    /* boxからはみ出た部分を非表示 */
}

.sec01 {
    padding: 100px 30px;
}

.sec2 {
    padding: 100px 30px 150px 30px;
}

.sec03 {
    padding: 80px 30px 100px 30px;
}

.pc-none {
    display: none;
}

/* ------------ */
/* アニメーション */
/* ------------ */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadein {
    animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* ------- */
/* タイトル */
/* ------- */

.title {
    font-size: 25px;
    font-family: var(--font-marugothic);
}
.title-01 {
    font-size: 20px;
    font-family: var(--font-marugothic);
}
.kasen-FFF {
    padding-bottom: 15px;
    border-bottom: dotted 5px #FFF;
}
.kasen-C6E4E6 {
    padding-bottom: 15px;
    border-bottom: dotted 5px #C6E4E6;
}

/* ----- */
/* ボタン */
/* ----- */


/* --------------- */
/* 下層ページヘッダー */
/* --------------- */
.page-header {
    width: 100%;
    position: relative;
    top: -100px;
    margin: 0 auto 180px auto;
    text-align: center;
}

.page-header-img {
    display: block;
    background-image: url(../images/page-header.png);
    background-size: cover;
    width: 100%;
    height: 182px;
    text-align: center;
}

.page-header-img img {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding-top: 60px;
}

.page-title {
    width: 100%;
}

.page-title p {
    font-size: 16px;
    font-weight: 600;
    color: var(--sab-color-blue);
}

.page-title h1 {
    font-size: 35px;
    font-weight: 600;
    color: #FFF;
    text-shadow: 0 0 20px #383838;
    margin-top: 20px;
} 

/* ----- */
/* その他 */
/* ----- */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}



/* ---------- */
/* レスポンシブ */
/* ---------- */

@media (max-width:950px) {

    .inner {
        max-width: 950px;
    }

    .pc-none {
        display: block;
    }

    .tb-none {
        display: none;
    }

    .sh-none {
        display: none;
    }

}

@media (max-width:768px) {

    .inner {
        max-width: 768px;
    }

    .tb-none {
        display: block;
    }
    .sh-none {
        display: none;
    }
}

@media (max-width:480px) {

    :root{
        --text-size: 15px;
    }

    .inner {
        max-width: 480px;
    }

    .sec01 {
        padding: 50px 20px;
    }

    .sec2 {
        padding: 50px 20px 80px 20px;
    }
    .sh-none {
        display: none;
    }

    .title {
    font-size: 20px;
    text-align: center;
    margin: 0 auto;
}

    .title-01 {
        font-size: 18px;
        margin: 0 auto;
    }

    .page-header {
        margin: 0 auto 50px auto;
    }

    .page-header-img img {
        width: 200px;
    }

    .page-title h1 {
        font-size: 25px;
    } 

}
