@charset "utf-8";

/* =============================================================
   7frame.css
   フレームワーク CSS
   ─────────────────────────────────────────────────────────────
   背景 / 角丸アーティクル / ヘッダー / フッター / グリッド
   ============================================================= */

/* ─────────────────────────────────────────
   カスタマイズ変数
   ───────────────────────────────────────── */
:root {
    --article-radius: 30px;
    --article-width-pc: 1000px;
    --article-margin: 0px;
    --article-padding-pc: 0;
    --article-padding-sp: 0;
    --article-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --bg-gray: #f5f5f5;
    --kv-height-pc: 500px;
    --kv-scale-pc: 110%;
    --kv-scale-sp: 110%;
    --heading-font: 'Hind', sans-serif;
    --heading-color: #333;
    --heading-sub-color: #888;
}

/* =============================================================
   INIT - リセット
   ============================================================= */
html {
    font-family: Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
}

body {
    font-family: Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
    margin: 0;
    -webkit-text-size-adjust: 100%;
}

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

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =============================================================
   FRAME - 共通構造
   ============================================================= */

/* --- ヘッダー --- */
header {
    position: relative;
    z-index: 999;
}

header .logo,
header h1,
header h2 {
    padding: 0;
    margin: 0;
}

/* --- アーティクル（角丸） --- */
article {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    background: #fff;
    border-radius: var(--article-radius);
    overflow: hidden;
    min-height: 100vh;
}

/* --- フッター --- */
footer {
    position: relative;
    z-index: 998;
    height: 50px;
    overflow: hidden;
}

footer>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0 10px;
}

footer .rights {
    text-align: center;
    margin: 0;
    font-size: 12px;
    flex: 1;
    line-height: 1;
}

footer .navidx,
footer .navpgtop {
    font-size: 20px;
    white-space: nowrap;
    line-height: 1;
}

footer .navidx a,
footer .navpgtop a {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.6;
    text-decoration: none;
}

footer .navidx a:hover,
footer .navpgtop a:hover {
    opacity: 1;
    text-decoration: none;
}

footer .pconly {
    font-size: 14px;
}

footer .rights-logo {
    display: inline;
    width: 180px;
    vertical-align: middle;
    margin: 0 12px;
}

footer .rights a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

footer .rights a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* --- 404ページ --- */
.pg404 article {
    text-align: center;
}

.pg404 article p {
    font-size: 15px;
}

.pg404 article p.title {
    padding-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
    border-bottom: 5px solid #eaeaea;
}

/* --- キービジュアル --- */
p.kv {
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
    height: var(--kv-height-pc);
}

p.kv img {
    width: var(--kv-scale-pc);
    height: auto;
    display: block;
    margin-left: calc((100% - var(--kv-scale-pc)) / 2);
}

/* --- セクション見出し（二段：英語＋日本語） --- */
.sec-title {
    text-align: center;
    padding: 0 0 40px;
}

.sec-title::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--heading-color);
    margin: 0 auto 30px;
}

.sec-title .en {
    font-family: var(--heading-font);
    font-size: 28px;
    letter-spacing: 0.15em;
    color: var(--heading-color);
    display: block;
    margin-bottom: 8px;
}

.sec-title .ja {
    font-size: 13px;
    color: var(--heading-sub-color);
    display: block;
    letter-spacing: 0.1em;
}

/* --- 背景グレーセクション --- */
.bg-gray {
    position: relative;
    z-index: 0;
    padding: 0 0 40px;
}

.bg-gray::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9999px;
    right: -9999px;
    background: var(--bg-gray);
    z-index: -1;
}

.bg-gray table {
    background: #fff;
}


/* =============================================================
   PC（min-width: 501px）
   ============================================================= */
