* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'noto-m';
    color: #111111;
}

html {
    scroll-behavior: smooth;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.a-center {
    align-items: center;
}

.j-between {
    justify-content: space-between;
}

.j-right {
    justify-content: flex-end;
}

.j-center {
    justify-content: center;
}

.flex-space {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-family: 'noto-b';
}

p {
    margin: 0px;
    padding: 0px;
}

button,
a {
    color: #111111;
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

input {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

button:hover,
button:focus,
button:active,
input:hover,
input:focus,
input:active {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #bdc1cc;
}

input::-moz-placeholder {
    color: #bdc1cc;
}

input:-ms-input-placeholder {
    color: #bdc1cc;
}

input:-moz-placeholder {
    color: #bdc1cc;
}

textarea::-webkit-input-placeholder {
    color: #bdc1cc;
}

textarea::-moz-placeholder {
    color: #bdc1cc;
}

textarea:-ms-input-placeholder {
    color: #bdc1cc;
}

textarea:-moz-placeholder {
    color: #bdc1cc;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style-type: none;
}

img {
    border: 0px;
    max-width: 100%;
}

.t-center {
    text-align: center;
}

.t-right {
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
}

.inner-container {
    width: 100%;
    max-width: 916px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
}


/* Hamburger menu style */

.menu-toggle {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 10001;
    cursor: pointer;
    width: 60px;
    height: 55px;
    padding-top: 17px;
    text-align: center;
    overflow: hidden;
}

.menu-toggle .one {
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}

.menu-toggle .two {
    width: 12px;
    top: 6px;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.menu-toggle .three {
    width: 18px;
    top: 12px;
    -webkit-transition-delay: 0;
    transition-delay: 0;
}

.menu-toggle.on .one {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    top: -2px;
    width: 25px;
    margin-left: -13.25px;
    background-color: #fff;
}

.menu-toggle.on .two {
    -webkit-transform: translate(-50px, 0);
    transform: translate(-50px, 0);
    opacity: 0;
}

.menu-toggle.on .three {
    width: 25px;
    -webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
    margin-left: -15.5px;
    background-color: #fff;
}

.one,
.two,
.three {
    display: block;
    width: 22px;
    height: 2px;
    background: #881536;
    position: absolute;
    left: 50%;
    margin-left: -11px;
    -webkit-transition: all .7s cubic-bezier(.19, 1, .22, 1);
    transition: all .7s cubic-bezier(.19, 1, .22, 1);
    -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    position: relative;
}

nav #nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 998;
}

nav #nav-overlay.on {
    -webkit-animation: drawer-open .3s cubic-bezier(.645, .045, .355, 1) 0s;
    animation: drawer-open .3s cubic-bezier(.645, .045, .355, 1) 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes drawer-open {
    0% {
        opacity: 0;
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes drawer-open {
    0% {
        opacity: 0;
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -moz-transform: scale(.95);
        -ms-transform: scale(.95);
        -o-transform: scale(.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

nav #nav-overlay.hidden {
    -webkit-animation: drawer-close .3s cubic-bezier(.645, .045, .355, 1) 0s;
    animation: drawer-close .3s cubic-bezier(.645, .045, .355, 1) 0s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

@-webkit-keyframes drawer-close {
    0% {
        display: block;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        display: none;
        opacity: 0;
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
}

@keyframes drawer-close {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -moz-transform: scale(.95);
        -ms-transform: scale(.95);
        -o-transform: scale(.95);
    }
}

nav #nav-ul.on li:nth-of-type(1) a {
    -webkit-animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) 50ms;
    animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) 50ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

nav #nav-ul.on li:nth-of-type(2) a {
    -webkit-animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) .1s;
    animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) .1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

nav #nav-ul.on li:nth-of-type(3) a {
    -webkit-animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) 150ms;
    animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) 150ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

nav #nav-ul.on li:nth-of-type(4) a {
    -webkit-animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) .2s;
    animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

nav #nav-ul.on li:nth-of-type(5) a {
    -webkit-animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) 250ms;
    animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) 250ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

nav #nav-ul.on li:nth-of-type(6) a {
    -webkit-animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) .3s;
    animation: drawer-nav .5s cubic-bezier(.645, .045, .355, 1) .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes drawer-nav {
    0% {
        opacity: 0;
        -webkit-transform: translateY(101%);
        transform: translateY(101%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes drawer-nav {
    0% {
        opacity: 0;
        -webkit-transform: translateY(101%);
        transform: translateY(101%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

nav ul {
    margin: 0;
    padding: 0 10%;
    position: fixed;
    left: 50%;
    top: 25vh;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: left;
    width: 100%;
    z-index: 999;
}

nav ul.hidden {
    display: none;
}

nav ul li {
    overflow: hidden;
    margin-bottom: 20px;
}

nav ul a {
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    width: 100%;
    display: block;
}

nav ul a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.menu-section.on {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.pc {
    display: flex;
}

.sp {
    display: none;
}

@media(max-width: 767px) {
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 50px;
}

.mt-10 {
    margin-top: 100px;
}

.d-none {
    display: none;
}

.lity-opened .d-none {
    display: block;
}


/* Star */

:root {
    --star-size: 24px;
    --star-color: #e4e4e4;
    --star-background: #881536;
    --star-size2: 14px;
}

.Stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block !important;
    font-family: Times;
    line-height: 1;
    font-size: 30px;
    display: flex;
    align-items: center;
    font-family: 'noto-b';
}

.Stars::after {
    font-size: var(--star-size);
    content: "★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 15px;
}

.Stars2 {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-family: Times;
    line-height: 1;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-family: 'noto-b';
}

.Stars2::before {
    font-size: var(--star-size2);
    content: "★★★★★";
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 15px;
}