/** Shopify CDN: Minification failed

Line 37:0 Unexpected "}"
Line 38:0 Unexpected "}"
Line 1960:36 Unexpected "{"
Line 1963:36 Unexpected "{"

**/
/*============================================================================
  #Blog
==============================================================================*/
/* theme.cssから移植ここから） */
/**
 * ----------------------------------------------------------------------------
 * Article inner
 * ----------------------------------------------------------------------------
 */

.Article__ImageWrapper{
overflow:hidden;
height:215px
}

.Article__Image{
position:relative;
height:100%;
width:100%;
background-size:cover;
background-position:center
}

@supports (--css: variables){
.article__imageheight:calc(100% + 0px);
height:calc(100% + var(--announcement-bar-height,0px));
top:calc(-1 * 0px);
top:calc(-1 * var(--announcement-bar-height,0px))
}
}

.Article__Wrapper{
position:relative;
max-width:620px;
margin:0 auto 90px;
padding:24px 24px 0;
background:var(--background)
}

.Article__Header{
margin-bottom:0
}

.Article__Meta{
margin-bottom:18px
}

.Article__MetaItem + .Article__MetaItem::before{
position:relative;
display:inline-block;
content:"";
height:4px;
width:4px;
border-radius:100%;
margin:0 15px;
font-size:calc(var(--base-text-font-size) - (var(--default-text-font-size) - 10px));
vertical-align:middle;
background:currentColor
}

.Article__Footer{
margin-top:45px
}

.Article__ShareButtons{
margin-top:42px
}

@media screen and (min-width: 641px){
.Article__Wrapper{
margin-bottom:120px;
padding:40px 50px 0
}

.Article__ImageWrapper{
height:335px
}

.Article__ImageWrapper + .Article__Wrapper{
margin-top:-45px
}

.Article__Header{
margin-bottom:0
}


.Article__ShareButtons{
margin-top:0
}
}

@media screen and (min-width: 1008px){
.Article__Wrapper{
max-width:780px
}

.Article__ImageWrapper{
height:450px
}

.Article__ImageWrapper + .Article__Wrapper{
margin-top:-90px
}
}

@media screen and (min-width: 1140px){
.Article__ImageWrapper{
height:600px
}
}

/**
 * ----------------------------------------------------------------------------
 * Comments
 * ----------------------------------------------------------------------------
 */

.Article__CommentForm {
  margin-top: 40px;
}

.Article__Comments,
.Article__CommentFormWrapper {
  margin: 80px 0;
}

.Article__Comments .Pagination {
  margin-top: 40px;
}

.ArticleComment {
  margin-top: 35px;
}

.ArticleComment + .ArticleComment {
  padding-top: 35px;
  border-top: 1px solid var(--border-color);
}

.ArticleComment__Body {
  margin-bottom: 18px;
}

.ArticleComment__Date {
  margin-left: 15px;
}

@media screen and (min-width: 641px) {
  .Article__Comments,
  .Article__CommentFormWrapper {
    margin: 105px 0;
  }

  .Article__Comments .Pagination {
    margin-top: 80px;
  }
}

/**
 * ----------------------------------------------------------------------------
 * Toolbar
 * ----------------------------------------------------------------------------
 */

