@charset "UTF-8";

/*!
Theme Name: sougetsu
Version: 1.0
Text Domain: rcms
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Header
# Contents
# Footer
# Elements
# Forms
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
    ## Comments
# Infinite scroll
# Media
    ## Captions
    ## Galleries

    # Desktop

    # Tablet

    # Mobile
--------------------------------------------------------------*/


/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

.fadein1 {
    animation-name: fadeIn1;
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 5s;
    animation-direction: normal;
    opacity: 0;
}

@keyframes fadeIn1 {
    /*animation-nameで設定した値を書く*/
    0% {
        opacity: 0
    }
    /*アニメーション開始時は不透明度0%*/
    100% {
        opacity: 1
    }
    /*アニメーション終了時は不透明度100%*/
}

.fadein2 {
    animation-name: fadeIn2;
    animation-fill-mode: forwards;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0.5s;
    animation-direction: normal;
    opacity: 0;
}

@keyframes fadeIn2 {
    /*animation-nameで設定した値を書く*/
    0% {
        filter: blur(20px);
        opacity: 0
    }
    /*アニメーション開始時は不透明度0%*/
    100% {
        filter: blur(0px);
        opacity: 1;
    }
    /*アニメーション終了時は不透明度100%*/
}

#profile-navi {
    display: flex;
    justify-content: center;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Open Sans", "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    -webkit-touch-callout: none;
    /*-webkit-user-select: none;*/
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover,
a:focus {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
    vertical-align: middle;
}

body:not(.home) img {
    border: 0;
    vertical-align: middle;
    pointer-events: none;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

.reserve-month,
.reserve-day,
.reserve-time-hour,
.reserve-time-min {
    width: 50px;
    display: inline-block;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

select {
    cursor: pointer;
}

td,
th {
    padding: 0;
}


/*--------------------------------------------------------------
# Foundation
--------------------------------------------------------------*/

.foundation-mq {
    font-family: "small=0em&medium=48em&large=64em&xlarge=80em&xxlarge=90em";
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    padding: 0;
    background: #FFFFFF;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.5;
    color: #000000;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*-webkit-user-select: none;
        -khtml-user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
        user-select: none;*/
}

body.body-font-gothic {
    /* font-family: -apple-system, BlinkMacSystemFont, "Lato", "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; */
}

body.body-font-mincho {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0;
}

select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
    max-width: none !important;
}

button {
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1;
}

[data-whatinput='mouse'] button {
    outline: 0;
}

pre {
    overflow: auto;
}

.is-visible {
    display: block !important;
}

.is-hidden {
    display: none !important;
}

.row {
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
}

.row::before,
.row::after {
    display: table;
    content: ' ';
}

.row::after {
    clear: both;
}

.row.collapse>.column,
.row.collapse>.columns {
    padding-right: 0;
    padding-left: 0;
}

.row .row {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.page-id-852173 #main-content.layout-block .widget-title {
    text-align: center!important;
    margin: 80px 0 40px 0;
}

.page-id-852173 #main-content .widget-title .title-name {
    border: none!important;
    font-size: 32px!important;
}

.mw_wp_form p.mwform-btn input,
input[type="submit"] {
    background-color: #2d416d!important;
    color: #fff!important;
}

input[type="submit"] {
    padding: 20px 50px;
    border-radius: 4px;
    border: none;
}

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

.mw_wp_form p.mwform-btn input:hover {
    background-color: #233458!important;
}

.mw_wp_form {
    font-size: 13px;
    margin: 0 0 20px;
    /**
   * ボタン
   */
    /**
   * その項目のエラーのwrapper
   */
    /**
   * 必須マーク
   */
    /**
   * 各項目のwrapper
   */
    /**
   * 注釈
   */
}

.mw_wp_form dl {
    border-bottom: #dddddd solid 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    zoom: 1;
}

.mw_wp_form dl dt,
.mw_wp_form dl dd {
    margin: 0;
    padding: 20px 0 15px;
}

.mw_wp_form dl dt {
    float: left;
    font-weight: bold;
    padding-right: 20px;
    width: 25%;
    position: relative;
}

.mw_wp_form dl dt .mwform-require {}

.mw_wp_form dl dd {
    overflow: hidden;
    zoom: 1;
}

.mw_wp_form dl dd input,
.mw_wp_form dl dd textarea {
    border: #cccccc solid 1px;
    border-radius: 3px;
    margin: 0;
    max-width: 88%;
    padding: 9px 12px;
    vertical-align: middle;
}

.mw_wp_form dl dd textarea {
    width: 90%;
}

.mw_wp_form dl dd label {
    margin: 0 10px 0 2px;
}

.mw_wp_form dl dd label input[type="checkbox"],
.mw_wp_form dl dd label input[type="radio"] {
    margin: 0 5px 0 0;
}

.mw_wp_form p.mwform-btn {
    margin-top: 10px;
    text-align: center;
}

.mw_wp_form p.mwform-btn input {
    background-color: #f5f5f5;
    border: #dddddd solid 1px;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    font-weight: normal;
    padding: 20px 50px;
}

.mw_wp_form p.mwform-btn input:active,
.mw_wp_form p.mwform-btn input:hover {
    background-color: #eee;
}

.mw_wp_form .mwform-errors {
    margin: 5px 0 0;
    overflow: hidden;
    zoom: 1;
    /**
     * エラーメッセージ
     */
}

.mw_wp_form .mwform-errors .mwform-error {
    float: left;
    margin: 0 10px 0 0;
}

.mw_wp_form .mwform-errors .mwform-error span {
    background-color: #F7CCE6;
    border: #ee4d89 solid 1px;
    border-radius: 3px;
    color: #EE4D89;
    display: inline-block;
    font-size: 85%;
    padding: 3px 6px 2px;
}

.mw_wp_form .mwform-require {
    color: #333;
    padding: 3px;
    font-weight: normal;
    background-color: #970303;
    font-size: 85%;
    color: #fff;
    margin-left: 5px;
    border-radius: 4px;
}

.mw_wp_form .mwform-field {
    margin: 0 0 5px;
}

.mw_wp_form .mwform-note {
    margin: 5px 0;
}

.mwform-field select {
    width: 180px;
    margin-right: 3px;
}

#members-button a {
    display: block;
    transition: all .6s;
}

.page-id-852175 h2 {
    text-align: center!important;
}

.cast-fname {
    line-height: 1em;
    font-size: 12px;
}

#text-7 a {
    margin: 5px;
    display: block;
}

.home .smart_fix_menu {
    display: none;
}

#cp5_news-5 h2.widget-title:after {
    content: '新着ニュース';
    font-size: 18px;
    margin: 0px auto 20px auto;
    text-align: center;
    display: block;
}

#cp5_cast_slider-3 h2:after {
    content: '新人キャスト';
    font-size: 18px;
    margin: 0px auto 20px auto;
    text-align: center;
    display: block;
}

#cp5_schedule_slider-2 h2:after {
    content: '出勤スケジュール';
    font-size: 18px;
    margin: 0px auto 20px auto;
    text-align: center;
    display: block;
}

#cp5_cast_slider-4 h2:after {
    content: 'ピックアップ';
    font-size: 18px;
    margin: 0px auto 20px auto;
    text-align: center;
    display: block;
}

#ul-pagelink li {
    list-style: none;
}

#recruit-bloc-4 dt {
    background: #6e6966;
    padding: 10px;
}

#recruit-bloc-4 dd {
    padding: 0;
    margin: 0;
}

.accordion-006 {
    margin-bottom: 7px;
    background-color: #6e6966;
    border-radius: 5px;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #3e3936;
    border-right: 3px solid #3e3936;
    content: '';
    transition: transform .3s;
}

.accordion-006[open] summary::after {
    transform: rotate(225deg);
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #ffffff;
    transition: all .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
    background: #000;
}

.enter_bg {
    background-image: url(assets/images/enter_bg.jpg);
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center top!important;
    background-attachment: scroll;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    animation: fadein 3s ease-in-out forwards;
    /* forwardsを追加 */
}

@keyframes fadein {
    /*animation-nameで設定した値を書く*/
    0% {
        filter: blur(10px);
        opacity: 0
    }
    /*アニメーション開始時は不透明度0%*/
    100% {
        filter: blur(0px);
        opacity: 1
    }
    /*アニメーション終了時は不透明度100%*/
}

.enter_sub_text {
    font-size: 16px;
    text-align: center;
}

.page-template-page-entrance .pc {
    display: none;
}

@media print,
screen and (min-width: 48em) {
    #enter-section {
        padding: 60px 10px;
    }
    /* .home #footer {
        display: none;
    } */
    .w720 {
        width: 720px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    #ul-pagelink li {
        width: calc(100% / 4);
        position: relative;
        color: #c7b776;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .cta li a {
        display: block;
    }
    .cta {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 720px;
        margin: 0 auto;
    }
    #ul-pagelink {
        width: 1000px;
        border-top: 1px solid #c7b776;
        border-bottom: 1px solid #c7b776;
        text-align: center;
        margin: 25px auto;
        display: flex;
    }
    .ul-4cols {
        display: flex;
        list-style: none;
    }
    .recruit_content {
        width: 720px;
        margin: 10px auto 70px auto;
        padding: 70px;
    }
    .price_early {
        max-width: 1150px;
        margin: 0 auto 20px auto;
    }
    .price_early img {
        width: 100%;
        height: auto;
    }
    .price p img {
        width: calc( 50% - 10px);
    }
    .price {
        max-width: 1160px;
        text-align: center;
    }
    .price p {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    #header #header-logo-col {
        padding: 0 24px;
    }
    #logo {
        margin: 20px 0;
    }
    h1#logo a {
        padding: 0;
        display: inline-block;
    }
    .smart_fix_menu,
    .smart_headicon {
        display: none;
    }
    #text-7 .textwidget {
        text-align: center;
    }
    #text-7 .textwidget {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    #text-7 p {
        width: 50%;
        display: flex;
        flex-wrap: nowrap;
    }
    .row .row {
        margin-right: -0.5rem;
        margin-left: -0.5rem;
    }
    #members-button {
        position: absolute;
        top: 0px;
        right: 0;
    }
    #members-button a:hover {
        opacity: 0.8;
    }
}

@media print,
screen and (min-width: 64em) {
    .row .row {
        margin-right: -0.5rem;
        margin-left: -0.5rem;
    }
}

.row .row.collapse {
    margin-right: 0;
    margin-left: 0;
}

.row.expanded {
    max-width: none;
}

.row.expanded .row {
    margin-right: auto;
    margin-left: auto;
}

.row:not(.expanded) .row {
    max-width: none;
}

