/* =========================================================
   おがわ園 トップページ ヘッダー
   PC版
   ========================================================= */


/* ---------------------------------------------------------
   全体
   --------------------------------------------------------- */

.ogawa-site-header {
    width: 100%;
    margin: 0;
    padding: 0;

    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;

    color: #222;
}

.ogawa-site-header *,
.ogawa-site-header *::before,
.ogawa-site-header *::after {
    box-sizing: border-box;
}

.ogawa-site-header a {
    color: inherit;
    text-decoration: none;
}


/* ---------------------------------------------------------
   共通幅
   --------------------------------------------------------- */

.ogawa-header-inner,
.ogawa-campaign-inner {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   メインヘッダー
   --------------------------------------------------------- */

.ogawa-header-main {
    width: 100%;
    height: 72px;

    background: #fff;

    border-bottom: 1px solid #e9e9e9;
}

.ogawa-header-inner {
    height: 100%;

    display: flex;
    align-items: center;
}


/* ---------------------------------------------------------
   ロゴ
   --------------------------------------------------------- */

.ogawa-logo {
    width: 205px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.ogawa-logo-leaf {
    width: 38px;
    height: 38px;

    margin-right: 9px;

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

    border-radius: 50%;

    background: #edf3e8;

    color: #4b7939;

    font-size: 20px;
}

.ogawa-logo-text {
    display: flex;
    flex-direction: column;
}

.ogawa-logo-text strong {
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 22px;

    line-height: 1;

    letter-spacing: .12em;
}

.ogawa-logo-text small {
    margin-top: 5px;

    font-size: 9px;

    color: #666;

    letter-spacing: .06em;
}


/* ---------------------------------------------------------
   グローバルナビ
   --------------------------------------------------------- */

.ogawa-nav {
    height: 100%;

    display: flex;
    align-items: center;

    flex: 1;
}

.ogawa-nav-link {
    position: relative;

    height: 100%;

    padding: 0 14px;

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

    font-size: 13px;

    white-space: nowrap;

    transition: color .2s ease;
}

.ogawa-nav-link:hover {
    color: #4d793b;
}


/* 下線 */

.ogawa-nav-link::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 0;

    height: 3px;

    background: #4c7a3b;

    transform: scaleX(0);

    transition: transform .2s ease;
}

.ogawa-nav-link:hover::after,
.ogawa-nav-link.ogawa-active::after {
    transform: scaleX(1);
}


/* ---------------------------------------------------------
   右側メニュー
   --------------------------------------------------------- */

.ogawa-header-menu {
    height: 100%;

    display: flex;

    border-left: 1px solid #eeeeee;

    flex-shrink: 0;
}

.ogawa-header-menu-item {
    width: 72px;
    height: 100%;

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

    border-right: 1px solid #eeeeee;

    transition: background .2s ease;
}

.ogawa-header-menu-item:hover {
    background: #f5f8f2;
}

.ogawa-header-menu-item > span:last-child {
    margin-top: 5px;

    font-size: 9px;
}


/* ---------------------------------------------------------
   アイコン
   --------------------------------------------------------- */

.ogawa-menu-icon {
    position: relative;

    width: 24px;
    height: 24px;

    display: block;
}


/* 検索 */

.ogawa-search-icon {
    width: 17px;
    height: 17px;

    margin-top: -3px;

    border: 2px solid #222;

    border-radius: 50%;
}

.ogawa-search-icon::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 2px;

    right: -6px;
    bottom: -3px;

    background: #222;

    transform: rotate(48deg);
}


/* ユーザー */

.ogawa-user-icon::before {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    top: 1px;
    left: 7px;

    border: 2px solid #222;

    border-radius: 50%;
}

.ogawa-user-icon::after {
    content: "";

    position: absolute;

    width: 17px;
    height: 9px;

    left: 3px;
    bottom: 1px;

    border: 2px solid #222;
    border-bottom: 0;

    border-radius: 12px 12px 0 0;
}


/* カート */

.ogawa-cart-icon::before {
    content: "🛒";

    position: absolute;

    left: 0;
    top: -2px;

    font-size: 21px;
}


