/*---------------------------------
  ヘッダー
---------------------------------*/
.header {
    width: 100%;
    height: 120px;
}

.header .logo {
    width: 175px;
    height: auto;
    padding: 45px 0 0 55px;
}

.header .logo img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .header {
        width: 100%;
        height: 120px;
    }

    .header .logo {
        width: 130px;
        height: auto;
        padding: 35px 0 0 20px;
    }
}

/*---------------------------------
  背景
---------------------------------*/
.page-bg {
    position: relative;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    background-image: url('../images/page-backgroung.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
body.result {
    background-image: url('../images/page-backgroung.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .page-bg {
        background: none;
    }

    .page-bg::before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 50% 100%;
        background-image: url('../images/page-backgroung.png');
        background-size: cover;
    }
}

/*---------------------------------
  ハンバーガーメニュー・メール
---------------------------------*/
.page-menu {
    margin: auto 4%;
    position: fixed;
    max-width: 100%;
    top: 0;
    bottom: 25px;
    right: 0;
    z-index: 100;
    height: 3.2rem;
}

@media screen and (max-width: 1300px) {
    .page-menu {
        margin: auto 1%;
    }
}

@media screen and (max-width: 767px) {
    .page-menu {
        margin: 20px 15px 0 0;
        top: 0;
    }
}

/*---------------------------------
  コンテンツ
---------------------------------*/
.main {
    margin: 0 auto;
}

.content {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto 90px;
}

.content-inner {
    width: 86%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .content-inner {
        width: 94%;
    }
}

/* タイトル */
.page-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.title01 {
    font-family: 'Montserrat', 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 46px;
    font-weight: bold;
    letter-spacing: 8px;
}

.title01::first-letter {
    color: #f9390c;
}

.title-line {
    width: 40px;
    height: 1px;
    background-color: #000;
    margin: 2px 0 0 7px;
}

.title-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    margin: 2px 10px 0 0;
}

.title02 {
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-weight: bold;
}

/* 文章部分 */
.content-inner h2 {
    margin-top: 0;
}

.content-inner p {
    text-align: justify;
    font-size: 16px;
    line-height: 28px;
    margin: 1.2em 0;
}

.content-inner h3 {
    margin-top: 1.5em;
    line-height: 1.7;
}


/* 名前 */
.about-name {
    width: 100%;
    text-align: right;
    font-size: 38px;
    margin-top: 35px;
}

.about-name .cursive {
    font-family: ro-shino-std, 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.about-name small {
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}


 /* 画像  */
 .img-about img {
     width: 100%;
     height: auto;
     margin: 0 auto 2.0em;
     display: block;
 }

@media screen and (max-width: 767px) {
    .content {
        margin: 0 auto 60px;
    }

    .title01 {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .title-line {
        width: 20px;
    }

    .title02 {
        font-size: 12px;
    }

    .content-inner p {
        font-size: 14px;
    }


    .content-inner h3 {
        margin-top: 1.8em;
    }

    .about-name {
        font-size: 28px;
        margin-top: 0;
    }
    .img-about img {
        width: 100%;
        height: auto;
    }
}