@charset "UTF-8";
/* CSS Document */

/*
font-family: 'Fauna One', serif;
font-family: 'Kaisei HarunoUmi', serif;
font-family: 'Noto Serif JP', serif;
*/

/* ------------------------------------------------ ページフェードイン */
body {
    margin: 0;
    padding: 0;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
*::after,* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* ------------------------------------------------ コンテンツフェードイン */
.fuwatAnime {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: fuwatAnime;
    -ms-animation-name: fuwatAnime;
    animation-name: fuwatAnime;
    visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@keyframes fuwatAnime {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ------------------------------------------------ 共通 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    height: 100%;
    font-size: 13px;
    font-family: 'Noto Serif JP', serif;;
    letter-spacing: 2.5px;
    line-height: 180%;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
    letter-spacing: 2.5px;
    line-height: 180%;
}
a:hover {
    transition: .5s;
    opacity: .5;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
}

p {
    letter-spacing: 2.5px;
    line-height: 180%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

iframe {
    vertical-align: bottom;
}

.justify {
    text-align: justify;
    text-justify: inter-ideograph;
}

/*---------------------------------------- マージン・パディング系 */
.mb15 {
    margin-bottom: 15px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb120 {
    margin-bottom: 120px;
}
    @media only screen and (max-width: 767px) {
        .mb15 {
            margin-bottom: 10px;
        }
        .mb30 {
            margin-bottom: 15px;
        }
        .mb60 {
            margin-bottom: 30px;
        }
        .mb90 {
            margin-bottom: 45px;
        }
        .mb120 {
            margin-bottom: 60px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .mb15 {
            margin-bottom: 10px;
        }
        .mb30 {
            margin-bottom: 15px;
        }
        .mb60 {
            margin-bottom: 30px;
        }
        .mb90 {
            margin-bottom: 45px;
        }
        .mb120 {
            margin-bottom: 60px;
        }
    }

.mt15 {
    margin-top: 15px;
}
.mt30 {
    margin-top: 30px;
}
.mt60 {
    margin-top: 60px;
}
.mt90 {
    margin-top: 90px;
}
.mt120 {
    margin-top: 120px;
}
    @media only screen and (max-width: 767px) {
        .mt15 {
            margin-top: 10px;
        }
        .mt30 {
            margin-top: 15px;
        }
        .mt60 {
            margin-top: 30px;
        }
        .mt90 {
            margin-top: 45px;
        }
        .mt120 {
            margin-top: 60px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .mt15 {
            margin-top: 10px;
        }
        .mt30 {
            margin-top: 15px;
        }
        .mt60 {
            margin-top: 30px;
        }
        .mt90 {
            margin-top: 45px;
        }
        .mt120 {
            margin-top: 60px;
        }
    }

/*---------------------------------------- フォント系 */
.font10 {
    font-size: 10px;
}
.font12 {
    font-size: 12px;
}

/*---------------------------------------- 配置系 */
.center {
    text-align: center;
}

/*---------------------------------------- Navi */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: rgba(255,255,255,1);
    transition: 1s;
    z-index: 2;
}
.is-animation {
    height: 50px;
    background-color: rgba(255,255,255,.7);
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* スクロールなしのナビ */
.flexbox_no_animation_nav {
    position: absolute;
    top: -15px;
    right: 130px;
    font-size: 14px;
    display: flex;
    flex-flow: row wrap;
    margin-right: 100px;
    padding-top: 40px;
    opacity : 1;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}
.f_item_no_animation_nav a i {
    margin-top: -2px;
}
    @media only screen and (max-width: 767px) {
        .flexbox_no_animation_nav {
            display: none;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .flexbox_no_animation_nav {
            display: none;
        }
    }

.f_item_no_animation_nav {
    padding: 1px 15px;
}
.f_item_no_animation_nav:last-child {
    border-right: none;
}

.no_animation_insta {
    width: 25px;
    height: 25px;
    margin-right: 30px;
}
.no_animation_insta a {
    float: left;
    width: 25px;
    height: 25px;
    background-image: url(../images/common/icon_instagram_blk_25.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.no_animation_facebook {
    width: 25px;
    height: 25px;
    margin-right: 30px;
}
.no_animation_facebook a {
    float: left;
    width: 25px;
    height: 25px;
    background-image: url(../images/common/icon_facebook_blk_25.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.no_animation_twitter {
    width: 25px;
    height: 25px;
    margin-right: 30px;
}
.no_animation_twitter a {
    float: left;
    width: 25px;
    height: 25px;
    background-image: url(../images/common/icon_twitter_blk_25.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* スクロールでナビ非表示 */
.is-animation .flexbox_no_animation_nav {
    opacity : 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    z-index: -100;
}

.global-nav {
    position: fixed;
    right: -320px; /* これで隠れる */
    top: 0;
    width: 300px; /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 70px;
    background-color: #f4f1ed;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.lang {
    position: absolute;
    top: 25px;
    right: 117px;
    width: 117px;
    height: 25px;
    padding: 0 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    transition: 1s;
    z-index: 9999999;
}
.is-animation .lang {
    top: 14px;
    right: 69px;
}
    @media only screen and (max-width: 767px) {
        .lang {
            right: 10px;
        }
        .is-animation .lang {
            right: 42px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .lang {
            right: 20px;
        }
    }

/* TOP0ではハンバーガ非表示 */
.hamburger {
    position: absolute;
    top: 14px;
    right: 50px;
    opacity: 0;
}

/* スクロールでハンバーガ表示 */
.is-animation .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 50px;
    cursor: pointer;
    z-index: 300;
    opacity : 1;
    /*
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
    transition: all 3s;
    */
}
    @media only screen and (max-width: 767px) {
        .hamburger {
            top: 0;
            opacity : 1;
            z-index: 999;
        }
        .is-animation .hamburger {
            right: 7px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .hamburger {
            top: 0;
            opacity : 1;
            z-index: 999;
        }
        .is-animation .hamburger {
            right: 7px;
        }
    }

.global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: 1s;
}
.global-nav__list li {
    border-bottom: 1px dotted #ccc;
}
.global-nav__list li:last-child {
    border-bottom: none;
}
.global-nav__item a {
    display: block;
    font-size: 14px;
    text-align: left;
    padding: 15px;
    text-decoration: none;
    color: #000;
}
.global-nav__item a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    background-image: url(../images/common/triangle_r.svg);
    background-size: contain;
    vertical-align: middle;
    opacity: 0;
    transition: 1s;
}
.global-nav__item a:hover::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    background-image: url(../images/common/triangle_r.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
    opacity: 1;
    transition: 1s;
}
.hamburger__line {
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #000;
    transition: all .6s;
}
.hamburger__line--1 {
    top: 15px;
    width: 30px;
}
.hamburger__line--2 {
    top: 25px;
    width: 30px;
}
.hamburger__line--3 {
    top: 35px;
    width: 30px;
}
.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: rgba(000,000,000,.8);
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
}
    @media only screen and (max-width: 767px) {
        .hamburger__line {
            background-color: #fff;
        }
        .is-animation .hamburger__line {
            background-color: #000;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .hamburger__line {
            background-color: #fff;
        }
        .is-animation .hamburger__line {
            background-color: #000;
        }
    }
/* 表示された時用のCSS */
.nav-open .global-nav {
    right: 0;
}
.nav-open .black-bg {
    opacity: .8;
    visibility: visible;
}
.nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
}
.nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
}
.nav-open .hamburger__line--3 {
    width: 30px;
    transform: rotate(-45deg);
    top: 25px;
}
    @media only screen and (max-width: 767px) {
        .nav-open .hamburger__line {
            background-color: #000;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .nav-open .hamburger__line {
            background-color: #000;
        }
    }

.flexbox_header_sns {
    display: flex;
    flex-flow: row wrap;
}

.f_item_header_sns {
    margin: 20px 0 0 20px;
}
.global-nav__item .flexbox_header_sns a:hover::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    background-image: url(../images/common/triangle_r.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
    opacity: 0;
    transition: 1s;
}

.f_item_header_sns_instagram {
    width: 17px;
    height: 17px;
    margin-right: 30px;
}
.f_item_header_sns_instagram a {
    float: left;
    width: 17px;
    height: 17px;
    background-image: url(../images/common/icon_instagram_blk_17.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.f_item_header_sns_facebook {
    width: 17px;
    height: 17px;
    margin-right: 30px;
}
.f_item_header_sns_facebook a {
    float: left;
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url(../images/common/icon_facebook_blk_17.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.f_item_header_sns_twitter {
    width: 17px;
    height: 17px;
}
.f_item_header_sns_twitter a {
    float: left;
    width: 17px;
    height: 17px;
    background-image: url(../images/common/icon_twitter_blk_17.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* Gナビ ホバーアニメーション */
a.menu-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
a.menu-link::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    content: '';
    width: 50px;
    height: 4px;
    margin: auto;
    border-radius: 2px;
    background: #f00;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
a.menu-link:hover::after {
    transform: scale(1, 1);
}

/* ------------------------------------------------ ロゴ */
h1.logo {
    float: left;
    width: 320px;
    height: 45px;
    margin-left: 100px;
}
h1.logo a {
    float: left;
    width: 320px;
    height: 45px;
    margin: 15px 0 0;
    background-image: url(../images/common/h1_logo_01.svg);
    background-repeat: no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    transition: 1s;
}
.is-animation h1.logo a {
    width: 256px;
    height: 36px;
    background-image: url(../images/common/h1_logo_02.svg);
    margin: 7px 0 0;
    filter: inherit;
    background-repeat: no-repeat;
}

h1.logo_enzh {
    float: left;
    width: 320px;
    height: 45px;
    margin-left: 100px;
}
h1.logo_enzh a {
    float: left;
    width: 320px;
    height: 45px;
    margin: 15px 0 0;
    background-image: url(../images/common/h1_logo_01_enzh.svg);
    background-repeat: no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    transition: 1s;
}
.is-animation h1.logo_enzh a {
    width: 256px;
    height: 36px;
    background-image: url(../images/common/h1_logo_02_enzh.svg);
    margin: 7px 0 0;
    filter: inherit;
    background-repeat: no-repeat;
}
    @media only screen and (max-width: 767px) {
        h1.logo {
            width: 235px;
            height: 33px;
            margin: 10px 0 0 5px;
        }
        h1.logo a {
            width: 235px;
            height: 33px;
            margin: 10px 0 0 5px;
        }
        .is-animation h1.logo a {
            width: 207px;
            height: 29px;
            margin: 3px 0 0 5px;
        }

        h1.logo_enzh {
            width: 235px;
            height: 33px;
            margin: 10px 0 0 5px;
        }
        h1.logo_enzh a {
            width: 235px;
            height: 33px;
            margin: 10px 0 0 5px;
        }
        .is-animation h1.logo_enzh a {
            width: 207px;
            height: 29px;
            margin: 3px 0 0 5px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        h1.logo {
            margin: 10px 0 0 10px;
        }
        h1.logo a {
            margin: 10px 0 0 10px;
        }
        .is-animation h1.logo a {
            margin: 3px 0 0 10px;
        }

        h1.logo_enzh {
            width: 235px;
            height: 33px;
            margin: 10px 0 0 5px;
        }
        h1.logo_enzh a {
            width: 235px;
            height: 33px;
            margin: 10px 0 0 5px;
        }
        .is-animation h1.logo_enzh a {
            width: 207px;
            height: 29px;
            margin: 3px 0 0 5px;
        }
    }

/* ------------------------------------------------ スライドショー・ページイメージ */
.movie_box {
    position: relative;
}
.movie_box_inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
}
.overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgba(0,0,0,.1) 50%, rgba(0,0,0,.2) 50%);
    background-size: 3px 3px;
    z-index: 0;
}

.movie_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 102px;
    height: 348px;
    background-image: url(../images/common/logo.svg);
    background-repeat: no-repeat;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
    @media only screen and (max-width: 767px) {
        .movie_logo {
            width: 88px;
            height: 300px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .movie_logo {
            width: 88px;
            height: 300px;
        }
    }
/*
#slider {
    position: relative;
    width: 100%;
    height: 100vh;
}
*/
/*
.logo__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-family: 'Kaisei HarunoUmi', serif;
    color: rgba(255, 255, 255, .8);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.logo__box--01 {
    position: relative;
    left: 185px;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 5px;
    line-height: normal;
}
.logo__box--02 {
    position: relative;
    left: 183px;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 5px;
    line-height: normal;
}
.logo__box--03 {
    position: relative;
    left: 181px;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 5px;
    line-height: normal;
}
.logo__box--04 {
    font-size: 80px;
    font-weight: normal;
    letter-spacing: 10px;
    line-height: 150%;
}
.logo__box--04::before {
    content: '';
    display: block;
    width: 85px;
    height: 85px;
    background-image: url(../images/common/crest.svg)
    background-size: contain;
    vertical-align: middle;
}
    @media only screen and (max-width: 767px) {
        .logo__box {
            left: 42%;
        }
        .logo__box--01 {
            left: 150px;
            font-size: 14px;
        }
        .logo__box--02 {
            left: 147px;
            font-size: 14px;
        }
        .logo__box--03 {
            left: 144px;
            font-size: 14px;
        }
        .logo__box--04 {
            font-size: 68px;
            line-height: normal;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {

    }
*/

/* スクロールダウン
.scroll_down a {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    padding: 10px 10px 115px;
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
}
.scroll_down a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
    animation: sdl 1.5s cubic-bezier(1,0,0,1) infinite;
}
@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
    @media only screen and (max-width: 767px) {
        .scroll_down a {
            right: inherit;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            padding: 10px 10px 65px;
        }
        .scroll_down a::after {
            height: 50px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .scroll_down a {
            right: inherit;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
        }
    }
*/

.page_img {
    width: 100%;
    height: 300px;
}
.page_img img {
    width: 100%;
    height: 300px;
    object-position: center;
    object-fit: cover;
}

/* ------------------------------------------------ エリア */
article.wrapper {
    width: 100%;
}
article.wrapper .wrap {
    width: 1024px;
    height: auto;
    margin: 0 auto;
    padding: 120px 0 0;
}
    @media only screen and (max-width: 767px) {
        article.wrapper .wrap {
            width: 85%;
            padding: 60px 0 0;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        article.wrapper .wrap {
            width: 85%;
            padding: 60px 0 0;
        }
    }

/* ------------------------------------------------ コンテンツタイトル */
.contents__ttl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 auto 120px;
}
h3.contents__ttl--en {
    font-family: 'Fauna One', serif;
    color: #f00;
    font-size: 14px;
}
h2.contents__ttl--jp {
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 40px;
    font-weight: normal;
    letter-spacing: 10px;
    line-height: 150%;
}
.EN_contents__ttl {
    margin: 0 auto 120px;
}
h3.EN_contents__ttl--en {
    text-align: center;
    font-size: 34px;
    font-weight: normal;
}

/*
#shukubo h3.contents__ttl--en,
#info h3.contents__ttl--en,
#access h3.contents__ttl--en,
#inquiry h3.contents__ttl--en {
    color: #fff;
}
*/
#shukubo h2.contents__ttl--jp,
#info h2.contents__ttl--jp,
#access h2.contents__ttl--jp,
#inquiry h2.contents__ttl--jp {
    color: #fff;
}
#shukubo h3.EN_contents__ttl--en,
#info h3.EN_contents__ttl--en,
#access h3.EN_contents__ttl--en,
#inquiry h3.EN_contents__ttl--en {
    color: #fff;
}
    @media only screen and (max-width: 767px) {
        .contents__ttl {
            margin: 0 auto 60px;
        }
        h3.contents__ttl--en {
            font-size: 12px;
        }
        h2.contents__ttl--jp {
            font-size: 34px;
            letter-spacing: 8px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .contents__ttl {
            margin: 0 auto 60px;
        }
        h3.contents__ttl--en {
            font-size: 12px;
        }
        h2.contents__ttl--jp {
            font-size: 34px;
            letter-spacing: 8px;
        }
    }

/* ------------------------------------------------ 浮世絵 */
.bg__container {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: -10;
    background-size: cover;
    background-repeat: no-repeat;
}
    @media only screen and (max-width: 767px) {
        .bg__container {
            height: 300px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .bg__container {
            height: 300px;
        }
    }
.bg__container--01 {
    background-image: url(../images/bg__container/bg__container--01.jpg);
    background-position: top;
    height: 600px;
}
.bg__container--02 {
    background-image: url(../images/bg__container/bg__container--02.jpg);
    background-position: center;
    height: 600px;
}
.bg__container--03 {
    background-image: url(../images/bg__container/bg__container--03.jpg);
    background-position: bottom;
    height: 100vh;
}
.bg__container--04 {
    background-image: url(../images/bg__container/bg__container--04.jpg);
    background-position: center;
    height: 600px;
}
.bg__container--05 {
    background-image: url(../images/bg__container/bg__container--05.jpg);
    background-position: center;
    height: 600px;
}

.bg__container_caption_right {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 12px;
    color: #fff;
    text-shadow: 2px 2px 0 #000, -2px -2px 0 #000,
                -2px 2px 0 #000, 2px -2px 0 #000,
                0px 2px 0 #000,  0-2px 0 #000,
                -2px 0 0 #000, 2px 0 0 #000;
}
    @media only screen and (max-width: 767px) {
        .bg__container_caption_right {
            position: inherit;
            right: inherit;
            width: 85%;
            margin: 0 auto -30px;
            font-size: 10px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .bg__container_caption_right {
            position: inherit;
            right: inherit;
            width: 85%;
            margin: 0 auto -30px;
            font-size: 10px;
        }
    }

/* ------------------------------------------------ ご挨拶 */
#greeting {
    background-image: url(../images/common/bg.jpg);
}

p.gteeting__box {
    display: block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: left;
    font-size: 14px;
    height: 330px;
    letter-spacing: 5px;
    line-height: 250%;
    margin: 0 auto;
}
p.EN_gteeting__box {
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 200%;
    margin: 0 auto;
}
    @media only screen and (max-width: 767px) {
        p.gteeting__box {
            -ms-writing-mode: inherit;
            writing-mode: inherit;
            text-orientation: inherit;
            font-size: 12px;
            height: auto;
            letter-spacing: 2.5px;
            line-height: 250%;
            margin: inherit;
            text-align: justify;
            text-justify: inter-ideograph;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        p.gteeting__box {
            font-size: 12px;
            height: 330px;
            letter-spacing: 2.5px;
            line-height: 250%;
        }
    }

/* ------------------------------------------------ 宿坊 */
#shukubo,
#training {
    position: relative;
    background-color: #131548;
}

.flexbox__shukubo--right {
    position: relative;
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 120px;
}
.f_item__shukubo--right:nth-child(1) {
    width: 60%;
}
.f_item__shukubo--right:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 50%;
    background-color: rgba(255, 255, 255, .9);
    padding: 15px;
    z-index: 1;
}
    @media only screen and (max-width: 767px) {
        .flexbox__shukubo--right {
            flex-flow: row-reverse wrap;
            margin-bottom: 60px;
        }
        .f_item__shukubo--right:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item__shukubo--right:nth-child(2) {
            position: inherit;
            top: inherit;
            left: inherit;
            transform: inherit;
            -webkit-transform: inherit;
            -ms-transform: inherit;
            width: 100%;
            background-color: inherit;
            padding: 0;
        }
        .f_item__shukubo--right p,
        .f_item__shukubo--left p {
            color: #fff;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .flexbox__shukubo--right {
            flex-flow: row-reverse wrap;
            margin-bottom: 60px;
        }
        .f_item__shukubo--right:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item__shukubo--right:nth-child(2) {
            position: inherit;
            top: inherit;
            left: inherit;
            transform: inherit;
            -webkit-transform: inherit;
            -ms-transform: inherit;
            width: 100%;
            background-color: inherit;
            padding: 0;
        }
        .f_item__shukubo--right p,
        .f_item__shukubo--left p {
            color: #fff;
        }
    }

.flexbox__shukubo--left {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 120px;
}
.f_item__shukubo--left:nth-child(1) {
    width: 60%;
}
.f_item__shukubo--left:nth-child(2) {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 50%;
    background-color: rgba(255, 255, 255, .9);
    padding: 15px;
    z-index: 1;
}
.f_item__shukubo--left ul li,
.f_item__shukubo--right ul li {
    list-style: disc;
    margin-left: 20px;
}
.emp {
    font-size: 14px;
    font-weight: bold;
}
    @media only screen and (max-width: 767px) {
        .flexbox__shukubo--left {
            margin-bottom: 60px;
        }
        .f_item__shukubo--left:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item__shukubo--left:nth-child(2) {
            position: inherit;
            top: inherit;
            right: inherit;
            transform: inherit;
            -webkit-transform: inherit;
            -ms-transform: inherit;
            width: 100%;
            background-color: inherit;
            padding: 0;
        }
        .f_item__shukubo--left ul li,
        .f_item__shukubo--right ul li {
            color: #fff;
            list-style: disc;
            margin-left: 20px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .flexbox__shukubo--left {
            margin-bottom: 60px;
        }
        .f_item__shukubo--left:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item__shukubo--left:nth-child(2) {
            position: inherit;
            top: inherit;
            right: inherit;
            transform: inherit;
            -webkit-transform: inherit;
            -ms-transform: inherit;
            width: 100%;
            background-color: inherit;
            padding: 0;
        }
        .f_item__shukubo--left ul li,
        .f_item__shukubo--right ul li {
            color: #fff;
            list-style: disc;
            margin-left: 20px;
        }
    }

h4.shukubo__ttl {
    position: relative;
    text-align: center;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 26px;
    font-weight: normal;
    color: #fff;
    margin: 0 auto 30px;
}
.shukubo__ttl::after {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 70px;
    height: 2px;
    background-color: #131548;
    border-radius: 1px;
}
.under_l::after {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 70px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}
/* 横書き */
h4.shukubo__ttl__rl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
    text-align: center;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 26px;
    font-weight: normal;
    margin: 0 auto 30px;
}
.shukubo__ttl_en_rl {
    position: absolute;
    top: 15px;
    left: 55%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 12px;
    color: #f00;
}
.EN_shukubo__ttl_en {
    text-align: center;
    font-family: 'Kaisei HarunoUmi', serif;
    font-size: 22px;
    font-weight: normal;
    margin: 0 auto 30px;
}
    @media only screen and (max-width: 767px) {
        h4.shukubo__ttl,
        h4.shukubo__ttl__rl {
            font-size: 22px;
            color: #fff;
        }
        .shukubo__ttl_en_rl {
            top: 0;
            left: 57%;
            font-size: 10px;
            letter-spacing: 1.5px;
        }
        .EN_shukubo__ttl_en {
            font-size: 19px;
            color: #fff;
            margin: 0 auto 15px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        h4.shukubo__ttl,
        h4.shukubo__ttl__rl {
            font-size: 22px;
            color: #fff;
        }
        .shukubo__ttl_en_rl {
            top: 0;
            left: 56%;
            font-size: 10px;
            letter-spacing: 1.5px;
        }
        .EN_shukubo__ttl_en {
            font-size: 19px;
            color: #fff;
            margin: 0 auto 15px;
        }
    }

.wht {
    color: #fff;
}

/* ボタンデザイン */
.button {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    position: relative;
    color: #fff;
    padding: 1em 2em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}
.blk .button {
    color: #333;
}
.button::before,
.button::after {
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #fff;
}
.button::before {
    top: 0;
    left: 0;
}
.button::after {
    right: 0;
    bottom: 0;
}
.button:hover:before,
.button:hover:after {
    width: 0;
}
#shukubou .button {
    color: #fff;
}
#shukubou .button::before,
#shukubou .button::after {
    background: #fff;
}
.blk .button::before,
.blk .button::after {
    background: #333;
}
    @media only screen and (max-width: 767px) {
        .blk .button {
            color: #fff;
        }
        .blk .button::before,
        .blk .button::after {
            background: #fff;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .blk .button {
            color: #fff;
        }
        .blk .button::before,
        .blk .button::after {
            background: #fff;
        }
    }

/* 流れるバナー */
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
_:-ms-lang(x)::-ms-backdrop,
.infinity_scroll {
    display: -ms-grid;
    overflow: hidden;
    margin-bottom: 60px;
}
.infinity_scroll__wrap {
    display: flex;
    overflow: hidden;
    margin-bottom: 60px;
}
.infinity_scroll__list {
    display: flex;
    list-style: none;
}
.infinity_scroll__list--left {
    animation : infinity-scroll-left 100s infinite linear .5s both;
}
.infinity_scroll__item {
    width: calc(100vw / 4);
}
.infinity_scroll:hover .infinity_scroll__list--left {
  animation-play-state: paused;
}
    @media only screen and (max-width: 767px) {
        .infinity_scroll {
            margin-bottom: 30px;
        }
        .infinity_scroll__wrap {
            margin-bottom: 30px;
        }
        .infinity_scroll__item {
            width: calc(100vw / 2);
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .infinity_scroll {
            margin-bottom: 30px;
        }
        .infinity_scroll__wrap {
            margin-bottom: 30px;
        }
        .infinity_scroll__item {
            width: calc(100vw / 3);
        }
    }

/* ------------------------------------------------ お知らせ */
#info {
    background-color: #131548;
}
.flexbox__info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}
.f_item__info {
    position: relative;
    width: 30%;
    color: #fff;
}
.f_item__info a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.f_item__info:hover {
    transition: .5s;
    opacity: .5;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
}
    @media only screen and (max-width: 767px) {
        .f_item__info {
            width: 100%;
            margin-bottom: 30px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
    }

.f_item__info--img {
    width: 306px;
    height: 204px;
    margin-bottom: 15px;
}
.f_item__info--img img {
    width: 100%;
}
.f_item__info--day {
    font-size: 10px;
    margin-bottom: 5px;
}
.f_item__info--ttl {
    margin-bottom: 15px;
}
.f_item__info--link {
    text-align: right;
    font-size: 12px;
}
.f_item__info--link::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url(../images/common/circle_arrow_r.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}
    @media only screen and (max-width: 767px) {
        .f_item__info--img {
            width: 100%;
            height: auto;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .f_item__info--img {
            width: 100%;
            height: auto;
        }
    }

/* ------------------------------------------------ お知らせ：個別ページ */
.flexbox__information {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
}
.f_item_information:nth-child(1) {
    width: 40%;
}
.f_item_information:nth-child(2) {
    width: 55%;
}

.info_ttl {
    font-size: 22px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
.info_date {
    text-align: right;
    font-size: 12px;
    margin-bottom: 60px;
}
    @media only screen and (max-width: 767px) {
        .flexbox__information {
            margin-bottom: 30px;
        }
        .f_item_information:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item_information:nth-child(2) {
            width: 100%;
        }

        .info_ttl {
            font-size: 19px;
            margin-bottom: 10px;
        }
        .info_date {
            font-size: 10px;
            margin-bottom: 15px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .flexbox__information {
            margin-bottom: 30px;
        }
        .f_item_information:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item_information:nth-child(2) {
            width: 100%;
        }

        .info_ttl {
            font-size: 19px;
            margin-bottom: 10px;
        }
        .info_date {
            font-size: 10px;
            margin-bottom: 15px;
        }
    }

/* ------------------------------------------------ アクセス */
#access {
    background-color: #131548;
    padding-top: 120px;
}
#access .wrap {
    width: 1024px;
    height: auto;
    margin: 0 auto;
    padding: 60px 0 30px;
}
    @media only screen and (max-width: 767px) {
        #access .wrap {
            width: 85%;
            padding: 30px 0 0;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        #access .wrap {
            width: 85%;
            padding: 30px 0 0;
        }
    }

.flexbox__access {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}
.f_item__access:nth-child(1) {
    width: 35%;
}
.f_item__access:nth-child(2) {
    width: 60%;
}
    @media only screen and (max-width: 767px) {
        .f_item__access:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item__access:nth-child(2) {
            width: 100%;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
    }

table.access {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 60px;
    width: 100%;
    color: #fff;
}
table.access a {
    color: #fff;
}
table.access th {
    text-align: left;
    width: 25%;
    border-bottom: 1px solid #fff;
    padding: 15px 30px;
}
table.access td {
    width: 75%;
    border-bottom: 1px solid #fff;
    padding: 15px 30px;
}
    @media only screen and (max-width: 767px) {
        table.access {
            margin-bottom: 30px;
        }
        table.access th {
            display: block;
            width: 100%;
            border-bottom: none;
            padding: 15px 0 0;
        }
        table.access td {
            display: block;
            width: 100%;
            padding: 5px 0 15px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        table.access {
            margin-bottom: 30px;
        }
        table.access th {
            display: block;
            width: 100%;
            border-bottom: none;
            padding: 15px 0 0;
        }
        table.access td {
            display: block;
            width: 100%;
            padding: 5px 0 15px;
        }
    }

.access__car {
    color: #fff;
    margin-bottom: 60px;
}
.access__car--ttl::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url(../images/common/icon_car.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}
.access__car--ttl {
    font-size: 16px;
    margin-bottom: 15px;
}
.access__car--subttl {
    margin-bottom: 15px;
}
.access__car--subttl span {
    display: block;
    margin-bottom: 5px;
}
.access__car ul li {
    list-style: disc;
    margin-left: 30px;
}

.access__train {
    color: #fff;
    margin-bottom: 60px;
}
.access__train--ttl::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url(../images/common/icon_train.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}
.access__train--ttl {
    font-size: 16px;
    margin-bottom: 15px;
}
.access__train ul li {
    list-style: disc;
    margin-left: 30px;
}

.access__bus {
    color: #fff;
}
.access__bus--ttl::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url(../images/common/icon_bus.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}
.access__bus--ttl {
    font-size: 16px;
    margin-bottom: 15px;
}
.access__bus ul li {
    list-style: disc;
    margin-left: 30px;
}
    @media only screen and (max-width: 767px) {
        .access__car {
            margin-bottom: 30px;
        }
        .access__car ul li {
            margin-left: 20px;
        }

        .access__train {
            margin-bottom: 30px;
        }
        .access__train ul li {
            margin-left: 20px;
        }

        .access__bus ul li {
            margin-left: 20px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .access__car {
            margin-bottom: 30px;
        }
        .access__car ul li {
            margin-left: 20px;
        }

        .access__train {
            margin-bottom: 30px;
        }
        .access__train ul li {
            margin-left: 20px;
        }

        .access__bus ul li {
            margin-left: 20px;
        }
    }

/* ------------------------------------------------ お問合せ */
#inquiry {
    background-color: #131548;
}

.form_wht_box {
    color: #333;
    background-color: #fff;
    border-radius: 15px;
    padding: 60px;
}
table.inquiry {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 30px;
}
table.inquiry tr th {
    width: 25%;
    vertical-align: middle;
    padding: 5px 10px;
}
table.inquiry tr td {
    width: 75%;
    padding: 15px;
}

table.inquiry tr td input[type="text"] {
    width: 49.5%;
    height: 3em;
    border: 1px solid #ccc;
}

table.inquiry tr td input[type="tel"],
table.inquiry tr td input[type="email"],
table.inquiry tr td select {
    width: 100%;
    height: 3em;
    border: 1px solid #ccc;
}
table.inquiry td textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #ccc;
}
    @media only screen and (max-width: 767px) {
        .form_wht_box {
            padding: 30px;
        }
        table.inquiry {
            margin-bottom: 15px;
        }
        table.inquiry tr th {
            display: block;
            width: 100%;
            padding: 0 0 5px 0;
        }
        table.inquiry tr td {
            display: block;
            width: 100%;
            padding: 0 0 15px 0;
        }
        table.inquiry tr td input[type="text"] {
            width: 100%;
            margin-bottom: 5px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .form_wht_box {
            padding: 30px;
        }
        table.inquiry {
            margin-bottom: 15px;
        }
        table.inquiry tr th {
            display: block;
            width: 100%;
            padding: 0 0 5px 0;
        }
        table.inquiry tr td {
            display: block;
            width: 100%;
            padding: 0 0 15px 0;
        }
    }

.privacy {
    text-align: center;
    font-size: 10px;
}
.privacy a {
    border-bottom: 1px dotted #000;
    padding-bottom: 3px;
}

/* MFPボタン */
button[type="reset"] {
    color: #ccc;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px 30px;
}
button[type="submit"] {
    color: #fff;
    background-color: #131548;
    border: 1px solid #131548;
    padding: 10px 30px;
}


/* CF7 */
/* ボタン */
.wpcf7-back {
    background-color: #dddddd;
    border: none;
    border-radius: 5px;
    padding: 10px 50px;
}
.wpcf7-submit {
    color: #fff;
    background-color: #131548;
    border: none;
    padding: 10px 50px;
}
/* エラーメッセージ */
.screen-reader-response,
.screen-reader-response ul li {
    display: none;
}
.wpcf7-not-valid-tip {
    display: block;
    width: 100%;
    color: #f00;
    margin-top: 10px
}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ok {
    text-align: center;
    color: #f00;
}
/* ContactForm7 / MailFormPro共通 */
.must {
    font-size: 10px;
    color: #fff;
    margin: 0px 5px;
    padding: 2px 5px;
    background-color: #f00;
    border: solid 2px #f00;
}

/* ------------------------------------------------ お問合せ：送信完了 */


/* ------------------------------------------------ フッタ */
footer {
    display: block;
    width: 100%;
    background-color: #3c3935;
}
footer,
footer a {
    color: #fff;
}

.ft_wrap {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}
    @media only screen and (max-width: 767px) {
        .ft_wrap {
            width: 85%;
            padding: 30px 0 15px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .ft_wrap {
            width: 85%;
            padding: 30px auto;
        }

    }

.flexbox_shop {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}
.f_item_shop:nth-child(1) {
    width: 25%;
}
.f_item_shop:nth-child(2) {
    width: 75%;
}
    @media only screen and (max-width: 767px) {
        .f_item_shop:nth-child(1) {
            width: 100%;
            margin-bottom: 15px;
        }
        .f_item_shop:nth-child(2) {
            width: 100%;
            margin-bottom: 15px;
        }

    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .f_item_shop:nth-child(1) {
            width: 20%;
        }
        .f_item_shop:nth-child(2) {
            width: 67%;
        }
    }

h2.logo {
    width: 256px;
    height: 36px;
}
h2.logo a {
    float: left;
    width: 256px;
    height: 36px;
    background-image: url(../images/common/h2_logo.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

h2.logo_enzh {
    width: 256px;
    height: 36px;
}
h2.logo_enzh a {
    float: left;
    width: 256px;
    height: 36px;
    background-image: url(../images/common/h2_logo_enzh.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
    @media only screen and (max-width: 767px) {
        h2.log,
        h2.logo_enzh {
            margin: 0 auto 15px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {
        h2.logo,
        h2.logo_enzh {
            margin: 0 0 15px;
        }
    }

.add {
    font-size: 12px;
    margin-bottom: 10px;
}
.footer-nav__item {
    display: inline-block;
    font-size: 12px;
    margin: 0 15px 10px 0;
}
.footer-nav__item::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    background-image: url(../images/common/triangle_r.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}
.flexbox_footer_sns {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 10px;
}
.f_item_footer_sns {
    margin: 10px 20px 0 0;
}
.f_item_footer_sns {
    width: 24px;
    height: 24px;
}
.f_item_footer_sns_instagram a {
    float: left;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon_instagram_wht_24.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.f_item_footer_sns_facebook a {
    float: left;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon_facebook_wht_24.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.f_item_footer_sns_twitter a {
    float: left;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon_twitter_wht_24.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.copy {
    display: block;
    font-size: 10px;
}

#float_reserve_wrap {
    opacity: 0;
}
#float_reserve_wrap.fade_in {
    -webkit-animation-name: float_button;
    -webkit-animation-duration: 1s;
    animation-name: float_banner;
    animation-duration: 1s;
    opacity: 1;
}
@keyframes float_banner {
    0% {
        right: -140px;
        opacity: 0;
    }
    100% {
        right: 20px;
        opacity: 1;
    }
}

.float_reserve {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 105px;
    height: 105px;
}
.float_reserve a {
    float: left;
    width: 105px;
    height: 105px;
    background: url(../images/common/icon_reserve.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: floatreserve 2000s ease infinite;
}
@keyframes floatreserve {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
    @media only screen and (max-width: 767px) {
        .float_reserve {
            top: inherit;
            right: inherit;
            bottom: 8px;
            left: 15px;
            width: 65px;
            height: 65px;
        }
        .float_reserve a {
            width: 65px;
            height: 65px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 980px) {

    }

/* SPのみ */
#float_tel_wrap {
    opacity: 0;
}
#float_tel_wrap.fade_in {
    -webkit-animation-name: float_button;
    -webkit-animation-duration: 1s;
    animation-name: float_button;
    animation-duration: 1s;
    opacity: 1;
}
@keyframes float_button {
    0% {
        right: -140px;
        opacity: 0;
    }
    100% {
        right: 20px;
        opacity: 1;
    }
}

.float_tel {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
}
.float_tel a {
    float: left;
    width: 50px;
    height: 50px;
    background: url(../images/common/icon_tel.svg);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: floattel 2000s ease infinite;
}
@keyframes floattel {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/************************************************************************ スマホ */
@media only screen and (max-width: 767px) {
    .pconly {
        display: none;
    }
}

/************************************************************************ タブレット */
@media only screen and (min-width: 768px) and (max-width: 980px) {
    .pconly {
        display: none;
    }
}

/************************************************************************ パソコン */
@media only screen and (min-width: 981px) {
    .sponly,
    .float_tel {
        display: none;
    }
}
