/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap');

/****************
共通css
****************/
body {
    font-family: "kozuka-gothic-pr6n", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #333333;
    background-color: #FBFBFF;
}

body.stop {
    overflow: hidden;
}

a {
    display: inline-block;
    transition: all 0.5s 0s ease;
}

button {
    transition: all 0.5s 0s ease;
}

img {
    width: 100%;
    height: auto;
}

.sp-only {
    display: none;
}

.container-w {
    width: 90%;
    max-width: 1040px;
    margin: auto;
}

.font-B {
    font-weight: bold;
}

.btn {
    border-radius: 9999px;
    z-index: 999;
    padding: 10px 30px;
    cursor: pointer;
}

.btn-default {
    background: linear-gradient(90deg, rgba(0, 218, 233, 1) 0%, rgba(0, 232, 208, 1) 100%);
    font-weight: bold;
    color: #fefefe;
}

.btn-gray {
    background: linear-gradient(90deg, rgba(187, 187, 187, 1.00) 0%, rgba(211, 211, 211, 1.00) 100%);
    font-weight: bold;
    color: #fefefe;
}

@media (hover: hover) {

    a:hover,
    button:hover {
        opacity: .6;
    }
}

.sub-page-wrapper {
    padding: 80px 0;
}

/****************
ヘッダー
****************/

.header-wrapper {
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 15px 0;
    align-items: center;
}

header.page-header {
    box-shadow: 0px 4px 10px -6px rgba(0, 0, 0, 0.3);
}

h1.logo {
    width: 10%;
}

ul.header-nav-list {
    position: relative;
    display: flex;
    gap: 20px;
}

ul.header-nav-list li {
    background: rgb(0, 218, 233);
    background: linear-gradient(90deg, rgba(0, 218, 233, 1) 0%, rgba(0, 232, 208, 1) 100%);
    border-radius: 9999px;
    z-index: 999;
}

a.header-nav-btn {
    font-weight: bold;
    color: #fefefe;
    padding: 10px 30px;
}

a.header-nav-btn img {
    height: 1.3rem;
    width: auto;
    margin-left: .5em;
    vertical-align: sub;
}

/** 絞り込みポップア�?? **/
.search-popup-box {
    display: none;
    position: fixed;
    top: calc(var(--header_vh));
    right: 2%;
    translate: -50% 0;
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    z-index: 100;
}

.search-popup-box.popup {
    display: block;
}

.search-popup-box table {
    border-collapse: separate;
    border-spacing: 0px 10px;
}

.search-popup-box tbody tr th {
    font-weight: normal;
    vertical-align: middle;
    padding: 0 16px;
}

.search-popup-box tbody tr td .form-select {
    display: block;
    position: relative;
}

.search-popup-box tbody tr td .form-select select {
    border-radius: 6px;
    width: 100%;
    height: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #CCCCCC;
}

.search-popup-box tbody tr td .form-select select.is-select {
    color: #333333;
}

.search-popup-box tbody tr td .form-select select:invalid {
    color: #CCCCCC;
}

.search-popup-box tbody tr td .form-select select option {
    color: #333333;
    background-color: #fefefe;
}

.search-popup-box tbody tr td .search_input {
    position: relative;
    display: inline-block;
    width: 100%;
}

input#search_txt,
input#search_txt_top {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    border-width: 1px;
    padding-right: 5px;
    margin-bottom: 0;
    padding-left: 45px;
    border-radius: 6px;
}

input#search_txt::placeholder {
    color: #CCCCCC;
}

i.fas.fa-search {
    position: absolute;
    left: 6px;
    top: 50%;
    font-size: 16px;
    background: none;
    padding: 6px;
    border: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 11px;
}

.submit {
    text-align: center;
    margin-top: 30px;
}

button#search_bar_btn {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .1em;
    background: rgb(0, 218, 233);
    background: linear-gradient(90deg, rgba(0, 218, 233, 1) 0%, rgba(0, 232, 208, 1) 100%);
    color: #fefefe;
    border-radius: 6px;
    position: relative;
    padding: 16px 0;
    width: 60%;
    min-width: 160px;
}

