/* ##############################################################################

    KEYFRAMES

############################################################################## */

  @keyframes header_in {
    0% { transform: translateY(-110%); }
    100% { transform: translateY(0%); }
  }
  @keyframes header_out {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-110%); }
  }

/* ##############################################################################

    COMMON

############################################################################## */
  
  html {
    height: 100%;
    min-width: 1000px;
    overflow-y: scroll;
  }
  body {
    height: 100%;
  }
  body.page-contact {
    padding-top: 0;
  }

  .mce-main {
    font-size: 16px;
    line-height: 2.1;
  }
  .mce-main .post-related_item {
    font-size: 15px;
    line-height: 1.7;
  }

  @media screen and (max-width: 767px) {
    html {
      min-width: auto;
    }
    body {
      padding-top: 56px;
      margin-bottom: 56px;
    }
    .fixed {
      position: fixed;
      width: 100%;
      height: 100%;
    }
  }

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .inner-sm { max-width: 1000px; }
  .inner-xsm { max-width: 860px; }
  .inner-lg { max-width: calc(100% - 112px); }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section_pdg-t-sm {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .section_pdg-t-xsm {
    padding-top: 15px;
    padding-bottom: 80px;
  }
  .clearfix::after {
    content: "";
    display: block;
    clear: both;
  }

  @media screen and  (max-width: 767px) {
    .inner { width: 90%; }
    .inner-sp-none { width: 100%; }
    .inner-sp-only {
      width: 90%;
      margin: 0 auto;
    }
    .section_pdg {
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .section_pdg-t-sm {
      padding-top: 24px;
      padding-bottom: 40px;
    }
    .section_pdg-t-xsm {
      padding-top: 0;
    }
  }

/* flex
**************************************** */
  /* --- ざっくりflexレイアウト --- */
  .flex-col1 {
    display: block;
  }
  .flex-col2,
  .flex-col3,
  .flex-col4,
  .flex-col6 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2:not(.flex-reverse) > *:nth-child(even),
  .flex-col2.flex-reverse > *:nth-child(odd) {
    margin-right: 0;
  }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;

    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n) { margin-right: 0; }
  .flex-col4 > * {
    width: 22.7%;
    margin-right: 3%;
    margin-bottom: 3.5%;
  }
  /* .top--section .flex-col2 > * {
    width: 50%;
    margin-right: 0;
  }
  .top--section .flex-col4 > * {
    width: 25%;
    margin-right: 0;
  } */
  .flex-col4 > *:nth-child(4n) { margin-right: 0; }
  .flex-col4 > *:nth-last-child(-n+4) { margin-bottom: 0; }

  .flex-col5 > * {
    width: 14.16%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col5 > *:nth-child(5n) {
    margin-right: 0;
  }

  .flex-col6 > * {
    width: 14.16%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col6 > *:nth-child(6n) {
    margin-right: 0;
  }

  @media screen and (max-width: 767px) {
    .flex.flex-sp-block.flex-col2 > *,
    .flex.flex-sp-block.flex-col3 > * {
      width: 100%;
      margin-right: 0;
      margin-bottom: 6%;
    }
    .flex.flex-sp-block.flex-col2 > *:last-child,
    .flex.flex-sp-block.flex-col3 > *:last-child {
      margin-bottom: 0;
    }

    /* --- ざっくりflexレイアウト - sp --- */
    .flex-col2.flex > *,
    .flex-sp-col2.flex > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n) {
      width: 47%;
      margin-right: 6%;
      margin-bottom: 7%;
    }
    .flex-sp-col2.flex > *:nth-child(even) {
      margin-right: 0;
    }
    .flex-sp-col2.flex > *:nth-last-child(-n+2) {
      margin-bottom: 0;
    }
    .flex-sp-col3.flex > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3.flex > *:nth-child(3n) {
      margin-right: 0;
    }
    .flex-sp-col3.flex > *:nth-last-child(-n+3) {
      margin-bottom: 0;
    }
    .flex-sp--no_flex {
      display: block;
    }
  }

/* sp scroll
**************************************** */
@media screen and (max-width: 767px) {
  .sp-scroll {
    position: relative;
    width: 100vw;
    overflow: scroll;
  }
  .sp-scroll--inner {
    padding-left: 5%;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .sp-scroll--inner > * {
    flex-shrink: 0;
  }
  .sp-scroll--inner::after {
    content: '';
    display: block;
    width: 1px;
    height: 1px;
    margin-left: 7vw;
    flex-shrink: 0;
  }

  /* items */
  .sp-scroll .post-info {
    width: 40%;
    margin-right: 16px;
  }
}

/* bg
**************************************** */

  .bg-gray { background-color: #F4F3F4; }
  /* --- CTA --- */
  .bg-contact {
    background-color: #cc0000!important;
  }
  .bg-contact:hover {
    background-color: #af0707!important;
  }

/* img
********************************************** */
  .img-ctr {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .img-trim {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img-trim.pos_rel::before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
  .img-cover.pos_ab {
    top: 0;
    left: 0;
  }
  .img-contain {
    object-fit: contain;
    font-family: 'object-fit: contain;';
  }

/* ttl
**************************************** */

  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    z-index: 10;
    overflow: hidden;
    height: 320px;
    line-height: 1.5;
    background-color: #eee;
    background-size: cover;
    background-position: center;
  }
  .page_ttl-jp {
    display: block;
    font-size: 300%;
  }
  .page_ttl-en {
    display: inline-block;
    text-transform: uppercase;
  }

  /* --- section_ttl --- */
  .section_ttl {
    margin-bottom: 15px;
    font-size: 147%;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .15em;
  }
  .section_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }
  
  /* --- heading --- */
  .heading-1 { font-size: 200%; }
  .heading-2 { font-size: 160%; }
  .heading-3 { font-size: 147%; }
  .heading-4 { font-size: 120%; }

  /* アンカー */
  .ttl-anchor .anchor {
    position: absolute;
    top: -130px;
  }

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

    /* --- page_ttl --- */
    .page_ttl-jp {
      font-size: 186%;
    }
    .page_ttl-en {
      font-size: 86%;
    }
  
    /* --- section_ttl --- */
    .section_ttl {
      font-size: 118%;
      margin-bottom: 16px;
      margin-top: 2px;
    }
    .section_catch {
      font-size: 86%;
    }

    /* --- heading --- */
    .heading-1 { font-size: 158%; }
    .heading-2 { font-size: 143%; }
    .heading-3 { font-size: 129%; }
    .heading-4 { font-size: 115%; }

    /* アンカー */
    .ttl-anchor .anchor {
      top: -75px;
    }

  }

/* breadcrumbs
**************************************** */
  .breadcrumbs {
    padding: 8px 0;
    font-size: 87%;
    background-color: #f6f6f6;
    border-top: 1px solid #d9d9d9;
    color: #665;
  }
  .breadcrumbs a {
    text-decoration: underline;
  }
  .breadcrumbs .breadcrumb_last {
    display: table-cell; 
    overflow: hidden;
  }
  @media screen and (max-width: 767px) {
    .breadcrumbs {
      font-size: 80%;
    }
    .breadcrumbs a {
      color: #665;
    }
  }

/* txt
**************************************** */
  .txt-lg { font-size: 107%; }
  .txt-sm { font-size: 93%; }
  .txt-xsm { font-size: 86%; }
  .txt-wh { color: #fff; }
  .txt-red { color: #D23918; }
  .txt-gray { color: #999; }
  .txt-gray-mid { color: #737373; }
  .txt-attention {
    display: block;
    line-height: 2;
    font-size: 88%;
    color: #999;
  }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
  }
  .txtarea p:not(:last-child) {
    margin-bottom: 1em;
  }
  .bold {
    font-weight: bold;
  }
  .ttl-lh {
    line-height: 1.6;
  }

  @media screen and (max-width: 767px) {
    /* SPのみで使うタイトル */
    .ttl-nav-gray { /* ナビ内見出し */
      background-color: #F4F3F4;
      color: #6d6d6d;
      font-weight: 400;
      padding: 6px 5%;
      font-size: 86%;
      margin-bottom: 12px;
      border-top: 1px solid #eaeaea;
      border-bottom: 1px solid #eaeaea;
      margin-top: 12px;
    }

    .txt-sp-sm {
      font-size: 93%;
    }
  }

/* table & list
**************************************** */
  table { width: 100%; }
  
  /* --- table_default --- */
  .table_default th, 
  .table_default td {
    padding: 16px 8px;
  }
  .table_default th {
    border-bottom: 2px solid #666;
  }
  .table_default td {
    padding: 16px 16px;
    border-bottom: 1px solid #666;
    border-left: 4px solid #fff;
  }

  /* --- table_line --- */
  .table_line th,
  .table_line td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .table_line th {
    background-color: #666;
    border: 1px solid #666;
    color: #fff;
    font-size: 107%;
  }
  .table_line td {
    border: 1px solid #D2D2D2;
    font-size: 93%;
  }
  .td-middle {
    vertical-align: middle;
  }

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 16px; }
  .list li {
    position: relative;
    padding-left: 1.1em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 4px;
    height: 4px;
    border-radius: 6px;
    background-color: #666;
  }
  /* 数字付きリスト */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num li { padding-left: 0; }
  .list-num li::before { display: none; }
  /* 白丸付きリスト */
  .list-circle li::before {
    border: 1px solid #666;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #666;
  }
  /* 入れ子のスタイル */
  .list li ul { margin-top: 16px; }
  .list li ul li::before {
    width: 6px;
    height: 6px;
    top: .8em;
  }

  /* --- dlリスト --- */
  .list-dl {
    position: relative;
    border-top: 1px solid #BFBFBF;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #666;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BFBFBF;
  }

  @media screen and (max-width: 767px) {
    /* table_line */
    .table_line th,
    .table_line td {
      padding-left: 8px;
      padding-right: 8px;
    }
  }

/* btn
**************************************** */
  .btn a {
    position: relative;
    display: inline-block;
    min-width: 240px;
    padding: 10px 32px;
    color: #4D4D4D;
    font-size: 93%;
    text-align: center;
    letter-spacing: .13em;
    overflow: hidden;
    border: 1px solid #bbb;
    text-decoration: none !important;
  }
  .btn-wh a {
    border-color: #fff;
    color: #fff;
  }
  .btn-wh a:hover { color: #fff; }
  .btn a::before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 16px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 1px #bbb;
    border-right: solid 1px #bbb;
    transform: rotate(45deg);
    transition: all .2s ease-out;
  }
  .btn-wh a::before {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .btn a:hover::before {
    right: 12px;
  }

  .flex .btn a + a { margin-left: 16px; }

  /* btn-gray */
  .btn-gray a {
    display: flex;
    align-items: center;
    background-color: #B3B3B3;
    color: #fff;
    height: 32px;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 83%;
    font-weight: 700;
  }
  .btn-gray a:not(:last-child) {
    margin-right: 8px;
  }
  .btn-gray a:hover {
    background-color: #888888;
  }
  .btn-gray svg {
    width: 14px;
    margin-right: 8px;
  }

  @media screen and (max-width: 767px) {
    .btn a {
      min-width: auto;
      padding: 12px 48px;
      min-height: 0;
    }
    .flex .btn,
    .flex .btn + .btn {
      margin-top: 4px;
      margin-left: auto;
      margin-right: auto;
    }
    .flex.flex-sp-block.btn a {
      width: 100%;
      margin: 4px 0;
    }
  }

/* cta
**************************************** */
  .cta {
    padding: 40px 0;
    background-color: #eee;
  }
  .cta--txt {
    font-size: 120%;
    margin-bottom: 24px;
  }
  .cta--btn {
    font-size: 160%;
  }
  .cta--btn.btn a {
    min-width: 400px;
  }
  .cta--tel .tel_txt {
    font-size: 160%;
  }
  .cta--form {
    background-color: #fff;
  }
   
  @media screen and  (max-width: 767px) {
    .cta--btn.btn a {
      min-width: 0;
    }
  }

/* cta-page
**************************************** */
  .cta-page {
    padding: 80px 0 40px;
    background-color: #eee;
  }
  .cta-page a:hover {
    opacity: .6;
  }
  .cta-page .imgarea {
    margin-bottom: 12px;
  }
   
  @media screen and  (max-width: 767px) {
    .cta-page {
      padding: 40px 0 24px;
    }
    .cta-page .imgarea {
      margin-bottom: 8px;
    }
  }

/* searchbox
**************************************** */
  .searchbox {
    display: flex;
    align-items: center;
  }
  .searchtext {
    border: 1px solid #dcdcdc;
    font-size: 86%;
    width: 192px;
    height: 32px;
    padding: 8px;
    letter-spacing: .08em;
    border-radius: 4px 0 0 4px;
    border-right: none;
    -webkit-appearance: none;
  }
  .searchtext:focus {
    outline: 0;
  }
  .searchtext + button {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: #b3b3b3;
    width: 32px;
    height: 32px;
    border-radius: 0 4px 4px 0;
  }
  .searchtext + button svg {
    width: 16px;
    transform: translateY(1px);
  }
  .searchtext + button:hover {
    background-color: #888888;
  }
  @media screen and (max-width: 767px) {
    .searchtext {
      font-size: 16px;
      height: 40px;
    }
    .searchtext + button {
      width: 40px;
      height: 40px;
    }
  }

/* catlist
**************************************** */
  .cat_list_thumb li a {
    display: flex;
    align-items: center;
    padding: 0;
    text-align: left;
    line-height: 1.5;
  }
  .cat_list_thumb li img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    margin-right: 16px;
  }

/* hover
**************************************** */
  a.hover-fade,
  .hover-fade a {
    transition: all .3s;
  }
  a.hover-fade:hover,
  .hover-fade a:hover {
    opacity: .6;
  }

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
  .header {
    background-color: #fff;
    line-height: 1;
    z-index: 9990;
  }
  .page-contact .header {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
    left: 24px;
  }
  .page-contact .header.header-sm {
    width: auto;
  }
  .header--txt {
    padding: 8px 0;
    color: #b3b3b3;
    border-bottom: 1px solid #D9D9D9;
  }
  .header--main {
    padding: 32px 0;
  }
  .header_search--form {
    margin-right: 8px;
  }

  /* header-sm */
  .header-sm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: rgba(0,0,0,.05) 0 4px 4px .5px;
    transform: translateY(-110%);
  }
  .header-sm.show {
    animation: header_in .3s ease-out 0s 1 normal forwards;
  }
  .header-sm.hide {
    animation: header_out .3s ease-out 0s 1 normal forwards;
  }
  .header-sm .header--txt {
    display: none;
  }
  .header-sm .header--main {
    padding: 16px 0;
  }
  .header-sm .header--nav--top {
    margin-bottom: 16px;
  }

  @media screen and (max-width: 1300px) {
    .header--main {
      width: 95%;
    }
    .header--logo {
      width: 180px;
    }
  }
  @media screen and (max-width: 1000px) { 
    .header--logo {
      width: 140px;
    }
  }
  @media print, screen and (min-width: 768px) {
    .header--nav,
    .gnav,
    .gnav ul,
    .gnav li,
    .gnav a {
      height: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .header {
      position: absolute;
      top: 0;
      width: 100%;
      min-height: 56px;
    }
    .header.show {
      position: fixed;
    }
    .header.show #important_news {
      display: none;
    }
    .header--main {
      padding: 0;
      width: auto;
      height: 100%;
      justify-content: space-between;
    }
    .header--txt {
      display: none;
    }
    .header--logo {
      width: 100px;
    }
    .page-contact .header {
      left: 0;
    }
    /* toolbar */
    .header--nav--top,
    .header-sm .header--nav--top {
      display: none;
    }
  }

/* gnav
**************************************** */
  .gnav a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex!important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 40px;
    text-align: center;
  }
  .gnav a:hover {
    opacity: .7;
  }
  .gnav .current > a > span {
    border-bottom: solid 1px;
  }
  .gnav span {
    padding: 4px 0;
  }
  .gnav .has-subnav > a {
    cursor: default;
  }
  .gnav .has-subnav > a > span::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #898989;
    border-top: 1px solid #898989;
    transform: rotate(135deg) translate(-4px,3px);
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 8px;
  }
  .gnav--list > li:not(:last-child) {
    border-right: 1px solid #4d4d4d;
  }
  .gnav--list > li > a {
    position: relative;
    font-size: 108%;
  }
  .gnav--list > li.has-subnav > a::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -40px;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #f4f3f4;
    transform: rotate(-90deg);
    margin: auto;
    transition: all .3s;
    opacity: 0;
  }
  .header-sm .gnav--list > li.has-subnav > a::after {
    bottom: -28px;
  }
  .gnav--list > li.has-subnav:hover > a::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 32px;
    bottom: -32px;
    left: 0;
  }
  .gnav--list > li.has-subnav:hover > a::after {
    opacity: 1;
  }
  .gnav--list > li:last-child > a {
    padding-right: 16px;
  }

  /* --- gnav--sub --- */
  .gnav--sub {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 28px;
    margin-top: 18px;
    background-color: #F4F3F4;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
  }
  .gnav li:hover .gnav--sub {
    opacity: 1;
    pointer-events: all;
  }
  .gnav--sub_list {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 960px;
    margin: auto;
  }

  /* ---CTA --- */
  .gnav--tel {
    margin-left: 8px;
    font-size: 147%;
  }
  .gnav--tel small {
    font-size: 59%;
  }
  .gnav--contact {
    margin-left: 8px;
    font-size: 107%;
  }
  .gnav--contact a {
    padding: 0 32px;
    color: #fff;
  }

  @media screen and (max-width: 1300px) {
    .gnav a {
      padding: 0 32px;
    }
  }
  @media screen and (max-width: 1100px) {
    .gnav a {
      padding: 0 24px;
    }
    .gnav--list > li > a {
      font-size: 100%;
    }
  }
  @media screen and (max-width: 1000px) {
    .gnav a {
      padding: 0 16px;
    }
    .gnav--sub_list {
      width: 100%;
      font-size: 90%;
    }
  }
  @media screen and (max-width: 767px) {
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      padding: 64px 5% 5%;
      pointer-events: none;
      transition: .4s ease-out;
      transform: translateY(-100%);
      background-color: #eee;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .gnav a {
      display: block!important;
      padding: 24px 24px;
    }
    .home_btn {
      position: relative;
      top: 0;
      left: 0;
      width: 56px;
      height: 56px;
      z-index: 9999;
      padding: 9px 0;
      text-align: center;
    }
    .home_btn img {
      max-width: 24px;
      display: block;
      margin: 0 auto;
    }
    .sp_menu_item-cart {
      position: relative;
      right: 0;
      top: 0;
    }
    .sp_menu_item-cart svg {
      width: 23px;
    }
    .scrollBtns {
      position: fixed;
      right: 5vw;
      bottom: calc(calc(56px + env(safe-area-inset-bottom) / 1.5) + 10px);
      z-index: -99;
      opacity: 0;
      transition: all ease-in-out .4s;
    }
    .scrollCartBtn {
      background-color: #8fc31f;
      color: #fff;
      font-size: .75rem;
      font-weight: 800;
      border-radius: 5px;
      padding: 15px 0;
      margin-right: 10px;
      position: relative;
      top: -13px;
      width: 47vw;
      max-width: 280px;
      display: inline-block;
      text-align: center;
    }
    .scrollCartBtn img {
      max-width: 25px;
      position: relative;
      left: -5px;
      bottom: 3px;
    }
    #scrollToTop {
      display: inline-block;
      width: 30px;
      height: 30px;
      background-color: #fff;
      border: 1px solid #9c9c9c;
      border-radius: 50px;
      position: relative;
      bottom: 3px;
    }
    #scrollToTop::before {
      content: '';
      display: block;
      height: 8px;
      width: 8px;
      border-top: 1px solid #9c9c9c;
      border-right: 1px solid #9c9c9c;
      position: absolute;
      left: 50%;
      top: 45%;
      transform: translate(-50%) rotate(-45deg);
    }
    @media screen and (min-width: 768px) {
      .scrollBtns,
      .scrollBtns.visible {
        opacity: 0;
      }
    }
    .scrollBtns.visible {
      opacity: 1;
      z-index: 99;
    }
    .scrollBtns.half-visible {
      opacity: .5;
    }

    /* ---CTA --- */
    .gnav--tel {
      margin-left: 0;
      text-align: center;
    }
    .gnav--contact {
      margin-left: 0;
    }
  }