.row.gutter-small>.column,
.row.gutter-small>.columns {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.row.gutter-medium>.column,
.row.gutter-medium>.columns {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.column,
.columns {
    width: 100%;
    float: left;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

@media print,
screen and (min-width: 48em) {
    .column,
    .columns {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
    float: right;
}

.column.end:last-child:last-child,
.end.columns:last-child:last-child {
    float: left;
}

.column.row.row,
.row.row.columns {
    float: none;
}

.row .column.row.row,
.row .row.row.columns {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.small-1 {
    width: 8.33333%;
}

.small-push-1 {
    position: relative;
    left: 8.33333%;
}

.small-pull-1 {
    position: relative;
    left: -8.33333%;
}

.small-offset-0 {
    margin-left: 0%;
}

.small-2 {
    width: 16.66667%;
}

.small-push-2 {
    position: relative;
    left: 16.66667%;
}

.small-pull-2 {
    position: relative;
    left: -16.66667%;
}

.small-offset-1 {
    margin-left: 8.33333%;
}

.small-3 {
    width: 25%;
}

.small-push-3 {
    position: relative;
    left: 25%;
}

.small-pull-3 {
    position: relative;
    left: -25%;
}

.small-offset-2 {
    margin-left: 16.66667%;
}

.small-4 {
    width: 33.33333%;
}

.small-push-4 {
    position: relative;
    left: 33.33333%;
}

.small-pull-4 {
    position: relative;
    left: -33.33333%;
}

.small-offset-3 {
    margin-left: 25%;
}

.small-5 {
    width: 41.66667%;
}

.small-push-5 {
    position: relative;
    left: 41.66667%;
}

.small-pull-5 {
    position: relative;
    left: -41.66667%;
}

.small-offset-4 {
    margin-left: 33.33333%;
}

.small-6 {
    width: 50%;
}

.small-push-6 {
    position: relative;
    left: 50%;
}

.small-pull-6 {
    position: relative;
    left: -50%;
}

.small-offset-5 {
    margin-left: 41.66667%;
}

.small-7 {
    width: 58.33333%;
}

.small-push-7 {
    position: relative;
    left: 58.33333%;
}

.small-pull-7 {
    position: relative;
    left: -58.33333%;
}

.small-offset-6 {
    margin-left: 50%;
}

.small-8 {
    width: 66.66667%;
}

.small-push-8 {
    position: relative;
    left: 66.66667%;
}

.small-pull-8 {
    position: relative;
    left: -66.66667%;
}

.small-offset-7 {
    margin-left: 58.33333%;
}

.small-9 {
    width: 75%;
}

.small-push-9 {
    position: relative;
    left: 75%;
}

.small-pull-9 {
    position: relative;
    left: -75%;
}

.small-offset-8 {
    margin-left: 66.66667%;
}

.small-10 {
    width: 83.33333%;
}

.small-push-10 {
    position: relative;
    left: 83.33333%;
}

.small-pull-10 {
    position: relative;
    left: -83.33333%;
}

.small-offset-9 {
    margin-left: 75%;
}

.small-11 {
    width: 91.66667%;
}

.small-push-11 {
    position: relative;
    left: 91.66667%;
}

.small-pull-11 {
    position: relative;
    left: -91.66667%;
}

.small-offset-10 {
    margin-left: 83.33333%;
}

.small-12 {
    width: 100%;
}

.small-offset-11 {
    margin-left: 91.66667%;
}

.small-up-1>.column,
.small-up-1>.columns {
    float: left;
    width: 100%;
}

.small-up-1>.column:nth-of-type(1n),
.small-up-1>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-1>.column:nth-of-type(1n+1),
.small-up-1>.columns:nth-of-type(1n+1) {
    clear: both;
}

.small-up-1>.column:last-child,
.small-up-1>.columns:last-child {
    float: left;
}

.small-up-2>.column,
.small-up-2>.columns {
    float: left;
    width: 50%;
}

.small-up-2>.column:nth-of-type(1n),
.small-up-2>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-2>.column:nth-of-type(2n+1),
.small-up-2>.columns:nth-of-type(2n+1) {
    clear: both;
}

.small-up-2>.column:last-child,
.small-up-2>.columns:last-child {
    float: left;
}

.small-up-3>.column,
.small-up-3>.columns {
    float: left;
    width: 33.33333%;
}

.small-up-3>.column:nth-of-type(1n),
.small-up-3>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-3>.column:nth-of-type(3n+1),
.small-up-3>.columns:nth-of-type(3n+1) {
    clear: both;
}

.small-up-3>.column:last-child,
.small-up-3>.columns:last-child {
    float: left;
}

.small-up-4>.column,
.small-up-4>.columns {
    float: left;
    width: 25%;
}

.small-up-4>.column:nth-of-type(1n),
.small-up-4>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-4>.column:nth-of-type(4n+1),
.small-up-4>.columns:nth-of-type(4n+1) {
    clear: both;
}

.small-up-4>.column:last-child,
.small-up-4>.columns:last-child {
    float: left;
}

.small-up-5>.column,
.small-up-5>.columns {
    float: left;
    width: 20%;
}

.small-up-5>.column:nth-of-type(1n),
.small-up-5>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-5>.column:nth-of-type(5n+1),
.small-up-5>.columns:nth-of-type(5n+1) {
    clear: both;
}

.small-up-5>.column:last-child,
.small-up-5>.columns:last-child {
    float: left;
}

.small-up-6>.column,
.small-up-6>.columns {
    float: left;
    width: 16.66667%;
}

.small-up-6>.column:nth-of-type(1n),
.small-up-6>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-6>.column:nth-of-type(6n+1),
.small-up-6>.columns:nth-of-type(6n+1) {
    clear: both;
}

.small-up-6>.column:last-child,
.small-up-6>.columns:last-child {
    float: left;
}

.small-up-7>.column,
.small-up-7>.columns {
    float: left;
    width: 14.28571%;
}

.small-up-7>.column:nth-of-type(1n),
.small-up-7>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-7>.column:nth-of-type(7n+1),
.small-up-7>.columns:nth-of-type(7n+1) {
    clear: both;
}

.small-up-7>.column:last-child,
.small-up-7>.columns:last-child {
    float: left;
}

.small-up-8>.column,
.small-up-8>.columns {
    float: left;
    width: 12.5%;
}

.small-up-8>.column:nth-of-type(1n),
.small-up-8>.columns:nth-of-type(1n) {
    clear: none;
}

.small-up-8>.column:nth-of-type(8n+1),
.small-up-8>.columns:nth-of-type(8n+1) {
    clear: both;
}

.small-up-8>.column:last-child,
.small-up-8>.columns:last-child {
    float: left;
}

.small-collapse>.column,
.small-collapse>.columns {
    padding-right: 0;
    padding-left: 0;
}

.small-collapse .row {
    margin-right: 0;
    margin-left: 0;
}

.expanded.row .small-collapse.row {
    margin-right: 0;
    margin-left: 0;
}

.small-uncollapse>.column,
.small-uncollapse>.columns {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.small-centered {
    margin-right: auto;
    margin-left: auto;
}

.small-centered,
.small-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
}

@media print,
screen and (min-width: 48em) {
    .medium-1 {
        width: 8.33333%;
    }
    .medium-push-1 {
        position: relative;
        left: 8.33333%;
    }
    .medium-pull-1 {
        position: relative;
        left: -8.33333%;
    }
    .medium-offset-0 {
        margin-left: 0%;
    }
    .medium-2 {
        width: 16.66667%;
    }
    .medium-push-2 {
        position: relative;
        left: 16.66667%;
    }
    .medium-pull-2 {
        position: relative;
        left: -16.66667%;
    }
    .medium-offset-1 {
        margin-left: 8.33333%;
    }
    .medium-3 {
        width: 25%;
    }
    .medium-push-3 {
        position: relative;
        left: 25%;
    }
    .medium-pull-3 {
        position: relative;
        left: -25%;
    }
    .medium-offset-2 {
        margin-left: 16.66667%;
    }
    .medium-4 {
        width: 33.33333%;
    }
    .medium-push-4 {
        position: relative;
        left: 33.33333%;
    }
    .medium-pull-4 {
        position: relative;
        left: -33.33333%;
    }
    .medium-offset-3 {
        margin-left: 25%;
    }
    .medium-5 {
        width: 41.66667%;
    }
    .medium-push-5 {
        position: relative;
        left: 41.66667%;
    }
    .medium-pull-5 {
        position: relative;
        left: -41.66667%;
    }
    .medium-offset-4 {
        margin-left: 33.33333%;
    }
    .medium-6 {
        width: 50%;
    }
    .medium-push-6 {
        position: relative;
        left: 50%;
    }
    .medium-pull-6 {
        position: relative;
        left: -50%;
    }
    .medium-offset-5 {
        margin-left: 41.66667%;
    }
    .medium-7 {
        width: 58.33333%;
    }
    .medium-push-7 {
        position: relative;
        left: 58.33333%;
    }
    .medium-pull-7 {
        position: relative;
        left: -58.33333%;
    }
    .medium-offset-6 {
        margin-left: 50%;
    }
    .medium-8 {
        width: 66.66667%;
    }
    .medium-push-8 {
        position: relative;
        left: 66.66667%;
    }
    .medium-pull-8 {
        position: relative;
        left: -66.66667%;
    }
    .medium-offset-7 {
        margin-left: 58.33333%;
    }
    .medium-9 {
        width: 75%;
    }
    .medium-push-9 {
        position: relative;
        left: 75%;
    }
    .medium-pull-9 {
        position: relative;
        left: -75%;
    }
    .medium-offset-8 {
        margin-left: 66.66667%;
    }
    .medium-10 {
        width: 83.33333%;
    }
    .medium-push-10 {
        position: relative;
        left: 83.33333%;
    }
    .medium-pull-10 {
        position: relative;
        left: -83.33333%;
    }
    .medium-offset-9 {
        margin-left: 75%;
    }
    .medium-11 {
        width: 91.66667%;
    }
    .medium-push-11 {
        position: relative;
        left: 91.66667%;
    }
    .medium-pull-11 {
        position: relative;
        left: -91.66667%;
    }
    .medium-offset-10 {
        margin-left: 83.33333%;
    }
    .medium-12 {
        width: 100%;
    }
    .medium-offset-11 {
        margin-left: 91.66667%;
    }
    .medium-up-1>.column,
    .medium-up-1>.columns {
        float: left;
        width: 100%;
    }
    .medium-up-1>.column:nth-of-type(1n),
    .medium-up-1>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-1>.column:nth-of-type(1n+1),
    .medium-up-1>.columns:nth-of-type(1n+1) {
        clear: both;
    }
    .medium-up-1>.column:last-child,
    .medium-up-1>.columns:last-child {
        float: left;
    }
    .medium-up-2>.column,
    .medium-up-2>.columns {
        float: left;
        width: 50%;
    }
    .medium-up-2>.column:nth-of-type(1n),
    .medium-up-2>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-2>.column:nth-of-type(2n+1),
    .medium-up-2>.columns:nth-of-type(2n+1) {
        clear: both;
    }
    .medium-up-2>.column:last-child,
    .medium-up-2>.columns:last-child {
        float: left;
    }
    .medium-up-3>.column,
    .medium-up-3>.columns {
        float: left;
        width: 33.33333%;
    }
    .medium-up-3>.column:nth-of-type(1n),
    .medium-up-3>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-3>.column:nth-of-type(3n+1),
    .medium-up-3>.columns:nth-of-type(3n+1) {
        clear: both;
    }
    .medium-up-3>.column:last-child,
    .medium-up-3>.columns:last-child {
        float: left;
    }
    .medium-up-4>.column,
    .medium-up-4>.columns {
        float: left;
        width: 25%;
    }
    .medium-up-4>.column:nth-of-type(1n),
    .medium-up-4>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-4>.column:nth-of-type(4n+1),
    .medium-up-4>.columns:nth-of-type(4n+1) {
        clear: both;
    }
    .medium-up-4>.column:last-child,
    .medium-up-4>.columns:last-child {
        float: left;
    }
    .medium-up-5>.column,
    .medium-up-5>.columns {
        float: left;
        width: 20%;
    }
    .medium-up-5>.column:nth-of-type(1n),
    .medium-up-5>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-5>.column:nth-of-type(5n+1),
    .medium-up-5>.columns:nth-of-type(5n+1) {
        clear: both;
    }
    .medium-up-5>.column:last-child,
    .medium-up-5>.columns:last-child {
        float: left;
    }
    .medium-up-6>.column,
    .medium-up-6>.columns {
        float: left;
        width: 16.66667%;
    }
    .medium-up-6>.column:nth-of-type(1n),
    .medium-up-6>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-6>.column:nth-of-type(6n+1),
    .medium-up-6>.columns:nth-of-type(6n+1) {
        clear: both;
    }
    .medium-up-6>.column:last-child,
    .medium-up-6>.columns:last-child {
        float: left;
    }
    .medium-up-7>.column,
    .medium-up-7>.columns {
        float: left;
        width: 14.28571%;
    }
    .medium-up-7>.column:nth-of-type(1n),
    .medium-up-7>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-7>.column:nth-of-type(7n+1),
    .medium-up-7>.columns:nth-of-type(7n+1) {
        clear: both;
    }
    .medium-up-7>.column:last-child,
    .medium-up-7>.columns:last-child {
        float: left;
    }
    .medium-up-8>.column,
    .medium-up-8>.columns {
        float: left;
        width: 12.5%;
    }
    .medium-up-8>.column:nth-of-type(1n),
    .medium-up-8>.columns:nth-of-type(1n) {
        clear: none;
    }
    .medium-up-8>.column:nth-of-type(8n+1),
    .medium-up-8>.columns:nth-of-type(8n+1) {
        clear: both;
    }
    .medium-up-8>.column:last-child,
    .medium-up-8>.columns:last-child {
        float: left;
    }
    .medium-collapse>.column,
    .medium-collapse>.columns {
        padding-right: 0;
        padding-left: 0;
    }
    .medium-collapse .row {
        margin-right: 0;
        margin-left: 0;
    }
    .expanded.row .medium-collapse.row {
        margin-right: 0;
        margin-left: 0;
    }
    .medium-uncollapse>.column,
    .medium-uncollapse>.columns {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .medium-centered {
        margin-right: auto;
        margin-left: auto;
    }
    .medium-centered,
    .medium-centered:last-child:not(:first-child) {
        float: none;
        clear: both;
    }
    .medium-uncentered,
    .medium-push-0,
    .medium-pull-0 {
        position: static;
        float: left;
        margin-right: 0;
        margin-left: 0;
    }
}

@media print,
screen and (min-width: 64em) {
    .large-1 {
        width: 8.33333%;
    }
    .large-push-1 {
        position: relative;
        left: 8.33333%;
    }
    .large-pull-1 {
        position: relative;
        left: -8.33333%;
    }
    .large-offset-0 {
        margin-left: 0%;
    }
    .large-2 {
        width: 16.66667%;
    }
    .large-push-2 {
        position: relative;
        left: 16.66667%;
    }
    .large-pull-2 {
        position: relative;
        left: -16.66667%;
    }
    .large-offset-1 {
        margin-left: 8.33333%;
    }
    .large-3 {
        width: 25%;
    }
    .large-push-3 {
        position: relative;
        left: 25%;
    }
    .large-pull-3 {
        position: relative;
        left: -25%;
    }
    .large-offset-2 {
        margin-left: 16.66667%;
    }
    .large-4 {
        width: 33.33333%;
    }
    .large-push-4 {
        position: relative;
        left: 33.33333%;
    }
    .large-pull-4 {
        position: relative;
        left: -33.33333%;
    }
    .large-offset-3 {
        margin-left: 25%;
    }
    .large-5 {
        width: 41.66667%;
    }
    .large-push-5 {
        position: relative;
        left: 41.66667%;
    }
    .large-pull-5 {
        position: relative;
        left: -41.66667%;
    }
    .large-offset-4 {
        margin-left: 33.33333%;
    }
    .large-6 {
        width: 50%;
    }
    .large-push-6 {
        position: relative;
        left: 50%;
    }
    .large-pull-6 {
        position: relative;
        left: -50%;
    }
    .large-offset-5 {
        margin-left: 41.66667%;
    }
    .large-7 {
        width: 58.33333%;
    }
    .large-push-7 {
        position: relative;
        left: 58.33333%;
    }
    .large-pull-7 {
        position: relative;
        left: -58.33333%;
    }
    .large-offset-6 {
        margin-left: 50%;
    }
    .large-8 {
        width: 66.66667%;
    }
    .large-push-8 {
        position: relative;
        left: 66.66667%;
    }
    .large-pull-8 {
        position: relative;
        left: -66.66667%;
    }
    .large-offset-7 {
        margin-left: 58.33333%;
    }
    .large-9 {
        width: 75%;
    }
    .large-push-9 {
        position: relative;
        left: 75%;
    }
    .large-pull-9 {
        position: relative;
        left: -75%;
    }
    .large-offset-8 {
        margin-left: 66.66667%;
    }
    .large-10 {
        width: 83.33333%;
    }
    .large-push-10 {
        position: relative;
        left: 83.33333%;
    }
    .large-pull-10 {
        position: relative;
        left: -83.33333%;
    }
    .large-offset-9 {
        margin-left: 75%;
    }
    .large-11 {
        width: 91.66667%;
    }
    .large-push-11 {
        position: relative;
        left: 91.66667%;
    }
    .large-pull-11 {
        position: relative;
        left: -91.66667%;
    }
    .large-offset-10 {
        margin-left: 83.33333%;
    }
    .large-12 {
        width: 100%;
    }
    .large-offset-11 {
        margin-left: 91.66667%;
    }
    .large-up-1>.column,
    .large-up-1>.columns {
        float: left;
        width: 100%;
    }
    .large-up-1>.column:nth-of-type(1n),
    .large-up-1>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-1>.column:nth-of-type(1n+1),
    .large-up-1>.columns:nth-of-type(1n+1) {
        clear: both;
    }
    .large-up-1>.column:last-child,
    .large-up-1>.columns:last-child {
        float: left;
    }
    .large-up-2>.column,
    .large-up-2>.columns {
        float: left;
        width: 50%;
    }
    .large-up-2>.column:nth-of-type(1n),
    .large-up-2>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-2>.column:nth-of-type(2n+1),
    .large-up-2>.columns:nth-of-type(2n+1) {
        clear: both;
    }
    .large-up-2>.column:last-child,
    .large-up-2>.columns:last-child {
        float: left;
    }
    .large-up-3>.column,
    .large-up-3>.columns {
        float: left;
        width: 33.33333%;
    }
    .large-up-3>.column:nth-of-type(1n),
    .large-up-3>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-3>.column:nth-of-type(3n+1),
    .large-up-3>.columns:nth-of-type(3n+1) {
        clear: both;
    }
    .large-up-3>.column:last-child,
    .large-up-3>.columns:last-child {
        float: left;
    }
    .large-up-4>.column,
    .large-up-4>.columns {
        float: left;
        width: 25%;
    }
    .large-up-4>.column:nth-of-type(1n),
    .large-up-4>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-4>.column:nth-of-type(4n+1),
    .large-up-4>.columns:nth-of-type(4n+1) {
        clear: both;
    }
    .large-up-4>.column:last-child,
    .large-up-4>.columns:last-child {
        float: left;
    }
    .large-up-5>.column,
    .large-up-5>.columns {
        float: left;
        width: 20%;
    }
    .large-up-5>.column:nth-of-type(1n),
    .large-up-5>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-5>.column:nth-of-type(5n+1),
    .large-up-5>.columns:nth-of-type(5n+1) {
        clear: both;
    }
    .large-up-5>.column:last-child,
    .large-up-5>.columns:last-child {
        float: left;
    }
    .large-up-6>.column,
    .large-up-6>.columns {
        float: left;
        width: 16.66667%;
    }
    .large-up-6>.column:nth-of-type(1n),
    .large-up-6>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-6>.column:nth-of-type(6n+1),
    .large-up-6>.columns:nth-of-type(6n+1) {
        clear: both;
    }
    .large-up-6>.column:last-child,
    .large-up-6>.columns:last-child {
        float: left;
    }
    .large-up-7>.column,
    .large-up-7>.columns {
        float: left;
        width: 14.28571%;
    }
    .large-up-7>.column:nth-of-type(1n),
    .large-up-7>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-7>.column:nth-of-type(7n+1),
    .large-up-7>.columns:nth-of-type(7n+1) {
        clear: both;
    }
    .large-up-7>.column:last-child,
    .large-up-7>.columns:last-child {
        float: left;
    }
    .large-up-8>.column,
    .large-up-8>.columns {
        float: left;
        width: 12.5%;
    }
    .large-up-8>.column:nth-of-type(1n),
    .large-up-8>.columns:nth-of-type(1n) {
        clear: none;
    }
    .large-up-8>.column:nth-of-type(8n+1),
    .large-up-8>.columns:nth-of-type(8n+1) {
        clear: both;
    }
    .large-up-8>.column:last-child,
    .large-up-8>.columns:last-child {
        float: left;
    }
    .large-collapse>.column,
    .large-collapse>.columns {
        padding-right: 0;
        padding-left: 0;
    }
    .large-collapse .row {
        margin-right: 0;
        margin-left: 0;
    }
    .expanded.row .large-collapse.row {
        margin-right: 0;
        margin-left: 0;
    }
    .large-uncollapse>.column,
    .large-uncollapse>.columns {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .large-centered {
        margin-right: auto;
        margin-left: auto;
    }
    .large-centered,
    .large-centered:last-child:not(:first-child) {
        float: none;
        clear: both;
    }
    .large-uncentered,
    .large-push-0,
    .large-pull-0 {
        position: static;
        float: left;
        margin-right: 0;
        margin-left: 0;
    }
}

.column-block {
    margin-bottom: 1rem;
}

.column-block> :last-child {
    margin-bottom: 0;
}

@media print,
screen and (min-width: 48em) {
    .column-block {
        margin-bottom: 1rem;
    }
    .column-block> :last-child {
        margin-bottom: 0;
    }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1rem;
    font-size: inherit;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

em,
i {
    font-style: italic;
    line-height: inherit;
}

strong,
b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 80%;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
    color: inherit;
    text-rendering: optimizeLegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    line-height: 0;
    color: #cacaca;
}

h1 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 30px 0 10px 0;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1rem;
}

@media print,
screen and (min-width: 48em) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    h4 {
        font-size: 1.4rem;
    }
    h5 {
        font-size: 1.4rem;
    }
    h6 {
        font-size: 1.4rem;
    }
}

a {
    line-height: inherit;
    color: #1779ba;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #1468a0;
}

a img {
    border: 0;
}

hr {
    clear: both;
    max-width: 120rem;
    height: 0;
    margin: 2rem auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #cacaca;
    border-left: 0;
}

ul,
ol,
dl {
    margin-bottom: 1rem;
    list-style-position: outside;
    line-height: 1.6;
}

li {
    font-size: inherit;
}

ul {
    margin-left: 1.25rem;
    list-style-type: disc;
}

ol {
    margin-left: 1.25rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-left: 1.25rem;
    margin-bottom: 0;
}

dl {
    margin-bottom: 1rem;
}

dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold;
}

blockquote {
    margin: 0 0 1rem;
    padding: 0.9rem 2rem 0 1.9rem;
    border-left: 1px solid #cacaca;
}

blockquote,
blockquote p {
    line-height: 1.6;
    color: #8a8a8a;
}

cite {
    display: block;
    font-size: 1.3rem;
    color: #8a8a8a;
}

cite:before {
    content: "— ";
}

abbr {
    border-bottom: 1px dotted #000000;
    color: #000000;
    cursor: help;
}

figure {
    margin: 0;
}

code {
    padding: 0.2rem 0.5rem 0.1rem;
    border: 1px solid #cacaca;
    background-color: #e6e6e6;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #000000;
}

kbd {
    margin: 0;
    padding: 0.2rem 0.4rem 0;
    background-color: #e6e6e6;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    color: #000000;
}

.subheader {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #8a8a8a;
}

.lead {
    font-size: 78.125%;
    line-height: 1.6;
}

.stat {
    font-size: 2.5rem;
    line-height: 1;
}

p+.stat {
    margin-top: -1rem;
}

.no-bullet {
    margin-left: 0;
    list-style: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

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

.size-small {
    font-size: 11px;
}

@media print,
screen and (min-width: 48em) {
    .medium-text-left {
        text-align: left;
    }
    .medium-text-right {
        text-align: right;
    }
    .medium-text-center {
        text-align: center;
    }
    .medium-text-justify {
        text-align: justify;
    }
}

@media print,
screen and (min-width: 64em) {
    .large-text-left {
        text-align: left;
    }
    .large-text-right {
        text-align: right;
    }
    .large-text-center {
        text-align: center;
    }
    .large-text-justify {
        text-align: justify;
    }
}

.show-for-print {
    display: none !important;
}

@media print {
    * {
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: black !important;
        text-shadow: none !important;
    }
    .show-for-print {
        display: block !important;
    }
    .hide-for-print {
        display: none !important;
    }
    table.show-for-print {
        display: table !important;
    }
    thead.show-for-print {
        display: table-header-group !important;
    }
    tbody.show-for-print {
        display: table-row-group !important;
    }
    tr.show-for-print {
        display: table-row !important;
    }
    td.show-for-print {
        display: table-cell !important;
    }
    th.show-for-print {
        display: table-cell !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: '';
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    pre,
    blockquote {
        border: 1px solid #8a8a8a;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .print-break-inside {
        page-break-inside: auto;
    }
}

[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 3.9rem;
    margin: 0 0 1.6rem;
    padding: 0.8rem;
    border-radius: 0;
    background-color: #FFFFFF;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: normal;
    color: #000000;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 4px solid #f0f0f0;
}

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 5px #cacaca;
    box-shadow: 0 0 5px #cacaca;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

textarea {
    max-width: 100%;
}

textarea[rows] {
    height: auto;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #8a8a8a;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #8a8a8a;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #8a8a8a;
}

input::placeholder,
textarea::placeholder {
    color: #8a8a8a;
}

input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
    background-color: #e6e6e6;
    cursor: not-allowed;
}

[type='submit'],
[type='button'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input[type='search'] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[type='file'],
[type='checkbox'],
[type='radio'] {
    margin: 0 0 1.6rem;
}

[type='checkbox']+label,
[type='radio']+label {
    display: inline-block;
    vertical-align: baseline;
    margin-left: 0.8rem;
    margin-right: 1.6rem;
    margin-bottom: 0;
}

[type='checkbox']+label[for],
[type='radio']+label[for] {
    cursor: pointer;
}

label>[type='checkbox'],
label>[type='radio'] {
    margin-right: 0.8rem;
}

[type='file'] {
    width: 100%;
}

label {
    display: block;
    margin: 0;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.8;
    color: inherit;
}

label.middle {
    margin: 0 0 1.6rem;
    padding: 0.9rem 0;
}

.help-text {
    margin-top: -0.8rem;
    font-size: 1.3rem;
    font-style: italic;
    color: #000000;
}

.input-group {
    display: table;
    width: 100%;
    margin-bottom: 1.6rem;
}

.input-group> :first-child {
    border-radius: 0 0 0 0;
}

.input-group> :last-child>* {
    border-radius: 0 0 0 0;
}

.input-group-label,
.input-group-field,
.input-group-button,
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
    margin: 0;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle;
}

.input-group-label {
    padding: 0 1rem;
    border: 1px solid #cacaca;
    background: #e6e6e6;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    width: 1%;
    height: 100%;
}

.input-group-label:first-child {
    border-right: 0;
}

.input-group-label:last-child {
    border-left: 0;
}

.input-group-field {
    border-radius: 0;
    height: 4rem;
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 1%;
    height: 100%;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
    height: 4rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.6rem;
}

.input-group .input-group-button {
    display: table-cell;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    max-width: 100%;
    margin-bottom: 0.8rem;
}

.fieldset {
    margin: 1.8rem 0;
    padding: 2rem;
    border: 1px solid #cacaca;
}

.fieldset legend {
    margin: 0;
    margin-left: -0.3rem;
    padding: 0 0.3rem;
    background: #FFFFFF;
}

select {
    height: 3.9rem;
    margin: 0 0 1.6rem;
    padding: 0.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #FFFFFF;
    font-family: inherit;
    font-size: 1.6rem;
    line-height: normal;
    color: #000000;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1.6rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 2.4rem;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

@media screen and (min-width: 0\0) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
    }
}

select:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 5px #cacaca;
    box-shadow: 0 0 5px #cacaca;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

select:disabled {
    background-color: #e6e6e6;
    cursor: not-allowed;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    height: auto;
    background-image: none;
}

.is-invalid-input:not(:focus) {
    border-color: #cc4b37;
    background-color: #faedeb;
}

.is-invalid-input:not(:focus)::-webkit-input-placeholder {
    color: #cc4b37;
}

.is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #cc4b37;
}

.is-invalid-input:not(:focus)::-ms-input-placeholder {
    color: #cc4b37;
}

.is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37;
}

.is-invalid-label {
    color: #cc4b37;
}

.form-error {
    display: none;
    margin-top: -0.8rem;
    margin-bottom: 1.6rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #cc4b37;
}

.form-error.is-visible {
    display: block;
}

.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #1779ba;
    color: #FFFFFF;
}

#enter-navi .button {
    padding: 10px;
}