@media screen and (min-width: 501px) {

    .only-m,
    .monly {
        display: none;
    }

    .kv {
        padding: 0;
    }

    .kv-inr {
        height: 370px !important;
        overflow: hidden !important;
    }

    html,
    body {
        min-width: 1000px;
    }

    body>*>* {
        width: 1000px;
        margin: 0 auto;
        position: relative;
    }

    /* --- PC グリッド --- */
    .pc-row,
    .pc-rows>* {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        align-content: center;
        list-style: none;
        padding: 0;
    }

    .pc-row>*,
    .pc-rows>*>* {
        flex: 1 0 0%;
    }

    .pc-col,
    .pc-cols>* {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: center;
    }

    [class*="prow"],
    [class*="prows"]>* {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: center;
        list-style: none !important;
        padding: 0;
        margin: 0;
    }

    [class*="prow"]>*,
    [class*="prows"]>*>* {
        flex: 1 0 0%;
    }

    [class*="pcol"],
    [class*="pcols"]>* {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: center;
    }

    .prow1>* {
        flex: 0 0 calc(100% / 1);
    }

    .prow2>* {
        flex: 0 0 calc(100% / 2);
    }

    .prow3>* {
        flex: 0 0 calc(100% / 3);
    }

    .prow4>* {
        flex: 0 0 calc(100% / 4);
    }

    .prow5>* {
        flex: 0 0 calc(100% / 5);
    }

    .prow6>* {
        flex: 0 0 calc(100% / 6);
    }

    .prow7>* {
        flex: 0 0 calc(100% / 7);
    }

    .prow8>* {
        flex: 0 0 calc(100% / 8);
    }

    .prow9>* {
        flex: 0 0 calc(100% / 9);
    }

    .prow10>* {
        flex: 0 0 calc(100% / 10);
    }

    /* --- PC ヘッダー --- */
    .telbtn,
    .togglemenu {
        display: none;
    }

    header {
        height: 50px;
    }

    header .logo {
        position: absolute;
        top: 0;
        left: calc(50% - 100px);
        width: 200px;
        height: 50px;
    }

    header .logo a {
        display: block;
        width: 100%;
        height: 50px;
        text-decoration: none;
    }

    header .logo a:hover {
        background: rgba(255, 255, 255, 0.15);
        text-decoration: none;
    }

    header .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    nav.topmenu {
        height: 50px;
        font-size: 0;
    }

    nav.topmenu ul {
        display: flex;
        padding: 0;
    }

    nav.topmenu li {
        text-align: center;
        flex: 1 1 0;
        position: relative;
    }

    nav.topmenu li+li:before,
    .logo:before {
        content: ".";
        font-size: 0;
        position: absolute;
        top: 5px;
        left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.8);
        height: 40px;
    }

    nav.topmenu li:nth-child(3) {
        margin-left: 200px;
    }

    nav.topmenu li a {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        text-decoration: none;
    }

    nav.topmenu li a:hover {
        background: rgba(255, 255, 255, 0.15);
        text-decoration: none;
    }

    nav.topmenu li a img {
        max-height: 2em;
        margin-top: -5px;
    }

    /* --- PC アーティクル --- */
    article {
        width: var(--article-width-pc);
        margin: 0 auto;
        box-shadow: var(--article-shadow);
    }

    article>div {
        padding: var(--article-padding-pc);
    }

    /* --- PC フッター --- */
    footer {
        min-width: 1000px;
    }

    /* --- PC 404 --- */
    .pg404 article {
        margin: 0;
    }

    .pg404 article>div {
        padding-top: 70px;
    }

    .pg404 article .box404 {
        border: 0 solid transparent;
        background-image: url(/img/cm404.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        min-height: calc(100vh - 120px);
        box-sizing: border-box;
        padding: 0;
        margin: 0 0 -40px 0;
    }

    .pg404 article .box404 p {
        font-size: 26px;
        text-align: center;
        padding: 20px;
    }
}


/* =============================================================
   MOBILE（max-width: 500px）
   ============================================================= */
