@charset "UTF-8";
:root {
  --primary-color: #323264;
  /* 例：メインカラー */
  --secondary-color: #6398FF;
  /* 例：セカンダリーカラー */
  --background-color: #f3f3f3;
  /* 例：背景色 */
  --text-color: #121212;
  /* 例：背景色 */ }

/* reset */
html body {
  color: var(--text-color); }

.ec-role {
  color: var(--text-color); }

.ec-layoutRole {
  overflow: hidden; }

/*********************************************************
下層調整用
*********************************************************/
/* ページ見出し */
.ec-pageHeader {
  background-color: var(--primary-color);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 32px 20px 24px;
  margin-bottom: 40px;
  background-position: center;
  background-size: cover; }
  .ec-pageHeader h1 {
    border: none;
    margin: 0;
    text-align: center;
    font-size: 20px;
    color: #fff; }

@media screen and (min-width: 768px) {
  .ec-pageHeader {
    padding: 64px 0;
    margin-bottom: 40px; }
    .ec-pageHeader h1 {
      font-size: 32px; } }
/*********************************************************
トップページ
*********************************************************/
@media screen and (min-width: 768px) {
  .ec-roleHero {
    padding: 0 20px; } }
.ec-roleHero img {
  width: 100%;
  height: auto; }

/*********************************************************
ブロック：ステップ
*********************************************************/
.ec-stepRole {
  padding: 40px 0;
  margin: 40px auto;
  background-color: var(--background-color); }
  .ec-stepRole__title {
    text-align: center;
    font-weight: bold;
    line-height: 1.75;
    margin-bottom: 32px; }
  .ec-stepRole__attention {
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    font-size: 13px; }

.ec-stepRole-step {
  list-style-type: none;
  padding: 0; }
  .ec-stepRole-step__item {
    counter-increment: number;
    position: relative; }
    .ec-stepRole-step__item:not(:last-child) {
      margin-bottom: 40px; }
    .ec-stepRole-step__item::before {
      content: counter(number);
      background-color: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      font-size: 24px;
      left: 80px; }
  .ec-stepRole-step__image {
    width: 120px;
    margin: 0 auto; }
  .ec-stepRole-step__title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 16px; }
    .ec-stepRole-step__title > span {
      background: linear-gradient(transparent 60%, var(--secondary-color) 60%);
      display: inline-block;
      padding: 0 4px 4px; }
  .ec-stepRole-step__description {
    font-size: 15px; }

@media screen and (min-width: 768px) {
  .ec-stepRole {
    padding: 80px 0;
    margin: 80px auto; }
    .ec-stepRole__title {
      font-size: 32px;
      margin-bottom: 64px; }
    .ec-stepRole__attention {
      margin-top: 24px;
      padding: 16px;
      font-size: inherit; }

  .ec-stepRole-step {
    display: flex;
    justify-content: space-between;
    margin: 0 -20px;
    padding: 0; }
    .ec-stepRole-step__item {
      width: 33.333%;
      padding: 0 20px; }
      .ec-stepRole-step__item::before {
        width: 64px;
        height: 64px;
        top: -25px;
        left: 40px;
        font-size: 32px; }
    .ec-stepRole-step__image {
      width: 160px;
      margin: 0 auto; }
    .ec-stepRole-step__title {
      text-align: center;
      font-size: 24px;
      margin-bottom: 24px; }
    .ec-stepRole-step__description {
      font-size: inherit; } }
/*********************************************************
ブロック：新着商品情報
*********************************************************/
.ec-eyecatchRole .ec-eyecatchRole__intro::before {
  content: attr(title);
  position: absolute;
  color: var(--primary-color);
  font-weight: bold;
  opacity: .1;
  font-size: 40px; }

@media screen and (min-width: 768px) {
  .ec-eyecatchRole {
    margin-top: 64px; }
    .ec-eyecatchRole .ec-eyecatchRole__intro {
      padding-top: 60px;
      position: relative; }
      .ec-eyecatchRole .ec-eyecatchRole__intro::before {
        font-size: 64px; }
    .ec-eyecatchRole .ec-eyecatchRole__image {
      min-width: 500px; } }
