@charset "UTF-8";

/****************************************
        ベース（基本設定）
****************************************/
/**
カラー
*/
.color01 {
    color: #f4f4f4;
}

.color02 {
    color: #d4ecef;
}

.color03 {
    color: #000;
}

.bgcolor01 {
    background-color: #f4f4f4;
}

.bgcolor02 {
    background-color: #d4ecef;
}

.bgcolor03 {
    background-color: #000;
}

/*********************************************
    汎用クラス
*********************************************/
/**
エリア
*/
.area {
    padding: 80px 0;
}

.area80 {
    padding: 80px 0;
}

.area60 {
    padding: 60px 0;
}

.area40 {
    padding: 40px 0;
}

.area20 {
    padding: 20px 0;
}

.areab {
    padding-bottom: 80px;
}

.area80b {
    padding-bottom: 80px;
}

.area60b {
    padding-bottom: 60px;
}

.area40b {
    padding-bottom: 40px;
}

.area20b {
    padding-bottom: 20px;
}

.areat {
    padding-top: 80px;
}

.area80t {
    padding-top: 80px;
}

.area60t {
    padding-top: 60px;
}

.area40t {
    padding-top: 40px;
}

.area20t {
    padding-top: 20px;
}

@media only screen and (max-width: 1024px) {
    .area {
        padding: 40px 0;
    }

    .area80 {
        padding: 60px 0;
    }

    .area60 {
        padding: 40px 0;
    }

    .area40 {
        padding: 20px 0;
    }

    .areab {
        padding-bottom: 40px;
    }

    .area80b {
        padding-bottom: 60px;
    }

    .area60b {
        padding-bottom: 40px;
    }

    .area40b {
        padding-bottom: 20px;
    }

    .areat {
        padding-top: 40px;
    }

    .area80t {
        padding-top: 60px;
    }

    .area60t {
        padding-top: 40px;
    }

    .area40t {
        padding-top: 20px;
    }
}

