@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@media screen and (max-width: 1216px) {
}
@media screen and (max-width: 959px) {
}
@media screen and (max-width: 599px) {
}


body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1F2937;
}

#trial-banner-margin,#trial-banner,.p-news-notifier,.gnav-pc,.c-pagetop {
  display: none !important;
}

a {
  transition: all .3s;
}

/*----------
header
----------*/

.l-header__info {
  position: relative;
  .info-inner {
    max-width: 1216px;
    height: 70px;
    padding: 0 25px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    &::before {
      content: '';
      width: 200px;
    }
  }

  .info-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;

    .info-list-item {
      display: flex;
      align-items: center;

      img {
         width: 44px;
         flex: 0 0 auto;
         margin: 0 4px 0 0;
      }

      p {
        color: #174076;
        font-size: 14px;
        line-height: 1.3;
        margin: 0;

        strong {
          display: block;
        }
      }

      &::after {
        content: '';
        height: 48px;
        width: 1px;
        background: #D1D5DB;
        transform: rotate(15deg);
        margin: 0 30px;
      }

      &:last-of-type::after {
        display: none;
      }
    }
  }

  .info-regist {
    width: 200px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;

    span {
      color: #174076;
      font-size: 12px;
      margin: 0 0 2px;
    }

    a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      width: 200px;
      height: 40px;
      background: #B69950;
      border-radius: 4px;
      text-decoration: none;

      &:hover {
        opacity: .7;
      }
    }
  }

  @media screen and (max-width: 1216px) {
    .info-inner::before {
      display: none;
    }
  }

  @media screen and (max-width: 959px) {
    .info-inner {
      display: block;
      height: auto;
      padding: 0 10px;
    }
  }

}

.l-header__slide {
  margin: 0 26px;

  .splide__slide {
    color: #174076;
    font-size: 12px;
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
  }
  .splide__arrow {
    background: url(../img/header_slide_prev.svg) no-repeat center / contain;
    width: 26px;
    height: 14px;
    border-radius: 0;
    opacity: 1 !important;
    
    &.splide__arrow--prev {
      left: -26px;
    }
    &.splide__arrow--next {
      right: -26px;
      background-image: url(../img/header_slide_next.svg);
    }
  }

}

.l-header__menu {
  background: #5678B6;

  @media screen and (max-width: 959px) {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
  }

  .menu-inner {
    max-width: 1216px;
    height: 80px;
    padding: 0 25px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media screen and (max-width: 959px) {
      height: 56px;
      padding: 0 10px;
    }
  }
  
  .menu-logo {
    width: 284px;

    @media screen and (max-width: 959px) {
      width: 185px;
    }
  }

  .menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;

    li {
      height: 60px;
      border-right: 1px solid #174076;

      &:first-of-type {
        border-left: 1px solid #174076;
      }
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: 96px;
      font-size: 12px;
      color: #fff;
      text-decoration: none;
      height: 100%;

      &:hover {
        opacity: .7;
      }

      &.is-cart {
        position: relative;

        #cart-num {
          position: absolute;
          z-index: 1;
          top: 2px;
          right: 24px;
          width: 16px;
          height: 16px;
          background: #C04C32;
          border-radius: 100%;
          font-size: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          line-height: 1;
          opacity: 0;
          transition: all .3s;

          &.is-show {
            opacity: 1;
          }
        }
      }
    }

    @media screen and (max-width: 959px) {
      position: fixed;
      bottom: 0;
      left: 0;
      z-index: 10;
      width: 100%;
      background: #5678B6;
      justify-content: center;
      gap: 12px;

      li {
        border: none !important;
      }

      a {
        width: 60px;
        font-size: 10px;
        text-decoration: none;
        justify-content: center;

        img {
          width: 34px;
          margin: -3px 0;
        }

        &.is-cart {

          #cart-num {
            top: 6px;
            right: 8px;
          }
        }
      }
    }
    @media screen and (max-width: 359px) {
      justify-content: space-between;
      gap: initial;
    }
  }

  .menu-hambtn {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    
    &::before,
    &::after {
      content: '';
      width: 24px;
      height: 2px;
      order: -1;
      background: #fff;
    }

    span {
      white-space: nowrap;
      color: #fff;
      font-size: 8px;
      line-height: 1;
      font-weight: bold;
    }
  }
}

/*drawer*/
.drawer-fixed  {
  position: fixed;
  height: 100vh;
  width: 100%;
}

