/*
Theme Name: MR.BROTHERS CUT CLUB
Theme URI: http://dev.mr-brothers-cutclub.com/
Description: MR.BROTHERS CUT CLUB
Author: MR.BROTHERS CUT CLUB
Author URI: http://dev.mr-brothers-cutclub.com/
*/

@charset "utf-8";
/* CSS Document */

/*-------------------------------------------
 reset
-------------------------------------------*/
*, *::before, *::after {
    box-sizing:border-box;margin:0;padding:0;
}
article,aside,details,figcaption,figure,footer,header,main,nav,section,summary {
    display:block;
}
ul,ol {
    list-style:none;
}
a {
    text-decoration:none;color:inherit;
}
img {
    max-width:100%;height:auto;vertical-align:top;border:0;
}
button,input,textarea,select {
    font:inherit;color:inherit;background:none;border:none;outline:none;
}
button {
    cursor:pointer;
}
table {
    border-collapse:collapse; border-spacing:0;
}



/*-------------------------------------------
 font
-------------------------------------------*/
@font-face {
	font-family: "DINCondensed";
	src: url('font/DIN_Condensed_Bold.ttf') format("truetype");
    font-weight: bold;
}
@font-face {
	font-family: "Roboto";
	src: url('font/Roboto-Bold.ttf') format("truetype");
    font-weight: bold;
}


/*-------------------------------------------
 Loading
-------------------------------------------*/
#loftloader-wrapper,
#loftloader-wrapper .loader-section {
    padding-bottom: env(safe-area-inset-bottom);
    height: 100lvh !important;
}


/*-------------------------------------------
 base
-------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    line-height: 1.6;
	position: relative;
    z-index: 0;
    overflow-x: hidden;
    background: url(images/bg.webp) no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    width: 100vw;
    min-height: 100dvh;
}
@media only screen and (max-width: 767px) {
    body {
        background: url(images/bg.webp) repeat-y center top;
        background-size: 100%;
    }
}

img {width: 100%; height: auto;}
p {text-align: justify;}

a {
    color: #000;
}
a:hover {
    opacity: 0.7;
}

.pc_only {display: block;}
.sp_only {display: none;}
.pc_br {display: block;}
@media only screen and (max-width: 767px) {
	.pc_only {display: none;}
	.sp_only {display: block;}
	.pc_br {display: inline;}
	.sp_br {display: block;}
}

/* ポール アニメーション */
#pole_area {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 50px;
    height: 100dvh;
    overflow-y: hidden;
    background: #fff;
}
#pole_area .pole {
    height: 7344px;
}
#pole_area .pole img {
    display: block;
    width: 50px;
    height: 3672px;
}
@media only screen and (min-width: 768px) {
    #pole_area .pole img {
        animation: scrollUp 30s linear infinite;
    }
    @keyframes scrollUp {
        from {transform: translateY(0);}
        to {transform: translateY(-3672px);}
    }
}
#pole_area .logo_jp {
    width: 22px;
    position: absolute;
    left: 14px;
    top: calc(50% - 80px);
}
.copyright {
    width: 8px;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
@media only screen and (max-width: 767px) {
    #pole_area {
        width: 30px;
    }
    #pole_area .pole {
        height: 4406px;
    }
    #pole_area .pole img {
        width: 30px;
        height: 2203px;
    }
    #pole_area .pole img {
        animation: scrollUp_sp 30s linear infinite;
    }
    @keyframes scrollUp_sp {
        from {transform: translateY(0);}
        to {transform: translateY(-2203px);}
    }
    #pole_area .logo_jp {
        width: 16px;
        left: 7px;
        top: calc(50% - 110px);
    }
    .copyright {
        width: 8px;
        left: 11px;
        bottom: 10px;
    }
}


/*-------------------------------------------
 Common layout (全ページ共通)
-------------------------------------------*/
/* --- Header --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
}
h1.logo img {
    display: block;
    width: 80px;
    margin: 0 78px 1px 12px;
}
nav ul {
    display: flex;
    justify-content: center;
    gap: 28px;
}
#header > .reservation {
    position: relative;
    overflow: hidden;
}
#header > .reservation::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 60px;
    background: #bbb;
    top: 0;
    left: 0;
}
#header > .reservation a {
    display: block;
    text-align: center;
    font-size: 18px;
    width: 170px;
    height: 60px;
    line-height: 62px;
    letter-spacing: 0.25em;
}
#header > .reservation a:after {
    background: #000;
    border: 2px solid #000;
}
#header a {
    color: #fff;
	font-family: "DINCondensed";
    font-size: 15px;
    letter-spacing: 0.1em;
    transition: all 0.2s;
}
#header a:hover {
    letter-spacing: 0.3em;
}
@media only screen and (max-width: 1150px) {
    h1.logo img {
        margin: 0 20px 1px 12px;
    }
    nav ul {
        gap: 18px;
    }
    #header > .reservation a {
        font-size: 14px;
        width: 130px;
        letter-spacing: 0.18em;
    }
    #header a {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    #header {
        justify-content: flex-start;
    }
    nav {
        display: none;
    }
    #header > h1.logo {
        width: auto;
        flex: 1;
    }
    h1.logo img {
        width: 70px;
        margin: 0 0 2px 12px;
    }
    #header > .reservation {
        border-right: 1px solid #bbb;
    }
    #header > .reservation a {
        width: 130px;
        font-size: 17px;
    }
}

/* --- Main --- */
main {
    position: relative;
}
main:not(#top_page) {
    padding: 120px 0 0 100px;
    min-height: 100dvh;
    border-right: 10px solid #000;
    border-bottom: 10px solid #000;
}
@media only screen and (max-width: 767px) {
    main:not(#top_page) {
        border: 0;
        padding: 100px 0 0 50px;
        min-height: calc(100dvh - 114px);
    }
}

