@charset "UTF-8";
/*
     ベース
     --------------------------------------------------------------------
     ・デザインは「幅400pxのメインカラム」が基準。PC・SPとも中身は同一デザイン。
     ・--u は「デザイン上の1px」を表す単位。
         SP（480px以下）… 0.25vw ＝ 画面幅に追従して縮小
         PC（481px以上）… 1.2px  ＝ メインカラム480px固定（デザイン通り1.2倍）
       これで PC/SP のCSSを二重に書かずに済ませている。
     ・レイアウト切替（サイド固定 ⇔ ハンバーガー）は 1200px。
========================================================================== */
:root {
    --u: min(0.25vw, 1.2px);
}
html {
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #191919;
    background: #e1ebe1;
    -webkit-text-size-adjust: 100%;
}
body * {
    box-sizing: border-box;
}
a {
    color: #191919;
    text-decoration: none;
    transition: 0.4s ease-out;
}
a:hover {
    opacity: .7;
}
/* リンク先が未定（準備中）のもの＝クリックできない */
a:not([href]) {
    cursor: default;
}
a:not([href]):hover {
    opacity: 1;
}
a:not([href]):hover .zoom img {
    transform: none;
}
/* 画像リンク：ゆっくりズーム（.zoom の中の img が拡大／はみ出しは .zoom で切る） */
.zoom {
    display: block;
    overflow: hidden;
}
.zoom img {
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
}
a.zoom:hover,
a:hover .zoom {
    opacity: 1;
}
a.zoom:hover img,
a:hover .zoom img {
    transform: scale(1.06);
}
/* 常時下線のテキストリンク */
.link_u {
    text-decoration: underline;
    text-underline-offset: 0.25em;
    text-decoration-thickness: 1px;
}
/* テキストリンク：下線がスッと伸びる */
.link_line {
    position: relative;
}
.link_line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-2 * var(--u));
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s ease-out;
}
.link_line:hover {
    opacity: 1;
}
.link_line:hover::after {
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.mincho {
    font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", serif;
}
.txt_red {
    color: #ff1919;
    font-weight: 700;
}
/* 表示・非表示（切替は 1200px） */
@media screen and (min-width: 1200px) {
    .d_sp {
        display: none !important;
    }
}
@media screen and (max-width: 1199px) {
    .d_pc {
        display: none !important;
    }
}
/*
     オープニング（TOPのみ）
     動画が終わる、または Skip でページへ切り替わる
========================================================================== */
#opening {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #bdbfc2;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
#opening.is_hide {
    opacity: 0;
    visibility: hidden;
}
.opening_movie {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.opening_logo {
    position: relative;
    z-index: 1;
    /* デザイン（幅1800px）でロゴ幅300px・中心はやや上（y525/1080） */
    width: clamp(190px, 16.7vw, 300px);
    margin-top: -3vh;
}
.opening_logo img {
    display: block;
    width: 100%;
}
.opening_skip {
    position: absolute;
    right: clamp(16px, 2.2vw, 40px);
    bottom: clamp(16px, 2.2vw, 40px);
    z-index: 2;
    padding: 0.7em 1.8em;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(25, 25, 25, .25);
    border-radius: 2em;
    color: #191919;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s ease-out;
    -webkit-appearance: none;
    appearance: none;
}
.opening_skip:hover {
    background: rgba(255, 255, 255, .92);
}
/* オープニング表示中はページをスクロールさせない */
body.is_opening {
    overflow: hidden;
}
/* 2回目以降（同一セッション）は最初から出さない */
.opening_done #opening {
    display: none;
}
.opening_done body.is_opening {
    overflow: visible;
}
/*
     レイアウト
========================================================================== */
.page_wrapper {
    position: relative;
}
.bg_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cfd6db url("../images/common/content_bg.webp") no-repeat center center / cover;
    z-index: 0;
    overflow: hidden;
}
/* 背景動画。読み込めるまでは上の背景画像が見えていて、用意できたらフワッと切り替わる */
.bg_movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-out;
}
.bg_movie.is_show {
    opacity: 1;
}
#content {
    position: relative;
    z-index: 1;
    width: calc(400 * var(--u));
    margin: 0 auto;
    overflow: hidden;
    /* 紙のような模様。bg_A.webp を3枚ずらして重ねて濃さを出している（枚数を増減で調整可） */
    background-color: #e1ebe1;
    background-image: url("../images/common/bg_A.webp"), url("../images/common/bg_A.webp"), url("../images/common/bg_A.webp");
    background-repeat: repeat, repeat, repeat;
    background-position: top center, calc(200 * var(--u)) calc(218 * var(--u)), calc(97 * var(--u)) calc(131 * var(--u));
    background-size: calc(400 * var(--u)) auto, calc(400 * var(--u)) auto, calc(400 * var(--u)) auto;
}
@media screen and (min-width: 481px) {
    #content {
        box-shadow: 0 0 calc(30 * var(--u)) rgba(0, 0, 0, .25);
    }
}
@media screen and (max-width: 480px) {
    .bg_fixed {
        display: none;
    }
}
/*
     header（1199px以下）
========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(70 * var(--u));
    background: #ffff32;
}
#header .header_logo {
    margin-left: calc(20 * var(--u));
    width: calc(289 * var(--u));
    transition: 0.4s ease-out;
}
#header .header_logo_w {
    display: none;
}
/* メニューを開くと、ヘッダーは茶色＋白ロゴ、左に黄色の閉じるボタン */
.is_navopen #header {
    background: #948049;
}
.is_navopen #header .header_logo {
    margin-left: calc(88 * var(--u));
}
.is_navopen #header .header_logo_b {
    display: none;
}
.is_navopen #header .header_logo_w {
    display: block;
}
.navToggle {
    position: absolute;
    top: 50%;
    right: calc(20 * var(--u));
    transform: translateY(-50%);
    width: calc(30 * var(--u));
    height: calc(24 * var(--u));
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    appearance: none;
}
.navToggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(2 * var(--u));
    background: #191919;
    transition: 0.4s ease-out;
}
.navToggle span:nth-of-type(1) {
    top: 0;
}
.navToggle span:nth-of-type(2) {
    top: calc(11 * var(--u));
}
.navToggle span:nth-of-type(3) {
    top: calc(22 * var(--u));
}
.navToggle.active {
    top: 0;
    left: 0;
    right: auto;
    width: calc(70 * var(--u));
    height: calc(70 * var(--u));
    background: #ffff32;
    transform: none;
}
.navToggle.active span {
    top: 50%;
    left: calc(50% - 13 * var(--u));
    width: calc(26 * var(--u));
    margin-top: calc(-1 * var(--u));
}
.navToggle.active span:nth-of-type(1) {
    transform: rotate(45deg);
}
.navToggle.active span:nth-of-type(2) {
    opacity: 0;
}
.navToggle.active span:nth-of-type(3) {
    transform: rotate(-45deg);
}
/* ヘッダー分の余白 */
@media screen and (max-width: 1199px) {
    #content {
        padding-top: calc(70 * var(--u));
    }
    /* ページ内リンク（#○○）の着地位置を、固定ヘッダーに隠れないよう下げる */
    #content [id] {
        scroll-margin-top: calc(70 * var(--u));
    }
}
/*
     spnavi（ハンバーガーメニュー）
========================================================================== */
.spnavi {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-top: calc(70 * var(--u));
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-out;
    -webkit-overflow-scrolling: touch;
}
.spnavi.active {
    opacity: 1;
    visibility: visible;
}
.spnavi_ttl {
    display: flex;
    align-items: center;
    height: calc(70 * var(--u));
    padding-left: calc(18 * var(--u));
    border-bottom: calc(2 * var(--u)) solid #948049;
    font-size: calc(20 * var(--u));
    font-weight: 500;
    letter-spacing: 0.06em;
}
.spnavi_list li {
    border-bottom: 1px solid #ccc;
}
.spnavi_list:last-of-type li:last-child {
    border-bottom: none;
}
.spnavi_list a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(60 * var(--u));
    padding: calc(10 * var(--u)) calc(46 * var(--u)) calc(10 * var(--u)) calc(18 * var(--u));
    font-size: calc(16 * var(--u));
    letter-spacing: 0.04em;
    transition: background-color 0.3s ease-out;
}
.spnavi_list a:hover {
    opacity: 1;
    background: #f7f6f2;
}
.spnavi_list a:hover::after {
    right: calc(17 * var(--u));
}
.spnavi_list a:not([href]):hover {
    background: none;
}
.spnavi_list a:not([href]):hover::after {
    right: calc(20 * var(--u));
}
.spnavi_list a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(22 * var(--u));
    transition: right 0.3s ease-out;
    width: calc(11 * var(--u));
    height: calc(11 * var(--u));
    margin-top: calc(-6 * var(--u));
    border-top: calc(2 * var(--u)) solid #191919;
    border-right: calc(2 * var(--u)) solid #191919;
    transform: rotate(45deg);
}
.spnavi_list_care a,
.spnavi_list_sns a {
    min-height: calc(82 * var(--u));
}
.spnavi_list_ttl {
    display: block;
    font-size: calc(16 * var(--u));
}
.spnavi_list_sub {
    display: block;
    margin-top: calc(2 * var(--u));
    font-size: calc(14 * var(--u));
    color: #666;
}
.spnavi_list_care a {
    display: block;
    padding-top: calc(14 * var(--u));
}
.spnavi_list_sns .spnavi_list_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(60 * var(--u));
    margin-right: calc(12 * var(--u));
}
.spnavi_list_sns .spnavi_list_icon img {
    width: calc(40 * var(--u));
}
/*
     side（1200px以上）
========================================================================== */
#side {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: calc((100% - 480px) / 2);
    height: 100%;
}
.side_logo {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 20px;
}
.side_logo img {
    width: 480px;
    max-width: 90%;
}
.side_nav {
    /* デザイン基準＝ウインドウ高さ1080pxのときナビ幅247px（＝22.9vh）・項目ピッチ54px。
       ウインドウが低いときは文字ごと縮めて、行間の比率を保つ */
    --nav: clamp(170px, 22.9vh, 247px);
    /* 文字まわりは85%に縮めて、そのぶん項目のピッチを108%に広げている */
    --nav_w: calc(var(--nav) * 0.85);
    position: absolute;
    top: 20.8vh;
    left: 34%;
    width: var(--nav);
    max-width: calc(100% - 78px);
}
.side_nav li {
    display: flex;
    align-items: center;
    height: calc(var(--nav) * 0.2361); /* デザイン 54 / 247 × 1.08 */
}
.side_nav li a {
    display: inline-block;
    transition: 0.4s ease-out;
}
.side_nav li a:hover {
    opacity: .55;
    transform: translateX(calc(6 * var(--u)));
}
/* ナビ画像は元の横幅がバラバラなので、デザイン（ナビ幅247px基準）の比率で一括スケールする */
.side_nav li img {
    display: block;
    width: calc(var(--nav_w) * var(--w, 1));
    height: auto;
}
.side_nav img[src$="side_navi_top.webp"] { --w: 0.2510; } /* デザイン 62px */
.side_nav img[src$="side_navi_concept.webp"] { --w: 0.6559; } /* 162px */
.side_nav img[src$="side_navi_news.webp"] { --w: 0.3846; } /* 95px */
.side_nav img[src$="side_navi_menu.webp"] { --w: 1; } /* 247px */
.side_nav img[src$="side_navi_media.webp"] { --w: 0.8826; } /* 218px */
.side_nav img[src$="side_navi_info.webp"] { --w: 0.9879; } /* 244px */
.side_nav img[src$="side_navi_contact.webp"] { --w: 0.5951; } /* 147px */
.side_nav img[src$="side_navi_onlinestore.webp"] { --w: 0.7409; } /* 183px */
.side_nav img[src$="side_navi_border.webp"] { --w: 0.0729; } /* 18px */
.side_nav img[src$="side_navi_onlinesalon.webp"] { --w: 0.7733; } /* 191px */
.side_nav img[src$="side_navi_line.webp"] { --w: 0.4615; } /* 114px */
.side_nav .is_current {
    position: relative;
}
.side_nav .is_current::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(var(--nav_w) * -0.2267); /* デザイン -56 / 247 */
    width: calc(var(--nav_w) * 0.166); /* デザイン 41 / 247 */
    height: calc(var(--nav_w) * 0.247); /* デザイン 61 / 247 */
    margin-top: calc(var(--nav_w) * -0.1215);
    background: url("../images/common/side_navi_deco.webp") no-repeat center center / contain;
}
.side_add {
    position: absolute;
    left: 40px;
    right: 20px;
    bottom: 34px;
    font-size: 1.4rem;
    line-height: 1.6;
}
@media screen and (max-width: 1439px) {
    /* サイドが狭くなる幅では、ナビ左の花アイコンが切れないよう左余白を固定で確保する */
    .side_nav {
        left: 58px;
    }
    .side_nav .is_current::before {
        left: calc(var(--nav_w) * -0.1862); /* -46 / 247 */
        width: calc(var(--nav_w) * 0.1296); /* 32 / 247 */
        height: calc(var(--nav_w) * 0.1943); /* 48 / 247 */
        margin-top: calc(var(--nav_w) * -0.0972);
    }
}
/*
     deco（1200px以上）
========================================================================== */
#deco {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    width: calc((100% - 480px) / 2);
    height: 100%;
}
.deco_menu {
    position: absolute;
    top: 50%;
    left: 10%;
    width: min(81%, 532px);
    aspect-ratio: 532 / 724;
    transform: translateY(calc(-50% + 8px));
}
.deco_menu_item {
    position: absolute;
    display: block;
}
.deco_menu_item img {
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
}
.deco_menu_item:hover {
    opacity: 1;
}
.deco_menu_item:hover img {
    transform: scale(1.05);
}
.deco_menu_item01 {
    top: 0;
    left: 0;
    width: 56.4%;
}
.deco_menu_item02 {
    top: 29.3%;
    left: 43.4%;
    width: 56.6%;
}
.deco_menu_item03 {
    top: 58.6%;
    left: 0;
    width: 56.4%;
}
.deco_flower {
    position: absolute;
    left: 50%;
    bottom: 77px;
    width: min(43.6%, 288px);
}
.deco_copy {
    position: absolute;
    right: 40px;
    bottom: 34px;
    font-size: 1.4rem;
}
/*
     共通パーツ
========================================================================== */
.sec_ttl {
    text-align: center;
}
/* 明朝の見出し（A1明朝の代替：Shippori Mincho） */
.ttl_mincho {
    font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", serif;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}
/* 見出し下の花飾り */
.ttl_deco {
    text-align: center;
}
.ttl_deco img {
    width: calc(93 * var(--u));
}
.btn_A {
    text-align: center;
}
.btn_A a,
.btn_A > span {
    display: inline-block;
    width: calc(200 * var(--u));
    height: calc(38 * var(--u));
    background: #19a069 url("../images/common/bg_A.webp") repeat top center;
    background-size: calc(400 * var(--u)) auto;
    box-shadow: 0 calc(2 * var(--u)) 0 #191919;
    color: #fff;
    font-size: calc(14 * var(--u));
    line-height: calc(38 * var(--u));
    letter-spacing: 0.14em;
    text-indent: 0.14em;
}
.btn_A a:hover {
    opacity: 1;
    filter: brightness(1.12);
    box-shadow: 0 calc(1 * var(--u)) 0 #191919;
    transform: translateY(calc(1 * var(--u)));
}
.btn_A_gold a {
    background-color: #948049;
}
.btn_A_yellow a,
.btn_A_white a,
.btn_A_white > span {
    background-image: none;
    color: #191919;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
}
.btn_A_yellow a {
    background-color: #ffff32;
}
.btn_A_white a,
.btn_A_white > span {
    background-color: #fff;
}
.btn_A_wide a {
    width: calc(240 * var(--u));
}
/* 全角括弧はブラウザだと字面が広く、ボタン幅いっぱいになってしまうので詰める */
.btn_A .paren {
    margin: 0 calc(-3 * var(--u));
}
.pagetop {
    position: fixed;
    right: calc(20 * var(--u));
    bottom: calc(20 * var(--u));
    z-index: 15;
    width: calc(42 * var(--u));
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: 0.4s ease-out;
}
.pagetop.is_show {
    opacity: 1;
    visibility: visible;
}
.pagetop.is_show:hover {
    opacity: .6;
}
@media screen and (min-width: 481px) {
    .pagetop {
        right: calc(50% - 240px + 20 * var(--u));
    }
}
/*
     スクロールCSS
========================================================================== */
.fade-in {
    opacity: 0;
}
.fade-in-up {
    transform: translate(0, 40px);
}
.scroll-in {
    animation: fadeIn 1.2s ease;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* bnr（共通パーツ） ============================ */
.bnr_list li + li {
    margin-top: calc(19.5 * var(--u));
}
.bnr_list img {
    display: block;
    width: calc(340 * var(--u));
    margin: 0 auto;
}
/* バナーは画像を切らず、要素ごとふわっと拡大 */
.bnr_list a {
    display: block;
    transition: transform 0.4s ease-out;
}
.bnr_list a:hover {
    opacity: 1;
    transform: scale(1.03);
}

/* c_contact ============================ */
#c_contact {
    padding: calc(51 * var(--u)) 0 calc(62 * var(--u));
    border-top: calc(8 * var(--u)) solid #948049;
    background: #fff;
    text-align: center;
}
#c_contact .contact_ttl {
    font-size: calc(26 * var(--u));
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.06em;
}
#c_contact .contact_lead {
    margin-top: calc(21 * var(--u));
    font-size: calc(14 * var(--u));
    line-height: 1.75;
    letter-spacing: 0.02em;
}
#c_contact .contact_tel {
    margin-top: calc(40 * var(--u));
}
#c_contact .contact_tel a {
    display: inline-block;
    height: calc(40 * var(--u));
    padding: 0 calc(3 * var(--u));
    background: #ffff32;
    font-size: calc(40 * var(--u));
    line-height: calc(40 * var(--u));
    letter-spacing: 0.02em;
}
#c_contact .contact_tel_mark {
    font-size: calc(34 * var(--u));
}
#c_contact .btn_A {
    margin-top: calc(32 * var(--u));
}
#c_contact .contact_info {
    display: flex;
    flex-wrap: wrap;
    width: calc(340 * var(--u));
    margin: calc(41 * var(--u)) auto 0;
    border-bottom: calc(2 * var(--u)) solid #dcdcdc;
    font-size: calc(14 * var(--u));
    text-align: left;
}
#c_contact .contact_info dt,
#c_contact .contact_info dd {
    display: flex;
    align-items: center;
    height: calc(64 * var(--u));
    border-top: calc(2 * var(--u)) solid #dcdcdc;
    letter-spacing: 0.04em;
}
#c_contact .contact_info dt {
    width: calc(121 * var(--u));
}
#c_contact .contact_info dd {
    width: calc(219 * var(--u));
}
/* footer ============================ */
#footer .footer_info {
    padding: calc(53 * var(--u)) 0 calc(57 * var(--u));
    background: #19a069 url("../images/common/bg_A.webp") repeat top center;
    background-size: calc(400 * var(--u)) auto;
    color: #fff;
    text-align: center;
}
#footer .footer_info_catch {
    font-size: calc(16 * var(--u));
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0.04em;
}
#footer .footer_info_name {
    margin-top: calc(28 * var(--u));
    font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", serif;
    font-size: calc(20 * var(--u));
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.1em;
    text-indent: 0.09em;
}
/* 括弧まわりの文字詰め */
#footer .footer_info_name .paren {
    /* デザイン（A1明朝＋文字詰め）の括弧幅に合わせるため半角括弧＋わずかな余白で再現 */
    margin: 0 calc(1.25 * var(--u));
    letter-spacing: 0;
}
#footer .footer_info_add {
    margin-top: calc(26 * var(--u));
    font-size: calc(16 * var(--u));
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
}
#footer .copy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(60 * var(--u));
    background: #fff;
    font-size: calc(12 * var(--u));
    letter-spacing: 0.04em;
}
