body {
    font-size: 1vw;
    color: #000;
    font-weight: bold;
    font-family: "Zen Kaku Gothic New", serif;
}
/* --------------------------------------------------------
ロゴアニメーション
-------------------------------------------------------- */
.logo-anime-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #004aad;
    overflow: hidden;
    z-index: 9999999999999999;
    transition: opacity 0.8s ease-out;
}
.wrapper {
    width:200px;
    height:60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.circle {
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.logo-anime-wrap h1 {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 40%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5vw;
}
@media screen and (max-width: 767px) {
    .logo-anime-wrap h1 {
        bottom: 38%;
        font-size: 5vw;
    }
}
/* --------------------------------------------------------
ページロード中
-------------------------------------------------------- */
#loading-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999;
    background-color: rgba(255, 255, 255, 0.9);
}
#loading-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #333;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 18px;
}
#loading-content {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border: 3px solid transparent;
    border-top-color: #F58220;
    border-bottom-color: #F58220;
    border-radius: 50%;
    animation: loader 2s linear infinite;
}
#loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid transparent;
    border-top-color: #004aad;
    border-bottom-color: #004aad;
    border-radius: 50%;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    animation: loader 3s linear infinite;
}
#loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid transparent;
    border-top-color: #004aad;
    border-bottom-color: #004aad;
    border-radius: 50%;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    animation: loader 1.5s linear infinite;
}
@keyframes loader {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
}
@media screen and (max-width: 767px) {
    #loading-wrapper {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 9999999999;
        background-color: rgba(255, 255, 255, 0.9);
    }
    #loading-text {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        color: #333;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 10px;
    }
    #loading-content {
        display: block;
        position: relative;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 100px;
        margin: -50px 0 0 -50px;
        border: 2px solid transparent;
        border-top-color: #F58220;
        border-bottom-color: #F58220;
        border-radius: 50%;
        animation: loader 2s linear infinite;
    }
    #loading-content:before {
        content: "";
        position: absolute;
        border: 2px solid transparent;
        border-top-color: #004aad;
        border-bottom-color: #004aad;
        border-radius: 50%;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        animation: loader 3s linear infinite;
    }
    #loading-content:after {
        content: "";
        position: absolute;
        border: 2px solid transparent;
        border-top-color: #004aad;
        border-bottom-color: #004aad;
        border-radius: 50%;
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        animation: loader 1.5s linear infinite;
    }
}
/* --------------------------------------------------------
header.php
-------------------------------------------------------- */
#header-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999;
    padding: 0.8% 2vw;
    width: 85vw;
    background-color: #fff;
    border-radius: 30px;
}
#logo {
    width: 25vw;
}
.header-ul-upper {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 3%;
}
.header-ul-upper li {
    margin-left: 1.5vw;
}
#line-logo-img, #facebook-logo-img, #instagram-logo-img {
    width: 1.5vw;
}
.reservation-icon-img, .cart-icon-img {
    margin-right: 0.1vw;
    width: 1.8vw;
}
#reservation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3% 1%;
    width: 7vw;
    font-weight: bold;
    color: #fff;
    background-color: #004aad;
    border-radius: 50px;
}
#login-btn {
    display: inline-block;
    padding: 3% 1%;
    width: 7vw;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #ff3131;
    border-radius: 50px;
}
#cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3% 1%;
    width: 7vw;
    font-weight: bold;
    color: #fff;
    background-color: #ff914d;
    border-radius: 50px;
}
#logout-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3% 1%;
    width: 7vw;
    font-weight: bold;
    color: #fff;
    background-color: #545454;
    border-radius: 50px;
}
#cart-btn img {
    width: 2vw;
}
.header-ul-bottom {
    display: flex;
}
.header-ul-bottom li {
    margin-left: 2.5vw;
    transition: 0.2s;
}
.header-ul-bottom li:hover {
    color: #004aad;
    transform: scale(1.1);
}
.header-ul-bottom li.dropdown {
    position: relative;
}
.header-ul-bottom li.dropdown ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -10%;
    background-color: #fff;
    padding: 0.5vw 1.5vw;
    border-radius: 10px;
    z-index: 999;
    min-width: 14.5vw;
}
.header-ul-bottom li.dropdown:hover ul.dropdown-menu {
    display: block;
}
.header-ul-bottom li.dropdown ul.dropdown-menu li {
    margin: 1.5vw 0;
}
.header-ul-bottom li.dropdown ul.dropdown-menu li a {
    color: #000;
    font-size: 0.9vw;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    position: relative;
    margin: 15% auto;
    padding: 2vw;
    border: 1px solid #888;
    width: 80%;
    background-color: #fff;
    border-radius: 5px;
}
.modal-content p {
    margin: 2% 0;
}
.modal-content p a {
    display: inline-block;
    width: 20vw;
    padding: 1% 2%;
    text-align: center;
    color: #fff;
    background-color: #004aad;
    border-radius: 50px;
    transition: 0.3s;
}
.modal-content p a:hover {
    transform: scale(1.05);
}
.close {
    position: absolute;
    top: 0.5vw;
    right: 1vw;
    font-size: 2vw;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close:hover {
    color: #004aad;
    transform: scale(1.1);
}
@media screen and (min-width: 1020px) {
    #header-mobile {
        display: none;
    }
}
@media screen and (max-width: 1020px) {
    #header-pc {
        display: none;
    }
}
/* --------------------------------------------------------
header-mobile
-------------------------------------------------------- */
#logo-mobile {
    position: fixed;
    top: 1%;
    left: 0;
    z-index: 999999;
    width: 75vw;
    padding: 5vw 8vw;
    background-color: #fff;
    border-radius: 50px;
}
.hamburger {
    position: fixed;
    top: 1%;
    right: 0;
    z-index: 999999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 17vw;
    height: 17vw;
    background-color: #fff;
    border-radius: 50%;
}
.hamburger .bar {
    width: 50%;
    height: 0.8vw;
    background-color: #333;
    margin: 0.5vw 0;
    transition: 0.4s;
}
.hamburger.open .bar:nth-child(1),
.hamburger.open .bar:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.hamburger.open .bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    padding-top: 20%;
    padding-bottom: 25%;
    padding-left: 10%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
}
.no-scroll {
    overflow: hidden;
}
.nav-info {
    display: flex;
    margin: 8vw 0;
    font-size: 4.5vw;
    font-weight: bold;
}
nav span {
    margin-right: 5%;
    width: 4.5vw;
    height: 4.5vw;
    background-color: #004aad;
}
.nav-store-info {
    display: flex;
    flex-wrap: wrap;
    font-size: 4.5vw;
    font-weight: bold;
}
.nav-store-info p {
    display: flex;
    margin-bottom: 5vw;
    width: 80vw;
}
.nav-store-info p span {
    margin-right: 5%;
    width: 4.5vw;
    height: 4.5vw;
    background-color: #004aad;
}
.nav-store-info a {
    margin-left: 5vw;
    margin-bottom: 5vw;
    width: 40vw;
    font-size: 3.5vw;
}
.nav-store-info a:last-child {
    margin-bottom: 0;
}
.last-child {
    margin: 0;
    margin-top: 4vw;
}
.nav-btn-area {
    display: flex;
    justify-content: space-between;
    margin-top: 10vw;
    width: 60%;
}
.nav-btn-area img {
    width: 10vw;
}