/* ---------------------------------------------------------
   キャンペーンバー
   --------------------------------------------------------- */

.ogawa-campaign {
    width: 100%;

    background:
        linear-gradient(
            90deg,
            #c9143c 0%,
            #df2149 55%,
            #b50d32 100%
        );

    color: #fff;
}

.ogawa-campaign-inner {
    height: 58px;

    display: flex;
    align-items: center;
}


/* 左側 */

.ogawa-campaign-left {
    display: flex;
    align-items: center;

    min-width: 370px;
}

.ogawa-gift-icon {
    margin-right: 13px;

    font-size: 29px;
}

.ogawa-campaign-small {
    font-size: 17px;

    font-weight: 700;
}

.ogawa-campaign-price {
    margin-left: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;

    line-height: 1;
}


/* キャンペーンボタン */

.ogawa-campaign-button {
    height: 38px;

    width: 335px;

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

    background: #fff;

    color: #b51335 !important;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.ogawa-campaign-button span {
    margin-left: 18px;

    font-size: 21px;
}


/* 右側 */

.ogawa-campaign-info {
    margin-left: auto;

    display: flex;
    flex-direction: column;

    gap: 3px;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   メインビジュアル
   --------------------------------------------------------- */

.ogawa-main-visual {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #edf2e8;
}


/* メイン画像 */

.ogawa-main-visual-image {
    width: 100%;

    line-height: 0;
}

.ogawa-main-visual-image img {
    width: 100%;
    height: auto;

    display: block;
}


/* ---------------------------------------------------------
   ログインパネル
   --------------------------------------------------------- */

/* =========================================================
   おがわ園 メインビジュアル
   ログインパネル位置調整
   基準画像：W1920 × H700px
   ========================================================= */

.ogawa-login-panel {
    position: absolute;

    top: 20%;
    right: 5.5%;

    width: 245px;

    padding: 16px 14px 13px;

    background: rgba(255, 255, 255, 0.97);

    border-radius: 5px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    z-index: 10;
}

/* ---------------------------------------------------------
   さらに狭いPC画面
   --------------------------------------------------------- */

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

    .ogawa-login-panel {
        width: 215px;
        padding: 12px 10px 10px;
    }

}


/* タイトル */

.ogawa-login-title {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    font-size: 15px;

    font-weight: 700;
}

.ogawa-login-user-icon {
    width: 20px;
    height: 20px;

    margin-right: 7px;

    position: relative;
}

.ogawa-login-user-icon::before {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 0;
    left: 6px;

    background: #47743b;

    border-radius: 50%;
}

.ogawa-login-user-icon::after {
    content: "";

    position: absolute;

    width: 17px;
    height: 9px;

    left: 2px;
    bottom: 0;

    background: #47743b;

    border-radius: 10px 10px 2px 2px;
}


/* 入力欄 */

.ogawa-input-wrap {
    position: relative;

    width: 100%;

    margin-bottom: 8px;
}

.ogawa-input-wrap input {
    width: 100%;
    height: 36px;

    padding: 0 30px 0 34px;

    border: 1px solid #cfcfcf;

    border-radius: 4px;

    background: #fff;

    font-size: 11px;

    outline: none;
}

.ogawa-input-wrap input:focus {
    border-color: #4c793b;
}

.ogawa-input-icon {
    position: absolute;

    left: 10px;
    top: 50%;

    transform: translateY(-50%);

    color: #777;

    font-size: 9px;

    font-weight: 700;

    z-index: 2;
}


/* パスワード表示 */

.ogawa-password-eye {
    position: absolute;

    right: 7px;
    top: 50%;

    transform: translateY(-50%);

    border: none;

    background: none;

    color: #777;

    font-size: 8px;

    cursor: pointer;
}


/* ログイン維持 */

.ogawa-login-save {
    display: flex;
    align-items: center;

    margin: 4px 0 9px;

    font-size: 10px;

    color: #555;
}

.ogawa-login-save input {
    margin-right: 5px;
}


/* ログインボタン */

