@charset "UTF-8";
/*************************************************
* 共通スタイル
*************************************************/

/* 装飾 */
/*----------------------------------------------*/
/* 要素の透過 */
.opacity0 {
    opacity: 0;
}

/* 見出し */
h2 {
    color: #fff;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 30px !important;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 2px;
    background: #fff;
}

h2 span {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}

/*ポイント*/
#access .redtext {
    color: #f00;
    font-size: 85%;
}

/* グローバルナビゲーション */
/*----------------------------------------------*/
.fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: #151515;
    border-bottom: 1px solid rgba(212, 180, 131, .35);
    transition: 0.3s;
}

/* ナビ右寄せ */
.navbar-nav {
    margin-left: auto;
}

/* 各メニュー */
.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-family: "Cormorant Garamond", serif;
    color: #fff !important;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .3s;
}

.nav-link span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    margin-top: 4px;
    opacity: .8;
}

.nav-link:hover {
    opacity: .7;
}

/* ハンバーガー */
.navbar-toggler {
    border: none;
    color: #fff !important;
}

.navbar-toggler i {
    color: #fff;
    font-size: 28px;
}

/* ロゴ */
.navbar-brand img {
    height: 35px;
}

/* SP */
@media (max-width:768px) {

    .navbar>.container {
        flex-wrap: nowrap;
    }

    .navbar-collapse {
        min-width: 0;
    }

    .navbar-menu {
        min-width: 0;
    }

    .navbar-brand img {
        width: 55%;
        height: auto;
    }

    .navbar-collapse {
        padding: 20px;
    }

    .nav-item {
        margin: 10px 0;
    }

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

/* SE系 */
@media (max-width: 390px) {

    .navbar>.container {
        flex-wrap: wrap;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-brand {
        margin-right: 0;
    }
}

/* ヘッダーショップリンク */
/*--------------------------------*/
.header_shop_link {
    position: absolute;
    right: 0;
    bottom: -72px;
    z-index: 1050;
}

/* ボタン本体 */
.header_shop_link a {
    display: inline-block;
    padding: 10px 35px;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 180, 131, .35);
    border-top: none;
    border-radius: 0 0 10px 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: .3s;
}

/* 日本語 */
.header_shop_link span {
    display: block;
    letter-spacing: 1px;
    font-size: 12px;
}

/* hover */
.header_shop_link a:hover {
    background: rgba(212, 180, 131, .18);
    color: #d4b483;
}

/* SP */
@media(max-width:767px) {

    .header_shop_link {
        bottom: -75px;
        width: 100%;
        text-align: center;
    }

    .header_shop_link a {
        display: block;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        padding: 14px 0;
        font-size: 18px;
    }

}

/* トップ画像 */
/*----------------------------------------------*/
#carouselExampleControls {
    padding-top: 0px;
}

@media (max-width:768px) {

    #carouselExampleControls {
        padding-top: 67px;
    }
}

#main_visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* PC時高さ固定 */
@media (min-width: 768px) {
    #main_visual img {
        min-height: 100dvh;
        object-fit: cover;
    }
}


/* コンテンツ */
/*----------------------------------------------*/

/* ======================
   Concept　コンセプト
====================== */
#concept {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: url("../img/concept_bg.png") center / cover no-repeat;
}

/* 背景を暗くするオーバーレイ */
#concept::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* 中央ボックス */
.concept_box {
    margin: auto;
    padding: 40px 0;
    background: rgba(70, 70, 70, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 180, 131, .25);
}

/* キャッチフレーズ */
.concept_catch {
    font-family: "Cormorant Garamond", serif;
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.concept_catch span {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
}

/* 本文 */
.concept_text p {
    color: #f2f2f2;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.concept_text p:last-of-type {
    margin-bottom: 0;
}

/* SP */
@media (max-width:768px) {

    #concept {
        padding: 50px 20px;
    }

    .concept_box {
        padding: 40px 25px;
    }

    .section_title h2 {
        font-size: 30px;
    }

    .concept_text p {
        line-height: 1.8;
        text-align: left;
    }

    .concept_catch {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .concept_catch span {
        font-size: 25px;
    }

}

/* ======================
   Feature　こだわり
====================== */
#feature {
    padding: 50px 0;
    background: #151515;
    color: #fff;
}

.feature_left {
    position: relative;
    overflow: hidden;
}

/* 背景の縦文字 */
.feature_bg_title {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.feature_bg_title h2 {
    font-family: "Allura", cursive !important;
    font-weight: 400;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* transform: rotate(180deg); */
    font-size: 80px;
    line-height: 1;
    color: rgba(212, 180, 131, 0.18);
    letter-spacing: 1px;
    margin: 0;
}

.feature_bg_title h2::after {
    display: none;
}

/* iOS Safariだけ */
@supports (-webkit-touch-callout: none) {
    .feature_bg_title {
        right: 90px;
    }
}

/* 前面 */
.feature_content {
    position: relative;
    z-index: 1;
}

/* こだわり */
.feature_sub_title {
    color: #d4b483;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.feature_item:last-child {
    border: none;
    margin-bottom: 0;
}

/* 数字 */
.feature_item .num {
    font-size: 40px;
    color: #d4b483;
    font-weight: 600;
    margin-right: 25px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
}

/* テキスト */
.feature_item .text h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-family: "Cormorant Garamond", serif;
}

