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

    Common - 共通

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

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

    Reset - リセット

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

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



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

    Common - 共通
    基本カラー：#071013, #FFFFFF, #F5F5F5
    アクセント：#551326;

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

html {
    font-size: 62.5%;
    scroll-padding-top: 50px; /* ヘッダーの高さ分調整  */
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FFFFFF;
    color: #071013;
	font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 2.0;
}

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

li {
    list-style: none;
}

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

a:hover {
    transition: .4s;
}

.f-mongoose {
    font-family: "mongoose", sans-serif;
    font-weight: 400;
    font-style: normal;
}



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

    Flex - フレックス

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

.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.flex-space-around {
    display: flex;
    justify-content: space-around;
}

.flex-center {
    display: flex;
    justify-content: center;
}



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

    Header - ヘッダー

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

.header-box {
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 10;
    color: #FFFFFF;
    background-color: #071013;
}

.header-logo-box {
    width: 40px;
    margin: 5px;
}

.header-text-box {
    height: 40px;
    padding: 10px 10px 10px 5px;
}

.header-text-box p {
    font-size: 1.2rem;
    line-height: 15px;
    vertical-align: middle;
    letter-spacing: 0.1em;
}

.header-text-box h1 {
    font-family: "mongoose", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.0rem;
    line-height: 28px;
    vertical-align: middle;
    letter-spacing: 0.1em;
}



/* ==================================
    Menu - メニュー
================================== */

#toggle {
    position: fixed;
    top: 15px;
    right: 12px;
    z-index: 10;
}

#toggle > span {
    font-size: 1.1rem;
}

.toggle-text {
    padding: 3px;
    letter-spacing: 0;
    display: block;
}

#toggle-box {
    position: relative;
    height: 8px;
    margin-bottom: -1px;
    cursor: pointer;
}

#toggle-box > span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background-color: #FFFFFF;
    position: absolute;
    transition: transform .3s ease-in-out, top .3s ease, bottom .3s ease;
}

#toggle-box > span:nth-child(1) {
    top: 0;
}

#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
    bottom: 0;
}

#nav-content {
    z-index: 8;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #551326;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav-content-title-box {
    font-size: 2.4rem;
    color: #FFFFFF;
    margin: 32px auto 48px;
}

#nav-content ul {
    list-style: none;
}

#nav-content ul li {
    padding: 0 16px;
    position: relative;
}

@media screen and (min-width: 980px) {
    #nav-content ul li {
        width: 50%;
        margin: 0 auto;
    }
}

#nav-content ul li:after {
    content: '>';
    color: #FFE;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#nav-content a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 24px 8px;
    transition: opacity .6s ease;
    text-align: left;
    font-size: 1.5rem;
}

#nav-content ul li:not(:last-of-type) a {
    border-bottom: 1px dashed #fff;
}

#nav-content a:hover {
    transition: .4s;
    background-color: #FFFFFF;
    color: #551326;
}

.is-open {
    overflow: hidden;
}

.is-open #toggle > span {
    color: #FFFFFF;
}

.is-open #toggle-box {
    width: 34px;
    height: 32px;
}

.is-open #toggle-box > span {
    background: #FFFFFF;
    color: #FFFFFF;
}

.is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
    width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
    z-index: 9;
    transform: translateX(0);
}



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

    Breadcrumb Nav - パンくずリスト

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

ul.breadcrumb-nav-box {
    max-width: 980px;
    width: calc(100% - 16px);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    font-size: 1.2rem;
    padding-left: 2px;
}

@media screen and (min-width: 768px) {
    ul.breadcrumb-nav-box {
        width: calc(100% - 96px);
        font-size: 1.5rem;
    }
}

ul.breadcrumb-nav-box li:not(:last-child) {
    display: block;
    white-space: nowrap;
    padding-right: 8px;
}

ul.breadcrumb-nav-box li:not(:last-child):after {
    content: '>';
    padding-left: 8px;
}

ul.breadcrumb-nav-box li a {
    color: #071013;
}



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

    Footer - フッター

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

footer {
    color: #FFFFFF;
}

.footer-area-bg-box {
    position: relative;
    background-color: #333333;
}

.footer-area-inner-box {
    width: calc(100% - 64px);
    max-width: 500px;
    margin: 0 auto 64px;
    padding: 32px 0 64px;
    border-bottom: 2px solid #FFFFFF;
}

@media screen and (min-width: 768px) {
    .footer-area-inner-box {
        width: calc(100% - 96px);
    }
}

.footer-area-inner-box p {
    margin-top: 5px;
}

.footer-area-inner-box a {
    transition: .4s;
    color: #FFFFFF;
}

.footer-area-inner-box a:hover {
    transition: .4s;
    color: #551326;
}

.footer-inner-title {
    color: #C9694B;
    font-weight: bold;
    margin-bottom: 32px;
}

.footer-top-img-box {
    width: 40%;
    max-width: 300px;
    margin: 0 auto;
    padding: 48px 0;
}

.footer-title {
    font-size: 5.0rem;
    font-style: italic;
    text-align: center;
}

.footer-sns-box {

}

.footer-sns-box a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    transition: .4s;
    color: #FFFFFF;
    margin-right: 8px;
    margin-bottom: 16px;
}

.footer-sns-box span {
    display: block;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    color: #FFFFFF;
}

.footer-sns-box a:hover {
    background-color: #551326;
    transition: .4s;
}

.footer-link-box {
    text-align: center;
}

.footer-link-box li {
    line-height: 2.5;
}

.footer-link-box li a {
    color: #FFFFFF;
}

.footer-link-box li a:hover {
    background-color: #551326;
    transition: .4s;
}

.cr {
    text-align: center;
    font-size: 1.2rem;
    line-height: 2.5;
}



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

    Scroll - スクロール

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

.page-top {
    margin: 48px auto 0;
    text-align: center;
}

.page-top i {
    font-size: 3.0rem;
}



