@charset "utf-8";

/* ============================================================
   共通リセット・ベース
   ============================================================ */
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   2カラムレイアウト（PC）
   ============================================================ */
.wrap {
    overflow: hidden;
    background-color: #fff;
}

/* 左カラム：TOP（スライダー） */
.con-left {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: calc(100% - 499px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* 左カラムの黒オーバーレイ */
.con-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    pointer-events: none;
}

/* 左カラム：下層ページ（静止画） */
.con-left--sub {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: calc(100% - 499px);
}

.con-left--sub img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* 右カラム：コンテンツ */
.con-right {
    max-width: 499px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    overflow-x: hidden;
    position: relative;
    text-align: left;
    background-color: #fff;
}

/* 旧site-styleの text-align: center を右カラム内でリセット
.con-right * {
    text-align: left !important;
} */

/* 中央揃えが必要な要素は個別に指定 */
.con-right .content_heading,
.con-right .title h2,
.con-right .title p,
.con-right .footer-in,
.con-right .footer-btn,
.con-right .sns,
.con-right .instagram_button,
.con-right .view-more,
.con-right .lead-title,
.con-right .lead-logo-area,
.con-right .fabric-text,
.con-right table th {
    text-align: center !important;
}

/* ============================================================
   スライダー（TOP FV）
   ============================================================ */
.swiper-up,
.swiper-down {
    width: 50%;
    height: 100vh;
}

/* 慣性のある動きに見せる：一気に動いてゆっくり収まるイージング */
.swiper-up .swiper-wrapper,
.swiper-down .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.slider-item {
    width: 100%;
    height: 100vh;
}

.slider-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* ============================================================
   ヘッダー・ナビゲーション
   ============================================================ */

/* ハンバーガーボタン（スクロール追従） */
.hamburger {
    display: block;
    z-index: 999;
    position: fixed;
    top: 40px;
    right: 20px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background-color: #333;
    border-radius: 4px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* FVを超えてスクロールしたら半透明に */
.hamburger.is-scrolled {
    opacity: 0.5;
}
.hamburger.is-scrolled:hover,
.hamburger.active {
    opacity: 1;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    left: 6px;
    background: #fff;
    transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 30px; }

.hamburger.active span:nth-child(1) {
    top: 20px;
    transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-315deg);
}

/* PAGE TOPボタン（ExUnitプラグイン生成）：ハンバーガーメニューとデザインを統一 */
.page_top_btn {
    width: 42px !important;
    height: 42px !important;
    background-color: #333 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    border: none !important;
    right: 20px !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.page_top_btn:hover {
    opacity: 0.85 !important;
    transform: translateY(-3px);
}

/* ナビ */
.header-nav {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.5s;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}

.header-nav ul {
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.header-nav ul li {
    padding: 8px 0;
}

.header-nav ul li:last-child {
    padding-bottom: 0;
}

.header-nav ul li a {
    width: 400px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.header-nav ul li a small {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.header-nav ul a:hover {
    opacity: 0.85;
    transform: translateX(10px);
}

.header-nav ul a:hover small {
    color: #CEAE52;
}

.header-nav.active {
    transform: translateY(0%);
}

/* ============================================================
   TOPページ：ファーストビュー
   ============================================================ */
.first-view {
    width: 100%;
    height: 100vh;
    background-image: url(../img/fv.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

/* TOP FV：動画を1回だけ再生し、終わったらフェードアウトして背景画像を見せる */
.first-view-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease;
}

.first-view-video.is-faded {
    opacity: 0;
}

/* TOPページFVスライダー（右カラム） */
.swiper-fv {
    width: 100%;
    height: 100vh;
}

.swiper-fv .swiper-slide {
    width: 100%;
    height: 100vh;
}

.swiper-fv .slider-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* FVオーバーレイ（ロゴ・ボタン） */
.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.fv-overlay h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    pointer-events: auto;
}

.fv-overlay .banner-in {
    pointer-events: auto;
}

.fv-overlay .th-img {
    pointer-events: auto;
}



/* FV画像：最初ボケていて徐々に鮮明になる */
.first-view {
    animation: fvBgBlur 1.2s ease 0s forwards;
    filter: blur(12px);
    transform: scale(1.03);
}

@keyframes fvBgBlur {
    0% {
        filter: blur(12px);
        transform: scale(1.03);
    }
    100% {
        filter: blur(0px);
        transform: scale(1);
    }
}

/* Blogページのfv-blogはロゴ画像のみのシンプルな見せ方にしたいので、ぼかしアニメーションなし */
.first-view.fv-blog {
    animation: none;
    filter: none;
    transform: none;
}

/* FVキャッチコピー：文字アニメーション */
.fv-catchcopy .fv-char {
    display: inline-block;
    opacity: 0;
    animation: fvCharFadeIn 0.6s ease forwards;
}

@keyframes fvCharFadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fv-copy-wrap {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: serif;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.25);
}
.fv-copy-wrap .fv-catchcopy {
    margin: 0;
    font-size: 32px;
}
/* 第2回指示書 4-1対応: TOPファーストビューのサブコピー */
.fv-subcopy {
    margin: 0.8em 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-shadow: 0px 0px 6px rgba(0,0,0,0.25);
    white-space: nowrap;
}


/* TOP FVロゴ */
.fv-logo {
    width: 70%;
    display: block;
    margin: 0 auto;
}
.th-img {
    position: absolute;
    width: 40%;
    top: 40px;
    left: 20px;
}

/* 予約バナー（追従） */
.banner-in {
    position: fixed;
    z-index: 10;
    right: 1vw;
    bottom: 10%;
}

.calendar img {
    display: block;
    width: 50px;
}

/* ============================================================
   TOPページ：CONCEPTセクション
   ============================================================ */
.concept {
    background-color: #93b6cb;
    padding-bottom: 150px;
    color: #fff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}



.concept-in,
.product-in,
.fabric-in,
.news-in,
.blog-in {
    padding-left: 5%;
    padding-right: 5%;
}

.concept-lead {
    padding: 40px 0;
}

.lead-title {
    text-align: center;
    font-size: 22px;
}

.lead-logo-area {
    text-align: center;
}

.lead-logo {
    margin: 30px 0;
    width: 60%;
}

.concept .title h2 {
    color: #fff;
}

.concept-txt img {
    margin-bottom: 24px;
}


.concept-txt {
    padding-bottom: 60px;
}

.concept-txt .text-01 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.concept-txt .text-02,
.concept-txt .text-03,
.concept-txt .text-04,
.concept-txt .text-05 {
    margin-bottom: 16px;
}

.img-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.img-flex img { width: 48%; }
.img-flex .img-01 { margin-top: 48px; }


/* TOPページのみ：conceptの斜め背景 */
.concept--top::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 0 0 40px 600px;
    border-color: transparent transparent #fff transparent;
}

/* ============================================================
   TOPページ：PRODUCTカード（背景スライダー型）
   ============================================================ */
.product-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.product-card {
    position: relative;
    display: block;
    width: 100%;
    height: 560px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

/* 背景スライダー */
.product-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-card-bg .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* COATカード：動画背景（swiper画像の上に重ねてループ再生） */
.product-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

/* 黒オーバーレイ */
.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* テキスト前面：上中下の3分割 */
.product-card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 32px 36px;
    box-sizing: border-box;
}

/* 上部：英字見出し（中央・太め） */
.product-card-en {
    font-size: 1.3rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff !important;
    margin: 0;
    font-weight: 700 !important;
    text-align: center !important;
}

/* 下部ブロック */
.product-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* キャッチ：大きく左寄せ・太め */
.product-card-catch {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    line-height: 1.4;
    color: #fff !important;
    text-align: left !important;
}

/* コピー：小さく左寄せ */
.product-card-copy {
    font-size: 1.3rem !important;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 0 16px;
    text-align: left !important;
}

/* MORE：右下・太め */
.product-card-more {
    font-size: 1.2rem !important;
    letter-spacing: 0.2em;
    color: #fff !important;
    font-weight: 700 !important;
    display: block;
    text-align: right !important;
}

.product-card:hover .product-card-overlay {
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.4s ease;
}

/* ============================================================
   TOPページ：PRODUCTセクション
   ============================================================ */
.product {
    padding-bottom: 96px;
    position: relative;
}



.swiper-slide {
    transition: opacity 0.2s;
}

.swiper-slide h3 {
    font-size: 24px;
    margin: 8px 0;
}

.swiper-slide h3::before {
    content: "";
    padding-right: 10px;
    border-left: 5px solid #CEAE52;
}

.swiper-slide img { width: 100%; }

.swiper-slide .text-01 { width: 95%; }

.num {
    position: absolute;
    top: -1%;
    left: 1%;
    font-size: 45px;
    color: #CEAE52;
    font-weight: 600;
}

.swiper-slide .view-more {
    width: 50%;
    margin: 0 auto;
    border: solid 1px #333;
    padding: 4px 0;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #000;
}

/* ============================================================
   TOPページ：FABRICセクション
   ============================================================ */
.fabric {
    background-color: #f1f1f1;
    width: 100%;
    box-sizing: border-box;
}

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

.fabric-text .text-01 { margin-bottom: 8px; }
.fabric-text .text-02 { margin-bottom: 24px; }

.fabric-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 48px;
}

.fabric-flex span {
    width: 20%;
}

.fabric-flex img {
    width: 100%;
    object-fit: contain;
}

.fabric-img { width: 100%; }

/* ============================================================
   TOPページ：NEWSセクション
   ============================================================ */
.news {
    border-bottom: solid 1px #999;
    padding-bottom: 40px;
}

.news-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: solid 1px #f1f1f1;
}

.news-title time {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.news-title h3 { font-size: 22px; }

.view-more {
    text-align: center;
    margin-top: 24px;
}

.view-more a {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.view-more a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #333;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-more a:hover::after {
    transform: scaleX(0.35);
    transform-origin: left;
}

/* ============================================================
   TOPページ：BLOGセクション
   ============================================================ */
.blog { padding-bottom: 40px; }

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

.blog-con {
    text-align: left;
    margin-bottom: 64px;
}

.blog-con img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog-con h3 {
    font-size: 22px;
    margin: 16px 0;
}

.blog-con .view-more { text-align: left; }

/* ============================================================
   共通：タイトル
   ============================================================ */
.title {
    text-align: center;
    line-height: 1.2;
    padding: 40px 0 48px 0;
}

.title h2 {
    font-weight: 400;
    font-size: 32px;
    color: #CEAE52;
}

.title p {
    font-size: 16px;
    margin-top: 8px;
}


/* ============================================================
   下層ページ FV（右カラム・1枚画像）
   ============================================================ */
.sub-fv {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.sub-fv-img,
.sub-fv-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    animation: fvBgBlur 1.2s ease 0s forwards;
    filter: blur(12px);
    transform: scale(1.03);
}

.sub-fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0) 75%);
}

.sub-fv-overlay .fv-logo {
    width: 60%;
    display: block;
}
.sub-fv-overlay  h1 {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: serif;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.25);
}

.sub-fv-overlay .th-img {
    position: absolute;
    width: 40%;
    top: 40px;
    left: 20px;
    pointer-events: auto;
}

/* ============================================================
   下層ページ：共通コンテンツ
   site-style.cssから引き継ぎ
   ============================================================ */
.sub-page {
    width: 100%;
}

#fixedpage {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.sub-content {
    padding-bottom: 60px;
}



#pc_onecolumncontents {
    font-size: 14px;
    transition: all 0.3s ease 0s;
}

.pc_1200_wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 10px;
    overflow: hidden;
}

/* セクション見出し */
.onecolumn_content_wrap {
    padding: 60px 0 0;
    margin: 60px auto 0;
    width: 100%;
    border-top: 1px #000 solid;
    position: relative;
}

.onecolumn_content_wrap:first-child {
    margin: 80px auto 0;
}

