@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300");

/*===================================
	共通レイアウト
=====================================*/
/*　　　global
-------------------------------------*/
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    font: 400 62.5% a-otf-gothic-bbb-pr6n, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif !important;
    color: #333;
}

body {
    padding: 0;
    margin: 0;
    font-family: a-otf-gothic-bbb-pr6n, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

body,
html {
    overflow-x: hidden;
}

main {
    overflow: hidden;
    padding-bottom: 100px;
}

@media screen and (max-width: 600px) {
    main {
        padding-bottom: 60px;
    }
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/*　最大幅設定　*/
[data-viewport="sm"] {
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (max-width: 600px) {
    [data-viewport="sm"] {
        padding: 0 15px;
    }
}

[data-viewport="md"] {
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (max-width: 999px) {
    [data-viewport="md"] {
        padding: 0 15px;
    }
}

[data-viewport="lg"] {
    box-sizing: border-box;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (max-width: 999px) {
    [data-viewport="lg"] {
        padding: 0 15px;
    }
}

/*　アスペクト比固定　*/
[data-box] {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: no-repeat center center;
    background-size: cover;
}

[data-box]::before {
    content: "";
    display: block;
}

[data-box] .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

/*===================================
    ヘッダー
=====================================*/
.global-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px 0;
}

@media screen and (max-width: 999px) {
    .global-header {
        padding: 0 10px;
    }
}

.global-header .js-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.global-header .js-header.clone-nav {
    position: fixed;
    width: 100%;
    top: -150px;
    left: 0;
    padding: 10px 10px 0;
    transition: all 1s;
    z-index: 200;
}

@media screen and (max-width: 999px) {
    .global-header .js-header.clone-nav {
        display: none;
    }
}

.global-header .js-header.clone-nav:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
    background-color: #ffffff;
}

.global-header .js-header.clone-nav.is-fixed-nav {
    top: 0;
}

.global-header .logo-wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 5;
}

.global-header .logo-wrap a {
    display: block;
    max-width: 116px;
    padding: 10px 15px;
    background-color: #ffffff;
}

@media screen and (max-width: 999px) {
    .global-header .logo-wrap a {
        padding: 15px;
        max-width: 110px;
    }
}

@media screen and (max-width: 600px) {
    .global-header .logo-wrap a {
        max-width: 75px;
        padding: 10px;
    }
}

.global-header .logo-wrap a img {
    width: 100%;
}

.global-header .logo-wrap h1 {
    position: absolute;
    top: 5px;
    left: 140px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: lighter;
    color: #4D4D4D;
}

@media screen and (max-width: 999px) {
    .global-header .logo-wrap h1 {
        display: none;
    }
}

.global-header .sub-nav {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 999px) {
    .global-header .sub-nav {
        right: 60px;
    }
}

.global-header .sub-nav>div {
    margin-left: 20px;
}

@media screen and (max-width: 600px) {
    .global-header .sub-nav>div {
        margin-left: 15px;
    }
}

.global-header .sub-nav>div a {
    display: flex;
    font-size: 1.5rem;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .global-header .sub-nav>div a {
        font-size: 1.4rem;
    }
}

.global-header .sub-nav>div a img {
    width: auto;
    height: 24px;
    margin-right: 7.5px;
    filter: invert(45%) sepia(0%) saturate(1040%) hue-rotate(139deg) brightness(104%) contrast(81%);
}

@media screen and (max-width: 600px) {
    .global-header .sub-nav>div a svg {
        height: 21px;
    }
}

.global-header .sub-nav>div a svg.icon-logout {
    display: none;
}

.global-header .sub-nav>div a span {
    color: #797979;
}

.global-header .global-nav {
    margin-top: 40px;
}

@media screen and (min-width: 1000px) {
    .global-header .global-nav {
        position: relative;
    }
}

@media screen and (max-width: 999px) {
    .global-header .global-nav {
        margin: 0;
    }
}

@media screen and (max-width: 999px) {
    .global-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 500;
    }
}

@media screen and (max-width: 999px) {
    .global-nav nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 250px;
        padding: 40px 30px 30px;
        background-color: #1a2f4c;
        transform: translateX(100%);
        transition: transform .5s ease-out;
        z-index: 20;
    }

    .global-nav nav.is-shown {
        transform: translateX(0);
    }
}