/* --- Footer --- */
footer {
    border-bottom: 20px solid #000;
    text-align: center;
}
footer img {
    width: 210px;
    padding-left: 20px;
    margin-bottom: -1px;
}
body.page-template-page-top footer /* TOP */ ,
body.page-id-187 footer /* BOOKING */  {
    display: none;
}

/* --- Button --- */
.btn a {
	font-family: "Roboto";
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 40px;
    display: block;
    max-width: 240px;
    height: 42px;
    text-indent: -9999px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: all .35s;
}
@media only screen and (min-width: 768px) {
    .btn a:hover {
        opacity: 1;
    }
    .btn a:before,
    .btn a:after {
        position: absolute;
        content: attr(data-title);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-indent: 0;
        transition: all .35s;
    }
    .btn a:before {
        color: #fff;
        background: #000;
        border: 2px solid #000;
        transform-origin: left;
        transform: translateX(0) rotateY(0deg);
    }
    .btn a:after {
        color: #fff;
        background: #333;
        border: 2px solid #333;
        transform: translateX(-100%) rotateY(90deg);
        transform-origin: right;
    }
    .btn a:hover:before {
        transform: translateX(100%) rotateY(90deg);
    }
    .btn a:hover:after {
        transform: translateX(0) rotateY(0deg);
    }
}
@media only screen and (max-width: 767px) {
    .btn a {
        text-indent: 0;
        background: #000;
        color: #fff;
    }
}



/*-------------------------------------------
 Humbuger Menu
-------------------------------------------*/
#trigger {
    position: relative;
    margin: 0 12px 0 12px;
	width: 24px;
	height: 60px;
	cursor: pointer;
	z-index: 201;
}
#trigger span {
	position: absolute;
	width: 24px;
	height: 1px;
	background: #fff;
	transition: .3s;
}
#trigger span:first-child  { top: 39%; }
#trigger span:nth-child(2) { top: calc(50% - 1px); }
#trigger span:last-child   { bottom: 41%; }
#trigger.menu-open span { top: 50%; }
#trigger.menu-open span:first-child { transform: translateY(-50%) rotate(45deg); }
#trigger.menu-open span:last-child { transform: translateY(-50%) rotate(-45deg); }
#trigger.menu-open span:nth-child(2) { display: none; }

/* menu中身 */
.toggleWrap {
	display: none;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	z-index: 200;
	overflow: scroll;
}
.toggleWrap .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.toggleWrap h1 img {
    width: 160px;
    margin: 0 auto 50px auto;
}
.toggleWrap nav {
	display: block;
}
.toggleWrap nav.main_menu ul {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}
.toggleWrap nav.sub_menu ul {
    flex-wrap: wrap;
    gap: 10px 30px;
    width: 18em;
    margin: 0 auto 14px;
}
.toggleWrap nav ul li {
	font-size: 16px;
    text-align: center;
	padding-bottom: 1px;
}
.toggleWrap nav ul li a {
    color: #fff;
	font-size: 15px !important;
}
#header .toggleWrap nav.main_menu ul li a {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    letter-spacing: 0.1em;
	font-size: 20px !important;
}
.toggleWrap nav.sub_menu ul li a {
	font-family: "DINCondensed";
    letter-spacing: 0.25em;
}
#header .toggleWrap .reservation a {
    display: block;
    border: 1px solid #bbb;
    margin: 28px auto 20px auto;
    height: 42px;
    width: 180px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    line-height: 43px;
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
}
.toggleWrap .insta_icon {
    width: 36px;
    margin: 0 auto;
}



/*-------------------------------------------
 TOP Page
-------------------------------------------*/
#top_page {
    position: relative;
}
#top_page .pc_only {
    min-width: 1100px;
    height: 100dvh;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 60px 0 0 50px;
}
#top_page .contents_area {
    width: 350px;
    margin: 45px 0 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#top_page .contents_area ul {
    display: flex;
    gap: 30px;
}
#top_page li {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: 17px;
    letter-spacing: 0.1em;
}
#top_page .contents_area li a:hover {
    opacity: 0.4;
}
#top_page .contents_area h1 {
	margin: -15% 0 0 0;
}
#top_page .brand {
	width: 320px;
}
#top_page .brand h2 {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 16px 0 0 0;
}
#top_page .brand p {
	font-family: "Roboto";
    font-size: 9px;
    color: #666;
    line-height: 1.4;
}
#top_page .emblem_logo {
    width: 260px;
    margin-top: 16px;
}
#top_page .photo_area {
    width: calc(100% - 480px);
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    #top_page .pc_only {
        display: none;
    }
    #top_page .sp_only {
        width: calc(100vw - 30px);
        height: calc(100dvh - 60px);
        overflow: hidden;
        position: relative;
        top: 60px;
        left: 30px;
    }
    #top_page .sp_only .swiper {
        height: 100%;
        width: 100%;
    }
    #top_page .sp_only .swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #top_page .deco {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    #top_page .deco img {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        margin: 10px;
    }
    #top_page .top_logo {
        position: absolute;
        z-index: 2;
        top: 38%;
        left: 20%;
        width: 60%;
    }
}