/* bottom-gnav
**************************************** */
  @media screen and (max-width: 767px) {
    .gnav-bottom {
      position: fixed;
      bottom: -1px;
      display: flex;
      z-index: 9990;
      width: 100%;
      height: calc(56px + env(safe-area-inset-bottom) / 1.5);
      background-color: #fff;
      box-shadow: 0 0 4px 0 rgba(0,0,0,.1);
    }
    .page-contact .gnav-bottom {
      display: none;
    }
    .sp_menu_item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-direction: column;
      width: 56px;
      height: 56px;
      padding: 8px 0;
    }

    /* ---gnav_btn --- */
    .gnav_btn {
      flex-direction: column;
      padding: 12px 0 8px;
    }
    .gnav_btn--lines {
      position: relative;
      width: 22px;
      height: 16px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #444;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .gnav-bottom.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(-45deg);
      transform: translateY(9px) rotate(-45deg);
    }
    .gnav-bottom.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .gnav-bottom.active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-9px) rotate(45deg);
      transform: translateY(-9px) rotate(45deg);
    }
    .gnav_btn > span {
      font-size: 65%;
      padding-left: 3px;
    }
    .gnav-bottom .sp_menu_item {
      position: relative;
    }
    .gnav-bottom .sp_menu_item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      display: block;
      width: 1px;
      height: 40px;
      background-color: rgba(0,0,0,.1);
      margin: auto;
    }
    .gnav-bottom > .sp_menu_item {
      width: 20%;
    }
    .gnav-bottom svg {
      width: 21px;
    }
    .sp_menu_item-blog svg {
      width: 22px;
    }
    .sp_menu_item-search svg {
      width: 23px;
    }
    .sp_menu_item-shugi {
      justify-content: center;
    }
    .sp_menu_item-shugi img {
      max-height: 22px;
      padding-top: 2px;
      margin-bottom: 2px;
      padding-bottom: 1px;
    }
    .sp_menu_item-favorite svg {
      width: 22px;
    }
    .sp_menu_item-login svg {
      width: 16px;
      margin-top: 2px;
      margin-bottom: 2px;
    }
    .sp_menu_txt {
      font-size: 65%;
    }
  }