.content_heading {
    font-family: 'Noto Serif JP', serif;
    color: #333;
    background-color: #fff;
    font-size: 32px;
    font-weight: normal;
    line-height: 1;
    position: absolute;
    top: -0.5em;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 30px;
    min-width: 120px;
    max-width: 80%;
    display: inline-block;
}

.content_heading span {
    display: block;
}

.content_heading_ruby {
    font-size: 10px;
    margin: 0.5em auto 0;
}

/* ブログピックアップ */
.new_post_list_foot_wrap {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.new_post_list_foot {
    width: 25%;
    min-height: 200px;
    height: auto;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.new_post_list_foot_img {
    width: 100%;
    height: auto;
}

.new_post_list_foot_img img {
    width: 100%;
    height: auto;
}

.new_post_list_foot_title {
    margin: 15px auto;
    padding: 0 10px;
    font-size: 14px;
    font-weight: bold;
}

/* Instagram */
.instagram-list-2020 {
    max-width: 1360px;
    width: 100%;
    margin: 30px auto;
    padding: 0 1%;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.instagram-list-2020 li {
    width: 20%;
    border: 1px solid #ececec;
    line-height: 0;
    margin: 0 2% 15px;
    box-sizing: border-box;
}

.instagram-list-2020 li img {
    width: 100%;
    height: auto;
}

/* Instagram ボタン */
.instagram_button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    margin: 16px 0;
}

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

.footer-in {
    color: #fff;
    padding: 40px 5%;
    text-align: center;
}

.footer-logo {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.footer-txt {
    margin: 32px 0;
    text-align: center;
}

.footer-txt .text-01 { margin-bottom: 16px; }

.footer-btn a {
    display: block;
    width: 100%;
    color: #333;
    background-color: #fff;
    font-weight: bold;
    padding: 16px 0;
    font-size: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.footer-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.footer-btn a:hover {
    opacity: 1;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.footer-btn a:hover::before {
    transform: scaleX(1);
}

.footer-btn a:active {
    transform: scale(0.98);
}

.sns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 24px 0;
    gap: 16px;
}

.sns img { width: 40px; }

.footer-info {
    font-size: 13px;
    line-height: 1.8;
    margin: 24px 0 16px;
    opacity: 0.85;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

/* ============================================================
   PC狭幅（1025px〜1366px）：左カラムのスライダーを横並び→上下2段に変更
   con-rightが固定499pxのため、幅が狭くなるとswiper-up/downが
   縦長の細いストライプになってしまう。ある程度狭くなったら
   左右並び(50%/50%)から上下並び(100%/50vh)に切り替えて見栄えを保つ。
   ============================================================ */
@media (max-width: 1366px) and (min-width: 600px) {

    .con-left {
        flex-direction: column;
    }

    .swiper-up,
    .swiper-down {
        width: 100%;
        height: 50vh;
    }

    .slider-item,
    .slider-img {
        height: 50vh;
    }

}

/* ============================================================
   スマホ用シングルカラム（〜599px）
   con-rightはPC設計幅(499px)前提のため、1024pxのような広い
   ブレークポイントで全幅化すると崩れる。ここはスマホ実機幅(599px)に
   合わせ、それより広い間は2カラム構成(スライダーは上下2段)を維持する。
   ============================================================ */
@media (max-width: 599px) {

    .con-left,
    .con-left--sub {
        display: none;
    }

    .con-right {
        max-width: 100%;
        width: 100%;
    }

    .concept-in,
    .product-in,
    .fabric-in,
    .news-in,
    .blog-in {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hamburger {
        right: 5vw;
    }

    

    

    .blog-con img {
        height: 300px;
    }

    .footer-in {
        padding: 40px 5%;
    }

    .footer-logo { width: 60%; }

    .new_post_list_foot { width: 48%; }

}

/* ============================================================
   スマートフォン（〜599px）
   ============================================================ */
@media (max-width: 599px) {

    .header-nav ul li a {
        width: 300px;
        font-size: 16px;
    }

    .header-nav ul li a small {
        font-size: 11px;
    }

    
/* TOP FVロゴ */
.fv-logo {
    width: 70%;
    display: block;
    margin: 0 auto;
}
    .lead-logo { width: 80%; }

    .concept-txt .text-01 { font-size: 20px; }

    .blog-con img { height: 200px; }

    .footer-in {  }

    .footer-logo { width: 70%; }

    .content_heading {
        font-size: 20px;
        min-width: 40%;
        width: 60%;
    }

    .content_heading_ruby {
        font-size: 8px;
    }

    .new_post_list_foot {
        width: 48%;
        min-height: auto;
    }

}
/* □□□□□□□□□□□□□□□□□□□□ 共通部分↓ □□□□□□□□□□□□□□□□□□□□ */
* {
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
	font-size: 62.5%;
}

@import 'https://fonts.googleapis.com/css?family=Noto+Serif';



/*FV全画面表示設定*/	
	.page_topimg .bx-viewport,
	#mainimage_slider_sp {
		height: calc(95vh - 60px) !important;
		aspect-ratio: 1 / 1 !important;
	}

	#mainimage_slider_sp img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
/*終わり*/


	/* 旧site-style bodyリセット（新テーマのbodyに統合済み） */
	body {
	text-align: left;
	word-break: break-word;
}


/*□□□□□□□□□□ テキスト選択時 □□□□□□□□□□*/
::selection {
	background: #ededed;
}
::-moz-selection {
 background:#ededed;
}
/*□□□□□□□□□□ リンク □□□□□□□□□□*/
a {
	color: #222;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}
a:active {
	color: #222;
}
a:visited {
	color: #525953;
}
a:hover {
	color: #CCC;
}
a img {
	transition: all 0.3s ease 0s;
}
a:hover img {
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: alpha(opacity=90);
}
.bx-wrapper .bx-controls-direction a {
	transition: all 0s ease 0s !important;
}
/*□□□□□□□□□□ 画像を選択させない □□□□□□□□□□*/
img {
	border: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}


img {
	max-width: 100%;
	height: auto;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/*□□□□□□□□□□ その他共通 □□□□□□□□□□*/
hr {
	border: none;
}
table {
	border-collapse: collapse;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.attention {
	color: #F33;
}
.clear {
	clear: both;
}
/*□□□□□□□□□□ 画像にドットを重ねる↓ □□□□□□□□□□*/
.dot {
	width: 100%;
	min-height: 200px;
}
.dot img {
	width: 100%;
	min-height: 200px;
	z-index: 0;
	position: relative;
	line-height: 0;
}
.dot img:after {
	width: 100%;
	min-height: 100%;
	height:100%;
	display: block;
	content: ' ';
	background-image: url(../site-img/dot_w_pc.png);
	background-repeat: repeat;
	z-index: 100;
	position: absolute;
	border-radius: 16px;
}
/*□□□□□□□□□□ 画像にドットを重ねる↑ □□□□□□□□□□*/

/*□□□□□□□□□□ 固定ページ-リンク先ヘッダをマイナス □□□□□□□□□□*/






.hidden_pc {
	
}
.hidden_sp {
	display: none;
}

/*□□□□□□□□□□ margin/padding □□□□□□□□□□*/


/* margin-top */
.mar_t_15 {
	margin-top:8px !important;
}
.mar_t_30 {
	margin-top:15px !important;	
}
.mar_t_60 {
	margin-top:30px !important;	
}
.mar_t_90 {
	margin-top:45px !important;	
}
.mar_t_120 {
	margin-top:60px !important;	
}
.mar_t_150 {
	margin-top:75px !important;	
}
.mar_t_180 {
	margin-top:90px !important;	
}
/* margin-right */
.mar_r_15 {
	margin-right:8px !important;	
}
.mar_r_30 {
	margin-right:15px !important;	
}
.mar_r_60 {
	margin-right:30px !important;	
}
.mar_r_90 {
	margin-right:45px !important;	
}
.mar_r_120 {
	margin-right:60px !important;	
}
.mar_r_150 {
	margin-right:75px !important;	
}
.mar_r_180 {
	margin-right:90px !important;	
}
/* margin-bottom */
.mar_b_15 {
	margin-bottom:8px !important;	
}
.mar_b_30 {
	margin-bottom:15px !important;	
}
.mar_b_60 {
	margin-bottom:30px !important;	
}
.mar_b_90 {
	margin-bottom:45px !important;	
}
.mar_b_120 {
	margin-bottom:60px !important;	
}
.mar_b_150 {
	margin-bottom:75px !important;	
}
.mar_b_180 {
	margin-bottom:90px !important;	
}
/* margin-left */
.mar_l_15 {
	margin-left:8px !important;	
}
.mar_l_30 {
	margin-left:15px !important;	
}
.mar_l_60 {
	margin-left:30px !important;	
}
.mar_l_90 {
	margin-left:45px !important;	
}
.mar_l_120 {
	margin-left:60px !important;	
}
.mar_l_150 {
	margin-left:75px !important;	
}
.mar_l_180 {
	margin-left:90px !important;	
}
/* padding-top */
.pad_t_15 {
	padding-top:8px !important;	
}
.pad_t_30 {
	padding-top:15px !important;	
}
.pad_t_60 {
	padding-top:30px !important;	
}
.pad_t_90 {
	padding-top:45px !important;	
}
.pad_t_120 {
	padding-top:60px !important;	
}
.pad_t_150 {
	padding-top:75px !important;	
}
.pad_t_180 {
	padding-top:90px !important;	
}
/* padding-right */
.pad_r_15 {
	padding-right:8px !important;	
}
.pad_r_30 {
	padding-right:15px !important;	
}
.pad_r_60 {
	padding-right:30px !important;	
}
.pad_r_90 {
	padding-right:45px !important;	
}
.pad_r_120 {
	padding-right:60px !important;	
}
.pad_r_150 {
	padding-right:75px !important;	
}
.pad_r_180 {
	padding-right:90px !important;	
}
/* padding-bottom */
.pad_b_15 {
	padding-bottom:8px !important;	
}
.pad_b_30 {
	padding-bottom:15px !important;	
}
.pad_b_60 {
	padding-bottom:30px !important;	
}
.pad_b_90 {
	padding-bottom:45px !important;	
}
.pad_b_120 {
	padding-bottom:60px !important;	
}
.pad_b_150 {
	padding-bottom:75px !important;	
}
.pad_b_180 {
	padding-bottom:90px !important;	
}
/* padding-left */
.pad_l_15 {
	padding-left:8px !important;	
}
.pad_l_30 {
	padding-left:15px !important;	
}
.pad_l_60 {
	padding-left:30px !important;	
}
.pad_l_90 {
	padding-left:45px !important;	
}
.pad_l_120 {
	padding-left:60px !important;	
}
.pad_l_150 {
	padding-left:75px !important;	
}
.pad_l_180 {
	padding-left:90px !important;	
}


/*□□□□□□□□□□□□□□□□□□□□ 共通部分↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ PC版追記↓ □□□□□□□□□□□□□□□□□□□□*/



/* メインコンテンツの外枠 */
#pc_maincontents_out {
	width: 100%;
    margin: 0 0 0 0 !important;
}
#pc_bloglist_out {
	width: 100%;
	margin: 0 0 0 0 !important;
}
#pc_maincontents {
	padding: 10px;
	margin: 0 0 90px;
	background-color: #f6f6f6;
	font-size: 14px;
	font-size: 1.4rem;
	background-image: url(../site-img/pc/maincontents_bg_t.png), url(../site-img/pc/maincontents_bg_b.png);
	background-position: left top, left bottom;
	background-repeat: no-repeat , no-repeat;
	background-size: 100% auto;
	transition: all 0.3s ease 0s;
}
#pc_onecolumncontents {
	font-size: 14px;
	font-size: 1.4rem;
	transition: all 0.3s ease 0s;
}
#pc_bloglist {
	margin: 0 0 100px 0px;
	transition: all 0.3s ease 0s;
}




#contents_area {
  /*min-width: 660px;
	max-width: 1180px; */
	margin: 0 auto;
	padding: 0;
}

#contents_area_post {
	/*width:96%;*/
	max-width:1200px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
#contentsarea article {
	
	
}


.pc_1200_wrap {
	width: 100%;
	margin: 0 auto;
	padding: 0 4%;
	box-sizing: border-box;
	overflow: hidden;
}
/* PC用の背景*/
#pc_body_bg {
	padding: 60px 0 90px;
}
#page_top1200 {
	width: 100%;
	min-height: 200px;
	margin: 0 auto;
	padding: 0;
	position:relative;
}
#page_top1200:after {
	content:'';
	background-image: url(../site-img/dot_pc.png);
	background-repeat: repeat;
	background-position: center;
	position:absolute;
	top:0;
	left:0;
}
/*真ん中のロゴ */
#page_top1200 #logo {
	width: auto;
	height:auto;
	padding:1%;
    max-width: 150px;
    max-height: 150px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}
