/* ==================================

    Reset - リセット

================================== */

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    line-height: 1.5;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



/* ==================================

    Default - デフォルト

================================== */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #101828;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Lobster', cursive;
    color: #404f70;
    font-size: 2.4rem;
}

@media screen and (min-width: 1025px) {
    h1,h2,h3,h4,h5,h6 {
        font-size: 2.8rem;
    }
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

a:hover {
    transition: .3s;
}

ul li {
    list-style: none;
}

.notel a {
    pointer-events: none;
    color: #101828;
    text-decoration:none;
}


/* ==================================

    Flex - フレックス

================================== */


.flex-space-between {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.flex-start {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-diretion: flex-start;
}

.flex-center {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}

.flex-space-around {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
}



/* ==================================

  Loading - ローディング

================================== */

#is-loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
    z-index: 10;
}

#loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    text-align: center;
    z-index: 9;
}



/* ==================================

    Header - ヘッダー

================================== */

.header-area-box {
    background-color: #f3f3f3;
    padding: 0 0 80px 16px;
}

@media screen and (min-width: 600px) {
    .header-area-box {
        padding: 0 0 96px 48px;
    }
}

@media screen and (min-width: 1025px) {
    .header-area-box {
        height: 100%;
        overflow: hidden;
        padding: 0 0 128px 0;
        background-color: #f3f3f3;
    }
}

.header-border-box {
    position: relative;
    z-index: -1;
    width: 100%;
    padding-bottom: 80px;
    overflow: hidden;
}

.header-border-box::after {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 80px solid #f3f3f3;
    border-left: 100vw solid transparent;
}

@media screen and (min-width: 1025px) {
    .header-border-box::after {
        border-bottom: 80px solid #f3f3f3;
        border-left: 100vw solid transparent;
    }
}



/* ==================================

    Header - ヘッダー ロゴ版

================================== */

.header-logo-area-box {
    width: 30%;
    max-width: 150px;
    margin: 0 auto 64px;
}



/* ==================================

    Hover - ホバー

================================== */

.link-hover {
    text-decoration: none;
    padding-bottom: 2px;
    position: relative;
}

.link-hover:after {
    content: '';
    position: absolute;
    width: 0;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #de9d43;
    display: block;
}

.link-hover:hover {
    color: #de9d43;
}

.link-hover:hover:after {
    width: 100%;
    border-bottom: 1px solid #de9d43;
}



/* ==================================

    Footer - フッター

================================== */

.f-area {
    background-color: #101828;
}

.f-area img {
    width: 40px;
}

.f-box {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 48px 32px 32px;
}

.f-area p,
.f-area a,
.f-area small {
    color: #f3f3f3;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.f-area p:nth-of-type(1) {
    font-size: 1.4rem;
    margin-top: 24px;
}

.f-area p:nth-of-type(2) {
    font-size: 2.4rem;
}

@media screen and (min-width: 1025px) {
    .f-area p:nth-of-type(2) {
        font-size: 2.8rem;
    }
}

.f-area p:nth-of-type(3),
.f-area p:nth-of-type(4),
.f-area p:nth-of-type(5),
.f-area p:nth-of-type(6) {
    font-size: 1.4rem;
    line-height: 2.0;
    letter-spacing: 0.08em;
}

.f-area p:nth-of-type(6) {
    margin-bottom: 96px;
}

.f-area small {
    position: absolute;
    right: 32px;
    bottom: 32px;
}

.f-area #page-top {
    width: 55px;
    display: block;
    position: absolute;
    top: 0;
    right: 32px;
    letter-spacing: 0.08em;
    padding: 8px 0;
}

.f-area a {
    color: #f3f3f3;
}

.f-sns-box {
    width: 180px;
    margin: 32px auto 32px 0;
}

.f-sns-icon-box {
    width: 40px;
}

.f-sns-box .f-sns-icon-box img {
    width: 100%;
}

.f-sns-icon-box img {
    transition: .3s;
}

.f-sns-box img:hover {
    opacity: 0.8;
}