/*-------------------------------------------
 2nd Page
-------------------------------------------*/
/* ページタイトル・タイトル横ロゴ（PCのみ） */
.second_page .logo_2nd {
    position: absolute;
    top: 120px;
    right: 2%;
    max-width: 238px;
}
.second_page .page_title {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 450;
    font-size: 60px;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 30px;
}
@media only screen and (max-width: 1100px) {
    .second_page .logo_2nd {
        top: 80px;
        width: 22vw;
    }
    .second_page .page_title {
        font-size: 56px;
    }
}
@media only screen and (max-width: 767px) {
    .second_page .logo_2nd {
        display: none;
    }
    .second_page .page_title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .second_page h1.page_title.back {
        text-align: right;
        margin-right: 20px;
        padding-bottom: 4px;
        border-bottom: 1px solid #666;
        background: url(images/prev.svg) no-repeat left top 40%;
        background-size: 14px;
    }
    .second_page h1.page_title.back a {
        display: block;
    }
}

/* ページ内メニューリンク */
.second_page ul.page_menu {
	font-family: "Roboto";
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
    font-size: clamp(10px, 1.3vw, 15px);
    margin-bottom: 80px;
    width: 60%;
}
.second_page ul.page_menu li {
    letter-spacing: 0.03em;
}
.second_page ul.page_menu li .pc_br {
    display: inline;
}
.second_page ul.page_menu li.break {
    flex-basis: 100%;
    height: 0;
}
.second_page ul.page_menu a:hover {
    opacity: 0.4;
}
@media only screen and (max-width: 767px) {
    .second_page ul.page_menu {
        width: 100%;
		font-size: clamp(13px, 1.3vw, 15px);
		margin-bottom: 40px;
    }
    .second_page ul.page_menu a {
        text-decoration: underline;
    }
}

/* ページ2カラムレイアウト */
.second_page section {
    display: flex;
    justify-content: space-between;
    scroll-margin-top: 90px;
    margin-bottom: 100px;
}
.second_page .left_column {
    width: 280px;
}
.second_page .right_column {
    width: calc(100% - 280px);
}
@media only screen and (max-width: 767px) {
    .second_page section {
        flex-direction: column;
        border-bottom: 1px solid #666;
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
    .second_page section:last-child {
        border-bottom: 0;
    }
    .second_page .left_column {
        width: 100%;
        margin-bottom: 20px;
    }
    .second_page .right_column {
        width: 100%;
    }
}

/* 店舗情報（STYLIST・SHOPページ左カラム） */
.second_page .location {
    display: block;
	font-family: "DINCondensed";
    font-size: 15px;
    letter-spacing: 0.12em;
	opacity: 0.5;
}
.second_page .en {
    display: block;
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: 40px;
    line-height: 0.9;
    margin-bottom: 7px;
	margin-left: -2px;
}
.second_page .jp {
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.2;
    color: #666;
}
.second_page .detail {
    width: 190px;
    margin: 50px 0 0 0;
}
.second_page .detail h3 {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    text-align: center;
    font-size: 20px;
    margin: 20px 0 0 0;
    line-height: 1.2;
}
.second_page .detail .booking_btn a {
    margin: 6px 0 0 0;
}
.second_page .detail .map_btn a,
.second_page .detail .official_web_btn a,
.second_page .detail .stylist_btn a {
	font-family: "Roboto";
    font-size: 13px;
    display: block;
    border: 1px solid #333;
    text-align: center;
    color: #000;
    padding: 8px 0;
    margin: 6px 0 16px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
}
.second_page .detail .official_web_btn a {
    margin-top: 20px;
}
.second_page .detail .address {
    font-size: 11px;
    margin-top: 8px;
    line-height: 1.5;
}
.second_page dl {
    display: flex;
    flex-wrap: wrap;
    width: 200px;
    font-size: 12px;
    margin-top: 18px;
}
.second_page dt {
    width: 3.5em;
}
.second_page dd {
    width: calc(100% - 3.5em);
}
@media only screen and (max-width: 767px) {
    .second_page .en {
		font-size: 30px;
        margin-bottom: 4px;
    }
    .second_page .detail {
        width: calc(100% - 20px);
        margin: 20px 0 0 0;
    }
    .second_page .detail h3 {
        font-size: 24px;
		padding-bottom: 8px;
		margin-top: 0px;
    }
    .second_page .detail .booking_btn {
        display: flex;
        gap: 6px;
		padding-bottom: 34px;
    }
    .second_page .detail .booking_btn a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #000;
        border: 1px solid #000;
        text-align: center;
        color: #fff;
        padding: 8px 0;
        margin: 6px 0 0 0;
        font-size: 13px;
        letter-spacing: 0.12em;
        border-radius: 6px;
    }
    .second_page .detail .booking_btn a:not(.tel) {
        flex: 1;
    }
    .second_page .detail .booking_btn a.tel {
        background: #777;
        border: 1px solid #777;
        flex: 0 0 20%;
    }
    .second_page .detail .booking_btn a.tel img {
        width: 6vw;
        max-width: 24px;
    }
    .second_page .detail .map_btn iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 3;
        margin: 8px 0 0 0;
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
    }
    .second_page .detail .stylist_btn a {
        margin-top: 16px;
    }
}

