@charset "UTF-8";
:root {
  --primary-color: #1bc0aa;
  /* 例：メインカラー */
  --secondary-color: #FFB800;
  /* 例：セカンダリーカラー */
  --background-color: #F5EDED;
  /* 例：背景色 */
  --text-color: #242424;
  /* 例：背景色 */ }

/* 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; } }
/*********************************************************
トップページ
*********************************************************/
.ec-roleHero {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: 400px;
  overflow: visible; }
  @media screen and (min-width: 768px) {
    .ec-roleHero {
      margin-bottom: 60px;
      height: 500px; } }
  .ec-roleHero__inner {
    padding-left: 40px; }
    @media screen and (min-width: 769px) {
      .ec-roleHero__inner {
        padding-left: 100px;
        height: 500px; } }
  .ec-roleHero .slick-list {
    overflow: visible; }
  .ec-roleHero .slick-track {
    height: 100%; }
  .ec-roleHero img {
    width: 100%;
    object-fit: cover;
    height: 400px; }
    @media screen and (min-width: 769px) {
      .ec-roleHero img {
        height: 500px; } }
  .ec-roleHero__catchCopy {
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    left: -40px;
    padding-bottom: 20px; }
    @media screen and (min-width: 769px) {
      .ec-roleHero__catchCopy {
        padding-bottom: 40px;
        left: -100px; } }
    .ec-roleHero__catchCopy-text {
      font-weight: bold;
      font-size: 24px;
      line-height: 1.75; }
      @media screen and (min-width: 769px) {
        .ec-roleHero__catchCopy-text {
          font-size: 38px; } }
      .ec-roleHero__catchCopy-text span {
        background-color: #fff;
        padding: 4px 10px 4px 10px; }
        @media screen and (min-width: 769px) {
          .ec-roleHero__catchCopy-text span {
            padding: 2px 16px 2px 20px; } }

/*********************************************************
ブロック：ステップ
*********************************************************/
.ec-stepRole {
  padding: 40px 0;
  margin: 40px auto;
  background-color: var(--background-color); }
  @media screen and (min-width: 769px) {
    .ec-stepRole {
      padding: 80px 0;
      margin: 80px auto; } }
  .ec-stepRole__title {
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 32px; }
    @media screen and (min-width: 769px) {
      .ec-stepRole__title {
        font-size: 32px;
        margin-bottom: 64px; } }
  .ec-stepRole__attention {
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    font-size: 13px; }
    @media screen and (min-width: 769px) {
      .ec-stepRole__attention {
        margin-top: 24px;
        padding: 16px;
        font-size: inherit; } }

.ec-stepRole-step {
  list-style-type: none;
  padding: 0; }
  @media screen and (min-width: 769px) {
    .ec-stepRole-step {
      display: flex;
      justify-content: space-between;
      margin: 0 -20px;
      padding: 0; } }
  .ec-stepRole-step__item {
    counter-increment: number;
    position: relative; }
    .ec-stepRole-step__item:not(:last-child) {
      margin-bottom: 40px; }
    @media screen and (min-width: 769px) {
      .ec-stepRole-step__item {
        width: 33.333%;
        padding: 0 20px; } }
    .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; }
      @media screen and (min-width: 769px) {
        .ec-stepRole-step__item::before {
          width: 64px;
          height: 64px;
          top: -25px;
          left: 40px;
          font-size: 32px; } }
  .ec-stepRole-step__image {
    margin: 0 auto;
    text-align: center; }
    .ec-stepRole-step__image svg {
      width: 120px;
      height: auto; }
      @media screen and (min-width: 769px) {
        .ec-stepRole-step__image svg {
          width: 180px; } }
      .ec-stepRole-step__image svg .primary {
        fill: var(--primary-color); }
  .ec-stepRole-step__title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.5; }
    @media screen and (min-width: 769px) {
      .ec-stepRole-step__title {
        font-size: 24px;
        margin-bottom: 24px; } }
    .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: 769px) {
      .ec-stepRole-step__description {
        font-size: inherit; } }

