@charset "UTF-8";
/* 1. サイト全体（body）に適用 */
body {
    font-family: 'Helvetica Neue', "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif !important;
    font-size: 14px;
}
@media screen and (max-width: 599px) {
  body {
   font-size: 13px;
  }
}

/* 2. フォーム要素など、bodyからの継承が効かないことがある要素にも念のため適用 */
input, button, select, textarea {
    font-family: inherit; /* bodyのフォントを継承させる */
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.8;
}
ul {
  padding-left: 0;
  list-style: none;
}

/* マテリアルアイコン設定 */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
.material-symbols-outlined.outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}


/* ==========================================================================
   1. 強制1カラム化 & 基本レイアウト
   ========================================================================== */

/* サイドバーを完全に消す */
aside.aside {
    display: none;
}

.wrapper .__inner {
  max-width: 1100px;
  margin: 30px auto 60px;
}

/* メインエリアを100%に広げる */
.main {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 auto;
}

/* セクションの余白共通 */
section.__block {
  margin-top: 20px;
}
.main.main--home section.__block:not(:last-child) {
  margin-bottom: 5.5em;
}

@media screen and (max-width: 599px) {
  .main.main--home section.__block:not(:last-child) {
    margin-bottom: 3.3em;
  }
}

/* トップページのみinner解除 */
.body-home .wrapper .__inner {
  margin: 0 auto;
  padding: 0;
  max-width: inherit;
}

/* タイトル */
.top-ttl {
  position: relative;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}
.top-ttl:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.4em;
  height: 1px;
  width: 100%;
  background: #333;
}
.top-h {
  position: relative;
  font-size: 20px;
  line-height: 1;
  margin: 0 auto;
}
.top-ttl .top-h {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  background: #fff;
  z-index: 2;
}

.top-s {
  margin: 0.5em auto;
  font-size: 12px;
  color: #0068b7;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .top-ttl {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }
  .top-s {
    font-size: 10px;
  }

}

/* 共通ボタン */
.__more.c-more {
  margin: 2em auto;
  text-align: center;
}
.__more.c-more a {
  display: inline-block;
  margin: 0 auto;
  width: auto;
  text-align: center;
  border: 2px solid #0068b7;
  color: #0068b7;
  border-radius: 30px;
  padding: 1em 3.5em;
  font-size: 12px;
  font-weight: bold;
}
.__more.c-more a:hover {
  text-decoration: none;
}
.c-more a:before {
  display: none;
}
@media screen and (max-width: 599px) {
 .__more.c-more {
    margin: 1em auto;
    text-align: center;
  }
  .__more.c-more a {
    border-width: 1px;
    padding: .9em 3em;
  }
}

/* ヘッダー */
.header {
  border-top: #00b0ec 6px solid;
}
#header {
  display: flex;
  max-width: 1100px;
  margin: 1em auto 0.3em;
  padding: 0 1em;
  align-items: center;
  justify-content: space-between;
}
.header-l {
  width: 300px;
  position: relative;
}
.header-l .__toggle-open {
  display: none;
}
.header-l .header_search_wrap .header_search_input {
  width: 240px;
  padding: 1em 1.8em;
  border-radius: 30px;
  box-shadow: none;
  border-color: #999999;
  line-height: 1;
  font-size: 12px;
}
.header-l .header_search_wrap .header_search_input::placeholder {
  display: inline-block;
  color: #999999 !important;
}
.header-l .header_search_wrap .header_search_btn {
  border: 0;
  background: none;
  position: absolute;
  left: 195px;
  top: .6em;
}

.header-m img {
  width: 60px;
  height: auto;
}

.header-r {
  display: flex;
  justify-content: flex-end;
  gap: 1.5em;
  width: 300px;
}
.header-r a {
  display: block;
  min-width: 6em;
  text-align: center;
  color: #0068b7;
  font-weight: bold;
  font-size: 10px;
}
.header-r a:hover {
  text-decoration: none;
}

.header-r a span:last-child {
  display: block;
  padding-top: 3px;
}
.header-r .material-symbols-outlined {
  font-size: 28px;
  line-height: 24px;
}

/* ログイン前 */
.__is-guest .header-r .login {
  display: none;
}
.__is-guest .header-r .not-login {
  display: block;
}

/* ログイン後 */
.__is-member .header-r .not-login {
  display: none;
}
.__is-member .header-r .login {
  display: block;
}