.ArticleToolbar {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px 16px 30px;
  background: #585858;
  color: var(--secondary-elements-text-color);
  z-index: 2;
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

@supports (--css: variables) {
  .ArticleToolbar {
    top: calc(0 * var(--header-height));
    top: calc(var(--use-sticky-header, 0) * var(--header-height));
  }
}

.ArticleToolbar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.ArticleToolbar .Link:hover {
  color: var(--secondary-elements-text-color);
}

.ArticleToolbar .Text--subdued {
  color: var(--secondary-elements-text-color-light);
}

.ArticleToolbar__ArticleTitle {
  position: relative;
  display: inline-flex;
  max-width: 285px;
  width: 285px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  color: var(--secondary-elements-text-color);
}

.ArticleToolbar__ShareList {
  display: inline-block;
}

.ArticleToolbar__ShareList .HorizontalList {
  display: inline-block;
  margin-left: 20px;
}

.ArticleToolbar__Nav {
  display: inline-block;
  margin-left: 50px;
}

.ArticleToolbar__Nav svg {
  color: var(--secondary-elements-text-color);
}

.ArticleToolbar__NavItemSeparator {
  display: inline-block;
  position: relative;
  content: "";
  width: 1px;
  height: 12px;
  margin: 0 18px;
  background: rgba(var(--secondary-elements-text-color-rgb), 0.8);
  vertical-align: middle;
}

.ArticleToolbar__NavItem svg {
  vertical-align: -1px;
}

.ArticleToolbar__NavItem--prev svg {
  margin-right: 6px;
}

.ArticleToolbar__NavItem--next svg {
  margin-left: 6px;
}

@media screen and (min-width: 1008px) {
  .ArticleToolbar__ArticleTitle {
    max-width: 400px;
    width: 400px;
  }
}

@media screen and (min-width: 1140px) {
  .ArticleToolbar {
    padding-left: 50px;
    padding-right: 50px;
  }

  .ArticleToolbar__ArticleTitle {
    max-width: 550px;
    width: 550px;
  }

  .ArticleToolbar__Nav {
    margin-left: 100px;
  }
}

/**
 * ----------------------------------------------------------------------------
 * Article navigation
 * ----------------------------------------------------------------------------
 */

.ArticleNav {
  padding: 75px 0;
  background: #535353;
  color: #FFF;
}

.ArticleItem__Category {
  color: #585858 !important; 
}
  
.ArticleNav .Heading {
  color: inherit;
}

.ArticleNav__Item {
  display: block ;
}

.ArticleNav__Image {
  height: 350px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 640px) {
  .ArticleNav .Grid__Cell + .Grid__Cell {
    margin-top: 50px;
  }
}

@media screen and (min-width: 641px) {
  .ArticleNav {
    padding: 90px 0;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Article item
 * ----------------------------------------------------------------------------
 */

.ArticleListWrapper {
  /*max-width: 1260px; */
  margin: 0 auto 60px auto;
}

.ArticleList {
  margin-bottom: -60px;
}

.ArticleList .Grid__Cell {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .ArticleList {
    margin-bottom: -40px;
  }
  .ArticleList .Grid__Cell {
    margin-bottom: 40px;
  }
}

.js .features--show-element-staggering .ArticleItem {
  visibility: hidden;
}



/**
 * ----------------------------------------------------------------------------
 * Blog
 * ----------------------------------------------------------------------------
 */

.Blog__RssLink {
  margin-left: 14px;
  vertical-align: baseline;
}

.Blog__RssLink svg {
  width: 10px;
  height: 10px;
}

.Blog__TagList {
  padding-top: 8px;
}

.Blog__TagList .Link.is-active::after {
  display: block;
  content: "";
  width: calc(100% - 0.15em);
  height: 1px;
  background: currentColor;
}

@media screen and (max-width: 640px) {
  .Blog__TagList .HorizontalList__Item {
    margin: 5px 10px;
  }
}

@media screen and (min-width: 641px) {
  .ArticleList + .Pagination {
    margin-top: 80px;
  }
}

/* theme.cssから移植ここまで） */




/* タグリスト（SP） */
.section-blog-sort-sp{
  margin: 0 0 50px 0;
  .sort-btn{
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DEDBD5;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    .sort-btn__title{
      border-right: 1px solid #DEDBD5;
      width: 100px;
      text-align: center;
      font-size: 12px;
    }
    .sort-btn__selected{
      width: calc( 100% - 100px );
      text-align: left;
      padding: 13px 20px 13px 30px;
      font-size: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      svg{
        
      }
    }
  }
  #collection-filter-drawer{
    .Drawer__Content{
      .Drawer__Main{
        .Collapsible{
          padding-top: 20px;
          border: none;
          ul{
            li{
              list-style: none;

              a{
                display: block;
                padding: 7px 0;
              }
            }
          }
        }
      }
    }
  }
}

/* タグリスト（PC） */
.section-blog-sort-pc{  
  margin: 90px 0 40px 0;
  .BlogTagList__filter{
    display: none;
    @media screen and (max-width: 767px) {
      display: flex;
      align-items: center;
      width: 100%;    
      border-bottom: 1px solid #DEDBD5;          
      padding: 0px 15px;
      position: relative;     
      background: #FFF;
    }     
    .BlogTagList__filter__title{
      width: 100px;
      border-right: 1px solid #DEDBD5;
      text-align: center;
      font-size: 12px;
    }
    .BlogTagList__filter__selected{
      width: calc( 100% - 100px );
      padding: 13px 20px;
      font-size: 12px;
    }  
  }   
  ul{
    text-align: center;
    @media screen and (max-width: 767px) {
      display: none;
      width: 100%;      
      position: absolute;
      display: none;
      background: #FFF;
    }
    li{
      list-style: none;
      display: inline-block;
      padding: 0 15px;
      @media screen and (max-width: 767px) {
        display: block;
        text-align: left;
        border-bottom: 1px solid #DDD;
        padding: 0;
      }
      a{
        position: relative;
        font-size: 16px;
        letter-spacing: 0.1em;
        font-weight: 600;
        @media screen and (max-width: 767px) {
          width: 100%;
          display: block;
          padding: 10px 15px;
        }
        &.is-active{
          &:before{
            content: "";
            height: 2px;
            width: 100%;
            max-width: 40px;
            background: #222;
            display: inline-block;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translate(-50%, -0%);
            @media screen and (max-width: 767px) {
              display: none;
            }
          }
        }
      }
    }
  }
}



/* ============ドロップダウンメニュー ============ */
/* スマホ閲覧時のハンバーガーメニュー */
 
#hanburger {
  display: none; /* チェックボックスを非表示 */
}
 
.menu_button { /* ボタンのスタイル */
  width: 100%; /* 幅 */
  height: 50px; /* 高さ */
  position: fixed;
  top: 47px;
left: 0;
  background: #a0a0a0; /* 背景色 */
  z-index: 11;
}
 
.menu_button::before { /* アイコンのスタイル */
  font-family: "Font Awesome 5 Free";
  content: "\f0c9"; /* アイコン「３本線」 */
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
 
#hanburger:checked + .menu_button::before { /* アイコンのスタイル（チェック済み） */
  content: "\f00d"; /* アイコン「×印」 */
}
 
.global_menu { /* メニュー全体のスタイル */
  max-width: 1260px;
  margin:0 auto;
  visibility: hidden; /* メニューを非表示 */
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  padding: 30px;
  color: #333; /* 文字色 */
  background: #d3d3d3; /* 背景色 */
  overflow-y:  scroll;
  text-align: center;
  z-index: 10;
}
 
#hanburger:checked ~ .global_menu { /* メニュー全体のスタイル（チェック済） */
  visibility: visible; /* メニューを表示 */
}
 