button#search_bar_btn img {
    width: 1.1em;
    margin-left: .8em;
}

.popup-overlay {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.popup-overlay.open {
    display: block;
}


/****************
ファーストビュー
****************/
section.fv-section {
    position: relative;
    height: calc(100vh - var(--header_vh));
    width: 100%;
    background-image: url(../img/top/fv-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    max-height: 700px;
}

.fv-wrapper {
    position: absolute;
    width: 45%;
    top: 50%;
    left: 50%;
    translate: -0% -50%;
    z-index: 1;
}

h2.fv-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #00D6C0;
}

.fv-search-box {
    width: 100%;
    max-width: 700px;
}

.fv-search-category {
    width: 100%;
    display: flex;
    gap: 2%;
}

.fv-search-item {
    width: 49%;
    max-width: 350px;
}

select.fv-search-select {
    color: #CCCCCC;
    padding: 14px 14px;
    font-size: 13px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
    border: 0;
    background: #fefefe;
    text-align: start;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px -6px rgba(0, 0, 0, 0.3);
}

select.fv-search-select.is-select {
    color: #333333;
}

select.fv-search-select:invalid {
    color: #CCCCCC;
}

select.fv-search-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../img/top/down-arrow.svg");
    background-repeat: no-repeat;
    background-size: 1em auto;
    /* 画像�?サイズ?��? 高さ??*/
    background-position: right 12px center;
    /* 画像�?位置 */
}

select.fv-search-select option {
    color: #333333;
    background-color: #fefefe;
}

select.fv-search-select option:checked {
    background: linear-gradient(red, red);
}

.keyword-input-box {
    position: relative;
    margin-top: 10px;
}

input#search {
    color: #333333;
    padding: 14px 14px;
    border-radius: 6px;
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fefefe;
    box-shadow: 0px 4px 10px -6px rgba(0, 0, 0, 0.3);
}

input#search::placeholder {
    color: #CCCCCC;
}

.keyword-input-box .fv-search-button {
    position: absolute;
    width: 1.2em;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
}

.fv-slider-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 15% -50%;
    transform: rotate(10deg);
    width: 40%;
    height: 120%;
    overflow: hidden;
    z-index: 1;
    display: flex
}

.swiper {
    display: flex;
    height: 100%;
    width: 100%;
    margin: 0;
}

.swiper.swiper1 {}

.swiper.swiper2 {}

.fv-slider-wrapper .swiper-wrapper {
    width: 100%;
    transition-timing-function: linear;
}

.swiper-slide {
    filter: drop-shadow(0px 0px 5px rgba(35, 24, 21, 0.22));
    padding: 0 10px;
}

.swiper-slide img {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: none;
    object-fit: cover;
    object-fit: contain;
    padding: 10px 0;
}

.fv-news {
    margin-top: 40px;
    width: 100%;
    max-width: 700px;
}

.fv-news-list {
    margin-top: 20px;
}

h3.fv-news-title {
    font-size: 18px;
    font-weight: bold;
    color: #00D6C0;
}

li.fv-news-item {
    padding: 18px 1em;
    border-bottom: 1px solid #ccc;
}

li.fv-news-item:first-child {
    border-top: 1px solid #ccc;
}

li.fv-news-item a {
    display: inline-flex;
    align-items: center;
    gap: 1em;
}

span.fv-news-date {
    font-size: 14px;
    font-weight: 400;
}

/****************
スペ�?ス一覧
****************/
section.rent-list-section.container-w {
    padding: 100px 0 80px 0;
}