.ogawa-login-submit {
    width: 100%;
    height: 36px;

    border: none;
    border-radius: 20px;

    background: #4b783b;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}

.ogawa-login-submit:hover {
    background: #3c622f;
}

.ogawa-login-submit span {
    float: right;

    margin-right: 13px;

    font-size: 20px;

    line-height: 15px;
}


/* パスワード忘れ */

.ogawa-forgot-password {
    display: block;

    padding: 8px 0 10px;

    text-align: center;

    border-bottom: 1px solid #ddd;

    font-size: 10px;

    color: #666 !important;
}

.ogawa-forgot-password:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   新規会員登録
   --------------------------------------------------------- */

.ogawa-new-member {
    padding-top: 10px;

    text-align: center;
}

.ogawa-new-member-title {
    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;
}

.ogawa-new-member-button {
    width: 100%;
    height: 36px;

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

    position: relative;

    background: #dc1c45;

    color: #fff !important;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 700;
}

.ogawa-new-member-button strong {
    margin-left: 5px;

    font-size: 15px;
}

.ogawa-new-member-button span {
    position: absolute;

    right: 10px;

    font-size: 18px;
}

.ogawa-new-member p {
    margin: 6px 0 0;

    font-size: 9px;

    line-height: 1.5;

    color: #555;
}


/* ---------------------------------------------------------
   PC幅が少し狭い場合
   --------------------------------------------------------- */

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

    .ogawa-header-inner,
    .ogawa-campaign-inner {
        max-width: calc(100% - 30px);
    }

    .ogawa-nav-link {
        padding: 0 8px;
    }

    .ogawa-nav-link::after {
        left: 8px;
        right: 8px;
    }

    .ogawa-logo {
        width: 175px;
    }

}
/* =========================================================
   会員ログイン案内
   メインビジュアル直下
========================================================= */

.ogawa-member-login {
    width: 100%;
    padding: 28px 0;
    background: #f7f8f4;
    box-sizing: border-box;
}

.ogawa-member-login-inner {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;

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

    padding: 22px 30px;

    background: #ffffff;
    border: 1px solid #dfe5d8;
    box-sizing: border-box;

    box-shadow: 0 3px 14px rgba(50,65,45,0.06);
}


/* ---------------------------------------------------------
   左側：会員案内
--------------------------------------------------------- */

.ogawa-member-login-text {
    flex: 1;
    min-width: 0;
}

.ogawa-member-login-en {
    display: block;

    margin-bottom: 2px;

    color: #78916d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    line-height: 1.2;
}

.ogawa-member-login-text h2 {
    margin: 0;

    color: #30382e;

    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.ogawa-member-login-text p {
    margin: 4px 0 0;

    color: #666666;

    font-size: 12px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   右側：ボタン
--------------------------------------------------------- */

.ogawa-member-login-buttons {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
    margin-left: 25px;
}


/* 共通 */
.ogawa-member-login-btn,
.ogawa-member-register-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 205px;
    height: 46px;

    padding: 0 16px;

    box-sizing: border-box;
    border-radius: 3px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* 会員ログイン */
.ogawa-member-login-btn {
    background: #527547;
    color: #ffffff !important;

    border: 1px solid #527547;
}

.ogawa-member-login-btn strong {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.ogawa-member-login-btn:hover {
    background: #3f6136;
    color: #ffffff !important;

    transform: translateY(-1px);
}


/* 新規会員登録 */
.ogawa-member-register-btn {
    background: #ffffff;
    color: #527547 !important;

    border: 1px solid #78916d;
}

.ogawa-member-register-btn strong {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.ogawa-member-register-btn:hover {
    background: #f1f5ed;
    color: #527547 !important;

    transform: translateY(-1px);
}


/* =========================================================
   1250px以下
========================================================= */

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

    .ogawa-member-login-inner {
        max-width: calc(100% - 30px);
    }

    .ogawa-member-login-buttons {
        margin-left: 18px;
    }

    .ogawa-member-login-btn,
    .ogawa-member-register-btn {
        width: 190px;
    }

}