@charset "UTF-8";

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://example.com/MaterialIcons-Regular.eot);
    /* For IE6-8 */
    src: local('Material Icons'),
        local('MaterialIcons-Regular'),
        url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
        url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
        url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

body {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #333;
    background-color: #000;
}

iframe {
    border: 0;
}

hr {
    color: #fff;
    margin: 15px 10px;
}

#loaderBG {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000200;
    background-color: rgb(0, 0, 0);
}

.fadeout {
    animation: fadeOut 2s;
    animation-fill-mode: both;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeout05s {
    animation: fadeOut 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeOut05s {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#contentBox {
    width: 100%;
    height: 100vh;
    display: flex;
}

.spatialBox {
    width: 100%;
    height: 100%;
    position: relative;
}

.spatialBox iframe {
    width: 100%;
    height: 100%;
}

#embedBox {
    width: 8vw;
    max-width: 100px;
    padding: 20px 6px;
    background-color: #171717;
    box-sizing: border-box;
    display: flex;
    align-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
    border-left: 1px solid #888;
}

#embedBox .logo {
    width: 100%;
    box-sizing: border-box;
    padding: 0 5px;
    margin-bottom: 20px;
}

#embedBox .logo img {
    display: block;
    margin: 0 auto;
    max-width: 80px;
    width: 100%;
}

#embedBox .power {
    color: #fff;
    font-size: 10px;
    letter-spacing: normal;
    text-align: center;
    margin-top: 20px;
}

#embedBox .power a {
    color: #fff;
}

#embedBox .iconButton {
    position: relative;
}

#embedBox .iconButton a,
#embedBox .iconButton button {
    display: block;
    border: none;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    padding: 12px 0;
    font-size: 12px;
}

#embedBox .iconButton a:hover,
#embedBox .iconButton button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.tooltip {
    width: 170px;
    position: absolute;
    top: 50%;
    right: 80%;
    transform: translateY(-50%);
    margin-right: 8px;
    padding: 8px;
    border-radius: 10px;
    background-color: #fff;
    font-size: 12px;
    color: #333;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: 0.5s all;
}

.tooltip::before {
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 12px solid #fff;
    position: absolute;
    top: 50%;
    left: 99%;
    transform: translateY(-50%);
}

#embedBox .iconButton:hover .tooltip {
    right: 100%;
    visibility: visible;
    opacity: 1;
}


.iconButton .material-icons {
    display: block;
    font-size: 32px;
    margin-bottom: 6px;
}

.layer.is-open {
    z-index: 100;
    opacity: 1;
    display: block;
}

.layer.is-open #close {
    opacity: 1;
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 8887;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all;
    animation: show 0.2s linear 0s;
}

.modal-content {
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show 0.2s linear 0s;
    width: 80%;
    max-width: 1200px;
    background-color: transparent;
}

.modal-container {
    border-radius: 10px;
    overflow: hidden;
}

.modal-content>.modal-close {
    display: inline-block;
    position: absolute;
    right: -15px;
    top: -15px;
}

.modal-content>.modal-close .material-icons {
    font-size: 30px;
    color: #fff;
    background-color: #000;
    border-radius: 30px;
}

.modal-content>.modal-close:hover,
.modal-content>.modal-close:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    color: #FFF;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 
#slidoButton {
    display: block;
    border: none;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 15px;
    padding: 12px 10px;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    transition: all 0.3s;
}

#slidoButton:hover {
    opacity: 0.8;
}


#slidoButton span {
    display: block;
}

#slidoButton .material-icons {
    display: block;
    font-size: 32px;
    margin-bottom: 6px;
} */

#modalSlido {
    position: absolute;
    top: 50%;
    right: 110px;
    transform: translate(0, -50%);
    display: none;
    height: 60vh;
}

#modalSlido iframe {
    opacity: 0.9;
    height: 100%;
}

.slidoClose .material-icons {
    color: #fff;
    background-color: #171717;
    border-radius: 15px;
    padding: 3px;
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 10;
    cursor: pointer;
}

#tayori-chat.tayori-chat-btn-left .tc-btn-trigger {
    right: calc(100vw - 65px) !important;
}

#tayori-chat .tc-btn-trigger {
    width: 50px !important;
    height: 36px !important;
    bottom: 18px !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

