/* カスタマイズ用CSS */
/* ========================================
   共通設定/ルート
   ======================================== */

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

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



.txt-red{
    color:red;
}

.txt-blue{
    color:blue;
}

.txt-bold{
    font-weight:bold;
}

.marker{
    display: inline;
    padding: 0;
    background: linear-gradient(transparent 50%, #fdff63 50%);
}

.marker-red{
    display: inline;
    padding: 0;
    background: linear-gradient(transparent 50%, #ffebee 50%);
}

 .bottom_space{
    margin-bottom:48px !important;
}


/* ========================================
   ヘッダーエリア
   ======================================== */

.ec-headerNaviRole{
    max-width:100%;
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    padding:15px;
    box-sizing: border-box
}

.header_logo_area{
    margin:30px 0;
}

.header_logo{
    width:200px;
    margin:auto;
}

.ec-pageHeader h1{
    font-size:1.4em;
}

.ec-pageHeader h2 {
    margin: 0 0 8px;
    border-bottom: 1px dotted #ccc;
    padding: 8px 0 12px;
    font-size: 1.2em;
    font-weight: bold;
}

@media screen and (max-width:480px) { 
    /*　SPロゴの幅　*/

    .header_logo{
        width:100px;
    }

}

.ec-headerNavSP{
    color: #fff;
    background: #000;
}

.ec-layoutRole .ec-layoutRole__contents{
    padding-top:80.39px;
}

.ec-drawerRole{
    background: #fff;
}


.ec-drawerRoleClose{
    z-index: 10000;
    color:#fff;
    background: #000;
}

.ec-headerNaviRole__right,.ec-headerNaviRole__center{
    width:calc(100% / 3) !important;
}

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

.ec-headerNaviRole__center img{
    max-width: 180px;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .ec-headerNaviRole__nav {
        display: none !important;
    }
}

/* ========================================
   商品一覧ページ - 商品名・価格スタイル調整
   ======================================== */

/* 商品名: 小さく、行間を詰める */
.ec-shelfGrid__item a > p:not(.ec-shelfGrid__item-image):not(.price02-default) {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 4px;
    color: #333;
}

/* 価格: 左寄せ・太字・やや大きめ */
.ec-shelfGrid__item .price02-default {
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    margin-top: 6px;
    color: #000;
}

/* ============================================================
   PC グローバルナビ (category_nav_pc) - メガメニュースタイル
   
   設計:
   - 配色: 白黒基調、ホバー時の下線アニメーション
   - アニメーション: フェード + スライドダウン 0.25s
   - レイアウト: 中央寄せ、列幅最大240px
   - 誤操作防止: mouseleave 後 0.3s 遅延で閉じる
   ============================================================ */

/* ---------- ベース: メガメニューバー ---------- */
.ec-categoryNaviRole {
    background-color: #000;
    max-width: 100%;
    border-bottom: 1px solid #1a1a1a;
}

.ec-categoryNaviRole .ec-itemNav {
    max-width: 1280px;
    margin: 0 auto;
}

.ec-categoryNaviRole .pc_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 56px;
}

/* ---------- 各メガメニュー項目 ---------- */
.ec-categoryNaviRole .menu__mega {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ec-categoryNaviRole .menu__mega > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 32px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.15s ease;
}

/* ホバー時の下線アニメーション */
.ec-categoryNaviRole .menu__mega > a::after {
    content: '';
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 16px;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.ec-categoryNaviRole .menu__mega:hover > a::after,
.ec-categoryNaviRole .menu__mega:focus-within > a::after {
    transform: scaleX(1);
}

/* 下矢印インジケーター(控えめ) */
.ec-categoryNaviRole .menu__mega > a::before {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.ec-categoryNaviRole .menu__mega:hover > a::before {
    transform: translateY(-30%) rotate(45deg);
    opacity: 1;
}

/* ---------- 展開エリア(第二階層) ---------- */
.ec-categoryNaviRole .menu__second-level {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 32px 48px;
    display: flex;
    gap: 48px;
    justify-content: center;
    min-width: 600px;
    max-width: 1280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #e0e0e0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    z-index: 100;
}

/* ホバーで表示 */
.ec-categoryNaviRole .menu__mega:hover .menu__second-level,
.ec-categoryNaviRole .menu__mega:focus-within .menu__second-level {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

/* mouseleave 時の遅延閉じ(誤操作防止) */
.ec-categoryNaviRole .menu__second-level {
    transition-delay: 0.3s;
}
.ec-categoryNaviRole .menu__mega:hover .menu__second-level {
    transition-delay: 0s;
}

/* ---------- 各列(グループ) ---------- */
.ec-categoryNaviRole .menu__second-level > li {
    min-width: 160px;
    max-width: 240px;
    flex: 0 1 auto;
}

/* グループ見出し */
.ec-categoryNaviRole .menu_headding {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px dotted #ccc;
    text-transform: uppercase;
}

.ec-categoryNaviRole .menu_headding a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.ec-categoryNaviRole .menu_headding a:hover {
    opacity: 0.6;
}

/* ---------- 第三階層リンク ---------- */
.ec-categoryNaviRole .menu__third-level {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ec-categoryNaviRole .menu__third-level li {
    margin: 0;
    padding: 0;
}

.ec-categoryNaviRole .menu__third-level a {
    display: block;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.ec-categoryNaviRole .menu__third-level a:hover {
    color: #000;
    padding-left: 8px;
}

/* ホバー時の左マーカー */
.ec-categoryNaviRole .menu__third-level a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
    transition: width 0.2s ease;
}

.ec-categoryNaviRole .menu__third-level a:hover::before {
    width: 4px;
}

/* ---------- 中サイズ画面以下では見出しなしの場合の余白調整 ---------- */
.ec-categoryNaviRole .menu__second-level > li:not(:has(.menu_headding)) .menu__third-level {
    margin-top: 0;
}

/* ---------- スクリーンリーダー用配慮 ---------- */
.ec-categoryNaviRole .menu__mega > a:focus {
    outline: 2px solid #fff;
    outline-offset: -2px;
}

.ec-categoryNaviRole .menu__third-level a:focus {
    outline: 1px solid #000;
    outline-offset: 2px;
}

/* ---------- 画面幅が狭い場合の調整(タブレット境界) ---------- */
@media (max-width: 1200px) {
    .ec-categoryNaviRole .menu__mega > a {
        padding: 0 20px;
        font-size: 13px;
    }
    .ec-categoryNaviRole .menu__second-level {
        padding: 24px 32px;
        gap: 32px;
    }
}

/* ========================================
   ブランドセクション
   ======================================== */

    .ec-categoryRole .ec-categoryRole__list{
    justify-content: space-between;
}

.ec-categoryRole .ec-categoryRole__listItem{
    width: calc(100% / 5 - 60px);
    margin:40px 25px;
}


.ec-categoryRole .ec-categoryRole__list{
    flex-wrap: wrap;
}

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

    .ec-categoryRole .ec-categoryRole__listItem{
        width: calc(100% / 3 - 40px);
        margin: 25px 15px;
    }

}


/* ========================================
   初めてのお客様
   ======================================== */

/**hero section**/

.beginner-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/beginer_new/beginer_hero.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
}

.beginner-hero-inner {
  padding: 2rem;
}

.beginner-hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.beginner-hero-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.beginner-hero-badge {
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .beginner-hero-title {
    font-size: 2.8rem;
  }

  .beginner-hero-badges {
    gap: 3.5rem;
  }  

  .beginner-hero-badge {
    font-size: 3rem;
  }
}


/**intro section 3-pattern**/

.beginner-feature-section {
  padding: 80px 20px;
  background-color: #fff;
}

.beginner-feature-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.beginner-feature-section.reverse .beginner-feature-inner {
  flex-direction: row-reverse;
}

.beginner-feature-image {
  flex: 1 1 50%;
}

.beginner-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.beginner-feature-text {
  flex: 1 1 50%;
}

.beginner-feature-text h2 {
  font-size: 9rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color:#1f1f1f;
}

.beginner-feature-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* SP対応 */

@media screen and (max-width: 768px) {
  .beginner-feature-inner {
    flex-direction: column;
    gap: 30px;
  }

  .beginner-feature-section.reverse .beginner-feature-inner {
    flex-direction: column;
  }

  .beginner-feature-text h2 {
    font-size: 5rem;
  }

  .beginner-feature-text p {
    font-size: 15px;
    text-align: left;
  }

  .beginner-feature-image,
  .beginner-feature-text {
    flex: 1 1 100%;
  }
}

/* separator */

.beginer-separator {
  width: 100%;
  height: 450px; 
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.beginer-separator--01 {
  background-image: url('../img/beginer_new/beginer_para_01.webp');
}

.beginer-separator--02 {
  background-image: url('../img/beginer_new/beginer_para_02.webp');
}

@media screen and (max-width: 768px) {
  .beginer-separator {
    height: 180px;
  }
}

/* FAQ SECTION */

.beginner-faq {
  padding: 80px 20px;
  background-color: #fff;
}
.beginner-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.beginner-faq__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}
.beginner-faq__title_jp{
    font-size:18px;
    font-weight: 700;
    text-align: center;
    margin: 1.5rem auto;
}

.beginner-faq__lead {
  font-size: 16px;
  display: block;
  color: #333;
  text-align: left;
  width: fit-content;
  max-width: 480px;
  margin:3rem auto 5rem auto;
  line-height: 1.7;
}

/* アイテム間隔 */
.beginner-faq__item {
  margin-bottom: 24px;
}

/* 質問ボタン */
.beginner-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  background-color: #000;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}
.beginner-faq__question:hover {
  background-color: #222;
}

/* Q. アイコン部分 */
.beginner-faq__icon {
  margin-right: 8px;
  color: #E91E63;
  font-size: 18px;
  font-weight: 900;
}

/* 矢印アイコン */
.beginner-faq__question::after {
  content: "";
  position: absolute;
  fill:#fff;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 16px;
  background: url('../img/beginer_new/arrow-down-angle.svg') no-repeat center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.4s ease;
}

/* 回答コンテナ（クリップ役） */
.beginner-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin: 10px 0;
  border-radius: 8px;
}

/* 回答内包要素（パディング・装飾） */
.beginner-faq__answer-inner {
  padding: 16px 24px;
  background-color: #FAFAFA;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 開いたときの変化 */
.beginner-faq__item.active .beginner-faq__question::after {
  transform: translateY(-50%) rotate(180deg);
}
.beginner-faq__item.active .beginner-faq__answer {
  max-height: 800px; /* 必要に応じて調整 */
}

/* 回答テキスト */
.beginner-faq__answer-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.beginner-faq__answer-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .beginner-faq {
    padding: 60px 16px;
  }
  .beginner-faq__lead {
    font-size: 15px;
  }
  .beginner-faq__question {
    padding: 14px 20px;
  }
  .beginner-faq__question::after {
    right: 20px;
    width: 14px;
    height: 14px;
  }
  .beginner-faq__answer-inner {
    padding: 14px 20px;
  }

}

/* beginner-voices: お客様の声セクション */

.beginner-voices {
  padding: 80px 20px;
  background: #f9f9f9;
}
.beginner-voices__inner {
  max-width: 980px;
  margin: 0 auto;
}
.beginner-voices__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.beginner-voices__lead{
    font-size:15px;
    font-weight:700;
    text-align: center;
    margin-bottom:32px;
}

/* PC — グリッドレイアウト */
@media screen and (min-width: 769px) {
  .beginner-voices__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .beginner-voices__item {
    flex: 0 1 calc((100% - 48px) / 3); /* 3列 + gap対応 */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
}

/* SP — カルーセル表示 */
@media screen and (max-width: 768px) {
  .beginner-voices__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .beginner-voices__item {
    flex: 0 0 90%;
    scroll-snap-align: start;
  }
}

/* カード共通 */

.beginner-voices__carousel {
  position: relative;
}

.beginner-voices__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px;
}

.beginner-voices__item img{
    width: 100%;
    margin-bottom:20px;
}

.beginner-voices__quote {
  margin: 0;
}
.beginner-voices__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}
.beginner-voices__meta {
  display: block;
  font-size: 12px;
  color: #777;
  text-align: right;
}



/* スクロールバーを目立たせない（SP） */
@media screen and (max-width: 768px) {
  .beginner-voices__list::-webkit-scrollbar {
    display: none;
  }
  .beginner-voices__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}


/* beginner-eval: レーダーチャートセクション */
.beginner-eval {
  padding: 80px 20px;
  background-color: #fff;
}
.beginner-eval__inner {
  max-width: 980px;
  margin: 0 auto;
}
.beginner-eval__title {
  font-weight: 900;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

/* コンテンツ2カラム */
.beginner-eval__content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 画像 */
.beginner-eval__image {
  flex: 1 1 50%;
}
.beginner-eval__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.beginner-eval__text {
  flex: 1 1 50%;
}
.beginner-eval__subtitle {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  padding-left: 12px;
}
.beginner-eval__subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #E91E63;
}
.beginner-eval__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* SP: 1カラム表示 */
@media screen and (max-width: 768px) {
  .beginner-eval__content {
    flex-direction: column;
    gap: 24px;
  }
  .beginner-eval__subtitle {
    font-size: 20px;
    text-align: left;
  }
  .beginner-eval__text p {
    font-size: 15px;
  }
}

/* beginner-why: WHY CHOOSE KINGDOM */
.beginner-why {
  padding: 80px 20px;
  background-color: #f4f4f4;
}
.beginner-why__inner {
  max-width: 780px;
  margin: 0 auto;
}
.beginner-why__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}
.beginner-why__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #E91E63;
  text-align: center;
  margin-bottom: 40px;
}

