@charset "utf-8";

/* 追加 */
:root {
    --vh: 100vh;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
    background: #ffffff;
    font-family: "adobe-garamond-pro", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: normal;
    font-size: 17px;
}

.font-gothic {
    font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

main {
    height: 100vh;
}

.sp {
    display: none;
}

.logo-wrap {
    position: relative;
    width: 100vw;
    height: 100%;
}

.logo,
.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    opacity: 0;
}

.logo {
    animation: fadeInOut 5s forwards;
    animation-delay: 1s;
}

.logo img {
    width: 100%;
}

.title {
    animation: fadeInOut 6s forwards;
    animation-delay: 5s;
}

.title img {
    width: 100%;

}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.skip {
    opacity: 0;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 18px;
    letter-spacing: 1px;

    animation: fadeInOut 8s forwards;
    animation-delay: 3s;
    z-index: 2;
}

.skip p::after {
    content: url(../images/arrow_right.svg);
    width: 15px;
    display: inline-block;
    transform: translateY(2px);
    margin-left: -5px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    animation: fadeIn 3s forwards;
    animation-delay: 10s;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guestbook {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background-color: #ffffff;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    opacity: 0;
    animation: fadeIn 3s forwards;
    animation-delay: 20s;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 0;

    opacity: 0;
    animation: fadeIn 3s forwards;
    animation-delay: 20s;
}

.guestbook h3 {
    margin: 60px auto 60px auto;
}

.form {
    border-radius: 0;
    max-width: 80%;
    margin: 0 auto;
}

.form p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-left: -30px;
}

.form label {
    font-size: 14px;
    color: #000000;
    flex: 0 0 100px;
    margin-right: 10px;
    text-align: right;
}

input {
    border: 1px solid #ccc;
    background-color: white;
}

.form input[type="text"] {
    flex: 1;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.form .notice {
    flex: 1 1 100%;
    margin-left: 110px;
    font-size: 14px;
    margin-top: 10px;
}

.submit {
    display: flex;
    column-gap: 15px;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    margin-top: 66px;
}

.submit input[type="submit"],
.submit input[type="button"] {
    padding: 16px 20px;
    width: 180px;
    transition: all 0.2s;
    color: rgb(0, 0, 0);
}

.submit input[type="submit"]:hover,
.submit input[type="button"]:hover {
    background-color: #000000;
    color: white;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    30%,
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    40%,
    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
    transition: all 0.2s;
}

a,
a:link,
a:visited {
    color: #707070;
}

.skip a,
.skip a:link,
.skip a:visited {
    color: black;
}

.overview a:hover,
.profile a:hover,
header a:hover,
.skip a:hover {
    opacity: 0.5;
}

header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background: #ffffff;
    z-index: 999;

    border-bottom: solid 1px #C6C6C6;
}

header::after {
    content: "";
    display: block;
    width: 60px;
    height: 0;
}

footer {
    font-size: 12px;
    color: #707070;
    margin-top: auto;
}

header img {
    height: 26px;
}

h2 {
    font-size: 14px;
    font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    margin-bottom: 42px;
}

p {
    margin-bottom: 20px;
}

.justify {
    text-align: justify;
}

.split-box {
    position: absolute;
    width: 50%;
    height: calc(100vh - 100px);
    top: 100px;
    padding: 65px 65px 20px 65px;

    font-size: 17px;
    line-height: 1.9;

    display: flex;
    flex-direction: column;
}

.left-box {
    left: 0;
    overflow-y: scroll;
    z-index: 1;
}

.sketchfab-embed-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
}

.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 100%;
}

.right-box,
.contents {
    right: 0;
    overflow-y: scroll;
    padding-bottom: 100px;
    z-index: 2;
}

.menu-wrap {
    border-bottom: 1px solid #C6C6C6;
}

.menu {
    display: flex;
}

.menu-box {
    width: 50%;
    border-top: 1px solid #C6C6C6;
    padding: 20px 0;
}

.menu-box-gaiyou {
    width: 100%;
    border-top: 1px solid #C6C6C6;
    padding: 20px 0;
    display: none;
}

.menu a {
    width: 100%;
    height: 100%;
    color: #000000;
    opacity: 1;
}

.menu a:hover {
    background: #f9f6ee;
}

.menu-list {
    list-style: none;
    padding-left: 0;
    width: 50%;
}

.menu-list li {
    border-top: 1px solid #C6C6C6;
    padding: 20px 0;
}


.menu-list a {
    color: black;
    opacity: 1;
}