#tayori-chat .tc-btn-trigger__label-open>svg,
#tayori-chat .tc-btn-trigger__label-open__icon {
    margin: 3px 10px !important;
    width: 30px !important;
    height: 30px !important;
    fill: #171717 !important;
}

#tayori-chat .tc-main-frame {
    bottom: 85px !important;
}

#tayori-chat {
    z-index: 99 !important;
}

.tc-btn-trigger:before {
    content: "チャットサポート";
    display: block;
    width: 140px;
    height: 36px;
    line-height: 36px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #fff;
    border-radius: 30px;
    padding-left: 30px;
    color: #171717;
    font-weight: bold;
    box-sizing: content-box !important;
    box-shadow: 0 0 15px #333;
}

#tayori-chat .tc-btn-trigger__label-close::before,
#tayori-chat .tc-btn-trigger__label-close::after {
    background-color: #171717 !important;
}

#modalExit .modal-content {
    width: 320px;
    text-align: center;
    font-weight: bold;
}

#modalExit .modal-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px 20px;
}

.exitButtonList {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.exitButtonList li {
    width: 50%;
}

.exitButtonList button {
    border: 2px solid #171717;
    border-radius: 20px;
    width: 90%;
    color: #fff;
    background-color: #171717;
    padding: 3px 0;
    transition: all 0.3s;
}

.exitButtonList li:first-child button {
    color: #171717;
    background-color: #fff;
}

.exitButtonList button:hover {
    opacity: 0.8;
}

@media (max-height: 700px) {
    #embedBox {
        width: 15vw;
        min-width: 140px;
    }

    #embedBox .buttonList {
        display: flex;
        flex-wrap: wrap;
    }

    #embedBox .buttonList li {
        width: 50%;
    }

    #embedBox .iconButton a,
    #embedBox .iconButton button {
        font-size: 10px;
    }

    #modalSlido {
        height: 90vh;
        right: 150px;
    }
}

#embedBox .logo {
    margin-bottom: 30px;
}

/* スクロールの幅の設定 */
.scroll::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* スクロールの背景の設定 */
.scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(110, 108, 108, 0.2);
}

/* ドラックできるスクロール部の設定 */
.scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
}

#termsBG {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.termsCon {
    width: 90%;
    max-width: 800px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    color: #ddd;
    padding: 40px 20px;
}

.termsCon h1 {
    max-width: 300px;
    width: 90%;
    margin: 0 auto 40px;
}

.termsText {
    overflow-y: scroll;
    height: 50%;
    max-height: 500px;
    margin: 20px 0;
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 20px;
}

.agreeButton,
#submitButton {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 10px;
    border: none;
    text-align: center;
    background-color: rgba(170, 170, 170, 0.2);
    transition: all 0.3s;
}

#submitButton.is-active {
    font-weight: bold;
    background-color: rgba(240, 240, 240, 0.9);
    color: #222;
}

.agreeButton input {
    margin-right: 15px;
}

.termsCon h1+p {
    text-align: center;
}

.termsText h2 {
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2px solid #aaa;
    margin: 30px 0 20px;
    padding: 0 0 2px 5px;
}

.termsText h3 {
    font-weight: bold;
    font-size: 18px;
    margin: 30px 0 10px;
}

.termsText h4 {
    font-weight: bold;
    font-size: 16px;
    margin: 20px 0 10px;
}

.termsText a {
    text-decoration: underline;
    color: #008cbf;
}

.termsText ul {
    position: relative;
}

.termsText li {
    padding-left: 2.2em;
}

.termsText li span {
    position: absolute;
    left: 0;
    margin: 0;
}

.termsText .textRight {
    text-align: right;
}

.termsText table {
    border-spacing: 0;
}

.termsText td {
    border: solid 1px #ddd;
    padding: 5px 20px;
    height: 30px;
    width: 20%;
}

.spCon {
    display: none;
}

#sp {
    overflow: auto;
}

#sp .spCon {
    display: block;
    color: #eee;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

#sp .spCon img {
    width: 250px;
    margin: 0 auto 10px;
}

#sp #contentBox {
    display: block;
}

#sp #embedBox {
    display: none;
}

#sp iframe {
    height: 75%;
}