/* 投稿一覧 ページネーション */
.second_page .pagination {
    margin-right: 2.6vw;
}
.second_page .pagination .nav-links {
    border-top: 1px solid #666;
    padding: 16px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.second_page .pagination .nav-links .next {
    margin: 0 0 0 auto;
}
.second_page .pagination a {
	font-family: "Roboto";
    font-weight: bold;
    line-height: 1.8;
    font-size: 10px;
    color: #666;
    display: flex;
    align-items: center;
}
.second_page .pagination a img {
    width: 16px;
}
@media only screen and (max-width: 767px) {
    .second_page .pagination {
        margin-right: 0;
    }
    .second_page .pagination .nav-links {
        margin: 0 0 60px 0;
        border-top: 0;
        padding: 0;
    }
    .second_page .pagination a {
        line-height: 1.6;
    }
    .second_page .pagination a img {
        width: 13px;
    }
    .second_page nav {
        display: block;
    }
}

/* Swiper ページネーション */
.second_page .swiper-pagination {
    text-align: right;
    padding-right: 4px;
    bottom: 0;
}
.second_page .swiper-pagination .swiper-pagination-bullet {
    background: #000;
    border-radius: 0;
    width: 6px;
    height: 6px;
    margin: 0 2px;
}

/* NEWS・PRESS カテゴリーリスト */
.category_list h2 {
    display: block;
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.category_list li a {
    display: block;
	font-family: "Roboto";
    font-weight: bold;
    color: #666;
    line-height: 2.2;
    letter-spacing: 0.06em;
}
@media only screen and (max-width: 767px) {
    .category_list h2 {
        text-align: center;
    }
    .category_list ul {
        border-bottom: 1px solid #666;
    }
    .category_list li a {
        text-align: center;
        font-weight: normal;
        line-height: 1.0;
        padding: 14px 0;
        border-top: 1px solid #666;
        font-size: 14px;
    }
    .single .category_list {
        margin-top: 80px;
    }
}




/*-------------------------------------------
 STYLIST Page
-------------------------------------------*/
/* スタイリスト一覧 [レイアウト] */
#stylist_page section:last-child {
    margin-bottom: 60px;
}
@media only screen and (min-width: 970px) {
    #stylist_page .stylist_list ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    #stylist_page .stylist_list li {
        min-width: 180px;
        width: 18.6%;
        height: auto;
        margin: 0 1% 3% 0;
    }
}
@media only screen and (max-width: 1450px) {
    #stylist_page .stylist_list li {
        width: 23.4%;
    }
}
@media only screen and (max-width: 1210px) {
    #stylist_page .stylist_list li {
        width: 31.2%;
    }
}

/* スタイリスト一覧 [画像＆テキスト] */
#stylist_page .stylist_list li .photo {
    position: relative;
}
#stylist_page .stylist_list li .photo > img {
    aspect-ratio: 5 / 7;
    object-fit: cover;
}
#stylist_page .stylist_list li .position {
	font-family: "DINCondensed";
    letter-spacing: 0.1em;
    font-size: 13px;
    margin: 12px 0 7px 0;
    line-height: 1;
	opacity: 0.5;
}
#stylist_page .stylist_list li h3.name {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 350;
    font-size: 22px;
    letter-spacing: 0;
    white-space: nowrap;
    line-height: 0.9;
}
/* #stylist_page .stylist_list li .jp_name {
    font-size: 11px;
    margin-top: 2px;
}
#stylist_page .stylist_list li .price {
    font-size: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    font-family: "DINCondensed";
    letter-spacing: 0.1em;
    color: #666;
}
#stylist_page .stylist_list li .price span {
    display: block;
    margin-bottom: -5px;
}
#stylist_page .stylist_list li .price img.nomination {
    width: 30px;
    margin-right: 6px;
    vertical-align: top;
}
#stylist_page .stylist_list li .price img.kara {
    width: 10px;
    vertical-align: top;
} */
#stylist_page .stylist_list .link_area {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 12px;
}
#stylist_page .stylist_list .link_area .insta_icon {
    width: 30px;
    height: 30px;
}
#stylist_page .stylist_list .link_area .booking_btn {
    flex: 1;
}
#stylist_page .stylist_list .link_area a {
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 33px;
    height: 30px;
    display: block;
    letter-spacing: 0.2em;
    font-size: 14px;
	font-family: "DINCondensed";
}
#stylist_page .stylist_list .insta_icon img {
    width: 26px;
    padding-top: 2px;
}
@media only screen and (max-width: 767px) {
    #stylist_page .stylist_list li h3.name {
        font-size: 28px;
    }
	#stylist_page .stylist_list li .position {
		font-size: 16px;
		letter-spacing: 0;
	}
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    background: #fff;
    padding: 60px 20px 20px 20px;
    width: 84%;
    max-width: 420px;
    text-align: center;
}
.popup-content h3.name {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 350;
    font-size: 22px;
}
.popup-content a {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 10px 0;
    font-size: 12px;
    width: 60%;
    margin: 10px auto;
}
.popup-close {
    margin-top: 50px;
    font-size: 11px;
    cursor: pointer;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    #stylist_page section:last-child {
        margin-bottom: 20px;
    }
    #stylist_page .stylist_list li h2 {
        font-size: 24px;
    }
}



/*-------------------------------------------
 SHOP Page
-------------------------------------------*/
/* SHOP Gallery */
#shop_page section {
    align-items: flex-start;
}
#shop_page .shop_gallery {
    padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
    #shop_page ul.page_menu,
    #shop_page:not(.shop_info) section {
        display: none;
    }
    #shop_page #sp_link {
        margin-bottom: 70px;
        margin-right: 20px;
    }
    #shop_page #sp_link .shop {
        padding: 16px 0;
        border-bottom: 1px solid #666;
        background: url(images/arrow.svg) no-repeat right 16px center;
        background-size: 8px;
    }
    #shop_page .shop_gallery .swiper-pagination {
        text-align: left;
    }
}

/* --- SHOP singlePage [SP only] --- */
@media only screen and (max-width: 767px) {
    #shop_page.shop_info section {
        border: 0;
        margin-top: 31px;
        padding: 0;
    }
    #shop_page.shop_info #sp_link h2 {
        font-family: "kepler-3-display-variable", serif;
        font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 350;
        font-size: 18px;
        letter-spacing: 0.06em;
        text-align: center;
        margin-bottom: 12px;
    }
    #shop_page.shop_info #sp_link .shop:first-of-type {
        border-top: 1px solid #666;
    }
}