/* sp_search
**************************************** */
@media screen and (max-width: 767px) {
  .sp_search {
    display: none;
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    top: 0;
    padding: 16px 0 120px;
  }
  .sp_search #header_search--form {
    margin-right: auto;
    margin-bottom: 16px;
  }
  .sp_search .searchbox {
    display: flex;
    align-items: center;
    width: calc(100% - 82px);
  }
  .sp_search .searchtext {
    width: calc(100% - 40px);
    height: 40px;
  }
  .sp_search .searchtext + button {
    width: 40px;
    height: 40px;
  }
  .sp_search .cat_list {
    margin-bottom: 8px;
  }
  .sp_search .cat_list a {
    margin-bottom: 6px;
    margin-right: 8px;
  }
  .sp_search .side--list {
    padding-left: 0;
  }
  .sp_search .side--list:not(:last-child) {
    margin-bottom: 8px;
  }
}

/* sp_nav
**************************************** */
@media screen and (max-width: 767px) {
  .sp-nav {
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    width: 75%;
    height: 100vh;
    overflow: scroll;
    top: 0;
    padding: 0 0 120px;
    transform: translateX(-100%);
    transition: all .3s ease;
  }
  .sp-nav.active {
    transform: translateX(0);
  }
  .sp-nav--bg {
    position: fixed;
    background-color: rgb(0,0,0,.4);
    z-index: 9998;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    top: 0;
    pointer-events: none;
    opacity: 0;
    transition: all .2s ease;
  }
  .sp-nav--bg.active {
    pointer-events: all;
    opacity: 1;
  }
  .sp-nav--close_btn {
    position: fixed;
    left: 78%;
    bottom: 10px;
    width: 40px;
    height: 40px;
    padding: 4px;
    z-index: 9999;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }
  .sp-nav--close_btn.active {
    opacity: 1;
    pointer-events: none;
    transition-delay: .15s;
  }
  .sp-nav .ttl-nav-gray {
    margin: 0;
  }
  .sp-nav--list > li {
    position: relative;
    border-bottom: 1px solid #eaeaea;
  }
  .sp-nav--list > li:last-child {
    border-bottom: 0;
  }
  .sp-nav--list > li > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 17px 5%;
    font-weight: 700;
  }
  .sp-nav--list > li > a::after {
    content:'';
    position: absolute;
    right: 19px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #bbb;
    border-top: 2px solid #bbb;
    transform: rotate(45deg);
  }
  .sp-nav--list > li.sp-nav--open > a::after {
    display: none;
  }
  .sp-nav--list > li:last-child > a {
    border-bottom: none;
  }
  .sp-nav--list > li.bottom-line > a {
    border-bottom: 1px solid #eaeaea;
  }

  /* icon */
  .sp-nav--open_btn {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
    width: 14px;
    height: 14px;
    pointer-events: none;
  }
  .sp-nav--open_btn span:first-child,
  .sp-nav--open_btn span:last-child {
    position: absolute;
    top: 14px;
    right: 0;
    display: block;
    width: 14px;
    height: 2px;
    margin:auto;
    background-color: #bbb;
    transition: .4s ease;
  }
  .sp-nav--open_btn span:first-child {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .sp-nav--open_btn.active span:first-child {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  .sp-nav--open_btn.active span:last-child {
    background-color: transparent;
  }

  /* sub */
  .sp-nav--sub {
    display: none;
    border-top: 1px dashed #dadada;
  }
  .sp-nav--sub .cat_list_thumb {
    padding: 12px 8px 12px 12px;
    font-size: 78%;
  }
  
  .sp-nav--sub .cat_list_thumb li {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3.9%;
    font-weight: 700;
  }
  .sp-nav--sub .cat_list_thumb li img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .sp-nav--sub .cat_list_thumb li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

/* important news
*************************************************** */
  #important_news {
    padding: 15px 0 8px;
    line-height: 1.7;
    background-color: #d88982;
  }
  #important_news .inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  #important_news .imp--post {
    display: inline;
  }
  #important_news .imp--post a {
    color: #fff;
  }
  #important_news .imp--post a[href="javascript:void(0);"] {
    cursor: text;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
  #important_news .imp--post a:not([href="javascript:void(0);"]) {
    text-decoration: underline;
  }
  #important_news .imp--post a:not([href="javascript:void(0);"]):hover {
    text-decoration: none;
  }
  #important_news .imp--post a[target="_blank"]::after {
    content:'';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 4px;
    background-image: url(../images/common/icon-external-red.svg);
  } 
  #important_news .imp--post:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    margin-right: 8px;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    #important_news {
      padding: 8px 0;
    }
    .important_news--wrap {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      font-size: 86%;
    }
    #important_news .imp--post {
      position: relative;
      margin-bottom: 2px;
      padding-left: 18px;
    }
    #important_news .imp--post:not(:last-child)::after {
      display: none;
    }
    #important_news .imp--post::before {
      content:'';
      position: absolute;
      left: -5px;
      top: 1px;
      display: block;
      width: 18px;
      height: 18px;
      background-image: url('/wp/wp-content/themes/original_theme/images/common/icon-exclamation.svg');
      margin-top: 0;
      margin-bottom: 0;
    }
  }