/* PC用の上部イメージ背景（固定ページ・新着Single） */
#page_topimg {
	min-height: 200px;
	padding: 0;
	position:relative;
}
/* PC用の上部イメージ背景（ブログ） */
#page_topimg_blog {
	min-height: 200px;
	background-color: #FFF;
	background-image: url(../site-img/dot_pc.png), url(../site-img/pc/top_bg_b.gif);
	background-repeat: repeat, no-repeat;
	background-position: center center;
	background-size: auto, 1200px auto;
	box-shadow: 0 0 4px rgba(0,0,0,0.2) inset;
	padding: 60px 0 0;/*ナビ分*/
}
/* PC用の上部イメージ画像（固定ページ・投稿共通） */
.page_topimg_title1 {
	width: 100%;
	margin: 0 auto;
	padding: 40px 0;
}
	

/*□□□□□□□□□□□□□□□□□□□□ ヘッダメニュー↓ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□ 上部固定の枠-PC/Tablet↓ □□□□□□□□□□*/


/*□□□□□□□□□□ 上部固定の枠-SP↓ □□□□□□□□□□*/

#head_wrap {
	width: 100%;
	height: 60px;
	padding: 10px 1%;
	background-color: #333;
	background-repeat:repeat;
	background-size: auto 50px;
	background-position: top;
	box-sizing: border-box;
	position: fixed;
	top:0;
	z-index: 9999;
}
#head_navi_wrap {
	max-width:1260px;
	margin: 0 auto;
	position: relative;

}
#head_navi1 {
	list-style:none;
	padding: 0;
	margin:0 auto;
}
#head_navi_left {
	margin:0;
	height:40px;
	width:auto;
	position: absolute;
	top: 0;
	left: 0;
}
#head_navi_left img {
	height:40px;
	width:auto;
}
#head_navi_logo {
	padding:0;
	max-height:40px;
}
#head_navi_logo img {
	max-height:40px;
	width: auto;
}
#head_navi_logo a {
	opacity:1;
	filter:alpha(opacity=100);
	-ms-filter: “alpha( opacity=100 )”;
}
/*□□□□□□□□□□ ハンバーガー-SP↓ □□□□□□□□□□*/
.head_navi_hum {
	margin:0;
	height:36px;
	width:auto;
	position: absolute;
	top: 0;
	right: 0;
	list-style:none;
	font-size:12px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	border:1px solid #fff;
	border-radius:6px;
}
.head_navi_hum label {
	padding:10px 10px 10px 32px;
	cursor: pointer;
	display: block;
	float: left;
	height: 16px;
	position: relative;
	z-index: 0;

	transition: all 0.3s ease 0s;
}
.head_navi_hum label:before {
	box-shadow: #fff 0 7px 0;
	margin: 0 0 0 -22px
}
.head_navi_hum label:after {
	bottom: 10px;
}
.head_navi_hum label::before, .head_navi_hum label:after {
	height: 2px;
	width: 16px;
	border-radius: 20px;
	background: #fff none repeat scroll 0 0;
	display: block;
	content: '';
	position: absolute;
	margin: 0 0 0 -22px
}

/*□□□□□□□□□□□□□□□□□□□□ ヘッダメニュー↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ ヘッダ（アコーディオンメニュー内）↓ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□ アコーディオンメニュー-PC/Tablet↓ □□□□□□□□□□*/


/*□□□□□□□□□□ アコーディオンメニュー-SP↓ □□□□□□□□□□*/

header h1 {
	font-size: 10px;
	font-size: 1.0rem;
	font-weight: normal;
	width: 96%;
	margin: auto;
	z-index: 1000;
	padding: 15px 0 0;
}
header h1 span {
	display: block;
}
#subtitle {
	font-size: 10px;
	font-size: 1.0rem;
	margin: 15px auto 0;
	padding: 0 2%;
	position: relative;
	/* マーキー */
	overflow: hidden;
	overflow: -webkit-marquee;
	display: -wap-marquee;
	-wap-marquee-loop: infinite;
	white-space: nowrap; 
}
header a {
	color: #666;
}
header a:visited {
	color: #666;
}
#site_menu {
	background-color: rgba(255,255,255,0.9);
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	position: fixed;
	top: 60px;
	width: 100%;
	z-index: 8999;
	border-bottom: 1px solid #999;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
/*□□□□□ 閉じるボタン □□□□□*/
#menu_close {
	clear: both;
	font-size: 10px;
	font-size: 1.0rem;
	border: 1px solid #333;
	border-radius: 100px;
	color: #333;
	margin: 15px auto;
	padding: 6px 1%;
	position: relative;
	width: 88%;
	cursor: pointer;
	display: none !important;
}
#menu_close label {
	cursor: pointer;
	display: block;
	height: 100%;
	width: 100%;
}
#site_menu input.on-off.on-off[type="checkbox"] {
	display: none;
}
#site_menu input.on-off[type="checkbox"] + div {
	box-shadow: 0 4px 0 #666;
	padding: 1%;
	margin-top: -6000px;
	min-height: 100%;
	transition: all 0.8s ease 0s;
	width: 98%;
	z-index: 1000;
}
#site_menu input.on-off[type="checkbox"]:checked + div {
	margin-top: 0px;
	overflow: hidden;
	height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: rgba(000, 000, 000, 0.7);
}


/*□□□□□□□□□□ アコーディオンメニュー-縦横別↓ □□□□□□□□□□*/

#site_menu nav {
	margin: 0 auto;
}
#site_menu ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
    align-items: center;
	list-style: none;
	margin:15px auto;
	
}
#site_menu li {
	text-align: center;
	padding: 10px 0;
	color: #fff  !important;
}
#site_menu li a {
    width: 300px;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
	font-family: 'Noto Serif JP', serif;
	color: #fff  !important;
}
#site_menu li rt {
	font-size: 10px;
	font-size: 1.0rem;
	font-weight: normal;
}



#site_menu nav {
	margin: 0 auto;
	width:98%;
}
#site_menu ul {
	font-size: 10px;
	font-size: 18px;
	display: table;
	list-style: none;
	margin: 20px auto;
}
#site_menu li {
	color: #FFF;
	display: table-cell;
	text-align: center;
	border-left: 1px solid #000;
	width: 10%;
}
#site_menu li:last-child {
	border-right: 1px solid #000;
}
#site_menu li a {
	color: #FFF;
	padding: 12px 0px;
	display: block;
	font-weight: normal;
	background-color: none;
	transition: all 0.3s ease 0s;
}
#site_menu li a:hover {
	background-color: rgba(115,160,150,0.3);
}
#site_menu li rt {
	display:none;
}

/*□□□□□□□□□□□□□□□□□□□□ ヘッダ（アコーディオンメニュー内）↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□Fixed Page（固定ページ・投稿ページと一部共有）↓ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□ 固定ページ枠↓ □□□□□□□□□□*/

/*□□□□□□□□□□ 固定ページ枠↑ □□□□□□□□□□*/


/*□□□□□□□□□□  固定ページコンテンツ（1カラム）-article/section □□□□□□□□□□*/

/*□□□□□ 横幅一杯のdiv↓ □□□□□*/
.pc_full_wrap {
	margin:0 auto 60px;
	/*line-height:0; 施術メニューに干渉するのでカット*/
	border-top:1px dotted #ccc;
	border-bottom:1px dotted #ccc;
	background-color:f6f6f6;
}
.bgcolor_red {
	border-top:1px dotted #e55b54 !important;
	border-bottom:1px dotted #e55b54 !important;
	background-color:#fef7f8;
}
.bgcolor_orange {
	border-top:1px dotted #e58454 !important;
	border-bottom:1px dotted #e58454 !important;
	background-color:#fffdfc;
}
.bgcolor_yellow {
	border-top:1px dotted #e5d254 !important;
	border-bottom:1px dotted #e5d254 !important;
	background-color:#fefdf7;
}
.bgcolor_green {
	border-top:1px dotted #8ee554 !important;
	border-bottom:1px dotted #8ee554 !important;
	background-color:#fbfef7;
}
.bgcolor_blue {
	border-top:1px dotted #54b0e5 !important;
	border-bottom:1px dotted #54b0e5 !important;
	background-color:#f7fbfe;
}
.bgcolor_green img {
	width: 100%;
	max-width: 1200px !important;
	height: auto;
}
/*□□□□□ 横幅一杯のdiv↑ □□□□□*/

/*□□□□□ article毎の見出し↓ □□□□□*/


.content_heading {
	font-family: 'Noto Serif JP', serif;
	color: #333;
	background-color: #fff;
	font-size: 2.0rem;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	top: -0.5em;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0 16px;
	min-width: 40%;
	width: 80%;
	display: inline-block;
	text-align: center;
}
.content_heading span {
	display: block;
}
.content_heading_ruby {
	font-size: 8px;
	font-size: 0.8rem;
	margin: 0.6em auto 0;
}

/*□□□□□ article毎の見出し↑ □□□□□*/

/*□□□□□ article/section内の設定↓ □□□□□*/
.onecolumn_content_wrap {
	padding: 60px 0 0;
	margin: 60px auto 0;
	width: 100%;
	border-top:1px #000 solid;
	position:relative;
}

.onecolumn_content_wrap:first-child {
	margin: 180px auto 0;
}

.onecolumn_content_wrap .pc_full_wrap img {
	max-width: 100%;
	height: auto;
}
/*
.onecolumn_content_wrap section p {
	margin:0 auto 3em;
	max-width:720px;
} ※一部テキストの邪魔になるのでdivに変更
*/
.onecolumn_content_text {
	max-width:720px;
	margin: 0 auto 60px;
}
.onecolumn_content_text p {
	margin:0 auto 2em;
}
.onecolumn_content_text p:last-child {
	margin:0 auto 0 !important;
	max-width:720px;
}
.onecolumn_content_text p a {
	text-decoration: underline;
}
.onecolumn_content_text p strong {
	font-weight: normal;
	color: #de6262;
}
.onecolumn_content_wrap section .top_h2 {/* section内のはじめにh2を入れる場合使用 */
	margin: 0 0 60px;
}



.onecolumn_content_wrap section h1 {
	color: #455A64;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	border-bottom:1px dotted #ccc;
	margin: 0 auto 30px;
	padding: 0;
	text-align: center;
}

/* A-2対応: 見出しタグをH1からH2/H3へ整理する際、元のH1の見た目をそのまま保つためのクラス */
.onecolumn_content_wrap section .section-title-preserved {
	color: #455A64;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	border-bottom:1px dotted #ccc;
	margin: 0 auto 30px;
	padding: 0;
	text-align: center;
}
.onecolumn_content_wrap section  h2 {
	color: #454545;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: normal;
	border-bottom:1px dotted #ccc;
	margin: 0 auto 30px;
	padding: 0;
}




/*□□□□□□□□□□□□□□□□□□□□ フッタ(Footer)↓ □□□□□□□□□□□□□□□□□□□□*/