.global-nav nav ul {
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

@media screen and (max-width: 999px) {
    .global-nav nav ul {
        display: block;
        margin: 0;
        padding: 0;
        background-color: inherit;
    }
}

@media screen and (min-width: 1000px) {
    .global-nav nav ul li.sp {
        display: none;
    }
}

@media screen and (max-width: 999px) {
    .global-nav nav ul li {
        border-bottom: .5px dashed #9b9b9b;
    }
}

.global-nav nav ul li:not(:last-child) {
    margin-right: 1.3em;
}

@media screen and (max-width: 999px) {
    .global-nav nav ul li:not(:last-child) {
        margin: 0;
    }
}

.global-nav nav ul li:not(:last-child) a {
    position: relative;
}

.global-nav nav ul li:not(:last-child) a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #B1AD85;
    transform: scale(0, 1);
    transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
    .global-nav nav ul li:not(:last-child) a:before {
        content: none;
    }
}

.global-nav nav ul li:not(:last-child) a:hover:before {
    transform: scale(1);
}

.global-nav nav ul li:last-child {
    display: none;
}

.global-nav nav ul li:last-child a {
    padding: 5px 20px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: #B1AD85;
    border-radius: 20px;
}

@media screen and (max-width: 999px) {
    .global-nav nav ul li:last-child a {
        padding: 8px 0;
        font-size: 1.6rem;
        border-radius: 0;
        background-color: inherit;
    }
}

.global-nav nav ul li a {
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
}

@media screen and (max-width: 999px) {
    .global-nav nav ul li a {
        display: block;
        padding: 8px 0;
        color: #ffffff;
    }
}

.global-nav .menuToggle {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    background-color: #8c5f2c;
    z-index: 30;
}

@media screen and (min-width: 1000px) {
    .global-nav .menuToggle {
        display: none;
    }
}

.global-nav .menuToggle span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 60%;
    background: #fff;
    opacity: 1;
    left: 50%;
    transform: rotate(0deg) translateX(-50%);
    transition: .25s ease-in-out;
}

.global-nav .menuToggle span:nth-child(1) {
    top: 15px;
    transform-origin: left center;
}

.global-nav .menuToggle span:nth-child(2) {
    top: 25px;
    transform-origin: left center;
}

.global-nav .menuToggle span:nth-child(3) {
    top: 35px;
    transform-origin: left center;
}

.global-nav .menuToggle.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 13.5px;
    left: 31%;
}

.global-nav .menuToggle.is-active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.global-nav .menuToggle.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 35px;
    left: 31%;
}

/* ヘッダー　予約操作説明ボタン */
.link-description {
    padding-top: 3em;
}

.link-description a {
    display: block;
    position: relative;
    width: 100%;
    max-width: 130px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    transition: .4s;
}

.link-description a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.link-description a>h3.link-title {
    width: 80%;
    margin: -2em auto 1em;
    padding: .5em 0;
    color: #fff;
    background: #00A29A;
    border-bottom: solid 2px #14908a;
    /*少し濃い目の色に*/
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    text-align: center;
}

@media screen and (min-width: 787px) {
    .link-description {
        padding-top: 0;
    }

    .link-description a {
        position: absolute;
        right: 0;
        top: 23%;
        max-width: 140px;
        padding: 0;
        text-decoration: none;
    }
}


/*===================================
    フッター
=====================================*/
footer {
    background-color: #B1AD85;
}

footer .logo {
    position: relative;
    top: -40px;
    max-width: 116px;
    margin: auto;
    background-color: #ffffff;
}

@media screen and (max-width: 600px) {
    footer .logo {
        top: -30px;
        max-width: 105px;
    }
}

footer .logo a {
    display: block;
    padding: 10px 15px;
}

footer .logo a img {
    width: 100%;
}

footer .footer-nav {
    padding-bottom: 30px;
}

footer .footer-nav .main ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    footer .footer-nav .main ul {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 600px) {
    footer .footer-nav .main ul {
        margin: 0;
    }
}

footer .footer-nav .main ul li {
    margin: 5px 10px;
    font-size: 1.6rem;
}

@media screen and (max-width: 600px) {
    footer .footer-nav .main ul li {
        font-size: 1.4rem;
    }
}

footer .footer-nav .main ul li:last-child {
    display: none;
    font-size: 1.2rem;
}

footer .footer-nav .main ul li:last-child a {
    padding: 3.5px 20px;
    letter-spacing: .5px;
    border-radius: 15px;
    color: #283762;
    background-color: #ffffff;
}

footer .footer-nav .main ul li:last-child a:hover {
    opacity: 1;
    color: #ffffff;
    background-color: #283762;
    text-decoration: none;
}