li.space-item {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fefefe;
    padding: 20px;
    gap: 40px;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

li.space-item .space-item-img {
    max-height: 230px;
    width: 30%;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

li.space-item .space-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

li.space-item:not(:last-child) {
    margin-bottom: 40px;
}

.space-item-details {
    width: 70%;
}

ul.space-item-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    gap: 0 10px;
    align-items: center;
}

ul.space-item-list li img {
    width: 1em;
    margin-right: .5em;
}

h3.space-item-title {
    font-weight: bold;
    font-size: 18px;
    padding: 0;
}

ul.space-item-list li {
    font-size: 12px;
    width: fit-content;
    color: #707070;
    background-color: #F2F2F2;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 6px;
}

ul.space-item-list li:not(:first-child) {
    display: flex;
    align-items: center;
}

ul.space-item-list li.space-item-img {
    overflow: hidden;
    border-radius: 10px;
}

ul.space-item-list li.space-item-price {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 900;
    font-size: 24px;
    margin: 10px 0;
    background-color: unset;
    width: 100%;
}

ul.space-item-list li.space-item-price {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 900;
    font-size: 24px;
    margin: 10px 0;
}

ul.space-item-list li.space-item-price span {
    font-size: 16px;
    font-weight: 500;
}

ul.space-item-list li span.space-item-tax {
    margin-left: 8px;
}

.space-favorite-btn {
    position: relative;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
}

.space-favorite-btn .favorite-btn {
    width: 100%;
    height: 100%;
    background: #fefefe;
    border-radius: 50%;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.space-favorite-btn .favorite-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 44%;
}

.space-favorite-btn .favorite-btn img.heart-icon-full {
    opacity: 0;
    transition: all 0.5s 0s ease;
}

.space-favorite-btn .favorite-btn.click img.heart-icon-full {
    opacity: 1;
}

.pagenav-content {
    margin-top: 40px;
}

.pagenav-list {
    margin-top: 20px;
}

.page-numbers {
    display: inline-block;
    padding: .7rem 1rem;
    background-color: #fefefe;
    color: black;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.page-numbers:not(:last-child) {
    margin-right: 4px;
}

.page-numbers.current {
    background-color: #707070;
    color: white;
}

.pagenav-summary p span {
    color: #707070;
}


/****************
スペ�?ス詳細
****************/


li.space-item-datail {
    position: relative;
    align-items: center;
    background-color: #fefefe;
    padding: 20px;
    gap: 40px;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

ul.space-item-datail li:not(:first-child) {
    display: flex;
    align-items: center;
}

li.space-item-datail h3.space-item-title {
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
    display: block;
}

li.space-item-datail .space-item-access {
    margin: 20px 0;
    font-weight: bold;
    font-size: 18px;

}

li.space-item-datail h3.title {
    margin: 30px 0 20px 0;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    border-left: 4px solid #00E8D0;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

table.table {
    width: 100%;
}

table.table,
.table td,
.table th {
    border-collapse: collapse;
    border: 1px solid #aaa;
}

.table td,
.table th {
    padding: 8px;
    font-weight: normal;
}

.table th:first-child {
    width: 30%;
}

.carttable {
    border: none !important;
}

.carttable th:first-child {
    width: 25%;
}

.carttable label {
    padding: 0 10px 0 0;
}

.carttable th span {
    background: red;
    color: #fff;
    border-radius: 3px;
    float: right;
    font-size: 90%;
    padding: 0 3px;
}

.carttable td,
.carttable th {
    padding: 10px 8px;
    border: none;
}

.comfirmbtn {
    display: flex;
    gap: 6px 15px;
    /* 余白 */
    width: 80%;
    margin: 10px auto;
}

#creditcardform {
    display: flex;
    padding: 8px;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    border-radius: 6px;
}

#creditcardform input {
    width: 100%;
    text-align: center;
}

#creditcardform input:first-child {
    text-align: left;
}

#creditcardform .cardno {
    width: 50%;
}

#creditcardform .cardkigen {
    width: 35%;
}

#creditcardform .cardcvv {
    width: 15%;
}

.option-item {
    display: flex;
    justify-content: flex-start;
    gap: 6px 15px;
    /* 余白 */
    padding: 20px;
    border-radius: 8px;
    border: solid 1px #ccc;
    overflow: hidden;
    margin-bottom: 15px;
}

.option-item.activ {
    border: solid 2px rgba(0, 218, 233, 1);
    background: rgba(0, 218, 233, 0.1);
}