[data-whatinput='mouse'] .button {
    outline: 0;
}

.button.tiny {
    font-size: 1.1rem;
}

.button.small {
    font-size: 1.2rem;
}

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

.button.expanded {
    header-block display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.button.primary {
    background-color: #1779ba;
    color: #FFFFFF;
}

.button.secondary {
    background-color: #767676;
    color: #000000;
}

.button.success {
    background-color: #3adb76;
    color: #000000;
}

.button.warning {
    background-color: #ffae00;
    color: #000000;
}

.button.alert {
    background-color: #cc4b37;
    color: #000000;
}

.button.hollow {
    border: 1px solid #1779ba;
    color: #1779ba;
}

.button.hollow,
.button.hollow:hover,
.button.hollow:focus {
    background-color: transparent;
}

.button.hollow:hover,
.button.hollow:focus {
    border-color: #0c3d5d;
    color: #0c3d5d;
}

.button.hollow.primary {
    border: 1px solid #1779ba;
    color: #1779ba;
}

.button.hollow.primary:hover,
.button.hollow.primary:focus {
    border-color: #0c3d5d;
    color: #0c3d5d;
}

.button.hollow.secondary {
    border: 1px solid #767676;
    color: #767676;
}

.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
    border-color: #3b3b3b;
    color: #3b3b3b;
}

.button.hollow.success {
    border: 1px solid #3adb76;
    color: #3adb76;
}

.button.hollow.success:hover,
.button.hollow.success:focus {
    border-color: #157539;
    color: #157539;
}

.button.hollow.warning {
    border: 1px solid #ffae00;
    color: #ffae00;
}

.button.hollow.warning:hover,
.button.hollow.warning:focus {
    border-color: #805700;
    color: #805700;
}

.button.hollow.alert {
    border: 1px solid #cc4b37;
    color: #cc4b37;
}

.button.hollow.alert:hover,
.button.hollow.alert:focus {
    border-color: #67251a;
    color: #67251a;
}

.button.clear {
    border: 1px solid transparent;
    color: #1779ba;
}

.button.clear,
.button.clear:hover,
.button.clear:focus {
    background-color: transparent;
}

.button.clear:hover,
.button.clear:focus {
    border-color: transparent;
    color: #0c3d5d;
}

.button.clear.primary {
    border: 1px solid transparent;
    color: #1779ba;
}

.button.clear.primary:hover,
.button.clear.primary:focus {
    border-color: transparent;
    color: #0c3d5d;
}

.button.clear.secondary {
    border: 1px solid transparent;
    color: #767676;
}

.button.clear.secondary:hover,
.button.clear.secondary:focus {
    border-color: transparent;
    color: #3b3b3b;
}

.button.clear.success {
    border: 1px solid transparent;
    color: #3adb76;
}

.button.clear.success:hover,
.button.clear.success:focus {
    border-color: transparent;
    color: #157539;
}

.button.clear.warning {
    border: 1px solid transparent;
    color: #ffae00;
}

.button.clear.warning:hover,
.button.clear.warning:focus {
    border-color: transparent;
    color: #805700;
}

.button.clear.alert {
    border: 1px solid transparent;
    color: #cc4b37;
}

.button.clear.alert:hover,
.button.clear.alert:focus {
    border-color: transparent;
    color: #67251a;
}