.header-sm #important_news {
  display: none;
}
/* appeal
*************************************************** */
.appeal_txt {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 12px 0;
  text-align: center;
}
body:not(.home) .appeal_txt {
  border-bottom: none;
}
.appeal_link {
  border-bottom: 1px solid #444;
}
.appeal_txt p {
  display: inline;
}
@media screen and (max-width: 767px) {
  .appeal_txt {
    padding: 8px 0;
  }
  .appeal_link {
    font-size: 86%;
  }  
}
@media screen and (min-width: 768px) {
  .home .appeal_txt {
    margin-bottom: 2rem;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

.footer--cat_list li {
  width: calc(100% / 6 - 14px);
  margin-right: 16px;
  font-size: 93%;
  margin-bottom: 16px;
}
.footer--cat_list li:nth-child(6n) {
  margin-right: 0;
}
.footer--cat_list.cat_list_thumb li a {
  padding: 8px;
  background-color: #fff;
  word-break: break-all;
}
.footer--cat_list.cat_list_thumb li img {
  width: 48px;
  height: 48px;
}
.footer--box {
  background-color: #fff;
  padding: 36px 40px;
  margin-bottom: 40px;
}
.footer--box p:not(:last-child) {
  margin-bottom: 16px;
}
.footer--box .heading-4 {
  margin-top: 24px;
  margin-bottom: 8px;
}
.footer .section_ttl {
  margin-bottom: 16px;
}
.footer--ship_table tr td:nth-child(2) {
  min-width: 90px;
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 1200px) {
  .footer {
    box-shadow: inset rgba(0,0,0,.08) 0 3px 8px;
    font-size: 93%;
  }
  .footer--cat_list li {
    width: calc(100% / 4 - 12px);
    margin-right: 16px;
    font-size: 93%;
    margin-bottom: 16px;
  }
  .footer--cat_list li:nth-child(6n) {
    margin-right: 16px;
  }
  .footer--cat_list li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer--cat_list li {
    width: calc(100% / 2 - 4px);
    margin-right: 8px;
    font-size: 87%;
    margin-bottom: 8px;
  }
  .footer--cat_list li:nth-child(2n) {
    margin-right: 0;
  }
  .footer--box {
    padding: 24px;
    font-size: 93%;
  }
  .footer--box .flex .calendar-nextmonth {
    margin-bottom: 16px;
  }
  .footer .flex.flex-sp-block.flex-col2 > * {
    margin-bottom: 0;
  }
}

/* footer nav */
.footer--nav {
  font-size: 120%;
}
.footer--nav a {
  padding: 0 40px;
  border-left: 1px solid #000;
}
.footer--nav li:first-child a,
.footer--subnav li:first-child a {
  border-left: 0;
}
.footer--subnav a {
  padding: 0 24px;
  border-left: 1px solid #a0a0a0;
}
.copyright {
  padding: 16px;
}
.copyright small {
  margin-right: 8px;
}
.copyright a {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  padding: 0 8px;
}
.copyright a img {
  margin-left: 4px;
}

/* calendar */
.flex .calendar {
  width: 46.5%;
}
.xo-event-calendar table {
  color: #4D4D4D;
  font-size: 97%;
  font-weight: 400;
}
.xo-event-calendar table.xo-month .month-dayname td {
  border-width: 1px 0 0 0;
  text-align: center;
  padding-top: -4px;
}
.xo-event-calendar table.xo-month .month-dayname td div {
  text-align: center;
  padding-top: 7px;
}
.xo-event-calendar table.xo-month .month-dayname td div.holiday-all {
  background-color: #ffe8e8 !important;
  color: #b55353 !important;
}
.xo-event-calendar table.xo-month > thead th.saturday,
.xo-event-calendar table.xo-month > thead th.sunday,
.xo-event-calendar table.xo-month .month-dayname td div.today {
  color: #4D4D4D;
}
.xo-event-calendar table.xo-month .month-week table {
  height: 0;
}
.xo-event-calendar table.xo-month > thead th {
  border: 0;
}
.xo-event-calendar table.xo-month {
  border-width: 1px 0 1px 0;
}
.xo-event-calendar table.xo-month .month-dayname-space {
  height: 2em;
}
.xo-event-calendar table.xo-month .month-header > span {
  font-size: 100%;
}

@media screen and (max-width: 1100px) {
  .footer--nav a {
    padding: 0 20px;
  }
  .footer--subnav a {
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .flex .calendar {
    width: 100%;
  }
  .footer--toolbar {
    display: none;
  }
  .footer--nav {
    font-size: 108%;
    margin-bottom: 24px;
  }
  .footer--nav li {
    width: 100%;
  }
  .footer--nav a {
    padding: 10px 10px;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    display: block;
    border-left: none;
  }
  .footer--nav li:last-child a {
    border-bottom: 1px solid #e8e8e8;
  }
  .footer--subnav {
    flex-wrap: wrap;
  }
  .footer--subnav li {
    margin-bottom: 8px;
  }
  .footer--nav--insta a {
    display: flex;
    align-items: center;
  }
  .footer--nav--insta a img {
    margin-right: 8px;
  }
  .copyright {
    padding-bottom: calc(72px  + env(safe-area-inset-bottom) / 1.5);
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

  .home main {
    padding-top: 0;
    padding-bottom: 80px;
  }
  @media screen and (max-width: 767px) {
    .home main {
      padding-bottom: 40px;
    }
    .home .main_wrap {
      width: 100%;
    }
  }

/* hero
*************************************************** */
  .hero {
    position: relative;
    margin-bottom: 120px;
  }
  .hero--slide > * {
    display: none;
  }
  .hero--slide.slick-initialized > * {
    display: block;
  }
  .hero--slide--child {
    width: 840px;
    margin: 0 8px;
  }
  .hero--slide--child img {
    width: 100%;
  }
  .hero--slide--dots {
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
  }
  .hero--slide--dots ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero--slide--dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E5E5;
    margin-bottom: 16px;
    margin: 0 8px;
  }
  .hero--slide--dots .slick-active {
    opacity: 1;
    background-color: #B3B3B3;
  }

  /* arrow */
  .hero--slide--arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 44px;
    margin: auto;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
  }
  .hero--slide--arrows:empty {
    display: none;
  }
  .hero--slide--arrows .slick-arrow {
    position: relative;
    width: 44px;
    height: 44px;
    background-color: transparent;
    pointer-events: all;
    background-color: rgba(0,0,0,.2);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.8);
  }
  .hero--slide--arrows .slick-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    right: 0;
    display: block;
    width: 12px;
    height: 12px;
    margin: auto;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
    transition: all .3s;
  }
  .hero--slide--arrows .slick-arrow:hover {
    background-color: rgba(0,0,0,.3);
    cursor: pointer;
  }
  .hero--slide--arrows .slick-prev {
    position: absolute;
    left: calc(50% - 485px);
    bottom: 0;
    transform: translateX(-50%);
  }
  .hero--slide--arrows .slick-next {
    position: absolute;
    right: calc(50% - 485px);
    bottom: 0;
    transform: translateX(50%);
  }
  .hero--slide--arrows .slick-next::before {
    transform: rotate(135deg);
    left: 0;
    right: 5px;
  }
  @media screen and (max-width: 767px) {
    .hero {
      margin-bottom: 80px;
    }
    .hero--slide--child {
      width: 100vw;
      margin: 0;
    }
    /* arrows */
    .hero--slide--arrows {
      transform: none;
      top: auto;
      bottom: -48px;
    }
    .hero--slide--arrows .slick-arrow {
      width: 30px;
      height: 30px;
    }
    .hero--slide--arrows .slick-prev {
      left: 30px;
    }
    .hero--slide--arrows .slick-next {
      right: 30px;
    }
    .hero--slide--arrows .slick-arrow::before  {
      width: 8px;
      height: 8px;
    }
  }

  /* free entry */
  /* .main_column */
  /* section
  *************************************************** */
  .top--section:first-child  {
    margin-bottom: 32px;
  }
  
  .top--section .flex-col4 {
    margin-bottom: 27px;
  }
  @media screen and (max-width: 767px) {
    .top--section {
      margin-bottom: 0;
      padding: 0 5%;
      padding-top: 24px;
      padding-bottom: 0;
    }
    .top--section:first-child  {
      margin-bottom: 16px;
    }
    .top--section-gray {
      background-color: #f2f2f2;
      padding-bottom: 24px;
    }
    .top--section .flex-col4 {
      margin-bottom: 0;
    }

  }

  /* top_recommend
  *************************************************** */
  .top_recom--ttl {
    margin-bottom: 8px;
  }
  .top_recom--ttl img {
    width: 19px;
    vertical-align: sub;
  }
  .top_recom--img {
    margin-bottom: 16px;
  }
  .top--section > div {
    position: relative;
  }
  .top_recom--new {  
    display: inline-block;
    position: absolute;
    top: -6px;
    left: 10px;
    margin: 0;
    padding: 12px 0 8px;
    z-index: 2;
    width: 40px;
    text-align: center;
    color: white;
    font-size: 72%;
    letter-spacing: .05em;
    background: rgba(223, 0, 0, 0.7);
    border-radius: 3px 0 0 0;
    font-weight: 700;
    } 
  /* .top_recom--new .wave-border{
    position: relative;
  } */
  .top_recom--new::before,
  .top_recom--new::after {
    position: absolute;
    content: '';
  }
  .top_recom--new::before {
    height: 3px;
    width: 5px;
    right: -4px;
    top: 0px;
    background: rgba(223, 0, 0, 0.7);
  }
  .top_recom--new::after {
    height: 6px;
    width: 8px;
    left: 39px;
    top: 0px;
    border-radius: 8px 8px 0 0;
    background: #c02031;
  }
  .top_recom--new .wave-border:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 20px solid rgba(223, 0, 0, 0.7);
    border-right: 20px solid rgba(223, 0, 0, 0.7);
    border-bottom: 10px solid transparent;
  }
  @media screen and (max-width: 767px) {
    .top_recom--img {
      margin-bottom: 12px;
    }
    .top_recom--ttl {
      margin-bottom: 4px;
    }
    .flex-sp-col2 .top_recom--new .wave-border {
      width: 36px;
      padding: 9px 0 6px;
    }
    .flex-sp-col2 .top_recom--new::before {
      right: -4px;
      top: 0px;
    }
    .flex-sp-col2 .top_recom--new::after {
      left: 40px;
      top: 0px;
    } 
  }

  /* posts
  *************************************************** */
  .home .post-news {
    border-top: 1px solid #cacaca;
  }
  @media screen and (max-width: 767px) {
    .home .post-blog,
    .single-blog .related_posts .post-blog {
      background-color: #fff;
      padding: 12px;
    }
    .top--section .posts-feature {
      margin-bottom: 24px;
    }
  }

  /* side
  *************************************************** */
  @media screen and (max-width: 767px) {
    .home .side_section {
      display: none;
    }
  }
  

  /* recommend
  *************************************************** */
  .home .item--related_box {
    border-top: 0;
    padding-top: 0;
  }
  .top_section--news,
  .item--related_box {
    margin-top: 64px;
  }
  @media screen and (max-width: 767px) {
    .item--related_box {
      margin-bottom: 0;
      padding: 32px 0;
    }
    .mobile.subpage .item--related_box {
      padding: 24px 0;
    }
    .item--related_box .section_ttl {
      padding: 0 5%;
    }
    .item--related_box:first-of-type {
      padding-bottom: 0;
    }
    .top_section--news {
      margin-top: 32px;
      margin-bottom: 32px;
    }
    .item--related_box {
      margin-top: 0;
    }
  }

  /* Instagram
  *************************************************** */
  .instagram {
    padding-top: 64px;
    border-top: 1px solid #d9d9d9;
  }
  .instagram .section_ttl {
    margin-bottom: 32px;
  }
  #instagram_posts {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  #instagram_posts li {
    position: relative;
    width: calc(100% / 5 - 24px);
    margin-bottom: 30px;
  }
  #instagram_posts li::before {
    content:"";
    display: block;
    padding-top: 100%;
  }
  #instagram_posts li:not(:nth-child(5n)) {
    margin-right: 30px;
  }
  #instagram_posts li:first-child {
    margin-left: auto;
  }
  #instagram_posts li:last-child {
    margin-right: auto;
  }
  #instagram_posts li a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 767px) {
    .instagram {
      padding-top: 40px;
      margin-bottom: 0;
    }
    #instagram_posts li {
      position: relative;
      width: calc(100% / 3 - 4px);
      margin-bottom: 6px;
    }
    #instagram_posts li:not(:nth-child(5n)) {
      margin-right: 0;
    }
    #instagram_posts li:not(:nth-child(3n)) {
      margin-right: 6px;
    }