@media screen and (max-width: 599px) {
  .header {
    border-width: 3px;
  }
  #header {
    width: 90%;
    padding: 0;
    margin: .5em auto 0;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .header-l {
    width: calc(100% / 3);
  }
  .header-l .header_search_wrap {
    display: none;
  }
  .header-l .__toggle-open {
    display: block;
  }
  .header-l .material-symbols-outlined {
    font-variation-settings: 'FILL' 0,  'wght' 700;
    font-size: 20px;
    color: #0068b7;
  }
  .header-m {
    width: calc(100% / 3);
    text-align: center;
  }
  .header-m img {
    margin: 0 auto;
    width: 27px;
    height: auto;
  }
  .header-r {
    width: calc(100% / 3);
    gap: 1em;
    justify-content: flex-end;
  }
  .header-r a {
    min-width: inherit;
  }
  .header-r .material-symbols-outlined {
    font-size: 22px;
  }
  .header-r a span:last-child {
    display: none;
  }
  .header-r .help {
    display: none;
  }
  /* ログイン前 */
  .__is-guest .header-r .login {
    display: none;
  }
  .__is-guest .header-r .not-login {
    display: block;
  }
  .__is-guest .header-r .not-login.regi {
    display: none;
  }

  /* ログイン後 */
  .__is-member .header-r .not-login {
    display: none;
  }
  .__is-member .header-r .login {
    display: block;
  }

}

/* グローバルナビ */
.gnav-pc {
  background: rgba(241,241,241, 0.4);
  display: flex;
  border-color: #f1f1f1;
}
.gnav-pc .__menu {
  max-width: 1100px;
  width: 100%;
}
.gnav-pc ul {
  list-style: none;
  padding: 1.2em 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10%;
}
.gnav-pc li a {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #333;
} 
.gnav-pc li a span {
  text-align: center;
  display: block;
  padding-top: 0.3em;
  font-size: 10px;
  color: #0068b7;
}



/* mainコンテンツ */
.__block--news {
  display: flex;
  gap: 5%;
  justify-content: center;
  background: rgba(241,241,241,0.4) !important;
}
.__block--news .top-news {
  width: 25%;
  max-width: 250px;
  text-align: center;
  padding-top: 3em;
}
.__block--news .__body {
  width: 68%;
  max-width: 730px;
  padding: 2em 0;
}
.main.main--home section.__block.__block--news .__body ul li {
  display: block;
  padding: 0.8em 0;
  font-size: 12px;
  line-height: 1.6;
}
.main.main--home section.__block.__block--news .__body ul li:nth-child(n+4) {
  display: none;
}
.main.main--home section.__block.__block--news .__body ul li > a, .main.main--home section.__block.__block--news .__body ul li > span {
  display: block;
}
.main.main--home section.__block.__block--news .__body ul li > a span.__date, .main.main--home section.__block.__block--news .__body ul li > span span.__date {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  font-weight: bold;
  color: #999;
}
.main.main--home section.__block.__block--news .__body ul li > a span.__title, .main.main--home section.__block.__block--news .__body ul li > span span.__title {
  display: block;
  padding-left: 0;
  padding: 0.2em 0 0;
  border: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.news-list {
  display: inline-block;
  margin: 1em auto;
  width: auto;
  text-align: center;
  border: 2px solid #0068b7;
  color: #0068b7;
  border-radius: 30px;
  padding: 1em 3.5em;
  font-size: 12px;
  background: #fff;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  section.__block.__block--news {
    position: relative;
    flex-direction: column;
    padding-bottom: 5.5em;
    margin-top: 0em;
  }
  .__block--news .top-news {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 2.5em;
  }
  .__block--news .__body {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 1em;
  }
  .main.main--home section.__block.__block--news .__body ul li {
    padding: 0.4em 0;
    /* font-size: 1.25rem; */
    border: 0;
    line-height: 1.4;
    color: #333;
  }
  .main.main--home section.__block.__block--news .__body ul li > a span.__date, .main.main--home section.__block.__block--news .__body ul li > span span.__date {
    font-size: 10px;
  }
  .main.main--home section.__block.__block--news .__body ul li > a span, .main.main--home section.__block.__block--news .__body ul li > span span {
    font-size: 12px;
  }
  .news-list {
    position: absolute;
    bottom: 3.2em;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 14em;
    border-width: 1px;
    padding: 0.8em 3.5em .6em;
  }

}