.ec-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    width: 100%;
    height: 9vh;
}
#logout-btn-mobile {
    position: fixed;
    right: 0;
    bottom: 9vh;
    z-index: 999;
    padding: 2vw 0;
    width: 30vw;
    text-align: center;
    font-size: 5vw;
    color: #fff;
    background-color: #333;
    border-radius: 50px;
}
.ec-menu a {
    position: relative;
    width: 100%;
}
.ec-menu a p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3vw;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}
.ec-menu a p img {
    margin-bottom: 5%;
    width: 8vw;
}
.ec-menu a:nth-child(1) {
    background-color: #004aad;
}
.ec-menu a:nth-child(2) {
    background-color: #ff3131;
}
.ec-menu a:nth-child(3) {
    background-color: #F58220;
}
#header-cart-count-mobile {
    position: absolute;
    top: 5%;
    right: 25%;
    width: 6vw;
    height: 6vw;
    text-align: center;
    line-height: 6.5vw;
    font-size: 3.5vw;
    color: #fff;
    background-color: #ff0000;
    border-radius: 50%;

}
.modal-mobile {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content-mobile {
    position: relative;
    background-color: #fff;
    margin: 35% auto;
    padding: 8vw 3vw 3vw 3vw;
    width: 90%;
    font-size: 3.5vw;
    border-radius: 5px;
}
.modal-content-mobile p {
    margin: 5% auto;
    text-align: center;
}
.modal-content-mobile p a {
    display: inline-block;
    width: 70vw;
    padding: 2% 2%;
    text-align: center;
    color: #fff;
    background-color: #004aad;
    border-radius: 50px;
    transition: 0.3s;
}
.close-mobile {
    position: absolute;
    top: 2vw;
    right: 2vw;
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
/* --------------------------------------------------------
slide-area
-------------------------------------------------------- */
.slide-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slide-container {
    display: flex;
    width: 100%;
    transition: transform 1s ease-in-out;
}
.slide-item {
    flex: 0 0 100%;
    width: 100%;
}
.slide-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 4vw;
    text-align: center;
    line-height: 4vw;
    width: 5vw;
    height: 5vw;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
}
.slide-btn.prev {
    left: 1vw;
}
.slide-btn.next {
    right: 1vw;
}
@media screen and (min-width: 768px) {
    .mobile-top-img {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .pc-top-img {
        display: none;
    }
    .slide-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: #fff;
        font-size: 10vw;
        text-align: center;
        line-height: 10vw;
        width: 15vw;
        height: 15vw;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
        user-select: none;
    }
    .slide-btn.prev {
        left: 2px;
    }
    .slide-btn.next {
        right: 2px;
    }
    }
/* --------------------------------------------------------
news-area
-------------------------------------------------------- */
.news-area {
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 0 5vw;
    color: #333;
}
.news-title-area {
    display: flex;
    align-items: flex-end;
    padding-bottom: 3%;
    width: 90vw;
    font-weight: bold;
    border-bottom: solid 1px #333;
}
.news-title-area h2 {
    margin-left: 10%;
    font-size: 3vw;
}
.news-title-area p {
    margin-left: 5%;
    font-size: 1vw;
}
.news-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}
.news-filter-buttons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 35%;
}
.filter-button {
    margin: 2.5% 0;
    padding: 1.5% 5%;
    border-radius: 50px;
    white-space: nowrap;
}
#news-posts {
    width: 65%;
}
.news-post {
    position: relative;
    margin: 2.5% 0;
    padding: 2% 2%;
    border-bottom: solid 1px #333;
    cursor: pointer;
    transition: 0.3s;
}
.news-post:hover {
    background-color: #dffaff;
    transform: scale(1.02);
    border-radius: 5px;
}
.news-post a {
    display: flex;
    align-items: center;
}
.news-post-img {
    width: 12vw;
    height: 6vw;
}
.news-post-img img {
    width: 12vw;
    height: 6vw;
    object-fit: cover;
    border-radius: 5px;
}
.news-post-wrap {
    display:flex;
    flex-flow: column;
    justify-content: space-between;
    height: 6vw;
    margin-left: 5%;
}
.post-thumbnail {
    display: flex;
    align-items: center;
}
.post-date {
    font-size: 1.1vw;
}
.post-tags {
    text-transform: uppercase;
    margin-left: 5%;
    padding: 1.5% 8%;
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
    font-size: 1.1vw;
    color: #fff;
    background-color: #004aad;
}
.news-post-wrap h5 {
    font-size: 1.3vw;
}
.next-icon-img {
    position: absolute;
    bottom: 8%;
    right: 0;
    width: 2.5vw;
}
@media screen and (max-width: 767px) {
    .news-area {
        margin-top: 30%;
        margin-bottom: 30%;
        padding: 0 2.5vw;
    }
    .news-title-area {
        padding-bottom: 3%;
        width: 95vw;
    }
    .news-title-area h2 {
        margin-left: 5%;
        font-size: 8vw;
    }
    .news-title-area p {
        margin-left: 5%;
        font-size: 2.5vw;
    }
    .news-wrap {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
    .news-filter-buttons {
        display: flex;
        flex-direction: unset;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: scroll;
        width: 95%;
    }
    .filter-button {
        margin: 2.5% 0;
        padding: 1.5% 5%;
        border-radius: 50px;
        font-size: 3.5vw;
    }
    #news-posts {
        width: 100%;
    }
    .news-post {
        position: relative;
        margin: 5% 0;
        padding: 2% 2%;
        border-bottom: solid 1px #333;
    }
    .news-post a {
        display: flex;
        align-items: center;
    }
    .news-post-img {
        width: 18vw;
        height: 16vw;
    }
    .news-post-img img {
        width: 18vw;
        height: 16vw;
        object-fit: cover;
        border-radius: 5px;
    }
    .news-post-wrap {
        display:flex;
        flex-flow: column;
        justify-content: space-between;
        height: 16vw;
        margin-left: 3%;
    }
    .post-thumbnail {
        display: flex;
        align-items: center;
    }
    .post-date {
        font-size: 2.8vw;
    }
    .post-tags {
        font-size: 2.8vw;
    }
    .news-post-wrap h5 {
        font-size: 3vw;
    }
    .next-icon-img {
        position: absolute;
        bottom: 15%;
        right: 0;
        width: 5vw;
    }
}
/* --------------------------------------------------------
store-informaition-area
-------------------------------------------------------- */
.store-information-area {
    position: relative;
    display: flex;
    padding: 0 0vw;
    width: 100%;
    color: #333;
}
#background-square-img02 {
    position: absolute;
    top: -4%;
    left: 8%;
    width: 4%;
}
#store-information-area-background-img01 {
    position: absolute;
    top: 1.2%;
    width: 100%;
}
#store-information-area-background-img02 {
    position: absolute;
    bottom: 0;
    width: 100%;
}
#background-square-img03 {
    position: absolute;
    right: 2%;
    bottom: -1%;
    width: 6%;
}
.store-information-card-area {
    width: 50%;
    border-right: solid 1px #ccc;
}
.store-information-card-area h2 {
    margin-bottom: 10%;
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
}
.store-information-card {
    position: relative;
    margin: 7.8vw 10vw;
    padding: 1.5vw 2vw;
    width: 30vw;
    border: solid 1px #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.3s;
}
.store-information-card:hover {
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}
.first-information-card {
    margin: 0 10vw 7.8vw 10vw;
}
.store-informaiton-icon-area {
    position: absolute;
    top: -1.5vw;
    right: -1.5vw;
    display: flex;
}
.store-informaiton-icon-area p {
    width: 4vw;
    height: 4vw;
    text-align: center;
    line-height: 4vw;
    font-size: 1.2vw;
    color: #fff;
    border-radius: 50%;
    background-color: #F58220;
}
.store-informaiton-icon-area p:last-child {
    margin-left: 0.5vw;
}
.store-information-card h3 {
    margin-bottom: 2%;
    font-size: 1.5vw;
    font-weight: bold;
}
.store-informaiton-btn-upper p {
    padding: 0.5vw 0 0.3vw 0;
    width: 100%;
    text-align: center;
    font-size: 1.1vw;
    font-weight: bold;
    color: #fff;
    background-color: #004aad;
    border-radius: 50px;
}
.store-informaiton-btn-bottom p {
    padding: 0.5vw 0 0.3vw 0;
    width: 8.5vw;
    text-align: center;
    font-size: 1.1vw;
    font-weight: bold;
    color: #fff;
    background-color: #004aad;
    border-radius: 50px;
}
.store-informaiton-btn-upper, .store-informaiton-btn-bottom {
    display: flex;
    justify-content: space-between;
}
.store-informaiton-btn-upper {
    margin-bottom: 2%;
}