.l-header__search {
  background: #F5F5F5;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;

  form {
    width: 500px;
    height: 50px;
    border-radius: 4px;
    border: 2px solid #174076;
    background: #fff;
    display: flex;
    align-items: center;

    input {
      appearance: none;
      border: none;
      border-radius: 0;
      flex: 1;
      padding: 0 1em;
      outline: none;
      font-size: 16px;

      &::placeholder {
        color: #A4A8AE;
        font-size: 13px;
      }
    }

    button {
      appearance: none;
      border: none;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      aspect-ratio: 1;
      margin: 0 5px;
      background: none;
      cursor: pointer;
      transition: all .3s;

      &:hover {
        background: #e6efff;
      }

    }
  }

  @media screen and (max-width: 959px) {
    height: 58px;
    padding: 0 10px;
    
    form {
      height: 38px;
      max-width: 100%;

      button {
        height: 36px;
        background: none !important;
      }
    }


  }
}

.l-dw {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all .3s;
  &.is-active {
    transform: translateX(0);

    .dw-close {
      visibility: visible;
    }
  }

  .side-nav {
    width: 286px;
    height: 100dvh;
    overflow-y: scroll;
    background: #D1D5DB;
  }
  .dw-close {
    position: absolute;
    top: 15px;
    left: -30px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    visibility: hidden;

    &::before,
    &::after {
      content: '';
      width: 16px;
      height: 2px;
      background: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
    }

    &::after {
      width: 2px;
      height: 16px;
    }
  }
}
.dw-bg {
  position: fixed;
  z-index: 9998;
  background: rgba(0,0,0,.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  cursor: pointer;

  &.is-active {
    opacity: 1;
    pointer-events: initial;
  }
}


.l-content {
  overflow: hidden;
  display: flex;
  max-width: 1216px;
  margin: 0 auto;
  justify-content: center;

  .main {
    order: 2;
    margin: 0 auto;
    padding: 40px 50px 100px;
    width: calc(100% - 286px);
  }
  .aside {
    order: 1;
    width: 286px;
    background: #EBF4FD;
    padding: 20px 25px;
    box-shadow: 0 0 3px rgba(0,0,0,.35);
  }
  @media screen and (max-width: 1216px) {
    .main {
      padding: 30px 30px 60px;
      width: calc(100% - 240px);
    }
    .aside {
      width: 240px;
      padding: 20px 20px;
    }
  }
  @media screen and (max-width: 959px) {
    .main {
      padding: 20px 15px 60px;
      width: 100%;
    }
    .aside {
      display: none;
    }
  }
}

/*----------
side & drawer
----------*/

.side-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #174076;
  height: 50px;
  padding: 0 10px;
  
  & > div {
    display: flex;
    align-items: center;
    img {
      width: 24px;
      flex: 0 0 auto;
      margin: 0 2px 0 0 ;
    }

    a {
      color: #fff;
      font-size: 12px;
      text-decoration: underline;
    }
  }
}

.side-block {
  margin: 0 0 40px;
  &:last-of-type {
    margin-bottom: 0;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;

    a {
      color: #1F2937;
    }
  }

  @media screen and (max-width: 959px) {
    margin: 0;
    padding: 0 10px;
    background: #fff;
  }
}

.side-title {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 2px solid #174076;
  line-height: 1.3;
  padding: 0 0 8px;
  margin: 0 0 10px;
  pointer-events: none;

  @media screen and (max-width: 959px) {
    pointer-events: initial;
    color: #1F2937;
    height: 50px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D1D5DB;
    margin: 0;
    padding: 0 0 0 10px;

    span {
      width: 28px;
      height: 28px;
      position: relative;
      flex: 0 0 auto;
      cursor: pointer;

      &::before,
      &::after {
        content: '';
        width: 10px;
        height: 2px;
        background: #B3B3B3;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
      }
      &::after {
        width: 2px;
        height: 10px;
      }

      &.is-active::after {
        display: none;
      }
    }
  }
}