/*-------------------------------------------
 PRICING Page
-------------------------------------------*/
#price_page section {
    margin-top: 150px;
    justify-content: flex-start;
}
#price_page .left_column {
    width: 300px;
    margin-right: 4vw;
}
#price_page .right_column {
    width: calc(100% - 350px - 2.5vw);
    max-width: 1150px;
    margin-right: 2.5vw;
}
@media only screen and (max-width: 1000px) {
    #price_page section {
        margin-top: 120px;
        flex-direction: column;
    }
    #price_page .left_column {
        width: calc(100% - 2.5vw);
        margin-right: 2.5vw;
    }
    #price_page .right_column {
        width: calc(100% - 2.5vw);
        margin-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    #price_page section {
        margin-top: 40px;
        margin-bottom: 0;
        width: calc(100% - 20px);
    }
    #price_page .left_column {
        width: 100%;
        margin-right: 0;
    }
    #price_page .right_column {
        width: 100%;
        margin-top: 30px;
    }
}

/* 料金表 */
#price_page .price_list {
    margin-top: -30px;
}
#price_page .price_list li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #666;
    padding: 30px 0 4px 0;
}
#price_page .price_list h2 {
    text-align: center;
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 100, 'wght' 350;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.02em;
    margin: 50px 0 0 0;
}
#price_page .price_list li div {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 350;
    font-size: 22px;
    letter-spacing: 0.02em;
    line-height: 0.8;
}
#price_page .price_list li .jp {
    font-size: 17px;
    color: #000;
} 
#price_page .price_list li .menu {
    flex: 1;
}
#price_page .price_list p {
    width: 100%;
    font-size: 10px;
    margin-top: 7px;
}
@media only screen and (max-width: 767px) {
    #price_page .price_list {
        margin-top: -10px;
    }
    #price_page .price_list li div {
        font-size: 23px;
    }
}

/* ギャラリー */
#price_page .swiper {
    padding-bottom: 20px;
}



/*-------------------------------------------
 ABOUT Page
-------------------------------------------*/
#about_page .about_contents {
    margin-left: 280px;
}
#about_page .about_contents {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 350;
    padding-bottom: 100px;
}
#about_page h2 {
    font-size: clamp(18px, 2vw, 34px);
    margin: 120px 0 50px 0;
}
#about_page p {
    font-size: clamp(14px, 1.2vw, 20px);
    color: #000;
    line-height: 1.7;
    margin-top: 30px;
}
#about_page .en {
    margin-top: 80px;
}
#about_page .en p {
    font-size: 16px;
}
@media only screen and (max-width: 1200px) {
    #about_page .about_contents {
        margin: 0;
        width: 90%;
        padding-bottom: 60px;
    }
    #about_page h2 {
        font-size: 24px;
        margin: 60px 0 30px 0;
        line-height: 1.4;
    }
    #about_page p {
        font-size: 15px;
        line-height: 2.2;
        margin-top: 20px;
        text-align: left;
    }
    #about_page .en {
        margin-top: 40px;
    }
    #about_page .en p {
        font-size: 12px;
    }
}



/*-------------------------------------------
 ACADEMY Page
-------------------------------------------*/
#academy_page .page_title {
    letter-spacing: 0;
    margin-bottom: 0;
}
#academy_page .catch {
	font-family: "DINCondensed";
    font-size: 20px;
    letter-spacing: 0.06em;
}
#academy_page section {
    margin-top: 120px;
    margin-bottom: 80px;
}
#academy_page section > h2 {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: clamp(30px, 4vw, 60px);
    margin-bottom: 20px;
}
#academy_page p {
    font-size: 12px;
    line-height: 1.9;
}
#academy_page .right_column {
    width: calc(100% - 350px - 2.5vw);
    max-width: 2000px;
    margin-right: 2.5vw;
}
#academy_page .article_contents {
    flex-direction: column;
    margin-top: 80px;
}
#academy_page video {
    width: 100%;
    height: auto;
}
#academy_page .youtube_list,
#academy_page .ac_news {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    width: calc(100% - 20px);
}
#academy_page .youtube_item,
#academy_page .ac_news_item {
    width: calc(((100% - 2.5vw) / 4) - 10px);
}
#academy_page .youtube_item h3,
#academy_page .ac_news_item h3 {
    font-size: clamp(12px, 1vw, 13px);
    font-weight: normal;
    line-height: 1.6;
    margin-top: 8px;
}
@media only screen and (max-width: 1100px) {
    #academy_page .logo_2nd {
        top: 100px;
    }
    #academy_page .youtube_item,
    #academy_page .ac_news_item {
        width: calc(((100% - 2.5vw) / 3) - 10px);
    }
}
@media only screen and (max-width: 1000px) {
    #academy_page section {
        margin-top: 120px;
        flex-direction: column;
    }
    #academy_page .left_column {
        order: 2;
        width: calc(100% - 2.5vw);
        margin: 40px 0 0 0;
    }
    #academy_page .right_column {
        order: 1;
        width: calc(100% - 2.5vw);
        margin: 0;
    }
}
@media only screen and (max-width: 767px) {
    #academy_page .logo_2nd {
        display: block;
        min-width: 180px;
        top: 80px;
    }
    #academy_page section {
        margin-top: 40px;
        margin-bottom: 0;
        width: calc(100% - 20px);
        border: 0;
    }
    #academy_page .left_column,
    #academy_page .right_column {
        width: 100%;
    }
    #academy_page p {
        font-size: 15px;
        line-height: 2.2;
		font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
		font-weight: bold;
        /*font-family: "kepler-3-display-variable", serif;
        font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;*/
    }
    #academy_page .article_contents {
        margin-top: 0;
    }
    #academy_page section > h2 {
        text-align: center;
    }
    #academy_page .youtube_list,
    #academy_page .ac_news {
        width: 100%;
    }
    #academy_page .youtube_item,
    #academy_page .ac_news_item {
        width: 100%;
    }
}
@media only screen and (max-width: 590px) {
    #academy_page .logo_2nd {
        display: block;
        position: relative;
        right: auto;
        top: 0;
        width: calc(100% - 20px);
        max-width: 400px;
        text-align: center;
        margin: 0 auto 40px 0;
    }
    #academy_page .logo_2nd img {
        width: 72%;
    }
    #academy_page .page_title {
        text-align: center;
        width: calc(100% - 20px);
    }
    #academy_page .catch {
        text-align: center;
        width: calc(100% - 20px);
        font-size: 15px;
    }
}