/* カテゴリー */
.top-category {
  max-width: 980px;
  margin: 2.5em auto;
}
.top-category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 0;
  margin-bottom: 80px;
}
.top-category ul li {
  width: calc(100% / 4);
  list-style: none;
}
.top-category ul li a {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  gap: 1.4em;
  color: #333;
}
.top-category ul li a .sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .main.main--home section.__block--free-1 {
    margin-top: 3.5em;
  }
  .top-category {
    width: 90%;
  }
  .top-category ul {
    gap: 1em 1%;
    margin-bottom: 1.5em;
  }
  .top-category ul li {
    width: 49%;
  }
  .top-category ul li a {
    gap: .6em;
  }
  .top-category ul li .cate-img {
    width: 49%;
  }
  .top-category ul li .cate-txt {
    font-size: 10px;
    white-space: nowrap;
  }
  .top-category ul li a .sp {
    display: block;
  }

}


/* ブランド */
.top-brand-wrap {
  margin-top: 5.5em;
}

.top-brand {
  max-width: 880px;
  margin: 3em auto 5em;
}
.top-brand ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3em;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .top-brand-wrap {
    margin-top: 4.5em;
  }
  .top-brand {
    margin: 2.5em auto 4.5em;
  }
  .top-brand ul {
    width: 80%;
    margin: 0 auto;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .top-brand ul li {
    width: calc((100% - 3em) / 3);
    text-align: center;
  }
  .top-brand li img {
    zoom: 0.7;
  }


}

/* 新着商品 */
.__body.p-product-block.p-product-block--compact {
  max-width: 1100px;
  margin: 2em auto 4em;
}
.p-product-block ul.__product {
  display: flex;
  max-width: 1020px;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 0 10px;
}
.p-product-block ul.__product li.__item {
  width: calc( (1000px - 80px) / 5);
  padding: 1em 0;
}

.p-product-block ul.__product li.__item a .__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 184px;
  overflow: hidden;
}

.p-product-block ul.__product li.__item a .__photo img {
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.p-product-block ul.__product li.__item a .__title {
  margin-top: 2em;
  font-size: 12px;
  font-weight: normal;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}
.p-product-block ul.__product li.__item a .__description dl.__price {
  font-weight: bold;
  text-align: left;
  color: #333;
  font-size: 12px;
}

@media screen and (max-width: 599px) {
  .__body.p-product-block.p-product-block--compact {
    width: 90%;
    margin: 2em auto 4em;
  }
  .p-product-block ul.__product {
    gap: 2em 1.2em;
    padding: 0 10px 10px;
  }
  .p-product-block.p-product-block--compact ul.__product li.__item {
    width: calc((100% / 2) - 0.6em);
    padding: 0;
  }
  .p-product-block ul.__product li.__item a .__photo {
    height: 40vw;
  }
  .p-product-block ul.__product li.__item a .__photo img {
    max-height: 100%;
    height: auto;
    object-fit: contain;
  }
  .p-product-block ul.__product li.__item a .__description dl.__price {
    font-size: 11px;
  }
}


/* 閲覧履歴 */
.__block--pro-viewed {
  max-width: 1100px;
  margin: 0 auto;
}
.__block--pro-viewed .c-heading-main {
  border: 0;
}
.__block--pro-viewed .c-heading-main span {
  font-size: 0;
}
.__block--pro-viewed .c-heading-main span:before {
  content: "BROWSING HISTORY";
  font-size: 20px;
}
.__block--pro-viewed .c-heading-main span:after {
  content: "閲覧履歴";
  font-size: 12px;
  color: #0068b7;
  font-weight: bold;
  display: inline-block;
  margin-left: 1.5em;
}

.__block--pro-viewed .__body.p-product-block.p-product-block--compact {
  max-width: 1100px;
  margin: 0 auto 4em;
}
.__block--pro-viewed .p-product-block ul.__product {
  max-width: 1100px;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
.__block--pro-viewed .p-product-block ul.__product li.__item {
  width: calc( (1100px - 120px) / 7);
  padding: 1em 0;
}
.__block--pro-viewed .p-product-block ul.__product li.__item a .__photo img {
  max-height: 100%;
  height: auto;
  object-fit: contain;
}


@media screen and (max-width: 599px) {
  .__block--pro-viewed {
    display: none;
  }
}


/* =========================================================
   メインビジュアル スライダー (Swiper) 
   ========================================================= */
.__content-home-top {
  display: block;
}
.topSwiper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* スライド1枚あたりの幅指定 */
.topSwiper .swiper-slide {
    width: 100%;
    max-width: 1100px;
    
}

/* 画像自体の設定 */
.topSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  left: calc(50vw + 538px) ;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: auto ;
  right: calc(50vw + 538px);
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 60px;
  color: rgba(49,93,158,0.8);
}
.swiper-pagination-bullet {
  border: 1px solid #333;
  background: #fff;
  opacity: 0.3;
  width: 6px;
  height: 6px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,8px) !important;
}
.swiper-pagination-bullet-active {
  background: #333;
  opacity: 0.6;
}
@media screen and (max-width: 599px) {
  .__content-home-top {
    display: none;
  }
}