.side-aco {
  & > li {
    border-bottom: 1px dashed #5678B6;
    &:last-of-type {
      border: none;
    }

    .side-aco-tit {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 48px;
      a {
        padding: 10px;
        font-size: 16px;
        font-weight: bold;
        color: #174076;
        text-decoration: none;
        flex: 1;

        &:hover {
          filter: brightness(1.8);
        }
      }

      span {
        border-radius: 100%;
        width: 28px;
        height: 28px;
        position: relative;
        transition: all .3s;
        flex: 0 0 auto;
        cursor: pointer;
        &::before,
        &::after {
          content: '';
          width: 14px;
          height: 2px;
          background: #174076;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%,-50%);
        }
        &::after {
          width: 2px;
          height: 14px;
        }
        &:hover {
          background: #fff;
        }

        &.is-active::after {
          display: none;
        }
      }
    }


  }
  .side-menu {
    display: none;
    padding-bottom: 15px;
  }

  @media screen and (max-width: 959px) {
    display: none;
    & > li {
      border: none;
      .side-aco-tit {
        border-bottom: 1px solid #D1D5DB;

        a {
          padding: 0 0 0 20px;
          font-size: 12px;
          font-weight: 500;
          color: #1F2937;

          &:hover {
            filter: brightness(1);
          }
        }

        span {
          &::before,
          &::after {
            width: 10px;
            background: #B3B3B3;
          }
          &::after {
            width: 2px;
            height: 10px;
          }
          &:hover {
            background: none;
          }
        }
      }
    }

    .side-menu {
      padding: 0;

      a {
        padding: 0 0 0 30px;
      }
    }
  }

}

.side-menu {
  a {
    display: block;
    padding: 5px 0 5px 20px;
    text-decoration: none;
    font-size: 14px;

    &:hover {
      filter: brightness(3.5);
    }
  }

  @media screen and (max-width: 959px) {
    display: none;
    a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-decoration: none;
      font-size: 12px;
      font-weight: 400; 
      height: 48px;
      border-bottom: 1px solid #D1D5DB;
      padding: 0 0 0 20px;

      &:hover {
        filter: brightness(1);
      }

      &::after {
        content: '';
        width: 6px;
        height: 6px;
        border-top: 2px solid #B3B3B3;
        border-right: 2px solid #B3B3B3;
        transform: rotate(45deg);
        margin: 0 12px 0 0;
      }
    }

  }
}

.side-link {
  background: #fff;
  padding: 0 10px;
  a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;; 
    height: 48px;
    padding: 0 0 0 10px;
    color: #1F2937;
    &:not(:last-of-type) {
      border-bottom: 1px solid #D1D5DB;
    }

    &::after {
      content: '';
      width: 6px;
      height: 6px;
      border-top: 2px solid #B3B3B3;
      border-right: 2px solid #B3B3B3;
      transform: rotate(45deg);
      margin: 0 12px 0 0;
    }
  }
}

.side-bnr {
  a {
    margin: 0 0 15px;
    display: block;

    img {
      display: block;
    }

    &:hover {
      opacity: .7;
    }
  }

  a.btn-shop {
    display: flex;
    margin: 0;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid #174076;
    background: #fff;
    color: #174076;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;

    &:hover {
      opacity: 1;
      background: #EFEFEF;
    }

    img {
      margin: 0 13px 0 0;
    }
  }

}

.side-info {
  @media screen and (max-width: 959px) {
    background: #fff;
    border-radius: 6px;
    margin: 10px;
    padding: 10px;
  }
  h4 {
    display: flex;
    height: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 0 8px;
    font-size: 14px;

    img {
      margin: 0 10px 0 0;
    }

    @media screen and (max-width: 959px) {
      font-size: 12px;
      height: 18px;

      img {
        margin: 0 5px 0 0;
      }
    }
  }

  .side-tel,.side-web {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0 0;

    @media screen and (max-width: 959px) {
      background: none;
      margin: 0;
      border-radius: 0;
      padding: 0;
    }

  }
  .side-tel {
    @media screen and (max-width: 959px) {
      border-bottom: 1px solid #D1D5DB;
      padding: 0 0 10px;
      margin: 0 0 10px;
    }
  }
  
  .txt-tel {

      font-size: 24px;
      color: #C04C32;
      display: block;
      width: fit-content;
      padding: 0 0 5px;
      font-weight: bold;
      line-height: 1;
      margin: 0 auto;

      @media screen and (max-width: 959px) {
        font-size: 20px;
      }
    
  }
  .txt-tel-notice {
    text-align: center;
    font-size: 12px;
    margin: 5px 0 0;

    @media screen and (max-width: 959px) {
      font-size: 10px;
    }
  }
  .btn-web {
    a {
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      font-weight: bold;
      color: #174076;
      border: 2px solid #174076;
      font-size: 14px;
      padding: 12px 20px;
      border-radius: 4px;
      text-decoration: none;
      width: fit-content;
      margin: 0 auto;

      &:hover {
        background: #EFEFEF;
      }

      @media screen and (max-width: 959px) {
        font-size: 12px;
        padding: 8px 20px;
      }
    }
  }

  .link-detail {
    color: #174076;
    text-align: center;
    font-size: 12px;
    margin: 10px 0 0;
    a {
      color: #174076;
      text-decoration: underline;
    }
    &::after {
      content: '〉';
      margin: 0 0 0 5px;
    }
  }
}