.beginner-why__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.beginner-why__item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}
.beginner-why__icon {
  flex: 0 0 120px;
  margin: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beginner-why__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.beginner-why__content {
  flex: 1;
  padding: 24px;
  box-sizing: border-box;
}
.beginner-why__item-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.beginner-why__item-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}
.beginner-why__item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* SP: カード内を縦並びに */
@media screen and (max-width: 768px) {
  .beginner-why__items {
    gap: 16px;
  }
  .beginner-why__item {
    flex-direction: column;
    text-align: center;
  }
  .beginner-why__icon {
    margin: 24px auto 16px;
    width: 140px;
  }
  .beginner-why__content {
    padding: 0 24px 24px;
  }
  .beginner-why__item-title {
    font-size: 16px;
  }
  .beginner-why__item-subtitle {
    font-size: 18px;
  }
  .beginner-why__item-text {
    font-size: 14px;
  }
}

/* beginner-cta: CTAセクション */
.beginner-cta {
  padding: 80px 20px;
  background-color: #fff;
}
.beginner-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.beginner-cta__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 16px;
}
.beginner-cta__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.4;
}
.beginner-cta__highlight {
  color: #E91E63;
  font-weight: 700;
}
.beginner-cta__banner {
  margin-bottom: 16px;
}
.beginner-cta__banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.beginner-cta__notice {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #E91E63;
  margin-top: 8px;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .beginner-cta {
    padding: 60px 16px;
  }
  .beginner-cta__title {
    font-size: 28px;
  }
  .beginner-cta__lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .beginner-cta__banner img {
    border-radius: 6px;
  }
  .beginner-cta__notice {
    font-size: 11px;
  }
}

