@charset "utf-8";


html {
    font-size: 1rem;
    font-family: "iroha-26tubaki-stdn", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .15rem;
    color: #464646;
    border: none;
    text-decoration: none;
}

@media (max-width: 600px) {
    html {
        width: 100%;
        font-size: .8rem;
        letter-spacing: .08rem;
    }
}

body {
    width: 70%;
    margin: 0 auto;
    background: #fff;
}

@media (max-width: 600px) {
    body {
        width: 95%;
    }
}

img {
    width: 100%;
}

a {
    color: #464646;
    text-decoration: none;
}

h1 {
    line-height: 150%;
    margin: 10px 0;
}

h2 {
    font-size: 1.2rem;
    line-height: 150%;
    font-weight: normal;
    margin-bottom: 10px;
}

h3 {
    display: none;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.2rem;
        ;
    }

    h2 {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 0;
    }

    p {
        font-size: .8rem;
    }

    h3 {
        display: block;
        font-size: 2rem;
    }
}


/* インフォメーション */

#riso-head {
    margin: 50px auto;
    border-bottom: #B19358 1px solid;
}

.info-style {
    display: grid;
    grid-template-columns: 27% 72.5%;
    margin: 20px auto 20px;

}

.info-style img {
    width: 70%;
}

.info-inner {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.info-inner a {
    font-weight: 300;
    margin-left: 15px;
    /* color: #df986e; */
    font-size: 1rem;
}

.info-inner a:hover {
    color: #B19358;
}

.info-inner div:not(:last-child)::after {
    display: inline-block;
    margin-left: 15px;
    color: #bbbbbb;
    content: '/';
}


@media (max-width: 600px) {
    #riso-head {
        display: none;
    }
}

/* ハンバーガーメニュー */
header {
    display: none;
}

@media (max-width: 600px) {
    header {
        display: block;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        background: #fff;
        margin-top: 10px;
    }

    .logo {
        width: 150px;
    }

    /* ここから下がハンバーガーメニューに関するCSS */

    /* チェックボックスを非表示にする */
    .drawer_hidden {
        display: none;
    }

    /* ハンバーガーアイコンの設置スペース */
    .drawer_open {
        display: flex;
        height: 40px;
        width: 40px;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 100;
        /* 重なり順を一番上にする */
        cursor: pointer;
    }

    /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: '';
        display: block;
        height: 2.5px;
        width: 20px;
        /* border-radius: 2px; */
        background: #b19358;
        transition: 0.5s;
        position: absolute;
    }

    /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
        bottom: 6px;
    }

    /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
        top: 6px;
    }

    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked~.drawer_open span {
        background: rgba(255, 255, 255, 0);
    }

    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked~.drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #drawer_input:checked~.drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* メニューのデザイン*/
    .nav_content {
        padding-top: 50px;
        width: 100%;
        height: 210px;
        position: fixed;
        top: 0;
        left: 100%;
        /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: rgba(255, 255, 255, 0.8);
        transition: .5s;
    }

    /* メニュー黒ポチを消す */
    .nav_list {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .nav_item {
        padding-top: 10px;
        border-bottom: #B19358 1px solid;
    }

    /* アイコンがクリックされたらメニューを表示 */
    #drawer_input:checked~.nav_content {
        left: 0;
        /* メニューを画面に入れる */
    }
}



/* 導入部分 */
#waterproof {
    text-align: center;
    margin-bottom: 50px;
}

#waterproof img {
    width: 100%;
}

#waterproof h1 {
    margin-top: 30px;
}

img.sponly-bana {
    display: none;
}

#waterproof ul {
    display: flex;
    justify-content: space-around;
    margin: 3% 10%;
}

#waterproof li {
    list-style: none;
    font-size: 1.2rem;
    font-weight: bold;
}

#waterproof li:hover {
    transform: translateY(-5px);
}

li a {
    color: #7795ce;
}

.dli-chevron-down {
    display: inline-block;
    vertical-align: middle;
    color: #949494;
    line-height: 1;
    width: 0.8rem;
    height: 0.8rem;
    border: 0.2em solid #7795ce;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-45%) rotate(135deg);
    margin-right: 15px;
}

.sptext {
    display: none;
}


@media (max-width: 600px) {
    #waterproof {
        margin-bottom: 0;
    }

    #waterproof img {
        width: 100%;
    }

    #waterproof h1 {
        margin-top: 15px;
    }

    #waterproof ul {
        margin: 2% 2%;
    }

    #waterproof li {
        font-size: 1rem;
    }


    .dli-chevron-down {
        width: 0.5rem;
        height: 0.5rem;
        border: 0.2em solid #7795ce;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: translateY(-35%) rotate(135deg);
        margin-right: 5px;
    }

    .sptext{
        display: inline;
    }

    .pctext{
        display: none;
    }

     #waterproof p {
        width: 80%;
        margin: 0 auto;
        line-height: 170%;
    }

    img.pconly-bana {
        display: none;
    }

    img.sponly-bana {
        display: block;
    }
}



/* ポイント　アコーディオン */
/* #point{
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

@media (max-width: 600px){
    #point{
        margin: 20px auto;
        padding: 0;
    }
}

.accordion-004 {
    max-width: 70%;
    margin: 0 auto 10px;
    border-radius: 10px;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #666;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #666;
    border-right: 3px solid #666;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
    text-align: left;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
} */

/* カテゴリー */
.jump {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5%;
    width: 80%;
    margin: 50px auto;
}

.jump button {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border: none;
    background: none;
    color: #fff4f3;
    border-radius: 20px;
}