.button.disabled,
.button[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus {
    background-color: #1779ba;
    color: #FFFFFF;
}

.button.disabled.primary,
.button[disabled].primary {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.primary,
.button.disabled.primary:hover,
.button.disabled.primary:focus,
.button[disabled].primary,
.button[disabled].primary:hover,
.button[disabled].primary:focus {
    background-color: #1779ba;
    color: #FFFFFF;
}

.button.disabled.secondary,
.button[disabled].secondary {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.secondary,
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
    background-color: #767676;
    color: #000000;
}

.button.disabled.success,
.button[disabled].success {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.success,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success,
.button[disabled].success:hover,
.button[disabled].success:focus {
    background-color: #3adb76;
    color: #000000;
}

.button.disabled.warning,
.button[disabled].warning {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.warning,
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
    background-color: #ffae00;
    color: #000000;
}

.button.disabled.alert,
.button[disabled].alert {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.alert,
.button.disabled.alert:hover,
.button.disabled.alert:focus,
.button[disabled].alert,
.button[disabled].alert:hover,
.button[disabled].alert:focus {
    background-color: #cc4b37;
    color: #000000;
}

.button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #FFFFFF transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em;
}

.button.dropdown.hollow::after {
    border-top-color: #1779ba;
}

.button.dropdown.hollow.primary::after {
    border-top-color: #1779ba;
}

.button.dropdown.hollow.secondary::after {
    border-top-color: #767676;
}

.button.dropdown.hollow.success::after {
    border-top-color: #3adb76;
}

.button.dropdown.hollow.warning::after {
    border-top-color: #ffae00;
}

.button.dropdown.hollow.alert::after {
    border-top-color: #cc4b37;
}

.button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0;
}

.callout {
    position: relative;
    margin: 0 0 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0;
    background-color: white;
    color: #000000;
}

.callout> :first-child {
    margin-top: 0;
}

.callout> :last-child {
    margin-bottom: 0;
}

.callout.primary {
    background-color: #d7ecfa;
    color: #000000;
}

.callout.secondary {
    background-color: #eaeaea;
    color: #000000;
}

.callout.success {
    background-color: #e1faea;
    color: #000000;
}

.callout.warning {
    background-color: #fff3d9;
    color: #000000;
}

.callout.alert {
    background-color: #f7e4e1;
    color: #000000;
}

.callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem;
}

.responsive-embed,
.flex-video {
    position: relative;
    height: 0;
    margin-bottom: 1.6rem;
    padding-bottom: 75%;
    overflow: hidden;
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-embed.widescreen,
.flex-video.widescreen {
    padding-bottom: 56.25%;
}

.label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    background: #1779ba;
    color: #FFFFFF;
}

.label.primary {
    background: #1779ba;
    color: #FFFFFF;
}

.label.secondary {
    background: #767676;
    color: #000000;
}

.label.success {
    background: #3adb76;
    color: #000000;
}

.label.warning {
    background: #ffae00;
    color: #000000;
}

.label.alert {
    background: #cc4b37;
    color: #000000;
}

.media-object {
    display: block;
    margin-bottom: 1rem;
}

.media-object img {
    max-width: none;
}

@media screen and (max-width: 47.9375em) {
    .shop-info address {
        text-align: center;
    }
    .recruit_content {
        padding: 50px 20px;
    }
    .price p img {
        max-width: 100%;
        padding: 10px 0;
    }
    #enter-image {
        margin: 120px 0;
    }
    .material-scrolltop {
        bottom: 80px;
    }
    .enter_widget img {
        max-width: 300px!important;
    }
    .media-object.stack-for-small .media-object-section {
        padding: 0;
        padding-bottom: 1rem;
        display: block;
    }
    .media-object.stack-for-small .media-object-section img {
        width: 100%;
    }
    #members-button img {
        max-width: 100%;
        height: auto;
    }
    .smart_tel {
        display: none;
    }
    #members-button a,
    .smart_tel a {
        display: block;
        text-align: center;
        transition: all .6s;
    }
}

.media-object-section {
    display: table-cell;
    vertical-align: top;
}

.media-object-section:first-child {
    padding-right: 1rem;
}

.media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem;
}

.media-object-section> :last-child {
    margin-bottom: 0;
}

.media-object-section.middle {
    vertical-align: middle;
}

.media-object-section.bottom {
    vertical-align: bottom;
}

.is-off-canvas-open {
    overflow: hidden;
}

.js-off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: rgba(255, 255, 255, 0.25);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.js-off-canvas-overlay.is-closable {
    cursor: pointer;
}

.js-off-canvas-overlay.is-overlay-absolute {
    position: absolute;
}

.js-off-canvas-overlay.is-overlay-fixed {
    position: fixed;
}

.off-canvas-wrapper {
    position: relative;
    overflow: hidden;
}

.off-canvas {
    position: fixed;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #e6e6e6;
}

[data-whatinput='mouse'] .off-canvas {
    outline: 0;
}

.off-canvas.is-transition-overlap {
    z-index: 10;
}

.off-canvas.is-transition-overlap.is-open {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.off-canvas.is-open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.off-canvas-absolute {
    position: absolute;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #e6e6e6;
}

[data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0;
}

.off-canvas-absolute.is-transition-overlap {
    z-index: 10;
}

.off-canvas-absolute.is-transition-overlap.is-open {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.off-canvas-absolute.is-open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.position-left {
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
    overflow-y: auto;
}


/* #archive-cast ul:first-child:before{
        content:'grace';
    } */

.position-left.is-open~.off-canvas-content {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
}

.position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-left.is-transition-overlap.is-open~.off-canvas-content {
    -webkit-transform: none;
    transform: none;
}

.position-right {
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
    overflow-y: auto;
}

.position-right.is-open~.off-canvas-content {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}

.position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-right.is-transition-overlap.is-open~.off-canvas-content {
    -webkit-transform: none;
    transform: none;
}

.position-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    -webkit-transform: translateY(-250px);
    transform: translateY(-250px);
    overflow-x: auto;
}

.position-top.is-open~.off-canvas-content {
    -webkit-transform: translateY(250px);
    transform: translateY(250px);
}

.position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-top.is-transition-overlap.is-open~.off-canvas-content {
    -webkit-transform: none;
    transform: none;
}

.position-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    -webkit-transform: translateY(250px);
    transform: translateY(250px);
    overflow-x: auto;
}

.position-bottom.is-open~.off-canvas-content {
    -webkit-transform: translateY(-250px);
    transform: translateY(-250px);
}

.position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-bottom.is-transition-overlap.is-open~.off-canvas-content {
    -webkit-transform: none;
    transform: none;
}

.off-canvas-content {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media print,
screen and (min-width: 48em) {
    .page-id-852175 section {
        padding: 70px 0;
    }
    .position-left.reveal-for-medium {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-left.reveal-for-medium~.off-canvas-content {
        margin-left: 250px;
    }
    .position-right.reveal-for-medium {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-right.reveal-for-medium~.off-canvas-content {
        margin-right: 250px;
    }
    .position-top.reveal-for-medium {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-top.reveal-for-medium~.off-canvas-content {
        margin-top: 250px;
    }
    .position-bottom.reveal-for-medium {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-bottom.reveal-for-medium~.off-canvas-content {
        margin-bottom: 250px;
    }
}

@media print,
screen and (min-width: 64em) {
    .position-left.reveal-for-large {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-left.reveal-for-large~.off-canvas-content {
        margin-left: 250px;
    }
    .position-right.reveal-for-large {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-right.reveal-for-large~.off-canvas-content {
        margin-right: 250px;
    }
    .position-top.reveal-for-large {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-top.reveal-for-large~.off-canvas-content {
        margin-top: 250px;
    }
    .position-bottom.reveal-for-large {
        -webkit-transform: none;
        transform: none;
        z-index: 1;
    }
    .position-bottom.reveal-for-large~.off-canvas-content {
        margin-bottom: 250px;
    }
}

.orbit {
    position: relative;
}

.orbit-container {
    position: relative;
    height: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

.orbit-slide {
    width: 100%;
}

.orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0;
}

.orbit-figure {
    margin: 0;
}

.orbit-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.orbit-previous,
.orbit-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #FFFFFF;
}

[data-whatinput='mouse'] .orbit-previous,
[data-whatinput='mouse'] .orbit-next {
    outline: 0;
}

.orbit-previous:hover,
.orbit-next:hover,
.orbit-previous:active,
.orbit-next:active,
.orbit-previous:focus,
.orbit-next:focus {
    background-color: rgba(0, 0, 0, 0.5);
}

.orbit-previous {
    left: 0;
}

.orbit-next {
    left: auto;
    right: 0;
}

.orbit-bullets {
    position: relative;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

[data-whatinput='mouse'] .orbit-bullets {
    outline: 0;
}

.orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #cacaca;
}

.orbit-bullets button:hover {
    background-color: #8a8a8a;
}

.orbit-bullets button.is-active {
    background-color: #8a8a8a;
}

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0;
}

caption {
    padding: 0.8rem 1rem 1rem;
    font-weight: bold;
}

thead {
    background: rgba(6, 6, 6, 0);
    color: inherit;
}

tfoot {
    background: rgba(13, 13, 13, 0);
    color: #000000;
}

thead tr,
tfoot tr {
    background: transparent;
}

thead th,
thead td,
tfoot th,
tfoot td {
    padding: 0.8rem 1rem 1rem;
    font-weight: bold;
    text-align: left;
}

tbody th,
tbody td {
    padding: 0.8rem 1rem 1rem;
}

tbody tr {
    border-bottom: 0;
    background-color: transparent;
}

table.striped tbody tr:nth-child(even) {}

@media screen and (max-width: 63.9375em) {
    table.stack thead {
        display: none;
    }
    table.stack tfoot {
        display: none;
    }
    table.stack tr,
    table.stack th,
    table.stack td {
        display: block;
    }
    table.stack td {
        border-top: 0;
    }
}

table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto;
}

table.hover thead tr:hover {
    background-color: rgba(1, 1, 1, 0);
}

table.hover tfoot tr:hover {
    background-color: rgba(8, 8, 8, 0);
}

table.hover tbody tr:hover {
    background-color: transparent;
}

table.hover.striped tr:nth-of-type(even):hover {
    background-color: transparent;
}

.table-scroll {
    overflow-x: auto;
}

.table-scroll table {
    width: auto;
}

.hide {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

@media screen and (max-width: 47.9375em) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0em),
screen and (min-width: 48em) {
    .show-for-small-only {
        display: none !important;
    }
}

@media print,
screen and (min-width: 48em) {
    .hide-for-medium,
    .smart_phone {
        display: none !important;
    }
    .cast-frame .cast-icon-lists {
        text-align: center;
        margin: 5px 0;
    }
}

@media screen and (max-width: 47.9375em) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 47.9375em),
screen and (min-width: 64em) {
    .show-for-medium-only {
        display: none !important;
    }
    .ul-4cols {
        display: block;
    }
}

@media print,
screen and (min-width: 64em) {
    .hide-for-large {
        display: none !important;
    }
    #main-content .widget-title .title-name,
    .page-id-852175 .page-title .title-name,
    .page-id-852175 .profile-title .title-name {
        font-size: 5rem!important;
    }
}

@media screen and (max-width: 63.9375em) {
    #header-block-col {
        text-align: center;
    }
    .enter_bg {
        height: 280px;
    }
    .page-template-page-entrance #enter-image {
        margin: 37px 0 170px 0;
    }
    .page-template-page-entrance #enter-image img {
        max-width: 200px;
        height: auto;
    }
    #text-6 {
        padding: 16px;
    }
    #ul-pagelink li {
        width: 50%;
    }
    .cta {
        display: block;
        width: 100%;
        padding: 0;
        margin: 5px 0;
    }
    .cta li a {
        display: block;
        margin: 10px 0;
    }
    #ul-pagelink {
        width: 100%;
        border-top: 1px solid #c7b776;
        border-bottom: 1px solid #c7b776;
        text-align: center;
        margin: 25px auto;
        display: flex;
        flex-wrap: wrap;
    }
    .show-for-large {
        display: none !important;
    }
    #content-block {
        background-size: 100% auto;
    }
    #enter-navi {
        margin: 14rem auto;
    }
    #enter-image {
        margin: 0;
    }
    .page-template-page-entrance #enter-button a,
    .page-template-page-entrance #leave-button a {
        background-size: 321px;
    }
}

@media screen and (min-width: 64em) and (max-width: 79.9375em) {
    .hide-for-large-only,
    #drawer-menu {
        display: none !important;
    }
}

@media screen and (max-width: 63.9375em),
screen and (min-width: 80em) {
    .show-for-large-only {
        display: none !important;
    }
}

.show-for-sr,
.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.show-on-focus:active,
.show-on-focus:focus {
    position: static !important;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

.show-for-landscape,
.hide-for-portrait {
    display: block !important;
}

@media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
        display: block !important;
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
        display: none !important;
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important;
}

@media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
        display: block !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.clearfix::before,
.clearfix::after {
    display: table;
    content: ' ';
}

.clearfix::after {
    clear: both;
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: #FFFFFF;
    /* Fallback for when there is no custom background color defined. */
}

blockquote,
q {
    quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

hr {
    background-color: #cacaca;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

button,
input,
select,
textarea {
    color: #000000;
    /* font-family: -apple-system, BlinkMacSystemFont, "Lato", "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; */
    font-size: 1.4rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}


/*--------------------------------------------------------------
# lazysizes
--------------------------------------------------------------*/

img.lazyload,
img.lazyloading {
    opacity: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

img.lazyloaded {
    opacity: 1;
}


/*--------------------------------------------------------------
#Header
--------------------------------------------------------------*/

.border_line {
    height: 3px;
    width: 100%;
    background: url(assets/images/border.jpg) no-repeat center top;
}

.site_catch {
    text-align: center;
    font-size: 14px;
    padding: 10px;
}

.shop_name {
    position: absolute;
    top: 70px;
    left: 175px;
    text-indent: -9999px;
    width: 193px;
    height: 45px;
    background-image: url(assets/images/shop_name.png);
    background-size: 193px 45px;
}

#header {
    position: relative;
    z-index: 10;
    width: 100%;
    /*----------  header logo  ----------*/
    /*----------  header block  ----------*/
    /*----------  header sticking  ----------*/
}

#header #header-block {
    width: 100%;
    position: relative;
    display: flex;
}

#header #header-logo-col a img {
    height: 40px;
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin: 0 auto;
}

#header #header-logo-col a:hover img {
    opacity: .8;
}

#header #header-block-col {
    padding: 14px 0 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.slider_section {
    padding: 20px 0;
}

#header #header-block-col #header-menu-frame {
    font-family: '游明朝', " ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
    width: 100%;
}