/*-------------------------------------------
 NEWS Page
-------------------------------------------*/
#news_page section {
    margin-top: 150px;
}
#news_page:not(.single) section {
    margin-bottom: 40px;
}
#news_page .article_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: 2.5vw;
}
#news_page .article_list article {
    width: 46%;
    text-align: justify;
    margin-bottom: 60px;
}
#news_page .article_list article h2 {
    font-size: clamp(14px, 1.3vw, 18px);
    margin-bottom: 10px;
}
#news_page .article_list article p {
    font-size: clamp(12px, 1.0vw, 15px);
    margin-bottom: 14px;
    line-height: 1.8;
}
#news_page .article_list article .date {
    font-family: "Roboto";
    font-weight: bold;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}
@media only screen and (max-width: 840px) {
    #news_page .article_list article {
        width: 100%;
        text-align: justify;
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 767px) {
    #news_page section {
        margin-top: 50px;
        margin-bottom: 0;
        width: calc(100% - 20px);
    }
    #news_page:not(.single) section {
        margin-bottom: 0;
    }
    #news_page .category_list {
        order: 2;
    }
    #news_page:not(.single) .category_list {
        margin-top: 40px;
    }
    #news_page .article_list {
        order: 1;
        margin: 0;
    }
    #news_page .article_list article {
        padding-bottom: 10px;
        border-bottom: 1px solid #666;
    }
    #news_page .article_list article p {
        margin-bottom: 8px;
    }
    #news_page .article_list .read_more {
        font-family: "Roboto";
        font-weight: bold;
        font-size: 12px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 24px;
    }
}



/*-------------------------------------------
 PRESS Page
-------------------------------------------*/
#press_page:not(.single) section {
    margin-top: 70px;
    margin-bottom: 40px;
}
#press_page section:first-of-type {
    margin-top: 150px;
}
#press_page .month {
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: 30px;
    line-height: 0.9;
}
/* 記事一覧 */
#press_page .article_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#press_page .article_list article {
    width: 23.6%;
    height: auto;
    margin-right: 1%;
    margin-bottom: 40px;
}
#press_page .article_list img {
    aspect-ratio: 5 / 7;
    object-fit: cover;
    object-position: top;
}
#press_page .article_list h2 {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.3;
}
#press_page .article_list .date {
    font-family: "Roboto";
    font-weight: bold;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}
/* ページネーション */
#press_page .pagination {
    width: calc(100% - 280px);
    margin: 0 0 100px auto;
}
#press_page .pagination .nav-links {
    margin-right: 2.6vw;
}
@media only screen and (max-width: 1340px) {
    #press_page .article_list article {
        width: 31.6%;
    }
}
@media only screen and (max-width: 1050px) {
    #press_page .article_list article {
        width: 47.6%;
    }
}
@media only screen and (max-width: 767px) {
    #press_page section:first-of-type {
        margin-top: 60px;
    }
    #press_page section {
        margin-top: 0;
        margin-bottom: 50px;
        padding-bottom: 0;
    }
    #press_page.single section {
        margin-bottom: 40px;
    }
    #press_page section:last-of-type {
        border: 0;
    }
    #press_page .month {
        font-size: 30px;
        margin-bottom: 40px;
    }
    #press_page .article_list article {
        width: calc(100% - 20px);
    }
    #press_page .pagination {
        width: calc(100% - 20px);
        margin: -30px 0 70px 0;
    }
    #press_page .pagination .nav-links {
        margin-right: 0;
    }
    #press_page .category_list {
        width: calc(100% - 20px);
        padding-bottom: 60px;
        margin-bottom: 20px;
    }
}



/* ------ NEWS & PRESS 記事ページ 共通 ------- */
#press_page.single section,
#news_page.single section {
    justify-content: flex-start;
}
#press_page.single .right_column,
#news_page.single .right_column {
    width: calc(100% - 280px - 2.5vw);
    max-width: 700px;
    margin-right: 2.5vw;
}
.single .entry-content {
    margin-top: 40px;
}
.single h1.entry-title {
    display: block;
    font-family: "kepler-3-display-variable", serif;
    font-variation-settings: 'opsz' 18, 'wdth' 110, 'wght' 400;
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.single .entry-date {
	font-family: "Roboto";
    font-size: 11px;
    color: #666;
    display: block;
}
.single article p {
    text-align: justify;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 40px;
}
.single article p img {
    margin-bottom: 20px;
}
.single article .entry-content > div {
    margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
    #press_page.single .left_column {
        display: none;
    }
    #press_page.single .right_column {
        width: calc(100% - 20px);
    }
    #news_page.single .right_column {
        width: 100%;
    }
    .single h1.entry-title {
        font-size: 28px;
    }
}