.footer {
		
		background-color: #111;
		font-family: 'Noto Serif JP', serif;
		font-size: 16px;
	}
	
	.footer-in {
		max-width: 650px;
		width: 100%;
		margin: 0 auto;
		color: #fff;
		text-align: center;
	}
	
	.footer-logo {
		width: 50%;
	}
	
	.footer-txt {
		margin: 32px 0;
		text-align: center;
	}
	
	.footer-txt .text-01 {
		margin-bottom: 16px;
	}
	
	.footer-btn a {
		display: block;
		width: 100%;
		color: #333;
		background-color: #fff;
		font-weight: bold;
		padding: 16px 0;
		font-size: 18px;
	}
	
	.sns {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 80px 0 40px 0;
		gap: 16px;
	}
	
	.sns img {
		width: 40px;
	}

/*□□□□□□□□□□□□□□□□□□□□ スマホ用フッタ固定（電話）↓ □□□□□□□□□□□□□□□□□□□□*/
@media only screen and (max-device-width:480px) and (orientation : portrait) {
#fixed_tel {
	position: fixed;
	bottom: 0;
	z-index: 10;
	line-height: 0;
	width: 100%;
}
}

@media only screen and (max-device-width:480px) and (orientation : landscape) {
#fixed_tel {
	display: none;
}
}


/*□□□□□□□□□□□□□□□□□□□□ index_TOPメイン（コンセプトのスライダー）↓ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□ TOPメインイメージ-PC/Tablet↓ □□□□□□□□□□*/

/*□□□□□□□□□ TOPメインイメージ-PC/Tablet↑ □□□□□□□□□□*/

/*□□□□□□□□□ TOPメインイメージ-SP↓ □□□□□□□□□□*/

#mainimage , #mainimage_sp {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	background-color: #999;
}
#mainimage_slider:after , #mainimage_slider_sp:after {
	content: "";
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	padding: 60px 0 0;
	position: absolute;
	background-image: url(../site-img/dot_mainimage_pc.png);
	background-repeat: repeat;
	background-position: left top;
	top: 0;
	left: 0;
	overflow:hidden;
}

/*□□□□□□□□□ TOPメインイメージ-SP↑ □□□□□□□□□□*/

/*□□□□□□□□□ TOP予約ボタン-PC/Tablet↓ □□□□□□□□□□*/

/*□□□□□□□□□ TOP予約ボタン-PC/Tablet↑ □□□□□□□□□□*/

/*□□□□□□□□□ TOP予約ボタン-SP↓ □□□□□□□□□□*/

.index_top_button {
	position:absolute;
	bottom:30px;
	left:0;
	right:0;
	font-size: 14px !important;
	font-size: 1.4rem !important;
	font-weight: normal;
	color: #f0eceb !important;
	background-color: rgba(0,0,0,0.5);
	text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.5);
	max-width: 88%;
	margin: auto !important;
	text-align: center!important;
	border: solid 1px #FFF;
	border-radius: 100px;
}
.index_top_button a {
	color: #f0eceb !important;
	display: block;
	padding: 10px 1%;
}

/*□□□□□□□□□ TOP予約ボタン-SP↑ □□□□□□□□□□*/

/*□□□□□□□□□ TOP予約ボタン-PC/Tablet↓ □□□□□□□□□□*/

/*□□□□□□□□□ TOP予約ボタン-PC/Tablet↑ □□□□□□□□□□*/

/*□□□□□□□□□ TOP予約ボタン-SP↓ □□□□□□□□□□*/

#index_top {
	top:0;
	left:0;
	right:0;
	margin:auto;
	padding:0 1%;
	transition: all 0.6s ease 0s;
	box-sizing: border-box;
}
 /*□□□□□ 真ん中のロゴ □□□□□*/
#index_top #logo {
	min-width: 200px;
	min-height: 200px;
	max-width: 300px;
	max-height: 300px;
	padding:1%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto auto;
   	box-sizing: border-box;
}

/*□□□□□ 右上のロゴ □□□□□*/
#index_campaign_button {
	display: none;
}
#campaign_button {
	display: none;
}

/*□□□□□□□□□ TOP予約ボタン-SP↑ □□□□□□□□□□*/

/*□□□□□□□□□□□□□□□□□□□□ index_TOPメイン（コンセプトのスライダー）↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ コンテンツ下のブログ新着投稿一覧↓ □□□□□□□□□□□□□□□□□□□□*/



.new_post_list_foot_wrap {
	margin: 0 auto;
	padding: 0;
	width:96%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    align-items: top;
}
.new_post_list_foot {
	width: 48%;
	height: auto;
	border: 1px solid #fff;
	box-sizing: border-box;
	margin-bottom: 5px;
}
.new_post_list_foot a {
}
.new_post_list_foot_img {
	width: 100%;
	height: auto;

}
.new_post_list_foot_img img {
	width: 100%;
	height: auto;
	border-radius:4px;
}
.new_post_list_foot_title {
	margin: 5px auto;
	padding:  0 10px;
	font-size: 12px;
	font-size: 1.2rem;
}

/*□□□□□□□□□□□□□□□□□□□□ コンテンツ下のブログ新着投稿一覧↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ コンテンツ下の新着情報一覧↓ □□□□□□□□□□□□□□□□□□□□*/


#site_news section {
border-bottom:1px dotted #ccc;
}
#site_news dl {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0;
	border-top:1px dotted #ccc;
}
#site_news dt {
	padding: 4px 1%;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
	color: #FFF;
	background-color: #666;
	border-radius: 50px;
	width: auto;
	display: block;
}
#site_news dd {
	margin: 15px auto 0;
	font-size: 13px;
	font-size: 1.3rem;
	width:auto;
	text-align:center;
}

/*□□□□□□□□□□□□□□□□□□□□ コンテンツ下の新着情報一覧↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ page-news（新着情報の投稿ページ）↓ □□□□□□□□□□□□□□□□□□□□*/


#single_news section h1 {
	color: #454545;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: normal;
	border-bottom:1px dotted #ccc;
	max-width: 1180px;
	margin: 0 auto 80px;
	padding: 0 10px 10px;
}
.single_news_info {
	font-size: 12px;
	font-size: 1.2rem;
	list-style: none;
	margin:0 auto;
}
.single_news_cat {
	width: 15%;
	color: #fff;
	background-color: #666;
	padding: 5px 10px;
	border-radius: 0 0 8px 8px;
	margin: -80px 0 0 5px;
	float: left;
}
.single_news_date {
	width: 15%;
	color: #fff;
	background-color: #666;
	padding: 5px 10px;
	border-radius: 0 0 8px 8px;
	margin: -80px 5px 0 0;
	float: right;
}

.single_news_content_wrap {
	padding: 90px 0;
	margin: 90px auto 0;
	width: 100%;
	border-top:1px #000 solid;
	position:relative;
}

#single_news_content {
	max-width:720px;
	margin: 0 auto;
	text-align: left;
	font-size: 14px;
	font-size: 1.4rem;
}
#single_news_content h1 {
	clear: both;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: normal;
	color: #434343;
	text-align: left;
	width: auto;
	margin: 1em 0 !important;
	padding: 6px 1%;
	border-bottom: 1px solid #999;
}
#single_news_content h1:first-letter {
	color: #EC075D;
}
#single_news_content h2 {
	clear: both;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: normal;
	color: #434343;
	text-align: left;
	background-color: #e9e9e9;
	border: 1px solid #ccc;
	border-radius: 8px;
	width: auto;
	margin: 1em 0;
	padding: 6px 1%;
}
#single_news_content .top_h2 {/* section内のはじめにh2を入れる場合使用 */
	margin: 0 0 30px;
}
#single_news_content h3 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: normal;
	color: #434343;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	background-color: #fff;
	background-image: url(../site-img/h3_bg.png);
	background-repeat: no-repeat;
	background-position: left 0.2em center;
	background-size: 1em;
	width: auto;
	text-align: left;
	margin: 1em 0;
	padding: 6px 1% 6px 1.6em;
	clear: both;
}
.single_news_content_wrap img {
	max-width:100%;
	height:auto;
}

.single_news_content_wrap section p {
	margin:0 auto 3em;
	max-width:720px;
}
.single_news_content_wrap section p:last-child {
	margin:0 auto 0 !important;
}
.single_news_content_wrap section p a {
	text-decoration: underline;
}
.single_news_content_wrap section p strong {
	font-weight: normal;
	color: #de6262;
}

.single_news_content_wrap section table {
	background-color: #fff;
	width: 96%;
	margin: 0 2%;
	text-align: left;
}
.single_news_content_wrap section table th {
	color: #434343;
	background-color: #e9e9e9;
	border: 1px solid #ccc;
	padding: 20px 10px;
	font-weight: normal;
	width: 25%;
}
.single_news_content_wrap section table td {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 20px 10px;
}
.single_news_content_wrap section img.size-full {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 1%;
	background-color: #fff;
	box-shadow: 0px 0px 1px rgba(0,0,0,0.2);
	box-sizing: border-box;
}
.single_news_content_wrap section .point_img {
	max-width: 200px;
	min-width: 20%;
	float: left;
	padding: 0 10px 10px 0;
	margin: 0 !important;
}
.single_news_content_wrap section .right_img {
	float: right;
	width: 25%;
	margin: 0 5px 10px;
	padding: 10px;
	border-left: 1px solid #eee;
}
.single_news_content_wrap section .left_img {
	float: left;
	width: 25%;
	margin: 0 5px 10px;
	padding: 10px;
	border-right: 1px solid #eee;
}
#single_news_content ul {
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	background-color: #fff;
	padding: 1.5em 0.5em;
	margin: 30px 0;
	border-radius: 4px;
	color: #333;
	border: 1px #ddd solid;
	box-sizing: border-box;
	text-align: left;
}
#single_news_content ul li {
	border-bottom: 1px dashed #ccc;
	margin: 0 1.5em;
	padding: 0.5em 1em 0.5em 0.5em;
}
#single_news_content ul li:first-child {
	border-top: 1px dashed #ccc;
}
#single_news_content ol {
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	background-color: #fff;
	padding: 1.5em 0.5em;
	margin: 30px 0;
	border-radius: 4px;
	color: #333;
	border: 1px #ddd solid;
	box-sizing: border-box;
	text-align: left;
}
#single_news_content ol li {
	border-bottom: 1px dashed #ccc;
	margin: 0 1.5em;
	padding: 0.5em 1em 0.5em 0.5em;
}
#single_news_content ol li:first-child {
	border-top: 1px dashed #ccc;
}


/*□□□□□□□□□□□□□□□□□□□□index（PC・SP共通メインコンテンツ）↓ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□□□□□□□□□□□ コンセプト↓ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□ コンセプト枠-PC/Tablet↓ □□□□□□□□□□*/

/*□□□□□□□□□□ コンセプト枠-PC/Tablet↑ □□□□□□□□□□*/

/*□□□□□□□□□□ コンセプト枠-SP↓ □□□□□□□□□□*/

#mainconcept_wrap {
	padding: 0;
	margin: 90px auto 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.mainconcept {
	position: relative;
	display: block;
	color: #fff;
	text-shadow: 0 1px 0 #000;
	padding:60px 4%;
	z-index: 2;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	box-sizing: border-box;
}
#concept_wrap {
	padding: 0;
	margin: 0 auto 90px;
	width: 100%;
	display: block;
}
.concept {
	position: relative;
	padding:60px 4% 150px;
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
}
.concept_text {
	display: block;
	width: 80%;
	max-width: 600px;
	margin: 0 auto ;
	position: inherit;
	z-index: 2;
}
.concept_line {
	width: 100%;
	max-width: 640px;
	margin: 15px auto ;
	position: inherit;
	z-index: 2;
}
.mainconcept h1 , .concept h2 {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: normal;
	margin-bottom: 15px;
	position: inherit;
	margin: auto;
	width: 100%;
	z-index: 2;
	text-align: center;
}

/* A-2対応: .mainconcept内のH1をH2へ変更する際、元の見た目を保つためのクラス */
.mainconcept .mainconcept-title-preserved {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: normal;
	margin-bottom: 15px;
	position: inherit;
	margin: auto;
	width: 100%;
	z-index: 2;
	text-align: center;
}
.mainconcept p , .concept p {
	margin-bottom: 2em;
}
.mainconcept p:last-child , .concept p:last-child  {
	margin-bottom: 0em;
}

