@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/


/* ========================================================

　Grobal Setting

=========================================================== */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%; /* ブラウザのルートフォントサイズである16pxを、1rem＝10pxにリセット */
    -webkit-text-size-adjust: 100%; /* モバイル時に機能するフォントの自動調整を100％に */
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* ========================================================

　body

=========================================================== */

body {
    width: 100%;
    height: 100%;
    color: rgba(51, 51, 51, 1.0);
    font: normal 300 1.6em/2.4rem 'Noto Sans CJK JP', 'Noto Sans JP', 'メイリオ', 'Meiryo', 'sans-serif';
    word-wrap: break-word;
    letter-spacing: 0.0625rem;
    overflow-x: hidden;
}


/* ========================================================

　Default Link Color

=========================================================== */

a:link,
a:visited {
    color: rgba(51, 51, 51, 1.0);
    text-decoration: none;
    outline: none;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: rgba(230, 90, 0, 1.0);
}

a:active,
a.active {
    color: rgba(230, 0, 20, 1.0);
}


/* ========================================================

　section & h1～h6 & Other Text

=========================================================== */

/*　section
----------------------------------------------------------- */
.pageSection {
    padding: 9.0rem 0;
}

.pageSection .heading {
    margin-bottom: 5.0rem;
    color: rgba(0, 0, 0, 1.0);
    text-align: center;
}

/* メインタイトル */
.pageSection .heading h2 {
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 3.6rem;
    letter-spacing: 0.5rem;
}

/* & */
.pageSection .heading h2 span {
    font-size: 1.8rem;
}

/* line */
.pageSection .heading aside {
    margin: 0.5rem auto;
    width: 14.0rem;
    height: 0.1rem;
    background-color: rgba(0, 0, 0, 1.0);
}

/* サブタイトル */
.pageSection .heading p {
    font-size: 1.4rem;
}

/* 電話番号 */
.pageSection span.phone {
    display: block;
    margin-top: 1.0rem;
    font-family: Montserrat;
    font-size: 2.4rem;
    font-weight: 600;
}

.pageSection span.phone i {
    position: relative;
    top: -0.1rem;
    margin-right: 0.5rem;
    font-size: 2.0rem;
}

.note {
    margin-top: 5.0rem;
    margin-bottom: 5.0rem;
    padding: 2.0rem;
    border-radius: 0.6rem;
    background-color: rgba(240, 240, 240, 0.7);
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.4rem;
    line-height: 2.0rem;
}

@media only screen and (min-width: 768px) {

    .pageSection {
        padding: 10.0rem 0;
    }

    .note {
        padding: 3.0rem;
    }

}

/*　text
----------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0; /* すべての head の余白をゼロに */
    font-weight: 400;
}

p,
li {
    margin-bottom: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}


/* ========================================================

　Archive

=========================================================== */

/*　#saleLoops
----------------------------------------------------------- */
#saleLoops div[class^="col"] {
    margin-bottom: 1.0rem;
}

.home #saleLoops div[class^="col"]:last-child {
    margin-bottom: 0;
}

/* ベース */
#saleLoops .card {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    padding-bottom: 5.0rem;
}

/* 商品写真 */
#saleLoops .card img {
    width: 100%;
    height: auto;
}

/* 商品名 */
#saleLoops .card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 400;
}

/* 商品説明文 */
#saleLoops .card p {
    font-size: 1.4rem;
    line-height: 2.0rem;
}

/* 価格 */
#saleLoops .card h5 {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    font-family: Montserrat;
    font-size: 1.8rem;
    font-weight: 500;
}

#saleLoops .card h5::before {
    content: "￥";
}

#saleLoops .card h5::after {
    font-size: 1.4rem;
    content: "（税込）";
}

@media only screen and (min-width: 768px) {

    .home #saleLoops div[class^="col"]:nth-last-child(-n+3) {
        margin-bottom: 0;
    }

}

/*　#postLoops
----------------------------------------------------------- */
#postLoops div[class^="col"] {
    margin-bottom: 1.0rem;
}

.home #postLoops div[class^="col"]:last-child {
    margin-bottom: 0;
}

/* ベース */
#postLoops .card {
    position: relative;
    height: 100%;
    padding: 1.0rem;
    padding-bottom: 6.0rem;
}

/* 写真 */
#postLoops .card img {
    width: 100%;
    height: auto;
}

/* 日付 */
#postLoops .card aside {
    margin-bottom: 0.5rem;
}

/* NEW */
#postLoops .card aside span {
    margin-left: 0.5rem;
    color: rgba(255, 0, 0, 1.0);
    font-size: 1.4rem;
    font-weight: 400;
}

/* タイトル */
#postLoops .card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 400;
}

/* 詳しく見る */
#postLoops .card div {
    position: absolute;
    bottom: 1.0rem;
    width: calc(100% - 2.0rem);
    padding: 1.0rem 0;
    border-radius: 0.2rem;
    background-color: rgba(205, 170, 115, 0.25);
    text-align: center;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#postLoops a:hover .card div {
    background-color: rgba(205, 170, 115, 0.5);
}