.option-item.planchorse {
    cursor: pointer;
}

.option-item div:nth-of-type(2) {
    flex-grow: 1;
}

.option-item .option-img {
    max-width: 200px;
    max-height: 200px;
    overflow: hidden;
}

.option-item .option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.space-option-data h3 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0;
}

.space-option-data .option-price {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
}

.space-option-data .option-price small {
    font-weight: normal;
    padding: 0 10px;
    font-size: 14px;
}

.reserv_item {
    padding: 8px;
    border: solid 1px #ccc;
    position: relative;
    border-radius: 5px;
    margin-bottom: 5px;
}

.reserv_item span {
    float: right;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
}

/****************
cart
****************/
.cart-item {
    display: flex;
    justify-content: flex-start;
    gap: 6px 15px;
    /* 余白 */
    padding: 20px;
    border-radius: 8px;
    border: solid 1px #ccc;
    overflow: hidden;
    margin-bottom: 15px;
}

.cart-img {
    max-width: 200px;
    max-height: 200px;
    overflow: hidden;
}

.cart-img img {
    width: 100%;
}

.step_progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-item: center;
    width: 80%;
    margin: 0 auto 50px auto;
    position: relative;
}

.step_progress:before {
    content: "";
    width: 80%;
    background: #7A7A7C;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 30px;
    z-index: -1;
}

.step_progress>div.complete {
    color: #0F0F0F;
}

.step_progress>div {
    color: #7A7A7C;
    width: 90px;
    text-align: center;
}

.step_progress>div .num {
    border-radius: 50px;
    overflow: hidden;
    padding: 10px;
    background: #f5f5f5;
    display: inline-block;
}

.step_progress>div .num span {
    border: 1px solid #7A7A7C;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    margin: auto;
    background: #f5f5f5;
}

.step_progress>div.complete span {
    background: #0F0F0F;
    color: #fff;
}

/****************
オーダー詳細
****************/
.space-list.planpage {
    display: flex;
    flex-wrap: wrap;
    /* 折返し�?�? */
    gap: 6px 15px;
    /* 余白 */
}

.space-list.planpage li:nth-of-type(1) {
    flex-grow: 1;
}

#order {
    width: 280px;
    position: relative;
    background-color: #fefefe;
    padding: 20px;
    padding-top: 160px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

/****************
オーダーメニュー
****************/
#order-plan-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-height: 160px;
    overflow: hidden;
    margin: 0 0 20px 0;
}

h3 {
    padding: 8px 0;
    font-weight: bold;
}

#order-plan-data {
    list-style: none;
}

#order-plan-data li {
    padding: 8px 0;
    border-bottom: solid 1px #ccc;
}

#order-check {
    font-weight: bold;
    font-size: 14px;
    padding: 8px 0;
}

#order-check span {
    float: right;
}

#order-check-all {
    font-weight: bold;
    font-size: 18px;
    padding: 8px 0;
}

#order-check-all span {
    float: right;
}

/****************
も�?�?�?
****************/
/* スクロールロ�?��する�? */
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

/*----------------------------------------------------------*/
/* モーダルウインドウ Slide In */
/*----------------------------------------------------------*/
.modal {
    display: none;
}

/* モーダルウインドウ?�背景 */
.modal-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .3s;
}

/* モーダルウインドウ?�コン�?���? */
.modal-main-container {
    color: black;
    z-index: 11;
    position: fixed;
    top: 200%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1032px;
    width: 90%;
    height: 60%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.modal-main-container.slide {
    top: 50%;
    transition: .3s;
}

.modal-main-contents {
    background-color: #fff;
    max-width: 1032px;
    border-radius: 12px;
    height: 100%;
    /*  display: flex;*/
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 8px 28px;
    transition: .3s;
    flex: 1;
}

/* モーダルウインドウ?�閉じるボタンのwrapper */
.modal-close-btn__wrapper {
    border-bottom: solid 1px #ebebeb;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* モーダルウインドウ?�閉じるボタン */
.modal-close-btn {
    color: black;
    cursor: pointer;
    margin-right: 24px;
}


/* ------------------------- */
/* コン�?���?��（�?由に作って良�? */
/* ------------------------- */
/* コン�?���??体を囲�?��グ */
.currency-wrapper {
    margin: 24px;
    height: 85%;
}

/* コン�?���??タイトル */
.currency__h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    font-weight: bold;
}

.form-control {
    width: 100%;
    height: auto;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    border-width: 1px;
    border-radius: 6px;
}

.form-sm {
    width: auto;
}

/* ulのスタイル */
.currency-item__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 90%;
}

