@charset "UTF-8";

* {
    color: white;
    box-sizing: border-box;
    font-weight: 100;
}

html {
    font-size: 12px;
    position: fixed;
}

main {
    height: 100%;
}

body {
    position: relative;
    background-image: url("../img/bg.svg");
    background-size: cover;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

section {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s;
}

section#first_view {
    opacity: 0;
}

section#gallery {
    visibility: hidden;
    opacity: 0;
}

section#about {
    visibility: hidden;
    opacity: 0;
}

section#contact {
    visibility: hidden;
    opacity: 0;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
* ヘッダー
* * * * * * * * * * * * * * * * * * * * * * * * */
header {
    position: absolute;
    opacity: 0;
    top: 0;
    transition: opacity 1s;
    width: 100%;
    padding: 2rem 1rem;
    z-index: 200;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
}

header .container h1 {
    font-size: 2.75rem;
    font-weight: 100;
}

header .container .right {
    display: flex;
}

header .container .right .t_button {
    position: relative;
    width: 100%;
    height: min-content;
    margin: 0 2rem;
    cursor: pointer;
    transition: opacity 0.5s;
}

header .container .right .t_button:hover {
    opacity: 0.6;
}

header .container .right .t_button img {
    width: 100%;
    position: relative;
    visibility: hidden;
}

header .container .right .t_button.active img {
    width: 100%;
    position: relative;
    visibility: visible;
}

header .container .right .t_button span {
    padding-top: 0.5rem;
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    header {
        padding: 1rem;
    }

    header .container {
        padding: 0;
    }

    header .container img {
        height: 40px;
    }

    #h_menu_btn {
        width: 40px;
        height: 36px;
        position: relative;
    }

    #h_menu_btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 4px;
        transition: all 0.5s;
    }

    #h_menu_btn span:nth-child(1) {
        top: 0;
    }

    #h_menu_btn span:nth-child(2) {
        top: 16px;
    }

    #h_menu_btn span:nth-child(3) {
        bottom: 0;
    }

    #h_menu_btn.active span:nth-child(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(16px) rotate(-45deg);
    }

    #h_menu_btn.active span:nth-child(2) {
        opacity: 0;
    }

    #h_menu_btn.active span:nth-child(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-17px) rotate(45deg);
    }
}

#h_menu {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 100;
    display: none;
    text-align: center;
    padding: 20% 0;
    font-size: 2rem;
}

#h_menu p {
    line-height: 5rem;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
 * ファーストビュー 
 * * * * * * * * * * * * * * * * * * * * * * * * * /

/* 真ん中のタイトルのとこ */
#main_title_wrapper {
    position: absolute;
    top: calc(50vh - 84px);
    width: 100%;
    text-align: center;
}

#main_title_wrapper img {
    max-width: 600px;
    width: 90%;
}

#main_title_wrapper div {
    display: inline-block;
    font-weight: 300;
    font-size: 6rem;
    position: absolute;
    margin: 0 auto;
    top: 0;
    right: 0;
    left: 0;
}

#main_title_wrapper div.white {
    color: white;
    z-index: 10;
}

#main_title_wrapper div.pink {
    color: #ea36af;
    z-index: 5;
    margin-top: 4px;
    margin-left: 3px;
}

#main_title_wrapper div.green {
    color: #75fa69;
    z-index: 0;
    margin-top: -1px;
    margin-left: -4px;
}

/* 天気のとこ */
#tenki_wrapper {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 10%;
    min-width: 168px;
    height: min-content;
}

#tenki_wrapper .waku {
    width: 100%;
}

#tenki_wrapper .container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
}

#tenki_wrapper .container .title {
    height: 15%;
    text-align: center;
    font-size: 1.25rem;
    border-bottom: 1px solid #fff;
}

#tenki_wrapper .container .tenki {
    height: 45%;
    display: flex;
    justify-content: space-around;
    padding: 10%;
}

#tenki_wrapper .container .tenki p {
    margin: 0.25rem 0;
}

#tenki_wrapper .container table {
    width: 100%;
}

#tenki_wrapper .container table tr td {
    padding-bottom: 0.5rem;
}

@media only screen and (max-width: 767px) {
    #tenki_wrapper {
        min-width: 128px;
        top: 1rem;
        right: 1rem;
    }
}

/* 左下のとこ */
#info_wrapper {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

#info_wrapper table tr td {
    padding-right: 1rem;
    padding-bottom: 0.25rem;
}

#info_wrapper table tr td.title {
    text-decoration: underline;
    font-size: 1.25rem;
}

@media only screen and (max-width: 767px) {
    #info_wrapper {
        bottom: 1rem;
        left: 1rem;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
 * コンタクト
 * * * * * * * * * * * * * * * * * * * * * * * * */
#contact .container {
    width: 90%;
    padding: 10% 0 0;
    max-width: 440px;
}