/*********************************************************
ブロック：ニュース
*********************************************************/
.ec-newsRole {
  border: 3px solid #eaeaea;
  padding: 20px; }

.ec-secHeading {
  margin-bottom: 16px; }
  .ec-secHeading .ec-secHeading__en {
    display: block;
    font-size: 32px; }
  .ec-secHeading .ec-secHeading__line {
    display: none; }
  .ec-secHeading .ec-secHeading__ja {
    font-size: 14px; }

@media screen and (min-width: 768px) {
  .ec-newsRole {
    border-width: 5px;
    padding: 40px;
    display: flex; }
    .ec-newsRole .ec-newsRole__news {
      border: none;
      flex: 1;
      padding: 0 0 0 40px; }
    .ec-newsRole .ec-newsRole__newsDate {
      padding-top: 4px; }

  .ec-secHeading {
    margin-bottom: 0; }
    .ec-secHeading .ec-secHeading__en {
      display: block;
      font-size: 32px; }
    .ec-secHeading .ec-secHeading__line {
      display: none; }
    .ec-secHeading .ec-secHeading__ja {
      font-size: 14px; } }
/*********************************************************
ブロック：カテゴリ
*********************************************************/
.ec-categoryItemListRole {
  margin-top: 40px; }
  .ec-categoryItemListRole h2 {
    background-color: var(--primary-color);
    color: #fff !important;
    font-weight: bold;
    font-size: 20px;
    padding: 8px;
    margin-bottom: 24px; }

@media screen and (min-width: 768px) {
  .ec-categoryItemListRole {
    margin-top: 64px; }
    .ec-categoryItemListRole h2 {
      font-weight: bold;
      padding: 12px;
      margin-bottom: 32px;
      margin-top: 64px; } }
/*********************************************************
商品一覧
*********************************************************/
.ec-shelfGrid .ec-shelfGrid__item {
  width: 100%; }
  .ec-shelfGrid .ec-shelfGrid__item-name {
    font-weight: bold; }
  .ec-shelfGrid .ec-shelfGrid__item-image {
    width: 25%; }
  .ec-shelfGrid .ec-shelfGrid__item-data {
    width: calc(100% - 25% - 10px); }
  .ec-shelfGrid .ec-shelfGrid__item-name {
    margin-bottom: 8px; }
  .ec-shelfGrid .ec-shelfGrid__item a {
    display: flex;
    justify-content: space-between;
    align-items: center; }

@media screen and (max-width: 767px) {
  .ec-shelfGrid .ec-shelfGrid__item {
    margin-bottom: 10px; }
    .ec-shelfGrid .ec-shelfGrid__item:nth-child(odd) {
      padding-right: 0; }
    .ec-shelfGrid .ec-shelfGrid__item:nth-child(even) {
      padding-left: 0; } }
@media screen and (min-width: 768px) {
  .ec-shelfGrid .ec-shelfGrid__item {
    width: 50%; }
    .ec-shelfGrid .ec-shelfGrid__item-image {
      width: 33.333%; }
    .ec-shelfGrid .ec-shelfGrid__item-data {
      width: calc(100% - 33.33% - 16px); }
    .ec-shelfGrid .ec-shelfGrid__item-name {
      margin-bottom: 8px;
      font-size: 20px; }
    .ec-shelfGrid .ec-shelfGrid__item a {
      border-width: 10px;
      padding: 10px; } }
/*********************************************************
商品詳細
*********************************************************/
.ec-productRole__description {
  line-height: 2; }
  .ec-productRole__description h2 {
    font-weight: bold; }

.ec-productRole-info {
  background-color: #FF5353;
  padding: 10px;
  margin: 0 -20px; }
  .ec-productRole-info__title {
    text-align: center;
    color: #fff;
    margin-bottom: 10px; }
    .ec-productRole-info__title span {
      font-weight: bold;
      font-size: 120%; }
  .ec-productRole-info__description {
    background-color: #fff;
    padding: 10px;
    line-height: 2;
    font-weight: 500;
    font-size: 14px; }