@media screen and (max-width: 500px) {

    .only-pc,
    .pconly {
        display: none;
    }

    html,
    body {
        width: 500px;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    body>*>* {
        width: calc(100vw - 20px);
        margin: 0 auto;
        overflow: hidden;
    }

    /* --- SP グリッド --- */
    .m-row,
    .m-rows>* {
        display: flex;
        justify-content: space-around;
        align-items: center;
        align-content: center;
        list-style: none;
        padding: 0;
    }

    .m-row>*,
    .m-rows>*>* {
        flex: 1 1 auto;
    }

    .m-col,
    .m-cols>* {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: center;
    }

    [class*="mrow"],
    [class*="mrows"]>* {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: center;
        list-style: none !important;
        padding: 0;
        margin: 0;
    }

    [class*="mrow"]>*,
    [class*="mrows"]>*>* {
        flex: 1 0 0%;
    }

    [class*="mcol"],
    [class*="mcols"]>* {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: center;
    }

    .mrow1>* {
        flex: 0 0 calc(100% / 1);
    }

    .mrow2>* {
        flex: 0 0 calc(100% / 2);
    }

    .mrow3>* {
        flex: 0 0 calc(100% / 3);
    }

    .mrow4>* {
        flex: 0 0 calc(100% / 4);
    }

    .mrow5>* {
        flex: 0 0 calc(100% / 5);
    }

    .mrow6>* {
        flex: 0 0 calc(100% / 6);
    }

    /* --- SP ヘッダー --- */
    header {
        overflow: visible;
        height: 50px !important;
        box-sizing: border-box;
    }

    header .logo {
        width: 100vw;
        height: 50px;
        text-align: center;
    }

    header .logo img {
        width: auto;
        height: 50px !important;
        object-fit: contain;
    }

    .telbtn {
        display: block;
        position: absolute;
        left: -12px;
        top: -14px;
        font-size: 36px;
        padding: 8px;
        transform: scale(-1, 1);
    }

    .teloption {
        text-align: center;
        padding-left: 0;
        list-style: none;
        line-height: 2;
        font-size: 150%;
        margin: -30px;
        max-width: none;
    }

    .teloption li {
        padding: 20px 0;
    }

    .teloption li+li {
        border-top: 1px solid #ddd;
    }

    .teloption a {
        display: inline-block;
        width: 100%;
        color: #007AFF;
    }

    .teloption a:hover {
        text-decoration: none;
        background: #eee;
    }

    .togglemenu {
        display: flex !important;
        position: absolute;
        right: 5px;
        top: 0;
        height: 50px;
        align-items: center;
        justify-content: center;
        padding: 0 8px !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .hamburger-icon {
        display: block;
        width: 28px;
        height: 22px;
        position: relative;
        transition: transform 0.4s ease;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.4s ease;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0;
    }

    .hamburger-icon span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-icon span:nth-child(3) {
        bottom: 0;
    }

    #hamburger-btn.open .hamburger-icon {
        transform: rotate(-90deg);
    }

    #hamburger-btn.open .hamburger-icon span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    #hamburger-btn.open .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }

    #hamburger-btn.open .hamburger-icon span:nth-child(3) {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    nav.topmenu {
        width: 85%;
        box-sizing: border-box;
        position: fixed;
        right: 0;
        top: 50px;
        z-index: 998;
        display: none;
        flex-direction: column;
        justify-content: center;
        background: rgba(0, 0, 0, 0.65);
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        border-bottom-left-radius: 20px;
    }

    nav.topmenu ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 0;
    }

    nav.topmenu li {
        flex: 1 1 40px;
        text-align: center;
        display: flex;
        align-items: stretch;
    }

    nav.topmenu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
    }

    nav.topmenu li+li a {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    nav.topmenu li a img {
        max-height: 2em;
    }

    /* --- SP アーティクル --- */
    article {
        width: calc(100vw - 20px);
        margin: 0 auto;
        box-shadow: var(--article-shadow);
    }

    article>div {
        padding: var(--article-padding-sp);
    }

    article table ul,
    article table ol {
        padding-left: 15px;
    }

    /* --- SP KV --- */
    p.kv {
        height: auto;
    }

    p.kv img {
        width: var(--kv-scale-sp);
        margin-left: 0;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    /* --- SP セクション見出し --- */
    .sec-title {
        padding: 0 0 20px;
    }

    .sec-title::before {
        height: 25px;
        margin: 0 auto 15px;
    }

    .sec-title .en {
        font-size: 20px;
    }

    /* --- SP フッター --- */
    footer .rights {
        font-size: 10px;
    }

    footer .rights-logo {
        width: 150px;
    }

    /* --- SP 404 --- */
    .pg404 article {
        margin: 0 !important;
    }

    .pg404 article>div {
        padding: 70px 0 0 !important;
        min-height: none !important;
    }

    .pg404 article .box404 {
        border: 0 solid transparent;
        background-image: url(/img/cm404.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        min-height: calc(100vh - 180px);
        box-sizing: border-box;
    }

    .pg404 article .box404 p {
        font-size: 26px;
        text-align: center;
        padding: 20px;
    }
}

/* =============================================================
   Modaal v0.4.4 - accessible modals
   by Humaan, for all humans. http://humaan.com
   ============================================================= */
.modaal-noscroll {
    overflow: hidden
}

.modaal-accessible-hide {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden
}

.modaal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0
}

.modaal-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: auto;
    opacity: 1;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.modaal-wrapper * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden
}

.modaal-wrapper .modaal-close {
    border: none;
    background: 0 0;
    padding: 0;
    -webkit-appearance: none
}

.modaal-wrapper.modaal-start_none {
    display: none;
    opacity: 1
}

.modaal-wrapper.modaal-start_fade {
    opacity: 0
}

.modaal-wrapper [tabindex="0"] {
    outline: 0 !important
}

.modaal-wrapper.modaal-fullscreen {
    overflow: hidden
}

.modaal-outer-wrapper {
    display: table;
    position: relative;
    width: 100%;
    height: 100%
}