s  }

/* ##############################################################################

    PAGE

############################################################################## */

/* contact
*************************************************** */
  .contact--txt {
    margin-bottom: 40px;
  }
  .contact--tel {
    margin-bottom: 24px;
  }
  .contact--tel .tel_txt {
    font-size: 200%;
  }
  .contact--form {
    background-color: #fff;
  }
  .page-contact #important_news,
  .page-contact .header--txt,
  .page-contact .footer { display: none; }
   
  @media screen and  (max-width: 767px) {
    .page-contact .section_pdg {
      padding-top: 80px;
    }
    .contact--txt.txt-ctr {
      text-align: left;
    }
  }

/* contact
*************************************************** */
   
  @media screen and  (max-width: 767px) {
    .page-thanks .inner.txt-ctr {
      text-align: left;
    }
  }

/* privacy
*************************************************** */
  .page-privacy h3 {
    margin-top: 40px;
    margin-bottom: 16px;
  }

/* 404
*************************************************** */
  .page-404 .content-404 p {
    margin-bottom: 24px;
    font-size: 115%;
  }
  @media screen and  (max-width: 767px) {
    .page-404 .content-404 p {
      margin-bottom: 24px;
      font-size: 100%;
    }
    .page-404 main .searchtext {
      width: 250px;
    }
    .page-404 .btn a {
      width: 200px;
    }
    .page-404 .mce-content-body {
      margin-bottom: 24px;
    }
  }

/* about
*************************************************** */
.about--box {
  border: 1px solid #d9d9d9;
  padding: 24px;
}
.about--box a {
  text-decoration: underline;
}
.mce-content-body .about-guide.btn {
  margin-top: 16px;
}
.page-about .mce-content-body .editor-ttl4:first-child  {
  font-size: 130%;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .page-about .section_ttl {
    line-height: 1.9;
    letter-spacing: .12em;
  }
  .page-about .section_pdg-t-sm {
    padding-top: 40px;
  }
  .mce-content-body .about-guide.btn {
    margin-bottom: 32px;
  }
  .page-about .mce-content-body .editor-ttl4:first-child  {
    margin-top: 0;
    font-size: 118%;
    line-height: 1.7;
  }
}

/* favorite
*************************************************** */
.no-favorites {
  width: 100%;
  text-align: center;
}
.page-favorite .simplefavorite-button {
  position: relative;
  padding: 0;
}
.favorites-list .post-info .simplefavorite-button {
  height: 32px;
}
@media screen and (max-width: 767px) {
  .page-favorite .no-favorites {
    width: 100%;
    margin-right: 0;
  }
}

/* guide
*************************************************** */
.page-guide .mce-content-body img {
  margin: 0;
}
.page-guide .guide--anchor.btn a {
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .page-guide .guide--table-ship th {
    width: 70%;
    white-space: normal;
  }
  .page-guide .guide--table-tokusho th {
    width: 40%;
    white-space: normal;
  }
}

/* sitemap
*************************************************** */
  .sitemap--list { width: 49%; }
  .sitemap--lists {
    border: 1px solid #d9d9d9;
    padding: 48px 80px;
  }
  .sitemap--list-page.sitemap--list > li { margin-bottom: 10px; }
  .sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) { margin-top: 10px; }
  .sitemap--list-posts.sitemap--list > .sitemap--item-child { 
    margin-bottom: 16px;
    color: #999;
   }
  .sitemap--list li a {
    display: block;
    text-decoration: none;
  }
  .sitemap--list li a:hover {
    color: #4267b2;
    text-decoration: underline;
  }
  .sitemap--item-ttl { 
    font-weight: bold;
    font-size: 113%;
    margin-bottom: 8px;
  }
  .sitemap--item:not(.sitemap--item-ttl) { font-size: 100%; }

  /* --- category --- */
  .sitemap--list li.sitemap--item-child a { padding-left: 8px; }
  .sitemap--list li.sitemap--item-child.sitemap--item-page { padding: 6px 0 6px 24px; }
  .sitemap--list li.sitemap--item-taxonomy ul { letter-spacing: .05em; }
  .sitemap--list li.sitemap--item-taxonomy ul li {
    display: inline-block;
    padding: 0;
    margin-right: 8px;
    letter-spacing: normal;
    font-size: 83%;
  }
  
  @media screen and (max-width: 767px) {
    .sitemap--list { width: 100%; }
    .sitemap--lists {
      padding: 24px;
    }
    .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 8px; }
    .sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) {
      margin-top: 16px;
    }
    .sitemap--list li.sitemap--item-taxonomy ul li {
      display: block;
    }
    .sitemap--list li.sitemap--item-taxonomy ul li a {
      padding: 4px 8px;
    }
  }


/* ##############################################################################

    ARCHIVE

############################################################################## */
  
/* main_column
**************************************** */
  .archive .container > .inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .main_column {
    flex: 1;
  }
  .side_column + .main_column {
    margin-left: 64px;
  }
  @media screen and (max-width: 1240px) {
    .side_column + .main_column {
      margin-left: 32px;
    }
  }
  @media screen and (max-width: 767px) {
    .side_column + .main_column {
      margin-left: 0;
    }
    .archive .container > .inner {
      padding-top: 24px;
      padding-bottom: 40px;
    }
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cat_list:not(:last-of-type) {
    margin-bottom: 0;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 93%;
    color: #4D4D4D;
    line-height: 1.8;
    float: left;
    margin-right: 8px;
    margin-bottom: 9px;
    white-space: nowrap;
    border-bottom: 1px solid #bdbdbd;
  }
  .cat_list--tag {
    margin: 6px 0 10px;
  }
  .cat_list--tag a {
    border-bottom: none;
    font-size: 80%;
    font-weight: 800;
    margin-right: 12px;
    position: relative;
    line-height: 1;
  }
  .cat_list--tag a::before {
    content: '#';
    position: relative;
  }
  .post .post--img {
    border-radius: 3px;
    transition: all .3s;
    margin-bottom: 16px;
  }
  .post .post--ttl {
    line-height: 1.6;
  }
  .post .post--ttl:last-child {
    margin-bottom: 0;
  }
  .post:hover  .post--img {
    opacity: .7;
  }
  .post--date {
    letter-spacing: .04em;
  }
  .single .post--date  {
    line-height: 1.8;
  }
  .no-image {
    background-size: 80% auto!important;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #eee;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/noimage.png);
  }

  @media print, screen and (max-width: 1100px) {
    .main_column {
      width: 100%;
      margin-right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .post {
      font-size: 13px;
    }
    .post .post--img {
      margin-bottom: 12px;
    }
    .cat_list a {
      margin-bottom: 4px;
      margin-right: 4px;
    }
    .cat_list--tag a {
      margin-right: 12px;
    }
  }

/* side_column
**************************************** */
  .side_column {
    width: 230px;
  }
  .side_section {
    background-color: #F4F3F4;
    padding: 24px 16px;
    margin-bottom: 24px;
  }
  .side_section:last-child { margin-bottom: 80px; }
  .side--ttl {
    font-size: 108%;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 16px;
    padding-bottom: 8px;
    padding-left: 6px;
    letter-spacing: .2em;
  }
  .side_section #side_form {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .side_section .searchtext {
    width: 100%;
    font-size: 79%;
  }
  .side--subttl {
    color: #B3B3B3;
    margin-bottom: 8px;
  }
  .side--list {
    padding-left: 16px;
    font-size: 93%;
  }
  .side--list:not(:last-child) {
    margin-bottom: 24px;
  }
  .side--list a {
    position: relative;
    display: block;
    transition: all .3;
    padding-left: 15px;
    margin-bottom: 8px;
  } 
  .side--list a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    width: 8px;
    height: 2px;
    background-color: #B3B3B3;
    transition: all .3;
  }
  .side--link_list {
    padding-left: 24px;
  }
  /* side freespace */
  .side--free {
    font-size: 93%;
  }
  .side--free.mce-content-body .post-related_item {
    width: 100%;
    min-width: auto;
  }
  .side--free.mce-content-body .post-related_item .img-thumb {
    width: 70px;
    height: 70px;
  }

  @media screen and (max-width: 767px) {
    .side--free {
      padding: 16px;
    }
    .side--free.mce-content-body {
      font-size: 90%;
    }
    .side--free.mce-content-body img {
      margin: 0 0 12px;
    }
  }

  /* --- archive-pulldown --- */
  .archive-pulldown--wrap {
    position: relative;
    z-index: 2;
  }
  .archive-pulldown {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .archive-pulldown .archive_list {
    position: relative;
    font-size: 92%;
  }
  .archive-pulldown .archive_list:not(:last-child) { margin-right: 24px; }
  .archive-pulldown .archive_list a {
    display: block;
    padding: 4px 12px;
    text-align: left;
  }
  .archive-pulldown .archive_list a:hover {
    background-color: #f2f2f2;
  }
  .archive-pulldown .archive_list a:not(:last-child) { border-bottom: 1px solid #eee; }
  .archive-pulldown .archive_list--label { margin-right: 8px; }
  .archive-pulldown .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    min-width: 130px;
    padding: 9px 32px 9px 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    letter-spacing: .1em;
    line-height: 1;
  }
  .archive-pulldown .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #888;
    border-right: 2px solid #888;
    transform: rotate(45deg);
    transition: .2s ease-out;
    transform-origin: 50% 50%;
  }
  .archive-pulldown .active .archive_list--btn::after {
    top: 15px;
    transform: rotate(225deg);
  }
  .archive-pulldown .archive_list--menu {
    position: absolute;
    z-index: 2;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
    white-space: nowrap;
    transform: translateY(-1px);
  }
  .archive-pulldown .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }

  @media screen and (max-width: 767px) {
    .side_column {
      display: none;
    }
    .archive-pulldown {
      justify-content: flex-end;
    }
    .archive-pulldown .archive_list--menu {
      right: 0;
    }
    .archive-pulldown .archive_list a {
      padding: 8px 12px;
    }
  }