/* beginner-last: 最終ビジュアルセクション */
.beginner-last {
  position: relative;
  width: 100%;
  height: 100vh; /* ヒーローと同じ高さ */
  background: url('../img/beginer_new/beginer_end.webp') no-repeat center center;
  background-size: cover;
}

.beginner-last__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: right;
}

/* キャッチコピー */
.beginner-last__catch {
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.1;
  color: #000;
  margin: 0 0 16px;
}

/* ロゴ */
.beginner-last__logo img {
  width: 160px;
  height: auto;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .beginner-last {
        background-position: left 35% top 50%;
    }


  .beginner-last__catch {
    font-size: 2.4rem;
  }
  .beginner-last__logo img {
    width: 120px;
  }
}

/* ========================================
   個人情報保護方針
   ======================================== */

ul.privacy-sec-list1{
    margin:1.5em 0;
    padding-left:0;
    list-style: none;
} 

ul.privacy-sec-list1 li{
    margin-top:1em;
}

ul.privacy-sec-list2{
    margin:1.5em 0;
    list-style-type: decimal;
}

ul.privacy-sec-list2 li{
    margin-top:0.5em;
}

ul.privacy-sec-list3{
    margin:1.5em 0;
    padding-left:80px;
}

ul.privacy-sec-list3 li{
    margin-top:0.5em;
}