.currency-item__wrapper li {
    flex: 1;
    height: 90%;
}

/* liのスタイル */
.currency__item {
    max-width: 200px;
    width: 100%;
    margin: 8px;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 200;
    border: 1px solid black;
    cursor: pointer;
}

.modal-timetable {
    position: relative;
    overflow-y: scroll;
    max-height: 450px;
    display: flex;
    height: 100%;
}

.modal-timetable-inner {}

.time_list {
    width: 55px;
    font-weight: 700;
}

.time_list>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.time_pick {
    width: calc(100% - 55px);
    margin-top: 18px;
}

.time_pick>div {
    border-top: 1px solid #000;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

span.child_slot_wrap {
    width: 100%;
    display: inline-block;
}

.child_slot_item {
    border-top: 1px solid #ebebeb;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.child_slot.disable {
    background: #ebebeb;
}

.child_slot.yoyaku {
    background: #F5FDB7;
}

.child_slot.reserved {
    background: #B7E4FD;
}

.child_slot.gcalender {
    background: #FDE4B7;
}

.child_slot:first-child {
    border-top: none;
}

.time_pick_select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.time_pick_select div {
    flex: 1;
    text-align: center;
    align-content: center;
}

.time_pick_select select {
    font-weight: bold;
    margin: 5px;
    color: #333333;
}

.time_pick_price {
    padding: 8px 0;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}

#timeadd {
    margin: 10px 0;
    display: none;
}

/* liのhover設�? */
@media(hover:hover) {
    .currency__item:hover {
        background-color: rgb(238, 238, 238);
    }
}

/****************
フッター
****************/
footer {
    background-color: #2B2B2B;
}

.footer-content {
    padding: 40px 0 20px 0;
}

.footer-nav-wrapper {
    display: flex;
    align-items: flex-start;
    width: 80%;
    margin: auto;
    gap: 10%;
}

.footer-nav-logo {
    width: 20%;
}

ul.footer-nav-list {
    display: flex;
    align-items: center;
    width: 70%;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
}

li.footer-nav-logo {
    width: 14%;
}

ul.footer-nav-list li a {
    color: #CBD0D3;
}

.footer-copyright {
    text-align: center;
    color: #CBD0D3;
    margin-top: 60px;
}

@media (hover: hover) {
    ul.footer-nav-list li a:hover {
        color: #fefefe;
    }
}

/***********************
���X�|���V�u�e�[�u��
*********************/
.restable {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    background: #fff;
    border: none;
}

.restable th,
.restable td {
    font-size: 14px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px;
    vertical-align: middle;
    box-sizing: border-box;
}

.restable th {
    font-weight: 700;
    text-align: center;
}

.restable thead th {
    background: #ccc;
}

.restable tbody td:last-child {
    text-align: right;
}

.restable thead th:first-child,
.restable thead th:last-child {
    width: 20%;
}

/***********************
���X�|���V�u�e�[�u��B
*********************/
.restable_b {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    /* table����100%�Ɏw�� */
    background: #fff;
    border: none;
}

.restable_b th,
.restable_b td {
    border: none;
    font-size: 14px;
    padding: 10px;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
    border-bottom: solid 1px #ccc;
}

.restable_b th {
    font-weight: 700;
    width: 30%;
}

/****************
クーポンバナー
****************/
.coupon-banner {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 20vw;
    max-width: 400px;
}

.coupon-banner a {
    width: 100%;
}