@charset "UTF-8";

/*---------------------------------------------------------
Reset
---------------------------------------------------------*/

html {
    /*overflow-x: hidden;*/
    scroll-behavior: smooth;
}

body {
    /*overflow-x: hidden;*/
}

html,
body,
div,
article,
section,
main,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
input,
textarea,
address,
nav,
table,
th,
td,
a,
p,
img,
figure,
span,
em,
small {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

small {
    font-size: 12px;
    line-height: 1.2;
    display: inline-block;
}

main {
    display: block;
}

ul,
li {
    list-style-type: none;
}

table {
    border-collapse: collapse;
}

img {
    border: none;
}

a {
    text-decoration: none;
}

a,
button {
    outline: none;
}

a:focus,
button:focus {
    outline: none;
}

.mt4 {
    margin-top: 4px !important;
}

.mt8 {
    margin-top: 8px !important;
}

.mt16 {
    margin-top: 16px !important;
}

.mt24 {
    margin-top: 24px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mb40 {
    margin-bottom: 40px;
}

.bold {
    font-weight: bold;
}

.res-pc {
    display: block !important;
}

.res-sp {
    display: none !important;
}

.widthSp {
    width: calc(100% - 48px);
    margin: 40px auto;
}

.center {
    text-align: center !important;
}

.center_margin {
    margin: 0 auto;
}

.bold {
    font-weight: bold;
}

.updown {
    animation-name: updown1;
    /* アニメーション名の指定 */
    animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    animation-duration: 3s;
    /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.updown2 {
    animation-name: updown1;
    /* アニメーション名の指定 */
    animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    animation-duration: 4s;
    /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown2 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@media only screen and (max-width: 959px) {
    .res-pc {
        display: none !important;
    }
    .res-sp {
        display: block !important;
    }
    .widthSp {
        margin: 16px auto;
    }
    .updown {
        animation-name: updown1;
        /* アニメーション名の指定 */
        animation-delay: 0s;
        /* アニメーションの開始時間指定 */
        animation-duration: 3s;
        /* アニメーション動作時間の指定 */
        animation-timing-function: ease-in-out;
        /* アニメーションの動き指定（徐々に早く）*/
        animation-iteration-count: infinite;
    }
    @keyframes updown1 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-4px);
        }
        100% {
            transform: translateY(0);
        }
    }
    .updown2 {
        animation-name: updown1;
        /* アニメーション名の指定 */
        animation-delay: 0s;
        /* アニメーションの開始時間指定 */
        animation-duration: 4s;
        /* アニメーション動作時間の指定 */
        animation-timing-function: ease-in-out;
        /* アニメーションの動き指定（徐々に早く）*/
        animation-iteration-count: infinite;
    }
    @keyframes updown2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-4px);
        }
        100% {
            transform: translateY(0);
        }
    }
}


/*---------------------------------------------------------
common
---------------------------------------------------------*/

html {
    font-size: 100%;
}


/*
@media only screen and (min-width: 320px) and (max-width: 414px) {
   html {
      font-size: 2.41546vw;
   }
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
   html {
      font-size: 0.80645vw;
   }
}
*/

body {
    margin: inherit;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #00030b;
    line-height: 1.6;
    letter-spacing: 0.04em;
    min-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    font-weight: 400;
    position: relative;
    background: #00030B;
    /*overflow: hidden;*/
}

@media only screen and (max-width: 959px) {
    body {
        margin: inherit;
        font-size: 14px;
        color: #00030b;
        line-height: 1.4;
        letter-spacing: 0.04em;
    }
}

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    color: #fff;
    text-decoration: none;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

a:hover {}

.underline {
    text-decoration: underline;
}

.underline:hover {
    text-decoration: none;
}

.bgwhite {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
}

@media only screen and (max-width: 959px) {
    .bgwhite {
        padding: 24px;
    }
}

.bordertop {
    max-width: 500px;
    width: 500px;
    position: fixed;
    top: 0;
    right: 200px;
    height: 8px;
    background: #00030B;
    z-index: 100;
}

