@charset "UTF-8";

/* 基本色 */
;root {
    --main-color: #04b704;
    --accent-color: #f79d0f;
    --dark-color: #2a2a2a;
    --text-bright-color: #fff;
}


/* コンテンツA：ヒーローイメージ */

.conA {
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4));
}

.conA h1 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.1em;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.conA p {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.conA a {
    display: inline-block;
    margin-top: 0.8em;
    padding-right: 1.0em;
    color: #f79d0f;
    font-size: 14px;
    text-decoration: none;
    background-image: url(../img/arrow.png);
    background-size: 8px 8px;
    background-repeat: no-repeat;
    background-position: right center;
}

.conA a:hover {
    text-decoration: underline;
}


@media (min-width: 768px) and (max-width: 1068px) {
    .conA h1 {
        font-size: 68px;
    }
    
    .conA p {
        font-size: 20px;
    }
    
    .conA a {
        font-size: 16px;
        background-size: 10px 10px;
    }
}

@media (min-width: 1068px) {
    .conA h1 {
        font-size: 96px;
    }
    
    .conA p {
        font-size: 24px;
    }
    
    .conA a {
        font-size: 18px;
        background-size: 12px 12px;
    }
}

/* コンテンツB：概要（画像＋テキスト） */

.conB {
    text-align: center;
}

.conB h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    color: #2a2a2a;
    margin-top: 60px;
    margin-bottom: 20px;
}

.conB a {
    display: inline-block;
    color: #f79d0f;
    font-size: 14px;
    text-decoration: none;
    padding-right: 1.0em;
    background-image: url(../img/arrow.png);
    background-size: 8px 8px;
    background-repeat: no-repeat;
    background-position: right center;
}

.conB a:hover {
    text-decoration: underline;
}

.conB .photo {
    min-height: 600px;
    background-image: url(../img/note.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

}

@media (min-width: 768px) and (max-width: 1068px) {
    .conB h2 {
        font-size: 38px;
    }
    
    .conB a {
        font-size: 16px;
        background-size: 10px 10px;
    }
}

@media (min-width: 1068px) {
    .conB h2 {
        font-size: 42px;
    }
    
    .conB a {
        font-size: 18px;
        background-size: 12px 12px;
        margin-bottom: 40px
    }
}


@media (max-width: 600px) {
    .conB .photo {
        margin-top: -130px;
    }
}

/* コンテンツC：概要（スタート） */

.conC {
    text-align: center;
    background-color: #ececec;
}

.conC h3 {
    font-size: 24px;
    color: #2a2a2a;
    padding-top: 60px;
    margin-bottom: 20px;
}

.conC p {
    color: #2a2a2a;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.conC a {
    display: inline-block;
    color: #f79d0f;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 60px;
    padding-right: 1.0em;
    background-image: url(../img/arrow.png);
    background-size: 8px 8px;
    background-repeat: no-repeat;
    background-position: right center;
}

.conC a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1068px) {
    .conC h3 {
        font-size: 36px;
    }
    
    .conC p {
        font-size: 20px;
    }
    
    .conA a {
        font-size: 16px;
        background-size: 10px 10px;
    }
}

@media (min-width: 1068px) {
    .conC h3 {
        font-size: 48px;
    }
    
    .conC p {
        font-size: 24px;
    }
    
    .conC a {
        font-size: 18px;
        background-size: 12px 12px;
    }
}

@media (max-width: 600px) {
    .conC {
        margin-top: -130px;
    }
}

