@charset "utf-8";


/* ========================================
HEADER
======================================== */

.pweb-header {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
    z-index: 1000;
}

.pweb-header-inner {
    width: 100%;
    max-width: 1200px;
    min-height: 100px;
    margin: 0 auto;
    padding: 15px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    box-sizing: border-box;
}


/* ========================================
LOGO
======================================== */

.pweb-header-logo {
    flex-shrink: 0;
}

.pweb-header-logo a {
    display: block;
    text-decoration: none;
}

.pweb-header-logo img {
    display: block;
    width: auto;
    max-width: 300px;
    max-height: 70px;
    object-fit: contain;
}

.pweb-site-name {
    color: #333333;
    font-size: 24px;
    font-weight: 700;
}


/* ========================================
PC CONTACT
======================================== */

.pweb-header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pweb-header-btn {
    width: 190px;
    min-height: 64px;
    padding: 9px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    text-align: center;
    text-decoration: none;

    box-sizing: border-box;
}


/* LINE */

.pweb-header-line,
.pweb-header-line:link,
.pweb-header-line:visited,
.pweb-header-line:hover,
.pweb-header-line:focus,
.pweb-header-line:active {
    background-color: #06c755;
    color: #ffffff;
    text-decoration: none;
}


/* MAIL */

.pweb-header-mail,
.pweb-header-mail:link,
.pweb-header-mail:visited,
.pweb-header-mail:hover,
.pweb-header-mail:focus,
.pweb-header-mail:active {
    background-color: #8b6b4a;
    color: #ffffff;
    text-decoration: none;
}