footer .footer-nav .main ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

footer .footer-nav .main ul li a:hover {
    text-decoration: underline;
}

footer .footer-nav .sub ul {
    display: flex;
    justify-content: center;
}

footer .footer-nav .sub ul li {
    margin: 5px 10px;
    font-size: 1.4rem;
}

@media screen and (max-width: 600px) {
    footer .footer-nav .sub ul li {
        font-size: 1.3rem;
    }
}

footer .footer-nav .sub ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

footer .footer-nav .sub ul li a:hover {
    text-decoration: underline;
}

footer .administration {
    text-align: center;
    color: #ffffff;
}

footer .administration .company {
    margin: 0 0 20px;
    font-size: 2.4rem;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    footer .administration .company {
        font-size: 2rem;
    }
}

footer .administration .address {
    margin: 0 0 40px;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
    footer .administration .address {
        font-size: 1.4rem;
    }
}

footer .copyright {
    margin: 0;
    padding: 0 0 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
}

/*===================================
    ページ共通
=====================================*/
body main {
    margin-top: 90px;
    background-color: #F3F4F2;
}

/* ページヘッダーの画像部分 */
.page-header {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 999px) {
    .page-header {
        padding: 80px 0;
    }
}

@media screen and (max-width: 600px) {
    .page-header {
        padding: 40px 0;
    }
}