.feature_item .text h4 {
    font-size: 18px !important;
}

.feature_item .text p {
    color: #cfcfcf;
    line-height: 1.8;
    margin: 0;
}

/* 画像 */
.feature_img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
}

/* SP */
@media(max-width:768px) {

    #feature {
        padding: 50px 20px;
    }

    .feature_title h2 {
        font-size: 34px;
    }

    .feature_item {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .feature_item .num {
        margin-bottom: 5px;
        font-size: 40px;
    }

    .feature_img {
        margin-top: 30px;
    }
}

/* ======================
   ブランドメッセージ
====================== */
#line_area {
    padding: 50px 0;
    background: #f7f7f5;
}

.line_box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 40px 40px;

    border-top: 1px solid #d4b483;
    border-bottom: 1px solid #d4b483;
}

#line_area h3 {
    font-size: 32px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
}

#line_area p {
    color: #666;
    font-size: 18px;
    line-height: 2;
}

/* ショップリンク */
.shop_link {
    display: inline-block;
    margin-top: 20px;
    padding-bottom: 8px;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
    position: relative;
    z-index: 1;
    transition: .3s;
    font-weight: bold;
}

/* 下線 */
.shop_link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #d4b483;
    transition: .3s;
}

/* 日本語 */
.shop_link span {
    display: block;
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

/* hover */
.shop_link:hover {
    color: #d4b483;
    text-decoration: none;
}

.shop_link:hover::after {
    width: 70%;
    left: 15%;
}

/* SP */
@media(max-width:768px) {

    #line_area h3 {
        font-size: 25px;
    }

    #line_area p {
        font-size: 15px;
    }


}

/* ======================
   Why URUMI　選ばれる理由
====================== */
#whyurumi {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background: url("../img/concept_bg.png") center / cover no-repeat;
}

#whyurumi:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* 導入コピー */
.whyurumi_intro {
    position: relative;
    z-index: 10 !important;
    text-align: center;
    margin: 0 auto 40px;
}

/* タイトル */
.whyurumi_intro h3 {
    color: #fff !important;
    font-size: 32px;
    line-height: 1.5;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

/* 説明 */
.whyurumi_intro p {
    color: rgba(255, 255, 255, .9) !important;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.reason_wrap {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    min-height: 480px;
}

.reason_card {
    position: absolute;
    width: 460px;
    padding: 20px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2px 18px 2px 18px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .10),
        0 0 0 1px rgba(255, 255, 255, .15) inset;
}

/* 左上アクセント */
.reason_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: #d4b483;
}

/* 右下アクセント */
.reason_card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #d4b483;
}

.reason_card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: 1px;
}

.reason_card h3 .fa {
    color: #d4b483;
}

.reason_card p {
    line-height: 1.9;
    font-size: 15px;
}

/* ズラし */
.card01 {
    top: 0;
    left: 0;
}

.card02 {
    top: 80px;
    right: 0;
}

.card03 {
    top: 240px;
    left: 0;
}

.card04 {
    top: 320px;
    right: 0;
}

/* SP */
@media(max-width:767px) {

    #whyurumi {
        padding: 50px 20px;
    }

    .whyurumi_intro h3 {
        font-size: 25px;
        line-height: 1.5;
    }

    .whyurumi_intro p {
        font-size: 15px;
        line-height: 1.8;
    }

    .reason_wrap {
        min-height: auto;
    }

    .reason_card {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-bottom: 20px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }

    .reason_card:last-child {
        margin-bottom: 0;
    }

}

/* よくある質問 */
/*----------------------------------------------*/
#faq {
    padding: 50px 0;
    background: #333;
    position: relative;
    z-index: 1;
}

#faq::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

#faq .container {
    position: relative;
    overflow: hidden;
}

/* 背景の縦文字 */
.faq_bg_title {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.faq_bg_title h2 {
    font-family: "Allura", cursive !important;
    font-weight: 400;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* transform: rotate(180deg); */
    font-size: 80px;
    line-height: 1;
    color: rgba(212, 180, 131, 0.18);
    letter-spacing: 1px;
    margin: 0;
}

.faq_bg_title h2::after {
    display: none;
}

/* iOS Safariだけ */
@supports (-webkit-touch-callout: none) {
    .faq_bg_title {
        right: 90px;
    }
}

.qa-list dl {
    position: relative;
    margin: 20px 0 0;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(212, 180, 131, 0.25);
    border-radius: 10px;
    overflow: hidden;

    transition: .3s;
}

.qa-list dl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.qa-list dl:first-child {
    margin-top: 0;
}

/* 矢印 */
.qa-list dl::after {
    position: absolute;
    top: 20px;
    right: 30px;

    width: 10px;
    height: 10px;

    content: '';
    transform: rotate(135deg);

    border-top: 2px solid #d4b483;
    border-right: 2px solid #d4b483;

    transition: .3s;
}

.qa-list .open::after {
    transform: rotate(-45deg);
}

/* 質問 */
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 15px 60px 15px 85px;
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.02);
}