#header #header-block-col .shop-info.open,
#header #header-block-col .shop-info.shop-tel {
    display: block;
    line-height: 1.4em;
}

#header #header-block-col .shop-info .shop-tel .tel .num {
    font-size: 2.6rem;
}

#header.sticking #logo img {
    max-width: 240px;
}

body {
    /* home */
    /* not home */
}

body.page-id-852173 #header.sticking {
    position: fixed;
    top: 0;
    left: 0;
}

body:not(.page-id-852173) #header.sticking {
    position: fixed;
    top: 0;
    left: 0;
}

body:not(.page-id-852173) #header.sticking.on {
    -webkit-animation: stickingmenu 0.4s ease-in-out;
    animation: stickingmenu 0.4s ease-in-out;
}

@-webkit-keyframes stickingmenu {
    0% {
        top: -100%;
    }
    50% {
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes stickingmenu {
    0% {
        top: -100%;
    }
    50% {
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}


/*----------  header widget  ----------*/

#top-header-widget-col .widget_cp5_image_slider {
    margin: 0;
}


/*--------------------------------------------------------------
# Contents
--------------------------------------------------------------*/

.page-id-852173 #contents {
    margin-top: 2rem;
}

#contents {
    margin-bottom: 2rem;
}

#primary .page-frame {
    backdrop-filter: blur(8px);
}


/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/

.post-inline-cast .cast_name {
    display: block;
    margin-bottom: 1rem;
}


/*========== common ==========*/


/*==========  nodata ==========*/

.no-data {
    padding: .5em 0;
}


/*==========  query count  ==========*/

.query-count .total-num,
.query-count .num {
    font-size: 1.6rem;
    font-weight: bold;
}


/*==========  page header ==========*/

.page-header {
    padding: 0;
    margin-bottom: 1rem;
}


/*==========  page wrap ==========*/

.entry-content,
.entry-footer {
    padding: 1rem;
}

.page-frame {
    padding: 0.5rem;
}


/*========== title ==========*/


/*==========  page title ==========*/

#main-content .widget-title,
.page-title,
.profile-title {
    padding: 1rem;
    font-weight: 800;
}

#main-content .widget-title .title-name,
.page-title .title-name,
.profile-title .title-name {
    font-size: 3rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    letter-spacing: -0.04em;
}

body.title-font-gothic .widget-title,
body.title-font-gothic .page-title,
body.title-font-gothic .profile-title {
    font-family: -apple-system, BlinkMacSystemFont, "Lato", "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

body.title-font-mincho .widget-title,
body.title-font-mincho .page-title,
body.title-font-mincho .profile-title {
    font-family: Century Gothic, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
}

thead,
tbody,
tfoot,
th,
td {
    border-left: none!important;
    border-right: none!important;
}


/*========== top ==========*/


/*==========  top ==========*/

.logdin {
    margin-bottom: 20px;
}

#top section .widget-title {
    margin-bottom: 2rem;
}

body.page-id-852173 #main-content {
    margin-bottom: 0;
}

#main-content h2.page-title .title-name {
    font-family: '游明朝', " ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
    padding: 30px 0 10px 0;
    font-size: 30px;
    position: relative;
}

#main-content h2.page-title .title-name:after {
    content: '';
    border-bottom: #2d416d 3px solid;
    width: 50px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
}


/*========== system ==========*/

#system table {
    width: 100%;
    margin: 0 0 2rem;
    table-layout: fixed;
}

#system table th,
#system table td {
    text-align: left;
    border-bottom: rgb(233, 233, 233) 1px solid;
}

#system .system-lead {
    margin: 0 0 2rem;
}

.f20 {
    font-size: 20px;
}

.cast-state-messege {
    display: none;
}


/*==========  cast list  ==========*/


/*=============================================
=            cast common           =
=============================================*/

.cast-image img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.cast-image:hover img {
    -webkit-transform: scale3d(1.01, 1.01, 1);
    transform: scale3d(1.01, 1.01, 1);
}


/*=============================================
=            cast page            =
=============================================*/

#cast-search-tag {
    margin: 0 0 1em;
}

#cast-search-tag #cast-search-frame ul {
    margin: 0;
}

#cast-sort-lists li {
    display: inline-block;
    padding: 0 .5rem;
}

#cast-sort-lists li .sort-label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    border-radius: 0.25rem;
    padding: .5rem;
}

#cast-order-lists li {
    display: inline-block;
    padding: 0 .5rem;
}

#cast-order-lists li .sort-label,
#cast-order-lists li .order-label,
#cast-sort-lists li .sort-label,
#cast-sort-lists li .order-label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    border-radius: 0.25rem;
    padding: .5rem;
}

#cast-order-lists li a.selected,
#cast-sort-lists li a.selected {
    font-weight: bold;
}

#cast-sort-lists li a,
#cast-sort-lists li a {
    display: block;
    padding: .3rem;
    border: solid 1px #d4d4d4;
}

.cast-lists-frame {
    margin: 0 0 2rem;
    padding: 0 1rem;
}

.cast-lists-frame li {
    text-align: center;
    padding: .5rem;
}

.cast-lists-frame li .cast-image {
    margin: 0 auto .5rem;
    position: relative;
    overflow: hidden;
}

.cast-lists-frame li .cast-image img {
    -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
    transition: opacity .6s ease, -webkit-transform .6s ease;
    transition: transform .6s ease, opacity .6s ease;
    transition: transform .6s ease, opacity .6s ease, -webkit-transform .6s ease;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cast-lists-frame li .cast-image img:hover {
    background: #FFF;
}

.cast-lists-frame li .cast-section .cast-ranking-icon {
    font-size: 24px;
    font-family: '游明朝', " ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
}

.cast-lists-frame li .cast-section .cast-name {
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

.cast-lists-frame li .cast-section .cast-name .age {
    font-size: 1.2rem;
}

.cast-lists-frame li .cast-section .cast-size {
    font-size: 1.4rem;
}

.cast-lists-frame li .cast-state-icon,
.cast-lists-frame li .mEx-time {
    font-size: 1.2rem;
}

.cast-state-icon span.machihime-icon {
    display: inline-block;
    text-align: center;
    width: 100%;
    color: #FFF;
    border-radius: 0rem;
    padding: 5px;
}


/*========== profile  ==========*/

#profile-frame {
    /*======================================
    =            profile common            =
    ======================================*/
    /*=====================================
    =            profile image            =
    =====================================*/
    /*=====================================
    =            profile detail          =
    =====================================*/
    /*=====================================
    =            profile Section         =
    =====================================*/
    /*=====  Chack List  ======*/
}

#profile-frame .profile-title {
    margin: 0 0 1rem;
}

#profile-frame .profile-title .title-name {
    font-size: 1.6rem;
}

#profile-frame .profile-frame {
    margin: 0 0 2rem;
}

#profile-frame #profile-main-image {
    margin: 0 0 1rem;
}

#profile-frame #profile-image #profile-thumbs li {
    padding: 0 .25rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#profile-frame #profile-image #profile-thumbs li.active img {
    opacity: .6;
}

#profile-frame #profile-image .profile-movie video {
    width: 100%;
    height: auto;
}

#profile-detail {
    margin: 20px 0;
}

#profile-detail #profile-name {
    font-weight: bold;
    font-size: 26px;
}

#profile-detail #profile-name .name {
    font-size: 1.8rem;
}

#profile-detail #profile-name .age {
    font-size: 1.6rem;
}

#profile-detail #profile-size {
    margin: 0 0 1rem;
}

#profile-detail #profire-wait-info {
    margin: 0 0 1rem;
}

#profile-detail #profile-icons {
    margin: 0 0 2rem;
}

#profile-detail .cast-checkform input {
    margin: 0;
}

#profile-detail .cast-checkform .label {
    width: 100%;
    margin: 0 0 .5rem;
    border-radius: 2px;
}

#profile-detail .cast-checkform label {
    color: #FFF;
}

#profile-frame #profile-section {
    /*=====  FAQ  ======*/
}

#profile-frame #profile-section .section-column>.column:nth-child(odd),
#profile-frame #profile-section .section-column>.columns:nth-child(odd),
#profile-frame #profile-section .section-column .columns:nth-child(odd) {
    padding-left: 0;
}

#profile-frame #profile-section .section-column>.column:nth-child(even),
#profile-frame #profile-section .section-column>.columns:nth-child(even),
#profile-frame #profile-section .section-column .columns:nth-child(even) {
    padding-right: 0;
}

#profile-frame dl.profile-faq-lists dt {
    width: 210px;
    float: left;
    clear: left;
    font-weight: bold;
    padding: 10px 0;
}

#profile-frame dl.profile-faq-lists dd {
    padding-left: 210px;
    padding: 10px 0;
    border-top: rgba(232, 232, 232, 1.00) 1px solid;
    margin: 0;
}

#profile-frame .profile-check-list {
    margin: 0 0 .25rem;
}

#profile-frame .profile-check-list .option-label {
    border: 1px solid #CCC;
    display: block;
    padding: .25rem .5rem;
    margin: 0 .25rem .25rem;
}

#profile-frame .profile-check-list .on .option-label {
    background: #f50057;
    color: #FFF;
    background-clip: padding-box;
}


/*==========  ranking  ==========*/

#ranking .ranking-title {
    margin: 0 0 1rem;
    font-weight: bold;
}


/*==========  schedule  ==========*/

.new-icon img {
    height: 10px;
    width: auto;
    margin-left: 10px;
}

.cast-schedule-time {
    padding: 5px 0;
}

.cast-state-icon {
    display: none;
}

a .cast-schedule-time {
    text-align: center!important;
}

#schedule-datepanel {
    display: block;
    margin: 0 0 2em;
    padding: 0;
    font-size: 16px;
    font-weight: 800;
    border-radius: 100px;
}

#schedule-datepanel li {
    text-align: center;
    padding: 0 .25em;
    display: inline-block;
    margin: 0 0 -1px;
}

#schedule-datepanel li.week-prev,
#schedule-datepanel li.week-next {
    float: left;
    width: 6.25%;
}

#schedule-datepanel li a {
    display: block;
    text-align: center;
    text-decoration: none;
    -webkit-transition: color 0.4s ease-out, background-color 0.4s ease-out, border-color 0.4s ease-out;
    transition: color 0.4s ease-out, background-color 0.4s ease-out, border-color 0.4s ease-out;
    color: #4b4b4b;
    font-weight: 700;
    font-weight: normal;
    text-align: center;
    background: linear-gradient(to top, #fcfcfc, #e4e1e1);
    transition: none;
    line-height: 46px;
    height: 46px;
    font-family: Century Gothic, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
}

#schedule-datepanel li,
#schedule-datepanel li.columns {
    padding: 0;
    margin: 0;
    border-right: rgb(182, 182, 182) 1px solid;
}

#schedule-datepanel li:last-child {
    border: none;
}

#schedule-datepanel li a.last {
    margin-right: 0;
}

#schedule-datepanel li a.active {
    color: #000;
}

#schedule-datepanel li a:hover {
    color: #000;
}

#schedule-datepanel li a.sat {
    color: #006;
}

#schedule-datepanel li a.sun {
    color: #e9007a;
}

#schedule-datepanel span.arrow {
    font-weight: 700;
}

#schedule-datepanel span.arrow .fa {
    font-size: 2.4rem;
    vertical-align: baseline;
    line-height: 1.6;
}

#schedule-datepanel span.month {
    display: inline;
    vertical-align: baseline;
}

#schedule-datepanel span.date {
    font-size: 12px;
}

#schedule-datepanel a.active {
    cursor: default;
}

#schedule-datepanel a.active span {
    cursor: default;
}


/*==========  schedule week ==========*/

#schedule-week .cast-frame {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

#schedule-week .cast-frame .cast-section .cast-detail {
    margin: 0 0 .5rem;
}

#schedule-week .cast-frame .cast-section .cast-detail .name,
#schedule-week .cast-frame .cast-section .cast-detail .age {
    font-weight: bold;
}

#schedule-week .cast-frame .cast-section .cast-detail .name {
    font-size: 1.6rem;
}

.profile-weekly-schedule-list,
.weekly-schedule-list {
    border: 1px solid #CCCCCC;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.profile-weekly-schedule-list::before,
.profile-weekly-schedule-list::after,
.weekly-schedule-list::before,
.weekly-schedule-list::after {
    display: table;
    content: ' ';
}

.profile-weekly-schedule-list::after,
.weekly-schedule-list::after {
    clear: both;
}

.profile-weekly-schedule-list li,
.weekly-schedule-list li {
    width: 14.28571%;
    float: left;
    border-left: 1px solid #CCCCCC;
}

.profile-weekly-schedule-list li .weekly-date.head,
.weekly-schedule-list li .weekly-date.head {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin: -1px 0 0 0;
    padding: 14px;
    font-weight: bold;
}

.profile-weekly-schedule-list li .weekly-date,
.profile-weekly-schedule-list li .weekly-time,
.weekly-schedule-list li .weekly-date,
.weekly-schedule-list li .weekly-time {
    padding: 10px;
}

.profile-weekly-schedule-list li .free_text,
.weekly-schedule-list li .free_text {
    font-size: 1.2rem;
}

.profile-weekly-schedule-list li:first-child,
.weekly-schedule-list li:first-child {
    border: none;
}


/*==========  waiting  ==========*/

#waiting-flag-lists {
    margin: 0 0 1em;
}


/*==========  access  ==========*/

#access .aceess-table {
    width: 100%;
    margin: 2rem 0 1rem;
}

#access .aceess-table th,
#access .aceess-table td {
    border-width: 1px;
    border-style: solid;
}


/*==========  event  ==========*/

#archive-event .entry-title,
#single-event .entry-title {
    margin-bottom: 0;
}


/*==========  reserve  ==========*/

.wpcf7-form .form-section-head {
    font-weight: bold;
}

.wpcf7-form .form-section-head .caption {
    color: #F00;
}

.wpcf7-form .wpcf7-submit.button {
    max-width: 300px;
    width: 100%;
}


/*==========  mailmagazine  ==========*/


/*==========  recruit  ==========*/

#recruit table {
    width: 100%;
    margin: 0 0 1rem;
}

#recruit table th,
#recruit table td {
    border-width: 1px;
    border-style: solid;
}


/*==========  link  ==========*/

#site-links li {
    padding: .5rem;
}

#site-links li .link-title {
    font-weight: bold;
}


/*==========  posts  ==========*/

.entry-header {
    margin: 0 0 1rem;
}

.entry-header .entry-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 1rem;
}

