/* 
============================
全体
============================ 
*/
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

/* 
============================
汎用
============================ 
*/

.disp-none{
    display: none!important;
}
.maincontainer .page-head{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .1em;
}
.maincontainer .tm-head{
    padding-bottom: 10px;
    border-bottom: 1px solid #C6C6C6;
    margin-bottom: 20px;
    font-weight: 700;
}
.maincontainer .tm-head .ja{
    font-size: 12px;
    padding-left: 20px;
}

#sidebar-mailmagazine{
    background: #f5f5f5;
    margin-block-start: 60px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}
#sidebar-mailmagazine h2{
    font-weight: 700;
}
#sidebar-mailmagazine .mailmagazine-text{
    padding: 0 0 10px 0;
}
#sidebar-mailmagazine .mailMagazineSubscribe_input{
    min-width: 370px;
}

@media only screen and (max-width: 768px) {
    #sidebar-mailmagazine{
        padding: 30px;
        flex-direction: column;
    }
    #sidebar-mailmagazine .mailMagazineSubscribe_input{
        min-width: auto;
    }
}

/* 
============================
INSTAGRAM feed
============================ 
*/
#shopCategoryPage .feed-wrap{
    display: none;
}

.feed-wrap{
    margin-block-start: 50px;
}
.insta-head{
    display: flex; 
    gap: 10px;
    align-items: center;
}
.insta-head .head-icon{
    width: 30px;
}
.insta-head span{
    font-weight: 700;
}
.instafeed{

}
.instafeed ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.instafeed li{
}

@media (max-width: 600px){
    .instafeed li {
        width: 50%;
        --widthA: calc(100% - 15px);
        --widthB: calc(var(--widthA) / 2);
        --widthC: calc(var(--widthB) + 15px);
        width: var(--widthB);
        padding: 0 0 20px 0;
    }
}

@media (min-width: 601px) {
    .instafeed li {
        --widthA:calc(100% - 40px);
        --widthB: calc(var(--widthA) / 3);
        --widthC: calc(var(--widthB) + 20px);
        width: var(--widthC);
        padding: 0 0 30px 20px
    }

    .instafeed li:nth-child(3n + 1) {
        --widthA: calc(100% - 40px);
        --widthB: calc(var(--widthA) / 3);
        width: var(--widthB);
        padding: 0 0 30px
    }
    .instafeed img{
        max-height: 600px !important;
        width: auto !important;
    }
}

/* 
============================
アバウトページ
============================ 
*/
.about-sec{
    margin-bottom: 60px;
}
.desc-block{
    margin-block: 30px;
}
.desc-block > h3{
    position: relative;
    border-left: calc(5px + 0.1em) solid #e5e5e5;
    padding-left: 7px;
    font-weight: 700;
    line-height: 1.4;
    font-size: 1rem;
    margin-bottom: 16px;
}
.desc-block > p{
    margin-bottom: 14px;
}
/* 
============================
ブログページ
============================ 
*/
.blogListMain h2 a {
    font-weight: 700;
}

/* 
============================
商品一覧・トップの一覧
============================ 
*/
.price-area{
    display: flex;
    gap: 10px;
}
.price-area .proper-price {
    color: #d3d3d3;
    text-decoration: line-through;
    font-weight: normal !important;
    display: inline-block;
    padding-right: 10px;
}

/* 
============================
商品ページ
============================ 
*/

#table-wrap{
    margin-bottom: 80px;
}
#table-wrap .c-table-wrap{
    margin-bottom: 30px;
}

.table-01 th,.table-01 tr,.table-01 td,
.table-02 th,.table-02 tr,.table-02 td {
  text-align: center;
  width: 80px;
  padding: 8px;
  height: 50px;
  border: 1px solid #f2f2f2;
  text-align: center;
}
.table-01 th,.table-02 th {
    background: #efefef;
    min-width: 60px;
   
}
.table-01 th:nth-child(1),
.table-02 th:nth-child(1) {
    min-width: 100px;
}

.table-01 td:nth-child(1),
.table-02 td:nth-child(1) {
    background: #efefef;
}

@media only screen and (max-width: 768px) {
    #table-wrap .c-table-wrap {
        overflow-x: scroll;
    }
    .table-01,.table-02 {
        width: 100%;
        white-space: nowrap;
        display: block;
    }
  }