.pweb-header-btn-main {
    display: block;

    color: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.pweb-header-btn-sub {
    display: block;
    margin-top: 2px;

    color: inherit;
    font-size: 11px;
    line-height: 1.4;
}


/* ========================================
SP MENU TOGGLE
PCでは非表示
======================================== */

.pweb-menu-toggle {
    display: none;
}


/* ========================================
SP MENU
PCでは非表示
======================================== */

.pweb-sp-menu {
    display: none;
}


/* ========================================
SP FIXED CONTACT
PCでは非表示
======================================== */

.pweb-sp-fixed-contact {
    display: none;
}


/* ========================================
SP
======================================== */

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

    /* ----------------------------------------
    HEADER
    ---------------------------------------- */

    .pweb-header-inner {
        min-height: 70px;
        padding: 10px 75px 10px 15px;
        gap: 15px;
    }


    /* ----------------------------------------
    LOGO
    ---------------------------------------- */

    .pweb-header-logo {
        min-width: 0;
        flex: 1;
    }

    .pweb-header-logo img {
        width: auto;
        max-width: 190px;
        max-height: 50px;
    }


    /* ----------------------------------------
    PC CONTACT 非表示
    ---------------------------------------- */

    .pweb-header-contact {
        display: none;
    }


    /* ----------------------------------------
    TOGGLE
    右上固定・三本線＋MENU
    ---------------------------------------- */

    .pweb-menu-toggle {
        position: fixed;
        top: 10px;
        right: 12px;
        z-index: 10002;

        width: 50px;
        height: 54px;
        padding: 5px 6px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        background-color: rgba(255, 255, 255, 0.84) !important;
        border: none !important;
        border-radius: 4px;
        box-shadow: none !important;

        cursor: pointer;
        box-sizing: border-box;
    }

    .pweb-menu-toggle:hover,
    .pweb-menu-toggle:focus,
    .pweb-menu-toggle:active {
        background-color: rgba(255, 255, 255, 0.84) !important;
        border: none !important;
        box-shadow: none !important;
        outline: none;
    }


    /* 三本線をまとめる部分 */

    .pweb-menu-lines {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 28px !important;
        height: 24px !important;

        margin: 0;
        padding: 0;

        background: transparent !important;

        gap: 5px;
    }


    /* 三本線 */

    .pweb-menu-lines > span {
        display: block;

        width: 28px !important;
        height: 2px !important;

        margin: 0;
        padding: 0;

        background-color: #3a2b23 !important;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* MENU文字 */

    .pweb-menu-text {
        display: block !important;

        width: auto !important;
        height: auto !important;

        margin: 2px 0 0;
        padding: 0;

        background: transparent !important;
        color: #3a2b23 !important;

        font-family: Arial, sans-serif;
        font-size: 9px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.08em;
    }


    /* ----------------------------------------
    開いたら三本線だけ ×
    ---------------------------------------- */

    .pweb-menu-toggle.is-open .pweb-menu-lines > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .pweb-menu-toggle.is-open .pweb-menu-lines > span:nth-child(2) {
        opacity: 0;
    }

    .pweb-menu-toggle.is-open .pweb-menu-lines > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* ----------------------------------------
    SP MENU
    スクロール位置に関係なく画面上部に表示
    ---------------------------------------- */

    .pweb-sp-menu {
        display: none;

        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        width: 100%;
        margin: 0;
        padding: 74px 0 0;

        background-color: rgba(248, 244, 239, 0.98);

        box-shadow: 0 4px 12px rgba(58, 43, 35, 0.10);

        z-index: 10001;

        box-sizing: border-box;
    }

    .pweb-sp-menu.is-open {
        display: block;
    }

    .pweb-sp-menu ul {
        width: 100%;
        margin: 0;
        padding: 0;

        background-color: #f8f4ef;

        list-style: none;
    }

    .pweb-sp-menu li {
        margin: 0;
        padding: 0;

        border-bottom: 1px solid #e5ddd4;
    }

    .pweb-sp-menu li:first-child {
        border-top: 1px solid #e5ddd4;
    }

    .pweb-sp-menu li a,
    .pweb-sp-menu li a:link,
    .pweb-sp-menu li a:visited,
    .pweb-sp-menu li a:hover,
    .pweb-sp-menu li a:focus,
    .pweb-sp-menu li a:active {
        display: block;

        width: 100%;
        padding: 17px 22px;

        background-color: #f8f4ef;
        color: #3a2b23;

        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;

        text-decoration: none;

        box-sizing: border-box;
    }


    /* ----------------------------------------
    画面下固定CTA
    ---------------------------------------- */

    .pweb-sp-fixed-contact {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        display: flex;
        margin: 0;
        padding: 0;
        z-index: 9999;
        box-sizing: border-box;
opacity: 0;
visibility: hidden;
transform: translateY(100%);
transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    }
/* FV通過後に表示 */
.pweb-sp-fixed-contact.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

    .pweb-sp-fixed-contact a {
        display: block;

        width: 50%;
        height: auto;

        margin: 0;
        padding: 0;

        line-height: 0;

        box-sizing: border-box;
    }

    .pweb-sp-fixed-contact img {
        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;

        margin: 0;
        padding: 0;
    }


    /* LINE */

    .pweb-sp-fixed-line,
    .pweb-sp-fixed-line:link,
    .pweb-sp-fixed-line:visited,
    .pweb-sp-fixed-line:hover,
    .pweb-sp-fixed-line:focus,
    .pweb-sp-fixed-line:active {
        text-decoration: none;
    }


    /* MAIL */

    .pweb-sp-fixed-mail,
    .pweb-sp-fixed-mail:link,
    .pweb-sp-fixed-mail:visited,
    .pweb-sp-fixed-mail:hover,
    .pweb-sp-fixed-mail:focus,
    .pweb-sp-fixed-mail:active {
        text-decoration: none;
    }


    /* ----------------------------------------
    固定CTA分の下余白
    ---------------------------------------- */

    body {
        padding-bottom: 90px;
    }

}
/********************************
FV
********************************/

.pweb-fv {
    width: 100%;
    background: #fdfcfb;
}


/********************************
PC
********************************/

.pweb-fv-pc {
    display: block;
}

.pweb-fv-sp {
    display: none;
}

.pweb-fv-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1180px;
    min-height: 600px;
    margin: 0 auto;
    padding: 55px 30px;
    box-sizing: border-box;
}


/* ------------------------------
PC：左テキスト
------------------------------ */

.pweb-fv-content {
    width: 52%;
    padding-right: 50px;
    box-sizing: border-box;
}

.pweb-fv-label {
    margin: 0 0 18px;
    color: #9a8060;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .08em;
}

.pweb-fv-title {
    margin: 0;
    padding: 0;
    color: #3a2b23;
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: .02em;
}

.pweb-fv-title span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.5;
}

.pweb-fv-lead {
    margin: 40px 0 40px 0;
    padding: 0;
    color: #3a2b23;
    font-family: "Noto Serif JP", "Yu Mincho", serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .02em;
}

.pweb-fv-target {
    margin-top: 22px;
}

.pweb-fv-target-list {
    margin: 0;
    color: #746b65;
    font-size: 16px;
    line-height: 1.7;
}

.pweb-fv-target-main {
    margin: 5px 0 0;
    color: #3a2b23;
    font-size: 20px;
    font-weight: 600;
}