.side-close {
  a {
    font-weight: bold;
    font-size: 12px;
    display: block;
    padding: 0 20px 10px;
    width: fit-content;
    margin: 0 auto;
    color: #174076;
  }
}

.__block--calendar {
  margin: 40px 0 0;

  ul {
    margin: -5px 0 0 !important;
  }

  li {
    background: #fff;
    border-radius: 4px;
    padding: 15px !important;
    margin: 15px 0 0 !important;

    table.cal {

      td,th {
        line-height: 1.6 !important;
      }
      thead th {
        padding: 0 0 10px !important;
        font-size: 14px;
        line-height: 1 !important;
        text-align: center;
        span {
          font-size: 18px;
          margin: 0 0 0 3px;
        }
      }
      tbody {
        & tr:first-of-type {
          border-bottom: 2px solid #6B7280;
        }
        th {
          background: #fff !important;
          color: #1F2937 !important;
          font-weight: 500;
          font-size: 12px;
          text-align: center;
        }

        td {
          font-size: 14px;
          border-bottom: 1px solid #EBF4FD !important;
          span {
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
          }
        }
      }
      .cal-week-close {
        color: #fff;
        background-color: #B69950;
      }
    }

  }

  .side-calnotice {
    margin: 20px 0 40px;
    display: flex;
    line-height: 1;

    & > div {
      margin: 0 1em 0 0;
      display: flex;
      align-items: center;
      font-size: 12px;

      &::before {
        content: '';
        width: 1em;
        height: 1em;
        background: #B69950;
        margin: 0 5px 0 0;
      }

      &.type2::before {
        background: #7196D8;
      }
    }
  }
}

/*----------
footer
----------*/
.footer {
  background: #5678B6;
  
  @media screen and (max-width: 959px) {
    padding: 1px 0 60px;

    .__block--calendar {
      background: #fff;
      box-shadow: 0 0 6px rgba(0,0,0,.35);
      margin: 25px 0 0;
      padding: 10px 0 15px;
    
      .side-title {
        font-size: 14px;
        height: auto;
        margin: 0 24px 5px;
        justify-content: center;
        padding: 0 0 5px;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        padding: 0 9px;

        li {
          flex: 0 0 auto;
          padding: 0  15px !important;

          table.cal {
            width: 200px;

            thead {
              th {
                font-size: 12px;
              }
            }
          }
        }
      }

      .side-calnotice {
        margin: 15px 0 0;
        justify-content: center;
      }
    }
  }
  @media screen and (max-width: 599px) {
    .__block--calendar {
      ul {
        justify-content: flex-start;
        overflow-x: scroll;
        flex-wrap: nowrap;
      }
    }
  }

}

