@charset "utf-8";
html {
    font-size: 62.5%;
    height: 100%;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}
body {
    background: #fff;
    color: #222;
    font-family: "Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, 游ゴシック, Meiryo, メイリオ, Verdana, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
    line-height: 1.85;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}
a {
    display: block;
    color: #222;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    outline: none;
}
img {
    display: block;
    height: auto;
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li, li {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p, figure {
    margin: 0;
    padding: 0;
}
p {
    text-align: justify;
    line-height: 1.75;
}
p + p {
    margin-top: 1em;
}
/*===================================
section
===================================*/
.section {
    padding-bottom: clamp(70px, 9vw, 100px);
    padding-top: clamp(70px, 9vw, 100px);
}
.section:not(._bg) + .section:not(._bg) {
    padding-top: 0px;
}
._bg {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
/* img */
._bg_img01 {
    background: url(../img/mv.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}
/* bg bg mask */
._bg_mask {
    position: relative;
}
._bg_mask::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
._bg_mask > * {
    position: relative;
    z-index: 1;
}
._bg_mask_blk::after {
    background-color: rgba(0, 0, 0, .8);
}
._bg_mask_wht::after {
    background-color: rgba(255, 255, 255, .9);
}
/* bg color */
._bg_color01 {
    background: #ccc;
}
._bg_color02 {
    background: #222;
}
._bg_color03 {
    background: red;
}
/*===================================
wrap
===================================*/
._inner {
    width: min(92%, 1200px);
    margin: auto;
}
._container + ._container {
    margin-top: 50px;
}
._box + ._box {
    margin-top: 30px;
}
._box_child + ._box_child {
    margin-top: 20px;
}
/*===================================
font
===================================*/
.en_01 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
}
.jp_01 {}
/*===================================
heading
===================================*/
/* heading style */
.heading01 {
    position: relative;
    padding: 1.5vw 1vw;
    font-size: 5vw;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: -0.1em;
    text-transform: uppercase;
    text-align: center;
    width: 92%;
    margin: 0 auto;
}
.heading01:before, .heading01:after {
    position: absolute;
    content: '';
}
.heading01:after {
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}
.heading01:before {
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}
.heading01 + * {
    margin-top: 30px;
}
@media screen and (min-width:768px) {}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {}
.heading02 {
    font-size: 5vw;
    font-weight: 900;
}
.heading02 span {
    color: #666;
    display: block;
    font-weight: 700;
    font-size: .7em;
    text-transform: uppercase
}
.heading02 + * {
    margin-top: 1.5em;
}
@media screen and (min-width:768px) {
    .heading02 {
        font-size: 2.5vw;
    }
}
@media screen and (min-width:960px) {
    .heading02 {
        font-size: 2vw;
    }
}
@media screen and (min-width:1200px) {}
.heading03 {}
.heading04 {}
.heading05 {}
/*===================================
btn
===================================*/
/* btn wrap */
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
* + .btns {
    margin-top: 20px;
}
/* btn base */
.btn {
    border: 1px solid #222;
    color: #222;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    padding: 10px 40px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
}
/* btn type */
.btn_type01 {
    background: #222;
    border: 2px solid;
    color: #fff;
    transition: .3s all;
    width: min(100%, 250px);
}
.btn_type01:hover {
    background: #fff;
    color: #222;
}
/*===================================
list
===================================*/
._list {}
._list_item {}
._list_item + ._list_item {
    margin-top: 10px;
}
/*===================================
table
===================================*/
/* スクロールバーの表示 */
._scroll-bar {
    overflow-x: auto;
}
._scroll-bar::-webkit-scrollbar {
    height: 8px;
}
._scroll-bar::-webkit-scrollbar-track {
    border-radius: 8px;
    background: rgba(238, 238, 238, 1);
}
._scroll-bar::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(169, 170, 161, 1);
}
/*===================================
header
===================================*/
/* header */
#header {
    position: relative;
    top: 0;
    left: 0;
    background: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 999;
}

#header .logo a {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}
#header .logo a span {
    display: none;
}
#header .logo a img {
    width: 90px;
}
@media screen and (min-width: 768px) {
    #header .logo a {
        font-size: 2.5vw;
    }
    #header .logo a span {
    display: block;
}
}
@media screen and (min-width: 960px) {
    #header .logo {
        padding: 4%;
        z-index: 999;
    }
}
@media screen and (min-width: 1200px) {
    #header {
        position: fixed;
        height: 100px;
    }
    #header .logo a img {
    width: 120px;
}
    #header .logo a {
        font-size: 1vw;
    }
}
/*===================================
booking
===================================*/
#header .booking {
    background: #fff;
    display: block;
    position: fixed;
    right: 60px;
    cursor: pointer;
    height: 60px;
    transition: all .4s;
    padding: 2vw 0 2vw 2vw;
    z-index: 9999;
}
#header .booking a {
    border: 1px solid;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 4vw;
    text-transform: uppercase;
    padding: 0 2vw;
}
@media screen and (min-width:768px) {
    #header .booking {
        padding: 1vw 0 1vw 1vw;
    }
    #header .booking a {
        font-size: 2vw;
    }
}
@media screen and (min-width:1200px) {
    #header .booking {
        top: 50%;
        right: 0;
        transform: rotate(90deg);
        padding: 0;
    }
    #header .booking a {
        font-size: 1vw;
        padding: 0 2vw;
    }
}
/*===================================
nav
===================================*/
#nav {
    position: absolute;
    top: 0;
    right: -120%;
    width: 100vw;
    height: 100vh;
    transition: .3s all;
}
#nav.panelactive {
    left: 0;
    right: 0;
}
#nav.panelactive #nav_list {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #fff;
    transition: .3s all;
    overflow: auto;
    z-index: 999;
}
#nav #nav_list #menu_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    transition: .3s all;
}
#nav #nav_list #menu_list ._list_item {
    text-align: right;
    padding: 4vw 2vw;
}
#nav #nav_list #menu_list ._list_item + ._list_item {
    border-top: 1px solid;
}
#nav #nav_list #menu_list ._list_item a {
    font-size: 6vw;
    font-weight: 700;
    line-height: 1.5;
    width: 100%;
    display: flex;
    flex-direction: column;
}
#nav #nav_list #menu_list ._list_item a span {
    display: block;
    font-size: .5em;
    color: #696969;
}
@media screen and (min-width:768px) {
    #nav #nav_list #menu_list ._list_item a {
        font-size: 4vw;
    }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
    #nav {
        top: 0;
        right: 0;
        height: 60px;
    }
    #nav #nav_list {}
    #nav #nav_list #menu_list {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        height: 100px;
        gap: 20px;
    }
    #nav #nav_list #menu_list ._list_item a {
        font-size: 16px;
        text-align: center;
    }
    #nav #nav_list #menu_list ._list_item + ._list_item {
        margin-top: 0;
    }
}
/*===================================
hamburger menu
===================================*/
.nav_openbtn {
    background: #fff;
    display: block;
    position: fixed;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    padding: 2vw;
    z-index: 9999;
}
.nav_openbtn .openbtn_area {
    border: 1px solid;
    width: 100%;
    height: 100%;
    transition: all .4s;
}
.nav_openbtn span {
    background: #000;
    display: inline-block;
    position: absolute;
    left: 30%;
    height: 1px;
    width: 40%;
    transition: all .4s;
    z-index: 999;
}
.nav_openbtn span:nth-of-type(1) {
    top: 27px;
}
.nav_openbtn span:nth-of-type(2) {
    top: 30px;
}
.nav_openbtn span:nth-of-type(3) {
    top: 33px;
}
.nav_openbtn.active span:nth-of-type(1) {
    top: 29px;
    left: 21px;
    transform: rotate(45deg);
    width: 30%;
}
.nav_openbtn.active span:nth-of-type(2) {
    transform: scale(0, 1);
    transform-origin: left top;
}
.nav_openbtn.active span:nth-of-type(3) {
    top: 29px;
    left: 21px;
    transform: rotate(-45deg);
    width: 30%;
}
@media screen and (min-width:768px) {
    .nav_openbtn {
        padding: 1vw;
    }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
    .nav_openbtn {
        display: none;
    }
}
/*===================================
main
===================================*/
#main {
    overflow: hidden;
}
/*===================================
footer
===================================*/
#footer {
    background: #222;
    color: #fff;
    padding: 4%;
}
#footer .heading01::before, #footer .heading01::after {
    border-color: #fff;
}
#footer ._inner {
    width: 100%;
}
#footer .footer_logo a {
    display: flex;
    flex-direction: column;
}
#footer .footer_logo a span {
    color: #fff;
    font-size: 8vw;
    text-align: center;
    text-transform: uppercase;
}
#footer .footer_logo a img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 20px auto 0;
}
#footer .footer_link {
    margin-top: 3em;
}
#footer .footer_link ._list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#footer .footer_link ._list ._item {
    width: 100%;
    padding: .5em 0;
}
#footer .footer_link ._list ._item a {
    border: 1px solid;
    border-left: 10px solid;
    color: #fff;
    display: block;
    font-size: 5vw;
    font-weight: 600;
    padding: .5em;
}
#footer .footer_link ._list ._item a span {
    color: #ccc;
    display: block;
    font-size: .7em;
}
/* banner */
#footer .banner_link {
    margin-top: 3em;
}
#footer .banner_link ._list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#footer .banner_link ._list ._item {
    width: 100%;
}
#footer .banner_link ._list ._item + ._item {
    margin-top: 0;
}
#footer .banner_link ._list ._item a {}
#footer .banner_link ._list ._item a img {
    display: inline-block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* sns */