.global_menu a { /* 各項目のスタイル */
  display: block;
  width: 100%;

}
 
.global_menu a:hover { /* 各項目のスタイル（ホバー時） */
  background: #ffb6c1;
}
 
.menu:not(:last-child) {
  margin-bottom: 20px;
}
 
.menu > a { /* 親項目のスタイル */
  font-weight: bold;
  padding: 10px 10px;
}
 
.child_menu > li > a {
  padding: 10px 0;
  margin:0 0 0 10px;
  font-size: 0.8em;

}


@media screen and (min-width: 770px) {
 
  /* PC閲覧時のメガメニュー */
 
  .menu_button {
    display: none; /* ハンバーガーメニューのボタンを非表示 */
  }
 
  .global_menu { /* メニュー全体のスタイル */
    position: relative;
    padding: 0;
    margin-bottom:50px;
    color: #333333; /* 文字色 */
    background:transparent; /* 背景色 */
    visibility: visible;
    overflow-y: visible;
  z-index: 2;
  }
 
  .menu, .child_menu > li {
    display: inline-block;

  }


  
  .menu:not(:last-child) {
    margin-bottom: 0;
  }
 
  .menu > a { /* 親項目のスタイル */
    font-weight: normal;
    padding: 10px 30px 10px 20px;
        font-size: 15px;
    letter-spacing: .15em;
    font-weight: 600;
        position: relative;

  }

.menu > a::after {
    position: absolute;
    top: 43%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(135deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}

  
  .menu:hover > a {
    background: #FFF;
  }
  
 
  .child_menu { /* 下層メニューのスタイル */
    width: 100%;
    max-width:850px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 35px;
    color: #333; /* 文字色 */
    border:0 solid #d3d3d3;
    background: #FFF; /* 背景色 */
    visibility: hidden; /* 下層メニューを非表示 */ 
    opacity: 0; /* 不透明度を最小に */
    transition: 0.5s opacity; /* アニメーション設定 */
  }
 
  .menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
     opacity: 1; /* 不透明度を最大に */
    visibility: visible; /* 下層メニューを表示 */
  }


  
  .child_menu > li > a {
    text-align:left;
    padding: 10px 0;
      font-size: 0.9em;

  }
 
  .child_menu > li > a:hover {
      background: unset;

  }

.child_menu li {
    float: left;
    width: 33.33%;

}

  
  li.child_menu > li:nth-child(3n+2) {
    margin: 0 1%;
}
 
}

/* ============ 日付時計アイコン ============ */
.dli-clock {
  margin:-2px 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  color: #797979;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-clock::before, .dli-clock::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  background: currentColor;
  border-radius: 0.1em;
  transform: translate(-0.05em, 0.05em);
}

.dli-clock::before {
  width: 0.1em;
  height: 0.4em;
}

.dli-clock::after {
  width: 0.35em;
  height: 0.1em;
}

/* ============ 日付更新アイコン ============ */
.dli-arrow {
  margin:-2px 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  color: #797979;
  position: relative;
    width: 0.8em;
    height: 0.8em;
    border-top: 0.1em solid #797979;
    border-left: 0.1em solid #797979;
    border-right: 0.1em solid transparent;
    border-bottom: 0.1em solid #797979;
    border-radius: 100%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box;
}