/* item
**************************************** */

  .cat_topimg {
    text-align: center;
  }
  .cat_desc {
    margin-bottom: 32px;
  }
  .archive--control {
    padding-top: 16px;
    border-top: 1px solid #d9d9d9;
    margin-bottom: 24px;
  }
  .archive--control span {
    margin-left: auto;
    margin-right: 16px;
  }

  @media screen and (max-width: 767px) {
    .cat_desc {
      margin-bottom: 16px;
    }
    .archive--control {
      border-top: none;
      padding: 8px 16px;
      font-size: 86%;
      background-color: #f2f2f2;
    }
    .archive--control span {
      display: none;
    }
  }

  /* --- セレクトボックス --- */
  .form-sort {
    position: relative;
  }
  .select-sort {
    position: relative;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    border-color: #d1d1d1;
    padding: 9px 32px 9px 16px;
    font-weight: 700;
    color: #4D4D4D;
    letter-spacing: .1em;
    border-radius: 4px;
    background-color: #fff;
  }
  .select-sort::-ms-expand {
    display: none;
  }
  .form-sort::after {
    content:'';
    position: absolute;
    right: 10px;
    top: -4px;
    bottom: 0;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-top: 2px solid #888;
    transform: rotate(135deg);
    margin: auto;
  }
  @media screen and (max-width: 767px) {
    .select-sort {
      padding: 9px 24px 9px 9px;
    }
  }


  /* --- post --- */
  .post-info {
    position: relative;
  }
  .post-info img {
    width: 100%;
    height: 100%;
  }

  /* --- post-related_item --- */
  .mce-content-body .post-related_item {
    border: 1px solid #e3e3e3;
    margin-bottom: 16px;
  }
  .mce-content-body .post-related_item ~ br {
    display: none;
  }
  .mce-content-body .post-related_item > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-right: 16px;
  }
  .mce-content-body .post-related_item .img-thumb {
    width: 120px;
    min-height: 120px;
    height: auto;
    margin: 0 16px 0 0;
    object-fit: cover;
    align-self: stretch;
  }
  .mce-content-body .post-related_item .txt {
    padding: 8px 0;
  }
  .mce-content-body .post-related_item .more {
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin-top: 8px;
    width: 125px;
    justify-content: center;
    background-color: #efefef;
    font-size: 80%;
  }
  .mce-content-body .post-related_item .more img {
    width: 9px;
    transform: rotate(45deg);
    margin: 0 0 0 4px;
  }
  .mce-content-body .post-related_item em {
    word-break: break-all;
    white-space: break-spaces;
    font-weight: 700;
  }
  /* post_card */
  .mce-content-body .post-related_item-post em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .mce-content-body .post-related_item-post .img-thumb {
    width: 150px;
    min-height: 100px;
    object-fit: cover;
  }
  /* 表示調整 */
  .mce-content-body .column_box .post-related_item {
    width: 100%;
  }
  .item_col-rgt .mce-content-body h3 {
    border-color: #9c9c9c;
    font-size: 135%;
  }
  .item_col-rgt .mce-content-body h4 {
    font-size: 128%;
  }
  .item_col-rgt .mce-content-body h5 {
    font-size: 120%;
  }
  .item_col-rgt .mce-content-body h6 {
    font-size: 115%;
  }
  .item_col-rgt .mce-content-body h4::before {
    background-color: #9c9c9c;
  }
  .item_col-rgt .mce-content-body h5::before {
    background: #9c9c9c;
  }

  @media screen and (min-width: 768px) {
    .item_col-rgt .mce-content-body .post-related_item-post span {
      font-size: 80%;
    }
    .item_col-rgt .mce-content-body .post-related_item-post em {
      font-size: 86%;
    }
    .item_col-rgt .mce-content-body .column_box .post-related_item {
      width: 100%;
    }
    .item_col-rgt .mce-content-body .post-related_item em {
      font-size: 93%;
    }
    .item_col-rgt .mce-content-body .post-related_item span {
      font-size: 86%;
    }
    .item_col-rgt .mce-content-body .post-related_item .more {
      font-size: 73%;
    }
    .item_col-rgt .mce-content-body h3 {
      padding: 16px;
    }
  }
  @media screen and (max-width: 767px) {
    .mce-content-body .post-related_item {
      margin-bottom: 8px;
      letter-spacing: .07em;
    }
    .mce-content-body .post-related_item,
    .mce-main .post-related_item {
      font-size: 86%;
    }
    .mce-content-body .post-related_item .img-thumb {
      width: 80px;
      min-height: 60px;
      margin: 0 10px 0 0;
    }
    .mce-content-body .post-related_item .more {
      display: none;
    }
    .mce-content-body .post-related_item .txt em {
      font-size: 100%;
    }
    .mce-content-body .post-related_item-post {
      width: 100%;
      margin-right: 0;
    }
    .mce-content-body .post-related_item-post .img-thumb {
      width: 100px;
      min-height: 65px;
      flex-shrink: 0;
    }
    .mce-content-body .column_box .post-related_item {
      width: 100%;
    }
    .mce-content-body .column_box .post-related_item-post {
      width: 100%;
    }
    .item_col-rgt .mce-content-body h3 {
      padding: 12px;
      font-size: 125%;
    }
    .item_col-rgt .mce-content-body h4 {
      font-size: 120%;
    }
    .item_col-rgt .mce-content-body h5 {
      font-size: 115%;
    }
    .item_col-rgt .mce-content-body h6 {
      font-size: 110%;
    }
  }
  
  /* --- search --- */
  .search-no_result {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (max-width: 767px) {
    .search-no_result {
      width: 100%;
    }
  }



/* feature
**************************************** */
  .post-feature .img-trim.pos_rel::before {
    padding-top: 52.5%;
  }
  .post-feature .post--txt {
    color: #737373;
  }

/* news
**************************************** */
  .post-news {
    padding: 16px 0;
    border-top: 1px solid #d9d9d9;
  }
  .post-news:last-child {
    border-bottom: 1px solid #d9d9d9;
  }
  .post-news .cat_list a {
    padding: 0 8px;
    border: 1px solid #d9d9d9;
    margin-bottom: 0;
  }
  .post-news .cat_list {
    margin-right: 8px;
  }
  .post-news .post--date {
    margin-right: 16px;
  }
  .post-news .post--ttl {
    flex: 1;
    line-height: 1.5;
    font-weight: 400;
  }
  .post-news a[href="javascript:void(0);"],
  .post-news a[href="javascript:void(0);"]::before {
    cursor: default;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
  .post-news:hover a[href="javascript:void(0);"],
  .post-news:hover a[href="javascript:void(0);"]::before {
    opacity: 1;
  }

  /* --- news--archive --- */
  .news--archive {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #111;
  }
  .news--archive li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .news--archive a {
    color: #fff;
  }

  /* --- news_list --- */
  .posts-home_news .post,
  main .news_list .post {
    padding-bottom: 16px;
    padding-top: 16px;
    margin-bottom: 0;
    padding-right: 24px;
  }
  main .news_list .post--date {
    margin-right: 32px;
  }
  main .news_list a[href="javascript:void(0);"],
  main .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    opacity: 1;
    text-decoration: none;
  }
  .posts-home_news a,
  main .news_list a {
    display: block;
    align-items: center;
  }
  .posts-home_news a[target="_blank"]::after,
  main .news_list a[target="_blank"]::after {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.svg);
    vertical-align: -3px;
  }
  .post-news.has_link::before {
    content:'';
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ccc;
    border-top: 2px solid #ccc;
    transform: rotate(45deg);
  }

  @media screen and (max-width: 767px) {
    main .news_list .post { display: block; }
    main .news_list .post--date {
      display: inline-block;
      margin-bottom: 4px;
    }
  }

/* blog
**************************************** */
  .post-blog {
    width: 50%;
    padding-right: 40px;
  }
  .post-blog .post--img {
    margin-right: 24px;
    margin-bottom: 0;
    width: 160px;
    height: 120px;
    flex-shrink: 0;
    object-fit: cover;
  }
  .post-blog .cat_list a {
    font-size: 73%;
    padding: 0 8px;
    border: 1px solid #bdbdbd;
  }
  .archive-blog main .section_ttl {
    margin-bottom: 24px;
  }
  .archive-blog .post-blog {
    margin-bottom: 32px;
  }
  .archive-blog .archive-pulldown {
    margin-bottom: 32px;
    border-top: 1px solid #ccc;
    padding-top: 16px;
  }
  @media screen and (max-width: 1240px) {
    .posts-blog {
      display: block;
    }
    .post-blog {
      width: 100%;
      margin-bottom: 24px;
    }
  }
  @media screen and (max-width: 767px) {
    .archive-blog main .section_ttl {
      margin-bottom: 24px;
    }
    .post-blog {
      padding-right: 0;
      margin-bottom: 16px;
    }
    .post-blog .cat_list {
      margin-bottom: 4px;
    }
    .post-blog .post--img {
      margin-right: 16px;
      width: 120px;
      height: 90px;
    }
    .archive-blog .post-blog {
      align-items: flex-start;
    }
  }