.privacy-sec-list-4{
    list-style: none;
    margin:1.5em 0;
}

.privacy-txt-indent{
    margin:15px 0 0 15px;
}

/* ========================================
   利用ガイド
   ======================================== */

  .tabs {
    margin-top: 50px;
    padding-bottom: 40px;
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
}

  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/2);
    height: 50px;
    border-bottom: 3px solid #000;
    background-color: #eee;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #565656;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  .tab_item:hover {
    opacity: 0.75;
  }
  
  /*ラジオボタンを全て消す*/
  input[name="tab_item"] {
    display: none;
  }
  
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 10px;
    clear: both;
    overflow: hidden;
  }
  
  /*選択されているタブのコンテンツのみを表示*/
  #order:checked ~ #order_content,
  #payment:checked ~ #payment_content,
  #cancel:checked ~ #cancel_content,
  #zeikan:checked ~ #zeikan_content,
  #faq:checked ~ #faq_content {
    display: block;
  }
  
  /*選択されているタブのスタイルを変える*/
  .tabs input:checked + .tab_item {
    background-color: #000;
    color: #fff;
  }

  .pay-caution{
      padding-left:30px;
  }

  .pay-caution li{
    margin-bottom:1em;
  }

  .pay-method h3{
      font-size:1.2em;
      color:#fff;
      font-weight:700;
      background:#000;
      padding:7px 20px;
  }

  .pay-method p{
      line-height: 1.7em;
      margin-left:30px;
  }

  .order-chart{
    padding:0;
}

  .order-chart-item {
    font-size: 1.3rem;
    position: relative;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    list-style: none;
    padding:15px;
}