/*-------------------------------------------
 COMPANY Page
-------------------------------------------*/
#company_page .pc_only .company_block {
    display: flex;
    gap: 100px;
    margin: 60px 0 100px 0;
    padding-right: 40px;
}
#company_page .pc_only .company_block .company-ja,
#company_page .pc_only .company_block .company-en {
    padding-left: 30px;
    border-left: 1px solid #000;
}
#company_page .company-item {
    margin-bottom: 24px;
}
#company_page .company-item:last-child {
    margin-bottom: 0;
}
#company_page .company-item h3 {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 8px;
}
#company_page .company-item p {
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
}
@media only screen and (max-width: 767px) {
    #company_page .sp_only {
        position: relative;
    }
    #company_page .sp-lang-switch {
        position: absolute;
        top: -68px;
        right: 20px;
        letter-spacing: 0.1em;
        font-size: 16px;
        font-family: "DINCondensed";
        opacity: 0.7;
    }
    #company_page .sp-lang-switch .active {
        display: none;
    }
    #company_page .company_block {
        margin: 36px 0 70px 0;
    }
    #company_page .company-item {
        border-bottom: 1px solid #666;
        padding-bottom: 20px;
        margin: 0 20px 20px 0;
    }
    #company_page .company-item h3 {
        font-size: 10px;
        margin-bottom: 4px;
    }
    #company_page .company-item p {
        font-size: 13px;
        line-height: 1.4;
    }
}



/*-------------------------------------------
 CONTACT Page
-------------------------------------------*/
/* --- レイアウト --- */
#contact_page section,
#confirm_page section,
#thanks_page section {
    display: block;
    max-width: 840px;
    width: 100%;
    margin: 60px auto 100px auto;
    background: #fff;
    padding: 40px 70px;
}
#contact_page section h2 {
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 18px;
	font-family: "DINCondensed";
    margin-bottom: 40px;
}
#contact_page form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#contact_page form .elements {
    width: 31%;
}
#contact_page form .wide {
    width: 100%;
}
#contact_page form .two_col {
    width: 48.3%;
}

/* --- Formの項目 --- */
#contact_page form span,
#confirm_page form span {
    font-size: 12px;
    font-weight: bold;
}
#contact_page form input:not([type="submit"]):not([type="checkbox"]),
#contact_page form textarea,
#contact_page form select,
#confirm_page form .confirm_frame {
    display: inline-block;
    width: 100%;
    max-width: 700px;
    min-width: 100%;
    border: 1px solid #ccc;
    font-size: 12px;
    padding: 8px 10px;
    margin: 4px 0 30px 0;
    border-radius: 0;
    line-height: 1.6;
    height: 37px;
    text-align: left !important;
    -webkit-appearance: none;
    appearance: none;
}
#confirm_page form .confirm_frame {
    display: block;
    background: #efefef;
    border: 0;
}
#contact_page form textarea {
    height: 150px;
}
#contact_page form select {
    -webkit-appearance: none;
    appearance: none;
    background: url(http://dev.mr-brothers-cutclub.com/core/wp-content/themes/mbcc/images/select_arrow.svg) no-repeat right 10px center;
    background-size: 12px;
}
#contact_page form input::placeholder {
    color: #aaa;
    font-weight: normal;
}

/* チェックボックス */
#contact_page .menu_list .wpcf7-checkbox {
    display: flex;
    justify-content: space-between;
}
#contact_page .wpcf7-list-item {
    width: 31%;
    border: 1px solid #ccc;
    margin: 4px 0 30px 0;
}
#contact_page .wpcf7-list-item:has(input[type="checkbox"]:checked) {
    border-color: #000;
}
#contact_page .wpcf7-list-item .wpcf7-list-item-label {
    width: 100%;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
#contact_page .wpcf7-list-item > label > input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
}
#contact_page .wpcf7-list-item > label .wpcf7-list-item-label::after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
    margin: 0 0 0 auto;
}
#contact_page .wpcf7-list-item > label > input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    background: #333;
}
#contact_page .wpcf7-list-item > label > .wpcf7-list-item-label {
    order: 1;
}

/* --- 注意書き --- */
#contact_page form p.note {
    width: 100%;
    color: #aaa;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* --- SUBMITボタン --- */
#contact_page form .send_btn {
    width: 100%;
}
#contact_page form .send_btn input[type="submit"],
#confirm_page form .send_btn input[type="submit"],
#confirm_page form .send_btn input.wpcf7-previous {
    display: block;
    cursor: pointer;
    width: 210px;
    margin: 0 auto 8px auto;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    text-align: center;
    line-height: 43px;
    height: 40px;
    letter-spacing: 0.2em;
    font-size: 14px;
	font-family: "DINCondensed";
    border-radius: 0;
}
#confirm_page form .send_btn input[type="submit"] {
    margin: 0 0 8px 0;
}
#confirm_page form .send_btn input.wpcf7-previous { /* BACKボタン */
    background: none;
    border: 1px solid #ccc;
    color: #000;
    width: 100px;
    margin: 0 0 8px 0;
}
#contact_page form .send_btn input[type="submit"]:hover,
#confirm_page form .send_btn input[type="submit"]:hover,
#confirm_page form .send_btn input.wpcf7-previous:hover {
    opacity: 0.7;
}
#confirm_page form .send_btn > p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

/* --- OTHER --- */
#contact_page form .wpcf7-spinner { /* 送信中の読み込みアニメーション */
    display: block;
    margin: 0 auto;
}
#contact_page form .wpcf7-not-valid-tip { /* エラーコメント */
    font-size: 10px;
    position: absolute;
    top: 28px;
    left: 0;
}
#contact_page form .wpcf7-response-output { /* エラーメッセージ */
    margin: 8px auto 0 auto;
    font-size: 10px;
    border-color: #dc3232;
}

