@charset "UTF-8";

body {
    font-size: 4vw;
}

body > header {
    height: 14vw;

    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 16;
}

body > header > div {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3vw;
}

#menuCheck {
    display: none;
}

#menuCheck:not(:checked) ~ #headNav {
    right: -100%;
}

#headNav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #EFEFEF;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

#headNav nav {
    padding: 12vw 8vw 4vw;
}

#headNav nav a {
    display: block;
    border-top: 1px solid #464646;
    padding: 0.8em 0;
    text-decoration: none;
    color: #464646;
    font-weight: 700;
    position: relative;
}

#headNav nav a:after {
    content: '';
    display: block;
    width: 0.6em;
    height: 0.6em;
    position: absolute;
    right: 0;
    top: 1.2em;
    border-color: #464646 #464646 transparent transparent;
    border-width: 1px 1px 0 0;
    border-style: solid;
    transform: rotate(45deg);
}

#headNav nav a:first-of-type {
    border-top: none;
}

#headNav a:active,
#headNav a:focus,
#headNav a:hover,
#headNav a.active {
    color: #15867c;
}

#headNavImage {
    height: 100%;
    overflow: hidden;
    max-height: 110vw;
}

#headNavImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#headLogo {
    width: 45%;
}

#headLogo img {
    display: block;
}

#headContact {
    margin-left: auto;
    margin-right: 0.5em;
    width: 14%;
    text-align: center;
    margin-top: 1vw;
}

#headContact a {
    color: #464646;
    text-decoration: none;
    font-size: 3vw;
    display: block;
    line-height: 1.1;
}

#headContact a:hover {
    filter: brightness(0) saturate(100%) invert(18%) sepia(44%) saturate(3791%) hue-rotate(347deg) brightness(79%) contrast(82%);
}

#headContact img {
    width: 46%;
}

#menuButton {
    display: flex;
    width: 8%;
    height: 0;
    margin: 0;
    padding: 8% 0 0;
    position: relative;
    z-index: 20;
}

#menuButton span,
#menuButton:before,
#menuButton:after {
    display: block;
    position: absolute;
    top: 50%;
    width: 50%;
    left: 10%;
    height: 1px;
    background-color: #464646;
    content: '';
    transition: all 0.3s;
}

#menuButton:before {
    top: 22%;
    width: 60%;
}

#menuButton:after {
    top: 78%;
    width: 80%;
}

#menuCheck:checked ~ #menuButton span {
    transform: rotate(360deg);
    opacity: 0;
    left: 20%;
}

#menuCheck:checked ~ #menuButton:before {
    width: 60%;
    transform-origin: center;
    top: 50%;
    left: 20%;
    transform: rotate(225deg);
}

#menuCheck:checked ~ #menuButton:after {
    width: 60%;
    transform-origin: center;
    top: 50%;
    left: 20%;
    transform: rotate(-225deg);
}


#top-content {
    position: relative;
}

#top-movie {
    width: 100%;
    object-fit: cover;
}

#top-movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#top-scroll {
    height: 16vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 3.6vw;
}

#top-scroll span {
    display: inline-block;
    position: relative;
}

#top-scroll span:before {
    content: '';
    position: absolute;
    left: 50%;
    display: block;
    width: 1px;
    height: 4em;
    background-color: #464646;
    bottom: 1.5em;
    animation: scrollAnimation 1.4s ease-in-out infinite;
}

#top-header {
    text-align: center;
    margin-top: 10vw;
}

#top-header h0 {
    font-size: 2.5vw;
    line-height: 1.5;
    color: #0F0F0F;
    font-feature-settings: "palt";
}

#top-header h1 {
    font-size: 6.5vw;
    line-height: 1.5;
    color: #0F0F0F;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 5vw;
    margin-top: 3vw;
    font-feature-settings: "palt";
}

#top-header h1:first-line {
    letter-spacing: 0;
}

#top-header > h1 span {
    font-size: 86%;
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

#top-header > h1 span:before,
#top-header > h1 span:after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 0.1em;
    width: 0.8em;
    height: 3px;
    background-color: #0F0F0F;
    transform: rotate(45deg);
}

#top-header > h1 span:after {
    transform: rotate(-45deg);
}

#top-header > span {
    color: #FFFFFF;
    background-color: #15867c;
    display: inline-block;
    font-weight: 500;
    padding: 0.1em 1.8em 0.2em;
    font-size: 3.4vw;
    margin-bottom: 2vw;
}

#top-header > div {
    font-weight: 600;
    font-size: 5.4vw;
    color: #0F0F0F;
    margin-bottom: 6vw;
}

#top-header > p {
    font-size: 3.8vw;
    margin: 0 12vw 5vw;
    line-height: 1.6;
    text-align: left;
    font-weight: 500;
}

