﻿/*--------------------------------------------------------------
# 基本設定
--------------------------------------------------------------*/
html {
    font-size: 62.5%;
}
/* font-sizeは16pxの62.5%の10px */

body {
    background: #eeebe8;
    color: #777777;
    font-family: 'Noto Serif JP', serif,;
    font-size: 1.4rem; /*font-size : 14px と同等*/
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.01rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.no-gutters {
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# 書式設定
--------------------------------------------------------------*/
p {
    color: #333333;
    font-family: 'Noto Serif JP', serif;
    line-height: 3rem;
    text-align: justify;
    margin: 0;
}

a {
    color: #777777;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out 0s;
}

    a:hover {
        transition: all 0.3s ease-in-out 0s;
    }

    a:hover, a:focus {
        color: #cd081c;
        text-decoration: underline;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    margin: 0;
}


/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/
.profile-box {
    padding: 20px 0px 0 0px;
    margin: 0;
}

.profile-image-box {
    padding: 20px;
}

.profile-text-box {
    padding: 20px;
}

.profile h2 {
    font-family: 'Amiri', serif;
    font-size: 6.8rem;
    letter-spacing: 0.1rem;
    color: #a08456;
    opacity: 0.6;
    font-weight: 500;
    line-height: 7rem;
}

.right-to-left {
    text-orientation: sideways;
}

.caption-box {
    margin-bottom: 1rem;
}

.caption h1 {
    padding-bottom: 2rem;
}

.profile-text-1 {
    margin-bottom: 4rem;
    padding: 0;
}

.profile-text-1-1 {
    margin-bottom: 1.5rem;
    padding: 0;
}

.profile-text-2 {
    margin-bottom: 2rem;
    padding: 0;
}

.tate-box h2 {
    font-family: 'Amiri', serif;
    font-size: 6.8rem;
    color: #a08456;
    opacity: 0.6;
    font-weight: 400;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.button {
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

    .button h4 {
        font-size: 1.6rem;
    }

.btn-get-started {
    width: 100px;
    background: #a08456;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    text-transform: none;
    display: inline-block;
    padding: 5px 10px 9px 10px;
    margin-top: 20px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #a08456;
    transition: 0.5s;
}

    .btn-get-started:hover {
        color: #fff;
        background: #cd081c;
        border: 2px solid #cd081c;
    }

/*--------------------------------------------------------------
# smartphone 対応
--------------------------------------------------------------*/
/* smartphone */
@media (max-width: 768px) {
    /* 書式スマホ */
    /*  Profile */
    .profile-box {
        padding: 0;
        margin: 0;
    }

    .profile-image-box {
        padding: 25px 10px 10px 10px;
    }

    .profile-text-box {
        padding: 0px;
        margin: 0;
    }

    .profile h2 {
        font-family: 'Amiri', serif;
        font-size: 4.8rem;
        letter-spacing: 0.1rem;
        color: #a08456;
        opacity: 0.6;
        font-weight: 500;
        line-height: 7rem;
    }

    .caption h1 {
        font-size: 2.2rem;
        padding-bottom: 1rem;
    }

    .profile-text-box {
        padding: 0 20px 40px 20px;
    }

    /* Footer */
    #footer .copyright {
        font-size: 1.3rem;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #a08456;
    padding: 1.5rem 0;
    font-size: 1.4rem;
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.12);
}

    #footer .copyright {
        text-align: center;
        padding-top: 10px;
    }