.dli-arrow::before{
content: "";
    position: absolute;
    top: -0.05em;
    left: 0.45em;
    width: 0;
    height: 0;
    border-top: 0.28em solid transparent;
    border-left: 0.45em solid #797979;
    border-bottom: 0.28em solid transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ============ 絞り込みtitle ============ */


.archivetitle h2 {
   font-size: 1.3em;
letter-spacing:0.1em;
    margin: 30px 0;
    text-align: center;
    display: flex;
    align-items: center;
}
 
.archivetitle h2:before,
.archivetitle h2:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
 
.archivetitle h2:before {
    margin-right: 1rem;
}
 
.archivetitle h2:after {
    margin-left: 1rem;
}

/* ============ ブログページの目次 ============ */
.blog-page-mokuzi{
          line-height: 3;
       padding: 20px 20px; 
     background: #F7F7F7;
  flex-wrap: wrap;
  justify-content: center;  
      margin-bottom: 30px;
  
  .item{
     text-align: center;
    @media screen and (max-width: 90%) {
      margin-bottom: 20px;

    }
    a{
      display: block;
      text-decoration: none;
      margin: 0 20px;
      position: relative;      
      @media screen and (max-width: 90%){
        font-size: 12px;
      }
      &:hover{
        &:before{
          content: "";
          position: absolute;
          bottom: 0px;
          display: inline-block;
          width: 38px;
          height: 2px;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translate(-50%);
          background-color: #222;
          border-radius: 2px;
        }
      }
    }
  }
}



/* ============ ブログカード ============ */
.blog-card {
  width: 90%;
  margin: 5% auto;
  text-align: left;
}
.blog-card a {
  text-decoration: none;
  color:black;
}
.blog-card .blog-card-title {
  display: inline-block;
  padding: 0.25em 0.75em;
  max-width: 60%;
  background: #000;
  color: #fff;
  position: relative;
  top: 1em;
  left: 1em;
}
.blog-card .blog-card-wrap {
  border: 1px solid #000;
  width:100%;
  display: flex;
}
.blog-card .blog-card-img img {
  margin: 20% 10% 5%;
  max-width:250px;
}
.blog-card .blog-card-naiyou {
  margin: 5%;
}
.blog-card .blog-card-naiyou .column-title {
  font:bold;
  font-size: 1.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-card .blog-card-naiyou .column-ex {
  margin-top:0.5em;
/*  color: gray; 20250430アクセシビリティ改善のため非表示*/
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 767px) {
  .blog-card {
    width: 95%;
    text-align: left;
  }
.blog-card .blog-card-wrap {
	display: block;
}
.blog-card .blog-card-img img {
	max-width:inherit;
	width:80%;
    margin: 7% 10% 2%;
}
}

/* ============ 著者欄 ============ */
.writer{  
 display: inline-block;
  background:#EFEFEF;
  display: flex;

span {
    font-size: 1.3em;
  font-weight:700;
  color:#222222;
  }
  
  .item{

    display: flex;
    margin:40px 40px;
    @media screen and (max-width: 767px) {
      display: block;
    margin:20px 20px;
    }
    &:nth-child(even){
      flex-direction: row-reverse;      
      .item__text{
        padding-left: 0;
        padding-right: 50px;
        @media screen and (max-width: 767px) {
          padding-right: 0;
        }
      }
    }

    .item__image{
      margin:0 auto;
      width: 20%;
      max-width: 300px;
      @media screen and (max-width: 767px) {
        width: 40%;
        margin-bottom: 25px;
      }
      img{
        margin: 0;
      }
    }
    .item__text{
    text-align: left;
      font-size: 0.9em;      
      width: 80%;
      padding-left: 50px;
      @media screen and (max-width: 767px) {
        text-align:center;
        width: 100%;
        padding-left: 0;
      }
      h2,h3{
        margin-top: 0;
      }
    }
  }
}

      
/*============================================================================
  #Article
==============================================================================*/

/* 通常ブログ */
#shopify-section-article-template{
  background: #F7F7F7;
  .Article__Wrapper{
    max-width: 1100px;
    padding: 80px;
    background: #FFF;
    @media screen and (max-width: 767px) {
      padding: 30px 24px;
      margin-bottom: 0;
    }
    .Article__Content{
      .Article__Header{
       
        @media screen and (max-width: 767px) {
          margin-bottom: 0;          
        }
        .Article__Meta{
          font-size: 14px;
          color: #797979;
          letter-spacing: 0.1em;
          margin-bottom: 20px;
          @media screen and (max-width: 767px) {
            font-size: 12px;
            margin-bottom: 5px;
          }
        }
        h1{
          font-size: 22px;
          font-weight: 500;
          position: relative;     
          letter-spacing: 0.04em;
             margin-bottom:0;         
          @media screen and (max-width: 767px) {
            font-size: 18px;
            margin-bottom:5px;
          }          
        }
      }
      .Article__Body{
        font-size: .95em;
        line-height: 1.8;
        letter-spacing: .09em;
        font-size: .95em;
        line-height: 1.8;
        letter-spacing: .09em;
        color: #585858;
        clear: both;
        /*a{
          text-decoration: underline;
          color: #222;
        }  */      
      }
    }
    .Article__Comments{
      margin: 70px 0 0 0;
      h2{
        font-size: 18px;
        font-weight: 700;
      }
    }
    .Article__CommentFormWrapper{
      margin-top: 70px;
      @media screen and (max-width: 767px) {
        margin: 70px 0 0 0;
      }
      h2{
        font-size: 18px;
        font-weight: 700;
      }
      form{
        margin: 0;
        .Form__Hint{
          text-align: center;
        }
        .Form__Submit{
          margin: 20px auto 0;
        }
      }      
    }
    .Article__Footer{
      .Article__ShareButtons{
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;    
        width:100%;
        height:auto;
        @media screen and (max-width: 767px) {          
          margin-top: 0;
        }
        a{
  
          width: 40px;
          min-height: 40px;
          height: 40px;
          border-radius: 50%;
          margin: 15px;
          background: #909090;
          display: flex;
          align-items: center;
          justify-content: center;
          outline: none!important;
          border: none;       
          @media screen and (max-width: 767px) {
            width: 35px;
            min-height: 35px;
            height: 35px;
           
          }
          svg{
            color: #FFF;
          }
          &.ShareButtons__Item--pinterest{
            @media screen and (max-width: 767px) {
              background: #c8232c;
            }
            &:hover{
              background: #c8232c;
            }
          }
          &.ShareButtons__Item--twitter{
            @media screen and (max-width: 767px) {
              background: #0f1419;
            }
            &:hover{
              background: #0f1419;
            }
          }
          &.ShareButtons__Item--line{
            @media screen and (max-width: 767px) {
              background: #06c755;
            }
            &:hover{
              background: #06c755;
            }
          }          
          &.ShareButtons__Item--facebook{
            @media screen and (max-width: 767px) {
              background: #4469af;
            }
            &:hover{
              background: #4469af;
            }
          }
        }
      }
    }
  }
  .ArticleNavPaginate{    
    margin: 60px auto 0;
    padding-bottom: 120px;
    display: flex;
    justify-content: center;
    @media screen and (max-width: 767px) {
      padding: 0 15px 80px 15px;
      justify-content: space-between;
      margin: 30px auto 0 auto;
    }
    .Button{
      padding: 0;
      @media screen and (max-width: 767px) {        
        width: 46%;
      }
      &:first-child{
        margin: 0 70px 0 0;
        @media screen and (max-width: 767px) {
          margin: 0;
        }
      }
      &:last-child{
        margin: 0 0 0 70px;
        @media screen and (max-width: 767px) {
          margin: 0;
        }
      }
      a{
        display: block;
        padding: 14px 60px;
        @media screen and (max-width: 767px) {
          padding: 14px 20px;  
        }
      }
    }
  }
}



aside.ArticleToolbar{
  background: #e2e2e2;
  padding: 15px 30px;
  .ArticleToolbar__Left{
    .blog-link{
      font-size: 14px;
      padding-right: 20px;
      margin-right: 20px;
      border-right: 1px solid #D5D5D5;
      color: #222;
      letter-spacing: 0.1em;
    }
    .ArticleToolbar__ArticleTitle{
      font-size: 14px;
      color: #222;
      letter-spacing: 0.1em;
    }
  }
  .ArticleToolbar__Right{
    .ArticleToolbar__ShareList{
      span{
        color: #222;
      }
      .HorizontalList{
        a{
          color: #909090;
          &.face{
            &:hover{
              color: #4469af;
            }
          }
          &.twi{
            &:hover{
              color: #0f1419;
            }
          }
          &.line{
            &:hover{
              color: #06c755;
            }
          }          
          &.pin{
            &:hover{
              color: #c8232c;
            }
          }            
        }
      }
    }
    .ArticleToolbar__Nav{
      a{
        color: #222;
        svg{
          color: #222;
        }
      }
      .ArticleToolbar__NavItemSeparator{
        background: #D5D5D5;
      }
    }
  }
}

/*モーダルここから*/
.modal-overlay {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background: rgba(0, 0, 0, 0.5);
}
.modal-content {
	z-index: 2;
	display: none;
	position: fixed;
	max-width: 500px;
	margin: 0 15px;
	background: #fff;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #dee2e6;
}
.modal-header .close {
	font-family: "Hiragino Sans", Meiryo, sans-serif; 
	cursor: pointer;
	background: transparent;
	border: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	outline: none;
	opacity: .5;
}
.modal-header .close:hover {
	opacity: .75;
}
.modal-title{
	margin: 5px !important; 
  	font-size: 1.5rem;
	font-weight: 700;
 } 
.modal-body {
	padding: 1rem;
}
.modal-body img{
	margin: 0;

}
.modal-body p{
	margin: 10px 0 0 0 !important;   
	line-height: 1.4em;
  letter-spacing: 0.1em;
} 
.modal-footer {
	display: flex;
	justify-content: flex-end;
	padding: 1rem;
	border-top: 1px solid #dee2e6;
}
  
/*モーダルここまで*/



 /*================ メラミン化粧版とは /blogs/magazine/素材について-メラミン化粧板================*/

a.btn_08 {
  position: relative;
  display: block;
  color: #FFF !important;

  text-decoration: none !important;
  text-align: center;
}

a.btn_08::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #585858;

  box-sizing: border-box;
  

}
a.btn_08 span {
  position: relative;
  display: block;
  padding: 1rem 5rem;
  overflow: hidden;
  z-index: +1;
}
a.btn_08 span::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: rotate(45deg);
}
a.btn_08::after, a.btn_08 span {
  transition-property: transform;
  transition-duration: 0.3s;
}
a.btn_08:hover::after, a.btn_08:hover span {
  transform: translate(0, 0);
}
a.btn_08:hover span::before {
  animation: shine 1s ease-in-out 1;
}
@keyframes shine {
  0% {
    transform: scale(1) rotate(45deg);
    opacity: 0;
  }
  10% {
    transform: scale(1) rotate(45deg);
    opacity: 0.5;
  }
  20% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  80% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

  
  blockquote{
  margin: 10px 0 !important;
    position: relative;
  padding: 30px 10px 10px 10px !important;
    box-sizing: border-box;
    font-style: italic;
    background: #efefef;
    color: #555;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
    content: "“";
    font-family: sans-serif;
    color: #cfcfcf;
    font-size: 90px;
    line-height: 1;
}

blockquote p {
    padding: 0;
  margin: 5px 0;
    line-height: 1.7;
}

blockquote img {
    padding: 10px;
    margin: 5px 5px 5px 0 !important; 
}

blockquote cite {
    display: block;
    text-align: left;
    color: #888888;
    font-size: 0.9em;
}

/* 板アコーディオン */

 .cp_accordionslide08 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

}