/*********************************************************
ブロック：選ばれる理由
*********************************************************/
.ec-reasonRole {
  margin: 40px auto; }
  @media screen and (min-width: 769px) {
    .ec-reasonRole {
      margin: 80px auto; } }
  .ec-reasonRole__title {
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 32px; }
    @media screen and (min-width: 769px) {
      .ec-reasonRole__title {
        font-size: 32px;
        margin-bottom: 64px; } }
  @media screen and (min-width: 769px) {
    .ec-reasonRole__list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: -40px -10px 0; } }
  @media screen and (min-width: 769px) {
    .ec-reasonRole__list-item {
      width: 33.333%;
      padding: 0 10px;
      margin-top: 40px; } }
  .ec-reasonRole__list-image {
    margin-bottom: 16px; }
    @media screen and (min-width: 769px) {
      .ec-reasonRole__list-image {
        margin-bottom: 20px; } }
  .ec-reasonRole__list-title span {
    display: block;
    line-height: 1.5; }
    .ec-reasonRole__list-title span:first-child {
      color: var(--primary-color);
      font-weight: 400;
      letter-spacing: 0.1em; }
      @media screen and (min-width: 769px) {
        .ec-reasonRole__list-title span:first-child {
          font-size: 14px; } }
    .ec-reasonRole__list-title span:last-child {
      font-weight: bold;
      font-size: 20px; }

/*********************************************************
ブロック：新着商品情報
*********************************************************/
.ec-eyecatchRole {
  margin-top: 64px;
  margin-bottom: 0; }
  @media screen and (min-width: 769px) {
    .ec-eyecatchRole {
      margin-top: 80px; } }
  @media screen and (min-width: 769px) {
    .ec-eyecatchRole.is-reverse {
      flex-direction: row-reverse; } }
  @media screen and (min-width: 769px) {
    .ec-eyecatchRole__intro {
      padding-top: 40px;
      flex: 1 !important; } }
  @media screen and (min-width: 769px) {
    .is-reverse .ec-eyecatchRole__intro {
      padding-left: 40px;
      padding-right: 0; } }
  .ec-eyecatchRole .ec-eyecatchRole__introDescription {
    margin-bottom: 0; }
  .ec-eyecatchRole__image {
    position: relative;
    margin-bottom: 48px;
    max-width: 80%;
    margin-left: auto; }
    @media screen and (min-width: 769px) {
      .ec-eyecatchRole__image {
        width: 550px;
        max-width: 40%; } }
    .is-reverse .ec-eyecatchRole__image {
      margin-left: 0;
      margin-right: auto; }
    .ec-eyecatchRole__image::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background-color: var(--primary-color);
      position: absolute;
      top: 20px;
      left: 20px; }
      @media screen and (min-width: 769px) {
        .ec-eyecatchRole__image::before {
          top: 40px;
          left: 40px; } }
      .is-reverse .ec-eyecatchRole__image::before {
        left: -20px; }
        @media screen and (min-width: 769px) {
          .is-reverse .ec-eyecatchRole__image::before {
            left: -40px; } }
    .ec-eyecatchRole__image img {
      position: relative; }
  .ec-eyecatchRole__introEnTitle {
    color: var(--primary-color);
    display: flex;
    align-items: center; }
    .ec-eyecatchRole__introEnTitle::before {
      content: "";
      display: block;
      width: 9px;
      height: 9px;
      background-color: var(--primary-color);
      margin-right: 8px; }

/*********************************************************
ブロック：ニュース
*********************************************************/
.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 {
    font-weight: bold;
    font-size: 20px;
    padding: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--primary-color); }

@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 .ec-layoutRole__header {
  display: flex;
  align-items: center;
  padding: 10px 0 16px; }
  @media screen and (min-width: 769px) {
    .ec-layoutRole .ec-layoutRole__header {
      padding: 10px 20px;
      max-width: 1130px;
      width: 100%;
      margin: 0 auto; } }