.store-information-left-area {
    width: 50%;
}
.store-information-left-area h2 {
    margin-bottom: 10%;
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
}
.store-information-left-card {
    position: relative;
    margin: 3.1vw 10vw;
    width: 30vw;
    border: solid 1px #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.3s;
}
.store-information-left-card:hover {
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}
.first-information-left-card {
    margin: 0 10vw 3.1vw 10vw;
}
.store-information-left-card img {
    width: 29.9vw;
    border-radius: 5px 5px 0 0;
}
.store-information-left-card-text {
    padding: 2vw 2vw 3vw 2vw;
}
.store-information-left-card-text h3 {
    font-size: 1.3vw;
    font-weight: bold;
    margin-bottom: 1.5vw;
}
.store-information-left-card-text p {
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .store-information-area {
        position: relative;
        display: flex;
        padding: 0 0vw;
        width: 100%;
        color: #333;
    }
    #background-square-img02 {
        position: absolute;
        top: -4%;
        left: 8%;
        width: 4%;
    }
    #store-information-area-background-img01 {
        position: absolute;
        top: 1.2%;
        width: 100%;
    }
    #store-information-area-background-img02 {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    #background-square-img03 {
        position: absolute;
        right: 2%;
        bottom: -1%;
        width: 6%;
    }
    .store-information-card-area {
        width: 50%;
        border-right: solid 1px #ccc;
    }
    .store-information-card-area h2 {
        margin-bottom: 15%;
        font-size: 5vw;
    }
    .store-information-card {
        position: relative;
        margin: 14.85vw 1.5vw;
        padding: 4vw 1vw;
        width: 47vw;
    }
    .first-information-card {
        margin: 0 1.5vw 14.85vw 1.5vw;
    }
    .store-informaiton-icon-area {
        position: absolute;
        top: -4vw;
        right: -1vw;
        display: flex;
    }
    .store-informaiton-icon-area p {
        width: 8vw;
        height: 8vw;
        line-height: 8vw;
        font-size: 2.5vw;
    }
    .store-informaiton-icon-area p:last-child {
        margin-left: 1.5vw;
    }
    .store-information-card h3 {
        margin-bottom: 5%;
        font-size: 3.5vw;
        font-weight: bold;
    }
    .store-informaiton-btn-upper p {
        padding: 1vw 0 0.8vw 0;
        width: 100%;
        font-size: 2.5vw;
    }
    .store-informaiton-btn-bottom p {
        padding: 1vw 0 0.8vw 0;
        width: 15vw;
        font-size: 2.5vw;
    }
    .store-informaiton-btn-upper, .store-informaiton-btn-bottom {
        display: flex;
        justify-content: space-between;
    }
    .store-informaiton-btn-upper {
        margin-bottom: 5%;
    }
    
    .store-information-left-area {
        width: 50%;
    }
    .store-information-left-area h2 {
        margin-bottom: 15%;
        font-size: 5vw;
    }
    .store-information-left-card {
        position: relative;
        margin: 12.5vw 1.5vw;
        width: 47vw;
    }
    .first-information-left-card {
        margin: 0 1.5vw 12.5vw 1.5vw;
    }
    .store-information-left-card img {
        width: 46.4vw;
        border-radius: 5px 5px 0 0;
    }
    .store-information-left-card-text {
        padding: 4vw 1vw 3vw 1vw;
    }
    .store-information-left-card-text h3 {
        font-size: 3.5vw;
        font-weight: bold;
        margin-bottom: 3vw;
    }
    .store-information-left-card-text p {
        font-size: 2.5vw;
        line-height: 2;
    }
    .last-store-info-card {
        margin-bottom: 20vw;
    }
}
/* --------------------------------------------------------
banner-area
-------------------------------------------------------- */
.banner-area {
    display: flex;
    justify-content: space-between;
    margin: 2% 10% 5% 10%;
    width: 80%;
}
.banner-area a {
    width: 45%;
}
.banner-area a img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}
.banner-area a img:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 767px) {
    .banner-area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 2% 1% 5% 1%;
        width: 98%;
    }
    .banner-area a {
        margin-bottom: 5%;
        width: 80%;
    }
    .banner-area a img {
        width: 100%;
        border-radius: 5px;
    }
}
/* --------------------------------------------------------
event-area
-------------------------------------------------------- */
.event-area {
    position: relative;
    margin: 8% 0;
    width: 100%;
    color: #333;
}
#event-top-img {
    width: 100%;
}
#event-background-img01 {
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
}
#event-background-square-img02 {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 4vw;
}
.event-area h4 {
    margin: 5% 0 8% 0;
    text-align: center;
    font-size: 1.5vw;
    font-weight: bold;
    line-height: 1.5;
}
.content-area h2 {
    margin-bottom: 3%;
    text-align: center;
    font-size: 2.5vw;
    font-weight: bold;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.taikai-slider {
    margin-bottom: 5%;
}
.slides {
    margin-left: 5%;
    padding: 1vw 0;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.slide {
    position: relative;
    width: 26vw;
    margin: 0 1.5vw;
    padding: 1.5vw 1vw;
    background: #f9f9f9;
    border: solid 1px #333;
    border-radius: 5px;
}
.slide-event {
    transition: 0.3s;
}
.slide h3 {
    width: 90%;
    margin-bottom: 8%;
    font-size: 1.1vw;
    font-weight: bold;
}
.slide ul li {
    margin: 2% 0;
    font-size: 0.9vw;
}
.slide ul li:last-child {
    margin: 0;
}
.slide-btn-area {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
}
.yokou-button, .apply-button {
    display: inline-block;
    padding: 2% 10% 1%;
    color: #fff;
    background-color: #004aad;
    border-radius: 50px;
    transition: 0.3s;
}
.apply-button {
    background-color: #F58220;
}
.yokou-button:hover, .apply-button:hover {
    transform: scale(1.05);
}
.slider button.prev,
.slider button.next {
    width: 4vw;
    height: 4vw;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #545454;
    cursor: pointer;
    font-size: 2.2vw;
    color: #fff;
    opacity: 0.9;
    z-index: 10;
    border-radius: 50%;
}
.slider button.prev:hover,
.slider button.next:hover {
    opacity: 1;
}
.slider button.prev {
    left: 0;
}
.slider button.next {
    right: 0;
}
@media screen and (max-width: 767px) {
    .event-area {
        margin: 20% 0;
    }
    #event-top-img {
        width: 100%;
    }
    #event-background-img01 {
        position: absolute;
        top: 43%;
        left: 0;
        width: 100%;
    }
    #event-background-square-img02 {
        position: absolute;
        top: 50%;
        left: 5%;
        width: 4vw;
    }
    .event-area h4 {
        margin: 10% 0 10% 0;
        font-size: 3.5vw;
        line-height: 2;
    }
    .content-area h2 {
        margin-bottom: 8%;
        font-size: 6vw;
        font-weight: bold;
    }
    .taikai-slider {
        margin-bottom: 15%;
    }
    .slider {
        overflow-x: auto;
    }
    .slides {
        margin-right: 5%;
        overflow-x: auto;
        scroll-behavior: smooth;
        transform: none !important;
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
    }
    .slide {
        position: relative;
        width: 65vw;
        margin: 0 1.5vw;
        padding: 4.5vw 2.5vw;
        background: #f9f9f9;
        border: solid 1px #333;
        border-radius: 5px;
    }
    .slide h3 {
        margin-bottom: 8%;
        font-size: 3.5vw;
        font-weight: bold;
    }
    .slide ul li {
        margin: 3.5% 0;
        font-size: 3vw;
    }
    .slide ul li:last-child {
        margin: 0;
    }
    .slide-btn-area {
        display: flex;
        justify-content: space-between;
        margin-top: 5%;
    }
    .yokou-button, .apply-button {
        padding: 5% 7% 4%;
        text-align: center;
        font-size: 3.5vw;
        color: #fff;
        background-color: #004aad;
        border-radius: 50px;
    }
    .apply-button {
        background-color: #F58220;
    }
    .slider button.prev,
    .slider button.next {
        display: none;
    }
}
/* --------------------------------------------------------
blog-area
-------------------------------------------------------- */
.blog-area {
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 0 5vw;
    color: #333;
}
.blog-title-area {
    display: flex;
    align-items: flex-end;
    padding-bottom: 3%;
    width: 90vw;
    font-weight: bold;
    border-bottom: solid 1px #333;
}
.blog-title-area h2 {
    margin-left: 10%;
    font-size: 3vw;
}
.blog-title-area p {
    margin-left: 5%;
    font-size: 1vw;
}
.blog-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}
.blog-filter-buttons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 35%;
}
.blog-filter-buttons a {
    margin: 2.5% 0;
    padding: 1.5% 5%;
    border-radius: 50px;
    white-space: nowrap;
}
#blog-posts {
    width: 65%;
}
/* クリックされたボタンに対して背景色と文字色を変更 */
.filter-button.active {
    background-color: #333;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .blog-area {
        margin-top: 20%;
        margin-bottom: 20%;
        padding: 0 2.5vw;
        color: #333;
    }
    .blog-title-area {
        display: flex;
        align-items: flex-end;
        padding-bottom: 3%;
        width: 95vw;
        font-weight: bold;
        border-bottom: solid 1px #333;
    }
    .blog-title-area h2 {
        margin-left: 5%;
        font-size: 8vw;
    }
    .blog-title-area p {
        margin-left: 5%;
        font-size: 2.5vw;
    }
    .blog-wrap {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
    .blog-filter-buttons {
        display: flex;
        flex-direction: unset;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-x: scroll;
        width: 95%;
    }
    .blog-filter-buttons a {
        font-size: 3.5vw;
    }
    #blog-posts {
        width: 100%;
    }
    /* クリックされたボタンに対して背景色と文字色を変更 */
    .filter-button.active {
        background-color: #333;
        color: #fff;
    }
}
/* --------------------------------------------------------
contact-area
-------------------------------------------------------- */
.contact-area {
    position: relative;
    margin-top: 10%;
    width: 100%;
}
#contact-img {
    width: 100%;
}
#contact-img-mobile {
    width: 100%;
}
#contact-tel-img {
    position: absolute;
    width: 30vw;
    top: 42%;
    left: 1.5%;
}
#contact-from-img {
    position: absolute;
    width: 40vw;
    top: 30%;
    right: 1.5%;
}
@media screen and (min-width: 768px) {
    #contact-img-mobile {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .contact-area {
        position: relative;
        margin-top: 20vw;
        width: 100%;
    }
    #contact-img {
        display: none;
    }
    #contact-tel-img {
        position: absolute;
        width: 80vw;
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
    }
    #contact-from-img {
        position: absolute;
        width: 70vw;
        top: 70%;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* --------------------------------------------------------
