@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500&display=swap');
:root {
    --max-width: 1360px; /*コンテンツ幅*/
    --header-color: rgba(255, 255, 255, 0); /*ヘッダーカラー*/
}
body {
    font-family: "Zon Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
    background-color: var(--site-color);
    color: var(--text-color);
    line-height: 1.75;
}
.en, .page-title::before, .page h1.article-title::before, .error404 h1.article-title::before {
    font-family: "Tangerine", serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
}
a {
    color: unset;
    text-decoration: none;
}
li a {
    text-decoration: none;
}
header, main, footer {
    padding: 20px 0;
}
.home header {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 50px 80px;
    background-color: var(--header-color);
    z-index: 9999;
}
header h1 {
    line-height: 1;
}
.home h1 {
    width: 397px;
}
h1 img {
    width: 100%;
    height: auto;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    position: relative;
}
.main-menu {
    display: flex;
    gap: 10px;
}
.main-menu li a {
    display: inline-block;
    padding: 20px;
}
.main-menu > li > ul {
    display: flex;
    flex-flow: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 0;
    margin: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: .5s ease;
}
.main-menu > li:hover > ul {
    max-height: 500px;
}
.main-menu > li > ul > li a {
    display: block;
    padding: 10px 20px;
}
.main-menu > li > ul > li:last-child {
    margin-bottom: 10px;
}
#container {
    max-width: var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .home header {padding: 40px;}
    .home h1 {width: 300px;}
}
@media screen and (max-width: 600px) {
    body {font-size: 14px;}
    .home header {
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .home h1 {width: 240px;}
    #container {padding: 0 20px;}
}
/* ----------------------------
スライド
------------------------------*/
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90svh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 276px;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: url(../img/white-gradation.webp) repeat-x center/contain;
}
.swiper-button-next, .swiper-button-prev {
    color: #fff;
}
.swiper-pagination-bullet-active {
    background: #fff;
}
.slide-content {
    width: fit-content;
}
.slide-content h2 {
    font-size: 3.5em;
    line-height: 1.3;
}
.slide-content p {
    font-size: 1.5em;
    margin-top: 1.5em;
}
/* ----------------------------
フィックスボタン
------------------------------*/
.main-button {
    position: fixed;
    top: 70px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 240px;
    background: var(--main-color);
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-radius: 20px 0 0 20px;
    font-size: 1.25em;
    color: #fff;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
    z-index: 9999;
    filter: brightness(100%);
    transition: .7s;
}
.main-button span {
    display: block;
    width: 24px;
    height: 26px;
    margin-bottom: 18px;
    background: url(../img/booking.svg) no-repeat center/contain;
}
@media (hover:hover){
    .main-button:hover {
        filter: brightness(110%);
    }
}
.blend-button {
    position: fixed;
    top: 380px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 150px;
    color: #fff;
    mix-blend-mode: difference;
    font-size: .875em;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 999;
}
.blend-button span {
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 18px;
    background: url(../img/instagram.svg) no-repeat center/contain;
    transform: scale(1);
    transition: .7s;
}
@media (hover:hover){
    .blend-button:hover span {
        transform: scale(1.1);
    }
}
.blend-button::before, .blend-button::after {
    content: '';
    display: block;
    width: 1px;
    height: 38px;
    background: #fff;
    position: absolute;
    left: 29px;
}
.blend-button::before {top: -38px;}
.blend-button::after {bottom: -38px;}
@media screen and (max-width: 600px) {
    .main-button {
        width: 40px;
        height: 170px;
        top: 20px;
        font-size: 1.125em;
    }
    .main-button span {
        width: 20px;
        height: 22px;
        margin-bottom: 12px;
    }
    .blend-button {
        width: 40px;
        height: 110px;
        font-size: .825em;
        top: 240px;
    }
    .blend-button span {
        width: 20px;
        height: 20px;
        margin-bottom: 12px;
    }
    .blend-button::before, .blend-button::after {
        height: 28px;
        left: 19px;
    }
    .blend-button::before {top: -28px;}
    .blend-button::after {bottom: -28px;}
}
/* ----------------------------
トップページコンテンツ
------------------------------*/
h2.en, .page-title::before, .page h1.article-title::before, .error404 h1.article-title::before {
    font-size: 4rem;
    color: var(--main-color);
    line-height: 1.2;
}
h2.en::after {
    content: '';
    display: block;
    width: 160px;
    height: 17px;
    margin: 0 auto 60px;
    background: url(../img/separator.svg) no-repeat center/contain;
}
.whatsnew {
    margin-bottom: 100px;
}
.whatsnew ul {
    gap: 60px;
}
.whatsnew figure {
    border-radius: 100vh 100vh 0 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.whatsnew figure img {
    height: 100%;
    transform: scale(1);
    transition: transform 1s ease;
}
.whatsnew h3 {
    margin: 1.25em 0 .75em;
    font-weight: 500;
}
@media (hover:hover){
    .whatsnew li:has(a:hover) img {
        transform: scale(1.1);
    }
}
.text-link {
    position: relative;
    width: fit-content;
    font-size: 1.125em;
    margin: 50px auto 0;
    padding: 0 37px 3px 3px;
}
.news-link.text-link {
    margin: 50px 0 0 auto;
}
.text-link::after {
    content: '';
    display: block;
    width: 203px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--text-color);
}
.news-link.text-link::after {
    width: 167px;
}
.text-link a {
    text-decoration: none;
}
.text-link a::after {
    content: '';
    display: block;
    width: 24px;
    height: 22px;
    position: absolute;
    top: 5px;
    right: 4px;
    background: url(../img/rocaille.svg) no-repeat center/contain;
    pointer-events: none;
}
@media (hover:hover){
    .text-link:hover::after {
        transform-origin: top left;
        animation: moveUnderLine .5s ease-in-out forwards;
    }
}
@keyframes moveUnderLine {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(100%);
    }
}
.salonmenu {
    margin: 0 calc(50% - 50vw);
    padding: 120px calc(50vw - 50%);
    background: url(../img/back-pattern.webp) repeat-y center/100% auto;
    background-color: var(--sub-color);
}
.salonmenu > div {
    max-width: 1000px;
    margin: 0 auto;
}
.salonmenu p {
    margin: 0 50px 40px;
}
.salonmenu figure {
    overflow: visible;
}
.salonmenu .wp-block-table .has-fixed-layout {table-layout: unset;}
.salonmenu table {
    position: relative;
    background: #fff;
    font-size: 1.25em;
    border-radius: 100vh;
}
.salonmenu table::before, .salonmenu table::after {
    content: '';
    display: block;
    width: 44px;
    height: 110px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.salonmenu table::before {
    background: url(../img/flame-left.svg) no-repeat center/contain;
    left: -12px;
}
.salonmenu table::after {
    background: url(../img/flame-right.svg) no-repeat center/contain;
    right: -12px;
}
.salonmenu tr {
    display: flex;
    padding: 0 20px;
}
.salonmenu td {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    height: 90px;
}
.salonmenu td:first-child {width: 45%;}
.salonmenu td:nth-child(2) {width: 15%;}
.salonmenu td:nth-child(3) {width: 40%;}
.salonmenu figcaption {
    margin: .5em 50px 2em;
    font-size: .875em;
}
.booking {
    margin: 150px auto;
    max-width: 900px;
}
.booking h3.wp-block-heading {
    font-size: 1.5rem;
}
.booking .has-small-font-size {
    margin-top: 2em;
}
.booking .has-small-font-size a {
    text-decoration: underline;
}
.cancel-policy {
    border: 1px solid #ddd;
    padding: 1em 1.5em;
    margin-top: 2em;
}
@media screen and (max-width: 1000px) {
    .whatsnew ul {gap: 30px;}
}
@media screen and (max-width: 600px) {
    h2.en, .page-title::before, .page h1.article-title::before, .error404 h1.article-title::before {font-size: 3rem;}
    h2.en::after {
        width: 120px;
        height: 13px;
    }
    .whatsnew {margin-bottom: 80px;}
    .whatsnew figure {
        width: 70%;
        margin: 0 auto;
    }
    .news-link.text-link::after {width: 151px;}
    .salonmenu {padding: 80px calc(50vw - 50%) 60px;}
    .salonmenu p {margin: 0 0 40px;}
    .salonmenu table {font-size: 1em;}
    .salonmenu table::before, .salonmenu table::after {
        width: 30px;
        height: 75px;
    }
    .salonmenu td {height: 60px;}
    .salonmenu td:first-child {width: 55%;}
    .salonmenu td:nth-child(2) {width: 18%;}
    .salonmenu td:nth-child(3) {width: 27%;}
    .salonmenu figcaption {margin: .5em 0 2em;}
    .booking {margin: 80px 0;}
    .booking h3.wp-block-heading {font-size: 1.25em;}
}
/* ----------------------------
予約フォーム
------------------------------*/
#booking_package_guests_4,
#booking_package_totalNumberOfGuests,
.selectable_time_slot.closed,
.selectable_time_slot.closed-by-capacity,
#previous_available_day_button,
#next_available_day_button {
    display: none !important;
}
.selectable_service_slot span {
    opacity: 1;
    transition: .5s;
}
.service-hidden-by-month {
    pointer-events: none;
}
.service-hidden-by-month span {
    opacity: .4;
}
.service-disabled-by-time {
    display: none !important;
}
.selectable_day_slot.closed {
    color: #b52929;
}
#booking-package_calendarPage .day_slot {
    height: 115px !important;
}
#booking-package_calendarPage div.dateField {
    font-size: 1.125rem;
}
#booking-package #booking-package_calendarPage .symbolPanel, #booking-package #booking-package_calendarPage .numberInsteadOfSymbols {
    font-size: 1.375rem !important;
    line-height: 2;
}
#booking-package #booking-package_schedulePage .selectedDate {
    display: block;
}
#booking-package #booking-package_schedulePage .topPanel {
    display: block;
    height: 74px;
}
.schedule-extra-text {
    text-align: center;
}
#booking-package #booking-package_schedulePage .courseListPanel {
    top: 74px;
}
#booking-package #booking-package_schedulePage .addRelativeOfPosition {
    top: 0px;
}
#booking-package #booking-package_schedulePage .postionCenterForScheduleListPanel {
    height: 584px;
    overflow-y: scroll;
}
#booking-package #booking-package_inputFormPanel .required:after, #addCustomFormFieldPanel .required:after {
    content: '（必須）';
    color: #b52929;
    top: 0;
}
#booking-package #booking-package_inputFormPanel .row {
    border-bottom-width: 0;
}
#booking-package #booking-package_inputFormPanel .form_text,
#booking-package #booking-package_inputFormPanel textarea {
    padding: 0.65em;
}
#booking-package #booking-package_inputFormPanel textarea {
    height: 8em;
}
#booking-package #booking-package_inputFormPanel .name {
    font-weight: bold;
}
#booking-package #booking-package_inputFormPanel .name a {
    text-decoration: underline;
}
#booking-package_inputFormPanel #booking_package_input_first_name,
#booking-package_inputFormPanel #booking_package_input_phone,
#booking-package_inputFormPanel #booking_package_input_birthday {
    width: 40%;
}
#booking_package_input_consultation input[type="checkbox"], #booking_package_input_terms input[type="checkbox"], #booking_package_input_divination input[type="checkbox"] {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    cursor: pointer;
    color: #FFF;
    border: 1px solid #999;
    outline: none;
    background-color: #FFF;
    appearance: none;
    vertical-align: top;
}
#booking_package_input_consultation input[type="checkbox"]:checked::before, #booking_package_input_terms input[type="checkbox"]:checked::before, #booking_package_input_divination input[type="checkbox"]:checked::before {
    font-size: 19px;
    line-height: 24px;
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 24px;
    content: "done";
    font-family: "Material Icons";
    color: #333;
    text-align: center;
}
#booking-package_inputFormPanel .radio_title {flex: 1;}
#booking-package_inputFormPanel label, #booking-package-subscription_form label, #editCustomFormFieldPanel label, #addCustomFormFieldPanel label {
    width: fit-content;
}
@media screen and (max-width: 600px) {
    #booking-package_calendarPage .day_slot {height: 95px !important;}
    #booking-package_calendarPage div.dateField {font-size: 1em;}
    #booking-package_inputFormPanel #booking_package_input_first_name, #booking-package_inputFormPanel #booking_package_input_phone, #booking-package_inputFormPanel #booking_package_input_birthday {width: 70%;}
}
/* ----------------------------
フッター
------------------------------*/
footer {
    background: url(../img/back-pattern-pink.webp) repeat;
    background-size: 25%;
    text-align: right;
    width: 100%;
    padding-top: 70px;
}
#foot-widget-area {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50px;
}
#foot-widget-area li {
    list-style: none;
}
#foot-widget-area li:last-child {
    flex: 1;
}
li:has(.gmap) {
    width: 55%;
}
.gmap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    line-height: 0;
}
.gmap iframe {
    position: absolute;
    top: -130px;
    left: 0;
    width: 100%;
    height: calc(100% + 260px);
    display: block;
}
.store-outline {
    padding: 40px 70px 20px;
}
.store-outline > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.store-outline figure {
    width: 315px;
}
.store-outline p {
    margin-bottom: 40px;
}
.parking {
    text-align: left;
}
.copylight {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    margin: 20px 50px 0 0;
    font-size: .875em;
}
@media (hover:hover){
    .copylight a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 1000px) {
    .store-outline {padding: 30px 30px 0;}
}
@media screen and (max-width: 600px) {
    footer {background-size: 50%; padding-top: 50px;}
    #foot-widget-area {flex-direction: column; border-radius: 0;}
    li:has(.gmap) {width: 100%; height: 300px;}
    .gmap {border-radius: 0;}
    .store-outline {padding: 20px;}
    .store-outline p {margin-bottom: 20px;}
    .store-outline figure {width: 225px;}
    .copylight {margin: 20px auto 0; justify-content: center;}
}
.grecaptcha-badge {visibility: hidden;}
/* ----------------------------
その他ページ
------------------------------*/
body:not(.home) header {
    position: relative;
    background: url(../img/back-pattern-pink.webp) repeat;
    background-size: 25%;
}
body:not(.home) header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 276px;
    left: 0;
    bottom: 0;
    background: url(../img/white-gradation.webp) repeat-x center/contain;
}
.single main {
    max-width: 900px;
    margin: 50px auto 120px;
}
.category main {
    max-width: 1080px;
    margin: 100px auto 90px;
}
.thanks main, .privacy-policy main, .error404 main {
    max-width: 900px;
    margin: 100px auto 90px;
}
.site-logo2 {
    position: relative;
    width: 315px;
    margin: 0 auto;
}
.site-logo2 img {
    width: 100%;
    aspect-ratio: 1 / 1;
}
body:not(.home) h1 {
    text-align: center;
    font-weight: 500;
}
.page-title, .page h1.article-title, .error404 h1.article-title {
    position: relative;
    margin-bottom: 70px;
    font-size: 1.25rem;
    color: var(--main-color);
}
.page-title::before, .page h1.article-title::before, .error404 h1.article-title::before {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}
.category-news .page-title::before {
    content: "What's New";
}
.thanks .article-title::before {
    content: "Thank You";
}
.privacy-policy .article-title::before {
    content: "Privacy Policy";
}
.error404 .article-title::before {
    content: "404";
}
.category article {
    margin-bottom: 10px;
}
.category article a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-radius: 20px;
    background-color: #fff;
    transition: background-color 1s ease;
}
@media (hover:hover){
    .category article a:hover {
        background-color: #f9f9f9;
    }
}
.category article a figure {
    width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 100vh 100vh 0 0;
    overflow: hidden;
}
.category article a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1s ease;
}
@media (hover:hover){
    .category article a:hover img {
        transform: scale(1.1);
    }
}
.category article a > div {
    width: calc(100% - 230px);
}
.meta {
    padding-bottom: .3em;
    border-bottom: 1px dashed #ccc;
}
.meta li {
    list-style: none;
    font-size: .875em;
}
.article-title {
    font-weight: 500;
}
.category .article-title {
    margin: .5em 0;
}
.single figure:has(.attachment-post-thumbnail) {
    max-width: 600px;
    height: auto;
    margin: 50px auto;
}
.single figure .attachment-post-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.text {margin-top: 50px;}
.text p:not(:last-child) {
    margin-bottom: 1em;
}
.post-link {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}
.post-link li {
    list-style: none;
    padding: 0 20px;
}
@media (hover:hover){
    .post-link li:hover a {
        text-decoration: underline;
    }
}
.prev-post {
    border-right: 1px solid #ccc;
}
.next-post {
    border-left: 1px solid #ccc;
}
.privacy-policy .text h2 {
    font-size: 1.2rem;
    margin: 3em 0 1.5em;
}
.privacy-policy .text ul {
    margin-bottom: 1em;
}
.privacy-policy .text ul li {
    margin-left: 2em;
}
.privacy-policy .text a {
    color: var(--main-color);
    text-decoration: underline;
}
@media screen and (max-width: 600px) {
    body:not(.home) header {background-size: 50%;}
    .site-logo2 {width: 225px;}
    .page-title, .page h1.article-title, .error404 h1.article-title {margin-bottom: 50px; font-size: 1.25em;}
    body:not(.home) h1 { font-size: 1.25em;}
    .page-title::before, .page h1.article-title::before, .error404 h1.article-title::before {top: -50px;}
    .category main, .thanks main, .privacy-policy main, .error404 main  {margin: 60px 0 20px;}
    .category article {margin-bottom: 20px;}
    .category article a {flex-direction: column; padding: 0; gap: 10px;}
    .category article a figure {width: 70%;}
    .category article a > div {width: 100%;}
    .single main {margin: 10px 0 40px;}
    .single figure:has(.attachment-post-thumbnail) {margin: 20px auto;}
    .post-link {margin-top: 50px;}
    .privacy-policy .text h2 {margin: 2em 0 1em;}
}