@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

body {
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

[type="button"],
[type="reset"],
[type="submit"],
a,
a img,
button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 1.4rem;
    color: #333;
    background-color: #000000;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
}

h2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
}

h3 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
}

.header_area {
    padding: 0 25px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    mix-blend-mode: difference;
}

.header_area_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_area_inner .header_menu {
    padding: 30px 0 30px 25px;
}

@media (max-width: 600px) {
    .header_area_inner .header_menu {
        padding: 20px 0 20px 25px;
    }
}

.header_area_inner .header_menu_inner {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.header_area_inner .header_menu_inner span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 2px;
    background: #fff;
    width: 50px;
}

.header_area_inner .header_menu_inner span:nth-of-type(1) {
    top: 15px;
}

.header_area_inner .header_menu_inner span:nth-of-type(2) {
    top: 23px;
}

.header_area_inner .header_menu_inner span:nth-of-type(3) {
    top: 31px;
}

.header_area_inner .header_menu .active span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 2px;
    background: #fff;
    width: 50px;
}

.header_area_inner .header_menu .active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

.header_area_inner .header_menu .active span:nth-of-type(2) {
    opacity: 0;
}

.header_area_inner .header_menu .active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}

.header_area_inner .header_logo {
    position: absolute;
    top: 21px;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    width: 115px;
    height: 50px;
}

@media (max-width: 600px) {
    .header_area_inner .header_logo {
        top: 12px;
    }
}

.header_area_inner .header_logo a {
    fill: #000;
}

.header_area_inner .header_contact {
    padding: 30px 0 30px 25px;
}

@media (max-width: 600px) {
    .header_area_inner .header_contact {
        padding: 20px 0 20px 25px;
    }
}

.header_area_inner .header_contact a {
    fill: #fff;
}

.header_area_inner .header_contact a svg {
    width: 51px;
    height: 37px;
}

#g_nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #595757;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#g_nav .g_nav_btn {
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 9999;
    top: 25px;
    left: 25px;
}

#g_nav .g_nav_btn span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 2px;
    background: #fff;
    width: 50px;
}

#g_nav .g_nav_btn span:nth-of-type(1) {
    top: 15px;
}

#g_nav .g_nav_btn span:nth-of-type(2) {
    top: 23px;
}

#g_nav .g_nav_btn span:nth-of-type(3) {
    top: 31px;
}

#g_nav .active span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 2px;
    background: #fff;
    width: 50px;
}

#g_nav .active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}

#g_nav .active span:nth-of-type(2) {
    opacity: 0;
}

#g_nav .active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}

#g_nav #g_nav_list {
    width: 60%;
    text-align: center;
    position: relative;
}

@media (max-width: 600px) {
    #g_nav #g_nav_list::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        -webkit-filter: brightness(80%);
        filter: brightness(80%);
        z-index: -1;
        top: 0;
        left: 0;
    }
}

@media (max-width: 600px) {
    #g_nav #g_nav_list {
        width: 100%;
        background-image: url("/wp-content/themes/original/assets/img/common/g_nav_img.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

#g_nav.panelactive {
    opacity: 1;
    z-index: 99999;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#g_nav.panelactive #g_nav_list {
    /*ナビの数が増えた場合縦スクロール*/
    z-index: 90;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.g_nav_img {
    width: 40%;
}

@media (max-width: 600px) {
    .g_nav_img {
        display: none;
    }
}

.g_nav_img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

#g_nav_list img {
    margin-top: 10em;
}

@media (max-width: 600px) {
    #g_nav_list img {
        margin-top: 5em;
    }
}

/*ナビゲーション*/
#g_nav_list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

#g_nav.panelactive ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 5em;
}

@media (max-width: 600px) {
    #g_nav.panelactive ul {
        margin-top: 2.5em;
    }
}

/*リストのレイアウト設定*/
#g_nav li {
    list-style: none;
    text-align: center;
}

#g_nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    text-align: center;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    #splash_logo {
        width: 40%;
    }
}