@media only screen and (min-width: 768px) {

    .home #postLoops div[class^="col"]:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

}

@media only screen and (min-width: 992px) {

    .home #postLoops div[class^="col"]:nth-last-child(-n+4) {
        margin-bottom: 0;
    }

}

/*　pagination
----------------------------------------------------------- */
.postNav {
    margin-top: 5.0rem;
}

.pagination h2 {
    display: none;
}

.pagination .nav-links {
    margin: 0 auto;
    font-family: Montserrat;
    text-align: center;
}

.pagination .nav-links .current {
    display: inline-block;
    width: 3.0rem;
    height: 3.0rem;
    border: 1px solid rgba(230, 0, 20, 1.0);
    border-radius: 50%;
    background-color: rgba(230, 0, 20, 1.0);
    color: rgba(255, 255, 255, 1.0);
    line-height: 3.0rem;
}

.pagination .nav-links .dots {
    display: inline-block;
    line-height: 3.0rem;
}

.pagination .nav-links a.page-numbers {
    display: inline-block;
    width: 3.0rem;
    height: 3.0rem;
    margin: 0 0.75rem;
    border: 1px solid rgba(85, 85, 85, 1.0);
    border-radius: 50%;
    line-height: 3.0rem;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.pagination .nav-links a.page-numbers:hover {
    border: 1px solid rgba(205, 170, 115, 1.0);
    background-color: rgba(205, 170, 115, 1.0);
    color: rgba(255, 255, 255, 1.0);
}

.pagination .nav-links a.prev.page-numbers,
.pagination .nav-links a.next.page-numbers {
    width: auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    border: 0;
    border-radius: 0;
    color: rgba(0, 70, 160, 1.0);
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.pagination .nav-links a.prev.page-numbers:hover,
.pagination .nav-links a.next.page-numbers:hover {
    background-color: rgba(255, 255, 255, 1.0);
    color: rgba(230, 90, 40, 1.0);
}


/* ========================================================

　footer

=========================================================== */

#footer {
    padding: 4.0rem 0 9.0rem;
    background-color: rgba(27, 27, 27, 1.0);
    color: rgba(204, 204, 204, 1.0);
    text-align: center;
    line-height: 3.0rem;
}

/* 電話番号 */
#footer span.phone {
    font-family: Montserrat;
    font-size: 2.0rem;
    font-weight: 600;
}

#footer span.phone i {
    position: relative;
    top: -0.1rem;
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

/* link & Copyright */
#footer ul {
    margin: 0;
    margin-top: 2.0rem;
    list-style: none;
}

#footer li {
    display: inline-block;
    font-size: 1.4rem;
}

.privacy #footer li:first-child {
    display: none;
}

/* プライバシーポリシーリンク */
#footer a {
    color: rgba(204, 204, 204, 1.0);
}

#footer a:hover {
    color: rgba(255, 255, 255, 1.0);
}

/* Copyright */
#footer aside {
    font-family: Montserrat;
    font-size: 1.4rem;
}

@media only screen and (min-width: 576px) {

    #footer li {
        margin-right: 4.0rem;
    }

    #footer li:last-child {
        margin-right: 0;
    }

}

@media only screen and (min-width: 992px) {

    #footer {
        padding: 4.0rem 0;
    }

    #footer br {
        display: none;
    }

}


/* ========================================================

　Fixed Menu

=========================================================== */

/*　モバイル時、ページ下部に固定
----------------------------------------------------------- */
#onMobile {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 1.0rem 0 0.75rem;
    background-color: rgba(90, 75, 65, 0.9);
    z-index: 1024;
}

#onMobile ul {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#onMobile li {
    display: inline-block;
    margin-right: 4.0rem;
}

#onMobile li:first-child aside {
    display: none;
}

#onMobile li:nth-child(2) aside {
    display: none;
}

.contact #onMobile li:nth-child(2) {
    display: none;
}

.privacy #onMobile li:nth-child(3) {
    display: none;
}

#onMobile li:last-child {
    margin-right: 0;
}

#onMobile i {
    color: rgba(255, 255, 255, 1.0);
    font-size: 3.0rem;
}

@media only screen and (min-width: 768px) {

    #onMobile {
        padding: 1.5rem 0 1.0rem;
    }

    #onMobile li:first-child span {
        display: none;
    }

    #onMobile li:first-child aside {
        display: inline;
        color: rgba(255, 255, 255, 1.0);
        font-family: Montserrat;
        font-size: 2.4rem;
        font-weight: 600;
    }

    #onMobile li:first-child aside i {
        position: relative;
        top: -0.1rem;
        margin-right: 0.5rem;
        font-size: 2.0rem;
    }

    #onMobile li:nth-child(2) aside {
        display: inline;
        color: rgba(255, 255, 255, 1.0);
        font-size: 2.0rem;
        font-weight: 400;
    }

    #onMobile li:nth-child(2) i {
        position: relative;
        top: 0.2rem;
    }

    #onMobile i {
        color: rgba(255, 255, 255, 1.0);
        font-size: 2.4rem;
    }

}

@media only screen and (min-width: 992px) {

    #onMobile {
        display: none;
    }

}