.page-header h1 {
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 .en {
    display: block;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 3px;
    font-size: 54px;
    font-size: 5.4rem;
    font-weight: bold;
    font-family: din-1451-lt-pro-engschrift, sans-serif;
    letter-spacing: 4px;
}

@media screen and (max-width: 999px) {
    .page-header h1 .en {
        font-size: 48px;
        font-size: 4.8rem;
    }
}

@media screen and (max-width: 600px) {
    .page-header h1 .en {
        font-size: 35px;
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
}

.page-header h1 .en:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    width: 54px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-header h1 .jp {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

@media screen and (max-width: 999px) {
    .page-header h1 .jp {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 600px) {
    .page-header h1 .jp {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
}

/* ページヘッダーのメニュー部分 */
.page-header-menu {
    position: relative;
    padding-top: 50px;
    padding-bottom: 63px;
    background-image: url(../../images/common/bg_spot.jpg);
    background-repeat: repeat;
}

@media screen and (max-width: 600px) {
    .page-header-menu {
        padding-top: 25px;
        padding-bottom: 38px;
    }
}

.page-header-menu>div h2 {
    font-size: 24.5px;
    font-size: 2.45rem;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .page-header-menu>div h2 {
        font-size: 19px;
        font-size: 1.9rem;
        margin-bottom: 0;
    }
}

.page-header-menu h3 {
    font-size: 1.4rem;
    text-align: center;
}

/* ページフッター部分のメニュー */
.page-footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
    .page-footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.page-footer>div {
    max-width: 800px;
    margin: 0 auto;
}

@media only screen and (max-width: 1109px) {
    .page-footer>div {
        width: 90%;
    }
}

.page-footer-link {
    margin-top: 36px;
}

@media screen and (max-width: 600px) {
    .page-footer-link {
        margin-top: 20px;
    }
}

.page-footer-link p {
    text-align: left !important;
}

.page-footer-link p span {
    font-size: 18.5px;
    font-size: 1.85rem;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 600px) {
    .page-footer-link p span {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.page-footer-link p span.privacy::after {
    content: "｜";
    margin: 0 5px;
    font-weight: 700;
}

@media screen and (max-width: 600px) {
    .page-footer-link p span.privacy::after {
        margin: 0 3px;
    }
}

.page-footer-link p span a {
    color: #000;
    text-decoration: none;
}

.page-footer-link p span a:hover {
    text-decoration: underline;
}

/* コンテンツ部分 */
.contents {
    /* padding-top: 70px; */
    padding-top: 4rem;
}

@media screen and (max-width: 600px) {
    .contents {
        padding-top: 40px;
    }
}

.contents>div {
    max-width: 1100px;
    margin: 0 auto;
}

@media only screen and (max-width: 799px) {
    .contents>div {
        width: 90%;
    }
}

/* .contents>div h2 {
    letter-spacing: 0.12em;
    margin-bottom: 35px;
}

@media screen and (max-width: 600px) {
    .contents>div h2 {
        margin-bottom: 15px;
    }
} */


/* コンテンツタイトル部分 */
.contents-ttl {
    margin: 10px 0 30px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .contents-ttl {
        margin: 10px 0 15px;
    }
}

.contents-ttl.contents-ttl-jp {
    font-size: 2.8rem;
}

@media screen and (max-width: 999px) {
    .contents-ttl.contents-ttl-jp {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .contents-ttl.contents-ttl-jp {
        font-size: 1.9rem;
    }
}

.contents-ttl.contents-ttl-en {
    margin-bottom: 40px;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .contents-ttl.contents-ttl-en {
        margin-bottom: 25px;
    }
}

.contents-ttl.contents-ttl-en .en {
    display: block;
    padding: 10px 0 5px;
    font-size: 5.4rem;
    font-family: din-1451-lt-pro-engschrift, sans-serif;
}

@media screen and (max-width: 999px) {
    .contents-ttl.contents-ttl-en .en {
        font-size: 4.8rem;
    }
}

@media screen and (max-width: 600px) {
    .contents-ttl.contents-ttl-en .en {
        padding: 5px 0;
        font-size: 3.5rem;
    }
}

.contents-ttl.contents-ttl-en .jp {
    position: relative;
    padding: 0 32px;
    font-size: 1.6rem;
}

@media screen and (max-width: 999px) {
    .contents-ttl.contents-ttl-en .jp {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .contents-ttl.contents-ttl-en .jp {
        font-size: 1.4rem;
    }
}

.contents-ttl.contents-ttl-en .jp:before,
.contents-ttl.contents-ttl-en .jp:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 1px;
    background-color: #000000;
    top: 50%;
    transform: translateY(-50%);
}

.contents-ttl.contents-ttl-en .jp:before {
    left: 0;
}

.contents-ttl.contents-ttl-en .jp:after {
    right: 0;
}

.contents-note {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2;
}

@media screen and (max-width: 600px) {
    .contents-note {
        font-size: 1.4rem;
    }
}

.contents-btn-box {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contents-link-list {
    margin: 3em 0;
}

.contents-link-list .link {
    color: #000;
    font-size: 1.5em;
    background-color: transparent;
    border: none;
    text-decoration: none;
}

.contents-link-list .link:hover {
    color: #000;
    opacity: 1;
    text-decoration: underline;
}

/*  */
/* フォーム部品 */
/* ul.list-line {
    margin-bottom: 38px;
}

@media screen and (max-width: 600px) {
    ul.list-line {
        margin-bottom: 20px;
    }
} */

ul.list-line li dl {
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    ul.list-line li dl {
        margin-bottom: 10px;
    }
}

ul.list-line li dl,
ul.list-line li dl dt,
ul.list-line li dl dd {
    display: block;
    width: 100%;
}

ul.list-line li dl dt,
ul.list-line li dl dd {
    margin-left: 0;
    text-align: left;
}

ul.list-line li dl dt {
    margin-bottom: 0.5em;
    font-size: 2.1rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    align-self: center;
}

@media only screen and (max-width: 767px) {
    ul.list-line li dl dt {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    ul.list-line li dl dt {
        font-size: 1.6rem;
    }
}

ul.list-line li dl dd {
    font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
    ul.list-line li dl dd {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 600px) {
    ul.list-line li dl dd {
        font-size: 1.4rem;
    }
}

/* 確認画面用　１行表示する場合に使用する */
ul.list-line-confirm li dl {
    text-align: left;
    display: flex;
}

ul.list-line-confirm li dl dt {
    width: 230px;
}

ul.list-line-confirm li dl dd {
    text-align: left;
}

ul.list-line-confirm li dl dd {
    /* margin-left: 30px; */
    flex: 1;
    font-size: 1.6rem;
}

@media screen and (max-width: 600px) {

    ul.list-line-confirm li dl,
    ul.list-line-confirm li dl dt,
    ul.list-line-confirm li dl dd {
        display: block;
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-size: 1.2rem;
    }
}

/* コントロール */
/*  */
ul.list-line li dl .input-group {
    display: flex;
}

ul.list-line li dl .input-group input.member-form-item {
    width: 50%;
    margin-right: 1em;
}

@media screen and (max-width: 600px) {
    ul.list-line li dl .input-group {
        display: block;
    }

    ul.list-line li dl .input-group input.member-form-item {
        width: 100%;
        margin-bottom: 1em;
        margin-right: 0;
    }
}

/*  */

ul.list-line li dl dd input,
ul.list-line li dl dd select,
ul.list-line li dl dd textarea {
    border: 1px solid #d6d3d3;
    padding: 2.1rem 2rem;
    background-color: #fff;
    border: none;
}

ul.list-line li dl dd input[type="text"],
ul.list-line li dl dd input[type="email"],
ul.list-line li dl dd input[type="password"],
ul.list-line li dl dd input[type="number"],
ul.list-line li dl dd textarea {
    width: 100%;
}

@media screen and (max-width: 600px) {

    ul.list-line li dl dd input,
    ul.list-line li dl dd select {
        padding: 1rem 1rem;
    }
}

ul.list-line li dl dd input[type="radio"],
ul.list-line li dl dd input[type="checkbox"] {
    position: relative;
    top: 3px;
    width: 20px;
    height: 20px;
}

ul.list-line li dl dd input[type="checkbox"] {
    top: 5px;
    margin-right: 0.2em;
}

.border-default {
    border: 1px solid #d6d3d3 !important;
    background-color: #fff !important;
}


/* 共通ボタン */
.btn-group {
    display: flex;
    margin: 5rem 0;
}

@media only screen and (max-width: 767px) {
    .btn-group {
        display: block;
    }
}

.btn_reset button {
    -webkit-appearance: none;
    margin: 0 auto 10px;
    width: 190px;
    padding: 10px 0;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #333333;
    background-color: #f0f0f0;
    text-align: center;
    text-decoration: none;
    border: 1px solid #cccccc;
    cursor: pointer;
    outline: none;
    appearance: none;
    opacity: 1.0;
    transition: all 0.3s ease;
}

/* 予約不可メッセージ表示用 */
.btn-unavailable {
    margin: 0 auto;
    width: 335px;
    padding: 20px 0;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #d04343;
    background-color: #f0f0f0;
    text-align: center;
    text-decoration: none;
    border: 1px solid #cccccc;
    cursor: default;
}

@media screen and (max-width: 800px) {
    .btn-unavailable {
        padding: 16px;
        font-size: 13.5px;
        font-size: 1.35rem;
        max-width: 280px;
        margin-bottom: 1em;
    }
}

.btn-default,
.btn-secondary,
.btn-back {
    margin: 0 auto;
    width: 335px;
    padding: 20px 0;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    opacity: 1.0;
    transition: all 0.3s ease;
}

.btn-non-select {
    margin: 0 auto;
    width: 335px;
    padding: 20px 0;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #000;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #000;
    cursor: pointer;
    outline: none;
    appearance: none;
    opacity: 1.0;
    transition: all 0.3s ease;
}

.btn-back,
.btn-secondary {
    background-color: #666;
}

.btn-default .small {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.btn-sub {
    width: auto;
    margin: 0 0 2rem;
    padding: 10px 15px;
    color: #000;
    background-color: #fff;
    border: solid 1px #333;
}


@media screen and (max-width: 800px) {

    .btn_reset button,
    .btn-default,
    .btn-non-select,
    .btn-secondary:not(.modal .btn-secondary),
    .btn-back {
        -webkit-appearance: none;
        padding: 16px;
        font-size: 13.5px;
        font-size: 1.35rem;
        max-width: 280px;
        margin-bottom: 1em;
    }
}

@media only screen and (max-width: 767px) {
    .btn-group {
        display: block;
    }

    #con_content>div .btn-box.btn-group .btn-back {
        margin-bottom: 1em;
    }
}

.btn_reset button:disabled {
    -webkit-appearance: none;
    color: #999999;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    opacity: 0.7;
}

.btn_reset button:hover {
    -webkit-appearance: none;
    opacity: 0.8;
    background-color: #e5e5e5;
}

.btn-default:hover,
.btn-non-select:hover,
.btn-secondary:hover,
.btn-back:hover {
    opacity: 0.8;
}

/* トップページ　予定日選択 */
.select-book-date {
    background-color: #fff;
    padding: 30px 55px;
}

ul.select-date-list li dl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

ul.select-date-list li dl.setting {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

ul.select-date-list li dl.setting dt {
    font-size: 2.1rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-align: left;
    width: 250px;
}

ul.select-date-list li dl.setting dd {
    font-size: 2.1rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-align: left;
    width: 190px;
}

@media screen and (max-width: 600px) {
    ul.select-date-list li dl.setting {
        /* max-width: 280px; */
    }

    ul.select-date-list li dl.setting dt {
        font-size: 1.6rem;
    }

    ul.select-date-list li dl.setting dd {
        font-size: 1.6rem;
        width: 190px;
    }
}

/* チェックイン・チェックアウト */
.calendar-input {
    border: 0;
    font-size: 2.1rem;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .calendar-input {
        font-size: 1.6rem;
    }
}


/* トップページ　サービス（オプション）リスト */
.contents-box {
    background-color: #fff;
    padding: 4rem;

    /* 高さがありすぎるので値変更 */
    /* margin-bottom: 38px; */
    margin-bottom: 2rem;
}

@media screen and (max-width: 600px) {
    .contents-box {
        padding: 1rem;
    }
}

.contents-box>.service-list li {
    background-color: #F3F4F2;
    margin-bottom: 10px;
    padding: 5%;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list li {
        display: block;
        padding: 5%;
    }
}

@media screen and (max-width: 600px) {
    .contents-box>.service-list li {
        padding: 5%;
        margin-bottom: 20px;
    }
}

.contents-box>.service-list .detail {
    flex: 1;
}

.contents-box>.service-list .detail h3 {
    margin: 0 0 16px;
    font-size: 21px;
    font-size: 2.1rem;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list .detail h3 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .contents-box>.service-list .detail h3 {
        margin-bottom: 12px;
    }
}

.contents-box>.service-list .detail p.attend {
    margin-top: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
    letter-spacing: -0.04em;
    font-size: 17px;
    font-size: 1.7rem;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list .detail p.attend {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 600px) {
    .contents-box>.service-list .detail p.attend {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.contents-box>.service-list .detail p.attend br.view_sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list .detail p.attend br.view_sp {
        display: inline;
    }
}

.contents-box>.service-list .reserve {
    margin-left: 50px;
    width: 196px;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list .reserve {
        padding: 20px 0 0;
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

.contents-box>.service-list .reserve img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list .reserve img {
        width: 100%;
    }
}

.contents-box>.service-list .reserve .button-box {
    margin-top: 16px;
}

@media only screen and (max-width: 767px) {
    .contents-box>.service-list .reserve .button-box {
        max-width: none;
    }
}

.contents-box>.service-list .reserve .button-box a {
    padding: 11px 0;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    text-decoration: none;
}

@media screen and (max-width: 999px) {
    .contents-box>.service-list .reserve .button-box a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    .contents-box>.service-list .reserve .button-box a {
        padding: 15px 0;
        font-size: 13.5px;
    }
}

.contents-textarea {
    background-color: #fff;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

@media screen and (max-width: 600px) {
    .contents-textarea {
        padding: 1rem;
        font-size: 1.2rem;
    }
}


.contents-info {
    font-size: 2.1rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

@media screen and (max-width: 600px) {
    .contents-info {
        font-size: 1.6rem;
    }
}


/* カレンダー表示 */
table.tbl_service {
    width: 100%;
    border-collapse: collapse;
}

table.tbl_service tr th {
    font-family: din-1451-lt-pro-engschrift, sans-serif;
    border-right: 1px solid #F3F4F2;
    color: #fff;
    background-color: #5E5E5E;
    padding: 0.9rem 1rem 0.3rem;
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.0;
}

@media screen and (max-width: 600px) {
    table.tbl_service tr th {
        font-size: 17px;
        font-size: 1.7rem;
    }
}

table.tbl_service tr td {
    border-right: 1px solid #F3F4F2;
    border-bottom: 1px solid #F3F4F2;
    color: #000;
    background-color: #fff;
    padding: 1.8rem 1rem 2.3rem;
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
}

table.tbl_service td:first-child {
    border-left: 1px solid #F3F4F2;
}


@media screen and (max-width: 600px) {
    table.tbl_service tr td {
        font-size: 20px;
        font-size: 2rem;
    }
}

/* サービス（オプション）詳細画面 */
.service-overview {
    margin-bottom: 10px;
    /* padding: 5%; */
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

@media only screen and (max-width: 767px) {
    .service-overview {
        display: block;
        /* padding: 5%; */
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    .service-overview {
        /* padding: 5%; */
        margin-bottom: 30px;
    }
}

.service-overview .image {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .service-overview .image {
        width: 100%;
    }
}

.service-overview .image img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media only screen and (max-width: 767px) {
    .service-overview .image img {
        width: 100%;
    }
}

.service-overview .image h3 {
    margin: 0 0 16px;
    font-size: 21px;
    font-size: 2.1rem;
}

@media only screen and (max-width: 767px) {
    .service-overview .image h3 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .service-overview .image h3 {
        margin-bottom: 12px;
    }
}

.service-overview .info {
    margin-left: 50px;
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .service-overview .info {
        padding: 20px 0 0;
        width: 100%;
        margin-left: 0;
    }
}

.service-overview .info .attend {
    margin-top: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
    letter-spacing: -0.04em;
    font-size: 1.7rem;
}

@media only screen and (max-width: 767px) {
    .service-overview .info .attend {
        font-size: 1.5rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 600px) {
    .service-overview .info .attend {
        font-size: 1.3rem;
    }
}

.service-overview .info .attend br.view_sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    .service-overview .info .attend br.view_sp {
        display: inline;
    }
}

.service-overview .info .button-box {
    margin-top: 16px;
}

@media only screen and (max-width: 767px) {
    .service-overview .info .button-box {
        max-width: none;
    }
}

.service-overview .info .button-box a {
    padding: 11px 0;
    display: block;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    text-decoration: none;
}


.site-image {
    margin-bottom: 30px;
}

.site-image>img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

table.tbl-site-select {
    width: 60%;
    border-collapse: collapse;
}

@media screen and (max-width: 600px) {
    table.tbl-site-select {
        width: 100%;
    }
}

table.tbl-site-select tr th {
    font-family: din-1451-lt-pro-engschrift, sans-serif;
    border-bottom: 1px solid #F3F4F2;
    color: #fff;
    background-color: #5E5E5E;
    padding: 2rem 2rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.0;
}

@media screen and (max-width: 600px) {
    table.tbl-site-select tr th {
        font-size: 1.2rem;
    }
}

table.tbl-site-select tr td {
    border: 1px solid #F3F4F2;
    color: #000;
    background-color: #fff;
    padding: 0.5rem 2rem;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
}


@media screen and (max-width: 600px) {
    table.tbl-site-select tr td {
        font-size: 1.2rem;
    }
}


/* 注意マーク */
.announce-box {
    margin-bottom: 4rem;
    text-align: center;
}

.announce-box p {
    padding-bottom: 5px !important;
}

.announce-box .mark {
    width: 220px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 12px !important;
    font-size: 1.2rem !important;
    color: #ffffff;
    background-color: #d04343;
    border-radius: 20px;
    text-align: center;
}


/* サービス編集画面　関連商品選択 */
.service-relation-box {
    margin: 2rem;
    padding: 1rem 2rem;
    background-color: #F3F4F2;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    .service-relation-box {
        margin: 1rem 0rem;
        padding: 1rem;
    }
}

.service-relation-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 600px) {
    .service-relation-title {
        font-size: 1.4rem;
    }
}

.service-relation-item {
    text-align: left;
    display: flex;
    padding-bottom: 1rem;
}

.service-relation-name {
    flex: 1;
    text-align: left;
    align-self: center;
    margin-right: 2rem;
}

/* お支払い方法選択画面　クレジットカード入力 */
.card-edit-box {
    margin: 2rem;
    padding: 1rem 2rem;
    background-color: #F3F4F2;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    .card-edit-box {
        margin: 1rem 0rem;
        padding: 1rem;
    }
}

.card-info-box {
    margin-bottom: 2rem;
}

.card-info-preview {
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.card-edit-item {
    text-align: left;
    padding-bottom: 1rem;
}

.card-edit-name {
    text-align: left;
    padding-bottom: 1rem;
    align-self: center;
}

.card-edit-value {
    text-align: left;
    align-self: center;
}


/* マイページ */
.mypage-box .menu-list {
    /* margin-top: 2rem;
    margin-bottom: 0; */
    /* 以下追加 */
    /* margin: 2rem 0; */
    column-count: 2;
}

@media screen and (max-width: 800px) {
    .mypage-box .menu-list {
        column-count: 1;
    }
}


ul.menu-list li {
    margin-bottom: 1rem;
}


/*
ul.menu-list li {
    font-size: 2rem;
    line-height: 3;
    text-align: center;
}

ul.menu-list li a {
    width: 220px;
    margin: 0 auto;
    padding: 7px 20px 10px;
    font-size: 12px;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #b1ad85;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
}
*/

.mypage-btn-box {
    margin-bottom: 5rem;
}

.mypage-btn-box a {
    display: block;
    width: 220px;
    margin: 0 auto;
    padding: 7px 20px 10px;
    font-size: 12px;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #b1ad85;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
}

.mypage-btn-box a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 600px) {
    .mypage-btn-box a {
        font-size: 1.3rem;
    }
}

/* アコーディオン */
.toggle {
    display: none;
}

.accordion-summary {
    /*タイトル*/
    padding: 1em;
    display: block;
    cursor: pointer;
}

.accordion-summary::before {
    /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.accordion-summary,
.accordion-detail {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.accordion-detail {
    /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0 20px;
    overflow: hidden;
}

.toggle:checked+.accordion-summary+.accordion-detail {
    /*開閉時*/
    height: auto;
    padding: 2rem;
    transition: all .3s;
}

@media screen and (max-width: 600px) {
    .toggle:checked+.accordion-summary+.accordion-detail {
        padding: 1rem;
    }
}


.toggle:checked+.accordion-summary::before {
    transform: rotate(-45deg) !important;
}

/* マイページ　予約履歴（アコーディオンのカスタマイズ） */
.accordion>.booked-summary {
    background-color: #B1AD85;
    color: #fff;
    padding: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.accordion>.booked-detail {
    background-color: #EAE7C7;
}

.accordion.canceled>.booked-summary {
    background-color: #aaa;
}

.accordion.canceled>.booked-detail {
    background-color: #eee;
}

.contents-box.canceled {
    background-color: #ddd;
}

/* カートのフリーサイト関連商品部分　（アコーディオンのカスタマイズ） */
.cart-summary {
    padding: 1rem 0;
    border-bottom: 1px solid #666;
}

.cart-summary::before {
    /*タイトル横の矢印*/
    border-top: 2px solid #666;
    border-right: 2px solid #666;
}


/* 共通部品 */
.w800 {
    max-width: 800px !important;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.mr-1 {
    margin-right: 1rem;
}

.red {
    color: #d04343;
}

.bold {
    font-weight: bold;
}

.small {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.display-block {
    display: block !important;
}

textarea {
    border: 1px solid #d6d3d3;
    padding: 2.1rem 2rem;
    background-color: #fff;
    border: none;
    width: 100%;
}

/* -----------------------------------------------------------
	新規会員登録
----------------------------------------------------------- */
#con_content>div.form-box .list-line {
    margin-bottom: 0;
}

#con_content>div.form-box .left-text {
    font-size: 1.5em;
    text-align: left;
}

#con_content>div.form-box ul.list-line li dl dt span {
    margin-left: 1em;
    font-size: 0.7em;
}

#con_content>div.form-box ul.list-line li dl dd input[type="radio"],
#con_content>div.form-box ul.list-line li dl dd input[type="checkbox"] {
    position: relative;
    top: 3px;
    width: 20px;
    height: 20px;
}

#con_content>div.form-box ul.list-line li dl dd input[type="checkbox"] {
    top: 5px;
    margin-right: 0.2em;
}

#con_content>div.confirm-box ul.list-line li dl dd {
    text-align: left;
}

#con_content>div.form-box .btn-box {
    margin-bottom: 5rem;
}

#con_content>div p {
    padding-bottom: 30px;
}

@media screen and (max-width: 600px) {
    #con_content>div.form-box .left-text {
        font-size: 1.3em;
    }
}

.catch {
    text-align: center;
}

/* -----------------------------------------------------------
	con_service
----------------------------------------------------------- */
.con_service>div p {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 12px;
    line-height: 1.95;
}

@media screen and (max-width: 600px) {
    .con_service>div p {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

/* -----------------------------------------------------------
    予約キャンセルボタン
----------------------------------------------------------- */
.cancel_button input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cancel_button .check-icon {
    display: none;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.cancel_button {
    position: relative;
    transition: all 0.3s ease;
}

.cancel_button input[type="checkbox"]:checked+.check-icon,
.cancel_button:has(input[type="checkbox"]:checked) {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #fff;
    transition: all 0.3s ease;
}

.cancel_button input[type="checkbox"]:checked~.check-icon {
    display: inline-block;
    background-color: transparent;
}


/* datepicker カスタマイズ */
.ui-datepicker {
    font-size: 1.6rem !important;
}

/* バリデーションエラーの文字 */
.error-message {
    color: #c65454;
    font-size: 15px;
    text-align: left;
}

/* 検索リセット時のモーダル */
.modal-footer .btn:not(.btn-secondary) {
    margin: 0 auto;
    width: 335px;
    padding: 20px 0;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    opacity: 1.0;
    transition: all 0.3s ease;
}


/* Slider */
.sliderArea {
    max-width: 30%;
    margin: 0 auto;
    padding: 0 25px;
}

@media only screen and (max-width: 767px) {
    .sliderArea {
        max-width: 100%;
    }
}

.sliderArea.w300 {
    max-width: 300px;
}

.slick-slide {
    margin: 0 5px;
}

.slick-slide img {
    width: 100%;
    height: auto;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}