/* Qマーク */
.qa-list dl dt::before {
    content: 'Q.';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

/* 回答 */
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 15px 60px 15px 85px;
    color: #d9d9d9;
    line-height: 1.9;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Aマーク */
.qa-list dl dd::before {
    content: 'A.';
    position: absolute;
    left: 35px;
    top: 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: bold;
    font-size: 25px;
}

.qa-list dl dd p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}

/* SP */
@media(max-width:767px) {

    #faq {
        padding: 50px 20px;
    }

    .qa-list dl dt {
        padding: 20px 55px 20px 65px;
        font-size: 15px;
    }

    .qa-list dl dt::before,
    .qa-list dl dd::before {
        width: 32px;
        height: 32px;
        line-height: 32px;
        left: 18px;
        font-size: 25px;
    }

    .qa-list dl dd {
        padding: 20px 20px 20px 65px;
    }

    .qa-list dl::after {
        top: 20px;
        right: 20px;
        width: 10px;
        height: 10px;
    }

    /* Aマーク位置 */
    .qa-list dl dd::before {
        top: 15px;
    }

}

/* お問い合わせフォーム */
/*----------------------------------------------*/
#contact {
    padding: 50px 0;
    background: #f7f7f5;
}

#contact h2 {
    color: #000;
}

#contact h2::after {
    background: #000;
}

.asterisk {
    color: #666;
    font-size: 90%;
    margin-top: 5px;
    margin-left: 0.7em;
    margin-bottom: 15px;
}

.asterisk li:not(:last-child) {
    margin-bottom: 4px;
}

.asterisk li:before {
    margin-left: -1em;
    content: '\00203b';
}

.contact-form label {
    font-weight: 400;
}

/* うっすらテキスト*/
input::placeholder,
textarea::placeholder {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    height: auto;
    border-radius: 10px;
}

.contact-form .form-send {
    text-align: center;
}

/* 送信ボタン */
.contact-form .form-send button {
    background: none;
    border: none;
    padding: 0 0 8px;
    cursor: pointer;
    color: #000;
    font-size: 22px;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
    position: relative;
    text-align: center;
}

/* 日本語 */
.contact-form .form-send button span {
    display: block;
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

/* 下線 */
.contact-form .form-send button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #d4b483;
    transition: .3s;
}

/* hover */
.contact-form .form-send button:hover {
    color: #d4b483;
}

.contact-form .form-send button:hover::after {
    width: 70%;
    left: 15%;
}

.contact-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact-form .loading {
    display: none;
    color: #666;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
}

.contact-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin: 15px 0;
}

.contact-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin: 15px 0;
}

/* フッター */
/*----------------------------------------------*/
#footer {
    padding: 25px 0;
    background: #151515;
    border-top: 1px solid rgba(212, 180, 131, .35);
}

/* container */
#footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ロゴ */
.footlogo {
    margin-bottom: 20px;
}

.footlogo img {
    max-width: 140px;
    opacity: .95;
}

/* ナビ */
#footer .navi {
    display: block;
}

#footer .navi ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

#footer .navi ul li {
    display: inline-block;
    margin: 0 8px;
}

#footer .navi ul li a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: .3s;
}

#footer .navi ul li a:hover {
    color: #fff;
}

/* コピーライト */
.footer_sub {
    background: #151515;
    padding: 12px 0;
}

.footer_sub p {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    text-align: center;
}

/* PC */
@media(min-width:768px) {

    #footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footlogo {
        margin-bottom: 0;
    }

    .footlogo img {
        max-width: 160px;
    }

    #footer .navi ul li {
        margin-left: 28px;
        margin-right: 0;
    }
}

/* ページトップ */
/*----------------------------------------------*/
#pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1020;
}

/* 本体ボタン */
#pagetop a {
    display: inline-block;
    padding: 12px 22px;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 180, 131, .35);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: .3s;
}

/* 小さいサブテキスト */
#pagetop a span {
    font-family: "Cormorant Garamond", serif;
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 3px;
    font-weight: bold;
}

/* hover */
#pagetop a:hover {
    background: rgba(212, 180, 131, .18);
    color: #d4b483;
    transform: translateY(-2px);
}

/* PCで少し大きく */
@media (min-width:768px) {
    #pagetop a {
        padding: 10px 25px;
        font-size: 18px;
    }
}