#footer .sns_link {
    margin-top: 3em;
}
#footer .sns_link ._list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#footer .sns_link ._list ._item {
    background: #fff;
    border: 1px solid;
    width: 100%;
}
#footer .sns_link ._list ._item.youtube svg {
    background: #DA1725;
}
#footer .sns_link ._list ._item.instagram svg {
    background: linear-gradient(45deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
}
#footer .sns_link ._list ._item.facebook svg {
    background: #1877f2;
}
#footer .sns_link ._list ._item.twitter svg {
    background: #222;
}
#footer .sns_link a {
    display: flex;
    align-items: center;
}
#footer .sns_link a span {
    margin-left: 10px;
}
#footer .sns_link svg {
    background: #222;
    fill: #fff;
    width: 45px;
    height: 45px;
    padding: 10px;
}
/* under link */
#footer .footer_under_link ._list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    padding: 2vw;
}
#footer .footer_under_link ._list ._item {
    margin-top: 0;
}
#footer .footer_under_link ._list ._item {
    position: relative;
    display: flex;
    align-items: center;
}
#footer .footer_under_link ._list {
    padding: 4vw 2vw 0;
}
#footer .footer_under_link ._list ._item:not(:last-child)::after {
    content: "｜";
}
#footer .footer_under_link a {
    color: #fff;
    font-size: 3vw;
    font-weight: 500;
}
/* small */
#footer small {
    display: block;
    font-size: 2.5vw;
    font-weight: 600;
    text-align: center;
    padding: 2vw 1vw 2vw;
}
@media screen and (min-width:768px) {
    #footer .footer_logo a {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 4%;
    }
    #footer .footer_logo a span {
        font-size: 4vw;
    }
    #footer .footer_logo a img {
        width: 80px;
        height: 80px;
        margin: 0;
    }
    #footer .footer_link ._list ._item {
        width: calc((100% - 10px) / 2);
    }
    #footer .footer_link ._list ._item a {
        font-size: 2vw;
    }
    #footer .sns_link ._list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    #footer .sns_link ._list ._item {
        width: calc((100% - 30px) / 4);
        margin-top: 10px;
    }
    #footer .banner_link ._list ._item {
        width: calc((100% - 2vw) / 2);
    }
    #footer .banner_link ._list ._item {
        width: calc((100% - 4vw) / 3);
    }
    #footer .footer_under_link a {
        font-size: 2vw;
    }
    #footer small {
        font-size: 1.5vw;
    }
}
@media screen and (min-width:960px) {
    #footer .footer_link ._list ._item {
        width: calc((100% - 30px) / 4);
    }
    #footer .footer_link ._list ._item a {
        font-size: 1.2vw;
    }
    #footer .sns_link ._list ._item {
        width: calc((100% - 30px) / 4);
    }
    #footer .footer_link ._list ._item a {
        font-size: 1.5vw;
        padding: .5em;
    }
}
@media screen and (min-width:1200px) {
    #footer .footer_logo a span {
        font-size: 3vw;
    }
    #footer .footer_logo a img {
        width: 100px;
        height: 100px;
    }
    
    #footer .heading01 {
        font-size: 2vw;
    }
    #footer ._container .footer_middle {
        display: flex;
        gap: 1vw;
        margin: 0 auto;
    }
    #footer ._container .footer_middle > * {
        width: calc(100% / 3);
    }
    #footer .footer_link {
        order: 2;
    }
    #footer .footer_link ._list {}
    #footer .footer_link ._list ._item {
        width: calc((100% - 4%) / 2);
        padding: 0;
    }
    #footer .banner_link {
        order: 3;
    }
    #footer .banner_link ._list ._item {
        width: calc((100% - 4%) / 2);
    }
    #footer .sns_link {
        order: 1;
    }
    #footer .sns_link ._list ._item {
        margin-top: 0;
        width: calc((100% - 4%) / 2);
    }
    #footer .footer_link ._list ._item a {
        font-size: 1vw;
    }
    #footer .footer_bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #footer .footer_bottom > * {
        width: 100%;
    }
    #footer .footer_under_link ._list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 2vw;
    }
    #footer .footer_under_link a {
        font-size: 1vw;
        white-space: nowrap;
    }
    #footer small {
        font-size: 1vw;
        padding: 1vw;
        text-align: right;
    }
}
/*===================================
page top
===================================*/
#page_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222;
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s;
}
#page_top a:hover {
    color: #222;
    background: #ccc;
    transform: translateY(-5px);
}
#page_top {
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}
#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}