/**
マージン
*/
.mt10 {
    margin-top: 10px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb30 {
    margin-bottom: 30px;
}

@media only screen and (max-width:599px) {
    .mb50 {
        margin-bottom: 30px;
    }
}

/**
テキスト
*/
.tac {
    text-align: center;
}

.tac1024 {
    text-align: center;
}

.tac599 {
    text-align: center;
}

@media only screen and (max-width:1024px) {
    .tac1024 {
        text-align: left;
    }

    .br1024 br {
        display: none;
    }
}

@media only screen and (max-width:599px) {
    .tac599 {
        text-align: left;
    }

    .br599 br {
        display: none;
    }
}

.tar {
    text-align: right;
}

/*文字をまとめて落とす*/
.group {
    display: inline-block;
}

/*打消し線*/
.strike {
    text-decoration: line-through;
}

/**
heightLineリセット
*/
@media only screen and (max-width: 1024px) {
    .resetheight.-tablet {
        height: auto !important;
    }
}

@media only screen and (max-width: 599px) {
    .resetheight.-mobile {
        height: auto !important;
    }
}

/**
その他
*/
/*トリミングする要素のブロック化*/
.trim {
    display: block;
}

/*モバイル時に順序を並べ替え*/
@media only screen and (max-width: 599px) {
    .change-sp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

/*PC時のみ非表示*/
@media only screen and (min-width: 1025px) {
    .no-pc {
        display: none;
    }
}

/*tb以下非表示*/
@media only screen and (max-width: 1024px) {
    .no-tb {
        display: none;
    }
}

/*sp時のみ非表示*/
@media only screen and (max-width: 599px) {
    .no-sp {
        display: none;
    }
}

/*ポジション*/
.position {
    position: relative;
}

/*********************************************
    汎用レイアウト（全ページ共通）
*********************************************/
/*汎用レイアウト1（全ページ共通）*/
.layout-cmn01 .ttl {
    margin-bottom: 40px;
}

.layout-cmn01 .txt {
    margin-bottom: 10px;
}

.layout-cmn01 .fig {
    margin-bottom: 5px;
}

@media only screen and (max-width: 599px) {
    .layout-cmn01 .ttl {
        margin-bottom: 20px;
    }
}

/*2カラムコンテンツ
（サイドメニューとメインコンテンツ）*/
.column2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.column2 .side {
    width: 260px;
}

.column2 .main {
    width: calc(100% - 300px);
}

@media only screen and (max-width: 1024px) {
    .column2 {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .column2 .side {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        margin-bottom: 5%;
    }

    .column2 .main {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        margin-bottom: 5%;
    }
}

/*左右の要素を入れ替え*/
.change {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*左右の要素を順に入れ替え*/
/*インナー１*/
.inner01 {
    position: relative;
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .inner01 {
        width: 93%;
        max-width: 768px;
    }
}

@media only screen and (max-width: 599px) {
    .inner01 {
        width: 94%;
        max-width: 450px;
    }
}

/*インナー２*/
.inner02 {
    position: relative;
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

@media only screen and (max-width: 1024px) {
    .inner02 {
        width: 93%;
        max-width: 768px;
    }
}

@media only screen and (max-width: 599px) {
    .inner02 {
        width: 94%;
        max-width: 450px;
        padding-top: 40px;
    }
}

/*********************************************
    汎用画像クラス　img
*********************************************/
.img {
    text-align: center;
}

/*背景画像*/
.bgimg {
    position: relative;
}

.img.-bgimg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img.-bgimg img {
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

/*フィルター*/
.img.-filter:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .8;
    background: #fff;
}

/*object-fit(cover)IE対応*/
.img.-cover img {
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

/*object-fit(contain)IE対応*/
.img.-contain img {
    /*IE対策*/
    font-family: "object-fit: contain; object-position: 50% 50%;";
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

/*モバイル時に小さめに表示*/
.img.-smallsp {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 599px) {
    .img.-smallsp {
        width: 80%;
    }
}

/*モバイル時により小さめに表示*/
.img.-smallersp {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 599px) {
    .img.-smallersp {
        width: 50%;
    }
}

/*正円画像*/
.img.-circle {
    overflow: hidden;
    border-radius: 50%;
}

/*角丸画像*/
.img.-round {
    overflow: hidden;
    border-radius: 20px;
}

/**
アスペクト比固定
*/
/*基本アスペクト
（下に続く比率クラスと合わせて使用）*/
.img.-aspect {
    position: relative;
}

.img.-aspect:before {
    display: block;
    content: "";
}

.img.-aspect img {
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

/*比率40％*/
.img.-ratio40:before {
    padding-top: 40%;
}

/*比率65％*/
.img.-ratio65:before {
    padding-top: 65%;
}

/*比率65％*/
.img.-ratio75:before {
    padding-top: 75%;
}

/*********************************************
    共通ボックス　box-cmn
*********************************************/
/*共通ボックス１
「下層の全ページ」*/
.box-cmn01 {
    position: relative;
    padding-top: 40px;
}

.box-cmn01 .cap {
    margin-top: -40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-cmn01.-left {
    width: 85%;
}

.box-cmn01.-left:after {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: #d4ecef;
}

.box-cmn01.-right {
    width: 85%;
    margin-left: auto;
}

.box-cmn01.-center:after {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    background: #d4ecef;
}

.box-cmn01.-gray:after {
    background: #f4f4f4;
}

/*要素を交互に入れ替え*/
.alternate-cmn01 section .inner {
    position: relative;
    padding-top: 80px;
}

.alternate-cmn01 section:nth-of-type(odd) .ttl {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: rotate(90deg) translate(100%, -30%);
    -ms-transform: rotate(90deg) translate(100%, -30%);
    transform: rotate(90deg) translate(100%, -30%);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.alternate-cmn01 section:nth-of-type(odd) .box {
    width: 85%;
    padding: 40px 80px 60px 10px;
}

.alternate-cmn01 section:nth-of-type(odd) .box:after {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: rgba(255, 253, 253, 0.7);

}

.alternate-cmn01 section:nth-of-type(odd) .box:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: url(/upload/tenant_1/d83d524ce6633ba82e911a4e1fce1b4d.jpg) center center no-repeat;
    background-size: cover;
}

.alternate-cmn01 section:nth-of-type(odd) .secimg {
    width: calc(50vw + 400px);
}

.alternate-cmn01 section:nth-of-type(odd) .secimg img {
    max-width: 100%;
    height: 50%;
    min-height: 300px;
}

.alternate-cmn01 section:nth-of-type(even) .ttl {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg) translate(0%, -90%);
    -ms-transform: rotate(90deg) translate(0%, -90%);
    transform: rotate(90deg) translate(0%, -90%);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.alternate-cmn01 section:nth-of-type(even) .box {
    width: 85%;
    margin-left: auto;
    padding: 40px 10px 60px 80px;
}

.alternate-cmn01 section:nth-of-type(even) .box:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: #dbe5d1;
}

.alternate-cmn01 section:nth-of-type(even) .box.-nobg:after {
    content: none;
}

@media only screen and (max-width: 599px) {
    .alternate-cmn01 section .inner {
        padding-top: 40px;
    }

    .alternate-cmn01 section:nth-of-type(odd) .box {
        width: 88%;
        padding: 40px 10px 40px 0;
    }

    .alternate-cmn01 section:nth-of-type(even) .box {
        width: 88%;
        padding: 40px 0 40px 10px;
    }
}

/*共通ボックス２（記事詳細）
「ニュース、コラム詳細ページ」*/
.box-cmn02 .time {
    display: block;
    text-align: center;
}

.box-cmn02 .category {
    margin-bottom: 20px;
    text-align: center;
}

.box-cmn02 .cap {
    margin-bottom: 10px;
    text-align: center;
}

.box-cmn02 .disc {
    position: relative;
    padding: 60px 80px;
    border-top: 2px solid #5a3e3a;
    border-bottom: 2px solid #5a3e3a;
}

.box-cmn02 .disc:before {
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    border-bottom: 2px dotted #5a3e3a;
}

.box-cmn02 .disc:after {
    position: absolute;
    bottom: 4px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    border-bottom: 2px dotted #5a3e3a;
}

.box-cmn02 .btn {
    margin-top: 20px;
}

@media only screen and (max-width: 1024px) {
    .box-cmn02 .disc {
        padding: 40px;
    }
}

@media only screen and (max-width: 599px) {
    .box-cmn02 .disc {
        padding: 20px;
    }
}

/*共通ボックス３
「トップ、スタイル詳細（レコメンド）、
コラム詳細（レコメンド）」*/
.box-cmn03 {
    position: relative;
    padding-top: 80px;
}

.box-cmn03 .boxin {
    position: relative;
    padding: 40px 0 40px 0;
}

.box-cmn03 .boxin.-left {
    width: 85%;
    padding: 40px 80px 60px 10px;
}

.box-cmn03 .boxin.-left:after {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
}

.box-cmn03 .boxin.-right {
    width: 85%;
    margin-left: auto;
    padding: 40px 10px 60px 80px;
}

.box-cmn03 .boxin.-right:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
}

.box-cmn03 .boxin.-center {
    padding: 40px 100px 40px 0;
}

.box-cmn03 .boxin.-center:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.box-cmn03 .boxin.-blue:after {
    background: #d4ecef;
}

.box-cmn03 .boxin.-gray:after {
    background: #f4f4f4;
}

@media only screen and (max-width: 599px) {
    .box-cmn03 {
        padding-top: 40px;
    }

    .box-cmn03 .boxin.-center {
        padding: 40px 50px 40px 0;
    }
}

/*共通ボックス４
「トップ（スタッフ）、スタッフ」*/
.box-cmn04 {
    position: relative;
    z-index: 1;
}

.box-cmn04:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #f4f4f4;
}

.box-cmn04 .block-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
}

.box-cmn04 .block-txt {
    padding: 40px 80px 40px 40%;
}

.box-cmn04 .block-txt.-pr0 {
    padding-right: 0;
}

.box-cmn04 .cap {
    font-size: 18px;
    position: absolute;
    top: 30%;
    right: 0;
    -webkit-transform: translate(50%, -50%) rotate(90deg);
    -ms-transform: translate(50%, -50%) rotate(90deg);
    transform: translate(50%, -50%) rotate(90deg);
}

.box-cmn04 .en {
    margin-bottom: 40px;
}

.box-cmn04 .head {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.box-cmn04 .txt.-home02 {
    min-height: 200px;
}

.box-cmn04 .btn {
    margin-top: 30px;
}

@media only screen and (max-width: 1024px) {
    .box-cmn04 .block-img {
        position: relative;
        width: 50%;
        margin: 0 auto;
    }

    .box-cmn04 .block-txt {
        padding: 20px 0;
    }
}

@media only screen and (max-width: 599px) {
    .box-cmn04 .block-img {
        width: 70%;
        margin-left: 0;
    }

    .box-cmn04 .en {
        margin-bottom: 20px;
    }
}

/*共通ボックス
「トップ」*/
.box-cmn05 {
    width: 86%;
}

.box-cmn05.-right {
    margin-left: auto;
}

@media only screen and (max-width: 599px) {
    .box-cmn05 {
        width: 85%;
    }
}

/*********************************************
    共通ブロック　block-cmn
*********************************************/

/*********************************************
パンクズ　pnav
*********************************************/

.pnav li {
    display: inline-block !important;
    padding: 2px 0;
}

.pnav li+li:before {
    content: ">";
    display: inline-block !important;
    margin: 0 0.5em;
}

.pnav li a {
    text-decoration: underline;
}

.pankuzu li:first-of-type:before {
    display: none;
}

.pankuzu .inner {
    padding: 0;
}


/*********************************************
    共通タイトル　ttl-cmn
*********************************************/
/*共通タイトル1（トップタイトル）*/
.ttl-cmn01 {
    line-height: 100%;
    text-align: center;
    letter-spacing: .2em;
    color: #fff;
}

.under .ttl-cmn01 {
    font-size: 60px;
}

.ttl-cmn01 .ttlin {
    font-size: 20px;
    display: block;
    letter-spacing: .1em;
}

@media only screen and (max-width: 1024px) {
    .under .ttl-cmn01 {
        font-size: 40px;
    }

    .ttl-cmn01 .ttlin {
        font-size: 18px;
    }
}


@media only screen and (max-width: 599px) {
    .ttl-cmn01 {
        font-size: 22px;
    }

    .under .ttl-cmn01 {
        font-size: 22px;
    }

    .ttl-cmn01 .ttlin {
        font-size: 14px;
    }
}

/*共通タイトル２（セクションタイトル）*/
.ttl-cmn02 {
    font-family: "garamond";
    font-size: 60px;
    line-height: 100%;
    z-index: 5;
    display: inline-block;
    white-space: nowrap;

}

.ttl-cmn02 .ttlin {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", "Sawarabi Mincho", serif;
    font-size: 16px;
    color: #fd548d;
    display: block;
    letter-spacing: .1em;
}

.ttl-cmn02 .ttlin02 {
    display: block;
}

.ttl-cmn02.-left {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg) translate(0%, -90%);
    -ms-transform: rotate(90deg) translate(0%, -90%);
    transform: rotate(90deg) translate(0%, -90%);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.ttl-cmn02.-right {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: rotate(90deg) translate(100%, -30%);
    -ms-transform: rotate(90deg) translate(100%, -30%);
    transform: rotate(90deg) translate(100%, -30%);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.ttl-cmn02.-normal {
    font-size: 60px;
}

.ttl-cmn02.-small {
    font-size: 30px;
}

@media only screen and (max-width:1024px) {
    .ttl-cmn02 {
        line-height: 70%;
    }
}

@media only screen and (max-width: 599px) {
    .ttl-cmn02 {
        font-size: 40px;
        line-height: 60%;
    }

    .ttl-cmn02 .ttlin {
        font-size: 10px;
    }

    .ttl-cmn02 .ttlin02 {
        display: inline-block;
    }

    .ttl-cmn02.-normal {
        font-size: 40px;
    }
}

/*共通タイトル３*/
.ttl-cmn03 {
    font-size: 30px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 599px) {
    .ttl-cmn03 {
        font-size: 22px;
    }
}

/*共通タイトル４*/
.ttl-cmn04 {
    font-size: 38px;
    line-height: 100%;
}

.ttl-cmn04.-italic {
    font-style: italic;
}

.ttl-cmn04.-border {
    position: relative;
    padding-bottom: 5px;
    border-bottom: 2px solid #5a3e3a;
}

.ttl-cmn04.-border:after {
    position: absolute;
    bottom: -6px;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    border-bottom: 2px dotted #5a3e3a;
}

@media only screen and (max-width: 599px) {
    .ttl-cmn04 {
        font-size: 28px;
    }
}

/*共通タイトル５*/
.ttl-cmn05 {
    font-size: 30px;
    letter-spacing: .2em;
}

.ttl-cmn05:after {
    display: block;
    width: 100px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    content: "";
    background: #999;
}

.ttl-cmn05.-small {
    font-size: 20px;
}

.ttl-cmn05.-small:after {
    width: 30px;
    margin-top: 0;
}

@media only screen and (max-width: 599px) {
    .ttl-cmn05 {
        font-size: 24px;
    }
}

/*********************************************
    共通テキスト　txt-cmn
*********************************************/
/*共通テキスト１*/
.txt-cmn01 {
    font-size: 16px;
    line-height: 250%;
}

/*共通テキスト２*/
.txt-cmn02 {
    font-size: 20px;
}

.txt-cmn02.-small {
    font-size: 14px;
}

/*********************************************
    共通リスト　list-cmn
*********************************************/
/*共通リスト1(ニュースリスト)
「トップ、ニュース」*/
.list-cmn01 {
    border-top: 1px solid #c5c5c5;
    border-bottom: 5px double #c5c5c5;
}

.list-cmn01 .item {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 20px;
}

.list-cmn01 .item:not(:last-of-type) {
    border-bottom: 1px solid #c5c5c5;
}

.list-cmn01 .datattl {
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px;
    padding-right: 20px;
    max-width: 140px;
}

.list-cmn01 .data {
    display: block;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-cmn01 .datattl:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 2px;
    height: 40px;
    content: "";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #c5c5c5;
}

@media only screen and (max-width: 599px) {
    .list-cmn01 .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px;
    }

    .list-cmn01 .datattl {
        width: 100%;
        margin-bottom: 10px;
    }

    .list-cmn01 .datattl:after {
        top: 110%;
        right: inherit;
        left: 0;
        width: 75px;
        height: 2px;
    }

    .list-cmn01 .data {
        width: 100%;
    }
}

/*共通リスト２（スタイルギャラリー）
「トップ、スタイルギャラリー」*/
.list-cmn02 .item {
    position: relative;
    margin: 0;
    width: 25%;
    overflow: hidden;
}

.list-cmn02 a {
    display: block;
}

.list-cmn02 .cap {
    position: absolute;
    z-index: 2;
    top: 50%;
    visibility: hidden;
    width: 100%;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
    padding: 10px;
}

.list-cmn02 .category {
    display: block;
    margin-top: 15px;
}

.list-cmn02 .fig {
    position: relative;
    z-index: 1;
}

.list-cmn02 .fig:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 0;
    background: #c4cfcf;
}

.list-cmn02 .item:hover .cap {
    visibility: visible;
    opacity: 1;
}

.list-cmn02 .item:hover .fig:after {
    opacity: .8;
}

@media only screen and (max-width:1024px) {
    .list-cmn02 .item {
        width: 33.3333333%;
    }

    .list-cmn02 .item:nth-of-type(7),
    .list-cmn02 .item:nth-of-type(8) {
        display: none;
    }

    .under .list-cmn02 .item:nth-of-type(7),
    .under .list-cmn02 .item:nth-of-type(8) {
        display: block;
    }

  
}

@media only screen and (max-width:599px) {
    .list-cmn02 .item {
        width: 50%;
    }
      .list-cmn02 .cap {
        display: none !important;
    }
}

/*共通リスト３（メニューリスト）
「メニュー」*/
.list-cmn03 .item {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 14px 20px;
    border-bottom: 2px solid #5a3e3a;
}

.list-cmn03 .datattl {
    padding-right: 2em;
    font-size: 20px;
}

.list-cmn03 .ttlin {
    display: inline-block;
    max-width: 100%;
}

.list-cmn03 .data {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media only screen and (max-width:1024px) {
    .list-cmn03 .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px;
    }

    .list-cmn03 .datattl {
        width: 100%;
        padding-right: 0;
    }

    .list-cmn03 .data {
        margin-left: auto;
    }

    .list-cmn03 .datattl {
        font-size: 20px;
    }
}

@media only screen and (max-width: 599px) {
    .list-cmn03 .datattl {
        margin-bottom: 5px;
    }

    .list-cmn03 .datattl {
        font-size: 18px;
    }
}

/*共通リスト４（商品リスト）
「プロダクト」*/
.list-cmn04 .img {
    margin-bottom: 5px;
}

.list-cmn04 .datattl {
    font-weight: bold;
    margin-bottom: 5px;
}

.list-cmn04 .value {
    text-align: left;
}

/*共通リスト５（コラムリスト）
「コラム」*/
.list-cmn05 .img {
    margin-bottom: 5px;
}

.list-cmn05 .img a {
    position: relative;
}

.list-cmn05 .img a:before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all .5s;
    transition: all .5s;
    opacity: 0;
    background: #999;
}

.list-cmn05 .img a:after {
    font-size: 20px;
    font-style: italic;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    visibility: hidden;
    width: 100%;
    content: "VIEW MORE";
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.list-cmn05 .img a:hover {
    opacity: 1;
}

.list-cmn05 .img a:hover:before {
    visibility: visible;
    opacity: .8;
}

.list-cmn05 .img a:hover:after {
    visibility: visible;
    opacity: 1;
}

.list-cmn05 a {
    display: block;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-cmn05 .time {
    margin-bottom: 5px;
}

.list-cmn05 .datattl {
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
}

.list-cmn05 .category {
    text-align: right;
}

@media only screen and (max-width: 599px) {
    .list-cmn05 .time {
        /*        font-size: 14px;*/
    }

    .list-cmn05 .datattl {
        /*        font-size: 14px;*/
    }
}

/*共通リスト６（コラムリスト）
「トップ、コラム詳細」*/
.list-cmn06 .item {
    padding: 10px;
    background: #fff;
}

.list-cmn06 .fig,
.list-cmn06 .date {
    margin-bottom: 5px;
}

.list-cmn06 .datattl {
    font-weight: bold;
}

.list-cmn06 a {
    display: block;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}

/*ページネーション*/
.list-pagenation {
    text-align: center;
}

.list-pagenation .listitem {
    font-family: "garamond";
    font-size: 30px;
    display: inline-block;
    margin: 0 12px;
}

.list-pagenation a,
.list-pagenation .present {
    display: inline-block;
    text-align: center;
}

.list-pagenation .present {
    color: #fd548d;
}

.list-pagenation .prev a,
.list-pagenation .next a {
    position: relative;
    width: 100px;
    height: 30px;
    border-bottom: 2px solid #5a3e3a;
}

.list-pagenation .prev a:hover,
.list-pagenation .next a:hover {
    border-color: #5a3e3a;
}

.list-pagenation .prev a:hover:before,
.list-pagenation .next a:hover:before {
    background: #5a3e3a;
}

.list-pagenation .prev a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 2px;
    height: 20px;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background: #5a3e3a;
}

.list-pagenation .next a:before {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 2px;
    height: 20px;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background: #5a3e3a;
}

.list-pagenation a:hover {
    opacity: 1;
    color: #83a7be;
}

@media only screen and (max-width:1024px) {
    .list-cmn06 .item:nth-of-type(3) {
        display: none;
    }
}


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

    .list-pagenation .listitem {
        font-size: 24px;
        margin: 0 10px;
    }

    .list-pagenation .prev a,
    .list-pagenation .next a {
        width: 40px;
    }

    .list-pagenation .prev a:before {
        height: 15px;
    }

    .list-pagenation .next a:before {
        height: 15px;
    }

    .list-cmn06 .item:nth-of-type(3) {
        display: block;
    }
}

/*********************************************
    共通ボタン　btn-cmn
*********************************************/
.btn200 {
    max-width: 200px;
    margin-top: 50px;
}

@media only screen and (max-width:599px) {
    .btn200 {
        margin-top: 30px;
    }
}

/*ボタン１*/
.btn-cmn01 a {
    font-size: 24px;
    font-style: italic;
    position: relative;
    display: block;
    padding-bottom: 5px;
    border-bottom: 2px solid #5a3e3a;
}

.btn-cmn01 a:after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 2px;
    height: 30px;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background: #5a3e3a;
}

.btn-cmn01.-back a {
    text-align: right;
}

.btn-cmn01.-back a:after {
    right: inherit;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-cmn01.-small a {
    width: 200px;
}

.btn-cmn01.-small a:after {
    height: 20px;
}

.btn-cmn01.-smaller a {
    font-size: 14px;
    width: 120px;
}

.btn-cmn01.-smaller a:after {
    height: 10px;
}

.btn-cmn01.-right a {
    margin-left: auto;
}

/*********************************************
    モジュール（共通機能群）
*********************************************/
/*フォーム*/
.form dl {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.form dt {
    font-weight: bold;
    width: 270px;
    margin-right: 20px;
}

.form dt .reqw {
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
    color: red;
}

.form dd {
    width: 100%;
}

.form dd input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    border: none;
}

.form dd select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
}

.form dd input[type="radio"] {
    display: none;
}

.form dd input[type="radio"]+label {
    line-height: 200%;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 20px;
    padding-left: 20px;
}

.form dd input[type="radio"]+label::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    content: "";
    border: 1px solid #303841;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: inset 1px 1px 0 1px #999;
    box-shadow: inset 1px 1px 0 1px #999;
}

.form dd input[type="radio"]:checked+label::after {
    position: absolute;
    top: 7px;
    left: 3px;
    display: block;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: #303841;
}

.form dd input[type="radio"]:checked+label {
    -webkit-transition: .6s;
    transition: .6s;
}

.form dd input[type="number"] {
    width: 70px;
    margin-right: 10px;
}

.form dd textarea {
    font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 150px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
    border: none;
}

.formbtn li button {
    font-style: italic;
    position: relative;
    display: block;
    width: 200px;
    margin: 30px 0 0 auto;
    padding-bottom: 5px;
    text-align: left;
    border-right: none;
    border-top: none;
    border-left: none;
    border-bottom: 2px solid #5a3e3a;
    background: none;
}

.formbtn li button:after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 2px;
    height: 30px;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background: #5a3e3a;
}

.formbtn2 li.back button {
    margin: 30px auto 0 0;
    text-align: right;
}

.formbtn2 li.back button:after {
    right: inherit;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.formbtn li button:hover {
    cursor: pointer;
    opacity: .6;
}

.formbtn li {
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .form dl {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form dt {
        width: 100%;
        padding-bottom: 0;
        border-bottom: none;
    }

    .form dd {
        width: 100%;
    }
}

@media only screen and (max-width: 599px) {
    .formbtn li {
        width: 50%;
    }

    .formbtn li button {
        font-size: 14px;
        width: 140px;
        margin-top: 10px;
    }

    .formbtn2 li:nth-of-type(odd) button {
        margin-top: 10px;
    }

    .form dl {
        margin-bottom: 10px;
    }
}

/**************************************
    共通要素
**************************************/
/**
ヘッダー
header
*/
.header-contents {
    background: #e5e5e5;
}

.sitedisc {
    color: #5a3e3a;
    font-size: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
}

@media only screen and (max-width: 1024px) {
    .list-hinfo {
        padding-right: 18px;
    }
}

@media only screen and (max-width: 599px) {
    .list-hinfo {
        display: none;
    }

    .sitedisc {
        padding-right: 30px;
        font-size: 14px;
    }
}

.list-hinfo .item {
    padding: 7px 15px;
}

.list-hinfo .item a {
    color: #5a3e3a;
}

.list-hinfo .headspa {
    background: #70675e;
}

.list-hinfo .contact {
    /*    background: #565656;*/
}

.list-hinfo a {
    display: inline-block;
    color: #fff;
}

.list-hinfo .tel a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    margin-right: 10px;
}

.list-hinfo .tel {
    font-size: 20px;
}

.list-hinfo .contact a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold;
}

.insta a:before {
    font-family: "Font Awesome 5 Brands";
    content: '\f16d';
    color: #5a3e3a;
    font-weight: 900;
    font-size: 20px;
}

/**
グローバルナビ
nav-global
*/
.nav-global {
    padding: 20px 0;
}

.nav-global a {
    font-size: 18px;
    display: block;
}

.re_btn a {
    font-size: 18px;
}

.re_btn a {
    width: 120px;
    padding: 5px 0;
    background: #fd548d;
    color: #fff;
    text-align: center;
    display: block;
}

.nav-global .tel a {
    font-size: 18px;
    display: block;
    padding-right: 10px;
    border: 1px solid #e5e5e5;
}

.nav-global .tel a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    line-height: 25px;
    left: 0;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    content: "\f879";
    text-align: center;
}