.order-chart-item::after {
    width: 15px;
    height: 15px;
    content: "";
    position: absolute;
    bottom: -8px;
    right: 47%;
    margin: 0 auto;
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.order-chart-item:last-child::after{
    content:normal;
}

.order-chart-item h4{
    font-weight:600;
    font-size:1.3em;
}

/* 税関対応*/

ul.guide_zeikan_taiou{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

ul.guide_zeikan_taiou li{
    width: 100%;
    border: #337ab7 solid 1px;
    margin-bottom:20px;
}

.guide_corresp{
    background: #337ab7;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

ul.guide_zeikan_taiou li p{
    padding:10px;
}


  @media (min-width: 768px){

        .order-chart{
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .order-chart-item {
            max-width: 49%;
            -ms-flex-preferred-size: 49%;
            flex-basis: 49%;
            margin-bottom: 10px;
            padding: 10px;
            border: 2px solid #ccc;
        }

        .order-chart-item::after {
            bottom: 44%;
            right: -9px;
            border-bottom: 2px solid #ccc;
            border-right: 2px solid #ccc;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

        ul.guide_zeikan_taiou{
            flex-direction: row;
            justify-content: space-between;
        }
        
        ul.guide_zeikan_taiou li{

            width: calc(50% - 10px);

        }
        
}
  

.faq-box label{
	background: #eee;
	display: block;
	padding: 10px;
	margin-bottom: 5px;
    cursor: pointer;
    font-size:1em;
}

.faq-arrow{
    position: relative;
}

.faq-box input[type="checkbox"].on-off,
.faq-box input[type="checkbox"].on-off +div{
	display: none;
}

.faq-box input[type="checkbox"].on-off:checked +div{
	display: block;
}

.faq-box div{
	margin: 0 0 20px;
}

.answer-box{
    padding:20px;
}


/* ========================================
   メールが届かないお客様
   ======================================== */

 .domain-copy-box{
    margin-top:50px;
    margin-bottom:30px;
    text-align:center;
 }

 .domain-setting-list{
    margin: 1.5em 0;
    line-height:1.8em;
}

 @media only screen and (min-width: 768px){

    .mail-setting-section{
        padding-left:40px;
    }

    .domain-setting-list{
        padding-left:40px;
        margin: 1.5em 0;
        line-height:1.8em;
    }

    .domain-copy-box{
        margin-top:50px;
        margin-bottom:30px;
        padding-left:40px;
        text-align:left;
    }

}

/* ========================================
   商品詳細ページ
   ======================================== */

.ec-productRole{
    margin-top:30px;
}

.ec-productRole .ec-productRole__description{
    text-align: center;
    display: flex;
    flex-direction: column;
}

.ec-productRole__description img{
    max-width:510px;
    margin: auto;
    pointer-events: none;
  }

  .ec-productRole .ec-productRole__title .ec-headingTitle{
    font-size:1.3em;
    font-weight:600;
}

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

.ec-favorite__btn{
    width:100%;
}

.ec-productRole .ec-productRole__btn{
    width:100%;
}
.ec-blockBtn--cancel,.ec-blockBtn--action{
    width:98%;
}

@media only screen and (max-width: 768px){
    .ec-productRole__btn_box{
        flex-direction: column;;
    }

    .ec-blockBtn--cancel,.ec-blockBtn--action{
        width:100%;
    }
}

/* ========================================
   商品ページサイズテーブル
   ======================================== */

 .ec-productRole__description table{
     width:100%;
     margin:20px 0;
 }

.ec-productRole__description td{
    font-size:14px;
    padding:10px 5px;
    border-style:solid;
    border-width:1px;
    overflow:hidden;
    word-break:normal;
    border-color:black;
}

.ec-productRole__description th{
    font-size:14px;
    font-weight:normal;
    padding:10px 5px;
    border-style:solid;
    border-width:1px;
    overflow:hidden;
    word-break:normal;
    border-color:black;
    background-color:#c0c0c0;
    border-color:#343434;
    text-align:center;
    vertical-align:top
}

.ec-productRole__description table tr td:nth-child(1) {
    background-color:#efefef;
    border-color:#343434;
    text-align:center;
    vertical-align:top
}