/* ------------------------------
共通ボタン
------------------------------ */

.pweb-fv-buttons,
.pweb-fv-sp-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.pweb-fv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    min-height: 52px;
    padding: 10px 15px;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none !important;
}


/* LINE */

.pweb-fv-line,
.pweb-fv-line:link,
.pweb-fv-line:visited,
.pweb-fv-line:hover,
.pweb-fv-line:focus,
.pweb-fv-line:active {
    background-color: #06c755;
    color: #ffffff !important;
    border: 1px solid #06c755;
    text-decoration: none !important;
}


/* MAIL */

.pweb-fv-mail,
.pweb-fv-mail:link,
.pweb-fv-mail:visited,
.pweb-fv-mail:hover,
.pweb-fv-mail:focus,
.pweb-fv-mail:active {
    background-color: #8b6b4a;
    color: #ffffff !important;
    border: 1px solid #8b6b4a;
    text-decoration: none !important;
}


/* ------------------------------
PC：右画像
------------------------------ */

.pweb-fv-image-pc {
    display: block;
    width: 48%;
    box-sizing: border-box;
}

.pweb-fv-image-pc img {
    display: block;
    width: 100%;
    height: auto;
}


/********************************
SP
********************************/

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

    /* PCを完全に非表示 */
    .pweb-fv-pc {
        display: none;
    }

    /* SPだけ表示 */
    .pweb-fv-sp {
        display: block;
        width: 100%;
    }


    /* ------------------------------
    SP：FVメイン画像
    ------------------------------ */

    .pweb-fv-sp-main-image {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .pweb-fv-sp-main-image img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }


    /* ------------------------------
    SP：画像下テキスト
    ------------------------------ */

    .pweb-fv-sp-content {
        width: 100%;
        padding: 30px 20px 40px;
        box-sizing: border-box;
        text-align: center;
    }
    .pweb-fv-sp-catch {
        margin: 0;
        padding: 0;
        color: #3a2b23;
        font-family: "Noto Serif JP", "Yu Mincho", serif;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.55;
        letter-spacing: .0em;
        text-align: center;
    }

    .pweb-fv-sp-lead {
        margin: 20px 0 0;
        color: #514943;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.8;
        text-align: center;
    }


    /* ------------------------------
    SP：対応業種
    ------------------------------ */

    .pweb-fv-sp-target {
        margin-top: 20px;
        text-align: center;
    }

    .pweb-fv-sp-target-list {
        margin: 0;
        color: #746b65;
        font-size: 12px;
        line-height: 1.7;
        text-align: center;
    }

    .pweb-fv-sp-target-main {
        margin: 5px 0 0;
        color: #3a2b23;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }


    /* ------------------------------
    SP：ボタン
    ------------------------------ */

    .pweb-fv-sp-buttons {
        justify-content: center;
        gap: 8px;
        margin-top: 25px;
    }

    .pweb-fv-sp-buttons .pweb-fv-btn {
        width: 50%;
        min-height: 50px;
        padding: 9px 5px;
        font-size: 13px;
    }

}

/* ========================================
PC グローバルメニュー
======================================== */

.pweb-pc-nav {
	width: 100%;
	background-color: #fdfcfb;
	box-shadow: 0 3px 10px rgba(58, 43, 35, 0.05);
}

.pweb-pc-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
	list-style: none;
	box-sizing: border-box;
}

.pweb-pc-nav li {
	position: relative;
	margin: 0;
	padding: 0;
}

/* 項目間の小さなアクセント */
.pweb-pc-nav li + li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 14px;
	background-color: #d8c9b8;
	transform: translateY(-50%);
}

.pweb-pc-nav a,
.pweb-pc-nav a:link,
.pweb-pc-nav a:visited {
	position: relative;
	display: block;
	padding: 15px 27px 14px;
	color: #4b4039 !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .04em;
	text-decoration: none !important;
	transition: color .2s ease;
}

/* 下のゴールドアクセント */
.pweb-pc-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 8px;
	width: 0;
	height: 1px;
	background-color: #9a8060;
	transform: translateX(-50%);
	transition: width .2s ease;
}

.pweb-pc-nav a:hover,
.pweb-pc-nav a:focus,
.pweb-pc-nav a:active {
	color: #9a8060 !important;
	background-color: transparent !important;
	text-decoration: none !important;
}

.pweb-pc-nav a:hover::after,
.pweb-pc-nav a:focus::after {
	width: 28px;
}


/* ========================================
SP
======================================== */

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

	.pweb-pc-nav {
		display: none;
	}

}