.tb_on {
    display: none;
}

[data-element-id] .tb_on {
    display: block;
}

[data-element-id] .tb_on.logo {
    max-width: 300px;
    background: #473b39;
}

@media only screen and (max-width: 1024px) {
    .nav-global a {
        color: #fff;
    }

    .nav-global .item a {
        padding: 10px 0;
    }

    .nav-global .item.logo {
        max-width: 75%;
        margin-bottom: 0px;
    }

    .nav-global .tel a {
        text-align: center;
        border: none;
    }

    .nav-global .logo {
        order: -2;
    }

    .nav-global .re_btn {
        order: -1;
        margin-bottom: 40px;
    }

    .tb_on {
        display: block;
    }

    .re_btn {
        margin-top: 30px;
        margin-bottom: 6px;
    }

    .re_btn a {
        width: 80%;
        margin: 0 auto;
    }

    .nav-global .ac_telbtn a {
        font-size: 24px;
    }

    .nav-global .ac_telbtn a:before {
        font-family: "Font Awesome 5 Free";
        content: "\f095";
        font-weight: bold;
        margin-right: 10px;
    }

}

.gnav.fixed {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    cursor: pointer;
    background: #fff;
}

[data-element-id] .gnav.fixed {
    position: static !important
}

[data-element-id] #wrapper {
    padding-top: 0 !important
}