/*□□□□□□□□□□ コンセプト枠-SP↑ □□□□□□□□□□*/

/*□□□□□□□□□□ メインコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ indexコンセプト↓ □□□□□□□□□□*/
#index_concept1 {
	background-image: url(../site-img/index_concept1.jpg);
}
#index_concept1:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
#index_concept2 {
	background-image: url(../site-img/index_concept2.jpg);
}
#index_concept2:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,49,63,0.65);
}
#index_concept3 {
	background-image: url(../site-img/index_concept3.jpg);
}
#index_concept3:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(101,42,29,0.65);
}
#index_concept4 {
	background-image: url(../site-img/index_concept4.jpg);
}
#index_concept4:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(97,90,30,0.65);
}
#index_concept5 {
	background-image: url(../site-img/index_concept5.jpg);
}
#index_concept5:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(28,44,0,0.65);
}
/*□□□□□□□□□□ indexコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ weddingコンセプト↓ □□□□□□□□□□*/
#wedding_concept1 {
	background-image: url(../site-img/wedding/wedding_concept1.jpg);
}
#wedding_concept1:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
#wedding_concept2 {
	background-image: url(../site-img/wedding/wedding_concept2.jpg);
}
#wedding_concept2:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,49,63,0.65);
}
#wedding_concept3 {
	background-image: url(../site-img/wedding/wedding_concept3.jpg);
}
#wedding_concept3:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(101,42,29,0.65);
}
#wedding_concept4 {
	background-image: url(../site-img/wedding/wedding_concept4.jpg);
}
#wedding_concept4:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(97,90,30,0.65);
}
#wedding_concept5 {
	background-image: url(../site-img/wedding/wedding_concept5.jpg);
}
#wedding_concept5:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(28,44,0,0.65);
}
/*□□□□□□□□□□ weddingコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ businessコンセプト↓ □□□□□□□□□□*/
#business_concept1 {
	background-image: url(../site-img/business/business_concept1.jpg);
}
#business_concept1:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
#business_concept2 {
	background-image: url(../site-img/index_concept2.jpg);
}
#business_concept2:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,49,63,0.65);
}
#business_concept3 {
	background-image: url(../site-img/index_concept3.jpg);
}
#business_concept3:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(101,42,29,0.65);
}
#business_concept4 {
	background-image: url(../site-img/index_concept4.jpg);
}
#business_concept4:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(97,90,30,0.65);
}
#business_concept5 {
	background-image: url(../site-img/index_concept5.jpg);
}
#business_concept5:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(28,44,0,0.65);
}
/*□□□□□□□□□□ businessコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ casualコンセプト↓ □□□□□□□□□□*/
#casual_concept1 {
	background-image: url(../site-img/casual/casual_concept1.jpg);
}
#casual_concept1:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
#casual_concept2 {
	background-image: url(../site-img/casual/casual_concept2.jpg);
}
#casual_concept2:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,49,63,0.65);
}
#casual_concept3 {
	background-image: url(../site-img/casual/casual_concept3.jpg);
}
#casual_concept3:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(101,42,29,0.65);
}
#casual_concept4 {
	background-image: url(../site-img/casual/casual_concept4.jpg);
}
#casual_concept4:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(97,90,30,0.65);
}
#casual_concept5 {
	background-image: url(../site-img/casual/casual_concept5.jpg);
}
#casual_concept5:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(28,44,0,0.65);
}

/*□□□□□□□□□□ casualコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ About usコンセプト↓ □□□□□□□□□□*/
#about_us_concept {
	background-image: url(../site-img/about_us_concept.jpg);
}
#about_us_concept:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}

/*□□□□□□□□□□□□□□□□□□□□ コンセプト↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ 取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□ index取扱商品↓ □□□□□□□□□□*/
#index_products {
	background-image: -moz- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -webkit- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -ms- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-position: center top , left top , center center;
	background-repeat: no-repeat , repeat , no-repeat;
	background-size: auto , auto , cover;
}

/*□□□□□□□□□□ index取扱商品-PC/Tablet↓ □□□□□□□□□□*/

/*□□□□□□□□□□ index取扱商品-PC/Tablet↑ □□□□□□□□□□*/

/*□□□□□□□□□□ index取扱商品-SP↓ □□□□□□□□□□*/

.index_products_list {
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items: top;
	margin:0 auto;
}
.index_products_list dl {
	width:46%;
	margin:0 2% 30px;
	padding: 0 0 3.5rem;
	box-sizing: border-box;
	position: relative;
}
.index_products_list dt {
	margin:0 auto 15px;
}
.index_products_list dd.products_name {
	background-color: #CFD8DC;
	border-radius:4px;
	margin:0 auto 15px;
	padding:4px 1%;
	font-weight:bold;
	text-align: center;
}
.index_products_list dd.products_desc {
	font-size: 12px;
	font-size: 1.2rem;
	text-align: justify;
	width:96%;
	margin:0 auto 30px;
}
.index_products_list dd.products_link a {
	position:absolute;
	bottom: 0;
	font-size: 12px;
	font-size: 1.2rem;
	background-color:#FFC107;
	border-radius:4px;
	color:#222;
	display:block;
	width:98%;
	padding:4px 1%;
	box-sizing: border-box;
	box-shadow: 0 1px 0 #6D5006;
	margin: -1px auto 1px;
}
.index_products_list dd.products_link a:hover {
	background-color:#FFD671;
	color:#666;
	box-shadow: 0 0 0 #6D5006;
	margin: 0px auto 0;
}
.index_products_list dd p {
	margin-bottom: 1.4em !important;
}

/*□□□□□□□□□□ index取扱商品-SP↑ □□□□□□□□□□*/

/*□□□□□□□□□□□□□□□□□□□□ 取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ Business取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/
#business_products {
	background-image: -moz- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -webkit- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -ms- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-position: center top , left top , center center;
	background-repeat: no-repeat , repeat , no-repeat;
	background-size: auto , auto , cover;
}

/*□□□□□□□□□□ Business取扱商品-PC/Tablet↓ □□□□□□□□□□*/

/*□□□□□□□□□□ Business取扱商品-PC/Tablet↑ □□□□□□□□□□*/

/*□□□□□□□□□□ Business取扱商品-SP↓ □□□□□□□□□□*/

.business_products_list {
	justify-content: center;
	align-items: top;
	margin:0 auto;
}
.business_products_list dl {
	width:100%;
	margin:0 auto 30px;
	padding: 0 ;
	box-sizing: border-box;
	position: relative;
	border-bottom:1px solid #ccc;
}
.business_products_list dt {
	margin:0 auto 15px;
}
.business_products_list dd.products_name {
	background-color: #CFD8DC;
	border-radius:4px;
	margin:0 auto 15px;
	padding:4px 1%;
	font-weight:bold;
	text-align: center;
}
.business_products_list dd.products_desc {
	text-align: justify;
	width:96%;
	margin:0 auto 30px;
}
.business_products_list dd.products_link a {
	position:absolute;
	bottom: 0;
	font-size: 12px;
	font-size: 1.2rem;
	background-color:#FFC107;
	border-radius:4px;
	color:#222;
	display:block;
	width:98%;
	padding:4px 1%;
	box-sizing: border-box;
	box-shadow: 0 1px 0 #6D5006;
	margin: -1px auto 1px;
}
.business_products_list dd.products_link a:hover {
	background-color:#FFD671;
	color:#666;
	box-shadow: 0 0 0 #6D5006;
	margin: 0px auto 0;
}
.business_products_list dd p {
	margin-bottom: 1.4em !important;
}

/*□□□□□□□□□□ Business取扱商品-SP↑ □□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ Casual取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/
#casual_products {

}


.casual_products_list  {
	display:block;
	margin: 0 auto 30px;
	overflow:hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
.casual_products_list_text {
	width: 90%;
	padding: 10px 0 30px;
	margin: auto;
	box-sizing: border-box;
	z-index: 1;
}
.casual_products_list_text h1 {
	font-size: 20px !important;
	font-size: 2.0rem !important;
	font-weight: bold !important;
	text-align: center;
	margin: 0 auto 5px !important;
	border-bottom:1px solid #fff;
}

/* A-2対応: 商品名見出しをH1からH3へ変更する際、元の見た目を保つためのクラス */
.casual_products_list_text .product-title-preserved {
	font-size: 20px !important;
	font-size: 2.0rem !important;
	font-weight: bold !important;
	text-align: center;
	margin: 0 auto 5px !important;
	border-bottom:1px solid #fff;
}
.casual_products_list_price {
	color:#455A64;
	text-align: center !important;
	margin: 0 auto 30px !important;
}
.casual_products_list_text p {
	margin: 0 auto 1.5em !important;
	padding: 0;
	text-align: left;
}

.casual_products_list_img {
	width:100%;
    position: relative;
    background-color: #000;
    line-height: 0;
}
.casual_products_list_img img {
    width: 100%;
    height: auto;
}
#casual_jacket:before , #casual_pants:before, #casual_best:before {
	content: "";
}