.header-image {
    margin: 0 60px 80px;
}

.header-btn {
    margin: 0 50px 80px;
}

#features {
    padding-top: 5vw;
}

.features-wrap {
    margin-bottom: 5vw;
}

.features-event {
    margin: 0 30px 30px;
}

.features-image {
    margin-bottom: 5vw;
}

.features-image img.imagup {
    position: absolute;
    top: 0%;
    left: 86%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 20%;
}

.features-image img {
    display: block;
}

.features-wrap > h2 {
    font-weight: 600;
    font-size: 5vw;
    text-align: center;
    color: #0F0F0F;
    line-height: 1.6;
    margin-bottom: 5vw;
}

.features-wrap > h3 {
    font-weight: 600;
    font-size: 6vw;
    text-align: center;
    color: #0F0F0F;
    line-height: 1.6;
    margin-bottom: 14vw;
    text-decoration: underline;
    text-underline-offset: 12px;
}

.features-wrap > p {
    margin: 0 12vw 10vw;
    line-height: 1.5;
    font-size: 3.6vw;
}

.features-list {
    display: flex;
    justify-content: space-between;
    gap: 5vw;
    margin: 0 6vw;
}

.features-list p {
    font-size: 3.8vw;
}

.features-list-alt {
    letter-spacing: -0.01em;
}

.features-note {
    margin: 2vw 8vw;
    font-size: 3.3vw;
    line-height: 1.6;
}

#jasmine {
    padding-top: 0vw;
    text-align: center;
}

.jasmine-wrap {
    margin-bottom: 0vw;
}

.jasmine-image {
    margin-bottom: 0vw;
    position:relative;
}

.jasmine-image img {
    display: block;
}

.jasmine-image img.imagup {
    position: absolute;
    top: 0%;
    left: 86%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: 20%;
}

.jasmine-wrap > h2 {
    font-size: 4.4vw;
    margin: 0 10px 30px 10px;
    color: #15867c;
    font-weight: bold;
}

.jasmine-wrap > h3 {
    font-weight: 600;
    font-size: 6vw;
    text-align: center;
    color: #0F0F0F;
    line-height: 1.6;
    margin: 7vw 0 5vw;;
    text-decoration: underline;
    text-underline-offset: 12px;
}

.jasmine-wrap > p {
    margin: 0 12vw 10vw;
    line-height: 1.5;
    font-size: 4.4vw;
}

.jasmine-list {
    display: flex;
    justify-content: space-between;
    gap: 5vw;
    margin: 0 6vw;
}

.jasmine-list p {
    font-size: 3.8vw;
}

.jasmine-list-alt {
    letter-spacing: -0.01em;
}

.jasmine-note {
    margin: 12vw 6vw;
    font-size: 3.6vw;
    line-height: 1.6;
}

#new {
    padding-top: 0vw;
    text-align: center;
}

.new-image {
    margin: 9vw 0 7vw;;
    position:relative;
}

.new-image img {
    display: block;
}

.new-image img.imagup {
    position: absolute;
    top: 0%;
    left: 86%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: 20%;
}

#line-up {
    background-color: #F0F0F0;
    padding: 13vw 0 5vw;
    margin-bottom: 13vw;
}

#line-up > p {
    font-size: 14px;
    margin: 0px 44px 40px;
}

#line-up h2 {
    text-align: center;
    font-size: 4.6vw;
    color: #0F0F0F;
    margin: 7vw 0;
    font-weight: 600;
}

#line-up-slide {
    padding-bottom: 12vw;
}

#line-up-slide .swiper-slide {
    width: 56vw !important;
    padding: 0 5%;
    text-align: center;
    font-size: 3.6vw;
    line-height: 1.7;
    white-space: nowrap;
}

#line-up-slide .swiper-button-next {
    top: 24vw;
    right: 18vw;
}

#line-up-slide .swiper-button-prev {
    top: 24vw;
    left: 18vw;
}

#line-up-slide .swiper-button-next:after,
#line-up-slide .swiper-button-prev:after {
    color: #464646;
    font-size: 6vw;
}

#line-up-slide .swiper-pagination {
    bottom: 0;
}

#line-up-slide .swiper-pagination-bullet {
    background-color: #C8C8C8;
    opacity: 1;
    width: 2.6vw;
    height: 2.6vw;
    margin: 0 1.6vw;
}

#line-up-slide .swiper-pagination-bullet-active {
    background-color: #15867c;
}

.line-up-note {
    margin: 8vw 6vw 4vw;
    font-size: 3.2vw;
    line-height: 1.6;
    text-align: right;
}

.line-up-image {
    margin-bottom: 2vw;
}

.line-up-image img {
    display: block;
}

#store {
    padding: 5vw 0;
}