/* スライダーSP用 */
.__block--free-1 {
  display: none;
}
@media screen and (max-width: 599px) {
  .main.main--home section.__block:not(:last-child).__block--free-1 {
    display: block;
    margin: 0 auto;
  }
  .topSwiper-sp {
    padding-bottom: 2em;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: inherit ;
    right: 10px;
    top: calc(50% - 15px);
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: inherit;
    top: calc(50% - 15px);
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
    color: rgba(49,93,158,0.8);
  }

}







/* フッターデザイン */
.footer {
  background: #f1f1f1;
  margin-top: 4em;
}
.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 2em 0;
  display: flex;
  gap: 8%;
}
.f-logo {
  width: calc(76% / 4);
}
.f-logo img {
  width: 84px;
  height: auto;
  padding-top: 15px;
}

.f-list {
  width: calc(76% / 4);
}
.f-list .f-tit {
  font-weight: bold;
  border-bottom: 1px solid #999;
  padding-bottom: .8em;
}
.f-list ul a {
  font-size: 12px;
  line-height: 1.8;
  color: #333;
}
.f-copyright {
  background: #333c71;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 1.4em 0;

}


@media screen and (max-width: 599px) {
#footer {
  background: #333c71;
  margin-top: 2em;
}
.footer-inner {
  position: relative;
  color: #fff;
  padding: 2em 0;
  flex-direction: column;
}
.f-logo {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  background: #fff;
}
.f-logo img {
  width: 44px;
  height: auto;
  padding-top: 16px;
}

.f-list {
  width: 90%;
  margin: 0 auto;
}
.f-list .f-tit {
  font-size: 12px;
  border-bottom: 1px solid #fff;
}
.f-list ul {
  display: flex;
  flex-wrap: wrap;
}
.f-list ul li {
  width: 28%;
}
.f-list ul a {
  font-size: 10px;
  color: #fff;
}
.f-list.f-guide {
  padding-bottom: 60px;
}
.f-list.f-guide ul li {
  width: 48%;
}
.f-copyright {
  background: #fff;
  color: #333;
  font-weight: normal;
  font-size: 10px;
  padding: 1em 0;

}
}


/* ヘッダー上部バナーデザイン（共通） */
.p-news-notifier > ul li.__item.__item[class*="__item--bgcolor-"] {
  background: #1f296f;
}
.p-news-notifier > ul li.__item .__inner {
  max-width: 1100px;
}
.p-news-notifier > ul li.__item .__inner a,.p-news-notifier > ul li.__item .__inner span {
  color: #fff;
  font-size: 11px;
}
.__content .c-news-label.c-news-label[class*="-label--color-"] {
  background: #cc0000;
  border: 0;
  color: #fff;
  padding: 0.2em 1em;
}
.p-news-notifier > ul li.__item .__inner span.__close:before {
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .p-news-notifier > ul li.__item .__inner {
    width: 94%;
  }
  .p-news-notifier > ul li.__item .__inner a,.p-news-notifier > ul li.__item .__inner span {
    font-size: 9px;
  }
}


.main.main--contact-form section.__submit {
  margin-top: 2em;
}


/* マイページ */
.__search.p-mypage-search .__heading {
  border: 1px solid #ddd;
}

.__search.p-mypage-search .__heading .__title {
  font-size: 14px;
}

.__search.p-mypage-search .__body {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.p-mypage-search .__body .__control .__submit .__button {
  font-size: 14px;
}
.p-mypage-search .__body .__control .__reset .c-button {
  font-size: 14px;
}

[class*="main--mypage"] table.__table {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}


[class*="main--mypage"] section.__list table.__table .__order-info {
  border-right: 1px solid #ddd;

}

[class*="main--mypage"] section.__list table.__table tbody tr td.__date-code dl.__code,
[class*="main--mypage"] section.__list table.__table tbody tr td.__date-code dl.__total {
  font-size: 14px;
}

.p-cart .__product table tbody td.__description a .__image {
  display: none;
}

.main--privacy .policy-tit {
  font-size: 1.2em;
  margin: 2em 0;
}
.main--privacy ol {
  margin-left: 0;
  padding-left: 1.3em;
}
.main--privacy ol > li {
  font-weight: bold;
  padding: .5em 0;
}
.main--privacy .inner-list li {
  font-weight: normal;
}
.main--privacy ul {
    list-style: disc;
    font-weight: normal;
    margin-left: 1.7em;
    margin-bottom: 0.8em;
}
.main--privacy p.txt {
    font-weight: normal;
}