.l-footer__guide {
  padding: 45px 0;


  @media screen and (max-width: 959px) {
    padding: 24px 0;
  }

    .txt-tel {

      font-size: 40px;
      color: #C04C32;
      display: block;
      width: fit-content;
      padding: 0 0 5px;
      font-weight: bold;
      letter-spacing: 1.5px;
      line-height: 1;
      border-bottom: solid 1px #C04C32;

      @media screen and (max-width: 959px) {
        font-size: 20px;
        margin: auto;
      }
    
  }

  .guide-inner {
    max-width: 1166px;
    padding: 0 23px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    @media screen and (max-width: 1216px) {
      gap: 30px;
    }
    @media screen and (max-width: 959px) {
      gap: 8px;
      flex-wrap: wrap;
      padding: 0 24px;
    }
  }

  .guide-item {
    width: calc((100% - 100px) / 3);
    display: flex;
    flex-direction: column;

    &.large {
      width: calc(100% - ((100% - 100px) / 3 + 50px));
    }

    @media screen and (max-width: 1216px) {
      width: calc((100% - 60px) / 3);
      &.large {
        width: calc(100% - ((100% - 60px) / 3 + 30px));
      }
    }

    @media screen and (max-width: 959px) {
      width: calc((100% - 8px) / 2);
      &.large {
        width: 100%;
        & > h3 {
          display: none;
        }
      }
    }


    h3 {
      margin: 0 0 8px;
      & > a, & > span {
        display: flex;
        align-items: center;
        color: #fff;
        font-size: 16px;
        pointer-events: none;
        text-decoration: none;
      }

      @media screen and (max-width: 959px) {
        margin: 0;

        a {
          pointer-events: initial;
          flex-direction: column;
          justify-content: center;
          font-size: 12px;
          border-radius: 4px;
          border: 1px solid #174076;
          height: 60px;

          img {
            width: 46px;
            margin: 0 0 -3px;
          }
        }
      }
    }

    .guide-item__block {
      background: #fff;
      border-radius: 4px;
      height: 100%;
      padding: 18px;
      @media screen and (max-width: 959px) {
        display: none;
      }
    }

    @media screen and (max-width: 959px) {
      &.large .guide-item__block {
        display: block;
        margin: 0 0 8px;
        padding: 10px 15px 15px;
      }
    }
    .block-support {
      display: flex;
      height: 100%;

      @media screen and (max-width: 599px) {
        flex-direction: column;
      }

      h4 {
        display: flex;
        height: 28px;
        align-items: center;
        margin: 0 0 10px;
        font-size: 16px;

        img {
          margin: 0 10px 0 0;
        }

        @media screen and (max-width: 959px) {
          font-size: 12px;
          height: 18px;

          img {
            margin: 0 5px 0 0;
            height: 14px;
          }
        }
        @media screen and (max-width: 599px) {
          justify-content: center;
        }
      }

      .block-support-tel {
        padding: 0 50px 0 22px;
        margin: 0 50px 0 0;
        border-right: 1px solid #D1D5DB;
        width: 52%;

        @media screen and (max-width: 1216px) {
          padding: 0 25px 0 22px;
          margin: 0 25px 0 0;
        }

        @media screen and (max-width: 959px) {
          h4 {
            img {
              height: 20px;
            }
          }
        }

        @media screen and (max-width: 599px) {
          padding: 0 0 10px;
          margin: 0 0 10px;
          border: none;
          width: 100%;
          border-bottom: 1px solid #D1D5DB;
        }
      }

      .block-support-web {
        @media screen and (max-width: 599px) {
        }
      }

    }

    .txt-tel {
      a {
        font-size: 40px;
        color: #C04C32;
        text-decoration: underline;
        display: block;
        width: fit-content;
        padding: 0 0 5px;
        border-bottom: 1px solid #C04C32;
        text-decoration: none;
        font-weight: bold;
        line-height: 1;
        @media screen and (max-width: 1216px) {
          font-size: 32px;
        }
        @media screen and (max-width: 959px) {
          font-size: 24px;
        }
        @media screen and (max-width: 599px) {
          margin: 0 auto;
        }
      }
    }
    .txt-tel-notice {
      font-size: 12px;
      font-weight: 400;
      margin: 5px 0 0;
      @media screen and (max-width: 959px) {
        font-size: 10px;
        br.u-sp {
          display: none !important;
        }
      }
      @media screen and (max-width: 599px) {
        text-align: center;
        br.u-sp {
          display: inline !important;
        }
      }
    }
    .btn-web {
      a {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        font-weight: bold;
        color: #174076;
        border: 2px solid #174076;
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 4px;
        text-decoration: none;
        width: fit-content;

        &:hover {
          background: #EFEFEF;
        }

        @media screen and (max-width: 959px) {
          font-size: 12px;
          padding: 8px 20px;
        }

        @media screen and (max-width: 599px) {
          margin: 0 auto;
        }
      }
    }
    .link-detail {
      color: #174076;
      text-align: right;
      font-size: 12px;
      margin: 10px 0 0;
      &.ta-l {
        text-align: left;
      }
      a {
        color: #174076;
        text-decoration: underline;

        &:hover {
          filter: brightness(1.5);
        }
      }
      &::after {
        content: '〉';
        margin: 0 0 0 5px;
      }

      @media screen and (max-width: 599px) {
        &.ta-l {
          text-align: center;
        }
      }
    }
    .txt-block {
      margin: 0 0 15px;
      position: relative;
      font-size: 14px;
      padding: 0 0 0 18px;
      &.mb-s {
        margin-bottom: 5px;
      }
      &::before {
        content: '';
        width: 12px;
        height: 12px;
        background: #5678B6;
        position: absolute;
        left: 0;
        top: .35em;
        border-radius: 100%;
      }
      strong {
        display: block;
      }
    }
    .img-block {
      margin: 15px 0 0;
    }
    .txt-price {
      font-size: 18px;
      display: inline-block;
      margin: -.4em 0 0
    }
    .txt-caution {
      color: #C04C32;
    }
    .txt-postage {
      display: inline-block;
      color: #fff;
      background: #C04C32;
      font-size: 15px;
      font-weight: bold;
      padding: .2em .5em;
      @media screen and (max-width: 1216px) {
        font-size: 13px;
      }
    }
  }


}