.ec-headerNaviRole {
  order: 2; }
  @media screen and (min-width: 769px) {
    .ec-headerNaviRole {
      order: 3;
      width: auto;
      padding: 0;
      justify-content: flex-end; }
      .ec-headerNaviRole .ec-headerNaviRole__itemIcon:before {
        color: #fff; }
      .ec-headerNaviRole .ec-headerNaviRole__itemLink {
        color: #fff; }
      .ec-headerNaviRole .ec-headerNaviRole__right {
        width: auto; } }

.ec-headerRole {
  order: 1;
  width: 100px;
  padding-right: 0;
  padding-top: 0 !important;
  width: 60px; }
  @media screen and (min-width: 769px) {
    .ec-headerRole {
      width: auto;
      padding-right: 0;
      padding-left: 0;
      padding-top: 0;
      width: 60px; } }
  .ec-headerRole .ec-headerRole__title {
    width: 100%; }
    .ec-headerRole .ec-headerRole__title a {
      margin-bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; }
    .ec-headerRole .ec-headerRole__title img {
      width: 100%; }
  @media screen and (min-width: 769px) {
    .ec-headerRole__cart {
      margin-left: 16px; } }

@media screen and (min-width: 769px) {
  .ec-categoryNaviRole {
    order: 2;
    flex: 1;
    margin-top: 6px; } }
.ec-categoryNaviRole .ec-categoryNaviRole__left {
  display: none; }
.ec-categoryNaviRole .ec-categoryNaviRole__right {
  display: none; }
  @media screen and (min-width: 769px) {
    .ec-categoryNaviRole .ec-categoryNaviRole__right {
      width: 100%;
      display: flex; } }

.ec-headerNaviRole {
  padding-top: 0; }
  @media screen and (min-width: 769px) {
    .ec-headerNaviRole .ec-headerNaviRole__left {
      display: none; } }
  @media screen and (min-width: 768px) and (max-width: 1060px) {
    .ec-headerNaviRole .ec-headerNaviRole__right .ec-headerNav__itemLink {
      display: none; } }

.ec-itemNav {
  text-align: left; }
  .ec-itemNav__nav li a {
    background-color: transparent;
    padding: 6px 10px;
    font-size: 15px; }

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

.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; }

/*********************************************************
フッター調整用
*********************************************************/
.ec-contact {
  background-image: url(../../img_contact_bg.jpg);
  margin-top: 64px;
  padding: 16px;
  text-align: center;
  color: #fff; }
  @media screen and (min-width: 769px) {
    .ec-contact {
      margin-top: 80px;
      padding: 32px 16px; } }
  .ec-contact__title {
    font-weight: bold; }
    @media screen and (min-width: 769px) {
      .ec-contact__title {
        font-size: 24px; }
        .ec-contact__title br {
          display: none; } }
  .ec-contact__tel {
    font-size: 36px;
    font-weight: bold; }
    @media screen and (min-width: 769px) {
      .ec-contact__tel {
        font-size: 56px; } }
    .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: 769px) {
      .ec-contact__note {
        width: 360px;
        padding: 6px 0;
        font-size: 16px; } }

.ec-footerRole {
  background-color: var(--text-color);
  padding-bottom: 20px;
  border-top: none; }
  @media screen and (min-width: 769px) {
    .ec-footerRole .ec-footerRole__inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; } }

.ec-footerTitle {
  padding: 40px 0 20px; }
  @media screen and (min-width: 769px) {
    .ec-footerTitle {
      order: 1;
      padding: 0; } }
  .ec-footerTitle .ec-footerTitle__logo {
    width: 200px;
    margin: 0 auto; }
    @media screen and (min-width: 769px) {
      .ec-footerTitle .ec-footerTitle__logo {
        width: 60px; } }
    .ec-footerTitle .ec-footerTitle__logo img {
      width: 100%; }

@media screen and (min-width: 769px) {
  .ec-footerNavi {
    order: 2;
    flex: 1;
    text-align: right; } }

.ec-footerNavi__link a {
  text-decoration: underline; }

.ec-footerCopyright {
  font-size: 10px;
  color: #fff;
  text-align: center; }
  @media screen and (min-width: 769px) {
    .ec-footerCopyright {
      order: 3;
      width: 100%;
      text-align: right;
      font-size: 10px;
      color: #fff; } }

/*********************************************************
その他
*********************************************************/
@media screen and (min-width: 769px) {
  .ec-blockTopBtn {
    right: 0;
    bottom: 0; } }

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

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

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