.borderbtm {
    max-width: 500px;
    width: 500px;
    position: fixed;
    bottom: 0;
    right: 200px;
    height: 8px;
    background: #00030B;
    z-index: 100;
}

.borderin {
    width: 468px;
    position: relative;
    top: 2%;
    right: 216px;
}

.borderin .bordertop {
    max-width: 468px;
    width: 468px;
    position: fixed;
    top: 16px;
    right: 216px;
    height: 1px;
    background: #00030B;
    z-index: 100;
}

.borderin .borderbtm {
    max-width: 468px;
    width: 468px;
    position: fixed;
    bottom: 16px;
    right: 216px;
    height: 1px;
    background: #00030B;
    z-index: 100;
}

.borderin .borderleft {
    max-width: 1px;
    width: 1px;
    position: fixed;
    bottom: 16px;
    right: 216px;
    height: calc(100vh - 32px);
    background: #00030B;
    z-index: 100;
}

.borderin .borderright {
    max-width: 1px;
    width: 1px;
    position: fixed;
    bottom: 16px;
    right: 684px;
    height: calc(100vh - 32px);
    background: #00030B;
    z-index: 100;
}

@media only screen and (max-width: 700px) {
    .bordertop {
        max-width: inherit;
        width: 100%;
        position: fixed;
        top: 4px;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        height: 8px;
        background: #00030B;
        z-index: 100;
    }
    .borderbtm {
        max-width: inherit;
        width: 100%;
        position: fixed;
        bottom: -4px;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        height: 8px;
        background: #00030B;
        z-index: 100;
    }
    .borderin {
        width: 468px;
        position: relative;
        top: 2%;
        right: 216px;
    }
    .borderin .bordertop {
        max-width: inherit;
        width: calc(100% - 32px);
        position: fixed;
        top: 16px;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        height: 1px;
        background: #00030B;
        z-index: 100;
    }
    .borderin .borderbtm {
        max-width: inherit;
        width: calc(100% - 32px);
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        height: 1px;
        background: #00030B;
        z-index: 100;
    }
    .borderin .borderleft {
        max-width: 1px;
        width: 1px;
        position: fixed;
        bottom: 16px;
        right: 16px;
        transform: translateY(0%) translateX(-50%);
        -webkit- transform: translateY(0%) translateX(-50%);
        height: calc(100vh - 32px);
        background: #00030B;
        z-index: 100;
    }
    .borderin .borderright {
        max-width: 1px;
        width: 1px;
        position: fixed;
        bottom: 16px;
        left: 16px;
        height: calc(100vh - 32px);
        background: #00030B;
        z-index: 100;
    }
}


/*---------------------------------------------------------
bgmv
---------------------------------------------------------*/

.pclayout {
    display: flex;
}