/* ##############################################################################

    SINGLE

############################################################################## */

/* pass
**************************************** */
  #pass p {
    margin-bottom: 1em;
  }
  #pass input[name="post_password"] {
    padding: 5px;
    border: solid 1px #aaa;
    outline: none;
  }
  #pass input[type="submit"] {
    padding: 4px 16px;
    letter-spacing: .15em;
    background-color: #ddd;
    border-radius: 4px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all .4s ease-out;
  }
  #pass input[type="submit"]:hover {
    opacity: .7;
  }

/* wp-pagenavi
**************************************** */
  .wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 40px;
  }
  .wp-pagenavi .pages {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
  }
  .wp-pagenavi a {
    position: relative;
    padding: .5em 1em;
    background-color: #b3b3b3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 4px;
  }
  .wp-pagenavi a:hover {
    opacity: .7;
  }
  .wp-pagenavi a {
    color: #fff;
  }
  .wp-pagenavi > *:not(.pages) {
    max-width: calc(100% / 2.6);
  }
  .archive .wp-pagenavi > *:not(.pages),
  .search .wp-pagenavi > *:not(.pages) {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-weight: bold;
  }
  .archive .wp-pagenavi .current,
  .search .wp-pagenavi .current {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #989898;
    font-weight: bold;
  }
  .wp-pagenavi-single a[rel="prev"],
  .wp-pagenavi-single a[rel="next"] {
    width: 40px;
  }
  .wp-pagenavi > *:not(.pages) {
    margin-bottom: 4px; 
  }
  .wp-pagenavi > *:not(.pages):not(:last-child) {
    margin-right: 4px;
  }
  .wp-pagenavi .extend {
    width: 16px !important;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid;
    border-right: 2px solid;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    width: 8px;
    height: 8px;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .first::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .last::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .wp-pagenavi-single a[rel="prev"]::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .wp-pagenavi-single a[rel="next"]::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -6px;
  }
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -6px;
  }

  @media screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 24px;
    }
    .search .wp-pagenavi > *:not(.pages),
    .archive .wp-pagenavi > *:not(.pages) {
      width: 32px;
      height: 32px;
      font-size: 93%;
      letter-spacing: 0em;
    }
    .wp-pagenavi-single a[rel="prev"],
    .wp-pagenavi-single a[rel="next"] {
      width: 32px;
    }
    .wp-pagenavi .first::before,
    .wp-pagenavi .last::before {
      left: -5px;
    }
    .wp-pagenavi .first::after,
    .wp-pagenavi .last::after {
      right: -5px;
    }
  }

/* pass
**************************************** */
  .single .pass {
    width: 100%;
  }
  .single .pass p:first-child {
    margin-bottom: 16px;
  }

  @media screen and (max-width: 767px) {
    .single .pass p:first-child {
      text-align: left;
    }
  }

/* item
**************************************** */
.single-item .section_ttl {
  margin-bottom: 16px;
}
.single-item .section_ttl.item--ttl {
  margin-bottom: 8px;
}
.single-item .item--price {
  margin-bottom: 16px;
}
.single-item .item--price em {
  font-size: 146%;
}
.single-item main {
  margin-bottom: 40px;
}
.item_col-lft,
.item_col-rgt .mce-content-body {
  user-select: none;
}
.item_col-rgt {
  padding-top: 24px;
}
.single-item .mce-content-body {
  margin-top: 24px;
}
.single-item .mce-content-body h2,
.single-item .mce-content-body h3,
.single-item .mce-content-body h4,
.single-item .mce-content-body h5,
.single-item .mce-content-body h6 {
  clear: both;
}
.item--share {
  padding: 16px 24px;
  border-radius: 4px;
  margin-top: 24px;
  margin-bottom: 12px;
  border: 1px solid #d9d9d9;
}
.item--share iframe,
.item--share a {
  margin-right: 8px !important;
}
.item--banner {
  margin-bottom: 16px;
}
.item--back a {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
  background-color: #eee;
  padding: 6px 16px 6px 12px;
  font-size: 93%;
  margin-left: 20px;
}
.item--back a::before {
  content: '';
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-right: 20px solid #eee;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.item--related_box {
  border-top: 1px solid #dcdcdc;
  padding-top: 24px;
}
.item--related_box p {
  margin-bottom: 40px;
}
.txt-copyright {
  display: block;
  font-size: 70%;
  line-height: 1.8;
  letter-spacing: .1em;
  margin-top: 8px;
  margin-bottom: 32px;
}
.item_col-rgt .txt-copyright {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .single-item .section_pdg-t-sm {
    padding-bottom: 0;
  }
  .item_col-rgt {
    padding-top: 0;
  }
  .single-item .section_ttl,
  .single-item .heading-4 {
    margin-bottom: 16px;
  }
  .single-item main {
    margin-bottom: 0;
  }
  .item--related_box p {
    padding: 0 5%;
  }
  .single-item .container main .item_col-rgt {
    width: 90%;
    margin: 0 auto;
  }
  .txt-copyright {
    margin-bottom: 8px;
    margin-top: 4px;
    display: inline-block;
    padding: 5px 15px;
  }
  .item--share {
    flex-wrap: wrap;
    justify-content: center;
  }
  .item--share > span {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
    text-align: center;
  }
  .item--back {
    margin-bottom: 24px;
  }
}

/* --- colorme_tag --- */
.colorme_item {
  padding: 8px 0 !important;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.colorme_item:not(:last-child) {
  border-bottom: 0;
}
.colorme_tag .cartjs_box {
  padding: 0 !important;
}
.colorme_tag form[name="product_form"] {
  display: flex;
}
.cartjs_product_img {
  width: 80px !important;
  margin: 0 16px 0 0 !important;
  padding: 0 !important;
  text-align: left !important;
  flex: 0 0 80px;
}
.cartjs_product_table > table {
  margin: 0 !important;
  width: calc(100% - 160px) !important;
}
.cartjs_product_table tbody {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cartjs_product_table th {
  font-size: 93%;
  padding-right: 8px;
}
.cartjs_product_table .cartjs_sales_price {
  margin-right: 16px;
}
.cartjs_product_table .cartjs_sales_price td {
  /* 価格表示 */
  font-size: 108% !important;
  font-weight: 700;
  color: #d23917 !important;
}
.cartjs_product_table > table > tbody > tr> th,
.cartjs_product_table > table > tbody > tr> td {
  padding-bottom: 0 !important;
}
.cartjs_cart_in {
  display: flex;
  flex: 1;
  align-items: center;
  width: auto !important;
  margin: 0 !important;
  text-align: left !important;
}
.cartjs_product_name {
  font-size: 100% !important;
}
.colorme_item_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 24px;
}
.colorme_item_button > input {
  flex-shrink: 0;
  margin-bottom: 0 !important;
  width: 170px !important;
  height: 50px !important;
  background-color: #8fc31f !important;
  font-weight: 700;
  border-radius: 4px !important;
  margin-left: 0 !important;
  font-family: 'YuGothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', sans-serif !important;
}
.stock_num {
  margin-left: 12px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBzdHlsZT0iZmlsbDogI0QyMzkxODt0cmFuc2Zvcm06IDttc0ZpbHRlcjo7Ij48cGF0aCBkPSJNMjIgOGEuNzYuNzYgMCAwIDAgMC0uMjF2LS4wOGEuNzcuNzcgMCAwIDAtLjA3LS4xNi4zNS4zNSAwIDAgMC0uMDUtLjA4bC0uMS0uMTMtLjA4LS4wNi0uMTItLjA5LTktNWExIDEgMCAwIDAtMSAwbC05IDUtLjA5LjA3LS4xMS4wOGEuNDEuNDEgMCAwIDAtLjA3LjExLjM5LjM5IDAgMCAwLS4wOC4xLjU5LjU5IDAgMCAwLS4wNi4xNC4zLjMgMCAwIDAgMCAuMUEuNzYuNzYgMCAwIDAgMiA4djhhMSAxIDAgMCAwIC41Mi44N2w5IDVhLjc1Ljc1IDAgMCAwIC4xMy4wNmguMWExLjA2IDEuMDYgMCAwIDAgLjUgMGguMWwuMTQtLjA2IDktNUExIDEgMCAwIDAgMjIgMTZWOHptLTEwIDMuODdMNS4wNiA4bDIuNzYtMS41MiA2LjgzIDMuOXptMC03LjcyTDE4Ljk0IDggMTYuNyA5LjI1IDkuODcgNS4zNHpNNCA5LjdsNyAzLjkydjUuNjhsLTctMy44OXptOSA5LjZ2LTUuNjhsMy0xLjY4VjE1bDItMXYtMy4xOGwyLTEuMTF2NS43eiI+PC9wYXRoPjwvc3ZnPg==');
  background-size: 15px auto;
  background-position: left;
  background-repeat: no-repeat;
  padding-left: 21px;
  letter-spacing: .05em;
}
.cartjs_sk_link_other {
  display: none !important;
}
.colorme_item_info {
  margin-right: auto;
}
.colorme_item_ttl {
  display: block;
}
.colorme_item_num {
  margin-top: 6px;
}
.colorme_item_num span {
  margin-right: 8px;
}
.colorme_item_num input[name="product_num"] {
  padding: 4px 6px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
}

/* 品切れ */
.cartjs_cart_in .soldout_btn {
  flex-shrink: 0;
  width: 170px !important;
  height: 50px !important;
  background-color: gainsboro !important;
  border-radius: 4px !important;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  font-size: 93%;
  margin-left: 24px !important;
}

/* colorbox */
#cboxTitle {
  top: -30px;
}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose , #cboxTitle {
  top: -30px;
}
#cboxOverlay {
  background: #000;
}
#cboxLoadedContent {
  background: #fff;
}
#cboxLoadedContent {
  padding: 0;
  overflow: auto;
  -moz-box-shadow: 0 1px 10px #000000;
  -webkit-box-shadow: 0 1px 10px #000000;
  box-shadow: 0 1px 10px #000000;
}
#colorbox, #cboxOverlay, #cboxWrapper {
  overflow: visible ;
}
#cboxTitle {
  color: #fff;
}
#cboxPrevious,
#cboxNext {
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  background-image: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
#cboxNext {
  left: auto;
  right: 0;
}
#cboxPrevious::before,
#cboxNext::before {
  content:'';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  right: auto;
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 2px solid #4D4D4D;
  border-left: 2px solid #4D4D4D;
  transform: rotate(-45deg);
  transition: all .3s;
}
#cboxNext::before {
  left: auto;
  right: 30px;
  transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .cartjs_product_img {
    width: 60px !important;
    flex: 0 0 60px;
  }
  .colorme_item_ttl {
    font-size: 84%;
  }
  .colorme_item_button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .colorme_item_button > input {
    width: 100px !important;
    font-size: 93% !important;
    margin-left: 0 !important;
    padding: 0 !important;
  }
  .stock_num {
    margin-left: 0;
    margin-top: 7px;
    line-height: 1;
    font-size: 80%;
  }
  .colorme_item_num {
    margin-top: 2px;
    margin-bottom: 0;
  }
  .cartjs_cart_in .soldout_btn {
    width: 100px !important;
    margin-top: 0 !important;
    line-height: 1.5;
    display: flex;
    align-items: center;
    font-size: 80%;
    padding: 0 8px;
  }
}