.hentry {
    margin: 0 0 2rem;
}


/*==============================
=            single            =
==============================*/

#single .entry-content {
    padding: 1rem;
}

#single .entry-footer {
    clear: both;
}


/*==========  archive  ==========*/

.archive.category .entry-title,
.search.category .entry-title {
    margin: 0 0 1rem;
}

.archive.category .entry-header,
.search.category .entry-header {
    margin: 0 0 2rem;
}

.archive.category .entry-content,
.search.category .entry-content {
    padding: 1rem;
}

.archive.category .hentry,
.archive.search-results .hentry,
.search.category .hentry,
.search.search-results .hentry {
    border-bottom: 1px solid #DDDDDD;
}


/*=======================================
=            archive commons            =
=======================================*/

.swiper-wrapper .swiper-slide-active img.slider-image {
    animation: none!important;
}

.entry-title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.cat-label {
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    padding: 10px;
    margin: 5px 0;
    text-align: center;
}

.cat-label:not(:first-child) {
    margin: 0 0 0 .25rem;
}

.cast-icon-image img {
    vertical-align: middle;
    margin-bottom: 5px;
}

.news-date {
    font-size: 1.2rem;
}


/*=======================================
=           recruit           =
=======================================*/

.recruit_bloc {
    margin-top: 50px;
}

.recruit_bloc .recruit_title {
    text-align: center;
    font-size: 36px;
    font-family: Century Gothic, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
}

.recruit_bloc h3 {
    padding-top: 10px;
    font-size: 22px;
    text-align: center;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
}

.recruit_title {
    position: relative;
}

.recruit_title:after {
    content: '';
    border-bottom: #2d416d 1px solid;
    width: 50px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.recruit_content {
    position: relative;
    font-size: 16px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
    color: #fff;
    border: #7a7a58 2px solid;
    background: url(assets/images/k1.png) no-repeat left top / auto, url(assets/images/k2.png) no-repeat right top / auto, url(assets/images/k3.png) no-repeat right bottom / auto, url(assets/images/k4.png) no-repeat left bottom / auto, linear-gradient(to bottom, rgba(0, 0, 0, 1) 59%, rgba(33, 27, 27, 1) 97%);
    background-size: 70px auto;
}

.recruit_content h4 {
    font-size: 38px;
    padding: 50px 0 20px 0;
    margin-bottom: 20px;
    border-bottom: #ffffffa4 1px solid;
}

.recruit_content h5 {
    font-size: 22px;
    padding: 50px 0 20px 0;
    border-bottom: #fff 1px solid;
}

.recruit_step {
    font-size: 44px;
    padding: 20px 0 0 0;
    color: #cc3300;
    font-style: italic;
    text-align: center;
    font-weight: bold;
    border: none!important;
}

.recruit_arrow {
    font-size: 45px;
    text-align: center;
}

.cta ul,
.cta li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta li img {
    width: 100%;
}

#ul-pagelink li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    line-height: 1.2;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    border-right: 1px solid #c7b776;
    background: #6e6966;
    background: -moz-linear-gradient(top, #6e6966 0%, #393232 50%, #211b1b 51%, #211b1b 100%);
    background: -webkit-linear-gradient(top, #6e6966 0%, #393232 50%, #211b1b 51%, #211b1b 100%);
    background: linear-gradient(to bottom, #6e6966 0%, #393232 50%, #211b1b 51%, #211b1b 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#211b1b', endColorstr='#211b1b', GradientType=0);
    text-decoration: none;
    transition: all .3s ease;
}

#ul-pagelink li a:hover {
    opacity: 0.9;
}

#ul-pagelink li:first-child a {
    border-left: 1px solid #c7b776;
}


/*=======================================
=           single            =
=======================================*/

#single .post-title {
    font-weight: bold;
    position: relative;
}


/*========== enter ==========*/

.ent_text {
    font-size: 32px;
    margin: 10px 0;
    font-family: 'Bona Nova', serif;
}

.ent_sub_text {
    font-size: 14px;
    margin: 0 0 10px 0;
}

.enter-row {
    width: 600px;
}

.enter_logo {
    text-align: center;
}

.white_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: -1;
    backdrop-filter: blur(18px);
}

#enter-button a,
#leave-button a {
    display: block;
    margin: 0 auto;
    font-size: 32px;
    font-family: "Cormorant", serif;
}

.enter_widget_head {
    margin: 50px 0;
    font-size: 24px;
    font-family: '游明朝', " ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
}

.enter_widget {
    text-align: center;
    padding: 30px 0;
}

.enter_widget table {
    margin: 0 auto 10px auto;
}

.enter_widget img {
    max-width: 640px;
}

#enter_movie {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

#enter_image_inc {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    z-index: -1;
}

#enter_image_inc img {
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    height: 1080px;
}

#enter-image {
    z-index: 999;
}

#enter_movie video {
    position: fixed;
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#enter.open {
    overflow-y: auto;
}


/* Overlay style */

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2000;
}

.overlay nav {
    text-align: center;
    position: relative;
    top: 50%;
    height: 60%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
}

.overlay ul li {
    display: block;
    height: 20%;
    height: calc(100% / 5);
    min-height: 54px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.overlay ul li a {
    display: block;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #f0f0f0;
}


/* Effects */

.overlay-scale {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
}

.overlay-scale.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }
    .overlay ul li {
        min-height: 34px;
    }
}

#enter-image {
    margin: 230px 0 320px 0;
    display: flex;
    justify-content: center;
}

#enter-image img {
    width: 300px;
}

@keyframes fadein {
    from {
        filter: blur(10px);
        /* 初期状態のぼかし量 */
    }
    to {
        filter: blur(0);
        /* 最終的なぼかし量 */
    }
}

#enter {
    padding-bottom: 20px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#media_image-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#media_image-3 img {
    width: 180px;
    height: auto;
}

#footer {
    padding: 70px 0;
}

#footer a {
    text-decoration: underline;
}

#footer a:hover {
    text-decoration: none;
}

#footer {
    text-align: center;
}

#footer #nav_menu-6 {
    justify-content: center;
    display: flex;
}

#footer #footer-widget-col .widget-title {
    opacity: 1;
}

#footer #footer-widget-col .widget_cp5_shop_info .shop-info .shop-name {
    font-size: 1.6rem;
}

#footer #footer-widget-col .widget_nav_menu {
    font-size: 1.2rem;
}

#footer #footer-widget-col .widget_nav_menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#footer #footer-widget-col .widget_nav_menu ul li {
    display: block;
    padding: .25rem 0;
}

#footer #footer-copy {
    font-size: 1.2rem;
    padding: 1rem;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.top_under_bloc {
    background: url(assets/images/bg2.jpg) repeat-y center top;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.main-navigation {
    width: 100%;
    background-color: #2d416d;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: calc(4rem);
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation li.menu-item-has-children>.sub-menu {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.main-navigation li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
}

#schedule-datepanel span.month,
#schedule-datepanel span.day {
    font-size: 22px;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    padding: 1rem;
    font-family: "Cormorant", serif;
    font-size: 18px;
    line-height: 1.2em;
}

.main-navigation a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: -1px;
    background: #CCC;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.main-navigation a:hover:before,
.main-navigation a:focus:before,
.main-navigation a:active:before {
    left: 0;
    right: 0;
}

.main-navigation a:after {
    font-weight: normal;
    content: attr(title);
    display: block;
    font-size: 1rem;
}

.main-navigation li.current-menu-item a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 1px;
    right: 1px;
    bottom: 0;
    background: #CCC;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

#main-content .profile-title .title-name {
    font-size: 20px;
    padding: 10px 0 0 0;
}

.button:hover {
    color: #fff;
    opacity: 0.8;
}


/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
    .main-navigation>ul {
        display: flex;
        justify-content: center;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}


/*--------------------------------------------------------------
# Pavigation
--------------------------------------------------------------*/

.pagination li {
    margin: 0 .25rem;
}

nav[role="navigation"] {
    text-align: center;
}

.cd-pagination {
    margin: 2em auto;
    text-align: center;
}

.cd-pagination li {
    display: inline-block;
    margin: 0 .2em;
}

.cd-pagination li.navi {
    display: inline-block;
}

.cd-pagination a,
.cd-pagination span {
    display: inline-block;
    vertical-align: middle;
    /*-webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;*/
    padding: .6em .8em;
    font-size: 1.6rem;
}

.cd-pagination a {
    border: 1px solid #c4c4c4;
    border-radius: .25rem;
}

.cd-pagination a.disabled {
    pointer-events: none;
}

.cd-pagination a.disabled::before,
.cd-pagination a.disabled::after {
    opacity: .4;
}

.cd-pagination .current {
    /* selected number */
    background-color: #1779ba;
    border-color: #1779ba;
    color: #FFFFFF;
    pointer-events: none;
    border-radius: .25rem;
}


/*--------------------------------------------------------------
# Drawer menu
--------------------------------------------------------------*/


/*!------------------------------------*    Base
\*!------------------------------------*/

.drawer-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    width: 24rem;
    height: 100%;
    background-color: #fff;
}

.drawer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.75rem;
    display: block;
    padding-right: 1rem;
    padding-left: 1rem;
    text-decoration: none;
    color: #999;
}

.drawer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.drawer-menu li a {
    padding: 1rem;
    display: block;
}

.drawer-menu li a.more-icon {
    position: absolute;
    display: block;
    text-align: right;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    text-align: right;
    padding: .5rem .5rem 0 0;
}

.drawer-menu>li {
    border-bottom: 1px solid rgba(108, 108, 108, 0.3);
    border-top: 1px solid #ddd;
}

.drawer-menu>li+li {
    margin-top: -1px;
}

.drawer-menu>li .sub-menu,
.drawer-menu>li .children {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.drawer-menu>li .sub-menu>li,
.drawer-menu>li .children>li {
    border-top: 1px solid #ddd;
}

.drawer-menu>li .sub-menu>li a,
.drawer-menu>li .children>li a {
    padding-left: 1.6rem;
}

.drawer-menu .menu-item-has-children {
    position: relative;
}

.drawer-menu .menu-item-has-children .more-icon>.fa-minus {
    display: none;
}

.drawer-menu .menu-item-has-children .sub-menu {
    margin: 0;
}

.drawer-menu .menu-item-has-children .sub-menu li:not(:last-child) {
    -webkit-box-shadow: 0 2px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.1);
}

.drawer-menu .menu-item-has-children.on>.sub-menu {
    display: block;
    opacity: 1;
    height: auto;
}

.drawer-menu .menu-item-has-children.on>.more-icon .fa-plus {
    display: none;
}

.drawer-menu .menu-item-has-children.on>.more-icon .fa-minus {
    display: inline-block;
}

.drawer-menu-item {
    font-size: 1.4rem;
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #999;
}

.drawer-menu-item:hover {
    text-decoration: underline;
    color: #555;
    background-color: transparent;
}


/*! overlay */

.drawer-overlay {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
    display: block;
}

#drawer-info {
    padding: 1rem 0;
}

#drawer-info .shop-info {
    font-size: 1.2rem;
}

#drawer-info .shop-info.open {
    margin-bottom: .5rem;
}


/*!------------------------------------*    Top
\*!------------------------------------*/

.drawer--top .drawer-nav {
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--top.drawer-open .drawer-nav {
    top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
    right: 0;
}


/*!------------------------------------*    Left
\*!------------------------------------*/

.drawer--left .drawer-nav {
    left: -24rem;
    -webkit-transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
    left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
    left: 24rem;
}


/*!------------------------------------*    Right
\*!------------------------------------*/

.drawer--right .drawer-nav {
    right: -24rem;
    -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
    right: 24rem;
}


/*!------------------------------------*    Hamburger
\*!------------------------------------*/

.drawer-hamburger {
    position: fixed;
    z-index: 1004;
    top: 0;
    display: block;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 2.4rem;
    padding: 0;
    padding-top: 14px;
    padding-right: 14px;
    padding-bottom: 24px;
    padding-left: 14px;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 0;
    outline: 0;
    background-color: #FFF;
}

.drawer-hamburger:hover {
    cursor: pointer;
}

.drawer-hamburger-icon {
    position: relative;
    display: block;
    margin-top: 8px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    width: 100%;
    height: 3px;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #999;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    position: absolute;
    top: -8px;
    left: 0;
    content: ' ';
}

.drawer-hamburger-icon:after {
    top: 8px;
}

.drawer-open .drawer-hamburger-icon {
    background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
    top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*!------------------------------------*    accessibility
\*!------------------------------------*/


/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

.sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}


/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
}


/*!------------------------------------*    Sidebar
\*!------------------------------------*/

.drawer--sidebar {
    background-color: #fff;
}

.drawer--sidebar .drawer-contents {
    background-color: #fff;
}

.entry-content h3,
#system .system-title {
    border-bottom: #2d416d 1px solid!important;
    padding: 5px 0 5px 0px!important;
    font-weight: normal;
    margin: 70px 0 30px 0;
    font-family: '游明朝', " ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
    font-size: 30px;
}

@media (min-width: 64em) {
    .drawer--sidebar .drawer-hamburger {
        display: none;
        visibility: hidden;
    }
    .drawer--sidebar .drawer-nav {
        display: block;
        -webkit-transform: none;
        transform: none;
        position: fixed;
        width: 12.5rem;
        height: 100%;
    }
    /*! Left */
    .drawer--sidebar.drawer--left .drawer-nav {
        left: 0;
        border-right: 1px solid #ddd;
    }
    .drawer--sidebar.drawer--left .drawer-contents {
        margin-left: 12.5rem;
    }
    /*! Right */
    .drawer--sidebar.drawer--right .drawer-nav {
        right: 0;
        border-left: 1px solid #ddd;
    }
    .drawer--sidebar.drawer--right .drawer-contents {
        margin-right: 12.5rem;
    }
    /*! container */
    .drawer--sidebar .drawer-container {
        max-width: 48rem;
    }
}

@media (min-width: 75em) {
    .drawer--sidebar .drawer-nav {
        width: 24rem;
    }
    .drawer--sidebar.drawer--left .drawer-contents {
        margin-left: 24rem;
    }
    .drawer--sidebar.drawer--right .drawer-contents {
        margin-right: 24rem;
    }
    /*! container */
    .drawer--sidebar .drawer-container {
        max-width: 60rem;
    }
}


/*!------------------------------------*    Navbar
\*!------------------------------------*/