.bgmv {
    width: 100%;
    background-image: url(../img/mvimg@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: fixed;
    z-index: 1;
}

@media only screen and (max-width: 700px) {
    .pclayout {
        display: block;
    }
    .bgmv {}
}


/*---------------------------------------------------------
sidenav
---------------------------------------------------------*/

.sidenav {
    background: #00030B;
    height: 100vh;
    width: 200px;
    right: 0;
    top: 0;
    padding: 24px 0 0;
    position: fixed;
    z-index: 100;
}

.sidenav p {
    text-align: center;
    margin-bottom: 40px;
}

.sidenav p img {
    width: 140px;
    margin: 0 auto;
}

.sidenav ul li {
    text-align: center;
    margin-bottom: 23px;
}

.sidenav ul li a {
    font-family: "Yeseva One";
    font-weight: normal;
    font-size: 20px;
    text-align: center;
    color: #ddddce;
}

.sidenav ul li a img {
    width: 32px;
}

@media only screen and (max-width: 700px) {
    .sidenav {
        display: none;
    }
}


/*---------------------------------------------------------
mainarea
---------------------------------------------------------*/

.mainarea {
    max-width: 500px;
    width: 500px;
    border: 8px solid #00030B;
    background: #00030B;
    margin: 0 200px 0 auto;
    position: relative;
    z-index: 2;
}

.mainareain {
    border: 1px solid #00030B;
}

.mv {
    width: 100%;
    padding: 80px 0;
    background-image: url(../img/bg@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv .logo {
    text-align: center;
}

.mv .logo img {
    width: 275px;
}

.mv .txbox {
    margin: 0 auto;
    width: 80%;
}

.mv .txbox h1 {
    padding: 16px 0;
}

@media only screen and (max-width: 700px) {
    .mainarea {
        max-width: inherit;
        width: 100%;
        border: 8px solid #00030B;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    .mv .txbox {
        margin: 0 auto;
        width: calc(100% - 80px);
    }
}


/*---------------------------------------------------------
header
---------------------------------------------------------*/

header {
    position: fixed;
    width: 96%;
    margin: 8px auto 0;
    top: 20px;
    display: flex;
    justify-content: space-between;
    width: 435px;
    right: 232px;
    z-index: 100;
    align-items: center;
}

header div img {
    width: 103px;
}

header ul {
    display: flex;
}

header ul li {
    margin-left: 8px;
}

header ul li a {
    font-family: "Yeseva One";
    font-weight: normal;
    font-size: 14px;
    text-align: left;
    color: #00030b;
}

.msm {
    margin-top: -25px;
}

@media only screen and (max-width: 700px) {
    header {
        position: fixed;
        width: calc(100% - 48px);
        margin: 8px auto 0;
        top: 40px;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        display: flex;
        justify-content: space-between;
        z-index: 100;
    }
    header div img {
        width: 88px;
    }
    header ul {
        display: flex;
    }
    header ul li {
        margin-left: 8px;
    }
    header ul li a {
        font-family: "Yeseva One";
        font-weight: normal;
        font-size: 14px;
        text-align: left;
        color: #00030b;
    }
    .msm {
        margin-top: -25px;
    }
}


/*---------------------------------------------------------
lineup
---------------------------------------------------------*/

.lineup {
    background: #28292B;
    padding: 64px 12%;
}

.lineup h2 {
    width: 225px;
    margin: 0 auto;
}

.lineup ul {}

.lineup ul li {
    color: #fff;
    margin-top: 64px;
}

h3 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: left;
    color: #fff;
}

.lineup ul li p.price {
    font-family: "Yeseva One";
    font-weight: normal;
    font-size: 40px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: right;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 24px;
}

.lineup ul li p.price {}

.lineup ul li {
    position: relative;
    z-index: 5;
}


/*---------------------------------------------------------
shop
---------------------------------------------------------*/

.shop {
    background: #D1C4B1;
    padding: 64px 12%;
}

.shop h2 {
    width: 155px;
    margin: 0 auto 40px;
}

.shop div {
    position: relative;
    z-index: 5;
}

.shop h3 {
    color: #00030B;
    margin-top: 16px;
    line-height: 28px;
}

.shop h4 {
    margin-top: 16px;
}


/*---------------------------------------------------------
btn
---------------------------------------------------------*/

a.btn_01 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    max-width: 320px;
    margin: auto;
    padding: 24px 0;
    font-weight: bold;
    transition: 0.5s;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: center;
    color: #fff;
    background: #18627D;
    border-radius: 100px;
}

a.btn_01:hover {
    color: #fff;
    background: #0A3788;
    border: 1px solid #0A3788;
}


/*---------------------------------------------------------
footer
---------------------------------------------------------*/

footer {
    background: #00030B;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

footer img {
    width: 194px;
}

footer ul {
    margin-top: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

footer ul.small {
    font-size: 12px;
}

footer ul li {
    padding: 0 16px;
    font-family: "Yeseva One";
    font-weight: normal;
    font-size: 24px;
    text-align: center;
    color: #ddddce;
    margin-top: 16px;
}

footer ul li img {
    width: 32px;
}

footer .pagetop {
    position: absolute;
    right: 0;
    bottom: 0;
}

footer .pagetop:hover {
    opacity: 0.5;
}

footer .pagetop img {
    width: 72px;
}

address {
    background: #2A3152;
    text-align: center;
    color: #fff;
    font-style: normal;
    font-size: 12px;
    padding: 8px 0;
}

@media screen and (max-width: 959px) {
    footer {
        padding: 64px 0;
    }
}


/*---------------------------------------------------------
list
---------------------------------------------------------*/

.disc {
    list-style-type: disc;
    padding-left: 24px;
    margin-top: 24px;
}

.disc li {
    list-style-type: disc;
}

.decimal {
    list-style-type: decimal;
    padding-left: 24px;
    margin-top: 24px;
}

.decimal li {
    list-style-type: decimal;
}


/*---------------------------------------------------------
base
---------------------------------------------------------*/

p.mt {
    margin-top: 80px;
}

p.line {
    position: relative;
    padding: 1rem 2rem;
    border-bottom: 1px solid #E0DFDF;
    max-width: 1120px;
    margin: 120px auto;
    width: 100%;
}

p.line:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 16px;
    height: 1px;
    content: '';
    background: #10A5CC;
}

.inner1360 {
    max-width: 1360px;
    margin: 0 auto;
}

.inner1120 {
    max-width: 1120px;
    margin: 0 auto;
}

.inner960 {
    max-width: 960px;
    margin: 0 auto;
}

.pankuzu {
    padding: 16px 0;
    position: absolute;
    width: 100%;
    top: 88px;
}

.pankuzu ul {
    display: flex;
}

.pankuzu ul li {
    margin-right: 8px;
    font-weight: normal;
    color: #fff;
}

.pankuzu ul li a {
    color: #fff;
    font-weight: normal;
}

.anc {
    width: 960px;
    margin: 80px auto;
}

.anc ul {
    display: flex;
    justify-content: center;
}

.anc ul li {
    width: 293px;
    padding: 2%;
}

.anc ul li a {
    width: 100%;
    max-width: 293px;
}

.anc ul li .button_solid019 a:after {
    display: none;
}

span.circle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: inherit;
    text-align: center;
    color: #fff;
    background-color: #0A3464;
    border-radius: 40px;
    padding: 1px 9px;
    margin-right: 16px;
}

.blue {
    color: #1E6CC3;
}

@media only screen and (max-width: 959px) {
    p.mt {
        margin-top: 64px;
    }
    p.line {
        max-width: inherit;
        margin: 80px auto;
        width: calc(100% - 48px);
    }
    .inner1360 {
        max-width: inherit;
        width: 100%;
        margin: 0 auto;
    }
    .inner1120 {
        max-width: inherit;
        width: calc(100% - 48px);
        margin: 0 auto;
    }
    .inner960 {
        max-width: inherit;
        width: 100%;
        margin: 0 auto;
    }
    .anc {
        width: calc(100% - 48px);
        margin: 40px auto;
    }
    .anc ul {
        display: flex;
    }
    .anc ul li {
        width: 161px;
    }
    .anc ul li a {
        max-width: inherit;
    }
    .anc ul li .button_solid019 a:after {
        display: none;
    }
    span.circle {
        font-size: 16px;
        margin-right: 8px;
        padding: 7px;
    }
    .pankuzu {
        top: 72px;
    }
}


/*---------------------------------------------------------
fadein
---------------------------------------------------------*/


/* 画面外にいる状態 */

.fadein {
    opacity: 0.1;
    transform: translate(0, 24px);
    transition: all 500ms;
}


/* 画面内に入った状態 */

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


/* 画面外にいる状態 */

.fadeleft {
    opacity: 0;
    transform: translate(200%, -800px);
    transition: all 1000ms;
}


/* 画面内に入った状態 */

.fadeleft.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


/* 画面外にいる状態 */

.faderight {
    opacity: 0;
    transform: translate(-200%, -800px);
    transition: all 1000ms;
}


/* 画面内に入った状態 */

.faderight.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

@media only screen and (max-width: 959px) {}


/*---------------------------------------------------------
Pagination
---------------------------------------------------------*/

.Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.Pagination-Item-Link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    background: #fff;
    font-size: 14px;
    color: #111;
    font-weight: bold;
    transition: all 0.15s linear;
}

.Pagination-Item-Link img {
    width: 24px;
}

.Pagination-Item-Link.isActive {
    background: #0072C6;
    color: #fff;
    pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
    background: #0072C6;
    color: #fff;
}

.Pagination>*+* {
    margin-left: 8px;
}