/* --- THANKSページ --- */
#thanks_page section p {
    text-align: center;
    font-size: 13px;
}

/* --- BOOKINGのFORMページのみのstyle --- */
#contact_page .note_jp,
#contact_page .note_en {
    text-align: center;
    font-size: 13px;
    margin-bottom: 10px;
}
#contact_page .note_en {
    margin-bottom: 30px;
}
#contact_page .form_note {
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin: 40px 0 20px 0;
}
#contact_page .form_note.with_menu {
    margin-bottom: 0;
}
#contact_page form p.note.mt_widely {
    margin-top: 20px;
}


@media only screen and (max-width: 1200px) {
    #contact_page section,
    #confirm_page section,
    #thanks_page section {
        margin: 60px auto 100px 0;
    }
}
@media only screen and (max-width: 1000px) {
    #contact_page section,
    #confirm_page section,
    #thanks_page section {
        width: 94%;
        padding: 40px 50px;
    }
    #contact_page form textarea {
        max-width: 60vw;
    }
}
@media only screen and (max-width: 767px) {
    #contact_page section,
    #confirm_page section,
    #thanks_page section {
        margin: 40px auto 70px 0;
        width: calc(100% - 20px);
        padding: 30px 20px;
    }
    #contact_page form {
        flex-direction: column;
    }
    #contact_page form .elements {
        width: 100%;
    }
	#contact_page form .elements p{
		margin-bottom: -16px;
	}
    #contact_page form input:not([type="submit"]):not([type="checkbox"]),
    #contact_page form textarea,
    #contact_page form select,
    #contact_page form .wpcf7-list-item-label,
    #confirm_page form .confirm_frame {
        font-size: 13px;
        height: 41px;
    }
    #contact_page .menu_list .wpcf7-checkbox {
        flex-direction: column;
        margin-bottom: 30px;
    }
    #contact_page .wpcf7-list-item {
        width: 100%;
        margin: 4px 0 0 0;
    }
    #confirm_page form .send_btn > p {
        gap: 4px;
    }
    #confirm_page form .send_btn input[type="submit"] {
        width: calc(77% - 8px);
    }
    #confirm_page form .send_btn input.wpcf7-previous {
        width: 23%;
    }
    #contact_page .note_jp,
    #contact_page .note_en {
        text-align: left;
        font-size: 12px;
    }
    #contact_page .form_note {
        text-align: left;
        font-size: 13px;
        margin: 60px 0 20px 0;
		font-weight: bold;
    }
    #contact_page .form_note.with_menu {
        margin-bottom: 20px;
		margin-top: 20px !important;
		font-size: 13px;
		
    }
	
	#contact_page form .send_btn input[type="submit"], #confirm_page form .send_btn input[type="submit"], #confirm_page form .send_btn input.wpcf7-previous{
		font-size: 18px;
		height: 48px;
		padding-top: 4px;
	}
}




/*-------------------------------------------
 BOOKING Page
-------------------------------------------*/
body main#booking_page {
    margin: 0;
    padding: 60px 0 0 0;
}
#booking_page .wrapper {
    position: relative;
    z-index: 99;
    background: rgba(0, 0, 0, 0.9);
    width: 100vw;
    min-height: calc(100dvh - 60px);
    margin: 0 0 -10px 0;
    color: #bbb;
}
#booking_page h1.page_title {
    max-width: 1300px;
    width: 88%;
    margin: 0 auto;
    padding-top: 60px;
}
#booking_page section {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 0 100px 0;
    margin: 60px auto 0 auto;
    width: 1030px;
    gap: 40px 50px;
}
#booking_page .shop_booking {
    width: 310px;
}
#booking_page h2 .en {
    font-size: 34px;
}
#booking_page h2 .en .pc_br {
    display: inline;
}
#booking_page .shop_gallery {
    margin: 16px 0 0 0;
}
#booking_page .booking_btn {
    margin-top: 16px;
}
#booking_page .shop_booking .tel {
    display: none;
}

@media only screen and (min-width: 768px) {
    #booking_page .booking_btn a {
        font-family: "Roboto";
        font-size: 13px;
        letter-spacing: 0.1em;
        line-height: 40px;
        display: block;
        height: 42px;
        margin: 6px auto 0 auto;
        text-align: center;
        background: #fff;
    }
}
@media only screen and (max-width: 1120px) {
    #booking_page section {
        width: 670px;
    }
}
/* @media only screen and (min-width: 768px) {
    #booking_page .booking_btn a:before {
        color: #000;
        background: #fff;
        border: 2px solid #fff;
    }
    #booking_page .booking_btn a:after {
        color: #000;
        background: #efefef;
        border: 2px solid #efefef;
    }
} */
@media only screen and (max-width: 767px) {
    #booking_page h1.page_title {
        text-align: center;
    }
    #booking_page section {
        width: 82%;
    }
    #booking_page .shop_booking {
        width: 100%;
    }
    #booking_page .shop_booking a:not(.tel) {
        max-width: 100%;
        height: 48px;
        background: #fff;
        color: #000;
    }
    #booking_page .shop_booking .tel {
        display: block;
        height: 48px;
    }
}




/*-------------------------------------------
 404 Page
-------------------------------------------*/
#error404_page p {
    margin-top: 150px;
    font-size: 13px;
}
#error404_page .btn a {
    margin: 28px auto 0 0;
}
@media only screen and (max-width: 767px) {
    #error404_page p {
        margin-top: 20px;
    }
}