#contact h2 {
    text-align: center;
    font-size: 3.75rem;
    font-weight: 100;
}

#contact input,
#contact textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 1rem;
}

#contact .container button {
    display: block;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 3rem auto 0;
    padding: 0.75rem;
    min-width: 175px;
}

#contact form {
    margin: 0 auto;
}

#contact #response_text {
    margin-top: 3rem;
    color: #c6ff2c;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
 * アバウト
 * * * * * * * * * * * * * * * * * * * * * * * * */
#about .container {
    width: 90%;
    padding: 10% 0 0;
    max-width: 440px;
    text-align: center;
}

#about .container p {
    width: 100%;
    text-align: left;
}

#about h2 {
    font-size: 1.5rem;
    font-weight: 100;
    text-align: center;
}

#about h3 {
    font-size: 3.75rem;
    font-weight: 100;
    text-align: center;
}

#about .naname {
    text-align: center;
    font-size: 3.25rem;
}

#about p {
    line-height: 1.5rem;
}

#about h4 {
    position: relative;
    display: inline-block;
    padding: 0 105px;
    font-weight: 100;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#about h4:before,
#about h4:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 95px;
    height: 1px;
    background-color: #fff;
}

#about h4:before {
    left: 0;
}

#about h4:after {
    right: 0;
}

#about .plan_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#about .plan {
    position: relative;
    width: 160px;
    height: min-content;
}

#about .plan img {
    width: 100%;
}

#about .plan .plan_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    padding-right: 13%;
    padding-left: 10%;
    font-size: 1.25rem;
}

#about .plan .plan_container .bottom_border {
    border-bottom: 1px solid #fff;
    height: 50%;
}

#about .plan .plan_container .top {
    position: absolute;
    top: 13.5%;
}

#about .plan .plan_container .bottom {
    position: absolute;
    bottom: 18.5%;
}

#about .plan .plan_container .bottom .small {
    font-size: 0.5rem;
}

#about .plan.satuei .plan_container .bottom {
    position: absolute;
    bottom: 10%;
}

#about .plan.satuei .plan_container .bottom_top {
    text-decoration: line-through;
    font-size: 0.75rem;
}

#about .plan.satuei .plan_container .bottom_top .small {
    font-size: 0.25rem;
}

#about .plan.satuei .plan_container .bottom_bottom,
#about .plan.satuei .plan_container .bottom_bottom .small {
    color: #c6ff2c;
}

#about .plan.satuei .waribiki {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -1rem;
    right: -2rem;
    height: 2rem;
    padding: 0.5rem;
    background-color: #c6ff2c;
    font-weight: 500;
    /* font-size: 0.5rem; */
    text-align: center;
}

@media only screen and (max-width: 767px) {
    #about .container,
    #contact .container {
        padding: 7rem 0 0;
    }

    #about .plan {
        width: 100%;
        margin-bottom: 2rem;
    }

    #about .plan_wrapper {
        width: 100%;
        max-width: 200px;
        display: block;
        margin: 0 auto;
        padding-bottom: 4rem;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
 * バーチャル
 * * * * * * * * * * * * * * * * * * * * * * * * */

#gallery .wrapper {
    margin: 0 auto;
    padding-top: 0;
}

#gallery .wrapper_innner {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 130px;
}

#gallery .container {
    position: relative;
    width: 50%;
    height: min-content;
    display: flex;
}

#gallery a.container:hover {
    opacity: 0.6;
}

#gallery .container .right {
    position: relative;
    width: 100%;
    height: revert;
}

#gallery .container .box {
    position: absolute;
    width: 100%;
    height: min-content;
    bottom: 0;
    left: 1rem;
}

#gallery .container .box p {
    line-height: 1.75rem;
}

#gallery .container .box h3 {
    line-height: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
}

#gallery .comming_soon {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    #gallery .container {
        width: 100%;
        margin-bottom: 1rem;
    }

    #gallery .wrapper_innner {
        margin-top: 80px;
    }

    #gallery video {
        width: 40%;
    }
    #gallery .comming_soon {
        width: 40%;
    }

    #gallery .container .box p {
        line-height: 1.5rem;
    }

    #gallery .container .box h3 {
        font-size: 1.25rem;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * 
 * slick
 * * * * * * * * * * * * * * * * * * * * * * * * */
#gallery .slick-dots {
    margin-top: 2rem;
}

#gallery .slick-dots li button:before {
    color: white;
    font-size: 12px;
}

#gallery .slick-next {
    right: 100px;
}

#gallery .slick-prev {
    left: 100px;
}

#gallery .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
}

#gallery .next-arrow {
    right: 5%;
}

#gallery .prev-arrow {
    left: 5%;
}

@media only screen and (max-width: 767px) {
    .slick-list.draggable {
        width: 100%;
    }

    html,
    body {
        overflow-y: auto;
    }
}