@media screen and (min-width: 768px) {
  .ec-productRole-info {
    padding: 24px;
    margin: 48px 0 0; }
    .ec-productRole-info__title {
      font-size: 20px;
      padding-bottom: 20px; }
      .ec-productRole-info__title span {
        font-weight: bold;
        font-size: 120%; }
    .ec-productRole-info__description {
      padding: 24px;
      font-size: inherit; } }
/*********************************************************
プライバシーポリシー
*********************************************************/
.ec-privacy {
  line-height: 1.75; }
  .ec-privacy .ec-heading-bold {
    margin-top: 2em; }
  .ec-privacy ul {
    margin-top: 16px; }

/*********************************************************
特定商取引法に基づく表記
*********************************************************/
#page_help_tradelaw .ec-borderedDefs dt, #page_help_tradelaw .ec-borderedDefs dd {
  padding-top: 0;
  line-height: 2; }

/*********************************************************
ご利用ガイド
*********************************************************/
.ec-guide__contents-block:not(:first-child) {
  margin-top: 40px; }
.ec-guide__nav {
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  margin-bottom: 40px; }
.ec-guide__navItem a {
  display: block;
  background-color: #f4f4f4;
  border-radius: 100px;
  padding: 8px 20px;
  font-weight: bold; }
.ec-guide__headingH2 {
  color: var(--primary-color);
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: bold; }

.ec-guide-note {
  margin-top: 24px; }
  .ec-guide-note__title {
    padding: 0 10px;
    margin-bottom: 8px; }
  .ec-guide-note__description {
    border-bottom: 1px dotted #acacac;
    padding: 0  26px 32px;
    margin-bottom: 24px; }