/*□□□□□□□□□□□□□□□□□□□□ 仕立ての特徴（画像+テキスト）↓ □□□□□□□□□□□□□□□□□□□□*/
.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 4%;
	max-width: 720px;
	margin: 0 auto 2em;
}
.feature-item-img {
	flex: 0 0 20%;
	width: 20%;
	line-height: 0;
}
.feature-item-img img {
	width: 100%;
	height: auto;
	display: block;
}
.feature-item-text {
	flex: 1;
}
.feature-item-text p {
	margin: 0;
}
.feature-item-text strong {
	display: block;
	margin-bottom: 0.4em;
	font-family: "Noto Sans JP", sans-serif;
}
/*□□□□□□□□□□□□□□□□□□□□ 仕立ての特徴（画像+テキスト）↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ wedding取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/
#wedding_products {
	background-image: -moz- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -webkit- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -ms- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-position: center top , left top , center center;
	background-repeat: no-repeat , repeat , no-repeat;
	background-size: auto , auto , cover;
}


.wedding_products_list {
	justify-content: center;
	align-items: top;
	margin:0 auto;
}
.wedding_products_list dl {
	width:100%;
	margin:0 auto 30px;
	padding: 0 ;
	box-sizing: border-box;
	position: relative;
	border-bottom:1px solid #ccc;
}
.wedding_products_list dt {
	margin:0 auto 15px;
}
.wedding_products_list dd.products_name {
	background-color: #CFD8DC;
	border-radius:4px;
	margin:0 auto 15px;
	padding:4px 1%;
	font-weight:bold;
	text-align: center;
}
.wedding_products_list dd.products_price {
	text-align: center;
	width:96%;
	margin:0 auto 15px;
}
.wedding_products_list dd.products_desc {
	text-align: justify;
	width:96%;
	margin:0 auto 30px;
}
.wedding_products_list dd.products_link a {
	position:absolute;
	bottom: 0;
	font-size: 12px;
	font-size: 1.2rem;
	background-color:#FFC107;
	border-radius:4px;
	color:#222;
	display:block;
	width:98%;
	padding:4px 1%;
	box-sizing: border-box;
	box-shadow: 0 1px 0 #6D5006;
	margin: -1px auto 1px;
}
.wedding_products_list dd.products_link a:hover {
	background-color:#FFD671;
	color:#666;
	box-shadow: 0 0 0 #6D5006;
	margin: 0px auto 0;
}
.wedding_products_list dd p {
	margin-bottom: 1.4em !important;
}


/*□□□□□□□□□□□□□□□□□□□□ Business取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/
.business_fabric_wrap {
	min-height:320px;
	max-width: 720px;
	margin: 30px auto;
	padding:15px;
	box-sizing: border-box;
	color: #454545;
	background-image: url(../site-img/fabric_bg.png);
}
.business_fabric_wrap h2 {
	font-family: 'Noto Serif', serif;
	font-size: 26px !important;
	font-size: 2.6rem !important;
	margin: 0 auto 10px !important;
	border-bottom:1px dotted #454545 !important;
	text-align: center;
}
.business_fabric_price {
	font-family: 'Noto Serif', serif;
	font-size: 22px;
	font-size: 2.2rem;
}
.business_fabric_price span {
	font-size: 50%;
}

.business_fabric_to {
	transform: rotate(90deg);
	margin: 5px auto;
	line-height:1;
}
.business_fabric_brand {
	font-size: 75%;
}
.business_fabric_desc {
	border-top:1px dotted #454545;
	margin:15px auto;
	padding: 15px 0 0;
}
.business_fabric_desc p {
	margin:0 auto 1em;
}
.business_fabric_desc p:last-child {
	margin:0 auto ;
}
#bule_line {
	background-color:#cfd8dc;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #607d8b;
}
#gold_line {
	background-color:#dbd8d1;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #897e60;
}
#platinum_line {

	background-color:#dbdbdb;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #878787;
}
#black_line {
	background-color:#999;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #2b2b2b;
}

#prestige_line {
	background-color:#938287;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #6D0F2C;
}
/*□□□□□□□□□□□□□□□□□□□□ Business取扱商品↑ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□□□□□□□□□□□ プラン比較表↓ □□□□□□□□□□□□□□□□□□□□*/
.plan-compare-wrap {
	max-width: 640px;
	margin: 48px auto;
}
.plan-compare {
	display: grid;
	grid-template-columns: 26% repeat(3, 1fr);
	width: 100%;
	column-gap: 8px;
	row-gap: 0;
	background: transparent;
}
.plan-compare thead,
.plan-compare tbody,
.plan-compare tr {
	display: contents;
}
.plan-compare th,
.plan-compare td {
	border: none;
	padding: 10px 5px;
	font-size: 11px;
	line-height: 1.5;
	text-align: center;
	word-break: break-word;
}
/* 左端：項目名列（カード化しない） */
.plan-compare th:first-child,
.plan-compare td:first-child {
	text-align: left;
	background: transparent;
	color: #666;
	font-weight: 600;
	font-size: 10.5px;
	display: flex;
	align-items: center;
	padding-left: 2px;
}
/* プラン列（2〜4列目）をカード化 */
.plan-compare th:nth-child(n+2),
.plan-compare td:nth-child(n+2) {
	background: #fff;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}
.plan-compare thead th:nth-child(n+2) {
	padding: 16px 4px 14px;
	font-family: 'Noto Serif', serif;
	font-weight: 500;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.05em;
	border-radius: 14px 14px 0 0;
	border-left: none;
	border-right: none;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
}
.plan-compare tbody tr:not(:last-child) td:nth-child(n+2) {
	border-bottom: 1px solid #f2f2f2;
}
.plan-compare tbody tr:first-child td:nth-child(n+2) {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	padding-top: 14px;
}
.plan-compare tbody tr:last-child td:nth-child(n+2) {
	border-radius: 0 0 14px 14px;
	padding-bottom: 18px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.plan-compare thead th.plan-first { background-color: #607d8b; }
.plan-compare thead th.plan-signature { background: linear-gradient(135deg, #a08a5c, #897e60); }
.plan-compare thead th.plan-prestige { background-color: #6D0F2C; }

/* SIGNATUREをおすすめとして強調 */
.plan-compare th:nth-child(3),
.plan-compare td:nth-child(3) {
	border-left: 2px solid #CEAE52;
	border-right: 2px solid #CEAE52;
	position: relative;
}
.plan-compare thead th:nth-child(3) {
	border-top: 2px solid #CEAE52;
}
.plan-compare tbody tr:last-child td:nth-child(3) {
	border-bottom: 2px solid #CEAE52;
}
.plan-compare thead th.plan-signature::before {
	content: "おすすめ";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #CEAE52;
	color: #fff;
	font-size: 9px;
	letter-spacing: 0.1em;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

@media (max-width: 599px) {
	.plan-compare th,
	.plan-compare td { font-size: 9.5px; padding: 7px 3px; }
	.plan-compare th:first-child,
	.plan-compare td:first-child { font-size: 9px; }
	.plan-compare tbody tr:first-child td:nth-child(n+2) { font-size: 12px; }
	.plan-compare thead th.plan-signature::before { font-size: 8px; padding: 2px 8px; }
}
.fabric-summary-note {
	text-align: center;
	font-size: 80%;
	color: #777;
}
/*□□□□□□□□□□□□□□□□□□□□ プラン比較表↑ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□□□□□□□□□□□ 価格↓ □□□□□□□□□□□□□□□□□□□□*/
#price {
	background-image: -moz- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -webkit- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -ms- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-position: center top , left top , center center;
	background-repeat: no-repeat , repeat , no-repeat;
	background-size: auto , auto , cover;
}
#price table {
	text-align: center;
}
#price th {
	
}
#price td {
	
}


#price table {
	width:100%;
	table-layout: fixed;
	border-collapse: collapse;
	background-color: #fff;
	margin: 0 auto 2em;
	text-align: left;
	border-top: 1px solid #ccc;
	text-align:center;
}
#price table th {
	display: block;
	color: #434343;
	background-color: #e9e9e9;
	border: 1px solid #ccc;
	padding: 1em 2%;
	font-weight: normal;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
}
#price table .td_n {
	background-color: #CFD8DC !important;
}
#price table td {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 1em 2%;
}


.price-table {
	width:100%;
	table-layout: fixed;
	background-color: transparent;
	margin: 0 auto 2em;
	text-align:center;
}
.price-table th,
.price-table td:first-child {
	display: block;
	color: #555;
	background-color: #f7f6f3;
	border: none;
	padding: 14px 20px 6px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.03em;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	border-radius: 10px 10px 0 0;
}
.price-table .td_n {
	background-color: #CFD8DC !important;
}
.price-table td:last-child {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 14px;
	background-color: #fff;
	border: none;
	color: #222;
	font-size: 20px;
	font-weight: 700;
	padding: 6px 20px 16px;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.07);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-table tr:hover td:last-child {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/*□□□□□□□□□□□□□□□□□□□□ 価格↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ オーダーの流れ↓ □□□□□□□□□□□□□□□□□□□□*/



.process_wrap {
	margin-bottom:15px;
	padding:30px 0;
	position: relative;
	background-color:#f6f6f6;
	border:1px solid #ececec;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	min-height: 360px;
	text-shadow: 0 1px 0 #fff;
}
.process_text h2 {
	font-size: 20px !important;
	font-size: 2.0rem !important;
	font-weight: bold !important;
	padding: 0 0 10px !important;
	margin: 0 0 15px !important;
	border-bottom:1px solid #666 !important;
}
.process_text {
	padding:15px 1%;
	position: inherit;
	display:block;
	width:94%;
	margin: 0 auto;
	z-index: 2;
}
.process_text h3 {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 100;
	color: #4d3b3b;
	width: auto;
	text-align: left;
	margin: 0 0 15px;
	padding: 6px 1%;
	border-bottom:1px solid #4d3b3b;
}
.process_text p {
	margin: 0 2% 1.5em !important;
	text-align: left;
}

.process_img {
	line-height:1;
	position: absolute;
	top: 0;
    left: 0;
    z-index: 1;
}
.process_img:after {
	position: absolute;
    top: 0;
    left: 0;
    content:'';
    width: 100%;
    height: 100%;
	background-image: linear-gradient( 0deg, rgba(246,246,246,1) 0% , rgba(246,246,246,0.7) 100%) ;
    z-index:2;
}
.process_img img {
    width: 100%;
    height: auto;
}




/*□□□□□□□□□□□□□□□□□□□□ 予約について↓ □□□□□□□□□□□□□□□□□□□□*/




/*□□□□□□□□□□□□□□□□□□□□ 予約について↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ よくある質問↓ □□□□□□□□□□□□□□□□□□□□*/


#faq dl {
	text-align: left;
	margin:auto;
	padding: 30px 1% 0;
	border-top: 1px dashed #666;
	max-width: 720px;
	box-sizing: border-box;
}
#faq dl:last-child {
	border-top: 1px dashed #666;
	text-align: left;
	margin:auto;
	padding: 30px 1% 0;
	border-bottom: 1px dashed #666;
	max-width: 720px;
	box-sizing: border-box;
}
#faq dt {
	color: #455a64;
	text-align: justify;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 8px 2%;
	margin: 0 50px 30px 50px !important;
	width: auto;
	min-height: 1em;
	position: relative;
}
#faq dt:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	margin: 8px 0 0 -10px;
	width: 10px;
	height: 10px;
	background-size:100% 100%;
	background-image: url(../site-img/fl_talk.png);
	background-position: center center;
	background-repeat: no-repeat;
}
#faq dt:after {
	content: '';
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	margin: 0 0 0 -50px;
	background-image: url(../site-img/q.png);
	background-color: #d6e4f1;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
#faq dd {
	color: #634c45;
	text-align: justify;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 8px 2%;
	margin: 0 50px 30px 50px !important;
	width: auto;
	min-height: 1em;
	position: relative;
}
#faq dd:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	margin: 8px -10px 0 0;
	width: 10px;
	height: 10px;
	background-size:100% 100%;
	background-image: url(../site-img/fr_talk.png);
	background-position: center center;
	background-repeat: no-repeat;
}
#faq dd:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	margin: 0 -50px 0 0;
	background-image: url(../site-img/a.png);
	background-color: #f1d6d6;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}



/*□□□□□□□□□□□□□□□□□□□□ よくある質問↑ □□□□□□□□□□□□□□□□□□□□*/


/*□□□□□□□□□□□□□□□□□□□□ index予約↓ □□□□□□□□□□□□□□□□□□□□*/


#reservation_banner_pc	{
	display: none;
}
#reservation_banner_sp	{
	
}
#reservation_banner_sp img {
	border:1px solid #ccc;
	box-sizing:border-box;
}
#index_reservation ul {
	display:flex;
	flex-wrap:nowrap;
	list-style:none;
}

#index_reservation ul li {
	width:33%;
	margin:15px 1% 0;
}
#index_reservation ul img {
	border:1px solid #ccc;
	box-sizing:border-box;
}
#index_reservation ul li:first-child {
	width:33%;
	margin:15px 1% 0 0;
}
#index_reservation ul li:last-child {
	width:33%;
	margin:15px 0 0 1% ;
}


/*□□□□□□□□□□□□□□□□□□□□ 求人情報（Recruit）↓ □□□□□□□□□□□□□□□□□□□□*/
#recruit_1 {
	background-image: -moz- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.4) 15% , rgba(255,255,255,0.4) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/recruit_1_bg.jpg);
	background-image: -webkit- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.4) 15% , rgba(255,255,255,0.4) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/recruit_1_bg.jpg);
	background-image: -ms- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.4) 15% , rgba(255,255,255,0.4) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/recruit_1_bg.jpg);
	background-image: linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.4) 15% , rgba(255,255,255,0.4) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/recruit_1_bg.jpg);
	background-position: center top , left top , center center;
	background-repeat: no-repeat , repeat , no-repeat;
	background-size: auto , auto , cover;
}


.img_list5 {
	list-style:none;
	display:flex;
	flex-wrap: wrap;
	justify-content:center;
	width: 100%;
	margin: 0 auto 30px;
	padding: 0;
}
.img_list5 li {
	margin:0 0.5%;
	width:30%;
}



/*□□□□□□□□□□□□□□□□□□□□ 会社概要(About)↓ □□□□□□□□□□□□□□□□□□□□*/


/* Table-サロン情報でも共通のものを使用 */
.about_table {
	background-color: #fff;
	width:100%;
	margin: 0 auto 60px;
	text-align: left;
	border-bottom: 1px solid #ccc;
}
.about_table th {
	font-size: 12px;
	font-size: 1.2rem;
	color: #434343;
	background-color: #e9e9e9;
	border: 1px solid #ccc;
	border-bottom: none;
	padding: 5px 4%;
	font-weight: normal;
	width: auto;
	display: block;
}
.about_table td {
	background-color: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
	padding: 15px 4%;
	width: auto;
	display: block;
}