fotter.php
-------------------------------------------------------- */
footer {
    padding: 5vw 10vw;
    font-weight: bold;
    color: #333;
}
#footer-logo {
    margin-bottom: 5vw;
    width: 40vw;
}
.footer-wrap {
    display: flex;
    justify-content: center;
}
.footer-left-area {
    width: 39vw;
}
.footer-big-text {
    font-size: 3.5vw;
    line-height: 1.5;
}
.footer-left-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15%;
}
.footer-left-bottom-text {
    font-size: 1.2vw;
    line-height: 1.5;
}
.footer-left-bottom-text h1 {
    margin-bottom: 5%;
}
#mascot-img {
    margin-right: 3vw;
    width: 13vw;
}
.footer-right-area {
    display: flex;
    justify-content: right;
    margin-left: 2vw;
    width: 39vw;
    font-size: 1vw;
}
.first-footer-ul {
    margin-right: 10vw;
}
.footer-right-area ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15%;
}
.footer-right-area ul li a {
    transition: 0.4s;
}
.footer-right-area ul li a:hover {
    color: #000;
    transform: scale(1.1);
}
.footer-right-area ul li:not(.footer-title-text) {
    margin-left: 2.9vw;
    color: #545454;
}
.footer-title-text {
    font-size: 1.1vw;
}
.footer-right-area ul li span {
    display: block;
    margin-right: 2vw;
    width: 0.9vw;
    height: 0.9vw;
    background-color: #004aad;
}
.footer-bottom-area {
    margin-top: 10%;
    width: 80vw;
}
.footer-bottom-area ul {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    footer {
        padding: 15vw 2.5vw;
    }
    #footer-logo {
        margin-bottom: 10vw;
        width: 70vw;
    }
    .footer-wrap {
        display: flex;
        justify-content: start;
        flex-direction: column;
    }
    .footer-left-area {
        width: 95vw;
    }
    .footer-big-text {
        font-size: 6vw;
        line-height: 2;
    }
    .pc-br {
        display: none;
    }
    .footer-left-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 0;
    }
    .footer-left-bottom-text {
        font-size: 3.5vw;
        line-height: 1.5;
    }
    .footer-left-bottom-text h1 {
        margin-bottom: 5%;
        font-size: 3.8vw;
    }
    #mascot-img {
        margin-right: 0;
        width: 35vw;
    }
    .footer-right-area {
        display: flex;
        justify-content: center;
        margin-top: 10%;
        margin-left: 0;
        width: 95vw;
        font-size: 3.5vw;
        white-space: nowrap;
    }
    .first-footer-ul {
        margin-right: 10vw;
    }
    .footer-right-area ul li {
        display: flex;
        align-items: center;
        margin-bottom: 15%;
    }
    .footer-right-area ul li:not(.footer-title-text) {
        margin-left: 5.5vw;
        color: #545454;
    }
    .footer-title-text {
        font-size: 3.8vw;
    }
    .footer-right-area ul li span {
        display: block;
        margin-right: 2vw;
        width: 3.5vw;
        height: 3.5vw;
        background-color: #004aad;
    }
    .footer-bottom-area {
        margin-top: 5%;
        margin-bottom: 3vh;
        width: 90vw;
        font-size: 3.3vw;
    }
    .footer-bottom-area ul {
        display: flex;
        justify-content: start;
        flex-direction: column;
    }
    .footer-bottom-area ul li {
        margin-bottom: 5%;
    }
}