@media screen and (min-width: 768px) {
  .ec-guide__contents-block:not(:first-child) {
    margin-top: 80px; }
  .ec-guide__headingH2 {
    font-size: 32px;
    margin-bottom: 64px; }
  .ec-guide__nav {
    gap: 1.6rem;
    padding: 40px 0;
    margin-bottom: 64px; }
  .ec-guide__navItem a {
    padding: 8px 24px;
    transition-duration: .2s;
    font-size: 20px; }
    .ec-guide__navItem a:hover {
      background-color: var(--primary-color);
      color: #fff; }

  .ec-guide-note {
    margin-top: 24px; }
    .ec-guide-note__title {
      padding: 0 16px;
      margin-bottom: 12px; }
    .ec-guide-note__description {
      padding: 0  32px 40px;
      margin-bottom: 24px; } }
/*********************************************************
ヘッダー調整
*********************************************************/
.ec-layoutRole__header {
  display: flex;
  align-items: center;
  padding: 10px 0 16px; }
  .ec-layoutRole__header .ec-headerNaviRole {
    order: 2; }
  .ec-layoutRole__header .ec-headerRole {
    order: 1;
    width: 300px;
    padding-right: 0;
    padding-top: 0; }
    .ec-layoutRole__header .ec-headerRole .ec-headerTitle .ec-headerTitle__title a {
      margin-bottom: 0; }
  .ec-layoutRole__header .ec-headerNaviRole__right {
    display: none; }

.ec-headerNavSP {
  left: auto;
  right: 10px; }

.ec-drawerRole {
  left: auto;
  right: 0;
  transform: translateX(300px);
  background-color: var(--primary-color); }
  .ec-drawerRole .ec-headerLinkArea {
    background-color: var(--primary-color); }

.ec-drawerRoleClose {
  left: auto;
  right: 270px; }

@media screen and (min-width: 768px) {
  /*
  .ec-headerNav .ec-headerNav__itemIcon:before {
    color: #fff; }
  .ec-headerNav .ec-headerNav__itemLink {
    color: #fff; }
    */

  .ec-layoutRole__header {
    padding: 20px;
    max-width: 1130px;
    width: 100%;
    margin: 0 auto; }
    .ec-layoutRole__header .ec-headerNaviRole {
      order: 3;
      width: auto;
      padding: 0; }
    .ec-layoutRole__header .ec-headerRole {
      order: 1;
      width: 200px; }
      .ec-layoutRole__header .ec-headerRole__cart {
        margin-left: 16px; }
    .ec-layoutRole__header .ec-categoryNaviRole {
      order: 2;
      flex: 1; }
    .ec-layoutRole__header .ec-headerNaviRole__left {
      display: none; }
    .ec-layoutRole__header .ec-headerNaviRole__right {
      width: 100%;
      display: flex; }
    .ec-layoutRole__header .ec-headerRole {
      width: 200px;
      padding-right: 0;
      padding-left: 0;
      padding-top: 0; }
      .ec-layoutRole__header .ec-headerRole .ec-headerRole__title {
        width: 100%; }
        .ec-layoutRole__header .ec-headerRole .ec-headerRole__title a {
          margin-bottom: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100%; }
        .ec-layoutRole__header .ec-headerRole .ec-headerRole__title img {
          width: 100%; }
    .ec-layoutRole__header .ec-itemNav {
      text-align: left; }
      .ec-layoutRole__header .ec-itemNav__nav li a {
        background-color: transparent; } }
@media screen and (min-width: 768px) and (max-width: 960px) {
  .ec-layoutRole__header .ec-headerRole {
    width: 150px; }

  .ec-cartNavi {
    height: 36px;
    padding: 12px 16px 8px;
    min-width: 120px; }
    .ec-cartNavi .ec-cartNavi__icon {
      font-size: 16px; }
    .ec-cartNavi .ec-cartNavi__price {
      font-size: 13px;
      transform: translateY(-4px); }

  .ec-headerNav .ec-headerNav__itemIcon {
    font-size: 16px; }

  .ec-itemNav__nav li a {
    font-size: 14px;
    padding: 8px; }

  .ec-headerNav .ec-headerNav__itemLink {
    font-size: 12px; } }
/*********************************************************
フッター調整用
*********************************************************/
.ec-contact {
  border: var(--primary-color) 3px solid;
  margin-top: 64px;
  padding: 16px;
  text-align: center; }
  .ec-contact__title {
    font-weight: bold; }
  .ec-contact__tel {
    font-size: 36px;
    font-weight: bold; }
    .ec-contact__tel a {
      color: inherit; }
  .ec-contact__note {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 12px; }

@media screen and (min-width: 768px) {
  .ec-contact {
    border-width: 10px;
    margin-top: 80px;
    padding: 32px 16px; }
    .ec-contact__title {
      font-size: 24px; }
      .ec-contact__title br {
        display: none; }
    .ec-contact__tel {
      font-size: 56px; }
    .ec-contact__note {
      width: 360px;
      padding: 6px 0;
      font-size: 16px; } }
.ec-footerRole {
  background-color: var(--primary-color);
  padding-bottom: 20px; }
  .ec-footerRole .ec-footerTitle {
    padding: 40px 0 20px; }
    .ec-footerRole .ec-footerTitle .ec-footerTitle__logo {
      width: 200px;
      margin: 0 auto; }
      .ec-footerRole .ec-footerTitle .ec-footerTitle__logo img {
        width: 100%; }
  .ec-footerRole .ec-footerNavi__link a {
    border-bottom: 1px dotted #fafafa; }
  .ec-footerRole .ec-footerCopyright {
    font-size: 10px;
    color: #fff;
    text-align: center; }

@media screen and (min-width: 768px) {
  /* フッター */
  .ec-footerRole {
    border-top: none; }
    .ec-footerRole .ec-footerNavi__link a {
      border-bottom: none; }

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

  .ec-footerRole__inner .ec-footerTitle {
    order: 1;
    padding: 0; }

  .ec-footerRole__inner .ec-footerNavi {
    order: 2;
    flex: 1;
    text-align: right; }

  .ec-footerRole__inner .ec-footerCopyright {
    order: 3;
    width: 100%;
    text-align: right;
    font-size: 10px;
    color: #fff; }

  .ec-blockTopBtn {
    right: 0;
    bottom: 0; }

  .ec-pageHeader {
    text-align: center; }

  .ec-layoutRole .ec-layoutRole__contents {
    max-width: 100%; } }

/*# sourceMappingURL=customize.css.map */