/* --- favorite --- */
.simplefavorite-button {
  /* reset */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  /* style */
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 86%;
  letter-spacing: .05em;
  cursor: pointer;
}
.simplefavorite-button .flex {
  height: 100%;
}
.simplefavorite-button svg {
  width: 18px;
}
.simplefavorite-button.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .simplefavorite-button {
    width: auto;
    padding: 0 8px;
    font-size: 86%;
    vertical-align: middle;
  }
}

/* --- shipinfo --- */
.ship_info {
  background-color: #f7f7f7;
  font-size: 80%;
  padding: 10px 16px;
  margin-top: 16px;
}
.ship_info a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .ship_info {
    margin-top: 8px;
  }
}

/* --- slide --- */
.gallery {
  position: relative;
  padding: 24px 72px;
  background-color: #f3f3f3;
}
.gallery--wrap {
  position: sticky;
  top: 140px;
}
.gallery_slide {
  height: 30vh;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/loading.svg);
}
.gallery_slide > * {
  display: none;
}
.gallery_slide.slick-initialized {
  height: auto;
  background-image: none;
}
.gallery_slide.slick-initialized > * {
  display: block;
}
/* img */
.gallery_slide .img {
  position: relative;
  background-color: #eee;
}
.gallery_slide .img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gallery_slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.gallery .txt {
  font-size: 86%;
  min-height: 1.6em;
  margin-top: 8px;
}
/* dots */
.dots.gallery_dots {
  margin-top: 16px;
}
.dots.gallery_dots ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.dots.gallery_dots li {
  position: relative;
  width: calc(100% / 6 - 5px);
  border: 0;
  border-radius: 0;
  margin-right: 6px;
  margin-bottom: 6px;
}
.dots.gallery_dots li:hover {
  opacity: .85;
  cursor: pointer;
}
.dots.gallery_dots li:nth-child(6n) {
  margin-right: 0;
}
.dots.gallery_dots li:first-child:last-child {
  display: none;
}
.gallery_dots li::before {
  content: '';
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
}
.dots.gallery_dots li.slick-active {
  opacity: 0.5;
}
.gallery_dots .pager-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
}
/* arrows */
.gallery_arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.gallery_arrows:empty {
  display: none;
}
.gallery_arrows .slick-arrow {
  position: relative;
  width: 100px;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
  pointer-events: all;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.gallery_arrows .slick-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  right: 0;
  display: block;
  width: 25px;
  height: 33px;
  margin: auto;
  transition: all .3s;
  background-image: url(../images/common/icon-arrow-shadow-left_sp.png);
  background-size: cover;
}
.gallery_arrows .slick-arrow:hover::before {
  opacity: .7;
}
.gallery_arrows .slick-next {
  position: absolute;
  right: 0;
  bottom: 0;
}
.gallery_arrows .slick-next::before {
  background-image: url(../images/common/icon-arrow-shadow-right_sp.png);
  left: 0;
  right: -30px;
}

@media screen and (max-width: 767px) {
  .gallery {
    padding: 0;
    background-color: transparent;
  }
  /* dots */
  .dots.gallery_dots {
    padding-left: 5%;
    margin-top: 12px;
  }
  .dots.gallery_dots ul {
    flex-wrap: nowrap;
    padding-right: 24px;
    padding-top: 1px;
    padding-bottom: 8px;
  }
  .dots.gallery_dots ul::after { /* sp-scroll--inner */
    content: '';
    display: block;
    width: 1px;
    height: 1px;
    margin-left: 7vw;
    flex-shrink: 0;
  }
  .dots.gallery_dots li {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .dots.gallery_dots li:nth-child(6n) {
    margin-right: 6px;
  }
  /* gallery */
  .gallery .txt {
    font-size: 78%;
    margin-top: 6px;
    height: auto;
    min-height: 1.7em;
  }
  .gallery_arrows .slick-arrow::before {
    left: -64px;
  }
  .gallery_arrows .slick-next::before {
    left: 0;
    right: -64px;

  }
}

/* feature
**************************************** */
  .single-feature .main_column {
    margin-right: 0;
  }
  .single-feature .section_ttl {
    margin-bottom: 8px;
  }

/* blog
**************************************** */
  .single-blog .related_posts .post {
    margin-bottom: 32px;
  }
  @media screen and (max-width: 767px) {
    .single-blog .wp-pagenavi {
      margin-bottom: 24px;
    }
    .single-blog .related_posts.item--related_box {
      background-color: #f2f2f2;
      padding-bottom: 32px;
    }
    .single-blog .related_posts .post {
      margin-bottom: 16px;
    }
    .single-blog .related_posts .post:last-child {
      margin-bottom: 0;
    }
    .single-blog .item--related_box {
      padding-bottom: 0;
    }
  }

/* ##############################################################################

    FORMY

############################################################################## */
  #formy_form {
    border: 1px solid #d3d3d3;
    padding: 32px 40px;
  }
  #formy_form table { width:100%; }
  #formy_form th,
  #formy_form td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: solid 1px #eee;
  }
  #formy_form th {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    width: 34%;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea {
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    vertical-align: bottom;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 100%;
  }
  #formy_form textarea { height: 100px; }
  #formy_form select { height: 40px; }
  #formy_form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #formy_form input:hover { opacity: .7; }
  #formy_form textarea:hover { opacity: .7; }
  #formy_form input:focus { outline: none; }
  #formy_form .parsley-validated {  background-color: #eee; }
  #formy_form .parsley-error {  background-color: #fee; }
  #formy_form .parsley-success {  background-color: #fff; }
  .help_text {
    font-size: 87%;
    color: #999;
  }
  .hidden_help { display: none; }
  .formy_privacy div {
    overflow-y: scroll;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 87%;
    padding: 8px 16px;
  }
  .requiredIcon {
    background-color: #ff9426;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    min-width: 220px;
    padding: 16px 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  #formy_form ul li input[type="radio"],
  #formy_form ul li input[type="checkbox"] { display: none !important; }
  #formy_form ul li label {
    position: relative;
    display: inline-block;
    padding: .5em 8px .5em 40px;
    line-height: 1.6;
    vertical-align: top;
    cursor: pointer;
  }
  #formy_form ul li label:hover { opacity: .7; }
  #formy_form ul li label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #788b93;
    left: 16px;
    top: 12px;
  }
  #formy_form ul li input[type="radio"] + label::before { border-radius: 10px; }
  #formy_form ul li input[type="radio"]:checked + label,
  #formy_form ul li input[type="checkbox"]:checked + label {
    color: #e75f5f;
    font-weight: bold;
  }
  #formy_form ul li input[type="radio"]:checked + label::before,
  #formy_form ul li input[type="checkbox"]:checked + label::before {
    border-color: #e75f5f;
  }
  #formy_form ul li input[type="radio"]:checked + label::after,
  #formy_form ul li input[type="checkbox"]:checked + label::after {
    content: "";
    width: 10px;
    height: 18px;
    top: 4px;
    left: 20px;
    border-right: 2px solid #e75f5f;
    border-bottom: 2px solid #e75f5f;
    display: block;
    position: absolute;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formy_confirm { background-color: #4dbaff; }
  .formy_submit_disabled { background-color: #ccc; }
  #formy_btn .formy_submit_disabled:hover {
    opacity:1;
    cursor: default;
  }
  .autoConfirmBack { background-color: #aaa; }
  .formy_send { background-color: #ff6600; }
  #total_required {
    padding: 16px;
    color: #ff9426;
    text-align: center;
    font-weight: 400;
  }
  @media screen and (max-width: 767px) {
    #formy_form { padding: 0 16px 16px; }
    #formy_form th,
    #formy_form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    #formy_form th {
      border-bottom:none;
      padding-bottom: 0;
      white-space: normal;
      font-weight: bold;
    }
    #formy_form td { padding-top: 0; }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
    .autoConfirmBack { margin-bottom: 8px; }
    #formy_form table input[type="text"],
    #formy_form table input[type="email"],
    #formy_form table input[type="tel"],
    #formy_form table input[type="date"],
    #formy_form table input[type="password"],
    #formy_form select,
    #formy_form textarea {
      font-size: 16px; /* iOSでズーム防止 */
    }
  }