.modaal-fullscreen .modaal-outer-wrapper {
    display: block
}

.modaal-inner-wrapper {
    display: table-cell;
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: middle;
    text-align: center;
    padding: 80px 25px
}

.modaal-fullscreen .modaal-inner-wrapper {
    padding: 0;
    display: block;
    vertical-align: top
}

.modaal-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: auto;
    text-align: left;
    color: #000;
    max-width: 1000px;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    cursor: auto;
    border-radius: 20px
}

.modaal-container.is_loading {
    height: 100px;
    width: 100px;
    overflow: hidden
}

.modaal-fullscreen .modaal-container {
    max-width: none;
    height: 100%;
    overflow: auto
}

.modaal-close {
    position: fixed;
    right: 20px;
    top: 20px;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0);
    border-radius: 100%;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.modaal-close:focus,
.modaal-close:hover {
    outline: 0;
    background: #fff
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #b93d0c
}

.modaal-close span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden
}

.modaal-close:after,
.modaal-close:before {
    display: block;
    content: " ";
    position: absolute;
    top: 14px;
    left: 23px;
    width: 4px;
    height: 22px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

.modaal-close:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.modaal-close:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.modaal-fullscreen .modaal-close {
    background: #afb7bc;
    right: 10px;
    top: 10px
}

.modaal-content-container {
    padding: 30px
}

.modaal-confirm-wrap {
    padding: 30px 0 0;
    text-align: center;
    font-size: 0
}

.modaal-confirm-btn {
    font-size: 14px;
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    background: 0 0
}

.modaal-confirm-btn.modaal-ok {
    padding: 10px 15px;
    color: #fff;
    background: #555;
    border-radius: 3px;
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

.modaal-confirm-btn.modaal-ok:hover {
    background: #2f2f2f
}

.modaal-confirm-btn.modaal-cancel {
    text-decoration: underline
}

.modaal-confirm-btn.modaal-cancel:hover {
    text-decoration: none;
    color: #2f2f2f
}

.modaal-instagram .modaal-container {
    width: auto;
    background: 0 0;
    box-shadow: none !important
}

.modaal-instagram .modaal-content-container {
    padding: 0;
    background: 0 0
}

.modaal-instagram .modaal-content-container>blockquote {
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important
}

.modaal-instagram iframe {
    opacity: 0;
    margin: -6px !important;
    border-radius: 0 !important;
    width: 1000px !important;
    max-width: 800px !important;
    box-shadow: none !important;
    -webkit-animation: instaReveal 1s linear forwards;
    animation: instaReveal 1s linear forwards
}

.modaal-image .modaal-inner-wrapper {
    padding-left: 140px;
    padding-right: 140px
}

.modaal-image .modaal-container {
    width: auto;
    max-width: 100%
}

.modaal-gallery-wrap {
    position: relative;
    color: #fff
}

.modaal-gallery-item {
    display: none
}

.modaal-gallery-item img {
    display: block
}

.modaal-gallery-item.is_active {
    display: block
}

.modaal-gallery-label {
    position: absolute;
    left: 0;
    width: 100%;
    margin: 20px 0 0;
    font-size: 18px;
    text-align: center;
    color: #fff
}

.modaal-gallery-label:focus {
    outline: 0
}

.modaal-gallery-control {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    cursor: pointer;
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 100%;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.modaal-gallery-control.is_hidden {
    opacity: 0;
    cursor: default
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
    outline: 0;
    background: #fff
}

.modaal-gallery-control:focus:after,
.modaal-gallery-control:focus:before,
.modaal-gallery-control:hover:after,
.modaal-gallery-control:hover:before {
    background: #afb7bc
}

.modaal-gallery-control span {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden
}

.modaal-gallery-control:after,
.modaal-gallery-control:before {
    display: block;
    content: " ";
    position: absolute;
    top: 16px;
    left: 25px;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

.modaal-gallery-control:before {
    margin: -5px 0 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.modaal-gallery-control:after {
    margin: 5px 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.modaal-gallery-next-inner {
    left: 100%;
    margin-left: 40px
}

.modaal-gallery-next-outer {
    right: 45px
}

.modaal-gallery-prev:after,
.modaal-gallery-prev:before {
    left: 22px
}

.modaal-gallery-prev:before {
    margin: 5px 0 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.modaal-gallery-prev:after {
    margin: -5px 0 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.modaal-gallery-prev-inner {
    right: 100%;
    margin-right: 40px
}

.modaal-gallery-prev-outer {
    left: 45px
}

.modaal-video-wrap {
    margin: auto 50px;
    position: relative
}

.modaal-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    background: #000;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto
}

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

.modaal-iframe .modaal-content {
    width: 100%;
    height: 100%
}

.modaal-iframe-elem {
    width: 100%;
    height: 100%;
    display: block
}

.modaal-loading-spinner {
    background: 0 0;
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -100px;
    -webkit-transform: scale(.25);
    -ms-transform: scale(.25);
    transform: scale(.25)
}

.modaal-loading-spinner>div {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    margin-top: 4px;
    position: absolute
}

.modaal-loading-spinner>div>div {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #fff
}

.modaal-loading-spinner>div:nth-of-type(1)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.modaal-loading-spinner>div:nth-of-type(2)>div,
.modaal-loading-spinner>div:nth-of-type(3)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite
}

.modaal-loading-spinner>div:nth-of-type(1) {
    transform: translate(84px, 84px) rotate(45deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(2)>div {
    -webkit-animation-delay: .12s;
    animation-delay: .12s
}

.modaal-loading-spinner>div:nth-of-type(2) {
    transform: translate(84px, 84px) rotate(90deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(3)>div {
    -webkit-animation-delay: .25s;
    animation-delay: .25s
}

.modaal-loading-spinner>div:nth-of-type(3) {
    transform: translate(84px, 84px) rotate(135deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(4)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite;
    -webkit-animation-delay: .37s;
    animation-delay: .37s
}

.modaal-loading-spinner>div:nth-of-type(4) {
    transform: translate(84px, 84px) rotate(180deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(5)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.modaal-loading-spinner>div:nth-of-type(5) {
    transform: translate(84px, 84px) rotate(225deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(6)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite;
    -webkit-animation-delay: .62s;
    animation-delay: .62s
}

.modaal-loading-spinner>div:nth-of-type(6) {
    transform: translate(84px, 84px) rotate(270deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(7)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite;
    -webkit-animation-delay: .75s;
    animation-delay: .75s
}

.modaal-loading-spinner>div:nth-of-type(7) {
    transform: translate(84px, 84px) rotate(315deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(8)>div {
    -webkit-animation: modaal-loading-spinner 1s linear infinite;
    animation: modaal-loading-spinner 1s linear infinite;
    -webkit-animation-delay: .87s;
    animation-delay: .87s
}

.modaal-loading-spinner>div:nth-of-type(8) {
    transform: translate(84px, 84px) rotate(360deg) translate(70px, 0)
}

@media only screen and (min-width:1400px) {
    .modaal-video-container {
        padding-bottom: 0;
        height: 731px
    }
}

@media only screen and (max-width:1140px) {
    .modaal-image .modaal-inner-wrapper {
        padding-left: 25px;
        padding-right: 25px
    }

    .modaal-gallery-control {
        top: auto;
        bottom: 20px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background: rgba(0, 0, 0, .7)
    }

    .modaal-gallery-control:after,
    .modaal-gallery-control:before {
        background: #fff
    }

    .modaal-gallery-next {
        left: auto;
        right: 20px
    }

    .modaal-gallery-prev {
        left: 20px;
        right: auto
    }
}

@media screen and (max-width:900px) {
    .modaal-instagram iframe {
        width: 500px !important
    }
}

@media only screen and (max-width:600px) {
    .modaal-instagram iframe {
        width: 280px !important
    }
}

@media screen and (max-height:1100px) {
    .modaal-instagram iframe {
        width: 700px !important
    }
}

@media screen and (max-height:1000px) {
    .modaal-inner-wrapper {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .modaal-instagram iframe {
        width: 600px !important
    }
}

@media screen and (max-height:900px) {
    .modaal-instagram iframe {
        width: 500px !important
    }

    .modaal-video-container {
        max-width: 900px;
        max-height: 510px
    }
}

@media only screen and (max-height:820px) {
    .modaal-gallery-label {
        display: none
    }
}

@keyframes instaReveal {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes instaReveal {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes modaal-loading-spinner {
    0% {
        opacity: 1;
        transform: scale(1.5)
    }

    100% {
        opacity: .1;
        transform: scale(1)
    }
}

@keyframes modaal-loading-spinner {
    0% {
        opacity: 1;
        transform: scale(1.5)
    }

    100% {
        opacity: .1;
        transform: scale(1)
    }
}

/* =============================================================
   Modaal カスタムスタイル
   ============================================================= */
.modaal-inner-wrapper {
    padding: 20px;
}

.modaal-container {
    position: relative;
    overflow: visible !important;
    border-radius: 20px;
}

.modaal-close {
    position: fixed !important;
    top: 5px !important;
    left: 5px !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
}