header {
    background: rgba(255, 255, 255, .8);
    position: relative;
    z-index: 10;
}


main {
    margin-top: -138px;
}

[data-element-id] main {
    margin-top: 0;
}

.under main {
    margin-top: 0px;
}

@media only screen and (max-width:1024px) {
    header {
        position: static;
    }

    main {
        margin-top: 0px;
    }
}

/**
フッター
footer
*/
@media only screen and (max-width: 599px) {
    .footer {
        padding-bottom: 30px;
    }
}

.footer-contents {
    padding: 40px 0;
    background: #5a3e3a;
}

.footer-contents .inner {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 599px) {
    .footer-contents .inner {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-contents .footer-logo {
        margin: 0 auto 40px;
        max-width: 200px;
    }
}

.footer-logo {
    font-size: 50px;
    line-height: 70%;
    text-align: center;
    letter-spacing: .2em;
    max-width: 430px;
}

.footer-logo .logoin {
    font-size: 10px;
    display: block;
    letter-spacing: .1em;
}

.nav-footer {
    margin-left: 30px;
}

.nav-footer .item {
    position: relative;
    margin-bottom: 10px;
    padding: 0 10px;
}

.nav-footer a {
    font-size: 18px;
    color: #fff
}

@media only screen and (max-width:1024px) {
    .nav-footer {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 599px) {
    .nav-footer {
        margin: 0 auto;
    }

    .nav-footer .item {
        width: 50%;
    }

    .nav-footer .item:nth-of-type(even):after {
        content: none;
    }

    .nav-footer a {
        font-size: 16px;
    }
}

.copy {
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
}

.footer-fixed {
    position: fixed;
    z-index: 50;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    background: rgba(43, 29, 27, 0.85);
}

[data-element-id] .footer-fixed {
    display: block;
    position: static;
}

@media only screen and (max-width: 599px) {
    .footer-fixed {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.footer-fixed .flex {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.footer-fixed .tel {
    width: 62%;
    text-align: center;
}

.footer-fixed .tel a {
    font-size: 18px;
    display: block;
    padding-right: 10px;
    color: #fff;
}

.footer-fixed .tel a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    line-height: 25px;
    left: 0;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    content: "\f879";
    text-align: center;
    border: 1px solid #fff;
}

.footer-fixed .contact {
    width: 38%;
    background: #947150;
}

.footer-fixed .contact a {
    display: block;
    padding: 5px;
    text-align: center;
    color: #fff;
}

.footer-fixed .contact a:before {
    margin-right: 5px;
    content: url(/import/tenant_1/160.16.132.16/html/images/01home/icon_header.png);
}

.totop {
    font-size: 24px;
    font-style: italic;
    position: fixed;
    z-index: 51;
    right: 20px;
    bottom: 80px;
    display: inline-block;
    width: 250px;
    cursor: pointer;
    -webkit-transform: translate(100%, 0) rotate(-90deg);
    -ms-transform: translate(100%, 0) rotate(-90deg);
    transform: translate(100%, 0) rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    border-bottom: 2px solid #828c8d;
    text-shadow: 1px 0 3px #fff, 0 1px 3px #fff, 1px 1px 3px #fff, -1px -1px 3px #fff;
}

.fixtel_btn {
    display: block;
    max-width: 200px;
    position: fixed;
    bottom: 60px;
    z-index: 11;
    -webkit-box-shadow: 4px 5px 6px -3px #b5b5b5;
    box-shadow: 4px 5px 6px -3px #b5b5b5;
    border-right: 4px solid #5a3e3a;
}

[data-element-id] .fixtel_btn {
    position: static;
}

.fixtel_btn a {
    background: #e2d0bf;
    padding: 5px;
    display: block;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 28px;
}

.fixtel_btn .telin {
    padding-right: 20px;
}

.fixtel_btn .telin:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    margin-right: 5px;
}

.totop:after {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 2px;
    height: 30px;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background: #828c8d;
}

@media only screen and (max-width: 599px) {
    .totop {
        font-size: 14px;
        right: 10px;
        width: 100px;
    }

    .totop:after {
        height: 15px;
    }

    .fixtel_btn {
        display: none !important;
    }
}


/**
サイドメニュー
side
*/
.side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.side .list {
    width: 100%;
    margin-bottom: 60px;
    padding: 20px 17px 40px;
    background: #dbe5d1;
}

.side .datatitle {
    font-size: 30px;
    font-style: italic;
    line-height: 100%;
    margin-top: -20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.side .data {
    border-bottom: 1px solid #fff;
}

.side a {
    display: block;
    padding: 8px 0;
}

@media only screen and (max-width: 1024px) {
    .side .list {
        width: 48%;
    }

    .list.-archive {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .list.-archive .datatitle {
        width: 100%;
    }

    .list.-archive .data {
        width: 48%;
    }
}

@media only screen and (max-width: 599px) {
    .side .list {
        width: 100%;
    }

    .list.-archive .data {
        width: 100%;
    }
}

/**
ボトムメニュー
bottom
*/
.bottom .list {
    width: 50%;
    padding: 20px 10px 40px 10px;
}

.bottom .list dl {
    width: 100%;
}

[data-element-id] .bottom .listin {
    display: block !important
}

.bottom .listin {
    display: none;
    width: 100%;
    padding-bottom: 3px;
    border-bottom: 2px solid #5a3e3a;
}

.bottom .list.-archive .listin .data {
    width: 48%;
}

.bottom .datatitle {
    font-size: 36px;
    font-style: italic;
    position: relative;
    margin-bottom: 2px;
    padding-bottom: 5px;
    border-bottom: 2px solid #5a3e3a;
    cursor: pointer;
}

.bottom .datatitle:before {
    font-family: "Font Awesome 5 Free";
    font-size: 24px;
    font-weight: 600;
    font-weight: bold;
    font-style: normal;
    position: absolute;
    top: 50%;
    right: 10px;
    content: "\f078";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bottom .datatitle:after {
    position: absolute;
    bottom: -6px;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    border-bottom: 2px dotted #5a3e3a;
}

.bottom .datatitle.is-parent:before {
    content: "\f077";
}

.bottom .data {
    border-bottom: 2px dotted #5a3e3a;
}

.bottom a {
    display: block;
    padding: 15px 0;
}

@media only screen and (max-width: 1024px) {
    .bottom .datatitle {
        font-size: 28px;
    }
}

@media only screen and (max-width: 599px) {
    .bottom .list {
        width: 100%;
    }
}

/*********************************************
    各個別コンテンツ
*********************************************/
/*全ページ共通*/
/**
トップページ
*/
/*ホームビジュアル*/
.homevisual {
    position: relative;
    height: 80vh;
}

.homevisual .inner {
    position: relative;
    height: 100%;
    max-width: 100%;
}

[data-element-id] .homevisual .ttl {
    position: absolute !important;
}

.homevisual .ttl {
    position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 150%;
    letter-spacing: .1em;
    text-shadow: 1px 1px 3px #333, 1px 1px 3px #333;
    background: rgba(43, 29, 27, 0.85);
    width: 40%;
    padding: 80px 20px;
}

[data-element-id] .homevisual .ttl:before {
    z-index: -1;
}

.homevisual .ttl:before {
    content: "";
    border: 2px #fff solid;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
}

.homevisual .ttl span {
    color: #fd548d;
}

.homevisual .left,
.homevisual .right {
    position: absolute;
    top: 50%;
    color: #fff;
}

.homevisual .img {
    /* position: relative; */
}

[data-element-id] .homevisual .img {
    position: relative;
}

.homevisual .img:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .1;
    background: #000;
}

.homevisual .img img {
    -o-object-position: 57% 50%;
    object-position: 57% 50%;
}

@media only screen and (max-width: 1024px) {
    .homevisual {
        height: 55vh;
    }
}

@media only screen and (max-width: 599px) {
    .homevisual .img {
        position: relative;
    }

    .homevisual .ttl {
        width: 100%;
        padding: 30px 20px;
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
    }

    .homevisual .img img {
        /*  -o-object-position: 84% 50%;
       object-position: 84% 50%; */
    }

    .homevisual .ttl:before {
        width: calc(100% - 0px);
        left: -2px;
    }

    .homevisual {
        height: auto;
    }
}

/*コンセプト（トップ）*/
.home01 {
    position: relative;
    z-index: 1;
    background: url(/upload/tenant_1/d83d524ce6633ba82e911a4e1fce1b4d.jpg) center center no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.home01:after {
    content: "";
    background: rgba(255, 253, 253, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.home01 .inner01 {
    position: relative;
    z-index: 1;
}

.home01 .ttl {
    margin-bottom: 30px;
}

.home01 .btn {
    margin-top: 40px;
}

.home01 .img {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 50vw;
    height: 70%;
}

[data-element-id] .home01 .img {
    position: relative;
    z-index: 2;
    margin-right: 0;
    margin-left: auto;
}

.home01 .img:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .7;
    background: #d4ecef;
}

@media only screen and (max-width:599px) {
    .home01 .img {
        position: relative;
        width: 100%;
        margin-top: 30px;
        z-index: 1;
    }

    .home01 {
        padding: 40px 0;
    }

    .home01 .img:after {
        opacity: 0;
    }

}

.homeproductbox .img {
    margin-bottom: 10px;
}

.homedskill .txt {
    padding-bottom: 20px;
    padding-top: 30px;
}

@media only screen and (max-width:1024px) {}

@media only screen and (max-width:599px) {
    .homedskill .txt {
        padding: 10px 0;
    }

    .homedskill .left {
        padding-bottom: 30px;
    }

    .homeproductbox .item:nth-of-type(4) {
        display: block;
    }

}

.homemenu {
    background: #5a3e3a;
}

.homemenu .inner02 {
    padding-top: 0;
}

.homemenubox .left .img {
    font-family: "object-fit: cover; object-position: 50% 50%;";
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}


.homemenubox .right {
    position: relative;
    z-index: 3;
    padding: 50px 30px 80px;
}

.mb3r {
    margin-bottom: 3rem;
}

.homemenubox .right * {
    color: #fff;
}

.btn_wrap {
    display: block;
    margin: 0 auto;
    width: 300px;
}

.btn_wrap .btn-c {
    border: 1px solid #fff;
    display: block;
    text-align: center;
    padding: 1.1rem 0;
    letter-spacing: .25rem;
    position: relative;
}

.btn-c:after {
    position: absolute;
    left: 95%;
    top: 50%;
    content: "";
    display: inline-block;
    width: 30px;
    height: 0;
    -webkit-transition: ease .40s;
    transition: ease .40s;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.homemenubox:nth-of-type(2n+2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.homemenubox:nth-of-type(2n+2) .right {
    background: #e2d0bf;
}

.homemenubox:nth-of-type(2n+2) .right * {
    color: #5a3e3a;
}

.homemenubox:nth-of-type(2n+2) .btn_wrap .btn-c {
    border: 1px solid #5a3e3a;
}

.homemenubox:nth-of-type(2n+2) .btn-c:after {
    border-right: 1px solid #5a3e3a;
    border-bottom: 1px solid #5a3e3a;
}

.homemenubox .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.homemenubox img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100% !important;
    max-height: 500px;
    min-width: 100%;
}

.homemenu {
    position: relative;
}

.homemenu .ttl-cmn02.-left {
    top: 30px;
    color: #fff;
    text-shadow: 0 0 6px #000;
    left: calc(50% - 600px);
}

.homemenu .ttl-cmn02 .ttlin {
    color: #fff;
}

@media only screen and (max-width:599px) {
    .homemenubox img {
        height: auto !important;
        max-height: 300px;
    }

    .homemenubox .w50 {
        margin: 0 auto;
    }

    .homemenubox .fs20 {
        font-size: 16px;
    }

    .homemenu {
        padding: 10px 10px;
    }

    .homemenubox .right {
        padding: 40px 20px;
    }

    .mb3r {
        margin-bottom: 20px;
    }
}




/*コラム（トップ）*/
.home04 {
    background: #dbe5d1;
    overflow: hidden;
}

.home04 .inner02 {
    overflow: hidden;
}

.ttl-cmn02.-right {
    right: 20px;
}

.home04 .btn {
    position: absolute;
    right: 15px;
    bottom: 0;
    -webkit-transform: rotate(90deg) translate(0%, 100%);
    -ms-transform: rotate(90deg) translate(0%, 100%);
    transform: rotate(90deg) translate(0%, 100%);
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}

@media only screen and (max-width:1024px) {
    .home04 .btn {
        right: 0px;
    }
}

@media only screen and (max-width:599px) {
    .home04 .btn {
        right: 0px;
    }
}

.btn-home04 {
    width: 100%;
    text-align: right;
}

.btn-home04 a {
    font-size: 24px;
    font-style: italic;
    position: relative;
    display: block;
    padding-top: 60px;
    padding-right: 30px;
    padding-bottom: 10px;
    border-right: 2px solid #5a3e3a;
    border-bottom: 2px solid #5a3e3a;
}

.btn-home04 a:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 2px;
    height: 30px;
    content: "";
    -webkit-transform: translate(100%, 0%) rotate(45deg);
    -ms-transform: translate(100%, 0%) rotate(45deg);
    transform: translate(100%, 0%) rotate(45deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    background: #828c8d;
}

@media only screen and (max-width:1024px) {
    .btn-home04 a {
        padding-top: 45px;
    }
}

@media only screen and (max-width: 599px) {
    .btn-home04 a {
        padding-top: 10px;
    }
}

/*スタイル（トップ）*/
.home05 .btn {
    margin-bottom: 30px;
    margin-left: 250px;
}

.home05 .inner02 {
    width: 100%;
    max-width: 100%;
}

.home05 .ttl-cmn02.-left {
    position: absolute;
    left: calc(50% - 600px);
    top: 0;
}

@media only screen and (max-width: 1300px) {
    .home05 .ttl-cmn02.-left {
        left: 50px;
    }
}

@media only screen and (max-width:1024px) {
    .home05 .ttl-cmn02.-left {
        left: calc(50% - 384px);
    }

    .home05 .btn {
        margin-left: 120px;
    }
}

@media only screen and (max-width: 827px) {
    .home05 .ttl-cmn02.-left {
        left: 30px;
    }
}

@media only screen and (max-width: 599px) {
    .home05 .btn {
        margin-left: 60px;
    }

    .home05 .ttl-cmn02.-left {
        left: calc(50% - 225px);
    }
}

@media only screen and (max-width: 475px) {
    .home05 .ttl-cmn02.-left {
        left: 14px;
    }
}


/*マップ（トップ）*/
.home06 .map {
    max-height: 600px;
}

/*店舗情報(トップ)*/
.home07box .ttl {
    margin-bottom: 30px;
}

.list-home07 {
    padding: 4px 0;
    border-top: 2px solid #6a6a6a;
    border-bottom: 2px solid #6a6a6a;
}

.list-home07 .item {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 15px;
    border-bottom: 2px dotted #ccc;
}

.list-home07 .item:first-of-type {
    border-top: 2px dotted #ccc;
}

.list-home07 .datattl {
    font-family: "garamond";
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 130px;
}

@media only screen and (max-width: 1024px) {
    .list-home07 .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 11px;
    }

    .list-home07 .datattl {
        width: 100%;
        margin-bottom: 5px;
    }

    .home07box .left,
    .home07box .right {
        width: 85%;
        margin: 5% auto;
    }
}

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

    .home07box .left,
    .home07box .right {
        width: 100%;
    }
}

/**
下層ページ共通要素
*/
/*トップビジュアル*/
.topvisual {
    position: relative;
}

.topvisual .inner {
    position: relative;
    height: 100%;
}

.topvisual .ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.topvisual .img {
    position: relative;
}

.topvisual .img:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .3;
    background: #000;
}

.topvisual .img img {
    height: 40%;
    min-height: 250px;

    -o-object-position: 57% 50%;
    object-position: 57% 50%;
}

.under .topvisual .img {
    max-height: 35vw;
    overflow: hidden;
}

@media only screen and (max-width: 599px) {
    .under .topvisual .img {
        max-height: 70vw;
    }
}

/**
下層ページ各コンテンツ
*/
/*アクセス*/
.list-access01 .item {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 10px 30px;
    border-bottom: 1px solid #fff;
}

.list-access01 .datattl {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 140px;
}

@media only screen and (max-width: 599px) {
    .list-access01 .item {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px;
    }

    .list-access01 .datattl {
        width: 100%;
    }
}

.access02 .map {
    width: calc(50vw + 400px);
    min-height: 280px;
    margin-left: auto;
}

@media only screen and (max-width: 1024px) {
    .access02 .map {
        width: calc(100% - 100px);
    }
}

@media only screen and (max-width: 599px) {
    .access02 .map {
        width: calc(100% - 50px);
    }
}

.list-access03 .item {
    position: relative;
    width: 33.333%;
    margin-bottom: 60px;
    padding: 0 40px;
}

.list-access03 .item:not(:first-of-type):after {
    position: absolute;
    top: 100px;
    left: -30px;
    width: 60px;
    height: 2px;
    content: "";
    background: #828c8d;
}

.list-access03 .item:not(:first-of-type):before {
    position: absolute;
    top: calc(100px - 15px);
    left: 30px;
    width: 2px;
    height: 15px;
    content: "";
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    background: #828c8d;
}

.list-access03 .img {
    margin-bottom: 10px;
}

@media only screen and (min-width: 1025px) {
    .list-access03 .item:nth-of-type(3n-1) {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 1024px) {
    .list-access03 .item {
        width: 50%;
    }

    .list-access03 .item:nth-of-type(even) {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 599px) {
    .list-access03 .item {
        width: 80%;
        margin-bottom: 0;
        padding: 40px 0;
    }

    .list-access03 .item:not(:first-of-type):after {
        top: -30px;
        left: 100px;
        width: 2px;
        height: 60px;
    }

    .list-access03 .item:not(:first-of-type):before {
        top: 15px;
        left: 100px;
    }

    .list-access03 .item:nth-of-type(even) {
        margin-top: 0;
        margin-left: auto;
    }
}

/*コンセプト*/
.concept01boxa .txt {
    font-size: 20px;
    text-align: right;
}

.concept01boxa .txtin {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-left: 60px;
}

.concept01boxa .txtin:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 2px;
    content: "";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #828c8d;
}

@media only screen and (max-width: 599px) {
    .concept01boxa .txt {
        font-size: 16px;
        text-align: left;
    }
}

/*商品*/
.list-product01 .item a {
    font-size: 24px;
    font-style: italic;
    position: relative;
    display: inline-block;
    width: 250px;
    margin: 0 30px 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #828c8d;
}

.list-product01 .item a:after {
    position: absolute;
    bottom: 0;
    display: block;
    width: 2px;
    height: 30px;
    content: "";
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    background: #828c8d;
}

.list-product01 .item:nth-of-type(even) a:after {
    right: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.list-product01 .item:nth-of-type(odd) a {
    text-align: right;
}

.list-product01 .item:nth-of-type(odd) a:after {
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*共通セクション１*/
.sec-cmn01 .secin {
    position: relative;
    padding-top: 80px;
}

/*スタイルギャラリー*/
.list-style01 .item {
    margin-bottom: 20px;
}

.list-style01 a {
    font-size: 24px;
    display: block;
    padding: 0 30px;
    text-align: center;
}

.list-style01 a:after {
    display: block;
    width: 30px;
    height: 2px;
    margin: 5px auto 0;
    content: "";
    background: #999;
}

.list-style01 {
    margin-top: 60px;
}

@media only screen and (max-width: 1024px) {
    .list-style01 .item {
        width: 50%;
    }

    .list-style01 a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 599px) {
    .list-style01 .item {
        width: 100%;
    }

    .list-style01 a {
        font-size: 18px;
    }

    .list-style01 {
        margin-top: 40px;
    }
}

/*スタイル詳細*/
.styledtl01box .category02 {
    margin-bottom: 30px;
}

.styledtl01box .disc02 {
    min-height: 100px;
}

.styledtl01box .list03 {
    margin-top: 10px;
}

.styledtl01box .list03 img {
    cursor: pointer;
}

.styledtl01box .block-txt02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.styledtl01box .list02 {
    margin-bottom: 20px;
}

.styledtl01box .block {
    margin-top: auto;
}

.styledtl01box .btn02 {
    margin-top: 20px;
}

.list-styledtl01b {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}

.list-styledtl01b .datattl {
    min-width: 170px;
}

.list-styledtl01b .datain {
    margin-left: 10px;
}

.block-styledtl01 {
    position: relative;
    padding-top: 40px;
}

.block-styledtl01 .blockin {
    padding: 20px 40px 20px 20px;
    background: #f4f4f4;
}

.block-styledtl01 .btn {
    margin-top: 10px;
    margin-left: auto;
}

@media only screen and (max-width: 1024px) {
    .styledtl02box .list-cmn02 .item:nth-of-type(4) {
        display: none;
    }
}

@media only screen and (max-width: 599px) {
    .list-styledtl01b {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-styledtl01b .datain {
        margin-left: 0;
    }

    .list-styledtl01b .datattl {
        width: 100%;
    }

    .styledtl02box .list-cmn02 .item:nth-of-type(4) {
        display: block;
    }
}

/*コンタクト*/
.contact01box .txt {
    padding-left: 250px;
}

.contact01box .form {
    padding-left: 80px;
}

@media only screen and (max-width: 1024px) {
    .contact01box .txt {
        padding-left: 0;
    }

    .contact01box .form {
        padding-left: 0;
    }
}

/*アーユルヴェーダ*/
.ayurveda01 .img {
    width: calc(50vw + 400px);
    max-width: 100%;
    margin-left: auto;
}

.ayurveda01 .img img {
    min-height: 200px;
    max-height: 500px;
}

.list-ayurveda02 .item {
    font-size: 20px;
    font-weight: bold;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    text-align: center;
}

.list-ayurveda02 .item:nth-of-type(1) {
    background: url(/import/tenant_1/160.16.132.16/html/images/11ayurveda/bg1.png) no-repeat center;
    background-size: contain;
}

.list-ayurveda02 .item:nth-of-type(2) {
    background: url(/import/tenant_1/160.16.132.16/html/images/11ayurveda/bg2.png) no-repeat center;
    background-size: contain;
}

.reserve_list {
    margin-top: 40px;
    margin-bottom: 40px;
}

.reserve_item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}

.reserve_item::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

.coupon01 {}

section.coupon01:nth-of-type(odd) .ttl,
section.coupon01:nth-of-type(even) .ttl {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg) translate(0%, -90%);
    -ms-transform: rotate(90deg) translate(0%, -90%);
    transform: rotate(90deg) translate(0%, -90%);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

section.coupon01:nth-of-type(odd) .box,
section.coupon01:nth-of-type(even) .box {
    width: 85%;
    margin-left: auto;
    padding: 40px 10px 60px 80px;
}

section.coupon01:nth-of-type(odd) .box:before,
section.coupon01:nth-of-type(even) .box:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: url(/upload/tenant_1/d83d524ce6633ba82e911a4e1fce1b4d.jpg) center center no-repeat;
    background-size: cover;
}

section.coupon01:nth-of-type(odd) .box:after,
section.coupon01:nth-of-type(even) .box:after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    content: "";
    background: rgba(255, 253, 253, 0.6);
}

section.coupon01:nth-of-type(odd) .box.-nobg:after,
section.coupon01:nth-of-type(even) .box.-nobg:after {
    content: none;
}

.coupon01 .ttl-cmn03.head {
    width: 85%;
    margin-left: auto;
    margin-bottom: 80px
}

section.coupon01 .txt {
    padding-left: 20px;
}

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

    section.coupon01:nth-of-type(odd) .inner,
    section.coupon01:nth-of-type(even) .inner {
        padding-top: 40px;
    }

    section.coupon01:nth-of-type(odd) .box,
    section.coupon01:nth-of-type(even) .box {
        width: 90%;
        padding: 40px 0 40px 10px;
    }
}

.alternate-cmn01 .skillbox_area section:nth-of-type(even) .box {
    width: 100%;
    padding: 0px 10px 60px 10px;
}

.skillbox_area {
    margin-bottom: 60px;
}

@media only screen and (max-width: 599px) {
    .skillbox_area {
        margin-bottom: 0px;
    }
}

.faq1 {
    margin-top: 80px;
}

.salon_wrap .home06,
.salon_wrap .home07 {
    display: none
}

.complete .btn-cmn01.-small a {
    margin-left: auto;
    margin-right: auto;
}


/*------shop infoのスライド-------*/
.shop_slide {
    width: 90%;
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.shop_slide img {
    width: 100%;
}

.shop_slide .uk-slidenav-position {
    position: static;
    overflow: visible;
}

.shop_slide .uk-slideshow {
    position: relative;
    overflow: hidden;
    height: auto !important;
}

.shop_slide .uk-slideshow:after {
    padding-top: 54%;
    content: '';
    display: block;
}

.shop_slide .uk-slideshow li {
    position: absolute;
    top: 0;
}

.shop_slide .uk-slidenav-position .uk-slidenav {
    display: block !important;
    color: #5a3e3a;
}

.shop_slide .uk-slidenav-position .uk-slidenav-previous {
    left: -50px;
}

.shop_slide .uk-slidenav-position .uk-slidenav-next {
    right: -50px;
}

@media only screen and (max-width: 599px) {
    .shop_slide .uk-slidenav {
        font-size: 36px;
        width: 36px;
        height: 36px;
    }

    .shop_slide .uk-slidenav-position .uk-slidenav-previous {
        left: -5px;
    }

    .shop_slide .uk-slidenav-position .uk-slidenav-next {
        right: -5px;
    }

    .shop_slide .uk-slidenav-position .uk-slidenav {
        /* color: #fff */
        text-shadow: 1px 0 3px #fff, 0 1px 3px #fff, 1px 1px 3px #fff, -1px -1px 3px #fff;
    }
}


/*------salonページのスライド-------*/
.concept_slide {
    position: relative;
    overflow: hidden;
}

.concept_slide img {
    width: 100%;
}

.concept_slide .uk-slidenav-position {
    position: relative;
    overflow: hidden;
}

.concept_slide .uk-slidenav-position:after {
    padding-top: 46%;
    content: '';
    display: block;
}

.concept_slide .uk-slideshow {
    position: absolute;
    top: 0;
}

/*------ラ・シュシュの技術ページ　画像の箇所調整-------*/
.technique_imgarea {
    width: calc(50vw + 400px);
    max-width: 100%;
    margin-left: auto;
}

.technique_img_item {
    width: 25%;
}

@media only screen and (max-width: 599px) {
    .technique_img_item {
        width: 50%;
    }

    .technique_imgarea {
        width: 85%;
    }
}