.about_table_w {
	margin:0 !important;
	padding:10px !important;
}
.about_table_w .bx-wrapper {
	margin:0;
	padding:0;	
}

/* Googlemap-サロン情報でも共通のものを使用 */
.map_wrap {
	width:auto;
	margin: 0 auto;
}


/*□□□□□□□□□□□□□□□□□□□□ サロン情報(Salon)↓ □□□□□□□□□□□□□□□□□□□□*/

/* インスタ取得画像↓ */
#instagram {
	display:flex;
	flex-wrap:wrap;
	list-style:none;
}
.instagram_photo {
	width:18%;
	height:auto;
	margin:1%;
}
.instagram_photo img {
	width:100%;
	vertical-align:bottom;
	border:1px solid #ececec;
	box-sizing:border-box;
	border-radius:8px;
}


/*□□□□□□□□□□□□□□□□□□□□ Revertion（予約について）↓ □□□□□□□□□□□□□□□□□□□□*/


.cancel_charge {
	color:#de6262; 
	font-size:18px;
	font-size:1.8rem;
	margin:0 auto 1em !important;
}
 #reservation_2 ul {
	max-width: auto;
	margin: 0 auto 30px;
	text-align: justify;
	list-style-type: decimal;
	border-top: 1px dotted #999;
	text-indent: -1em;
}
#reservation_2 li {
	list-style-position: inside;
 	padding:1.5em 1em 1.5em 2em;
 	margin: 0;
 	border-bottom: 1px dotted #999;
}
#reservation_2 li:nth-child(even) {
	background-color:#f6f6f6;
}
#reservation_2 li:nth-child(odd) {
	background-color:#fcfcfc;
}
#reservation_2 p {
	text-align: justify;
}




/*□□□□□□□□□□□□□□□□□□□□ contact（問い合わせ）↓ □□□□□□□□□□□□□□□□□□□□*/


□□□□□□□□□□□□□□□contact（お申込みフォーム）↓ □□□□□□□□□□□□□□□□□□□□*/
/* 別CSSに記載　wp-content/plugins/contact-form-7/includes/css/styles.css　*/


/*□□□□□□□□□□□□□□□□□□□□ news（Single1）↓ □□□□□□□□□□□□□□□□□□□□*/
#news {
	/*background-image:url(../site-img/pc/body_bg.jpg);*/
	background-color: #C1DBCF;
	background-repeat: repeat;
	background-position: left top;
	width: 100%;
	margin: 0;
	padding: 30px 0 100px;
}
.news_text {
	width: 96%;
	padding: 40px 2% 40px;
	margin: 40px auto;
	background-color: #F8F6EC;
	border-top: 2px solid #D39849;
	border-bottom: 2px solid #D39849;
	box-shadow: 0 -10px 0 #F8F6EC, 0 10px 0 #F8F6EC;
}
.news_text section {
	margin: 0px auto 80px;
}
.news_text section h1 {
	font-family: "kan415typos-std";
	color: #547068;
	margin: 10px auto;
	display: none;
}
.news_text section p {
	text-align: justify;
	margin-bottom: 2em;
}
#news table {
}
#news table th {
}
#news table td {
}
#news h2 {
	font-family: "kan415typos-std";
	font-size: 2.0rem;
	font-size: 20px;
	color: #774350;
	border-bottom: 1px dashed #9D8089;
	width: 98%;
	margin: 0px 1% 10px;
	padding: 8px 0;
}

/*□□□□□□□□□□□□□□□□□□□□ news&post（Single1.2）↓ □□□□□□□□□□□□□□□□□□□□*/
.post_info {
	font-size: 12px;
	font-size: 1.2rem;
	list-style: none;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.post_cat {
	width: 15%;
	color: #fff;
	background-color: #333;
	padding: 5px 10px;
	border-radius: 0 0 8px 0;
	margin: 0;
	float: left;
}
.shunsuke-com_c {
	background-color: #D17B31;
}
.rebirth-com_c {
	background-color: #D64649;
}
.post_date {
	width: 15%;
	color: #fff;
	background-color: #333;
	padding: 5px 10px;
	border-radius: 0 0 0 8px;
	margin: 0;
	float: right;
}
/*□□□□□□□□□□□□□□□□□□□□ news&post（Single1.2）↓ □□□□□□□□□□□□□□□□□□□□*/
.pan {
	font-size: 10px;
	font-size: 1.0rem;
	margin-bottom: 10px;
}
.pan li {
	padding: 0;
	margin: 0 0 0 10px;
	display: inline-block;
	position: relative;
	list-style: none;
}
.pan li:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #007bff;
	position: absolute;
	top: 0;
	right: 0;
	margin: 2px -1em 0 0;
}
.pan li:last-child {
	padding: 0;
	margin: 0 0 0 10px;
	display: inline-block;
	position: relative;
	list-style: none;
}
.pan li:last-child:after {
	content: none;
}

.wp-video {
	width:100% !important;
	margin:0 auto 30px;
}

.wp-video video {
	width:100% !important;
	max-width: 720px !important;
	min-height: 300px !important;
}



/* 2019年4月15日追記 */

/*□□□□□□□□□□ priceコンセプト↓ □□□□□□□□□□*/
#price_concept1 {
	background-image: url(../site-img/business/main_slider2.jpg);
}
#price_concept1:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
/*□□□□□□□□□□ priceコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ reservationコンセプト↓ □□□□□□□□□□*/
#reservation_concept {
	background-image: url(../site-img/business/main_slider1.jpg);
}
#reservation_concept:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
/*□□□□□□□□□□ reservationコンセプト↑ □□□□□□□□□□*/

/*□□□□□□□□□□ shoesコンセプト↓ □□□□□□□□□□*/
#shoes_concept1 {
	background-image: url(../site-img/shoes/shoes_concept1.jpg);
}
#shoes_concept1:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,0,0,0.65);
}
#shoes_concept2 {
	background-image: url(../site-img/shoes/shoes_concept2.jpg);
}
#shoes_concept2:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0,49,63,0.65);
}
#shoes_concept3 {
	background-image: url(../site-img/shoes/shoes_concept3.jpg);
}
#shoes_concept3:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(101,42,29,0.65);
}
#shoes_concept4 {
	background-image: url(../site-img/shoes/shoes_concept4.jpg);
}
#shoes_concept4:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(97,90,30,0.65);
}
#shoes_concept5 {
	background-image: url(../site-img/shoes/shoes_concept5.jpg);
}
#shoes_concept5:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(28,44,0,0.65);
}
/*□□□□□□□□□□ shoesコンセプト↑ □□□□□□□□□□*/



/*□□□□□□□□□□□□□□□□□□□□ coat取扱商品↓ □□□□□□□□□□□□□□□□□□□□*/
#coat_products {
	background-image: -moz- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -webkit- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: -ms- linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-image: linear-gradient( 0deg, rgba(255,255,255,1) 5% , rgba(255,255,255,0.5) 15% , rgba(255,255,255,0.5) 85% , rgba(255,255,255,1) 95%) , url(../site-img/dot_w.png) , url(../site-img/index_products_bg.gif);
	background-position: center top , left top , center center;
	background-repeat: no-repeat , repeat , no-repeat;
	background-size: auto , auto , cover;
}


.coat_products_list {
	justify-content: center;
	align-items: top;
	margin:0 auto;
}
.coat_slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.coat_slider .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}
.coat_slider .swiper-pagination {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 2;
}
.coat_slider .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.7;
}
.coat_slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #333;
}

/*□□□□□□□□□□□□□□□□□□□□ Aboutサロン画像スライダー↓ □□□□□□□□□□□□□□□□□□□□*/
.about_slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.about_slider .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}
.about_slider .swiper-pagination {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 2;
}
.about_slider .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.7;
}
.about_slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #333;
}
/*□□□□□□□□□□□□□□□□□□□□ Aboutサロン画像スライダー↑ □□□□□□□□□□□□□□□□□□□□*/

/*□□□□□□□□□□□□□□□□□□□□ About実績・スポンサー↓ □□□□□□□□□□□□□□□□□□□□*/
.about_achievement_list {
	margin: 0 auto 30px;
	padding: 0;
	list-style: none;
}
.about_achievement_list li {
	border-bottom: 1px dotted #ccc;
	padding: 12px 0;
	line-height: 1.6;
}
.about_achievement_list li:last-child {
	border-bottom: none;
}
.about_sponsor_banner {
	max-width: 480px;
	margin: 20px auto 0;
	text-align: center;
}
.about_sponsor_banner img {
	width: 100%;
	height: auto;
}
/*□□□□□□□□□□□□□□□□□□□□ About実績・スポンサー↑ □□□□□□□□□□□□□□□□□□□□*/

.coat_products_list dl {
	width:100%;
	margin:0 auto 30px;
	padding: 0 ;
	box-sizing: border-box;
	position: relative;
	border-bottom:1px solid #ccc;
}
.coat_products_list dt {
	margin:0 auto 15px;
}
.coat_products_list dd.products_name {
	/*background-color: #CFD8DC;*/
    font-family: 'Noto Serif', serif;
	border-radius:4px;
	margin:0 auto 15px;
	padding:4px 1%;
	font-weight:bold;
	text-align: center;
	font-size: 24px;
	font-size: 2.4rem;
}
.coat_products_list dd.products_price {
    font-family: 'Noto Serif', serif;
	text-align: center;
	width:96%;
	margin:0 auto 15px;
	font-size: 20px;
	font-size: 2.0rem;
}
.coat_products_list dd.products_desc {
	text-align: justify;
	width:96%;
	margin:0 auto 30px;
}
.coat_products_list dd.products_link a {
	position:absolute;
	bottom: 0;
	font-size: 12px;
	font-size: 1.2rem;
	background-color:#FFC107;
	border-radius:4px;
	color:#222;
	display:block;
	width:98%;
	padding:4px 1%;
	box-sizing: border-box;
	box-shadow: 0 1px 0 #6D5006;
	margin: -1px auto 1px;
}
.coat_products_list dd.products_link a:hover {
	background-color:#FFD671;
	color:#666;
	box-shadow: 0 0 0 #6D5006;
	margin: 0px auto 0;
}
.coat_products_list dd p {
	margin-bottom: 1.4em !important;
}







.recommended_products_wrap {
	width:92%;
	max-width: 720px;
	display: block;
	/*
	background-color: #222;
	border-radius: 4px;
	border: 1px solid #fff;
	box-shadow: 0px 2px 0 rgba(0,0,0,0.2);
	*/
	margin: 60px auto;
	padding: 20px 10px;
	color: #454545;
	box-sizing: border-box;
	line-height: 1;
	position: relative;
	background-image: url(../site-img/fabric_bg.png);
}

.recommended_products_wrap p {
 margin-bottom: 0 !important;
}