/* Loading アイコンの大きさ設定　*/
/*SVGの横幅*/
.svganimeblock {
    max-width: 800px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .svganimeblock {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/*SVGの可変*/
.svganimeblock svg {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/*アニメーション前に.noneというクラス名が付与された時のパスの指定*/
.svganimeblock svg.none {
    fill-opacity: 0;
    /*最初は透過0で見えない状態*/
    -webkit-transition: fill-opacity .5s;
    transition: fill-opacity .5s;
    /*カラーがつく際のアニメーション0.5秒で変化*/
    fill: none;
    /*塗りがない状態*/
    stroke: #000;
    /*線の色*/
    display: block;
}

/*アニメーション前のパスの指定*/
.svganimeblock svg {
    display: none;
    -webkit-transition: fill-opacity .5s;
    transition: fill-opacity .5s;
    /*カラーがつく際のアニメーション0.5秒で変化*/
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#logo {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 220px;
    margin-rigth: 50px;
}

@media (max-width: 1000px) {
    #logo {
        margin-rigth: 0px;
    }
}

#logo3 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 220px;
    margin-left: 50px;
}

@media (max-width: 1000px) {
    #logo3 {
        margin-left: 0px;
    }
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
.svganimeblock svg.done1 {
    fill: #000;
    /*塗りの色*/
    fill-opacity: 1;
    /*透過1で見える状態*/
    stroke: none;
    /*線の色なし*/
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 1000px) {
    .svganimeblock svg.done1 {
        margin-bottom: 5em !important;
    }
}

.svganimeblock svg.done2 {
    fill: #000;
    /*塗りの色*/
    fill-opacity: 1;
    /*透過1で見える状態*/
    stroke: none;
    /*線の色なし*/
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin: 0 5em !important;
}

@media (max-width: 1000px) {
    .svganimeblock svg.done2 {
        margin: 0 0 5em 0 !important;
    }
}

.svganimeblock svg.done3 {
    fill: #000;
    /*塗りの色*/
    fill-opacity: 1;
    /*透過1で見える状態*/
    stroke: none;
    /*線の色なし*/
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.g_nav_inner_sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.g_nav_inner_sns .g_nav_inner_sns_inner a {
    display: block;
}

.g_nav_inner_sns .g_nav_inner_sns_inner a img {
    margin-top: 0 !important;
}

.g_nav_inner_sns .insta_container {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2em 0;
}

@media (max-width: 600px) {
    .g_nav_inner_sns .insta_container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.g_nav_inner_sns .insta_container a {
    color: #fff;
    padding-right: 2em;
    padding-left: 2em;
    border-right: solid 1px #fff;
}

@media (max-width: 600px) {
    .g_nav_inner_sns .insta_container a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        border-right: none;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 1em;
    }
}

.g_nav_inner_sns .insta_container a:last-child {
    border-right: none;
}

.footer_sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer_sns .g_nav_inner_sns_inner a {
    display: block;
}

.footer_sns .insta_container {
    width: 100%;
    display: block;
    margin: 2em 0;
}

.footer_sns .insta_container a {
    color: #fff;
    padding-bottom: 0.25em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_sns .insta_container a:last-child {
    padding-bottom: 0em;
    padding-top: 0.25em;
}

.contact_section {
    height: auto !important;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
}

.contact_section:hover .contact_section_bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contact_section .contact_section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.contact_section a {
    display: block;
    padding: 50px 0;
}

.contact_section a:hover {
    cursor: url("/wp-content/themes/original/assets/img/top/a_link_hover.png"), auto;
}

.contact_section a .contact_section_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact_section a .contact_section_inner_content h2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.contact_section a .contact_section_inner_content h2 img {
    width: 450px;
}

.contact_section a .contact_section_inner_content .check_price_section_inner_btn {
    margin-top: 2.5em;
}

footer {
    position: relative;
    background-color: #000;
    z-index: 10;
}

footer::before {
    position: absolute;
    content: '';
    background-image: url("/wp-content/themes/original/assets/img/common/footer_bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 900px;
    width: 90%;
    height: 180px;
    bottom: 7em;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media (max-width: 566px) {
    footer::before {
        display: none;
    }
}

footer .copyright {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #898989;
    width: 90%;
    text-align: center;
}

footer .footer_inner {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 10em 0 20em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 566px) {
    footer .footer_inner {
        padding: 5em 0 10em;
    }
}

footer .footer_inner_content {
    color: #fff;
}

@media (max-width: 568px) {
    footer .footer_inner_content {
        margin-top: 2em;
    }
}

footer .footer_inner_content h2 {
    margin-bottom: 2em;
}

footer .footer_inner_content h2 img {
    height: 51px;
}

footer .footer_inner_content p {
    font-size: 18px;
}

footer .footer_inner_content nav ul li {
    list-style-type: none;
}

footer .footer_inner_content nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5em;
}

@media (max-width: 568px) {
    footer .footer_inner_content nav ul li a {
        font-size: 16px;
    }
}

footer .footer_inner_content nav ul li a::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

footer .footer_inner_content nav ul li a:hover {
    color: #fff;
    text-decoration: none;
}

footer .footer_inner_content nav ul li a:hover::before {
    width: 100%;
}

.flowting_btn {
    position: relative;
    z-index: 50;
    display: block;
    mix-blend-mode: difference;
}

@media (max-width: 850px) {
    .flowting_btn {
        mix-blend-mode: inherit;
    }
}

.flowting_btn .flowting_item {
    position: fixed;
    bottom: 100px;
    right: -170px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.flowting_btn .flowting_item a {
    display: inline-block;
    padding: 1em 2em;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.flowting_btn .flowting_item a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 156px;
    height: 156px;
    translate: 0% -50%;
    background-image: url("/wp-content/themes/original/assets/img/common/flowting_reserv.png");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: 10s linear infinite rotation1;
    animation: 10s linear infinite rotation1;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
}

.flowting_btn .flowting_item a:hover::before {
    scale: 1.2;
}

@media (max-width: 850px) {
    .flowting_btn .flowting_item a {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        background-color: #111111;
        padding: 2em 1em;
        font-size: 18px;
    }
    .flowting_btn .flowting_item a::before {
        display: none;
    }
    .flowting_btn .flowting_item a:hover::before {
        scale: 1.2;
    }
}

.flowting_btn_sub {
    position: relative;
    z-index: 50;
    display: block;
    mix-blend-mode: difference;
}

@media (max-width: 850px) {
    .flowting_btn_sub {
        mix-blend-mode: inherit;
    }
}

.flowting_btn_sub .flowting_item {
    position: fixed;
    bottom: 100px;
    right: -170px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.flowting_btn_sub .flowting_item a {
    display: inline-block;
    padding: 1em 2em;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.flowting_btn_sub .flowting_item a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 156px;
    height: 156px;
    translate: 0% -50%;
    background-image: url("/wp-content/themes/original/assets/img/common/flowting_reserv.png");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: 10s linear infinite rotation1;
    animation: 10s linear infinite rotation1;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
}

.flowting_btn_sub .flowting_item a:hover::before {
    scale: 1.2;
}

@media (max-width: 850px) {
    .flowting_btn_sub .flowting_item a {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        background-color: #111111;
        padding: 2em 1em;
        font-size: 18px;
    }
    .flowting_btn_sub .flowting_item a::before {
        display: none;
    }
    .flowting_btn_sub .flowting_item a:hover::before {
        scale: 1.2;
    }
}

.flowting_btn_sub_active {
    display: block;
}

.flowting_btn_sub_active .flowting_item {
    right: 50px;
}

@media (max-width: 850px) {
    .flowting_btn_sub_active .flowting_item {
        right: 0;
    }
}

.flowting_btn_active {
    display: block;
}

.flowting_btn_active .flowting_item {
    right: 50px;
}

@media (max-width: 850px) {
    .flowting_btn_active .flowting_item {
        right: 0;
    }
}

.reservation_caution {
    text-align: center;
    margin-top: 3em;
    font-size: 18px;
}

.change_cancel {
    margin-top: 1em;
    margin-bottom: 1em;
    color: #fff;
    border: solid 1px #fff;
    padding: 1em;
}

.change_cancel h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0.5em;
}

.change_cancel li {
    list-style-type: none;
    font-size: 16px;
}

.change_cancel p {
    margin-top: 0.5em;
}

.bbq_item {
    background-color: #978b8f;
}

.enjoy_item {
    background-color: #5dbbc5;
}

.enjoy_item tbody tr td {
    color: #333;
}

.bbq_item_block .bbq_img_items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1%;
}

.bbq_item_block .bbq_img_items .bbq_img_item {
    width: calc((100% - 3%) / 4);
    display: block;
    height: auto;
}

.bbq_item_block .bbq_img_items .bbq_img_item img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
    object-fit: cover;
}

.bbq_item_block .bbq_text_item {
    margin-top: 2em;
}

.bbq_item_block .bbq_text_item h3 {
    font-size: 18px;
    color: #fff;
}

.bbq_item_block .bbq_text_item p {
    color: #fff;
    font-size: 16px;
}

.bbq_item_block2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2em;
}

.bbq_item_block2 .bbq_img_items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bbq_item_block2 .bbq_img_items .bbq_img_item:first-child {
    width: 30%;
}

@media (max-width: 500px) {
    .bbq_item_block2 .bbq_img_items .bbq_img_item:first-child {
        width: 100%;
        margin-bottom: 1em;
    }
}

.bbq_item_block2 .bbq_img_items .bbq_img_item:last-child {
    width: 70%;
}

@media (max-width: 500px) {
    .bbq_item_block2 .bbq_img_items .bbq_img_item:last-child {
        width: 100%;
    }
}

.bbq_item_block2 .bbq_img_items .bbq_img_item p {
    margin-bottom: 2em;
    padding-left: 1em;
    font-size: 16px;
}

.bbq_item_block2 .bbq_img_items .bbq_img_item p span {
    font-size: 18px;
}

@media (max-width: 500px) {
    .bbq_item_block2 .bbq_img_items .bbq_img_item p {
        padding-left: 0em;
    }
}