.l-footer__menu {
  background: #174076;
  padding: 20px 0 40px;

  .menu-list {
    max-width: 1166px;
    padding: 0 23px;
    margin: 0 auto;
    display: flex;
  }

  .menu-list-item {
    width: 25%;
    padding: 0 20px 0 0;

    &:last-of-type {
      padding: 0;
    }

    h3 {
      color: #fff;
      font-weight: bold;
      font-size: 16px;
      margin: 0 0 10px;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;

      a {
        color: #fff;
        padding: 4px 0;
        display: block;
        font-size: 12px;
      }
    }
  }

  @media screen and (max-width: 959px) {
    .menu-list-item {
      h3 {
        font-size: 14px;
      }
    }
  }
  @media screen and (max-width: 599px) {
    padding: 0;

    .menu-list {
      padding: 0 10px;
      display: block;
    }

    .menu-list-item {
      width: 100%;
      padding: 0;

      &:first-of-type {
        h3 {
          border: none;
        }
      }

      h3 {
        font-size: 12px;
        margin: 0;
        border-top: 1px solid #5678B6;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0 0 14px;

        span {
          width: 28px;
          height: 28px;
          position: relative;
          flex: 0 0 auto;
          cursor: pointer;

          &::before,
          &::after {
            content: '';
            width: 12px;
            height: 2px;
            background: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
          }
          &::after {
            width: 2px;
            height: 12px;
          }

          &.is-active::after {
            display: none;
          }
        }
      }

      ul {
        display: none;
        padding: 0 0 10px 24px;
        margin: -5px 0 0;
      }
    }
  }
}

.l-footer__submenu {
  background: #1F2937;

  .submenu-list {
    max-width: 1166px;
    padding: 0 23px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;

    li {
      padding: 10px 0;

      &:last-of-type {
        a {
          border: none;
        }
      }
    }

    a {
      color: #fff;
      font-size: 12px;
      padding: 0 25px;
      border-right: 1px solid #174076;
    }
  }

  @media screen and (max-width: 959px) {
    background: #F5F5F5;

    .submenu-list {
      padding: 0;

      li {
        padding: 10px 0;
      }

      a {
        color: #174076;
        font-size: 10px;
        padding: 0 7px;
        border-right: 1px solid #D1D5DB;
        white-space: nowrap;
      }
    }
  }
}

.l-footer__copy {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 400;

  @media screen and (max-width: 959px) {
    height: 30px;
    font-size: 10px;
  }
}

/*----------
既存テーマ調整
----------*/
.wrapper > .__inner {
  max-width: initial;
}


/*----------
TOP
----------*/
.p-top__mv {
  background: #F5F5F5;
  padding: 0 0 25px;

  .splide__slide {
    width: 820px;
    filter: brightness(.75);
    border-radius: 6px;
    overflow: hidden;
    transition: all .3s;

    &.is-active {
      filter: brightness(1);
    }
  }

  .splide__pagination {
    bottom: 6px;
  }
  .splide__pagination__page {
    background-color: #D1D5DB;
    margin: 3px 5px;
  }
  .splide__pagination__page.is-active {
    transform: scale(1);
    background-color: #5678B6;
  }

  .splide__arrow {
    background: url(../img/mv_slide_prev.svg) no-repeat center / contain;
    width: 50px;
    height: auto;
    aspect-ratio: 1/2;
    border-radius: 0;
    filter: drop-shadow(0 0 6px rgba(0,0,0,.35));
    top: calc((100% - 25px) / 2);
    opacity: 1 !important;
    transition: all .3s;
    
    &:hover {
      filter: brightness(1.1);
    }
    &.splide__arrow--prev {
      left: 0;
    }
    &.splide__arrow--next {
      right: 0;
      background-image: url(../img/mv_slide_next.svg);
    }
  }

  @media screen and (max-width: 1266px) {
    .splide__arrow {
      width: 40px;
    }
  }
  @media screen and (max-width: 959px) {
    .splide__arrow {
      width: 30px;
      filter: drop-shadow(0 0 6px rgba(0,0,0,.20));
    }
  }
  @media screen and (max-width: 599px) {
    .splide__arrow {
      width: 25px;
    }
  }
}
.__content-home-top {
  margin: 0 !important;
}