#store h2 {
    font-weight: 600;
    font-size: 6vw;
    text-align: center;
    color: #0F0F0F;
    margin-bottom: 5vw;
    line-height: 1.5;
}

#store dl {
    margin: 8vw;
    font-size: 3.6vw;
}

#store dl dt {
    font-weight: 600;
    color: #0F0F0F;
}

#store dl dd {
    margin-bottom: 4vw;
}

#store dl dd a {
    color: #005ABB;
    text-decoration: none;
}

#store-map iframe {
    width: 100%;
    height: 46vw;
    filter: sepia(50%) grayscale(90%);
}

#corporate {
    padding: 16vw 0 12vw;
    background-color: #F0F0F0;
}

#corporate h2 {
    font-weight: 600;
    font-size: 5vw;
    text-align: center;
    color: #0F0F0F;
    margin-bottom: 5vw;
    line-height: 2;
}

#corporate dl {
    margin: 8vw;
    font-size: 3.6vw;
}

#corporate dl dt {
    font-weight: 600;
    color: #0F0F0F;
}

#faq {
    padding: 16vw 0;
    background-color: #F0F0F0;
}

#faq h2 {
    font-weight: 600;
    font-size: 5vw;
    text-align: center;
    color: #0F0F0F;
    margin-bottom: 5vw;
    line-height: 2;
}

#faq-list {
    margin: 0 8vw 0 14vw;
    line-height: 1.8;
}

#faq-list input[type=checkbox] {
    display: none;
}

#faq-list > article {
    margin-bottom: 6vw;
    font-size: 3.6vw;
}

#faq-list > article label {
    display: block;
    position: relative;
    color: #0F0F0F;
    font-weight: 700;
    cursor: pointer;
}

#faq-list > article label:before,
#faq-list > article label:after {
    content: '';
    display: block;
    position: absolute;
    left: -2em;
    top: 0.8em;
    width: 1.2em;
    height: 2px;
    background-color: #15867c;
    transition: all .3s;
}

.faq-answer {
    transition: all 0.3s;
    overflow: hidden;
}

.faq-check:not(:checked) ~ .faq-question:before {
    transform: rotate(-90deg);
}

.faq-check:not(:checked)  ~ .faq-question:after {
    transform: rotate(180deg);
}

.faq-check:not(:checked) ~ .faq-answer {
    line-height: 0;
    transition: all 0.3s;
    opacity: 0;
}

body > footer {
    background-color: #ffffff;
    margin-bottom: 20px;
}

#footerNav {
    text-align: center;
    padding: 16vw 0 14vw;

}

#footerNav nav {
    display: inline-block;
}

#footerNav a {
    display: block;
    text-decoration: none;
    color: #464646;
    font-size: 3.8vw;
    margin: 1em 0;
}

#footerNav a:active,
#footerNav a:focus,
#footerNav a:hover,
#footerNav a.active {
    color: #15867c;
}

#copyRight {
    text-align: center;
    font-size: 2.6vw;
    line-height: 4;
}


#present-banner {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    color: #FFFFFF;
    text-align: center;
    padding: 1%;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    z-index: 15;
    opacity: 0;
    animation: lazyLoad 0.3s 0.5s ease-in-out forwards;
}

#present-banner-wrap {
    margin: -3vw 1vw;
    padding-left: 3vw;
    box-shadow: 0px 0px 0px #231815;
    position: relative;
}

#present-banner-wrap > div {
    border: 2px solid #FFFFFF;
    padding: 3.5vw 0vw;
}

#present-banner-wrap > div span {
    background-color: #FFF;
    color: #15867c;
    padding: 0.2em 0.6em;
    font-size: 4.6vw;
    display: inline-block;
    margin-bottom: 2vw;
    width: 500px;
}

#present-banner-wrap > div span h1 {
    font-size: 3.2vw;
}

#present-banner-wrap > div div {
    font-size: 5vw;
    margin-bottom: 1vw;
}

#present-banner-wrap > div p {
    font-size: 3.6vw;
}

#present-banner-wrap > label {
    position: absolute;
    display: block;
    right: 3vw;
    top: -2vw;
    width: 7vw;
    height: 7vw;
    background-color: #F0F0F0;
    border-radius: 50%;
    box-shadow: 2px 2px 8px #231815;
    cursor: pointer;
}

#present-banner-wrap > label:before,
#present-banner-wrap > label:after {
    content: '';
    display: block;
    height: 2px;
    background-color: #464646;
    left: 20%;
    width: 60%;
    position: absolute;
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

#present-banner-wrap > label:after {
    transform: rotate(-45deg);
}

#bannerCheck {
    display: none;
}

#bannerCheck:checked ~ #present-banner {
    /*opacity: 0;
    bottom: -10vw;*/
    visibility: hidden;
    pointer-events: none;
    animation: lazyLoadOut 0.5s ease-in-out forwards;
}