.drawer--navbarTopGutter {
    padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.drawer-navbar {
    z-index: 1002;
    top: 0;
    width: 100%;
}


/*! .drawer-navbar modifier */

.drawer-navbar--fixed {
    position: fixed;
}

.drawer-navbar-header {
    position: relative;
    z-index: 1002;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 3.75rem;
    padding: 0 1rem;
    text-align: center;
}

.drawer-navbar .drawer-brand {
    line-height: 3.75rem;
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
    text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
    background-color: transparent;
}

.drawer-navbar .drawer-nav {
    padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
    padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
    ul.cast-list li {
        margin-bottom: 20px;
    }
    .drawer-navbar {
        height: 3.75rem;
        border-bottom: 1px solid #ddd;
        background-color: #fff;
    }
    .drawer-navbar .drawer-navbar-header {
        position: relative;
        display: block;
        float: left;
        width: auto;
        padding: 0;
        border: 0;
    }
    .drawer-navbar .drawer-menu--right {
        float: right;
    }
    .drawer-navbar .drawer-menu li {
        float: left;
    }
    .drawer-navbar .drawer-menu-item {
        line-height: 3.75rem;
        padding-top: 0;
        padding-bottom: 0;
    }
    .drawer-navbar .drawer-hamburger {
        display: none;
    }
    .drawer-navbar .drawer-nav {
        position: relative;
        left: 0;
        overflow: visible;
        width: auto;
        height: 3.75rem;
        padding-top: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .drawer-navbar .drawer-menu {
        padding: 0;
    }
    /*! dropdown */
    .drawer-navbar .drawer-dropdown-menu {
        position: absolute;
        width: 24rem;
        border: 1px solid #ddd;
    }
    .drawer-navbar .drawer-dropdown-menu-item {
        padding-left: 1rem;
    }
}


/*!------------------------------------*    Dropdown
\*!------------------------------------*/

.drawer-dropdown-menu {
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.drawer-dropdown-menu>li {
    width: 100%;
    list-style: none;
}

.drawer-dropdown-menu-item {
    line-height: 3.75rem;
    display: block;
    padding: 0;
    padding-right: 1rem;
    padding-left: 2rem;
    text-decoration: none;
    color: #999;
}

.drawer-dropdown-menu-item:hover {
    text-decoration: underline;
    color: #555;
    background-color: transparent;
}


/*! open */

.drawer-dropdown.open>.drawer-dropdown-menu {
    display: block;
}


/*! drawer-caret */

.drawer-dropdown .drawer-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, opacity .2s ease;
    transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}


/*! open */

.drawer-dropdown.open .drawer-caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


/*!------------------------------------*    Container
\*!------------------------------------*/

.drawer-container {
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 64em) {
    .drawer-container {
        max-width: 60rem;
    }
}

@media (min-width: 75em) {
    .drawer-container {
        max-width: 70rem;
    }
}


/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/

#breadcrumb {
    display: none;
    padding: 1rem 0;
    margin: 0;
}

#breadcrumb ul.breadcrumb-list {
    font-size: 12px;
    margin: 0;
}

#breadcrumb ul.breadcrumb-list li {
    display: inline-block;
    padding: 0 .25rem;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before::before,
.clear:before::after,
.clear:after::before,
.clear:after::after,
.entry-content:before::before,
.entry-content:before::after,
.entry-content:after::before,
.entry-content:after::after,
.comment-content:before::before,
.comment-content:before::after,
.comment-content:after::before,
.comment-content:after::after,
.site-header:before::before,
.site-header:before::after,
.site-header:after::before,
.site-header:after::after,
.site-content:before::before,
.site-content:before::after,
.site-content:after::before,
.site-content:after::after,
.site-footer:before::before,
.site-footer:before::after,
.site-footer:after::before,
.site-footer:after::after {
    display: table;
    content: ' ';
}

.clear:before::after,
.clear:after::after,
.entry-content:before::after,
.entry-content:after::after,
.comment-content:before::after,
.comment-content:after::after,
.site-header:before::after,
.site-header:after::after,
.site-content:before::after,
.site-content:after::after,
.site-footer:before::after,
.site-footer:after::after {
    clear: both;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1rem;
}

.widget .widget-block {
    padding: 0.5rem;
}

.widget .widget-title {
    margin: -0.5rem -0.5rem 0.5rem -0.5rem;
}

.widget ul {
    margin: 0 0 1rem;
    padding: 0 0 0 1.6rem;
}

.widget ul li {
    padding: 0.5rem;
}

#main-content.layout-block .widget-block {
    padding: 0.5rem;
}

#main-content.layout-block .widget-title {
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}


/*=====  navmenu ======*/


/*
.widget_nav_menu {
    .menu {
        border-bottom: 1px solid $gainsboro;
        margin: 0;
        padding: 0;

        li {
            display: block;
            border-top: 1px solid $gainsboro;

            a {
                padding: 1rem;
                display: block;
            }

            .sub-menu {
                padding: 0;
                margin: 0;

                li {
                    padding: 0 0 0 1rem;
                }
            }
        }
    }
}
*/


/*=====  news ======*/

.widget_cp5_news .scroll-frame {
    margin-bottom: 2rem;
}

.widget_cp5_news ul {
    margin: 0 0 1rem;
}

.widget_cp5_news ul li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding: 0.5rem 0;
}

.widget_cp5_news ul li:not(:first-child) {
    border-top-width: 1px;
    border-top-style: solid;
}

.widget_cp5_news ul li+li {
    margin-top: -1px;
}

.widget_cp5_news .news-lists-frame li {
    padding: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.widget_cp5_news .news-lists-frame li a {
    padding: .5rem;
    display: block;
}

.widget_cp5_news .news-lists-frame li a .news-thumb+.news-section {
    padding: 0 0 0 .5rem;
}

.widget_cp5_news .news-lists-frame li a .news-date {
    margin-bottom: .5rem;
}

.widget_cp5_news .news-lists-frame li a .news-date .posted-on .news-icon {
    margin-left: .25rem;
}


/*=====  cast widget  ======*/

.cast-list.horizontal li .cast-section {
    padding: 0 0 0 .5rem;
}

@media screen and (max-width: 47.9375em) {
    .enter_logo {
        width: 200px;
        text-align: center;
        margin: auto;
    }
    .enter_logo img {
        width: 100%;
        height: auto;
    }
    .shop_name {
        display: none;
    }
    .cast-list li .cast-section {
        padding: 0 0 0 .5rem !important;
    }
    a .cast-schedule-time {
        text-align: left!important;
    }
    .cast-icon-image img {
        height: 34px;
        width: auto;
    }
    .smart_text-center {
        text-align: center;
    }
    #profile-frame dl.profile-faq-lists dt {
        width: 100%;
        float: none;
        padding: 5px 0;
    }
    #profile-frame dl.profile-faq-lists dd {
        padding-left: 0px;
        padding: 5px 0;
    }
}


/*=====  cast slider schedule slider  ======*/

.widget_cp5_cast_slider,
.widget_cp5_schedule_slider {
    position: relative;
}

.widget_cp5_cast_slider .horizontal .cast-section,
.widget_cp5_schedule_slider .horizontal .cast-section {
    padding: 0 0 0 .5rem;
}

.widget_cp5_cast_slider .swiper-container,
.widget_cp5_schedule_slider .swiper-container {
    margin: 0 .5rem;
    padding: 1rem 0;
}

.widget_cp5_cast_slider .cast-lists-frame,
.widget_cp5_schedule_slider .cast-lists-frame {
    padding: 0;
}

.widget_cp5_cast_slider .cast-frame,
.widget_cp5_schedule_slider .cast-frame {
    padding: .5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.widget_cp5_cast_slider .cast-frame .cast-image,
.widget_cp5_schedule_slider .cast-frame .cast-image {
    margin: 0 0 .5rem;
}

.widget_cp5_cast_slider .cast-frame .cast-name,
.widget_cp5_schedule_slider .cast-frame .cast-name {
    font-weight: bold;
}

.widget_cp5_cast_slider .cast-frame .cast-name .new-icon img,
.widget_cp5_schedule_slider .cast-frame .cast-name .new-icon img {
    width: auto;
    display: inline;
}

.widget_cp5_cast_slider .cast-frame .cast-state-icon,
.widget_cp5_cast_slider .cast-frame .mEx-time,
.widget_cp5_cast_slider .cast-frame .cast-size,
.widget_cp5_schedule_slider .cast-frame .cast-state-icon,
.widget_cp5_schedule_slider .cast-frame .mEx-time,
.widget_cp5_schedule_slider .cast-frame .cast-size {
    font-size: 1.2rem;
}

.widget_cp5_cast_slider .cast-frame .cast-icon-lists .cast-icon img,
.widget_cp5_schedule_slider .cast-frame .cast-icon-lists .cast-icon img {
    width: auto;
    display: inline;
}

.widget_cp5_cast_slider .swiper-button-prev,
.widget_cp5_cast_slider .swiper-button-next,
.widget_cp5_schedule_slider .swiper-button-prev,
.widget_cp5_schedule_slider .swiper-button-next {
    background-size: 32px;
    width: 32px;
    height: 32px;
}


/*=====  event  ======*/

.widget_calendar table {
    border-collapse: collapse;
    border: 1px solid #DDDDDD;
}

.widget_calendar table th,
.widget_calendar table td {
    border: 1px solid #DDDDDD;
    text-align: center;
}


/*=====  pages  ======*/


/*=====  banner  ======*/

.widget_cp5_banner_display {
    background: none !important;
    border: none !important;
}

.widget_cp5_banner_display .widget-block {
    background: none !important;
    border: none !important;
}

.widget_cp5_banner_display ul {
    padding: 0;
    margin-bottom: 0;
}

.widget_cp5_banner_display ul.horizontal {
    width: 100%;
}

.widget_cp5_banner_display ul.horizontal li.column,
.widget_cp5_banner_display ul.horizontal li.columns {
    padding: 0 .5rem;
}

.widget_cp5_banner_display ul.vertical li.column,
.widget_cp5_banner_display ul.vertical li.columns {
    padding: .5rem 0;
}

.widget_cp5_banner_display ul li a img {
    opacity: 1;
}

.widget_cp5_banner_display ul li a:hover img {
    opacity: .8;
}

@media screen and (max-width: 47.9375em) {
    .widget_cp5_banner_display ul li {
        padding: .5rem !important;
    }
}


/*=====  footer  ======*/

#footer-widget-col .widget_nav_menu .menu li a {
    padding: 5px;
    font-size: 12px;
    font-family: Century Gothic, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
}

#footer-widget-col .widget_nav_menu .menu li .sub-menu li {
    padding: .5rem .5rem .5rem 1rem;
}

#footer-widget-col .widget_cp5_news .news-date,
#footer-widget-col .widget_cp5_news .news-content {
    color: inherit;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# parallax
--------------------------------------------------------------*/

body.page-id-852173 {
    overflow-x: hidden;
}

.widget-title {
    opacity: 0;
}


/* page title */

.page-header .page-title {
    opacity: 0;
}

.animated {
    opacity: 0;
}

.animated.on {
    opacity: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.animated.on.page-title {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.on.widget-title {
    -webkit-animation-name: fadeIn;
    animation-name: fadeInU
}

.animated.on.entry-content {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.on.type-event {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.widget-block {
    max-width: 120rem;
    margin: 0 auto;
}

#content-block .widget_cp5_news .news-lists-frame li {
    opacity: 0;
}

#content-block .widget_cp5_news .news-lists-frame li.on {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#content-block .widget_cp5_news .news-lists-frame li.on:nth-child(odd) {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

#content-block .widget_cp5_news .news-lists-frame li.on:nth-child(even) {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

#content-block .widget_cp5_cast_slider .cast-frame {
    opacity: 0;
}

#content-block .widget_cp5_cast_slider .cast-frame.on {
    -webkit-animation: fadeInUp 1.2s both;
    animation: fadeInUp 1.2s both;
    opacity: 1;
}

#content-block .widget_cp5_cast_slider .newface .cast-frame {
    opacity: 0;
}

#content-block .widget_cp5_cast_slider .newface .cast-frame.on {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

#content-block .widget_cp5_cast_slider .pickup .cast-frame {
    opacity: 0;
}

#content-block .widget_cp5_cast_slider .pickup .cast-frame.on {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

#content-block .widget_cp5_schedule_slider .cast-frame {
    opacity: 0;
}

#content-block .widget_cp5_schedule_slider .cast-frame.on {
    -webkit-animation: fadeInUp 1.2s both;
    animation: fadeInUp 1.2s both;
}

#content-block #cast-list .cast-frame.lazyloaded,
#content-block #schedule-list .cast-frame.lazyloaded,
#content-block #waiting-list .cast-frame.lazyloaded {
    -webkit-animation: fadeInUp 1s both;
    animation: fadeInUp 1s both;
}

#content-block #schedule-week-list .cast-frame {
    opacity: 0;
}

#content-block #schedule-week-list .cast-frame.on {
    -webkit-animation: fadeInUp 1s both;
    animation: fadeInUp 1s both;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*--------------------------------------------------------------
# Ripple button
--------------------------------------------------------------*/


/*!
* Author: Antonio Dal Sie
* Name: ng-ripple
* Description: Material ripple effects for angularjs
*/

.ripple-cont {
    position: relative;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    border: 0;
    outline: 0;
    overflow: hidden;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    -webkit-touch-callout: none;
    /*-webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;*/
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.ripple-cont.r-round {
    min-width: 56px;
    min-height: 56px;
    line-height: 56px;
}

.ripple-cont.r-card {
    padding: 0;
    width: 100%;
}

.ripple-cont.r-full {
    width: 100%;
}

.ripple-cont.r-icon {
    padding: 8px;
    line-height: 1;
    min-height: 15px;
    min-width: 15px;
    background-color: transparent;
}

.ripple-cont.r-icon:hover {
    background-color: transparent;
}

.ripple-cont.r-icon:active {
    background-color: transparent;
}

.ripple-cont.r-raised {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.ripple-cont.r-raised:not(.disabled):active {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.ripple-cont.r-round,
.ripple-cont.r-round .ripple-cont {
    border-radius: 50%;
    overflow: hidden;
}

.ripple-cont.r-round .ink-content {
    border-radius: 50%;
}

.ripple-cont.disabled {
    color: rgba(0, 0, 0, 0.26) !important;
    cursor: default;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ripple-cont.disabled:hover {
    background-color: transparent;
}

.ripple-cont.disabled:active {
    background-color: transparent;
}

.ripple-cont.r-raised.disabled {
    background-color: rgba(0, 0, 0, 0.12) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ripple-cont .ripple-content {
    position: relative;
    z-index: 2;
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}

.ripple-cont .ink-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    width: 100%;
    background-clip: padding-box;
    background-color: transparent;
    /* overflow: hidden; */
    -moz-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC");
    -o-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC");
    -webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC");
    mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC");
    border-radius: 2px;
    pointer-events: none;
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1) 0ms;
    transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1) 0ms;
}

.ripple-cont.r-overink>.ink-content {
    display: none;
    z-index: 3;
    -webkit-transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1) 0ms, z-index 1ms linear 0s;
    transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1) 0ms, z-index 1ms linear 0s;
}