.recommended_products_img {
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.recommended_products_img img {
	height: 100%;
	width: auto;
	max-height: 300px;
	object-fit: contain;
    border: none !important;
}


.recommended_products_desc {
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	margin: 30px auto;
	padding: 10px 0 10px;
}

.recommended_products_brand {
	text-align: center;
	margin: 0 auto 10px !important;
	padding: 0 5px 0;
	font-size: 12px;
	font-size: 1.2rem;
}

.recommended_products_name {
	text-align: center;
	margin: 0 auto 10px !important;
	padding: 0 5px 0 !important;
	font-size: 26px !important;
	font-size: 2.6rem !important;
	font-weight: normal !important;
	border: none !important;
	color: #454545 !important;
}
.recommended_products_name:first-letter {
	color: #454545 !important;
}
.recommended_products_material {
	text-align: center;
	margin: 0 auto 15px;
	padding: 0 5px 0;
	font-size: 10px;
	font-size: 1.0rem;
	color: rgba(0,0,0,0.4);
}

.recommended_products_intro {
	text-align: left;
	margin: 0 auto 30px !important;
	padding: 0 5px 0 !important;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 2.0;
}

.recommended_products_price {
	border-top: 1px solid #454545;
	margin: 40px auto 0;
	padding: 10px 0 0;
	position: relative;
	font-size: 14px;
	font-size: 1.4rem;
}

.recommended_products_rank {
	top: -10px;
	z-index: 2;
	display: block;
	margin: -22px auto 0;
	background: #454545;
	color: #fff;
	border-radius: 4px;
	padding: 4px;
	width: 50%;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	overflow: hidden;
}

.recommended_products_rank:before {

}

.recommended_products_price dl {
	display: flex;
	width: 90%;
	margin: 15px auto;
	font-size: 12px ;
	font-size: 1.2rem  ;
}

.recommended_products_price_first {
	margin: 40px auto 10px;
	font-size: 18px !important;
	font-size: 1.8rem !important;
}

.recommended_products_price dt {
	width: 50%;
}
.recommended_products_price dd {
	width: 50%;
	text-align: right;
}

.recommended_products_more {
	position: absolute;
	bottom: 20px;
	right: 20px;
	margin: 0 !important;
	font-size: 14px;
}

.recommended_products_more a {
	color: #71b6c6;
	text-decoration: underline;
}



.bule_line {
	background-color:#cfd8dc;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #607d8b;
}
.gold_line {
	background-color:#dbd8d1;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #897e60;
}
.platinum_line {
	background-color:#dbdbdb;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #878787;
}
.black_line {
	background-color:#999;
	box-shadow: 1px 1px 0 #455a64 , -1px -1px 0 #cfd8dc;
	border:8px solid #2b2b2b;
}


/* 2020-03-31↓ */

#index_topnews ul {
	list-style: none;
	font-size: 14px;
	font-size: 1.4rem;
	min-width:640px;
	max-width:720px;
	width:100%;
	margin:3em auto;
	padding:1.5em 0.5em 1.5em 1em ;
	border-top: 1px solid #2b2b2b ;
	border-right: 0 solid #2b2b2b ;
	border-bottom: 1px solid #2b2b2b ;
	border-left: 0 solid #2b2b2b ;
	box-sizing:border-box;
}

#index_topnews li {
	border-bottom: 1px dotted #ccc;
	margin:0 1.5em;
	padding:0.5em;
}

#index_topnews li:first-child {
	border-top: 1px dotted #ccc;
}

#index_topnews ol {
	font-size: 14px;
	font-size: 1.4rem;
	max-width:720px;
	width:100%;
	margin:3em auto;
	padding:1.5em 0.5em 1.5em 1.5em ;
	border-top: 1px solid #2b2b2b ;
	border-right: 0 solid #2b2b2b ;
	border-bottom: 1px solid #2b2b2b ;
	border-left: 0 solid #2b2b2b;
	box-sizing:border-box;
}
#index_topnews li {
	border-bottom: 1px dotted #ccc;
	margin:0 1.5em;
	padding:0.5em;
}

#index_topnews li:first-child {
	border-top: 1px dotted #ccc;
}

#index_topnews {
	padding-bottom:90px
}



.online-banner-2020 {
	width:100%;
	max-width:720px;
	margin:60px auto;
}

.online-banner-2020 img {
	width:100%;
	height:auto;
}

#index_topnews p {
	margin:0 auto 3em;
}











.instagram_button {
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,81,103,1) 50%,rgba(194,69,134,1) 70%,rgba(156,56,187,1) 100%);
	border-radius:6px;
	border:none;
	color:#fff;
	text-shadow:0px 1px 2px rgba(0,0,0,0.6);
	display:block;
	max-width:720px;
	width:100%;
	padding:16px 1%;
	box-sizing: border-box;
	box-shadow: 0 1px 0 #6D5006;
	margin: 0px auto 30px;
}

.instagram_button:hover {
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
	color:#fff;
	box-shadow: 0 0 0 #6D5006;
	margin: 0px auto 30px;
}


/*□□□□□□□□□□□□□□□□□□□□ スクロールリビール演出↓ □□□□□□□□□□□□□□□□□□□□*/
/* JS実行時のみ非表示状態を適用（JS無効時・エラー時は常に表示のまま） */
/* reveal-item：小さめの個別要素なのでopacity+ズレ移動 */
html.js-reveal-ready .reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js-reveal-ready .reveal-item.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* reveal-block：ブロック自体ではなく直下の子要素（.content_headingを除く）に
   opacityをかける。.content_headingはborder-topの線をまたいで乗る見出しラベルで、
   線は最初から見えているため、見出しだけ先にフェードせず表示しておく。
   親要素に直接opacityをかけると子は個別にopacity:1を指定しても効かない
   （親の不透明度がまとめて掛かるため）ので、対象を子要素側にずらしている。 */
html.js-reveal-ready .reveal-block > *:not(.content_heading) {
	opacity: 0;
	transition: opacity 0.6s ease;
}
html.js-reveal-ready .reveal-block.is-revealed > *:not(.content_heading) {
	opacity: 1;
}

/* 要素ごとスタッガー用：グループ内の兄弟要素に遅延を付ける（最大8個まで） */
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(1) { transition-delay: 0s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(2) { transition-delay: 0.1s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(3) { transition-delay: 0.2s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(4) { transition-delay: 0.3s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(5) { transition-delay: 0.4s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(6) { transition-delay: 0.5s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(7) { transition-delay: 0.6s; }
html.js-reveal-ready .reveal-group > .reveal-item:nth-child(8) { transition-delay: 0.7s; }

/* 動きを抑えたい設定のユーザーには演出なしで常に表示 */
@media (prefers-reduced-motion: reduce) {
	html.js-reveal-ready .reveal-item,
	html.js-reveal-ready .reveal-block > *:not(.content_heading) {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
/*□□□□□□□□□□□□□□□□□□□□ スクロールリビール演出↑ □□□□□□□□□□□□□□□□□□□□*/

/* ============================================================
   TOPページ：CONCEPTセクション専用演出
   見出し・本文＝1文字ずつフェードイン／写真＝ズームしながらフェード／
   下段2枚の画像＝時間差でフェード＋せり上がり
   ============================================================ */
html.js-reveal-ready .concept-char-wrap .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
html.js-reveal-ready .concept-char-wrap.is-revealed .char {
	opacity: 1;
	transform: translateY(0);
}

html.js-reveal-ready .concept-txt > img {
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 1s ease, transform 1.2s ease;
}
html.js-reveal-ready .concept-txt.is-revealed > img {
	opacity: 1;
	transform: scale(1);
}

html.js-reveal-ready .img-flex img {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js-reveal-ready .img-flex.is-revealed img {
	opacity: 1;
	transform: translateY(0);
}
html.js-reveal-ready .img-flex.is-revealed img:nth-child(1) { transition-delay: 0s; }
html.js-reveal-ready .img-flex.is-revealed img:nth-child(2) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
	html.js-reveal-ready .concept-char-wrap .char,
	html.js-reveal-ready .concept-txt > img,
	html.js-reveal-ready .img-flex img {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
/*□□□□□□□□□□□□□□□□□□□□ CONCEPT演出↑ □□□□□□□□□□□□□□□□□□□□*/


.wpcf7 form .wpcf7-response-output {
    margin: 2em auto 1em !important;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
}

/* =====================================================
   取り扱いブランド一覧ページ（/fabric-brands/）専用スタイル
   ブランド名（太字）＋説明文のリストをカードグリッドに変更（2026-08-17）
   ===================================================== */
.fabric-brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	margin: 0 0 3em;
	padding: 0;
	list-style: none;
}
.fabric-brand-card {
	background: #fff;
	border: 1px solid #e3e3e3;
	border-left: 3px solid #de6262;
	border-radius: 4px;
	padding: 1.3em 1.5em;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fabric-brand-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}
.fabric-brand-card dt {
	color: #455A64;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.02em;
	margin: 0 0 0.5em;
	line-height: 1.4;
}
.fabric-brand-card .fabric-brand-kana {
	display: block;
	font-size: 10px;
	font-weight: normal;
	color: #888;
	margin-top: 0.25em;
	letter-spacing: 0;
}
.fabric-brand-card dd {
	margin: 0;
	font-size: 12px;
	line-height: 1.8;
	color: #555;
}
@media screen and (max-width: 600px) {
	.fabric-brand-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.fabric-brand-card {
		padding: 1.1em 1.3em;
	}
}


/* LINE友だち追加ボタン（共通コンポーネント：予約ページ・お問い合わせページ等で使用） */
.line-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #06C755;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	padding: 16px 40px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.line-btn:hover {
	opacity: 1;
	background-color: #05b34c;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(6, 199, 85, 0.45);
}
.line-btn-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
.line-btn-wrap {
	text-align: center;
}
@media (max-width: 599px) {
	.line-btn { width: 100%; padding: 16px 0; }
}


/* FAQページ・各商品ページのFAQセクション共通：カテゴリー見出し */
.faq-category-title {
	color: #455A64;
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: bold;
	text-align: left;
	max-width: 720px;
	margin: 50px auto 10px;
	padding: 0 1% 8px;
	border-bottom: 2px solid #455A64;
}
.faq-category-title:first-of-type {
	margin-top: 10px;
}


/* Contactページ：Contact Form 7 フォームスタイル（PC/スマホともにスマホ版の縦積みレイアウトに統一。本番のスマホ表示CSSを移植。2026-08-24修正） */
.wpcf7-form {
	text-align: left;
}
.wpcf7-form table {
	width: 100%;
	max-width: 720px;
	background-color: #fff;
	margin: 0 auto 2em;
	text-align: center;
	border-top: 1px solid #ccc;
	border-collapse: collapse;
}
.wpcf7-form table .form_table_item_n {
	display: block;
	color: #434343;
	background-color: #CFD8DC !important;
	border: 1px solid #ccc;
	border-top: none;
	border-bottom: none;
	padding: 1em 2%;
	font-weight: normal;
	width: 96%;
	text-align: left;
	box-sizing: border-box;
}
.wpcf7-form table .form_table_input {
	display: block;
	width: 96%;
	background-color: #fff !important;
	border: 1px solid #ccc;
	padding: 1em 2%;
	text-align: left;
	box-sizing: border-box;
}
.wpcf7-form table .form_table_input input[type="text"],
.wpcf7-form table .form_table_input input[type="tel"],
.wpcf7-form table .form_table_input input[type="email"],
.wpcf7-form table .form_table_input textarea {
	width: 95.5%;
	padding: 5px 2%;
	border-radius: 2px;
	border: 1px solid #E0D6EA;
	color: #222;
	box-sizing: border-box;
	font-size: 14px;
}
.wpcf7-form .required {
	background: #EF3C3C;
	margin-right: 0.5em;
	padding: 2px 12px;
	line-height: 1.8;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-size: 12px;
}
.wpcf7-form .form_bottom2 {
	margin-top: 24px;
	text-align: center;
}
.wpcf7-form .form_bottom2 input[type="submit"] {
	background-color: #FFC107;
	border-radius: 4px;
	border: none;
	color: #222;
	display: block;
	width: 100%;
	max-width: 720px;
	margin: -1px auto 1px;
	padding: 16px 1%;
	box-sizing: border-box;
	box-shadow: 0 1px 0 #6D5006;
	font-size: 14px;
	cursor: pointer;
}
.wpcf7-form .form_bottom2 input[type="submit"]:hover {
	opacity: 0.85;
}


/* 予約・お問い合わせフォームをPCでも1列表示 */
.wpcf7-form table,
.wpcf7-form table tbody,
.wpcf7-form table tr,
.wpcf7-form table td {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* 見出しと入力欄の幅を統一 */
.wpcf7-form table .form_table_item_n,
.wpcf7-form table .form_table_input {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* 入力部品を横幅いっぱいにする */
.wpcf7-form input:not([type="checkbox"]):not([type="radio"]),
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* チェックボックスとラジオボタンは通常サイズ */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
  width: auto !important;
}