/* ========================================================

　Scroll to Pagetop

=========================================================== */

@media only screen and (min-width: 992px) {

    .scroll-to-top {
        display: none;
        right: 0;
        bottom: 0;
        width: 15.0vw;
        max-width: 6.0rem;
        height: auto;
        -webkit-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out;
        -webkit-animation: slideInBottom 0.3s;
        animation: slideInBottom 0.3s;
        z-index: 1042;
    }

    .scroll-to-top img {
        width: 100%;
        height: auto;
        opacity: 0.7;
    }

    .scroll-to-top:hover img {
        opacity: 1.0;
    }

}

@-webkit-keyframes slideInBottom {

    0% {
        opacity: 0;

        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}

@keyframes slideInBottom {

    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}


/* ========================================================

　Modal Window

=========================================================== */

/*　モーダル
----------------------------------------------------------- */
#privacy .modal-dialog {
    max-width: 100vw;
    margin: 1.0rem;
}

#privacy .modal-content {
    padding-top: 6.0rem;
    padding-bottom: 6.0rem;
}

#privacy h2 {
    text-align: center;
}

#privacy .modal-content h2 {
    margin-bottom: 1.0rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
}

#privacy .lead {
    text-align: center;
}

/* 電話番号 */
#privacy span.phone {
    font-family: Montserrat;
    font-size: 1.8rem;
}

#privacy span.phone i {
    position: relative;
    top: -0.1rem;
    margin-right: 0.5rem;
    font-size: 1.6rem;
}

#privacy dt {
    margin-bottom: 1.0rem;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
}

#privacy dd {
    margin-bottom: 5.0rem;
    font-size: 1.4rem;
    line-height: 2.0rem;
}

#privacy dd:last-child {
    margin-bottom: 0;
}

#privacy ul,
#privacy ol {
    margin: 1.0rem 0 1.0rem 3.0rem;
    line-height: 3.0rem;
}

/* close */
#privacy .close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3.0rem;
    height: 3.0rem;
    background-color: transparent;
    cursor: pointer;
}

#privacy .close-modal:hover {
    opacity: 0.7;
}

@media only screen and (min-width: 576px) {

    #privacy h2 br,
    #privacy .lead br {
        display: none;
    }

}

@media only screen and (min-width: 768px) {

    #privacy .modal-dialog {
        max-width: 64.0rem;
        margin: 2.0rem auto;
    }

    #privacy .modal-content {
        padding-left: 6.0rem;
        padding-right: 6.0rem;
    }

}

@media only screen and (min-width: 992px) {

    #privacy .modal-dialog {
        max-width: 80.0rem;
    }

    #privacy .modal-content {
        padding-left: inherit;
        padding-right: inherit;
    }

}

@media only screen and (min-width: 1200px) {

    #privacy .modal-dialog {
        max-width: 100.0rem;
    }

}


/* ========================================================

　Other

=========================================================== */

/*　breadCrumb
----------------------------------------------------------- */
#breadCrumb {
    padding: 1.0rem 0;
    background-color: rgba(240, 240, 240, 1.0);
}

#breadCrumb p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    word-wrap: normal;
}

#breadCrumb span::before {
    margin-left: 0.75rem;
    margin-right: 0.25rem;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 700;
}

#breadCrumb span:first-child::before {
    content: none;
}

#breadCrumb span:first-child span::before {
    content: "\f015";
}

/*　image
/*-------------------------------------------*/
img {
    -webkit-backface-visibility: hidden; /* 画像をシャープに */
    backface-visibility: hidden;
}

a img {
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

a:hover img {
    opacity: 0.7;
}

/*　button
/*-------------------------------------------*/
.button {
    margin-top: 5.0rem;
    text-align: center;
}

.btn {
    margin: 0 auto;
    padding: 1.25rem 2rem;
    border: 0;
    background-color: rgba(90, 75, 65, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.6rem;
    outline: none;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.pageSection .btn {
    width: 100%;
}

.btn:hover {
    color: rgba(255, 255, 255, 1.0);
    opacity: 0.7;
}



/* break point --------------------------------------------
	<576px , >=576px , =>768px , =>992px , =>1200px
	iPhone5 320x568
	iPhone6-8 375x667 *
	iPhone6-8Plus 414x736
	iPhoneX 375x812
	iPad（iPad Mini）768x1024 *
	iPadPro 1024x1366
	Pixel2 411x731
	Pixel2 XL 411x823
	PC lg 992 *
	PC xl 1200 *
----------------------------------------------------------- */
/* branc --------------------------------------------------
	1-0.25rem
	2-0.5rem
	3-1.0rem
	4-1.5rem
	5-3.0rem
----------------------------------------------------------- */
/* Montserrat -------------------------------------------
	Regular 400
	Medium 500
	Semi-bold 600
	Bold 700
    Extra-bold 800
    Black 900
----------------------------------------------------------- */
/* Noto Sans JP -------------------------------------------
	Light 300
	Regular 400
	Medium 500
	Bold 700
    Black 900
----------------------------------------------------------- */

/* ---- End of file --------------------------------------- */