.ink-content .ink,
.ink-content .ink>i {
    display: block;
    position: absolute;
    border-radius: 100%;
    z-index: 10;
}

.ink-content .ink {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    will-change: transform, height, width;
}

.ink-content .ink>i {
    background: black;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    will-change: transform, opacity;
}

.ripple-cont.r-icon .ink {
    top: 50%;
    left: 50%;
}

.ink-content .ink.animate,
.ink-content .ink.animate>i {
    -webkit-transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: margin 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), border 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ink-content .ink.animate {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ink-content .ink.animate>i {
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*--------------------------------------------------------------
# Material Scrolltop
--------------------------------------------------------------*/


/**
* material-scrolltop
*
* Author: Bartholomej
* Website: https://github.com/bartholomej/material-scrolltop
* Docs: https://github.com/bartholomej/material-scrolltop
* Repo: https://github.com/bartholomej/material-scrolltop
* Issues: https://github.com/bartholomej/material-scrolltop/issues
*/

.material-scrolltop {
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 12px;
    right: 12px;
    padding: 0;
    z-index: 1000;
    overflow: hidden;
    outline: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    color: #FFFFFF;
    background: #333;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
    /*
    &::before {
        @include centerer;
        content: "";
        width: 0;
        border-radius: 100%;
        //background: mix($mst-color, #fff, 85%);
        background:rgba(#FFF,.6);
        @if $mst-icon {
            @extend %mst-icon;
        }
    }
/*
    &:active::before {
        width: 120%;
        padding-top: 120%;
        @include prefixer(transition, all .2s ease-out);
    }    
 */
}

.material-scrolltop:hover {
    background-color: #666;
    text-decoration: none;
}

.material-scrolltop.reveal {
    width: 48px;
    height: 48px;
}

.material-scrolltop span {
    display: block;
    font-size: 25px;
    color: #fff;
}


/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/


/*==============================
=          loading           =
==============================*/

.spinner {
    width: 40px;
    height: 40px;
    position: absolute;
    margin: auto;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

#loading {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
}

.movie_li video {
    width: 100%;
}


/*--------------------------------------------------------------
# Admin Bar
--------------------------------------------------------------*/


/*=================================
=            admin bar            =
=================================*/

@media screen and (min-width: 783px) {
    #member_movie {
        display: flex;
        flex-wrap: wrap;
    }
    .movie_li {
        width: calc(50% - 20px);
        margin: 10px;
    }
    body.admin-bar {
        /*----------  header  ----------*/
        /*----------  drawer-nav  ----------*/
    }
    body.admin-bar #header.sticking {
        padding-top: 32px;
    }
    body.admin-bar .drawer-nav.follow #drawer-wrap {
        padding-top: 32px;
    }
    body.admin-bar .drawer-nav.follow+.drawer-hamburger {
        top: 32px;
    }
    body.admin-bar .drawer-nav:not(.follow) #drawer-wrap {
        padding-top: 32px;
    }
    body.admin-bar .drawer-nav:not(.follow)+.drawer-hamburger {
        top: 32px;
    }
}

@media screen and (max-width: 782px) {
    #header #header-block-col {
        margin-top: -40px;
    }
    body.admin-bar {
        /*----------  header  ----------*/
        /*----------  drawer-nav  ----------*/
    }
    body.admin-bar #header.sticking {
        padding-top: 46px;
    }
    body.admin-bar .drawer-nav.follow #drawer-wrap {
        padding-top: 0;
    }
    body.admin-bar .drawer-nav.follow+.drawer-hamburger {
        top: 46px;
    }
    body.admin-bar .drawer-nav:not(.follow) #drawer-wrap {
        padding-top: 46px;
    }
    body.admin-bar .drawer-nav:not(.follow)+.drawer-hamburger {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    body.admin-bar {
        /*----------  header  ----------*/
        /*----------  drawer-nav  ----------*/
    }
    body.admin-bar #header.sticking {
        padding-top: 46px;
    }
    body.admin-bar #header.sticking.on {
        padding-top: 0;
    }
    body.admin-bar .drawer-nav.follow+.drawer-hamburger {
        top: 0;
    }
    body.admin-bar .drawer-nav:not(.follow)+.drawer-hamburger {
        top: 46px;
    }
}


/*--------------------------------------------------------------
# desktop 
--------------------------------------------------------------*/

@media screen and (min-width: 64em) {
    /*=============================================
=            common            =
=============================================*/
    .wpcf7 {
        width: 70%;
        margin: 0 auto;
    }
    #header-shop-info {
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
    }
    #header #header-block-col .shop-tel .num {
        font-size: 22px;
        letter-spacing: -0.04em;
        padding-right: 40px;
        line-height: 1em;
        ;
    }
    #header #logo img {
        max-width: 320px;
    }
    #header #header-block-col .open {
        font-size: 1.4rem;
        padding-right: 40px;
    }
    body.page-id-852173 #header {
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
    }
    body.page-id-852173 #header.sticking {
        top: -100%;
    }
    body.page-id-852173 #header.sticking.on {
        top: 0;
    }
    body.page-id-852173 #header.sticking.off {
        top: -100%;
    }
    .site-description {
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }
    #header-inc {
        line-height: 1em;
    }
    #header-section {
        text-align: right;
    }
    .widget_cp5_image_slider .swiper-container img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover;";
    }
    .widget_cp5_image_slider .swiper-container video {
        height: 100%;
        min-height: 100%;
        min-width: 100%;
        width: auto;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover;";
    }
    /*==============================
=            layout            =
==============================*/
}


/*--------------------------------------------------------------
# tablet 
--------------------------------------------------------------*/

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
    /*=============================================
=            common            =
=============================================*/
    #header {
        padding: 0.5rem 4.8rem 0.5rem 0.5rem;
    }
    #header #logo img {
        max-width: 320px;
    }
    #header #header-block-col .open {
        font-size: 2rem;
    }
    #header #header-block-col .shop-tel {
        font-size: 2rem;
    }
    .site-description {
        font-size: 1.2rem;
    }
    #header-inc {
        line-height: 1em;
    }
    #header-section {
        text-align: right;
    }
    .widget_cp5_image_slider .swiper-container {
        height: 100vh;
    }
    .widget_cp5_image_slider .swiper-container img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;';
    }
    .widget_cp5_image_slider .swiper-container video {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;';
    }
}


/*--------------------------------------------------------------
# smart
--------------------------------------------------------------*/

.smart_phone {
    text-align: center;
}

.smart_phone a {
    background-color: rgb(148, 132, 89);
    color: #fff!important;
    max-width: 230px;
    padding: 7px 10px;
    font-size: 20px!important;
    margin: 10px auto;
    width: 100%;
    display: block;
}

@media screen and (max-width: 47.9375em) {
    #header {
        display: block;
    }
    .small-text-center {
        text-align: center;
    }
    #enter-image {
        margin: 0;
    }
    .smart_fix_menu {
        display: flex;
        flex-wrap: nowrap;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: rgb(102, 102, 102) 3px solid;
    }
    .smart_fix_menu a {
        padding: 40px 10px 10px 10px;
        display: block;
        text-decoration: none;
        color: #333;
        font-size: 11px;
    }
    .smart_fix {
        width: 25%;
        text-align: center;
        background-repeat: no-repeat;
        background-position: center 10px;
        border-right: rgb(206, 206, 206) 1px solid;
    }
    .smart_fix:last-child {
        border-right: none;
    }
    .fix_icon1 {
        background-size: auto 25px;
        background-image: url(assets/images/samrt_footer_icon1.png);
    }
    .fix_icon2 {
        background-size: auto 26px;
        background-image: url(assets/images/samrt_footer_icon2.png);
    }
    .fix_icon3 {
        background-size: auto 25px;
        background-image: url(assets/images/samrt_footer_icon3.png);
    }
    .fix_icon4 {
        background-size: auto 25px;
        background-image: url(assets/images/samrt_footer_icon4.png);
    }
    .smart_headicon {
        display: flex;
        flex-wrap: nowrap;
        width: 230px;
        margin: 10px auto 10px auto;
    }
    .smart_headicon a:first-child img {
        height: 30px;
        width: auto;
    }
    .smart_headicon a:last-child img {
        height: 20px;
        width: auto;
    }
    .smart_headicon a {
        background-color: #958459;
        width: 50%;
        display: inline-block;
        padding: 10px;
        text-align: center;
        color: #fff!important;
        text-decoration: none;
    }
    .smart_headicon a:first-child {
        margin-right: 10px;
    }
    #text-7 {
        width: 100%;
    }
    .enter_widget_head {
        font-size: 16px;
    }
    #footer {
        padding: 20px 10px;
    }
    .mw_wp_form dl dt {
        float: none;
    }
    #header #header-block {
        display: block;
        justify-content: center;
        padding-bottom: 30px;
    }
    .menu-footer-menu-container {
        display: none;
        ;
    }
    .mw_wp_form p.mwform-btn input,
    input[type="submit"] {
        width: 100%;
    }
    .mw_wp_form dl dt,
    .mw_wp_form dl dd {
        margin: 0;
    }
    .mw_wp_form dl dt {
        width: 100%;
    }
    body.content-block #main-content {
        padding: 10px;
    }
    body {
        word-wrap: break-word;
    }
    #header {
        padding: 0.5rem;
    }
    #header #header-logo-col {
        margin: 20px auto;
        padding: 0 50px;
    }
    #header #header-block-col .shop-info.open,
    #header #header-block-col .shop-info.shop-tel {
        text-align: center;
    }
    #header #header-logo-col #logo {
        margin: 30px auto;
    }
    #header #header-logo-col a img {
        margin: 0 auto;
    }
    .site-description {
        font-size: 1.1rem;
    }
    #enter-navi #enter-button {
        margin: 0 0 1rem;
    }
    #profile-navi,
    #post-navi {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #profile-navi #profile-back,
    #profile-navi #post-back,
    #post-navi #profile-back,
    #post-navi #post-back {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        margin: 0 0 1rem;
    }
    #profile-navi #profile-prev,
    #profile-navi #post-prev,
    #post-navi #profile-prev,
    #post-navi #post-prev {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    #profile-navi #profile-next,
    #profile-navi #post-next,
    #post-navi #profile-next,
    #post-navi #post-next {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    /*=============================================
=            page wrap          =
=============================================*/
    .entry-content {
        padding: 0.5rem;
    }
    /*=============================================
=            cast common          =
=============================================*/
    #archive-cast select,
    #schedule select {
        width: 100%;
    }
    /*=============================================
=            profile section       =
=============================================*/
    #profile_name {
        font-size: 26px;
    }
    #profile-section .columns {
        padding: 0;
    }
    #profile-section .columns .profile-frame {
        padding: 0.5rem;
    }
    /*=============================================
=            weekly schedule           =
=============================================*/
    .profile-weekly-schedule-list,
    .weekly-schedule-list {
        display: block;
    }
    .profile-weekly-schedule-list li,
    .weekly-schedule-list li {
        float: none;
        width: 100%;
        border-left: none;
    }
    /*=============================================
=            schedule            =
=============================================*/
    #schedule-datepanel {
        white-space: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 1rem;
        margin: 0 0 1rem;
    }
    #schedule-datepanel::-webkit-scrollbar {
        display: none;
    }
    #schedule-datepanel li,
    #schedule-datepanel li.week-prev,
    #schedule-datepanel li.week-next {
        display: inline-block;
        float: none;
        padding: 0 .25rem;
        width: auto;
    }
    #schedule-datepanel li a,
    #schedule-datepanel li.week-prev a,
    #schedule-datepanel li.week-next a {
        padding: .5rem;
    }
    #schedule-datepanel li span,
    #schedule-datepanel li.week-prev span,
    #schedule-datepanel li.week-next span {
        line-height: 1.2;
    }
    #schedule-datepanel li span.arrow .fa,
    #schedule-datepanel li.week-prev span.arrow .fa,
    #schedule-datepanel li.week-next span.arrow .fa {
        font-size: 1.4rem;
    }
    #schedule-datepanel li span.month,
    #schedule-datepanel li.week-prev span.month,
    #schedule-datepanel li.week-next span.month {
        font-size: 1.4rem;
    }
    #schedule-datepanel li span.day,
    #schedule-datepanel li.week-prev span.day,
    #schedule-datepanel li.week-next span.day {
        font-size: 1.6rem;
    }
    #schedule-datepanel li span.date,
    #schedule-datepanel li.week-prev span.date,
    #schedule-datepanel li.week-next span.date {
        font-size: 1.2rem;
    }
    /*=============================================
=           widget       =
=============================================*/
    .widget_cp5_castslider .swiper-button-prev,
    .widget_cp5_castslider .swiper-button-next,
    .widget_cp5_scheduleslider .swiper-button-prev,
    .widget_cp5_scheduleslider .swiper-button-next {
        background-size: 16px 26px;
        padding: 20px 16px;
    }
    .widget_cp5_image_slider .swiper-container {
        height: 30vh;
    }
    .widget_cp5_image_slider .swiper-container img {
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;';
    }
    .widget_cp5_image_slider .swiper-container video {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;';
    }
    /*=============================================
=            weekly schedule            =
=============================================*/
    #schedule-week .cast-frame .cast-section .weekly-schedule-list {
        display: block;
        table-layout: inherit;
    }
    #cast-sort-lists,
    #cast-order-lists,
    .cd-pagination[role="navigation"] {
        white-space: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    #cast-sort-lists::-webkit-scrollbar,
    #cast-order-lists::-webkit-scrollbar,
    .cd-pagination[role="navigation"]::-webkit-scrollbar {
        display: none;
    }
    /*=============================================
=            profile           =
=============================================*/
    #profile-frame {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
    }
    #profile-frame #profile-detail {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    #profile-frame #profile-header {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    #profile-frame #profile-image {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }
    #profile-frame #profile-section {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }
}

-webkit-box-ordinal-group: 5;
-webkit-order: 4;
-ms-flex-order: 4;
order: 4;

}

}