.c-heading-main {
  font-size: 22px;
  line-height: 1.4;
  border-bottom: 3px solid #174076;
  padding: 0 0 8px;
  margin: 0 0 30px;

  @media screen and (max-width: 959px) {
    border-top: none;
    font-size: 18px;
    border-width: 2px;
  }
  @media screen and (max-width: 599px) {
    font-size: 16px;
  }
}

/*アイテムリスト*/
.__block--pro-order,
.__block--pro-viewed,
.__block--pro-ranking {
  margin: 0 0 70px !important;
  @media screen and (max-width: 959px) {
    margin: 0 0 35px !important;
  }
  .c-more {
    display: none;
  }
}

.p-top__item {
  padding: 0 30px;

  .splide__arrow {
    width: 24px;
    height: 24px;
    background: url(../img/item_slide_prev.svg) no-repeat center / contain;
    opacity: 1;
    top: 90px;
    * {
      display: none;
    }
    @media screen and (max-width: 959px) {
      width: 20px;
      height: 20px;
    }
  }
  .splide__arrow--prev {
    left: 0;
  }
  .splide__arrow--next {
    right: 0;
    background-image: url(../img/item_slide_next.svg);
  }
  @media screen and (max-width: 959px) {
    padding: 0 20px;
    .splide__arrow--prev {
      left: -5px;
    }
    .splide__arrow--next {
      right: -5px;
    }
  }

  a {
    text-decoration: none;
    display: block;
    position: relative;

    &:hover {
      opacity: .7;
    }
  }

  .__photo {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
  }
  .__title {
    font-size: 14px;
    color: #174076;
    margin: 5px 0;
    line-height: 1.4;
    font-weight: 500;
    @media screen and (max-width: 959px) {
      font-size: 12px;
    }
  }
  .__price {
    dd {
      font-size: 20px;
      color: #1F2937;
      margin: 0;

      span {
        font-size: 12px;
        margin: 0 0 0 2px;
      }
    }
    @media screen and (max-width: 959px) {
      dd {
        font-size: 16px;
        span {
          font-size: 10px;
        }
      }
    }
  }
  .__rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 31px;
    background: url(../img/deco_flag.svg) no-repeat top center / contain;
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    padding-top: 3px;
    color: #fff;
    @media screen and (max-width: 959px) {
      width: 22px;
      font-size: 14px;
      padding-top: 2px;
    }
  }
}


/*商品を探す*/
.p-top__search {
  margin: 0 0 90px;

  @media screen and (max-width: 959px) {
    margin: 0 0 45px;
  }

  .search-block {
    margin: 80px 0 0 30px;

    &:first-of-type {
      margin: 50px 0 0 30px;
    }

    .search-tit {
      font-size: 20px;
      margin: 0 0 25px;
    }

    @media screen and (max-width: 959px) {
      margin: 40px 0 0 0;

      &:first-of-type {
        margin: 20px 0 0 0;
      }

      .search-tit {
        font-size: 16px;
        margin: 0 0 15px;
      }
    }
  }

  .search-pickup {
    .pickup-item {

      & + & {
        margin: 50px 0 0;
        @media screen and (max-width: 959px) {
          margin: 30px 0 0;
        }
      }

      h4 {
        background: #5678B6;
        border-left: 8px solid #174076;
        padding: 14px 10px;
        line-height: 1.4;
        color: #fff;
        font-weight: bold;
        font-size: 16px;
        @media screen and (max-width: 959px) {
          padding: 10px 8px;
          font-size: 14px;
        }

      }

      .pickup-item__tbl {
        @media screen and (max-width: 599px) {
          overflow-x: scroll;
        }
        
        table {
          width: 100%;
          table-layout: fixed;
          @media screen and (max-width: 599px) {
            min-width: 580px;
          }

          h5 {
            font-weight: bold;
            margin: 0 0 10px;
            font-size: 16px;
            @media screen and (max-width: 959px) {
              margin: 0 0 5px;
              font-size: 13px;
            }
          }
          tr:nth-of-type(even) {
            background: #F5F5F5;
          }

          th,td {
            border-right: 1px solid #D1D5DB;
            padding: 10px;
            font-size: 14px;
            vertical-align: middle;
            @media screen and (max-width: 959px) {
              padding: 8px;
              font-size: 12px;
            }
          }

          th:first-child,
          td:first-child {
            width: calc(7em + 22px);
          }
          th::not(:first-child),
          td::not(:first-child) {
            width: 100%;
          }

          .cel-c {
            text-align: center;
          }

          .link-btn {
            display: inline-block;
            padding: 10px 14px;
            background: #174076;
            border-radius: 4px;
            color: #fff;
            font-size: 12px;
            text-decoration: none;
            font-weight: bold;

            &:hover {
              opacity: .7;
            }

            & + & {
              margin: 6px 0 0;
            }
          }
        }
      }
    }
  }

  .search-cat {
    .search-cat__block {
      display: flex;
      justify-content: space-between;
      gap: 10px;

      a {
        width: 150px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 16px;

        span {
          color: #1F2937;
          font-weight: bold;
        }

        &:hover {
          opacity: .7;
        }
      }

      @media screen and (max-width: 959px) {
        a {
          font-size: 14px;
        }
      }
      @media screen and (max-width: 599px) {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        a {
          max-width: 178px;
          width: calc(50% - 8px);
        }
      }
    }

  }

  .search-maker {
    .search-maker__block {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px 10px;

      a {
        width: 176px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;

        img {
          width: 64px;
          flex: 0 0 auto;
          border-radius: 100%;
          box-shadow: 0 0 0 2px #f5f5f5;
        }

        span {
          color: #1F2937;
          font-weight: bold;
        }

        &:hover {
          opacity: .7;
        }

      }

      @media screen and (max-width: 599px) {
        gap: 20px 10px;
          justify-content: center;

        a {
          width: calc(50% - 5px);

          img {
            width: 48px;
          }

          span {
            color: #1F2937;
            font-weight: bold;
          }

          &:hover {
            opacity: .7;
          }

        }
      }
    }
  }

}