.menu-list a:hover li {
    background: #f9f6ee;
}

.menu-list a li {
    transition: all 0.2s;
}

.block {
    margin-bottom: 120px;
}

.overview {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.overview li {
    margin-bottom: 8px;
}

.category {
    font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.note {
    font-size: 0.8em;
    vertical-align: top;
}

.profile {
    width: 70%;
    font-size: 15px;
}

.back {
    font-size: 13px;
    font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    width: 20%;
}

.back p {
    margin-bottom: 10px;
}

.back p::before {
    content: url(../images/arrow_back_ios_20dp_FILL1_wght300_GRAD0_opsz20.svg);
    width: 14px;
    height: 10px;
    display: inline-block;
    transform: translateY(2px);
    margin-right: 0px;
}

.back a {
    color: black;
}

h3 {
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.block img {
    width: 100%;
}

/* Table */
th {
    font-size: 12px;
    font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 600;
    color: #A2A2A2;
    text-align: left;
    padding-top: 0;
    border-bottom: solid 1px #C6C6C6;
    line-height: 14px;
    padding-bottom: 10px;
}

td {
    padding: 10px 10px 8px 0px;
    border-bottom: solid 1px #C6C6C6;
    font-size: 15px;
}

table {
    border-collapse: collapse;
}

table td:nth-of-type(2) {
    line-height: 20px;
}

table td:nth-of-type(3),
td:nth-of-type(4),
td:nth-of-type(5),
td:nth-of-type(6) {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.table-link {
    display: block;
    width: 100%;
    height: 100%;
}

table td:nth-of-type(1) {
    width: 5%;
}

table td:nth-of-type(3) {
    width: 16%;
}

td:nth-of-type(4),
td:nth-of-type(5) {
    width: 14%;
}

table td:nth-of-type(6) {
    width: 18%;
}

/* table link */
tr[data-href] {
    cursor: pointer;
    transition: all 0.2s;
}

tr[data-href] td {
    text-decoration: none;
}

tr[data-href]:hover {
    background-color: #f9f6ee;
}

.download {
    display: block;
    width: 80%;
    margin: 26px auto 0 auto;
    text-align: center;
}

.download-app {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 12px;
}

.download-wrap {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.download-button {
    border: solid 1px rgb(151, 151, 151);
    padding: 4px 40px;
    border-radius: 22px;
    font-size: 12px;
    line-height: 14px;
    transition: all 0.3s;
}

a .download-button {
    background-color: white;
    color: black;
}

a:hover .download-button {
    background-color: black;
    color: white;
    opacity: 1;
}

@media (min-width:800px) {
    .no-contents {
        display: none;
    }
}

@media (min-width:750px) and (max-width:1200px) {
    .split-box {
        padding: 65px 30px 20px 30px;

    }
}

@media screen and (max-width:799px) {
    main {
        height: calc(var(--vh, 1vh) * 100);
    }

    body.no-scroll {
        overflow: hidden;
    }

    .logo,
    .title {
        width: 75%;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .skip {
        font-size: 16px;
    }

    .guestbook {
        width: 90%;
        height: 80%;
    }

    .form p {
        flex-direction: column;
        margin-left: 0;
    }

    .form label {
        font-size: 16px;
        flex: 0 0 40px;
    }

    .form .notice {
        margin-left: 0;
    }

    header {
        height: 60px;
    }

    header img {
        height: 20px;
    }

    h2 {
        margin-bottom: 20px;
    }

    .split-box {
        padding: 30px 30px 40px 30px;
        top: 60px;
        position: relative;
        width: 100%;
        height: auto;
        font-size: 15px;
    }

    .contents,
    .no-contents {
        position: fixed;
        top: 60px;
        width: 100%;
        height: 100vh;
        background-color: rgb(255, 255, 255);
        transition: all 0.3s;
        opacity: 0;
        z-index: -100;
    }

    .contents.active,
    .no-contents.active {
        opacity: 1;
        z-index: 100;
    }

    .right-box {
        top: 60px;
        padding-bottom: 100px;
    }

    .block {
        margin-bottom: 60px;
    }

    .profile {
        width: 100%;
    }

    .back {
        display: none;
    }

    .menu-box-gaiyou {
        display: block;
    }

    .outline {
        height: calc(100% - 60px) !important;
    }

    table td:nth-of-type(1),
    table td:nth-of-type(2) {
        font-size: 12px;
    }

    footer {
        display: none;
    }

    .sp {
        display: block;
    }

    .download {
        display: none;
    }

}