.cp_accordionslide08 p {
	margin: 20px 0;
	text-align: left;
}
.cp_accordionslide08:hover .slideitem {
	width: 20%;
}
.cp_accordionslide08 .slideitem {
	position: relative;
	overflow: hidden;
	width: 20%;
	height: 40vh;
	-webkit-transition: width 0.5s ease;
	        transition: width 0.5s ease;
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
	color: #ffffff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.cp_accordionslide08 .slideitem:nth-child(1) {
	background-image: url('/cdn/shop/files/mer-nail.webp?v=1665707284');
}
.cp_accordionslide08 .slideitem:nth-child(2) {
	background-image: url('/cdn/shop/files/mer-black.webp?v=1665707284');
}
.cp_accordionslide08 .slideitem:nth-child(3) {
	background-image: url('/cdn/shop/files/mer-marble.webp?v=1665707284');
}
.cp_accordionslide08 .slideitem:nth-child(4) {
	background-image: url('/cdn/shop/files/mer-graystone.webp?v=1665707284');
}
.cp_accordionslide08 .slideitem:nth-child(5) {
	background-image: url('/cdn/shop/files/mer-blackpearl.webp?v=1665707284');
}
.cp_accordionslide08 .slideitem:nth-child(6) {
	background-image: url('/cdn/shop/files/mer-whitewood.webp?v=1665707284');
}
.cp_accordionslide08 .slideitem:before,
.cp_accordionslide08 .slideitem:after {


	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
.cp_accordionslide08 .slideitem:after {
	-webkit-transition: opacity 0.5s ease;
	        transition: opacity 0.5s ease;
	opacity: 1;

}
.cp_accordionslide08 .slideitem:before {
	z-index: 1;
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	        transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	        transition: opacity 0.5s ease, transform 0.5s ease;
	        transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
	-webkit-transform: translate3d(0, 0, 0) translateY(50%);
	        transform: translate3d(0, 0, 0) translateY(50%);
	opacity: 0;

}
.cp_accordionslide08 .slideitem:hover {
	width: 60% !important;
}
.cp_accordionslide08 .slideitem:hover:after {
	opacity: 0;
}
.cp_accordionslide08 .slideitem:hover:before {
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease 0.05s;
	        transition: opacity 1s ease, -webkit-transform 1s ease 0.05s;
	        transition: opacity 1s ease, transform 1s ease 0.05s;
	        transition: opacity 1s ease, transform 1s ease 0.05s, -webkit-transform 0.5s ease 0.25s;
	-webkit-transform: translate3d(0, 0, 0) translateY(0);
	        transform: translate3d(0, 0, 0) translateY(0);
	opacity: 1;
}
.cp_accordionslide08 .slideitem:hover .slidecont {
	-webkit-transition: all 0.75s ease 0.5s;
	        transition: all 0.75s ease 0.5s;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
}
.cp_accordionslide08 .slideitem h2 {
  	text-align: center; 
	font-size: 1.3em;
	position: absolute;
	z-index: 1;
	top: 43%;
	left: 50%;
	-webkit-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	-webkit-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	white-space: nowrap;
}
.cp_accordionslide08 .slideitem h2::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
}
.cp_accordionslide08 .slideitem:hover h2 {
	top: 10%;
	top: 10%;
	text-align: center; 
}