/*お知らせ*/
.p-top__news {
  margin: 0 0 90px;

  ul {
    list-style: none;
    margin: -15px 0 0;
    padding: 0;

    li {

      a {
        display: flex;
        border-bottom: 1px dashed #D1D5DB !important;
        line-height: 1.7;
        padding: 15px 10px;
        text-decoration: none;

        &:hover {
          background: #f5f5f5;
        }
      }
      .__date {
        font-size: 14px;
        color: #1F2937;
        width: 7em;
      }
      .__title {
        flex: 1;
        .c-news-label {
          display: none;
        }
        .__subject {
          font-size: 14px;
          color: #174076;
          display: block;
        }
      }
    }
  }

  @media screen and (max-width: 959px) {
    margin: 0 0 40px;
    ul {
      li {
        a {
          padding: 10px;
        }
        .__date {
          font-size: 12px;
        }
        .__title {
          .__subject {
            font-size: 12px;
          }
        }
      }
    }
  }
}

/*よくある質問*/
.p-top__faq {
  dl {
    border-radius: 4px;
    background: #EBF4FD;
    padding: 1px;
    transition: all .3s;

    &:hover {
      opacity: .7;
    }

    dt {
      display: flex;
      font-weight: bold;
      padding: 15px;
      cursor: pointer;

      & > div {
        padding: 0 30px 0 0;
        font-size: 14px;
        color: #1F2937;
        line-height: 1.4;
      }

      &::before {
        content: 'Q';
        font-size: 16px;
        color: #5678B6;
        width: 30px;
        line-height: 1;
        flex: 0 0 auto;
      }
      span {
        width: 28px;
        height: 20px;
        position: relative;
        transition: all .3s;
        flex: 0 0 auto;
        cursor: pointer;
        margin: 0 0 0 auto;
        &::before,
        &::after {
          content: '';
          width: 14px;
          height: 2px;
          background: #174076;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%,-50%);
        }
        &::after {
          width: 2px;
          height: 14px;
        }
      }
    }

    dd {
      background: #fff;
      border-radius: 4px;
      padding: 15px;
      margin: 0 15px 15px;
      font-size: 14px;
      display: none;
    }

    &.is-active {
      &:hover {
        opacity: 1;
      }

      dt {
        span::after {
          display: none;
        }
      }
    }
  }

  @media screen and (max-width: 959px) {
    dl {
      dt {
        padding: 10px;

        & > div {
          padding: 0 15px 0 0;
          font-size: 12px;
        }

        &::before {
          width: 20px;
        }
      }

      dd {
        padding: 10px;
        margin: 0 10px 10px;
        font-size: 12px;
      }
    }
  }
}

.more-link {
  text-align: right;
  margin: 15px 0 0;
  a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    color: #174076;
    border: 2px solid #174076;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
    line-height: 1;

    &:hover {
      background: #EFEFEF;
    }

    @media screen and (max-width: 959px) {
      font-size: 12px;
      padding: 8px 10px;
    }
  }
}






@media screen and (max-width: 959px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .u-sp {
    display: none !important;
  }
}