.jump button.button-1 {
    /* background-image: url(https://image.rakuten.co.jp/c-eternal/cabinet/03400642/sozai-02.jpg); */
    background-size: cover;
    background-color: rgba(73, 66, 61, 0.5);
    background-blend-mode: overlay;
}

.jump button.button-2 {
    /* background-image: url(https://image.rakuten.co.jp/c-eternal/cabinet/03400642/sozai-03.jpg); */
    background-size: cover;
    background-position: center;
    background-color: rgba(73, 66, 61, 0.5);
    background-blend-mode: overlay;
}

.jump button.button-3 {
    /* background-image: url(https://image.rakuten.co.jp/c-eternal/cabinet/03400642/sozai-04.jpg); */
    background-size: cover;
    background-position: bottom;
    background-color: rgba(80, 79, 79, 0.5);
    background-blend-mode: overlay;
}


/* 商品 */

#pile {
    background: #fffedf;
    margin: 20px auto 0;
    padding: 40px 0 20px;
}

#mesh {
    background: #e6eaf3;
    margin: 0 auto;
    padding: 60px 0 20px;
}

#pet {
    background: #dde6d8;
    margin: 0 auto 20px;
    padding: 60px 0 20px;
}

.yokonarabi {
    display: grid;
    grid-template-columns: 55% 41%;
    gap: 4%;
    padding: 0 10%;
    align-items: center;
}

.yokonarabi img {
    border-radius: 10px;
    width: 100%;
}

.yokonarabi-2 {
    display: grid;
    grid-template-columns: 41% 55%;
    gap: 4%;
    padding: 0 10%;
    align-items: center;
}

.yokonarabi-2 img {
    border-radius: 10px;
    width: 100%;
}

@media (max-width: 600px){
    #pile,#mesh,#pet{
        padding: 10px 0 20px;
    }

    .yokonarabi,.yokonarabi-2{
        padding: 0 20px;
    }

}



.tab-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    margin: 30px auto;
    width: 80%;
}

@media (max-width: 600px) {
    .tab-group {
        width: 90%;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 15px auto;
    }
}



.tab-comment {
    text-align: left;
    padding: 0 2%;
    margin-top: 50px;
    color: #B19358;
}

@media (max-width: 600px) {
    .tab-comment {
        padding: 0 3px;
        margin-top: 20px;
    }
}


/* tab-item */

.tab-item {
    text-align: left;
}

.tab-item img {
    margin-top: 5px;
}

.itemtitle {
    font-size: 1.1rem;
    line-height: 120%;
}

.itemsize,.itemsize-f,.itemsize-cm{
    margin: 10px 0;
}

.itemsize a{
    display: inline-block;
    justify-content: center;
    text-align: center;
    width: 35px;
    height: 35px;
    border: #b9b9b9 1px dotted;
    letter-spacing: normal;
}


.itemsize-f a{
    display: inline-block;
    justify-content: center;
    text-align: center;
    width: 60px;
    height: 35px;
    border: #b9b9b9 1px dotted;
    letter-spacing: normal;
}

.itemsize-cm a{
    display: inline-block;
    vertical-align:middle;
    text-align: center;
    width: 100px;
    height: 35px;
    border: #b9b9b9 1px dotted;
    letter-spacing: normal;
    margin-bottom: 5px;
}

.itemsize a:hover,.itemsize-f a:hover,.itemsize-cm a:hover{
    background: #b9b9b9;
    color: #fff;
}

@media (max-width: 600px) {
    .itemsize-cm,.itemsize-f,.itemsize{
        margin: 0;
    }

    .itemsize-cm a,.itemsize-f a,.itemsize a{
        font-size: .8rem;
        display: inline;
        padding: 2% 3%;
    }
}


.itemprice:before {
    content: "送料無料 ¥";
    font-size: 0.7rem;
}

.itemprice-2:before {
    content: "送料無料 ¥";
    font-size: 0.7rem;
}

.itemprice-3:before {
    content: "送料別 ¥";
    font-size: 0.7rem;
}

.itemprice:after {
    content: "～";
}

.itemprice,
.itemprice-2,
.itemprice-3 {
    color: #B19358;
}

@media (max-width: 600px) {
    .tab-tag {
        font-size: .65rem;
        letter-spacing: .1rem;
        margin-left: 1px;
        border-radius: 2px;
    }
}

/*ワンポイント*/
.itemtag {
    padding: 4px 10px;
    /*内側余白*/
    border-left: 3px solid #a3a3a3;
    /* 線の太さ・種類・色 */
    font-size: .9rem;
    display: inline;
    background: #ffffff;
    color: #949494;
    letter-spacing: 0;
}

/* バナー部分 */
.eco-bana {
    margin-top: 70px;
    text-align: center;
}

.eco-bana img {
    border-radius: 10px;
    width: 70%;
}

@media (max-width: 600px) {
    .eco-bana {
        margin-top: 20px;
    }

    .eco-bana img {
        width: 80%;
    }
}

/* フッター */
nav {
    width: 90%;
    text-align: center;
    margin: 100px auto 30px;
}

nav ul {
    margin: 0 0 100px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

nav li {
    list-style: none;
}

nav li:not(:last-child) {
    border-right: 1px solid #bebebe;
}

nav a {
    text-decoration: none;
    color: #5c5c5c;
}

nav a:hover {
    color: #B19358;
    border-bottom: 2px solid #B19358;
}

nav span {
    font-size: .8rem;
}

@media (max-width: 600px) {
    nav {
        width: 100%;
        margin-top: 30px;
    }

    nav ul {
        margin-bottom: 30px;
    }

    nav a {
        font-size: .8rem;
    }

    nav span {
        font-size: .6rem;
    }
}

header img,
footer img {
  width: auto;
  max-width: 100%;
  height: auto;
}