.cp_accordionslide08 span {
    font-size: 0.7em;
}

.cp_accordionslide08 .slidecont {
	position: relative;
	z-index: 1;
	top: 30%;
	top: 30%;
	margin: 0 1.618em;
	-webkit-transform: translate3d(0, 0, 0) translateY(25px);
	        transform: translate3d(0, 0, 0) translateY(25px);
	text-align: center;
	opacity: 0;
}
@media only screen and (max-width:768px) {
	.cp_accordionslide08 {
		display: block;
	}
	.cp_accordionslide08:hover .slideitem {
		width: 100%;
		height: 20vh;
	}
	.cp_accordionslide08 .slideitem {
		width: 100%;
		height: 20vh;
	}
	.cp_accordionslide08 .slideitem:hover {
		width: 100% !important;
		height: 40vh !important;
	}
	.cp_accordionslide08 .slideitem h2 {
		top: 35%;
	}
}



/* MAGAZINEランキング・コラム */
.rankwrap{
  text-align: center;
  margin: 30px 0 40px !important;

   p{
     text-align: left;
    line-height: 1.8;
     
   } 
  
  h3,h4{
    margin: 0 0 20px 0 !important;
    font-size: 1.5em !important;
    line-height: 1.5;
    text-align: center;
position: relative;
 padding: 1.1rem 1rem;   
    }

h3:after,h4:after {
  position: absolute;
  bottom: 0;
 left: 0;
  width: 100%;
  height: 10px;

  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #c2c2c2, #c2c2c2 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #c2c2c2, #c2c2c2 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
  
  h2{
    margin: 0 !important;
    font-size:25px !important;
    
  }

  a{
    margin: 10px 0;
    width: 70%;
    
      @media (max-width: 767px) {
    width: 90%;
  }
    }
}
 
.rank{
  display: flex;
  gap: 0;
  margin: 0 0 10px 0; 
  @media (max-width: 767px) {
    gap: 0;
    flex-wrap: wrap;
  }

  img{
    margin: 0;
  @media (min-width: 767px) {
     margin: 0;
    width: 100%;
    height: 280px;    
    object-fit: cover; 

  }  
 }    
  
   p{
     text-align: left;
     margin: 10px 0 0 10px !important;
   } 
    
  hr{
    border-top: 1px solid #8C8C8C; 
      }

  a{
    width: 250px;
    margin: 0 0 10px;
    }
    
   span{
    margin:0 !important; 
    }
    
  .item{
    position: relative; 
    width: 50%;
    margin: 0 5px;
    @media (max-width: 767px) {
      width: 100%;
    }
    &:first-child{
      margin-bottom: 15px;
    }
  }

.rankprice {
  float: right;
  vertical-align: text-bottom; 
  border-bottom: 1px solid #333;
  color: #222222;
}

.rankprice span{
  font-size: 23px ;
  margin:0 5px 0 10px !important; 
  font-weight: 600;

}
  
.center { 
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
}

.rankpoint_3{
  padding: 10px;
  background: #EFEFEF;
  position: relative;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
  
  img{
    margin: 10px;
 } 
  
}
.rankpoint_3 > div{
  text-align: center;
    font-weight: 500;
	width: 33.33333%;


}
@media screen and (max-width: 960px) {
	.rankpoint_3 > div{
		width: 50%;
	}
  
.rank p{
     margin: 10px 0 0 10px;
  }
  
}
@media screen and (max-width: 480px) {
	.rankpoint_3 > div{
		width: 100%;
	}
  
.rank p{
       margin: 0;
  }
}

/* MAGAZINEランキングポイント */
.rank-box-col3{
  display: flex;
  margin: 0 -30px;
  @media screen and (max-width: 767px) {
    display: block;
    margin: 0;
  }
  .item{
    width: 33.33333%;
    border-right: 1px solid #EFEFEF;
    padding: 0 20px;
    @media screen and (max-width: 767px) {
      width: 100%;
      padding: 0 0 20px 0;
      margin-bottom: 10px;
      border-right: none;
      border-bottom: 1px solid #EFEFEF;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }
    &:last-child{
      border-right: none;
      @media screen and (max-width: 767px) {
        margin-bottom: 0;
      }
    }
    .item__image{
      margin-bottom: 10px;
      text-align: center;
      @media screen and (max-width: 767px) {
        margin-bottom: 10px;
      }
      img{
        margin: 0 auto;        
      }
      svg{
        @media screen and (max-width: 767px) {
          width: 90px;
        }
      }
    }
    .item__head{
      text-align: center;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 15px;
      @media screen and (max-width: 767px) {
        text-align: left;
        margin-bottom: 0;
        padding-left: 30px;
      }

    }
    p{
      @media screen and (max-width: 767px) {
        width: 100%;
      }
    }
  }
}

/* 記事内の要素分割設定 */
.split2box {display: flex;}
.split2box div {flex-basis: 50%;}
.split2box div:first-child {margin-right:10px;}
.split2box p {margin:0 10px;text-align: justify;}
@media screen and (max-width: 767px){
.split2box {display:inline-block;}
.split2box div {display: flex;margin: 2.4em 0;}
.split2box div:first-child {margin-right:0;}
.split2box div img {max-width: 54%;margin:0;}
.split2box div span{display:none;}
}

/* 記事内の要素箇条書き設定 */
.itemize {
    padding: 0.5em 1em;
    margin: 2em 0;
    background: white;
    border-left: solid 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.itemize a {text-decoration: none !important;}
.itemize ul {padding: 0.5em;}
.itemize ul li {
  line-height: 1.5;
  padding: 0.5em;
  border-bottom: dashed 1px silver;
  list-style: square; 
}
.itemize p {font-weight: 600;}
.itemize br.delete {display:none;}
@media screen and (max-width: 767px){
	.itemize br.delete {display:inherit;}
	.itemize p.center {text-align: center;}
}
/* 記事内のよくある質問設定 */
dl.blog-question {
  width: 95%;
  margin: 0 auto;
}
dl.blog-question dd{background-color: #fff;}
dl.blog-question div{border: 1px dotted #ccc;margin: 15px 0;}
dl.blog-question dd p{width: 100%;}
dl.blog-question dd p a{margin-top: 20px;}
dl.blog-question dt,
dl.blog-question dd{
  display: flex;
  align-items: baseline;
  margin:0;
  padding: 15px;
}
dl.blog-question dt{background-color: #F5F5F5;}
dl.blog-question dt::before {
  content: "Q";
  color: #fff;
  background: #4ea9df;
  padding: 5px 10px;
  margin: 10px;
}
dl.blog-question dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #df6391;
  padding: 5px 10px;
  margin: 10px;
}

/* 記事内 画像掲載商品のシンプルリンク 2024/11/21よりモーダル表示に変更。旧システムで作成コラムに適用されてます */
p.simpleLink{margin-left: 0 !important;}
p.simpleLink:before{content:"掲載商品：";}
p.simpleLink a{margin: 0 4px;}
p.simpleLink a:hover{opacity: 0.7;}

/* 記事内 モーダル表示 */
.Article__Body a.modal-open{
  display:block;
  width: initial;
  position:relative;
  cursor : pointer;
  margin: 10px 0;
}
.Article__Body a.modal-open img{margin:0 0 32px;}
.Article__Body a.modal-open:hover,
.column-image_set .modal-content a:hover{opacity:0.8;}
.Article__Body a.modal-open:after{
    content:"掲載商品を見る";
    position: absolute;
    left: 0;
    bottom: 0;
    border: 1px solid #fff;
    border-radius: 7px;
    background: #252525;
    margin: 0 10px;
    padding: 0 10px;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.9;
}
.column-image_set .modal-title{font-size:1.2rem;}
.column-image_set .modal-body{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    text-align: center;
}
.column-image_set .modal-content{
    position: fixed;
    inset: 0 !important;
    margin: auto;
    max-width: 800px;
    width: 90%;
    max-height: 70%;
    /*height: 600px;*/
    overflow: scroll;
    z-index: 999;
}
.column-image_set .modal-content a,
.column-image_set .modal-content span{
    width:24%;
    max-width:200px;
    font-size: 0.8rem;
    margin-bottom:10px;
}
.column-image_set .modal-content .btn{padding:10px;}

/* 記事内 テーブル組 */
.columnTable{margin:2em 0;}
.columnTable .TableWrapper {
  overflow: auto;
  overflow-x: scroll;
  max-width: 940px;
}
.columnTable .TableWrapper table{
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.Rte .columnTable .TableWrapper table tbody th:first-child{position: static;max-width: none;white-space: nowrap;}
.columnTable .TableWrapper table th,
.columnTable .TableWrapper table td,{min-width: 150px !important;}
@media (max-width: 767px){
.columnTable .TableWrapper table th,
.columnTable .TableWrapper table td,{min-width: 150px;}}
.columnTable .TableWrapper table th{background-color:#f8f8f8;}

/* 記事内 リスト */
.rankwrap ul{text-align: left;}

/* 記事内 こんな方におすすめ*/
.column-persona {
  padding: 0.5em 1em;
  margin: 2em 1em 3em 1em;
  border: 1px dotted #585858;
  font-weight: bold;
  background: #f1f1f1;
  border-radius: 10px;
}
.column-persona:before {
  content:"この記事はこんな方におすすめ！";
  display: block;
  margin: 0.5em 0;
  padding: 0.2em 1em;
  background-color: white;
}
@media (max-width: 767px){.column-persona ul{margin-left: 20px;}}

/* スタッフコメントここから */
/* 左右共通の記述 */
.sfcm-balloon{
    display: flex;
    align-items: flex-start;
    max-width: 90%;
    margin: auto;
}
.sfcm-balloon figure{flex-shrink: 0;width: 120px;}
.sfcm-text{
    flex-grow: 1;
    padding: 15px 30px;
    color: #454545;
    line-height: 1.375rem;
    border-radius: 4px;
    position: relative;
    text-align: justify;
}
.sfcm-text::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: solid 6px transparent;
    border-bottom: solid 6px transparent;
    position: absolute;
    top: 25px;
}

/* アイコン右 */
.sfcm-right{flex-direction: row-reverse;}
.sfcm-right figure{margin: 20px 0 20px 20px;}
.sfcm-right .sfcm-text{margin: auto !important;background: #dddddd;}
.sfcm-right .sfcm-text::after{border-left: solid 12px #dddddd;right: -12px;}

/* アイコン左 */
.sfcm-left figure{margin: 20px 20px 20px 0;}
.sfcm-left .sfcm-text{margin: auto !important;background: #dddddd;}
.sfcm-left .sfcm-text::after{border-right: solid 12px #dddddd;left: -12px;}

.sfcm-balloon i{
  max-width: 100%;
  padding: 10px;
  background-color: #caeaef;
  border-radius: 12px;
}
.sfcm-balloon i.sfcm-type1{content: url("/cdn/shop/files/sfcm-icon01.png");}
.sfcm-balloon i.sfcm-type2{content: url("/cdn/shop/files/sfcm-icon02.png");}
.sfcm-balloon i.sfcm-type3{content: url("/cdn/shop/files/sfcm-icon03.png");}
.sfcm-balloon i.sfcm-type4{content: url("/cdn/shop/files/sfcm-icon04.png");}

@media (max-width: 767px){
.sfcm-balloon{max-width: 100%;}
.sfcm-balloon figure{width: 100px;}
.sfcm-text{padding: 15px;font-size: 0.875rem;}
}
/* スタッフコメントここまで */





/* 関連コラム・新着コラム*/
.boxitems_wrap {
  margin: 0 0 45px 0; 
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr;
  grid-gap: 5px;
}

.boxitems_head {
  grid-column: 1 / -1;
  grid-row: 1;
}

.btn {
margin-bottom: 5px;
    padding: 10px 0;
    display: block;
    border: 1px solid #333;
    text-decoration: none !important;
    color: #000;
    background-color: #fff;
    text-align: center;
    margin-top: auto;
}

.boxitem {
  padding:10px;
  grid-column: span 6;
  background-color: #fff;
  display:flex;
  flex-direction: column;
  position:relative; 
    
p {
  margin: 8px 0 !important;
  text-align: left;
  padding:5px 0 ;  
  font-size:0.8em;
  line-height:1.5;
  display: flex;
  flex-grow:1; 


      @media (max-width: 767px) {
        width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
 
    /*IE対策*/
    line-height: 1.3em;
    max-height: 4.2em;
}
 
  
  } 
  
  img{
  display: block;
  margin:auto;
 
    max-height:200px;
    
    }
    a {
      text-decoration: none !important;
    } 
  
  h3{
    font-size: clamp(13px, 2.9vw, 18px) !important;
    line-height: 1.1;
    text-align: center;
    margin: 10px 0 0 0 !important;


}
  
.catepoint {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

  
  
 .btn--cate,
 a.btn--cate {
    margin-bottom: 5px;
   padding: 10px 0;
   display: block;
   border: 1px solid #333;  
   text-decoration: none!important;
   color: #000;
   background-color: #FFF;
   text-align: center; 
   margin-top:auto;
 }

 a.btn--cate:last-child {
 margin-bottom: 0;
 
}

  .btn--cate:hover,
 a.btn--cate:hover {
   color: #fff;
   background: #222222;
    }
  

 .cardlist {
   border: 1px solid #333;  
  margin:20px auto;
  display:block;
  text-align:center;
  padding:10px 80px;
  margin-top:auto;

 }

  .cardlist:last-child {
 margin-bottom: 0;
 
}
  
@media (min-width: 1024px) {
  .point {
    width: calc(50% - 16.18px / 2);
  }
}
  
}

@media screen and ( min-width: 850px ) {
  .boxitems_wrap {
    grid-gap: 5px;
  }

  .boxitem {
    grid-column: span 3;
  }
}
 
@media screen and (min-width: 450px) {
 
  .scroll_content li {
    width: 30%;
  }


}

.img_circle{
      border-radius: 50%;
      width: 100%;
   
      object-fit: cover;
    }
    

