@charset "UTF-8";
@font-face {
  font-family: "FontAwesome";
  src: url("../../fonts/vendor/fontawesome/fontawesome-webfont.eot");
  src: url("../../fonts/vendor/fontawesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/vendor/fontawesome/fontawesome-webfont.woff") format("woff"), url("../../fonts/vendor/fontawesome/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/vendor/fontawesome5/fa-regular-400.eot");
  src: url("../../fonts/vendor/fontawesome5/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/vendor/fontawesome5/fa-regular-400.woff2") format("woff2"), url("../../fonts/vendor/fontawesome5/fa-regular-400.woff") format("woff"), url("../../fonts/vendor/fontawesome5/fa-regular-400.ttf") format("truetype"), url("../../fonts/vendor/fontawesome5/fa-regular-400.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/vendor/fontawesome5/fa-solid-900.eot");
  src: url("../../fonts/vendor/fontawesome5/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../fonts/vendor/fontawesome5/fa-solid-900.woff2") format("woff2"), url("../../fonts/vendor/fontawesome5/fa-solid-900.woff") format("woff"), url("../../fonts/vendor/fontawesome5/fa-solid-900.ttf") format("truetype"), url("../../fonts/vendor/fontawesome5/fa-solid-900.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/vendor/fontawesome5/fa-brands-400.eot");
  src: url("../../fonts/vendor/fontawesome5/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/vendor/fontawesome5/fa-brands-400.woff2") format("woff2"), url("../../fonts/vendor/fontawesome5/fa-brands-400.woff") format("woff"), url("../../fonts/vendor/fontawesome5/fa-brands-400.ttf") format("truetype"), url("../../fonts/vendor/fontawesome5/fa-brands-400.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/vendor/material-design-icons/MaterialIcons-Regular.eot");
  /* For IE6-8 */
  src: url("../../fonts/vendor/material-design-icons/MaterialIcons-Regular.woff2") format("woff2"), url("../../fonts/vendor/material-design-icons/MaterialIcons-Regular.woff") format("woff"), url("../../fonts/vendor/material-design-icons/MaterialIcons-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "dripicons-v2";
  src: url("../../fonts/vendor/material-design-icons/dripicons-v2.eot");
  src: url("../../fonts/vendor/material-design-icons/dripicons-v2.eot?#iefix") format("embedded-opentype"), url("../../fonts/vendor/material-design-icons/dripicons-v2.woff") format("woff"), url("../../fonts/vendor/material-design-icons/dripicons-v2.ttf") format("truetype"), url("../../fonts/vendor/material-design-icons/dripicons-v2.svg#dripicons-v2") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "LigatureSymbols";
  src: url("../../fonts/vendor/ligature-symbols/LigatureSymbols-2.11.eot");
  src: url("../../fonts/vendor/ligature-symbols/LigatureSymbols-2.11.eot?#iefix") format("embedded-opentype"), url("../../fonts/vendor/ligature-symbols/LigatureSymbols-2.11.woff") format("woff"), url("../../fonts/vendor/ligature-symbols/LigatureSymbols-2.11.ttf") format("truetype"), url("../../fonts/vendor/ligature-symbols/LigatureSymbols-2.11.svg#LigatureSymbols") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ==============================================================================================
   基本スタイルのCSSコーディングルール（classの命名規則、スタイルの記述方法）
   ==============================================================================================

   ※カスタムCSSで基本スタイルの一部を変更・上書きされる際に、ご参考ください。

    ■ クラスの種類

        （1）親要素クラス（頭に何も付かないもの）

            CSS記述の際に起点となるルート要素のクラス。
            フリースペース等にHTMLを記述される際、下記のクラス名の使用は避けてください。

            .header ・・・・・ body上部のブロック要素
                .gnav-pc ・・・・・ device-width 600px以上で表示されるグローバルナビ（ヘッダーメニュー）
                .gnav-sp ・・・・・ device-width 599px以下で表示されるグローバルナビ（ドロワーメニュー）

            .wrapper ・・・・・ asideとmainの外側にあるbody中部のブロック要素
                .main ・・・・・ メインコンテンツ（ページ別に .main--* のバリエーションがあります）
                .aside ・・・・・ 左サイドメニュー（device-width 599px以下では .main の下部に表示されます）

            .footer ・・・・・ body下部のブロック要素

        （2）子要素クラス（頭に .__ （アンダーバー2つ）が付くもの）

            必ずいずれかの親要素の内側（下層）にある子要素専用のクラス。
            クラス名の重複によるスタイルの干渉を起こさないように、必ず親要素から順に入れ子構造（スベース区切り）で記述しています。
            ※別の親要素の下層に、同じクラス名が複数存在する可能性があるため、子要素だけのスタイル指定は避けてください。

            .__name
            .__photo
            .__title
            .__description
            など

            ● 記述例

                商品詳細ページのメインコンテンツ > 商品情報の段落 > 商品名
                ○ .main.main--product-detail .__product .__name

                サイドメニュー > カテゴリ > カテゴリ名
                ○ .aside .__block.__block--category .__name

                子要素だけの指定をすると、別の親要素の子要素に意図しない影響が出てしまいます
                × .__name

        （3）付加クラス（頭に .__is- がつくもの。クラス名の後ろに -- （ハイフン2つ）で連結されるもの）

            要素の元のスタイルに追加・上書きするためのクラス

            ● 状態によってスタイルを追加・上書きするためのクラス

                .__is-active
                .__is-hidden
                など

            ● バリエーションの違いによってスタイルを追加・上書きするためのクラス

                .main--product-detail
                .__block--category
                など

            ● 記述例

                // .__photo非表示の写真要素

                .main .__product .__photo {
                    // 元のスタイル
                }
                .main .__product .__photo.__is-hidden {
                    display: none; // 非表示に
                }

                // .__block の別バリエーションを定義

                .aside .__block {
                    width: 100%;
                    background-color: #eee;
                }
                .aside .__block.__block--category {
                    background-color: #fff; // 背景色を上書き
                    border: 1px solid #ccc; // ボーダーを追加
                }


        （4）コンポーネントクラス（頭に .c- や .p- が付くもの）

            サイト内で繰り返し利用している、共通のスタイルのパーツ要素。 
            スタイルを変更すると、クラスが付与されているすべての要素に影響しますのでご注意ください。   

            .c-* ・・・・・ コンポーネント。ボタンなどの最小単位のスタイルが定義されたもの
            .p-* ・・・・・ プロジェクト。内側に複数の子要素を含み、まとめてスタイルが定義されたもの

            ● 例

                .c-button ・・・・・ ボタン
                .p-product-block ・・・・・ 商品一覧のブロック表示（内側に商品画像、商品名、商品価格などの要素を含む）
                など

    ■ ブレイクポイント

        メディアクエリのブレイクポイントは下記で設定しています。

               〜  599px  スマートフォン（縦）向け
        600px  〜  959px  スマートフォン（横）・タブレット（縦）向け
        960px  〜 1279px  タブレット（横）・PC（幅狭）向け
        1280px 〜         PC（幅広）向け
*/
/* ==============================================================================================
   FOUNDATION
   ブラウザのデフォルトスタイルの初期化や、プロジェクトにおける基本的なスタイルを定義
   ============================================================================================== */
/* --------------------------------------------------------------------------
    リセットCSS  Normalize.css
   -------------------------------------------------------------------------- */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   ベースCSS  base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html, body {
  color: #333;
  line-height: 1.5;
  font-family: sans-serif;
  font-size: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 599px) {
  html, body {
    font-size: 13px;
  }
}

img {
  max-width: 100%;
}

a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

table {
  border-collapse: collapse;
}
table th {
  text-align: left;
  word-break: break-all;
}
table td {
  word-break: break-all;
}

/* ==============================================================================================
   LAYOUT
   ページを構成するヘッダーやメインのコンテンツエリア、サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイル
   ============================================================================================== */
/* --------------------------------------------------------------------------
   ヘッダー  .header
   -------------------------------------------------------------------------- */
.header {
  background-color: #fff;
}
.header .__banner {
  margin: 0 auto;
  display: table;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .header .__banner {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1279px) {
  .header .__banner {
    max-width: 960px;
  }
}
.header .__banner .__wrap {
  display: table-row;
}
.header .__banner .__wrap a.__logo {
  display: table-cell;
  vertical-align: middle;
  padding: 0.5em;
}
.header .__banner .__wrap a.__logo img {
  vertical-align: middle;
}
.header .__banner .__wrap a.__logo h1 {
  display: inline;
  margin: 0;
  font-size: inherit;
}
@media screen and (min-width: 600px) {
  .header .__banner .__wrap .__toggle-open,
.header .__banner .__wrap .__view-cart {
    display: none;
  }
  .header .__banner .__wrap a.__logo img {
    max-height: 4em;
  }
  .header .__banner .__wrap .__login {
    padding: 0.25em 0.5em 0.25em 1em;
    display: table-cell;
    text-align: right;
    vertical-align: middle;
  }
  .header .__banner .__wrap .__login .__block .__heading {
    display: none;
  }
  .header .__banner .__wrap .__login .__block .__body ul.__menu {
    list-style-type: none;
    display: inline-block;
    padding: 0.25em 0 0.25em 0.25em;
    margin: 0;
  }
  .header .__banner .__wrap .__login .__block .__body ul.__menu li {
    display: inline-block;
    margin-left: 1em;
  }
  .header .__banner .__wrap .__login .__block .__body ul.__menu li a:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 0.3em;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-link {
    display: inline-block;
    padding: 0.25em 0;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-link .__link {
    color: #fff;
    background-color: #FA8072;
    font-weight: bold;
    padding-left: 3.5em;
    padding-right: 3.5em;
    border-radius: 2em;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form {
    padding: 0.25em 0;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form {
    display: inline-block;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form dl {
    display: inline-block;
    margin: 0;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form dl dt {
    display: none;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form dl dd {
    display: inline-block;
    margin: 0;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form dl dd input {
    width: 10em;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form .__submit {
    display: inline-block;
    padding: 0.25em 0;
  }
  .header .__banner .__wrap .__login.__is-guest .__block .__body .__login-form form .__submit .__button {
    background-color: #FA8072;
    color: #fff;
    font-weight: bold;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__message {
    font-size: 0.85em;
    padding: 0.25em 0;
    display: inline-block;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__message .__name {
    display: inline-block;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__message .__name span {
    margin-right: 0.3em;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__message .__group {
    display: inline-block;
    margin-left: 0.5em;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__message .__group span {
    display: inline-block;
    font-size: 0.8em;
    padding: 0 0.5em;
    vertical-align: middle;
    border: 1px solid #ccc;
    background-color: #fff;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__point {
    font-size: 0.85em;
    display: inline-block;
    margin: 0.25em 0 0.25em 1em;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__point dl {
    margin: 0;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__point dl dt, .header .__banner .__wrap .__login.__is-member .__block .__body .__point dl dd {
    display: inline-block;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__point dl dt:after {
    content: ":";
    margin-right: 0.3em;
  }
  .header .__banner .__wrap .__login.__is-member .__block .__body .__point dl dd {
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  .header .__banner .__wrap .__toggle-open {
    display: table-cell;
    width: 3.5em;
  }
  .header .__banner .__wrap .__toggle-open label {
    display: block;
    text-align: center;
    width: 3.5em;
    height: 3.5em;
    padding: 0.5em;
  }
  .header .__banner .__wrap .__toggle-open label span:before {
    font-size: 2.5em;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
    content: "\e5d2";
  }
  .header .__banner .__wrap a.__logo {
    text-align: center;
    height: 3.5em;
  }
  .header .__banner .__wrap a.__logo img {
    line-height: 1;
    max-height: 2.5em;
  }
  .header .__banner .__wrap .__view-cart {
    display: table-cell;
    width: 3.5em;
    height: 3.5em;
  }
  .header .__banner .__wrap .__view-cart a {
    display: block;
    text-align: center;
    width: 3.5em;
    height: 3.5em;
    padding: 0.5em;
    color: #333;
    position: relative;
  }
  .header .__banner .__wrap .__view-cart a:before {
    font-size: 2.5em;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
    content: "\e8cc";
  }
  .header .__banner .__wrap .__view-cart a span.__counter {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 0 0.4em;
    font-size: 0.85em;
    background-color: #2ab27b;
    color: #fff;
    border-radius: 2em;
  }
  .header .__banner .__wrap .__view-cart a:hover {
    text-decoration: none;
  }
  .header .__banner .__wrap .__login {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   グローバルナビ  .gnav-pc .gnav-sp
   -------------------------------------------------------------------------- */
/* グローバルナビ（device-width 600px以上）
   ////////////////////////////////////////////////////////////////// */
.gnav-pc {
  border-bottom: 1px solid #FA8072;
}
@media (max-width: 599px) {
  .gnav-pc {
    display: none !important;
  }
}
.gnav-pc .__menu {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .gnav-pc .__menu {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1279px) {
  .gnav-pc .__menu {
    max-width: 960px;
  }
}
.gnav-pc .__menu.__menu--default ul li.__item--quickorder a span {
  display: inline-block;
}
.gnav-pc .__menu.__menu--default, .gnav-pc .__menu.__menu--custom {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.gnav-pc .__menu.__menu--default ul, .gnav-pc .__menu.__menu--custom ul {
  display: table-row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.gnav-pc .__menu.__menu--default ul li, .gnav-pc .__menu.__menu--custom ul li {
  display: table-cell;
  vertical-align: middle;
}
.gnav-pc .__menu.__menu--default ul li.__is-active, .gnav-pc .__menu.__menu--custom ul li.__is-active {
  font-weight: bold;
}
.gnav-pc .__menu.__menu--default ul li a, .gnav-pc .__menu.__menu--custom ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  height: 100%;
  padding: 0.75em 0;
  color: #333;
}
.gnav-pc .__menu.__menu--default ul li a:hover, .gnav-pc .__menu.__menu--custom ul li a:hover {
  text-decoration: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 959px) {
  .gnav-pc .__menu.__menu--default ul li:first-child, .gnav-pc .__menu.__menu--custom ul li:first-child {
    border-left: none;
  }
  .gnav-pc .__menu.__menu--default ul li:last-child, .gnav-pc .__menu.__menu--custom ul li:last-child {
    border-right: none;
  }
}

/* ドロワーメニュー（device-width 599px以下）
   ////////////////////////////////////////////////////////////////// */
@media (min-width: 600px) {
  .gnav-sp {
    display: none !important;
  }
}
.gnav-sp .__drawer {
  position: relative;
}
.gnav-sp .__drawer .__menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.2s ease-in-out;
  transform: translateX(-105%);
  padding-top: 3.5em;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.gnav-sp .__drawer .__menu .__toggle-close {
  position: absolute;
  width: 100%;
  height: 3.5em;
  top: 0;
  left: 0;
  z-index: 99999;
  border-bottom: 1px solid #ccc;
}
.gnav-sp .__drawer .__menu .__toggle-close label {
  display: block;
  padding: 0.5em;
  line-height: 1;
  text-align: center;
}
.gnav-sp .__drawer .__menu .__toggle-close label span:before {
  font-size: 2.5em;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5cd";
}
.gnav-sp .__drawer .__menu .__content {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.gnav-sp .__drawer .__menu .__content .__heading {
  color: #333;
  background-color: #f2f2f2;
  padding: 0.75em 1em;
  font-weight: bold;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message {
  padding: 0.75em 1em;
  border-bottom: 1px solid #e6e6e6;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__name span {
  margin-right: 0.5em;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__group {
  margin-top: 0.5em;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__group span {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__point {
  font-size: 0.85em;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__point dl {
  margin: 0.5em 0 0 0;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__point dl dt, .gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__point dl dd {
  display: inline-block;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__point dl dt:after {
  content: ":";
  margin-right: 0.3em;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__message .__point dl dd {
  margin: 0;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item {
  display: block;
  position: relative;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item a,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item a {
  border-top: 1px dotted #e6e6e6;
  display: block;
  text-decoration: none;
  padding: 0.3em 0;
  color: #333;
  padding: 0.75em 0 0.75em 1em;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item ul,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-left: 1em;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item.__item--has-children > a,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item.__item--has-children > a {
  padding-right: 3em;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item.__item--has-children span.__js-toggle,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item.__item--has-children span.__js-toggle {
  display: inline-block;
  position: absolute;
  text-align: center;
  right: 0;
  top: 1px;
  width: 3em;
  padding: 0.75em 0;
  line-height: 1;
  vertical-align: middle;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item.__item--has-children span.__js-toggle:before,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item.__item--has-children span.__js-toggle:before {
  font-size: 1.5em;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5c5";
  vertical-align: middle;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree li.__item.__item--has-children ul,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu li.__item.__item--has-children ul {
  display: none;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree > li.__item,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu > li.__item {
  border-bottom: 1px solid #e6e6e6;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree > li.__item > a,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu > li.__item > a {
  border-top: none;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree > li.__item:last-child,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu > li.__item:last-child {
  border-bottom: none;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--category .__body ul.__tree > li.__item:last-child > a,
.gnav-sp .__drawer .__menu .__content .__member.__is-member .__body ul.__sub-menu > li.__item:last-child > a {
  border-top: none;
}
.gnav-sp .__drawer .__menu .__content .__search.__search--keyword .__body {
  padding: 0.75em 1em;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-guest ul,
.gnav-sp .__drawer .__menu .__content .__search.__search--feature ul, .gnav-sp .__drawer .__menu .__content.__content--default .__page ul, .gnav-sp .__drawer .__menu .__content.__content--custom .__page ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-guest ul li,
.gnav-sp .__drawer .__menu .__content .__search.__search--feature ul li, .gnav-sp .__drawer .__menu .__content.__content--default .__page ul li, .gnav-sp .__drawer .__menu .__content.__content--custom .__page ul li {
  display: block;
  border-bottom: 1px solid #e6e6e6;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-guest ul li a,
.gnav-sp .__drawer .__menu .__content .__search.__search--feature ul li a, .gnav-sp .__drawer .__menu .__content.__content--default .__page ul li a, .gnav-sp .__drawer .__menu .__content.__content--custom .__page ul li a {
  position: relative;
  display: block;
  color: #333;
  padding: 0.75em 1.5rem 0.75em 1rem;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-guest ul li a:hover,
.gnav-sp .__drawer .__menu .__content .__search.__search--feature ul li a:hover, .gnav-sp .__drawer .__menu .__content.__content--default .__page ul li a:hover, .gnav-sp .__drawer .__menu .__content.__content--custom .__page ul li a:hover {
  text-decoration: none;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-guest ul li a:after,
.gnav-sp .__drawer .__menu .__content .__search.__search--feature ul li a:after, .gnav-sp .__drawer .__menu .__content.__content--default .__page ul li a:after, .gnav-sp .__drawer .__menu .__content.__content--custom .__page ul li a:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.5em;
  color: #ccc;
}
.gnav-sp .__drawer .__menu .__content .__member.__is-guest ul li:last-child,
.gnav-sp .__drawer .__menu .__content .__search.__search--feature ul li:last-child, .gnav-sp .__drawer .__menu .__content.__content--default .__page ul li:last-child, .gnav-sp .__drawer .__menu .__content.__content--custom .__page ul li:last-child {
  border-bottom: none;
}
.gnav-sp .__drawer .__check {
  display: none;
}
.gnav-sp .__drawer .__check:checked ~ .__menu {
  transform: translateX(0%);
}

/* --------------------------------------------------------------------------
   中段メインエリア  .wrapper
   -------------------------------------------------------------------------- */
/* 共通
   ////////////////////////////////////////////////////////////////// */
.wrapper .__inner {
  margin: 0 auto;
}
.wrapper .__inner:before, .wrapper .__inner:after {
  content: " ";
  display: table;
}
.wrapper .__inner:after {
  clear: both;
}
@media screen and (min-width: 1280px) {
  .wrapper .__inner {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1279px) {
  .wrapper .__inner {
    max-width: 960px;
  }
}
@media screen and (max-width: 959px) {
  .wrapper .__inner .main,
.wrapper .__inner .aside {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 960px) {
  .wrapper .__inner .main,
.wrapper .__inner .aside {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
.wrapper .__inner .__content-home-top {
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .wrapper .__inner .__content-home-top {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 960px) {
  .wrapper .__inner .__content-home-top {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 959px) {
  .wrapper.wrapper--home .__inner .main,
.wrapper.wrapper--home .__inner .aside {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* 2カラム用
   ////////////////////////////////////////////////////////////////// */
.wrapper.wrapper--column-2 .__inner .main {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  position: relative;
  min-height: 1px;
  position: relative;
  min-height: 1px;
}
@media (min-width: 960px) {
  .wrapper.wrapper--column-2 .__inner .main {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1280px) {
  .wrapper.wrapper--column-2 .__inner .main {
    float: left;
    width: 79.1666666667%;
  }
}
@media screen and (min-width: 960px) {
  .wrapper.wrapper--column-2 .__inner .main {
    float: right;
    padding-left: 1em;
  }
}
.wrapper.wrapper--column-2 .__inner .aside {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  position: relative;
  min-height: 1px;
  position: relative;
  min-height: 1px;
}
@media (min-width: 960px) {
  .wrapper.wrapper--column-2 .__inner .aside {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .wrapper.wrapper--column-2 .__inner .aside {
    float: left;
    width: 20.8333333333%;
  }
}
@media screen and (min-width: 960px) {
  .wrapper.wrapper--column-2 .__inner .aside {
    float: left;
    padding-right: 1em;
  }
}

/* 1カラム用
   ////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 1280px) {
  .wrapper.wrapper--column-1 .__inner {
    max-width: 960px;
  }
}

/* ヘッダー・フッターなし、メインコンテンツのみのレイアウト用
   ////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 1280px) {
  .wrapper.wrapper--column-plain .__inner {
    max-width: 960px;
  }
}
@media screen and (min-width: 600px) {
  .wrapper.wrapper--column-plain .__inner .main:not(.main--page-detail-free) {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

/* カスタム背景色・イメージ適用時
   ////////////////////////////////////////////////////////////////// */
.wrapper.wrapper--bg .__inner {
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .wrapper.wrapper--bg .__inner {
    padding-right: 1em;
    padding-left: 1em;
  }
}

/* --------------------------------------------------------------------------
   メインコンテンツ  .main
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   サブメニュー  .aside
   -------------------------------------------------------------------------- */
@media screen and (min-width: 960px) {
  .aside section.__block:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.aside section.__block .__heading.__heading--default, .aside section.__block .__heading.__heading--custom {
  font-weight: bold;
  font-size: 1.3em;
  color: #333;
}
@media screen and (min-width: 960px) {
  .aside section.__block .__heading.__heading--default, .aside section.__block .__heading.__heading--custom {
    border-bottom: 1px solid #FA8072;
    padding: 0.5em 0;
    padding: 0.5rem 0;
    margin: 0 0 0.5em 0;
    margin: 0 0 0.5rem 0;
  }
}
@media screen and (max-width: 959px) {
  .aside section.__block .__heading.__heading--default, .aside section.__block .__heading.__heading--custom {
    border-top: 1px solid #FA8072;
    padding: 0.5em 1em;
    padding: 0.5rem 1rem;
    margin: 0;
  }
}
.aside section.__block .__heading.__heading--img {
  margin: 0;
}
.aside section.__block .__heading.__heading--img img {
  vertical-align: middle;
}
.aside section.__block.__block--cart .__body, .aside section.__block.__block--search .__body {
  padding: 1em;
}
.aside section.__block.__block--login .__body {
  padding: 1em 0.5em;
}
.aside section.__block.__block--login .__body ul.__menu {
  list-style-type: none;
  padding: 0;
  margin: 0.5em 0 0 0;
}
.aside section.__block.__block--login .__body ul.__menu li {
  display: block;
  text-align: center;
  padding: 0.15em 0;
}
.aside section.__block.__block--login .__body ul.__menu li a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.aside section.__block.__block--login.__is-guest .__body .__login-link {
  text-align: center;
  padding: 0.5em 0;
}
.aside section.__block.__block--login.__is-guest .__body .__login-link .__link {
  color: #fff;
  background-color: #FA8072;
  font-weight: bold;
  padding-left: 3.5em;
  padding-right: 3.5em;
  border-radius: 2em;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form dl {
  margin: 0.3em 0;
  text-align: center;
  letter-spacing: -0.5em;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form dl dt, .aside section.__block.__block--login.__is-guest .__body .__login-form dl dd {
  letter-spacing: normal;
  display: inline-block;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form dl dt {
  width: 45%;
  max-width: 8em;
  padding-right: 0.5em;
  text-align: left;
  white-space: nowrap;
  font-size: 0.9em;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form dl dd {
  width: 55%;
  max-width: 12em;
  margin: 0;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form dl dd input {
  width: 100%;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form .__submit {
  text-align: center;
  padding: 0.5em 0;
}
.aside section.__block.__block--login.__is-guest .__body .__login-form .__submit .__button {
  background-color: #FA8072;
  color: #fff;
  padding-left: 3.5em;
  padding-right: 3.5em;
  border-radius: 2em;
  font-weight: bold;
}
.aside section.__block.__block--login.__is-member .__message .__name {
  display: inline;
  margin-right: 0.5em;
}
.aside section.__block.__block--login.__is-member .__message .__name span {
  margin-right: 0.3em;
}
.aside section.__block.__block--login.__is-member .__message .__group {
  display: inline-block;
}
.aside section.__block.__block--login.__is-member .__message .__group span {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
}
.aside section.__block.__block--login.__is-member .__point {
  font-size: 0.85em;
}
.aside section.__block.__block--login.__is-member .__point dl {
  margin: 0.5em 0 0 0;
}
.aside section.__block.__block--login.__is-member .__point dl dt, .aside section.__block.__block--login.__is-member .__point dl dd {
  display: inline-block;
}
.aside section.__block.__block--login.__is-member .__point dl dt:after {
  content: ":";
  margin-right: 0.3em;
}
.aside section.__block.__block--login.__is-member .__point dl dd {
  margin: 0;
}
.aside section.__block.__block--cart .__body .__total {
  text-align: center;
  padding: 0.5em 0;
}
.aside section.__block.__block--cart .__body .__total .__count {
  display: inline-block;
}
.aside section.__block.__block--cart .__body .__total .__count span.__num {
  font-size: 1.15em;
  font-weight: bold;
  margin-right: 2px;
}
.aside section.__block.__block--cart .__body .__total dl.__price {
  display: inline-block;
  margin: 0 0 0 1em;
}
.aside section.__block.__block--cart .__body .__total dl.__price dt, .aside section.__block.__block--cart .__body .__total dl.__price dd {
  display: inline-block;
}
.aside section.__block.__block--cart .__body .__total dl.__price dt {
  margin-right: 2px;
}
.aside section.__block.__block--cart .__body .__total dl.__price dd {
  margin: 0;
  font-size: 1.15em;
  font-weight: bold;
}
.aside section.__block.__block--cart .__body .__to-cart {
  text-align: center;
  margin-top: 0.5em;
}
.aside section.__block.__block--cart .__body .__to-cart a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.aside section.__block.__block--cart.__is-empty .__body {
  text-align: center;
}
.aside section.__block.__block--search .__body {
  text-align: center;
}
@media (min-width: 960px) {
  .aside section.__block.__block--search .__body input {
    width: 7em;
  }
}
.aside section.__block.__block--calendar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.aside section.__block.__block--calendar ul:before, .aside section.__block.__block--calendar ul:after {
  content: " ";
  display: table;
}
.aside section.__block.__block--calendar ul:after {
  clear: both;
}
.aside section.__block.__block--calendar ul li {
  padding: 0 1em;
  margin: 1em 0;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .aside section.__block.__block--calendar ul li {
    float: left;
    width: 50%;
  }
}
.aside section.__block.__block--calendar ul li table.cal {
  width: 100%;
}
.aside section.__block.__block--calendar ul li table.cal thead th {
  text-align: center;
  padding: 0.5em 0;
}
.aside section.__block.__block--calendar ul li table.cal tbody th,
.aside section.__block.__block--calendar ul li table.cal tbody td {
  text-align: center;
  width: 14.27%;
}
.aside section.__block.__block--calendar ul li table.cal tbody th {
  background-color: #f2f2f2;
}
.aside section.__block.__block--calendar ul li table.cal tbody td {
  padding: 0;
  border: 1px solid #fff;
}
.aside section.__block.__block--calendar ul li table.cal tbody td span {
  display: block;
  width: 100%;
  height: 100%;
}
.aside section.__block.__block--calendar ul li table.cal tbody td span.cal-week-close {
  background-color: #ddd;
}
.aside section.__block.__block--category .__body ul.__tree {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.aside section.__block.__block--category .__body ul.__tree li.__item {
  display: block;
  position: relative;
}
.aside section.__block.__block--category .__body ul.__tree li.__item a {
  border-top: 1px dotted #e6e6e6;
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .aside section.__block.__block--category .__body ul.__tree li.__item a {
    padding: 0.3em 0;
  }
}
@media screen and (max-width: 959px) and (min-width: 600px) {
  .aside section.__block.__block--category .__body ul.__tree li.__item a {
    padding: 0.5em 0 0.5em 1em;
  }
}
@media screen and (max-width: 599px) {
  .aside section.__block.__block--category .__body ul.__tree li.__item a {
    padding: 0.75em 0 0.75em 1em;
  }
}
.aside section.__block.__block--category .__body ul.__tree li.__item ul {
  padding-left: 1em;
}
.aside section.__block.__block--category .__body ul.__tree li.__item.__item--has-children > a {
  padding-right: 3em;
}
.aside section.__block.__block--category .__body ul.__tree li.__item.__item--has-children span.__js-toggle {
  display: inline-block;
  position: absolute;
  text-align: center;
  right: 0;
  top: 1px;
  padding: 0.3em 0;
  width: 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--category .__body ul.__tree li.__item.__item--has-children span.__js-toggle {
    padding: 0.5em 0;
    width: 3em;
  }
}
@media screen and (max-width: 599px) {
  .aside section.__block.__block--category .__body ul.__tree li.__item.__item--has-children span.__js-toggle {
    padding: 0.75em 0;
  }
}
.aside section.__block.__block--category .__body ul.__tree li.__item.__item--has-children span.__js-toggle:before {
  font-size: 1.5em;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5c5";
  vertical-align: middle;
}
.aside section.__block.__block--category .__body ul.__tree li.__item.__item--has-children ul {
  display: none;
}
.aside section.__block.__block--category .__body ul.__tree li.__item.__item--img > a {
  padding: 0;
  border-bottom: none;
}
.aside section.__block.__block--category .__body ul.__tree li.__item.__item--img > a img {
  vertical-align: middle;
}
.aside section.__block.__block--category .__body ul.__tree > li.__item {
  border-top: 1px solid #e6e6e6;
}
@media screen and (min-width: 960px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item {
    margin-top: 0.5em;
  }
  .aside section.__block.__block--category .__body ul.__tree > li.__item:first-child {
    border-top: none;
    margin-top: 0;
  }
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item:last-child {
    border-bottom: 1px solid #e6e6e6;
  }
}
.aside section.__block.__block--category .__body ul.__tree > li.__item > a {
  border-top: none;
}
@media screen and (min-width: 960px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item > a {
    padding: 0.5em 0;
  }
}
.aside section.__block.__block--category .__body ul.__tree > li.__item:first-child > a {
  border-top: none;
}
.aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children > span.__js-toggle {
  display: none;
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children > span.__js-toggle {
    display: inline-block;
  }
}
.aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children > ul {
  display: block;
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--category .__body ul.__tree > li.__item.__item--has-children > ul {
    display: none;
  }
}
.aside section.__block.__block--feature .__body ul, .aside section.__block.__block--page .__body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--feature .__body ul, .aside section.__block.__block--page .__body ul {
    border-top: 1px solid #e6e6e6;
  }
}
.aside section.__block.__block--feature .__body ul li.__item, .aside section.__block.__block--page .__body ul li.__item {
  display: block;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 960px) {
  .aside section.__block.__block--feature .__body ul li.__item:last-child, .aside section.__block.__block--page .__body ul li.__item:last-child {
    border-bottom: none;
  }
}
.aside section.__block.__block--feature .__body ul li.__item a, .aside section.__block.__block--page .__body ul li.__item a {
  display: block;
  padding: 0.5em 0;
}
.aside section.__block.__block--feature .__body ul li.__item.__item--img > a, .aside section.__block.__block--page .__body ul li.__item.__item--img > a {
  padding: 0;
  border-bottom: none;
}
.aside section.__block.__block--feature .__body ul li.__item.__item--img > a img, .aside section.__block.__block--page .__body ul li.__item.__item--img > a img {
  vertical-align: middle;
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--feature .__body ul li.__item a:hover, .aside section.__block.__block--page .__body ul li.__item a:hover {
    text-decoration: none;
  }
  .aside section.__block.__block--feature .__body ul li.__item.__item--text a, .aside section.__block.__block--page .__body ul li.__item.__item--text a {
    position: relative;
    padding: 0.75em 1.5em 0.75em 1em;
  }
  .aside section.__block.__block--feature .__body ul li.__item.__item--text a:after, .aside section.__block.__block--page .__body ul li.__item.__item--text a:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -0.5em;
    color: #ccc;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .aside section.__block.__block--feature .__body ul, .aside section.__block.__block--page .__body ul {
    letter-spacing: -0.5em;
  }
  .aside section.__block.__block--feature .__body ul li.__item, .aside section.__block.__block--page .__body ul li.__item {
    letter-spacing: normal;
    display: inline-block;
    width: 50%;
  }
  .aside section.__block.__block--feature .__body ul li.__item:nth-child(odd), .aside section.__block.__block--page .__body ul li.__item:nth-child(odd) {
    border-right: 1px solid #e6e6e6;
  }
}
@media screen and (max-width: 599px) {
  .aside section.__block.__block--feature .__body ul li.__item a:after, .aside section.__block.__block--page .__body ul li.__item a:after {
    right: 1em;
  }
}
@media screen and (max-width: 959px) {
  .aside section.__block.__block--free.__is-text {
    padding-right: 1em;
    padding-left: 1em;
  }
}
.aside section.__block.__block--paid, .aside section.__block.__block--b-credit {
  text-align: center;
}

/* --------------------------------------------------------------------------
   フッター  .footer
   -------------------------------------------------------------------------- */
.footer {
  background: #f2f2f2;
}
.footer nav.__nav,
.footer .__copyright {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .footer nav.__nav,
.footer .__copyright {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1279px) {
  .footer nav.__nav,
.footer .__copyright {
    max-width: 960px;
  }
}
.footer nav.__nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0.5em 0;
  letter-spacing: -0.5em;
}
.footer nav.__nav ul li {
  display: inline-block;
  padding: 0.5em 0;
  letter-spacing: normal;
}
.footer nav.__nav ul li a {
  padding: 0 1em;
  border-right: 1px solid #ccc;
}
.footer nav.__nav ul li:last-child a {
  border-right: none;
}
.footer .__copyright {
  font-size: 0.85em;
  text-align: center;
  padding: 2em;
}

/* ==============================================================================================
   COMPONENT
   コンポーネント。ボタンなどの最小単位のスタイルが定義されたもの
   ============================================================================================== */
/* --------------------------------------------------------------------------
   ボタン  c-button
   -------------------------------------------------------------------------- */
.c-button, .c-button-submit {
  font-family: inherit;
  line-height: inherit;
  padding: 0.6em 1em;
  border: 1px solid transparent;
  background-color: #dfdfdf;
  text-decoration: none;
  border-radius: 0.3em;
  display: inline-block;
  zoom: 1;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.c-button::-moz-focus-inner, .c-button-submit::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.c-button:hover, .c-button-submit:hover, .c-button:focus, .c-button-submit:focus {
  /* csslint ignore:start */
  filter: alpha(opacity=90);
  /* csslint ignore:end */
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.c-button:focus, .c-button-submit:focus {
  outline: 0;
}
.c-button:active, .c-button-submit:active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000 \9 ;
}
.c-button[disabled], [disabled].c-button-submit {
  border: none;
  background-image: none;
  /* csslint ignore:start */
  filter: alpha(opacity=40);
  /* csslint ignore:end */
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.c-button-active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000 \9 ;
  cursor: default;
}
.c-button-active:hover {
  background-image: none;
}

.c-button-submit {
  color: #fff;
  font-weight: bold;
  background-color: #FA8072;
  min-width: 12em;
  font-size: 1.3em;
}
@media screen and (max-width: 599px) {
  .c-button-submit {
    display: block;
    width: 100%;
  }
}

a.c-button-submit {
  color: #666;
  background-color: #ddd;
}

/* --------------------------------------------------------------------------
   フォームエレメント  c-form
   -------------------------------------------------------------------------- */
.c-form input[type=text], .c-form input[type=password], .c-form input[type=email], .c-form input[type=url], .c-form input[type=date], .c-form input[type=month], .c-form input[type=time], .c-form input[type=datetime], .c-form input[type=datetime-local], .c-form input[type=week], .c-form input[type=number], .c-form input[type=search], .c-form input[type=tel], .c-form input[type=color] {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 0.3em;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 16px;
  max-width: 100%;
}
.c-form select, .c-form textarea {
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 0.3em;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 16px;
}
.c-form select:focus, .c-form textarea:focus {
  outline: 0;
  border-color: #129FEA;
}
.c-form select {
  padding: 0 0.6em;
}
.c-form textarea {
  padding: 0.5em 0.6em;
  width: 100%;
}
.c-form input:not([type]) {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 0.3em;
  box-sizing: border-box;
}
.c-form input[type=color] {
  padding: 0.2em 0.5em;
}
.c-form input[type=text]:focus, .c-form input[type=password]:focus, .c-form input[type=email]:focus, .c-form input[type=url]:focus, .c-form input[type=date]:focus, .c-form input[type=month]:focus, .c-form input[type=time]:focus, .c-form input[type=datetime]:focus, .c-form input[type=datetime-local]:focus, .c-form input[type=week]:focus, .c-form input[type=number]:focus, .c-form input[type=search]:focus, .c-form input[type=tel]:focus, .c-form input[type=color]:focus {
  outline: 0;
  border-color: #129FEA;
}
.c-form input:not([type]):focus {
  outline: 0;
  border-color: #129FEA;
}
.c-form input[type=file]:focus, .c-form input[type=radio]:focus, .c-form input[type=checkbox]:focus {
  outline: thin solid #129FEA;
  outline: 1px auto #129FEA;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  font-size: 16px;
  vertical-align: middle;
}
.c-form input[type=text][disabled], .c-form input[type=password][disabled], .c-form input[type=email][disabled], .c-form input[type=url][disabled], .c-form input[type=date][disabled], .c-form input[type=month][disabled], .c-form input[type=time][disabled], .c-form input[type=datetime][disabled], .c-form input[type=datetime-local][disabled], .c-form input[type=week][disabled], .c-form input[type=number][disabled], .c-form input[type=search][disabled], .c-form input[type=tel][disabled], .c-form input[type=color][disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
}
.c-form select[disabled], .c-form textarea[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
}
.c-form input:not([type])[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
}
.c-form input[readonly] {
  background-color: #eee;
  /* menu hover bg color */
  color: #777;
  /* menu text color */
  border-color: #ccc;
}
.c-form select[readonly], .c-form textarea[readonly] {
  background-color: #eee;
  /* menu hover bg color */
  color: #777;
  /* menu text color */
  border-color: #ccc;
}
.c-form input:focus:invalid, .c-form textarea:focus:invalid, .c-form select:focus:invalid {
  color: #b94a48;
  border-color: #e9322d;
}
.c-form input[type=file]:focus:invalid:focus, .c-form input[type=radio]:focus:invalid:focus, .c-form input[type=checkbox]:focus:invalid:focus {
  outline-color: #e9322d;
}
.c-form select {
  /* Normalizes the height; padding is not sufficient. */
  height: 2.25em;
  border: 1px solid #ccc;
  background-color: white;
}
.c-form select[multiple] {
  height: auto;
}
.c-form label {
  font-family: inherit;
  padding: 0.6em 1em;
  border: 1px solid #ccc;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-decoration: none;
  border-radius: 0.3em;
  display: inline-block;
  zoom: 1;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.c-form label::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.c-form label:hover, .c-form label:focus {
  border-color: #129FEA;
}
.c-form label:focus {
  outline: 0;
}
.c-form label:active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000 \9 ;
}
.c-form label input[type=radio], .c-form label input[type=checkbox] {
  vertical-align: middle;
}
.c-form label.__is-disabled {
  background-image: none;
  /* csslint ignore:start */
  filter: alpha(opacity=40);
  /* csslint ignore:end */
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.c-form fieldset {
  margin: 0;
  padding: 0.35em 0 0.75em;
  border: 0;
}
.c-form legend {
  display: block;
  width: 100%;
  padding: 0.3em 0;
  margin-bottom: 0.3em;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}
.c-form input.__foundation-0, .c-form input.__sales {
  text-align: right;
}
.c-form input[type=number]::-webkit-outer-spin-button,
.c-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-form input[type=number] {
  -moz-appearance: textfield;
}

/* --------------------------------------------------------------------------
   表・テーブル  .c-table-dl
   -------------------------------------------------------------------------- */
.c-table-dl {
  width: 100%;
  border-collapse: collapse;
}
.c-table-dl tr th,
.c-table-dl tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.c-table-dl tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
@media screen and (max-width: 599px) {
  .c-table-dl {
    font-size: 0.85em;
  }
}
.c-table-dl tr th {
  width: 30%;
}
.c-table-dl tr td {
  width: 70%;
}

/* --------------------------------------------------------------------------
   アラート表示  .c-alert
   -------------------------------------------------------------------------- */
.c-alert {
  padding: 1em;
  background-color: #e2e3e5;
  margin: 1em 0;
}
.c-alert li {
  margin-left: 1em;
}
.c-alert.c-alert--success {
  background-color: #d4edda;
}
.c-alert.c-alert--info {
  background-color: #d1ecf1;
}
.c-alert.c-alert--warning {
  background-color: #fff3cd;
}
.c-alert.c-alert--danger, .c-alert.c-alert--error {
  background-color: #f8d7da;
}
.c-alert.c-alert--top {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   見出し  .c-heading
   -------------------------------------------------------------------------- */
.c-h1 {
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 959px) {
  .c-h1 {
    padding: 0 1em;
    padding: 0 1rem;
  }
}

.c-heading-main {
  font-weight: bold;
  font-size: 1.5em;
  color: #333;
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .c-heading-main {
    border-bottom: 1px solid #FA8072;
    padding: 0.5em 0;
    padding: 0.5rem 0;
    margin: 0 0 0.5em 0;
    margin: 0 0 0.5rem 0;
  }
}
@media screen and (max-width: 959px) {
  .c-heading-main {
    border-top: 1px solid #FA8072;
    padding: 0.5em 1em;
    padding: 0.5rem 1rem;
    margin: 0;
  }
}

.c-heading-aside {
  font-weight: bold;
  font-size: 1.3em;
  color: #333;
}
@media screen and (min-width: 960px) {
  .c-heading-aside {
    border-bottom: 1px solid #FA8072;
    padding: 0.5em 0;
    padding: 0.5rem 0;
    margin: 0 0 0.5em 0;
    margin: 0 0 0.5rem 0;
  }
}
@media screen and (max-width: 959px) {
  .c-heading-aside {
    border-top: 1px solid #FA8072;
    padding: 0.5em 1em;
    padding: 0.5rem 1rem;
    margin: 0;
  }
}

/* --------------------------------------------------------------------------
   パンくずリスト  .c-breadcrumb
   -------------------------------------------------------------------------- */
.c-breadcrumb {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline;
  letter-spacing: -0.5em;
}
.c-breadcrumb li {
  display: inline;
  letter-spacing: normal;
  font-size: 0.85em;
  margin: 0 0.5em 0.5em 0;
}
.c-breadcrumb li:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-left: 0.5em;
}
.c-breadcrumb li:last-child {
  margin-right: 0;
}
.c-breadcrumb li:last-child:after {
  content: none;
}

/* --------------------------------------------------------------------------
   もっと見るリンク  .c-more
   -------------------------------------------------------------------------- */
.c-more {
  text-align: right;
  padding: 0.5em;
}
.c-more a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}

/* --------------------------------------------------------------------------
   ページ上部へのスクロールボタン  .c-pagetop
   -------------------------------------------------------------------------- */
.c-pagetop {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 99;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (min-width: 960px) {
  .c-pagetop {
    right: 1.5em;
    bottom: 1.5em;
  }
}
@media screen and (max-width: 959px) {
  .c-pagetop {
    right: 1em;
    bottom: 1em;
  }
}
.c-pagetop span:before {
  border-radius: 10em;
  background-color: #999;
  color: #fff;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  text-align: center;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5ce";
}
@media screen and (min-width: 960px) {
  .c-pagetop span:before {
    font-size: 3.5em;
  }
}
@media screen and (max-width: 959px) {
  .c-pagetop span:before {
    font-size: 3em;
  }
}
.c-pagetop.__is-visible {
  opacity: 0.8;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   軽減税率対象ラベル表示  .c-tax-type
   -------------------------------------------------------------------------- */
.c-tax-type {
  font-weight: normal;
  color: #d9534f;
}
.c-tax-type:before {
  content: "※";
}

/* --------------------------------------------------------------------------
   税表示設定に基づく価格表示  .c-tax-price
   -------------------------------------------------------------------------- */
.c-tax-sub-price {
  font-size: 0.85em;
}

/* --------------------------------------------------------------------------
   税込価格に関する注意  .c-tax-included-price-caution
   -------------------------------------------------------------------------- */
.c-tax-included-price-caution {
  font-size: 0.85em;
  margin-top: 1em;
}

@media screen and (max-width: 959px) {
  .body-product-detail .c-tax-included-price-caution {
    padding: 0 1em;
  }
}

/* --------------------------------------------------------------------------
   新着情報のラベル  .c-news-label
   -------------------------------------------------------------------------- */
.c-news-label {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  margin-right: 0.2em;
}
.c-news-label.c-news-label--color-1 {
  border: 1px solid #ccc;
  background-color: #fff;
}
.c-news-label.c-news-label--color-2 {
  color: #fff;
  font-weight: bold;
  background-color: #5bc0de;
}
.c-news-label.c-news-label--color-3 {
  color: #fff;
  font-weight: bold;
  background-color: #2ab27b;
}
.c-news-label.c-news-label--color-4 {
  color: #fff;
  font-weight: bold;
  background-color: #f0ad4e;
}
.c-news-label.c-news-label--color-5 {
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
}

/* --------------------------------------------------------------------------
   カード  .c-card
   -------------------------------------------------------------------------- */
.c-card {
  display: block;
  border-width: 1px 1px 2px 1px;
  border-style: solid;
  border-color: #e6e6e6;
  border-radius: 0.3em;
}
.c-card > .c-card-header {
  padding: 1em;
  border-bottom: 1px solid #e6e6e6;
  border-radius: calc(0.3em - 1px) calc(0.3em - 1px) 0 0;
  overflow: hidden;
  background-color: #f2f2f2;
}
.c-card > .c-card-body {
  padding: 1em;
  border-radius: 0 0 calc(0.3em - 1px) calc(0.3em - 1px);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Tabs .c-tabs
   -------------------------------------------------------------------------- */
.c-tabs .__nav {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin: 0.5em 1em 0;
  letter-spacing: normal;
}
.c-tabs .__nav .__nav-link {
  text-align: center;
  text-decoration: none;
  padding: 0.5em 1em;
  border: 1px solid transparent;
  border-radius: 0.3em 0.3em 0 0;
  border-bottom: none;
}
.c-tabs .__nav .__nav-link.__is-active {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom: none;
}
.c-tabs .__tab-content {
  margin-top: 0.5em;
}
.c-tabs .__tab-content .__tabpanel {
  display: none;
}
.c-tabs .__tab-content .__tabpanel.__is-active {
  display: block;
}
.c-tabs .__is-hover {
  background-color: #ddd;
}

/* ==============================================================================================
   PROJECT
   プロジェクト。内側に複数の子要素を含み、まとめてスタイルが定義されたもの
   ============================================================================================== */
/* --------------------------------------------------------------------------
   商品のブロック表示  .p-product-block
   -------------------------------------------------------------------------- */
.p-product-block ul.__product {
  letter-spacing: -0.5em;
  /* 文字間を詰めて隙間を削除する */
  padding: 0 0.5em;
  margin: 0;
}
.p-product-block ul.__product li.__item {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  padding: 1em 0.5em;
  width: 50%;
}
@media (min-width: 600px) {
  .p-product-block ul.__product li.__item {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .p-product-block ul.__product li.__item {
    width: 16.6666666%;
  }
}
.p-product-block ul.__product li.__item a {
  display: block;
}
.p-product-block ul.__product li.__item a .__rank {
  text-align: center;
}
.p-product-block ul.__product li.__item a .__rank span.__icon {
  display: inline-block;
  position: relative;
  color: #e3e3e3;
}
.p-product-block ul.__product li.__item a .__rank span.__icon:before {
  font-family: "LigatureSymbols";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e03a";
  font-size: 3.5em;
}
.p-product-block ul.__product li.__item a .__rank span.__icon span.__num {
  display: inline-block;
  position: absolute;
  font-size: 0.8em;
  font-family: Verdana;
  color: #333;
  top: 50%;
  right: 0;
  left: 0;
  margin: -0.3em auto 0 auto;
}
.p-product-block ul.__product li.__item a .__rank.__rank--1 span.__icon {
  color: #e0cb73;
}
.p-product-block ul.__product li.__item a .__rank.__rank--2 span.__icon {
  color: #bdbdbd;
}
.p-product-block ul.__product li.__item a .__rank.__rank--3 span.__icon {
  color: #ba9c7e;
}
.p-product-block ul.__product li.__item a .__rank.__rank--1 span.__icon span.__num, .p-product-block ul.__product li.__item a .__rank.__rank--2 span.__icon span.__num, .p-product-block ul.__product li.__item a .__rank.__rank--3 span.__icon span.__num {
  color: #fff;
}
.p-product-block ul.__product li.__item a .__status {
  margin-bottom: 0.2em;
}
.p-product-block ul.__product li.__item a .__status ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.p-product-block ul.__product li.__item a .__status ul li.__label {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  margin-bottom: 0.1em;
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--new {
  color: #fff;
  font-weight: bold;
  background-color: #2ab27b;
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--new span:before {
  content: "新着";
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--recommend {
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--recommend span:before {
  content: "おすすめ";
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--limited {
  color: #fff;
  font-weight: bold;
  background-color: #f0ad4e;
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--limited span:before {
  content: "限定商品";
}
.p-product-block ul.__product li.__item a .__status ul li.__label.__label--custom {
  color: #fff;
  font-weight: bold;
  background-color: #333;
}
.p-product-block ul.__product li.__item a .__photo {
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}
.p-product-block ul.__product li.__item a .__photo img {
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .p-product-block ul.__product li.__item a .__photo img {
    max-height: 12em;
  }
}
.p-product-block ul.__product li.__item a .__photo.__is-noimage .__noimage:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.p-product-block ul.__product li.__item a .__photo.__is-noimage .__noimage .__wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ddd;
  color: #fff;
}
.p-product-block ul.__product li.__item a .__photo.__is-noimage .__noimage .__wrap span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 1em;
}
.p-product-block ul.__product li.__item a .__photo.__is-noimage .__noimage .__wrap span:before {
  content: "NO IMAGE";
}
.p-product-block ul.__product li.__item a .__title {
  font-size: 0.85em;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.p-product-block ul.__product li.__item a .__description {
  margin-top: 0.5em;
}
.p-product-block ul.__product li.__item a .__description dl.__price {
  font-size: 0.85em;
  margin: 0;
  text-align: right;
}
.p-product-block ul.__product li.__item a .__description dl.__price dt, .p-product-block ul.__product li.__item a .__description dl.__price dd {
  display: inline-block;
}
.p-product-block ul.__product li.__item a .__description dl.__price dd {
  margin-left: 0.5em;
}
.p-product-block ul.__product li.__item a:hover {
  text-decoration: none;
}
.p-product-block ul.__product li.__item a:hover > .__title {
  text-decoration: underline;
}
.p-product-block ul.__product li.__item a:hover .__photo {
  opacity: 0.9;
}
.p-product-block ul.__product li.__item.__is-soldout .__photo {
  position: relative;
}
.p-product-block ul.__product li.__item.__is-soldout .__photo .__soldout {
  display: none;
}
.p-product-block ul.__product li.__item.__is-soldout .__photo .__soldout:before {
  content: "";
  display: block;
  background-image: linear-gradient(rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  top: 0;
  left: 0;
}
.p-product-block ul.__product li.__item.__is-soldout .__photo .__soldout:after {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  content: "SOLD OUT";
  z-index: 10;
  top: 50%;
  bottom: 0;
  margin-top: -0.5em;
  font-size: 1.3em;
  color: #fff;
}
@media (max-width: 599px) {
  .p-product-block.p-product-block--compact ul.__product {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .p-product-block.p-product-block--compact ul.__product li.__item {
    white-space: normal;
    width: 44.44444%;
  }
}

/* --------------------------------------------------------------------------
   商品セット一覧表示  .p-product-set
   -------------------------------------------------------------------------- */
.p-product-set {
  margin-top: 2em;
}
.p-product-set table {
  width: 100%;
}
.p-product-set table thead tr th {
  padding: 0.75em 1em;
  vertical-align: middle;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-weight: normal;
  white-space: nowrap;
  font-size: 0.85em;
  background-color: #f2f2f2;
}
.p-product-set table thead tr th.__order {
  border-right: none;
}
.p-product-set table tbody tr td {
  padding: 0.75em 1em;
  vertical-align: middle;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.p-product-set table tbody tr td .__heading {
  display: none;
}
.p-product-set table tbody tr td.__description .__shipping-group {
  display: inline-block;
  margin-bottom: 0.3em;
}
.p-product-set table tbody tr td.__description .__shipping-group span {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
}
.p-product-set table tbody tr td.__description .__payment {
  display: inline-block;
  margin-bottom: 0.2em;
}
.p-product-set table tbody tr td.__description .__payment > span {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
}
.p-product-set table tbody tr td.__description .__payment > span:before {
  content: "決済制限あり";
}
.p-product-set table tbody tr td.__description .__payment > span:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f059";
  padding-left: 0.2em;
}
.p-product-set table tbody tr td.__description .__payment > span .__payment-name {
  opacity: 0;
  transition: 0.5s;
  display: inline-block;
  width: fit-content;
  background: #000;
  position: absolute;
  color: #fff;
  padding: 0.8em;
  bottom: 108%;
  left: 40%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  white-space: nowrap;
  visibility: hidden;
  pointer-events: none;
}
.p-product-set table tbody tr td.__description .__payment > span .__payment-name:before {
  content: "利用可能：";
}
.p-product-set table tbody tr td.__description .__payment:hover .__payment-name {
  opacity: 1;
  visibility: visible;
}
.p-product-set table tbody tr td.__description h2.__name {
  margin: 0;
  font-size: 1.15em;
}
.p-product-set table tbody tr td.__description .__tax-type {
  font-size: 0.85em;
}
.p-product-set table tbody tr td.__description .__spec {
  margin-top: 1em;
  font-size: 0.85em;
  color: #666;
}
.p-product-set table tbody tr td.__description .__spec dl {
  display: block;
  margin: 0.3em 0 0 0;
  line-height: 1.3;
}
.p-product-set table tbody tr td.__description .__spec dl dt {
  display: inline-block;
  margin: 0 0.3em 0 0;
  vertical-align: top;
}
.p-product-set table tbody tr td.__description .__spec dl dt:after {
  content: ":";
  display: inline-block;
  margin-left: 0.3em;
}
.p-product-set table tbody tr td.__description .__spec dl dd {
  display: inline-block;
  margin: 0;
}
.p-product-set table tbody tr td.__description .__content {
  margin-top: 1em;
  font-size: 0.85em;
}
.p-product-set table tbody tr td.__price .__body {
  text-align: right;
}
.p-product-set table tbody tr td.__price .__body .__total {
  font-weight: bold;
  font-size: 1.15em;
}
.p-product-set table tbody tr td.__price .__body .__detail {
  font-size: 0.85em;
}
.p-product-set table tbody tr td.__price .__body .__volume-discount {
  margin-top: 0.5em;
  font-size: 0.85em;
}
.p-product-set table tbody tr td.__order {
  border-right: none;
  white-space: nowrap;
}
.p-product-set table tbody tr td.__order .__body {
  text-align: center;
}
.p-product-set table tbody tr td.__order .__body dl.__cart-count {
  display: inline-block;
  margin: 0.5em 0 0 0;
}
.p-product-set table tbody tr td.__order .__body dl.__cart-count dt {
  font-size: 0.85em;
  display: inline-block;
  margin-left: 0.3em;
}
.p-product-set table tbody tr td.__order .__body dl.__cart-count dd {
  font-size: 0.85em;
  background-color: #2ab27b;
  color: #fff;
  display: inline-block;
  padding: 0 0.4em;
  margin: 0;
  text-align: center;
  border-radius: 2em;
}
.p-product-set table tbody tr td.__order .__body .__input input {
  text-align: right;
  margin-right: 0.3em;
  width: 4em;
}
.p-product-set table tbody tr td.__order .__body .__notice dl {
  margin: 0;
  letter-spacing: -0.5em;
  font-size: 0.85em;
}
.p-product-set table tbody tr td.__order .__body .__notice dl:first-child {
  margin-top: 0.5em;
}
.p-product-set table tbody tr td.__order .__body .__notice dl dt,
.p-product-set table tbody tr td.__order .__body .__notice dl dd {
  display: inline-block;
  letter-spacing: normal;
}
.p-product-set table tbody tr td.__order .__body .__notice dl dt:after {
  content: ":";
  margin-left: 0.3em;
}
.p-product-set table tbody tr td.__order .__body .__notice dl dd {
  margin-left: 0.5em;
}
.p-product-set table tbody tr td.__order .__body .__error {
  white-space: normal;
  font-size: 0.85em;
}
@media screen and (min-width: 600px) {
  .p-product-set table tbody tr.__is-hidden td.__price .__body {
    text-align: center;
  }
}
.p-product-set .__add-cart {
  margin-top: 1em;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .p-product-set {
    margin-top: 1em;
  }
  .p-product-set table {
    display: block;
  }
  .p-product-set table thead {
    display: none;
  }
  .p-product-set table tbody {
    display: block;
    padding: 0 1em;
  }
  .p-product-set table tbody tr {
    display: block;
    margin-bottom: 1em;
    border-radius: 0.5em;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 0 1em;
  }
  .p-product-set table tbody tr td {
    padding: 0.75em 0;
    display: block;
    border: none;
  }
  .p-product-set table tbody tr td:before, .p-product-set table tbody tr td:after {
    content: " ";
    display: table;
  }
  .p-product-set table tbody tr td:after {
    clear: both;
  }
  .p-product-set table tbody tr td .__heading {
    display: block;
    width: 35%;
    float: left;
  }
  .p-product-set table tbody tr td .__body {
    display: block;
    width: 65%;
    float: left;
  }
  .p-product-set table tbody tr td.__price, .p-product-set table tbody tr td.__order {
    border-top: 1px dotted #e6e6e6;
  }
  .p-product-set table tbody tr td.__price .__body, .p-product-set table tbody tr td.__order .__body {
    text-align: right;
  }
  .p-product-set table tbody tr td.__price .__heading .__detail {
    font-size: 0.85em;
  }
  .p-product-set table tbody tr:last-child {
    margin-bottom: 0;
  }
  .p-product-set .__add-cart {
    padding-right: 1em;
    padding-left: 1em;
  }
}

/* --------------------------------------------------------------------------
   登録フォームでの進捗表示  .p-form-flow
   -------------------------------------------------------------------------- */
.p-form-flow {
  position: relative;
  list-style-type: none;
  margin: 1em auto;
  padding: 0;
  width: 100%;
  max-width: 640px;
}
.p-form-flow:before, .p-form-flow:after {
  content: " ";
  display: table;
}
.p-form-flow:after {
  clear: both;
}
.p-form-flow:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.65em;
  left: 16.6666%;
  width: 66.6666%;
  border-bottom: 4px solid #999;
  margin: 0 auto;
  z-index: 0;
}
.p-form-flow .__flow {
  display: block;
  width: 33.3333%;
  text-align: center;
  float: left;
  position: relative;
  z-index: 1;
}
.p-form-flow .__flow .__number {
  background-color: #999;
  display: inline-block;
  font-size: 1.8em;
  height: 2em;
  width: 2em;
  border-radius: 2em;
  margin-bottom: 0.5em;
  color: #fff;
}
.p-form-flow .__flow .__number:before {
  line-height: 2em;
  vertical-align: middle;
}
.p-form-flow .__flow .__text {
  display: block;
  color: #999;
  font-weight: bold;
}
.p-form-flow .__flow.__flow-1 .__number:before {
  content: "1";
}
.p-form-flow .__flow.__flow-2 .__number:before {
  content: "2";
}
.p-form-flow .__flow.__flow-2 .__text:before {
  content: "入力情報確認";
}
.p-form-flow .__flow.__flow-3 .__number:before {
  content: "3";
}
.p-form-flow .__flow.__flow-3 .__text:before {
  content: "完了";
}
.p-form-flow .__flow.__active .__number {
  background-color: #333;
}
.p-form-flow .__flow.__active .__text {
  color: #333;
}
.p-form-flow.p-form-flow--customer .__flow.__flow-1 .__text:before {
  content: "ご登録情報入力";
}
.p-form-flow.p-form-flow--order .__flow.__flow-1 .__text:before {
  content: "ご注文情報入力";
}
.p-form-flow.p-form-flow--estimate .__flow.__flow-1 .__text:before {
  content: "お見積り情報入力";
}

/* --------------------------------------------------------------------------
   登録フォーム表示（必須・エラー表示など）  .p-form-table
   -------------------------------------------------------------------------- */
.p-form-table tr td label {
  margin: 0.25em 0.5em 0.25em 0;
}
.p-form-table tr td p.__example {
  color: #666;
  font-size: 0.85em;
}
.p-form-table tr td .__block {
  margin-top: 0.75em;
}
.p-form-table tr td .__block:first-child {
  margin-top: 0;
}
.p-form-table tr td .__block .__sub-title {
  margin-bottom: 0.3em;
}
.p-form-table tr.__is-error > td {
  background-color: #f8d7da;
}
.p-form-table tr.__is-error > td p.__message {
  color: #d9534f;
  padding: 0.3em 0;
  margin: 0;
}
.p-form-table tr.__is-required > th:after {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
  content: "必須";
  margin-left: 0.5em;
}
@media screen and (min-width: 600px) {
  .p-form-table {
    width: 100%;
    border-collapse: collapse;
  }
  .p-form-table tr th,
.p-form-table tr td {
    padding: 0.75em 1em;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .p-form-table tr th {
    width: 30%;
    background-color: #f2f2f2;
    font-weight: normal;
  }
  .p-form-table tr td {
    width: 70%;
  }
  .p-form-table tr td p.__example {
    display: inline-block;
    vertical-align: middle;
    margin: 0.3em 0 0.3em 0.5em;
  }
  .p-form-table tr.__is-error > th {
    background-color: #f4c1c6;
  }
  .p-form-table tr.__is-required > th:before, .p-form-table tr.__is-required > th:after {
    content: " ";
    display: table;
  }
  .p-form-table tr.__is-required > th:after {
    clear: both;
  }
  .p-form-table tr.__is-required > th:after {
    content: "必須";
    display: block;
    float: right;
  }
}
@media screen and (max-width: 599px) {
  .p-form-table {
    display: block;
    width: 100%;
    font-size: 1.15em;
  }
  .p-form-table tbody,
.p-form-table thead {
    width: 100%;
    display: block;
  }
  .p-form-table tr {
    width: 100%;
    display: block;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;
    padding: 0.75em 1em;
  }
  .p-form-table tr:last-child {
    border-bottom: none;
  }
  .p-form-table tr th,
.p-form-table tr td {
    width: 100%;
    display: block;
  }
  .p-form-table tr th {
    padding-bottom: 0.3em;
  }
  .p-form-table tr td {
    border-top: none;
    border-bottom: none;
    padding-top: 0;
    background-color: #f2f2f2;
  }
  .p-form-table tr td p.__example {
    display: block;
    margin: 0.3em 0 0 0;
  }
  .p-form-table tr.__is-error {
    background-color: #f8d7da;
  }
  .p-form-table tr.__is-required > th:after {
    vertical-align: 2px;
    display: inline-block;
  }
}

/* --------------------------------------------------------------------------
   数量増減ボタン  .p-spin
   -------------------------------------------------------------------------- */
.p-spin .__minus,
.p-spin .__plus {
  display: inline-block;
  background-color: #f2f2f2;
  padding: 0.5em 0;
  line-height: 1.15em;
  border: 1px solid #ccc;
  vertical-align: middle;
  text-align: center;
  width: 1.75em;
  font-size: 16px;
  cursor: pointer;
}
.p-spin .__minus:active,
.p-spin .__plus:active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000 \9 ;
}
@media screen and (max-width: 599px) {
  .p-spin .__minus,
.p-spin .__plus {
    width: 2.5em;
  }
}
.p-spin .__minus {
  border-top-left-radius: 0.3em;
  border-bottom-left-radius: 0.3em;
  border-right: none;
}
.p-spin .__minus:before {
  content: "-";
}
.p-spin .__plus {
  border-top-right-radius: 0.3em;
  border-bottom-right-radius: 0.3em;
  background-color: #f2f2f2;
}
.p-spin .__plus:before {
  content: "+";
}

/* --------------------------------------------------------------------------
   ショッピングカートの中身  .p-cart
   -------------------------------------------------------------------------- */
.p-cart .__product table tbody td.__description a {
  display: block;
}
.p-cart .__product table tbody td.__description a .__detail .__name {
  font-weight: bold;
}
.p-cart .__product table tbody td.__description a .__detail .__no,
.p-cart .__product table tbody td.__description a .__detail .__jan,
.p-cart .__product table tbody td.__description a .__detail .__product-option,
.p-cart .__product table tbody td.__description a .__detail .__custom,
.p-cart .__product table tbody td.__description a .__detail .__shipping-size {
  color: #666;
}
.p-cart .__product table tbody td.__description a .__detail .__custom {
  display: none;
}
.p-cart .__product table tbody td.__description a .__detail .__payment {
  display: inline-block;
  margin-bottom: 0.3em;
}
.p-cart .__product table tbody td.__description a .__detail .__payment > span {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
}
.p-cart .__product table tbody td.__description a .__detail .__payment > span:before {
  content: "決済制限あり";
}
.p-cart .__product table tbody td.__description a .__detail .__payment > span:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f059";
  padding-left: 0.2em;
}
.p-cart .__product table tbody td.__description a .__detail .__payment > span .__payment-name {
  opacity: 0;
  transition: 0.5s;
  display: inline-block;
  width: fit-content;
  background: #000;
  position: absolute;
  color: #fff;
  padding: 0.8em;
  bottom: 108%;
  left: 40%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  white-space: nowrap;
  visibility: hidden;
  pointer-events: none;
  text-decoration: none;
}
.p-cart .__product table tbody td.__description a .__detail .__payment > span .__payment-name:before {
  content: "利用可能：";
}
.p-cart .__product table tbody td.__description a .__detail .__payment:hover .__payment-name {
  opacity: 1;
  visibility: visible;
}
.p-cart .__product table tbody td.__description a:hover {
  text-decoration: none;
}
.p-cart .__product table tbody td.__description a:hover .__detail .__name {
  text-decoration: underline;
}
.p-cart .__product table tbody td.__price .__body .__total .__tax-sub-price,
.p-cart .__product table tbody td.__price .__body .__detail .__tax-sub-price {
  margin-left: 0.25em;
}
.p-cart .__product table tbody td.__order .__body .__input {
  text-align: right;
  margin-right: 0.3em;
  width: 4em;
}
.p-cart .__product table tbody td.__order .__body dl.__min-max-order {
  margin: 0.5em 0 0 0;
  letter-spacing: -0.5em;
  font-size: 0.85em;
}
.p-cart .__product table tbody td.__order .__body dl.__min-max-order dt,
.p-cart .__product table tbody td.__order .__body dl.__min-max-order dd {
  display: inline-block;
  letter-spacing: normal;
}
.p-cart .__product table tbody td.__order .__body dl.__min-max-order dt:after {
  content: ":";
  margin-left: 0.3em;
}
.p-cart .__product table tbody td.__order .__body dl.__min-max-order dd {
  margin-left: 0.5em;
}
.p-cart .__product table tbody td.__total .__body .__tax-sub-price.__is-in, .p-cart .__product table tbody td.__total .__body .__tax-sub-price.__is-out {
  margin-left: 0.25em;
}
.p-cart .__product table tbody td.__total .__body .__tax-sub-price:not(.__is-in):not(.__is-out) {
  display: block;
}
.p-cart .__total-count {
  text-align: right;
}
.p-cart .__total-count dl {
  display: inline-block;
  letter-spacing: -0.5em;
  margin: 0.75em 0 0 0;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.p-cart .__total-count dl dt, .p-cart .__total-count dl dd {
  letter-spacing: normal;
  display: inline-block;
}
.p-cart .__total-count dl dt {
  margin-right: 0.5em;
}
.p-cart .__total-count dl dt:after {
  content: ":";
  margin-left: 0.3em;
}
.p-cart .__total-count dl dd {
  margin: 0;
}
.p-cart .__total-price {
  margin-top: 0.5em;
}
.p-cart .__total-price dl {
  letter-spacing: -0.5em;
  margin: 0;
  padding: 0.25em 0 0.75em 0;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.p-cart .__total-price dl dt, .p-cart .__total-price dl dd {
  letter-spacing: normal;
  display: inline-block;
}
.p-cart .__total-price dl dt {
  width: 40%;
  text-align: left;
  vertical-align: top;
}
.p-cart .__total-price dl dd {
  width: 60%;
  text-align: right;
  vertical-align: top;
  margin: 0;
}
.p-cart .__total-price dl.__use-point dt, .p-cart .__total-price dl.__get-point dt {
  font-size: 0.85em;
}
.p-cart .__total-price dl.__order .__price .__tax-sub-price:not(.__is-in):not(.__is-out) {
  display: block;
}
.p-cart .__total-price dl.__order .__tax {
  font-size: 0.85em;
}
.p-cart .__total-price dl.__shipping-cost .__incl-tax {
  font-size: 0.85em;
}
.p-cart .__total-price dl.__extra-cost .__incl-tax {
  font-size: 0.85em;
}
.p-cart .__total-price dl.__is-final dd .__total {
  font-size: 1.3em;
  font-weight: bold;
}
.p-cart .__total-price dl.__is-final dd ul.__by-tax-rate {
  font-size: 0.85em;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.p-cart .__total-price dl.__is-final dd ul.__by-tax-rate li.__item {
  display: block;
  padding-bottom: 0.3em;
}
@media screen and (min-width: 600px) {
  .p-cart .__product table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.85em;
  }
  .p-cart .__product table thead th {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    background-color: #f2f2f2;
    white-space: nowrap;
    text-align: center;
    font-weight: normal;
  }
  .p-cart .__product table tbody td {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
  }
  .p-cart .__product table tbody td .__heading {
    display: none;
  }
  .p-cart .__product table tbody td.__description a {
    display: block;
  }
  .p-cart .__product table tbody td.__description a:before, .p-cart .__product table tbody td.__description a:after {
    content: " ";
    display: table;
  }
  .p-cart .__product table tbody td.__description a:after {
    clear: both;
  }
  .p-cart .__product table tbody td.__description a .__image {
    float: left;
    padding-right: 0.5em;
    text-align: center;
  }
  .p-cart .__product table tbody td.__description a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .p-cart .__product table tbody td.__description a .__detail {
    display: inline;
  }
  .p-cart .__product table tbody td.__description a .__detail .__name {
    margin-bottom: 0.5em;
  }
  .p-cart .__product table tbody td.__description a .__detail .__tax-type {
    margin: 0 0.5em 0 0;
    display: inline-block;
  }
  .p-cart .__product table tbody td.__description a .__detail .__no,
.p-cart .__product table tbody td.__description a .__detail .__jan,
.p-cart .__product table tbody td.__description a .__detail .__product-option,
.p-cart .__product table tbody td.__description a .__detail .__custom,
.p-cart .__product table tbody td.__description a .__detail .__shipping-size {
    margin: 0 0.5em 0 0;
    display: inline-block;
    vertical-align: top;
  }
  .p-cart .__product table tbody td.__description a .__detail .__no dt,
.p-cart .__product table tbody td.__description a .__detail .__jan dt,
.p-cart .__product table tbody td.__description a .__detail .__product-option dt,
.p-cart .__product table tbody td.__description a .__detail .__custom dt,
.p-cart .__product table tbody td.__description a .__detail .__shipping-size dt {
    display: inline-block;
    vertical-align: top;
  }
  .p-cart .__product table tbody td.__description a .__detail .__no dt:after,
.p-cart .__product table tbody td.__description a .__detail .__jan dt:after,
.p-cart .__product table tbody td.__description a .__detail .__product-option dt:after,
.p-cart .__product table tbody td.__description a .__detail .__custom dt:after,
.p-cart .__product table tbody td.__description a .__detail .__shipping-size dt:after {
    content: ":";
  }
  .p-cart .__product table tbody td.__description a .__detail .__no dd,
.p-cart .__product table tbody td.__description a .__detail .__jan dd,
.p-cart .__product table tbody td.__description a .__detail .__product-option dd,
.p-cart .__product table tbody td.__description a .__detail .__custom dd,
.p-cart .__product table tbody td.__description a .__detail .__shipping-size dd {
    display: inline-block;
    margin: 0;
  }
  .p-cart .__product table tbody td.__description a .__detail .__custom {
    display: none;
  }
  .p-cart .__product table tbody td.__price {
    white-space: nowrap;
    width: 1em;
  }
  .p-cart .__product table tbody td.__price .__body {
    text-align: right;
  }
  .p-cart .__product table tbody td.__price .__body .__detail {
    font-size: 0.85em;
  }
  .p-cart .__product table tbody td.__order {
    white-space: nowrap;
    width: 1em;
    text-align: center;
  }
  .p-cart .__product table tbody td.__order.__order--input span.__delete {
    display: inline-block;
    margin-left: 1em;
  }
  .p-cart .__product table tbody td.__total {
    white-space: nowrap;
    width: 1em;
    text-align: right;
  }
  .p-cart .__total-price dl {
    width: 40%;
    margin-left: 60%;
  }
}
@media screen and (max-width: 599px) {
  .p-cart .__product table {
    display: block;
  }
  .p-cart .__product table thead {
    display: none;
  }
  .p-cart .__product table tbody {
    display: block;
    border: 1px solid #ddd;
    border-radius: 0.5em;
  }
  .p-cart .__product table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .p-cart .__product table tbody tr td {
    display: block;
  }
  .p-cart .__product table tbody tr td.__description a:before, .p-cart .__product table tbody tr td.__description a:after {
    content: " ";
    display: table;
  }
  .p-cart .__product table tbody tr td.__description a:after {
    clear: both;
  }
  .p-cart .__product table tbody tr td.__description a .__image {
    float: left;
    width: 30%;
    padding-right: 1em;
  }
  .p-cart .__product table tbody tr td.__description a .__detail {
    display: inline;
  }
  .p-cart .__product table tbody tr td.__description a .__detail .__tax-type {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .p-cart .__product table tbody tr td.__description a .__detail dl {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .p-cart .__product table tbody tr td.__description a .__detail dl dt,
.p-cart .__product table tbody tr td.__description a .__detail dl dd {
    display: inline-block;
    vertical-align: top;
  }
  .p-cart .__product table tbody tr td.__description a .__detail dl dt {
    display: inline-block;
  }
  .p-cart .__product table tbody tr td.__description a .__detail dl dt:after {
    content: ":";
  }
  .p-cart .__product table tbody tr td.__description a .__detail dl dd {
    margin: 0;
  }
  .p-cart .__product table tbody tr td.__price, .p-cart .__product table tbody tr td.__total, .p-cart .__product table tbody tr td.__order.__order--text {
    padding: 0.5em 0;
  }
  .p-cart .__product table tbody tr td.__price:before, .p-cart .__product table tbody tr td.__price:after, .p-cart .__product table tbody tr td.__total:before, .p-cart .__product table tbody tr td.__total:after, .p-cart .__product table tbody tr td.__order.__order--text:before, .p-cart .__product table tbody tr td.__order.__order--text:after {
    content: " ";
    display: table;
  }
  .p-cart .__product table tbody tr td.__price:after, .p-cart .__product table tbody tr td.__total:after, .p-cart .__product table tbody tr td.__order.__order--text:after {
    clear: both;
  }
  .p-cart .__product table tbody tr td.__price .__heading, .p-cart .__product table tbody tr td.__total .__heading, .p-cart .__product table tbody tr td.__order.__order--text .__heading {
    font-weight: bold;
    width: 40%;
    float: left;
  }
  .p-cart .__product table tbody tr td.__price .__body, .p-cart .__product table tbody tr td.__total .__body, .p-cart .__product table tbody tr td.__order.__order--text .__body {
    width: 60%;
    float: left;
    text-align: right;
  }
  .p-cart .__product table tbody tr td.__order.__order--input {
    padding: 0.5em 0;
  }
  .p-cart .__product table tbody tr td.__order.__order--input .__heading {
    font-weight: bold;
  }
  .p-cart .__product table tbody tr td.__order.__order--input .__body {
    text-align: center;
    margin-top: 0.3em;
  }
  .p-cart .__product table tbody tr td.__order.__order--input .__body span.__delete {
    display: inline-block;
    margin-left: 2em;
  }
  .p-cart .__product table tbody tr td.__price .__detail {
    font-size: 0.85em;
  }
  .p-cart .__product table tbody tr:last-child {
    border-bottom: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1279px) {
  .p-cart .__product table tbody td.__order.__order--input .__body span.__delete {
    display: block;
    margin: 0.5em 0 0 0;
  }
}

/* --------------------------------------------------------------------------
   ページネーション  .p-pagination
   -------------------------------------------------------------------------- */
.p-pagination .__information {
  text-align: center;
}
.p-pagination .__information span {
  font-weight: bold;
}
.p-pagination .__link {
  padding-top: 1em;
  text-align: center;
}
.p-pagination .__link ul.__page {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.p-pagination .__link ul.__page li {
  display: inline-block;
  padding: 0.25em 0;
  vertical-align: middle;
  line-height: 1;
  font-size: 0.85em;
}
.p-pagination .__link ul.__page li.__active span {
  display: inline-block;
  padding: 1em 0.75em;
  font-weight: bold;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
}
.p-pagination .__link ul.__page li.__link a {
  display: inline-block;
  padding: 1em 0.75em;
  border: 1px solid #ccc;
}
.p-pagination .__link ul.__page li.__link a:hover {
  text-decoration: none;
  background: #f2f2f2;
}
.p-pagination .__link .__prev,
.p-pagination .__link .__next {
  display: inline-block;
}
.p-pagination .__link .__prev a,
.p-pagination .__link .__next a {
  display: inline-block;
  padding: 1em;
  border: 1px solid #ccc;
  line-height: 1;
  font-weight: bold;
  font-size: 0.85em;
}
.p-pagination .__link .__prev a:hover,
.p-pagination .__link .__next a:hover {
  text-decoration: none;
  background: #f2f2f2;
}
.p-pagination .__link .__prev a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 1em;
}
.p-pagination .__link .__prev a:after {
  content: "前へ";
}
.p-pagination .__link .__next a:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-left: 1em;
}
.p-pagination .__link .__next a:before {
  content: "次へ";
}
@media screen and (max-width: 599px) {
  .p-pagination .__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-pagination .__link .__prev,
.p-pagination .__link .__next {
    margin-top: 1em;
    width: 50%;
  }
  .p-pagination .__link .__prev a,
.p-pagination .__link .__next a {
    width: 100%;
    font-size: 1em;
  }
  .p-pagination .__link .__prev {
    order: 1;
    padding-right: 0.25em;
  }
  .p-pagination .__link .__next {
    order: 2;
    padding-left: 0.25em;
  }
  .p-pagination .__link ul.__page {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   ログイン画面のメニュー（クローズドサイト共通）  .p-menu-login
   -------------------------------------------------------------------------- */
.p-menu-login {
  margin-top: 2em;
}
.p-menu-login ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  letter-spacing: -0.5em;
}
.p-menu-login ul li {
  letter-spacing: normal;
  display: inline-block;
}
.p-menu-login ul li a {
  padding: 0 1em;
  border-right: 1px solid #ccc;
}
.p-menu-login ul li:last-child a {
  border-right: none;
}

/* --------------------------------------------------------------------------
   マイページのグローバルメニュー  .p-mypage-navi
   -------------------------------------------------------------------------- */
.p-mypage-navi {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 959px) {
  .p-mypage-navi .__member {
    margin: 0 1em;
    margin: 0 1rem;
  }
}
.p-mypage-navi .__member .__name {
  display: inline-block;
  margin-right: 1em;
}
.p-mypage-navi .__member .__name span {
  font-weight: bold;
  font-size: 1.15em;
  display: inline-block;
  margin-right: 0.5em;
}
.p-mypage-navi .__member .__group {
  display: inline-block;
  margin-right: 1em;
  margin-right: 1rem;
}
.p-mypage-navi .__member .__group span {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
}
.p-mypage-navi .__member .__point,
.p-mypage-navi .__member .__credit_limit {
  display: inline-block;
  margin-right: 1em;
  font-size: 0.85em;
}
.p-mypage-navi .__member .__point dl,
.p-mypage-navi .__member .__credit_limit dl {
  margin: 0.3em 0 0 0;
}
.p-mypage-navi .__member .__point dl dt, .p-mypage-navi .__member .__point dl dd,
.p-mypage-navi .__member .__credit_limit dl dt,
.p-mypage-navi .__member .__credit_limit dl dd {
  display: inline-block;
}
.p-mypage-navi .__member .__point dl dt:after,
.p-mypage-navi .__member .__credit_limit dl dt:after {
  content: ":";
  margin-right: 0.3em;
}
.p-mypage-navi .__member .__point dl dd,
.p-mypage-navi .__member .__credit_limit dl dd {
  margin: 0;
}
.p-mypage-navi nav.__menu {
  position: relative;
  margin-top: 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-mypage-navi nav.__menu .__heading {
  letter-spacing: -0.5em;
  padding: 0.5em 1em;
  padding: 0.5rem 1rem;
}
.p-mypage-navi nav.__menu .__heading .__title {
  letter-spacing: normal;
  font-size: 1.3em;
  display: inline-block;
  width: 50%;
  text-align: left;
  vertical-align: middle;
}
.p-mypage-navi nav.__menu .__heading .__toggle {
  letter-spacing: normal;
  display: inline-block;
  width: 50%;
  text-align: right;
  vertical-align: middle;
}
.p-mypage-navi nav.__menu .__heading .__toggle span.__button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.6em 1em;
  cursor: pointer;
  zoom: 1;
  display: inline-block;
  border-radius: 0.3em;
}
.p-mypage-navi nav.__menu .__heading .__toggle span.__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-right: 0.3em;
}
.p-mypage-navi nav.__menu .__heading .__toggle span.__button.__is-open:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
}
@media screen and (min-width: 600px) {
  .p-mypage-navi nav.__menu .__heading .__toggle span.__button {
    display: none;
  }
}
.p-mypage-navi nav.__menu .__body ul li.__is-active a {
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .p-mypage-navi nav.__menu .__body {
    display: none;
  }
  .p-mypage-navi nav.__menu .__body ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .p-mypage-navi nav.__menu .__body ul li {
    display: block;
    border-top: 1px solid #e6e6e6;
  }
  .p-mypage-navi nav.__menu .__body ul li a {
    position: relative;
    display: block;
    color: #333;
    padding: 0.75em 1.5rem 0.75em 1rem;
  }
  .p-mypage-navi nav.__menu .__body ul li a:hover {
    text-decoration: none;
  }
  .p-mypage-navi nav.__menu .__body ul li a:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -0.5em;
    color: #ccc;
  }
}
@media screen and (min-width: 600px) {
  .p-mypage-navi nav.__menu .__body ul {
    list-style-type: none;
    padding: 0 0 0.75em 0;
    margin: 0;
    letter-spacing: -0.5em;
  }
  .p-mypage-navi nav.__menu .__body ul li {
    display: inline-block;
    margin-top: 0.5em;
    letter-spacing: normal;
  }
  .p-mypage-navi nav.__menu .__body ul li a {
    padding: 0 1em;
    border-right: 1px solid #ccc;
  }
  .p-mypage-navi nav.__menu .__body ul li:last-child a {
    border-right: none;
  }
}

/* --------------------------------------------------------------------------
   マイページの絞り込み条件  .p-mypage-search
   -------------------------------------------------------------------------- */
.p-mypage-search {
  background-color: #f2f2f2;
  margin-top: 1em;
}
.p-mypage-search .__heading {
  letter-spacing: -0.5em;
  background-color: #ddd;
  padding: 0.5em 1em;
  padding: 0.5rem 1rem;
}
.p-mypage-search .__heading .__title {
  letter-spacing: normal;
  font-size: 1.3em;
  display: inline-block;
  width: 50%;
  text-align: left;
  vertical-align: middle;
}
.p-mypage-search .__heading .__toggle {
  letter-spacing: normal;
  display: inline-block;
  width: 50%;
  text-align: right;
  vertical-align: middle;
}
.p-mypage-search .__heading .__toggle span.__button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.6em 1em;
  cursor: pointer;
  zoom: 1;
  display: inline-block;
  border-radius: 0.3em;
}
.p-mypage-search .__heading .__toggle span.__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-right: 0.3em;
}
.p-mypage-search .__heading .__toggle span.__button.__is-open:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
}
.p-mypage-search .__body {
  padding-bottom: 1em;
  display: none;
}
.p-mypage-search .__body.__is-open {
  display: block;
}
.p-mypage-search .__body .__input {
  letter-spacing: -0.5em;
  padding: 0.5em 0;
}
.p-mypage-search .__body .__input dl {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  letter-spacing: normal;
  padding: 0.5em 1em;
  margin: 0;
}
@media screen and (min-width: 600px) {
  .p-mypage-search .__body .__input dl {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .p-mypage-search .__body .__input dl {
    width: 33.33333%;
  }
}
.p-mypage-search .__body .__input dl dd {
  margin-top: 0.3em;
  margin: 0;
}
.p-mypage-search .__body .__input dl dd input,
.p-mypage-search .__body .__input dl dd select {
  max-width: 100%;
}
.p-mypage-search .__body .__input dl.__date input {
  width: 7.5em;
}
.p-mypage-search .__body .__input dl.__is-error {
  background-color: #f8d7da;
}
.p-mypage-search .__body .__input dl.__is-error dd .__message {
  color: #d9534f;
  font-weight: bold;
}
.p-mypage-search .__body .__control {
  letter-spacing: -0.5em;
  text-align: center;
  margin-top: 0.5em;
}
.p-mypage-search .__body .__control .__submit,
.p-mypage-search .__body .__control .__reset {
  letter-spacing: normal;
  display: inline;
  font-size: 1.15em;
  padding: 0 0.3em;
}
.p-mypage-search .__body .__control .__submit .__button {
  background-color: #FA8072;
  color: #fff;
  font-weight: bold;
  padding-left: 3em;
  padding-right: 3em;
}

/* --------------------------------------------------------------------------
   処理中の表示  .p-processing
   -------------------------------------------------------------------------- */
.p-processing {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483647;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.p-processing > div {
  position: relative;
  height: 100%;
  width: 100%;
}
.p-processing > div > div {
  position: absolute;
  text-align: center;
  padding: 0 1em;
  width: 100%;
  top: 40%;
  left: 0;
}
.p-processing > div > div span.__icon {
  font-size: 4em;
}
.p-processing > div > div span.__icon i {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  animation: fa-spin 1s infinite steps(8);
}
.p-processing > div > div span.__icon i:before {
  content: "\f110";
}
.p-processing > div > div span.__text {
  font-size: 2em;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------------------------------------------------
   新着情報のバナー表示  .p-news-notifier
   -------------------------------------------------------------------------- */
.p-news-notifier > ul {
  padding: 0;
  margin: 0;
}
.p-news-notifier > ul li.__item {
  display: block;
}
.p-news-notifier > ul li.__item.__item--bgcolor-1 {
  background-color: #f2f2f2;
}
.p-news-notifier > ul li.__item.__item--bgcolor-2 {
  background-color: #d1ecf1;
}
.p-news-notifier > ul li.__item.__item--bgcolor-3 {
  background-color: #d4edda;
}
.p-news-notifier > ul li.__item.__item--bgcolor-4 {
  background-color: #fff3cd;
}
.p-news-notifier > ul li.__item.__item--bgcolor-5 {
  background-color: #f8d7da;
}
.p-news-notifier > ul li.__item .__inner {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p-news-notifier > ul li.__item .__inner {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1279px) {
  .p-news-notifier > ul li.__item .__inner {
    max-width: 960px;
  }
}
.p-news-notifier > ul li.__item .__inner p.__content {
  font-size: 0.85em;
  margin: 0;
  padding: 0.5em 2em 0.5em 0.5em;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
}
@media screen and (min-width: 960px) {
  .p-news-notifier > ul li.__item .__inner p.__content {
    padding-left: 0;
    padding-right: 1.5em;
    padding-right: 1.5rem;
  }
}
.p-news-notifier > ul li.__item .__inner span.__close {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  right: 0.5em;
  cursor: pointer;
  color: #666;
}
@media screen and (min-width: 960px) {
  .p-news-notifier > ul li.__item .__inner span.__close {
    right: 0;
  }
}
.p-news-notifier > ul li.__item .__inner span.__close:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5cd";
  padding-right: 0;
}

/* --------------------------------------------------------------------------
   新着情報のモーダル表示  .p-news-modal
   -------------------------------------------------------------------------- */
.p-news-modal .__wrap .__heading {
  margin-bottom: 1em;
}
.p-news-modal .__wrap .__heading span.__page-info {
  display: block;
  text-align: center;
  font-size: 0.85em;
}
.p-news-modal .__wrap .__heading span.__page-info span.__count:before {
  content: "/";
  margin-right: 0.3em;
}
.p-news-modal .__wrap .__heading span.__title {
  font-size: 1.15em;
  font-weight: bold;
}
.p-news-modal .__wrap .__heading span.__date {
  border-top: 1px solid #ccc;
  display: block;
  margin: 0.5em 0;
  padding-top: 0.5em;
  text-align: right;
  font-size: 0.85em;
  color: #666;
}

/* --------------------------------------------------------------------------
   商品オプション表示  .p-product-option
   -------------------------------------------------------------------------- */
.p-product-option {
  border-radius: 0.5em;
  overflow: hidden;
  margin-top: 1em;
  background-color: #f2f2f2;
}
.p-product-option .__option-heading {
  font-size: 0.85em;
  padding: 0.5em 1em;
  background-color: #e6e6e6;
}
.p-product-option .__option-body {
  padding: 0.5em 1em;
}
.p-product-option .__option-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.p-product-option .__option-body ul li.__item {
  display: block;
}
.p-product-option .__option-body ul li.__item dl {
  margin: 0;
}
@media screen and (max-width: 1279px) {
  .p-product-option .__option-body ul li.__item dl dt {
    margin-bottom: 0.5em;
  }
}
.p-product-option .__option-body ul li.__item dl dt .__name {
  font-size: 0.85em;
  font-weight: bold;
}
.p-product-option .__option-body ul li.__item dl dt .__description {
  margin-top: 0.3em;
  font-size: 0.7225em;
}
.p-product-option .__option-body ul li.__item dl dd {
  margin: 0;
}
.p-product-option .__option-body ul li.__item dl dd .__form.__form--radio .__input, .p-product-option .__option-body ul li.__item dl dd .__form.__form--check .__input {
  letter-spacing: -0.5em;
}
.p-product-option .__option-body ul li.__item dl dd .__form.__form--radio .__input label, .p-product-option .__option-body ul li.__item dl dd .__form.__form--check .__input label {
  letter-spacing: normal;
  margin: 0 0.3em 0.3em 0;
}
.p-product-option .__option-body ul li.__item dl dd .__form.__form--text, .p-product-option .__option-body ul li.__item dl dd .__form.__form--textarea {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .p-product-option .__option-body ul li.__item dl dd .__form.__form--text .__input input[type=text],
.p-product-option .__option-body ul li.__item dl dd .__form.__form--text .__input textarea, .p-product-option .__option-body ul li.__item dl dd .__form.__form--textarea .__input input[type=text],
.p-product-option .__option-body ul li.__item dl dd .__form.__form--textarea .__input textarea {
    width: 100%;
  }
}
.p-product-option .__option-body ul li.__item dl dd .__form .__unit {
  font-size: 0.85em;
  white-space: nowrap;
  padding-left: 0.3em;
}
.p-product-option .__option-body ul li.__item dl dd .__rules {
  margin-top: 0.3em;
  font-size: 0.7225em;
}
@media screen and (min-width: 1280px) {
  .p-product-option .__option-body ul li.__item dl {
    letter-spacing: -0.5em;
  }
  .p-product-option .__option-body ul li.__item dl dt, .p-product-option .__option-body ul li.__item dl dd {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
  }
  .p-product-option .__option-body ul li.__item dl dt {
    width: 35%;
    padding-right: 0.5em;
  }
  .p-product-option .__option-body ul li.__item dl dd {
    width: 65%;
  }
}
.p-product-option .__option-body ul li.__item:not(:first-child) {
  padding-top: 0.5em;
  margin-top: 0.5em;
  border-top: 1px dotted #ccc;
}
.p-product-option .__option-body ul li.__item.__is-required dl dt .__name:after {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
  content: "必須";
  margin-left: 0.5em;
}

/* ==============================================================================================
   PAGE
   ページを構成するヘッダーやメインのコンテンツエリア、サイドバーやフッターといったプロジェクト共通のコンテナーブロックのスタイル
   ============================================================================================== */
/* --------------------------------------------------------------------------
   トップページ
   -------------------------------------------------------------------------- */
.main.main--home section.__block {
  background-color: #fff;
}
@media (min-width: 960px) {
  .main.main--home section.__block:not(:last-child) {
    margin-bottom: 2em;
  }
}
.main.main--home section.__block .__heading.__heading--image {
  margin: 0;
}
.main.main--home section.__block .__heading.__heading--image img {
  vertical-align: middle;
}
.main.main--home section.__block.__block--banner img {
  vertical-align: middle;
}
.main.main--home section.__block.__block--feature .__body ul, .main.main--home section.__block.__block--category .__body ul {
  letter-spacing: -0.5em;
  /* 文字間を詰めて隙間を削除する */
  padding: 0.5em 0 0 0.5em;
  margin: 0;
}
.main.main--home section.__block.__block--feature .__body ul li, .main.main--home section.__block.__block--category .__body ul li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  text-align: center;
  padding: 0 0.5em 0.5em 0;
  width: 50%;
}
@media screen and (min-width: 600px) {
  .main.main--home section.__block.__block--feature .__body ul li, .main.main--home section.__block.__block--category .__body ul li {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1280px) {
  .main.main--home section.__block.__block--feature .__body ul li, .main.main--home section.__block.__block--category .__body ul li {
    width: 25%;
  }
}
.main.main--home section.__block.__block--feature .__body ul li a img, .main.main--home section.__block.__block--category .__body ul li a img {
  vertical-align: bottom;
}
.main.main--home section.__block.__block--news .__body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.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 {
  color: #333;
}
.main.main--home section.__block.__block--news .__body ul li > a:hover {
  text-decoration: none;
}
.main.main--home section.__block.__block--news .__body ul li > a:hover span.__title {
  text-decoration: underline;
}
@media (min-width: 600px) {
  .main.main--home section.__block.__block--news .__body ul {
    display: table;
    width: 100%;
  }
  .main.main--home section.__block.__block--news .__body ul li {
    display: table-row-group;
    font-size: 0.85em;
  }
  .main.main--home section.__block.__block--news .__body ul li > a,
.main.main--home section.__block.__block--news .__body ul li > span {
    display: table-row;
  }
  .main.main--home section.__block.__block--news .__body ul li > a span.__date,
.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.__date,
.main.main--home section.__block.__block--news .__body ul li > span span.__title {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: table-cell;
    border-bottom: 1px solid #e6e6e6;
  }
  .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 {
    width: 1em;
    white-space: nowrap;
    padding-right: 0.5em;
  }
  .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 {
    padding-left: 0.5em;
  }
  .main.main--home section.__block.__block--news .__body ul li:last-child > a span.__date,
.main.main--home section.__block.__block--news .__body ul li:last-child > a span.__title,
.main.main--home section.__block.__block--news .__body ul li:last-child > span span.__date,
.main.main--home section.__block.__block--news .__body ul li:last-child > span span.__title {
    border-bottom: none;
  }
}
@media (max-width: 959px) {
  .main.main--home section.__block.__block--news .__body ul li > a,
.main.main--home section.__block.__block--news .__body ul li > span {
    display: table-row;
  }
  .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 {
    padding-left: 1em;
  }
  .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 {
    padding-right: 1em;
  }
}
@media (max-width: 599px) {
  .main.main--home section.__block.__block--news .__body ul {
    display: block;
  }
  .main.main--home section.__block.__block--news .__body ul li {
    display: block;
    border-bottom: 1px solid #e6e6e6;
    padding: 0.5em 1em;
  }
  .main.main--home section.__block.__block--news .__body ul li:last-child {
    border-bottom: 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,
.main.main--home section.__block.__block--news .__body ul li > span span {
    font-size: 0.85em;
  }
  .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;
    padding: 0 0 0.3em 0;
    color: #333;
  }
  .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: 0;
  }
}
@media (max-width: 959px) {
  .main.main--home section.__block.__block--free.__is-text {
    padding-right: 1em;
    padding-left: 1em;
  }
}

/* --------------------------------------------------------------------------
   商品一覧ページ  list.php
   -------------------------------------------------------------------------- */
.main.main--product-list section:not(:first-child):not(.__list) {
  margin-top: 1em;
}
.main.main--product-list section:not(:first-child):not(.__list).__content-bottom, .main.main--product-list section:not(:first-child):not(.__list).__pagination, .main.main--product-list section:not(:first-child):not(.__list).__block.__block--recommend {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--product-list section.__breadcrumb, .main.main--product-list section.__content-top, .main.main--product-list section.__child, .main.main--product-list section.__category-description, .main.main--product-list section.__content-bottom, .main.main--product-list section.__pagination {
    padding: 0 1em;
  }
}
.main.main--product-list section.__child ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  letter-spacing: -0.5em;
}
.main.main--product-list section.__child ul li {
  display: inline-block;
  padding: 0.25em 0;
  letter-spacing: normal;
}
.main.main--product-list section.__child ul li a {
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid #ccc;
}
.main.main--product-list section.__child ul li:last-child a {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.main.main--product-list section.__control {
  padding: 0.5em;
  background: #f2f2f2;
  font-size: 0.85em;
}
.main.main--product-list section.__control .__item-count {
  display: inline-block;
  vertical-align: middle;
  padding: 0.3em 0.6em;
}
.main.main--product-list section.__control .__item-count span {
  font-weight: bold;
}
.main.main--product-list section.__control .__sort-control,
.main.main--product-list section.__control .__view-control {
  display: inline-block;
  vertical-align: middle;
  padding: 0.3em 0.6em;
}
.main.main--product-list section.__control .__sort-control .__title,
.main.main--product-list section.__control .__sort-control .__select,
.main.main--product-list section.__control .__view-control .__title,
.main.main--product-list section.__control .__view-control .__select {
  vertical-align: middle;
  display: inline-block;
}
.main.main--product-list section.__control .__view-control .__select .__button--row:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00b";
}
.main.main--product-list section.__control .__view-control .__select .__button--block:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f009";
}
.main.main--product-list section.__control .__quickorder {
  display: inline-block;
  vertical-align: middle;
  padding: 0.3em 0.6em;
}
.main.main--product-list section.__control .__quickorder a {
  display: inline-block;
  padding: 0.4em 1em;
  border: 1px solid #666;
  border-radius: 2em;
  background: #fff;
}
.main.main--product-list section.__control .__quickorder a:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-left: 0.5em;
}
.main.main--product-list section.__control .__quickorder a:hover {
  text-decoration: none;
  background: #f2f2f2;
}
.main.main--product-list section.__list.__list--row ul.__product {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item {
  border-bottom: 2px solid #ddd;
  background-color: #fff;
  display: block;
  padding: 1em 0;
}
@media screen and (max-width: 959px) {
  .main.main--product-list section.__list.__list--row ul.__product > li.__item {
    margin-bottom: 0.75em;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a {
  display: block;
  padding: 0 1em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a:hover {
  text-decoration: none;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a:hover table tr td.__photo {
  opacity: 0.9;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a:hover table tr td.__detail h2.__title {
  text-decoration: underline;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table {
  width: 100%;
  padding-right: 1em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr {
  vertical-align: top;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo {
  text-align: center;
  width: 9em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo img {
  max-width: 8em;
  max-height: 8em;
  vertical-align: middle;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo.__is-noimage {
  position: relative;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo.__is-noimage .__noimage:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo.__is-noimage .__noimage .__wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ddd;
  color: #fff;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo.__is-noimage .__noimage .__wrap span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 1em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__photo.__is-noimage .__noimage .__wrap span:before {
  content: "NO IMAGE";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail {
  padding-left: 1em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status {
  margin-bottom: 0.2em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  margin-bottom: 0.1em;
  color: #fff;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--new {
  color: #fff;
  font-weight: bold;
  background-color: #2ab27b;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--new span:before {
  content: "新着";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--recommend {
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--recommend span:before {
  content: "おすすめ";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--limited {
  color: #fff;
  font-weight: bold;
  background-color: #f0ad4e;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--limited span:before {
  content: "限定商品";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__status ul li.__label.__label--custom {
  color: #fff;
  font-weight: bold;
  background-color: #333;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail h2.__title {
  font-size: 1.15em;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail h2.__title {
    font-size: 1em;
  }
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__description {
  margin-top: 0.5em;
  text-align: right;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__description dl.__price {
  font-size: 0.85em;
  margin: 0;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__description dl.__price dt, .main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__description dl.__price dd {
  display: inline-block;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item a table tr td.__detail .__description dl.__price dd {
  margin-left: 0.5em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set {
  margin: 1em 0 0 0;
  padding: 0.5em 1em 0 1em;
  font-size: 0.85em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table {
  width: 100%;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr {
  vertical-align: middle;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description,
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order {
  border-top: 1px dotted #e6e6e6;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr:first-child .__description,
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr:first-child .__order {
  border-top: none;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description {
  padding: 0.5em 0.5em 0.5em 0;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__max-order {
  margin-top: 0.3em;
}
@media screen and (min-width: 600px) {
  .main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__tax-type {
    display: inline;
  }
}
@media screen and (max-width: 599px) {
  .main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price {
    margin-top: 0.3em;
  }
}
@media screen and (min-width: 600px) {
  .main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price {
    display: inline;
    text-align: right;
    float: right;
  }
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__selling {
  font-weight: bold;
  display: inline-block;
  font-size: 1.15em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__detail {
  display: inline-block;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__detail:before {
  content: "(";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__detail:after {
  content: ")";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__detail .__mul {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__detail .__mul:before {
  content: "×";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__price .__volume-discount {
  display: block;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment {
  margin-bottom: 0.2em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment > span {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment > span:before {
  content: "決済制限あり";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment > span:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f059";
  padding-left: 0.2em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment > span .__payment-name {
  opacity: 0;
  transition: 0.5s;
  display: inline-block;
  width: fit-content;
  background: #000;
  position: absolute;
  color: #fff;
  padding: 0.8em;
  bottom: 108%;
  left: 40%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  white-space: nowrap;
  visibility: hidden;
  pointer-events: none;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment > span .__payment-name:before {
  content: "利用可能：";
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__description .__payment:hover .__payment-name {
  opacity: 1;
  visibility: visible;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order {
  padding: 0.5em 0;
  white-space: nowrap;
  text-align: right;
  width: 1em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__input input {
  text-align: right;
  margin-right: 0.3em;
  width: 4em;
  display: inline-block;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__input .__error {
  white-space: normal;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__notice dl {
  margin: 0;
  letter-spacing: -0.5em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__notice dl:first-child {
  margin-top: 0.5em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__notice dl dt,
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__notice dl dd {
  letter-spacing: normal;
  display: inline-block;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__notice dl dt:after {
  content: ":";
  margin-left: 0.3em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order .__notice dl dd {
  margin-left: 0.5em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order dl.__cart-count {
  margin: 0.5em 0 0 0;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order dl.__cart-count dt {
  vertical-align: middle;
  display: inline-block;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set table tr td.__order dl.__cart-count dd {
  font-size: 0.85em;
  background-color: #2ab27b;
  color: #fff;
  display: inline-block;
  padding: 0 0.4em;
  margin: 0;
  text-align: center;
  border-radius: 2em;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set .__to-cart {
  text-align: right;
  padding: 0.5em 0 0 0;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item .__set .__to-cart .__button {
  color: #fff;
  font-size: 1.3em;
  background-color: #FA8072;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item.__is-soldout a table tr td.__photo {
  position: relative;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item.__is-soldout a table tr td.__photo .__soldout {
  display: none;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item.__is-soldout a table tr td.__photo .__soldout:before {
  content: "";
  display: block;
  background-image: linear-gradient(rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  top: 0;
  left: 0;
}
.main.main--product-list section.__list.__list--row ul.__product > li.__item.__is-soldout a table tr td.__photo .__soldout:after {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  content: "SOLD OUT";
  z-index: 10;
  top: 50%;
  bottom: 0;
  margin-top: -0.5em;
  font-size: 1.3em;
  color: #fff;
}
.main.main--product-list section.__list .__no-result {
  padding: 1em;
  background-color: #fff3cd;
  margin: 1em 0;
}
.main.main--product-list section.__list .__no-result .__title {
  color: #d9534f;
  margin: 0 0 1em 0;
}
.main.main--product-list section.__list .__no-result .__description {
  margin: 0;
  font-size: 0.85em;
}
.main.main--product-list section.__list .__no-result .__description:after {
  content: "検索条件を変えて再度お試しください。";
}

/* --------------------------------------------------------------------------
   商品詳細ページ  detail.php
   -------------------------------------------------------------------------- */
.main.main--product-detail section:not(:first-child):not(.__information) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--product-detail section.__breadcrumb, .main.main--product-detail section.__content-top, .main.main--product-detail section.__content-middle, .main.main--product-detail section.__content-bottom, .main.main--product-detail section.__common-content-top, .main.main--product-detail section.__common-content-middle, .main.main--product-detail section.__common-content-bottom, .main.main--product-detail section.__add-cart {
    padding: 0 1em;
  }
}
.main.main--product-detail section.__information:before, .main.main--product-detail section.__information:after {
  content: " ";
  display: table;
}
.main.main--product-detail section.__information:after {
  clear: both;
}
@media (min-width: 600px) and (max-width: 959px) {
  .main.main--product-detail section.__information {
    padding: 0 1em;
  }
}
.main.main--product-detail section.__information .__primary {
  margin-top: 1em;
  width: 40%;
  float: left;
  padding: 0 0.75em 0 0;
}
.main.main--product-detail section.__information .__primary .__photo .__main {
  text-align: center;
}
.main.main--product-detail section.__information .__primary .__photo .__main img {
  vertical-align: middle;
  max-height: 26em;
}
.main.main--product-detail section.__information .__primary .__photo .__main.__is-no-image span, .main.main--product-detail section.__information .__primary .__photo .__main.__is-hidden span {
  display: block;
  padding: 2em 0;
  text-align: center;
  background-color: #f2f2f2;
}
.main.main--product-detail section.__information .__primary .__photo .__sub ul {
  list-style-type: none;
  padding: 0;
  margin: 0.5em -0.5em 0 0;
  letter-spacing: -0.5em;
}
.main.main--product-detail section.__information .__primary .__photo .__sub ul li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  padding: 0 0.5em 0.5em 0;
  width: 33.333333%;
}
@media (min-width: 600px) and (max-width: 1279px) {
  .main.main--product-detail section.__information .__primary .__photo .__sub ul li {
    width: 50%;
  }
}
.main.main--product-detail section.__information .__primary .__photo .__sub ul li a {
  display: block;
  text-align: center;
}
.main.main--product-detail section.__information .__primary .__photo .__sub ul li a img {
  max-height: 8em;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .main.main--product-detail section.__information .__primary .__photo .__sub ul {
    padding: 0 0.5em;
    margin: 0.5em 0 0 0;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .main.main--product-detail section.__information .__primary .__photo .__sub ul li {
    white-space: normal;
    width: 30.76%;
  }
  .main.main--product-detail section.__information .__primary .__photo .__sub ul li a img {
    max-height: 10em;
  }
}
.main.main--product-detail section.__information .__secondary {
  width: 60%;
  float: right;
  padding: 0 0 0 0.75em;
  margin-top: 1em;
}
.main.main--product-detail section.__information .__secondary .__status ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0.5em 0;
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  margin-bottom: 0.2em;
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--new {
  color: #fff;
  font-weight: bold;
  background-color: #2ab27b;
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--new span:before {
  content: "新着";
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--recommend {
  color: #fff;
  font-weight: bold;
  background-color: #d9534f;
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--recommend span:before {
  content: "おすすめ";
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--limited {
  color: #fff;
  font-weight: bold;
  background-color: #f0ad4e;
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--limited span:before {
  content: "限定商品";
}
.main.main--product-detail section.__information .__secondary .__status ul li.__item.__item--custom {
  color: #fff;
  font-weight: bold;
  background-color: #333;
}
.main.main--product-detail section.__information .__secondary h1.__title {
  font-size: 1.5em;
  margin: 0;
}
.main.main--product-detail section.__information .__secondary .__catch {
  font-size: 1.15em;
  font-weight: bold;
  margin-top: 1em;
  margin-top: 1rem;
}
.main.main--product-detail section.__information .__secondary .__description {
  margin-top: 1em;
  color: #666;
}
.main.main--product-detail section.__information .__secondary .__spec {
  margin-top: 1em;
}
.main.main--product-detail section.__information .__secondary .__spec .__table {
  font-size: 0.85em;
}
.main.main--product-detail section.__information .__secondary .__control {
  margin-top: 0.5em;
  padding: 0.5em 0;
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark,
.main.main--product-detail section.__information .__secondary .__control span.__download {
  display: inline-block;
  padding: 0.5em 0.5em 0 0;
}
@media (max-width: 599px) {
  .main.main--product-detail section.__information .__secondary .__control span.__bookmark,
.main.main--product-detail section.__information .__secondary .__control span.__download {
    display: block;
    padding: 0.5em 1em;
  }
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button,
.main.main--product-detail section.__information .__secondary .__control span.__download .__button {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2em;
}
@media (max-width: 599px) {
  .main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button,
.main.main--product-detail section.__information .__secondary .__control span.__download .__button {
    display: block;
    width: 100%;
  }
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f005";
  margin-right: 0.5em;
  color: #f0ad4e;
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button:after {
  content: "お気に入りに追加する";
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button.__is-added {
  background-color: #ccc;
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button.__is-added:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f005";
}
.main.main--product-detail section.__information .__secondary .__control span.__bookmark .__button.__is-added:after {
  content: "お気に入りに追加済み";
}
.main.main--product-detail section.__information .__secondary .__control span.__download .__button {
  text-decoration: none;
}
.main.main--product-detail section.__information .__secondary .__control span.__download .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f019";
  margin-right: 0.5em;
  color: #2ab27b;
}
.main.main--product-detail section.__information .__secondary .__control span.__download .__button:after {
  content: "ファイルダウンロード";
}
@media screen and (max-width: 599px) {
  .main.main--product-detail section.__information .__primary,
.main.main--product-detail section.__information .__secondary {
    width: auto;
    float: none;
    padding: 0;
  }
  .main.main--product-detail section.__information .__secondary .__status,
.main.main--product-detail section.__information .__secondary .__title,
.main.main--product-detail section.__information .__secondary .__catch,
.main.main--product-detail section.__information .__secondary .__description {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--product-detail section.__add-cart {
  text-align: right;
}
.main.main--product-detail section.__block.__block--recommend {
  margin-top: 2em;
}

/* --------------------------------------------------------------------------
   お問い合わせフォーム  contact.php
   -------------------------------------------------------------------------- */
.main.main--contact-form section:not(:first-child),
.main.main--contact-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--contact-form section.__content-top, .main.main--contact-form section.__content-bottom, .main.main--contact-form section.__submit,
.main.main--contact-finish section.__content-top,
.main.main--contact-finish section.__content-bottom,
.main.main--contact-finish section.__submit {
    padding: 0 1em;
  }
}

.main.main--contact-form section.__submit {
  text-align: center;
}

.main.main--contact-finish section.__message h2 {
  font-size: 1.3em;
  margin: 0;
}
.main.main--contact-finish section.__message p {
  margin: 1em 0 0 0;
}
.main.main--contact-finish section.__back-home a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  padding-right: 0.3em;
}

/* --------------------------------------------------------------------------
   会社概要  corporate.php
   -------------------------------------------------------------------------- */
.main.main--corporate .__description,
.main.main--corporate .__profile {
  margin-top: 1em;
}
.main.main--corporate .__open {
  margin-top: 1.5em;
}
.main.main--corporate .__open .__content,
.main.main--corporate .__open .__text {
  margin-top: 1em;
}
.main.main--corporate .__open .__title {
  font-size: 1.5em;
  margin: 0;
}
@media screen and (max-width: 959px) {
  .main.main--corporate .__description {
    padding: 0 1em;
    padding: 0 1rem;
  }
  .main.main--corporate .__open .__title,
.main.main--corporate .__open .__text {
    padding: 0 1em;
    padding: 0 1rem;
  }
}

/* --------------------------------------------------------------------------
   会員登録フォーム  regist.php
   -------------------------------------------------------------------------- */
.main.main--regist .__content-top {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--regist .__content-top {
    padding: 0 1em;
  }
}

.main.main--regist-form .__submit,
.main.main--regist-confirm .__submit {
  margin-top: 1em;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .main.main--regist-form .__submit,
.main.main--regist-confirm .__submit {
    padding: 0 1em;
  }
}
.main.main--regist-form .__content-form,
.main.main--regist-confirm .__content-form {
  margin-top: 1em;
}

.main.main--regist-form .__content-form .__table tr.__row-paid td .__description {
  font-size: 0.85em;
  margin-bottom: 1em;
}
.main.main--regist-form .__content-form .__table tr.__row-mf_kessai td .__description, .main.main--regist-form .__content-form .__table tr.__row-b_kake td .__description {
  font-size: 0.85em;
  margin-bottom: 1em;
}
.main.main--regist-form .__content-form .__table tr.__row-mm_flag td .__description {
  margin-top: 0.5em;
}
.main.main--regist-form .__content-form .__table tr.__row-mm_flag td .__description.__is-text {
  font-size: 0.85em;
}
.main.main--regist-form .__kiyaku {
  margin-top: 1em;
}
.main.main--regist-form .__kiyaku .__table tr td .__content {
  border: 1px solid #ccc;
  height: 15em;
  overflow: auto;
  padding: 0.5em;
  background-color: #fff;
  font-size: 0.85em;
}
.main.main--regist-form .__kiyaku .__table tr td .__check-wrap {
  margin-top: 0.5em;
  text-align: center;
}

.main.main--regist-confirm .__description {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--regist-confirm .__description {
    padding: 0 1em;
  }
}
.main.main--regist-confirm .__back {
  margin-top: 1em;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .main.main--regist-confirm .__back {
    text-align: center;
  }
}
.main.main--regist-confirm .__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

.main.main--regist-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--regist-finish section.__message, .main.main--regist-finish section.__back-home {
    padding: 0 1em;
  }
}
.main.main--regist-finish section.__message .__title {
  margin: 0;
  font-size: 1.3em;
}
.main.main--regist-finish section.__message .__text {
  margin-top: 1em;
}
.main.main--regist-finish section.__back-home a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  padding-right: 0.3em;
}

.main--regist-email-verification-code-send section:not(:first-child),
.main--regist-email-verification-code-verify section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main--regist-email-verification-code-send section.__description, .main--regist-email-verification-code-send section.__back, .main--regist-email-verification-code-send section.__submit,
.main--regist-email-verification-code-verify section.__description,
.main--regist-email-verification-code-verify section.__back,
.main--regist-email-verification-code-verify section.__submit {
    padding: 0 1em;
  }
}
.main--regist-email-verification-code-send section.__back .__button:before,
.main--regist-email-verification-code-verify section.__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}
.main--regist-email-verification-code-send form section:first-child,
.main--regist-email-verification-code-verify form section:first-child {
  margin-top: 1em;
}
.main--regist-email-verification-code-send section.__submit,
.main--regist-email-verification-code-verify section.__submit {
  text-align: center;
}

/* --------------------------------------------------------------------------
   ログインページ  login.php
   -------------------------------------------------------------------------- */
.main.main--login section:not(:first-child) {
  margin-top: 1em;
}
.main.main--login section:not(:first-child).__to-order {
  margin-top: 2em;
}
.main.main--login section.__content-top, .main.main--login section.__submit {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--login section.__content-top, .main.main--login section.__submit {
    padding: 0 1em;
  }
}
.main.main--login section.__back {
  margin-top: 1em;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .main.main--login section.__back {
    text-align: center;
  }
}
.main.main--login section.__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}
.main.main--login section.__input .__remember {
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .main.main--login section.__input table tr th {
    vertical-align: middle;
  }
}
.main.main--login section.__submit {
  text-align: center;
}
.main.main--login section.__to-order {
  padding: 2em 1em 0 1em;
  border-top: 1px solid #ccc;
  text-align: center;
}
.main.main--login section.__to-order .__link {
  color: #FA8072;
  background-color: #fff;
  border: 1px solid #FA8072;
}
.main.main--login section.__to-order .__link:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-left: 0.5em;
}
@media screen and (min-width: 600px) {
  .main.main--login {
    width: 600px !important;
    margin-right: auto;
    margin-left: auto;
  }
}

.main.main--login-tsa section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--login-tsa section.__description, .main.main--login-tsa section.__back, .main.main--login-tsa section.__submit {
    padding: 0 1em;
  }
}
.main.main--login-tsa section.__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}
.main.main--login-tsa form section:first-child {
  margin-top: 1em;
}

/* --------------------------------------------------------------------------
   新着情報ページ  news.php
   -------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  .main.main--news-list section:not(.__news) {
    padding: 0 1em;
  }
}
.main.main--news-list section.__pagination {
  margin-top: 1.5em;
}
.main.main--news-list section.__news {
  margin-top: 0.5em;
}
.main.main--news-list section.__news ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--news-list section.__news ul li > a span.__date,
.main.main--news-list section.__news ul li > span span.__date {
  color: #333;
}
.main.main--news-list section.__news ul li > a:hover {
  text-decoration: none;
}
.main.main--news-list section.__news ul li > a:hover span.__title {
  text-decoration: underline;
}
@media (min-width: 600px) {
  .main.main--news-list section.__news ul {
    display: table;
    width: 100%;
  }
  .main.main--news-list section.__news ul li {
    display: table-row-group;
  }
  .main.main--news-list section.__news ul li > a,
.main.main--news-list section.__news ul li > span {
    display: table-row;
  }
  .main.main--news-list section.__news ul li > a span.__date,
.main.main--news-list section.__news ul li > a span.__title,
.main.main--news-list section.__news ul li > span span.__date,
.main.main--news-list section.__news ul li > span span.__title {
    padding-top: 1em;
    padding-bottom: 1em;
    display: table-cell;
    border-bottom: 1px solid #e6e6e6;
  }
  .main.main--news-list section.__news ul li > a span.__date,
.main.main--news-list section.__news ul li > span span.__date {
    width: 1em;
    white-space: nowrap;
    padding-right: 0.5em;
  }
  .main.main--news-list section.__news ul li > a span.__title,
.main.main--news-list section.__news ul li > span span.__title {
    padding-left: 0.5em;
  }
}
@media (max-width: 959px) {
  .main.main--news-list section.__news ul li > a,
.main.main--news-list section.__news ul li > span {
    display: table-row;
  }
  .main.main--news-list section.__news ul li > a span.__date,
.main.main--news-list section.__news ul li > span span.__date {
    padding-left: 1em;
  }
  .main.main--news-list section.__news ul li > a span.__title,
.main.main--news-list section.__news ul li > span span.__title {
    padding-right: 1em;
  }
}
@media (max-width: 599px) {
  .main.main--news-list section.__news ul {
    display: block;
  }
  .main.main--news-list section.__news ul li {
    display: block;
    border-bottom: 1px solid #e6e6e6;
    padding: 0.5em 1em;
  }
  .main.main--news-list section.__news ul li > a,
.main.main--news-list section.__news ul li > span {
    display: block;
  }
  .main.main--news-list section.__news ul li > a span,
.main.main--news-list section.__news ul li > span span {
    font-size: 0.85em;
  }
  .main.main--news-list section.__news ul li > a span.__date,
.main.main--news-list section.__news ul li > span span.__date {
    display: block;
    padding: 0 0 0.3em 0;
    color: #333;
  }
  .main.main--news-list section.__news ul li > a span.__title,
.main.main--news-list section.__news ul li > span span.__title {
    display: block;
    padding: 0;
  }
}

.main.main--news-detail section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--news-detail section {
    padding: 0 1em;
  }
}
.main.main--news-detail section.__article .__title h1 {
  font-size: 1.5em;
  margin: 0;
}
.main.main--news-detail section.__article .__date {
  text-align: right;
  margin-top: 0.5em;
}
.main.main--news-detail section.__article .__date span {
  font-size: 0.85em;
  color: #666;
}
.main.main--news-detail section.__article .__content {
  margin-top: 1em;
}
.main.main--news-detail section.__article .__content p {
  margin: 0;
}
.main.main--news-detail section.__to-list {
  margin-top: 2em;
}
.main.main--news-detail section.__to-list a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}

/* --------------------------------------------------------------------------
   自由ページ  page/*
   -------------------------------------------------------------------------- */
.main.main--page-detail-1column section:not(:first-child),
.main.main--page-detail-2column section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--page-detail-1column section:not(.__heading),
.main.main--page-detail-2column section:not(.__heading) {
    padding: 0 1em;
  }
}
.main.main--page-detail-1column section.__content.__is-text p,
.main.main--page-detail-2column section.__content.__is-text p {
  margin: 0;
}
.main.main--page-detail-1column section.__to-home,
.main.main--page-detail-2column section.__to-home {
  margin-top: 1.5em;
}
.main.main--page-detail-1column section.__to-home a:before,
.main.main--page-detail-2column section.__to-home a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}

/* --------------------------------------------------------------------------
   ご利用案内ページ  howto.php
   -------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  .main.main--howto .__h1,
.main.main--howto .__content-top,
.main.main--howto .__content-bottom,
.main.main--howto .__step .__heading,
.main.main--howto .__step .__body {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--howto .__content-top,
.main.main--howto .__content-bottom,
.main.main--howto .__step {
  margin-top: 1.5em;
  margin-top: 1.5rem;
}
.main.main--howto .__step h2.__heading {
  font-size: 1.5em;
}
.main.main--howto .__step .__body ul.__list {
  list-style-type: none;
  padding: 0;
}
.main.main--howto .__step .__body ul.__list li.__item {
  display: block;
  margin-top: 1.5em;
}
.main.main--howto .__step .__body ul.__list li.__item .__title {
  margin: 0;
  font-size: 1.15em;
}
.main.main--howto .__step .__body ul.__list li.__item .__description {
  margin-top: 0.5em;
}

/* --------------------------------------------------------------------------
   利用規約ページ  kiyaku.php
   -------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  .main.main--kiyaku .__h1,
.main.main--kiyaku .__content {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--kiyaku .__content {
  margin-top: 1em;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   特定商取引法に基づく表記  law.php
   -------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  .main.main--law .__h1,
.main.main--law .__content-top,
.main.main--law .__content-bottom {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--law .__content-top,
.main.main--law .__content-bottom,
.main.main--law .__information {
  margin-top: 1.5em;
  margin-top: 1.5rem;
}
.main.main--law .__information table.__table tr.__shipping-cost td .__cost-list {
  margin-top: 0.5em;
}
.main.main--law .__information table.__table tr.__shipping-cost td .__cost-list a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}

/* --------------------------------------------------------------------------
   個人情報の取り扱いについて  privacy.php
   -------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  .main.main--privacy .__h1,
.main.main--privacy .__content {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--privacy .__content {
  margin-top: 1em;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   サイトマップ  sitemap.php
   -------------------------------------------------------------------------- */
.main.main--sitemap:before, .main.main--sitemap:after {
  content: " ";
  display: table;
}
.main.main--sitemap:after {
  clear: both;
}
@media screen and (max-width: 959px) {
  .main.main--sitemap .__h1,
.main.main--sitemap .__wrap .__block {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--sitemap .__wrap {
  letter-spacing: -0.5em;
}
.main.main--sitemap .__wrap .__block {
  letter-spacing: normal;
  width: 100%;
  margin-top: 1em;
  margin-top: 1rem;
  display: inline-block;
  vertical-align: top;
}
.main.main--sitemap .__wrap .__block h2.__heading {
  font-size: 1.5em;
  margin: 0;
}
.main.main--sitemap .__wrap .__block .__body {
  margin-top: 1em;
}
.main.main--sitemap .__wrap .__block .__body ul {
  list-style-type: none;
  padding: 0;
}
.main.main--sitemap .__wrap .__block .__body ul li {
  display: block;
}
.main.main--sitemap .__wrap .__block .__body ul li a {
  display: block;
  padding: 0.25em 0;
}
.main.main--sitemap .__wrap .__block .__body ul li a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-right: 0.5em;
  color: #ccc;
}
@media screen and (min-width: 600px) {
  .main.main--sitemap .__wrap .__block {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .main.main--sitemap .__wrap .__block {
    width: 33%;
  }
}

/* --------------------------------------------------------------------------
   ショッピングカート  cart.php
   -------------------------------------------------------------------------- */
.main.main--cart section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--cart section.__content-top, .main.main--cart section.__content-bottom, .main.main--cart section.__shipping-wrap .__shipping {
    padding: 0 1em;
  }
}
.main.main--cart section.__shipping-wrap .__shipping h2.__shipping-title {
  margin: 0;
}
.main.main--cart section.__shipping-wrap .__shipping h2.__shipping-title span.__group {
  font-size: 0.85em;
  font-weight: normal;
}
.main.main--cart section.__shipping-wrap .__shipping p.__shipping-description {
  margin: 1em 0 0 0;
}
.main.main--cart section.__shipping-wrap .__shipping .__shipping-cost-alert .__price,
.main.main--cart section.__shipping-wrap .__shipping .__shipping-cost-alert .__free {
  font-weight: bold;
}
.main.main--cart section.__shipping-wrap .__shipping .__shipping-cost-alert .__not-free-regions {
  font-size: 0.85em;
  margin-top: 0.75em;
}
.main.main--cart section.__shipping-wrap .__shipping .__product {
  margin-top: 1em;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__title .__toggle {
  display: inline-block;
  margin-left: 0.5em;
  color: #666;
  cursor: pointer;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__title .__toggle:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-right: 0.3em;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more {
  display: none;
  margin-top: 1em;
  white-space: normal;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more.__is-open {
  display: block;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more .__description {
  text-align: left;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul li {
  display: block;
  margin: 0.75em 0;
  text-align: left;
  font-weight: bold;
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul li:before {
  content: "※";
  margin-right: 0.3em;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul li dl {
  font-weight: normal;
  display: inline-block;
  margin: 0;
  text-indent: 0;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul li dl dt {
  display: inline-block;
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul li dl dt:after {
  content: ":";
}
.main.main--cart section.__shipping-wrap .__shipping .__product table tbody tr td.__order .__body .__order-alert .__parent-stock-error .__more ul li dl dd {
  display: inline-block;
  margin: 0;
}
.main.main--cart section.__shipping-wrap .__shipping .__control {
  margin-top: 1.5em;
}
.main.main--cart section.__shipping-wrap .__shipping .__control ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--cart section.__shipping-wrap .__shipping .__control ul li.__to-estimate .__button {
  background-color: #fff;
  color: #FA8072;
  border: 1px solid #FA8072;
  font-weight: bold;
}
.main.main--cart section.__shipping-wrap .__shipping .__control ul li.__to-order .__button {
  background-color: #FA8072;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .main.main--cart section.__back {
    margin: 1em 0;
  }
  .main.main--cart section.__shipping-wrap .__shipping {
    border-top: 2px solid #ddd;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .main.main--cart section.__shipping-wrap .__shipping .__control ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: right;
    letter-spacing: -0.5em;
  }
  .main.main--cart section.__shipping-wrap .__shipping .__control ul li {
    letter-spacing: normal;
    display: inline-block;
    margin: 0 0 0.5em 0.75em;
  }
}
@media screen and (max-width: 599px) {
  .main.main--cart section.__shipping-wrap {
    background-color: #f2f2f2;
  }
  .main.main--cart section.__shipping-wrap .__shipping {
    padding-top: 1em;
    padding-bottom: 1em;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin-bottom: 0.75em;
  }
  .main.main--cart section.__shipping-wrap .__shipping:last-child {
    margin-bottom: 0;
  }
  .main.main--cart section.__shipping-wrap .__shipping h2.__shipping-title span.__group {
    display: block;
  }
  .main.main--cart section.__shipping-wrap .__shipping .__control ul li {
    margin-top: 0.75em;
  }
  .main.main--cart section.__shipping-wrap .__shipping .__control ul li .__button {
    display: block;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   注文フォーム  order.php
   -------------------------------------------------------------------------- */
.main.main--order-form section:not(:first-child),
.main.main--order-confirm section:not(:first-child) {
  margin-top: 1em;
}
.main.main--order-form section:not(:first-child).__block, .main.main--order-form section:not(:first-child).__submit,
.main.main--order-confirm section:not(:first-child).__block,
.main.main--order-confirm section:not(:first-child).__submit {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--order-form section.__block > .__heading, .main.main--order-form section.__block > .__body > .__description, .main.main--order-form section.__block.__block--order, .main.main--order-form section.__content-top, .main.main--order-form section.__content-bottom, .main.main--order-form section.__submit, .main.main--order-form section.__back,
.main.main--order-confirm section.__block > .__heading,
.main.main--order-confirm section.__block > .__body > .__description,
.main.main--order-confirm section.__block.__block--order,
.main.main--order-confirm section.__content-top,
.main.main--order-confirm section.__content-bottom,
.main.main--order-confirm section.__submit,
.main.main--order-confirm section.__back {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--order-form section.__block > .__heading,
.main.main--order-confirm section.__block > .__heading {
  margin: 0;
}
.main.main--order-form section.__block > .__body > .__description,
.main.main--order-confirm section.__block > .__body > .__description {
  margin: 1em 0 0 0;
}
.main.main--order-form section.__block table:not(.__form),
.main.main--order-confirm section.__block table:not(.__form) {
  margin-top: 1em;
}
.main.main--order-form section.__block table tr td .__description,
.main.main--order-confirm section.__block table tr td .__description {
  font-size: 0.85em;
  margin-bottom: 0.5em;
}
.main.main--order-form section.__block.__block--order,
.main.main--order-confirm section.__block.__block--order {
  margin-bottom: 2em;
}
.main.main--order-form section.__block.__block--point table tr td .__input,
.main.main--order-confirm section.__block.__block--point table tr td .__input {
  text-align: right;
  width: 5em;
}
@media screen and (min-width: 600px) {
  .main.main--order-form section.__block.__block--shipping-address .__body table.__form tbody tr:first-child td, .main.main--order-form section.__block.__block--shipping-address .__body table.__form tbody tr:first-child th,
.main.main--order-confirm section.__block.__block--shipping-address .__body table.__form tbody tr:first-child td,
.main.main--order-confirm section.__block.__block--shipping-address .__body table.__form tbody tr:first-child th {
    border-top: none;
  }
}
@media screen and (max-width: 599px) {
  .main.main--order-form section.__block.__block--shipping-address .__body table.__form tbody tr:first-child,
.main.main--order-confirm section.__block.__block--shipping-address .__body table.__form tbody tr:first-child {
    border-top: 1px solid #ddd;
  }
}
.main.main--order-form section.__block.__block--shipping-cost table tr td .__link a:before,
.main.main--order-confirm section.__block.__block--shipping-cost table tr td .__link a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li {
  display: block;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted #ddd;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li:last-child,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__description,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__description {
  font-size: 0.85em;
  margin: 0.5em 0 0 0;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__description .__prepend.__is-mf,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__description .__prepend.__is-mf {
  color: #d9534f;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__description .__b-kake-logo a:hover,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__description .__b-kake-logo a:hover {
  opacity: 0.7;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__description .__b-kake-logo a img,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__description .__b-kake-logo a img {
  width: 270px;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__description .__b-credit-logo,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__description .__b-credit-logo {
  padding: 1em 0.5em 0 0.5em;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__description .__b-credit-logo img,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__description .__b-credit-logo img {
  width: 180px;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__custom,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__custom {
  margin-top: 0.5em;
  font-size: 0.85em;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__summary,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__summary {
  margin: 0.5em 0 0 0;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__summary a:before,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__summary a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__summary a.__is-open:before,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__summary a.__is-open:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__body,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__name .__invalid-sets .__body {
  display: none;
}
.main.main--order-form section.__block.__block--payment .__body table tr td > ul > li .__name .__alert-estimate-order-payment,
.main.main--order-confirm section.__block.__block--payment .__body table tr td > ul > li .__name .__alert-estimate-order-payment {
  font-size: 0.85em;
  color: #d9534f;
  margin: 0.5em 0 0 0;
}
.main.main--order-form section.__block.__block--approval-mess table tr td .__approver label,
.main.main--order-confirm section.__block.__block--approval-mess table tr td .__approver label {
  text-align: left;
}
.main.main--order-form section.__submit,
.main.main--order-confirm section.__submit {
  text-align: center;
}
.main.main--order-form section.__back,
.main.main--order-confirm section.__back {
  margin-top: 1em;
  text-align: left;
}
@media screen and (max-width: 959px) {
  .main.main--order-form section.__back,
.main.main--order-confirm section.__back {
    text-align: center;
  }
}
.main.main--order-form section.__back .__button:before,
.main.main--order-confirm section.__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li {
  display: block;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li:not(:last-child) {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted #ccc;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl {
  display: inline-block;
  margin: 0;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl dt, .main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl dd {
  display: inline-block;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl dt:after {
  content: ":";
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl dd {
  margin: 0;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl.__name {
  font-size: 0.85em;
  margin-right: 1em;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li dl.__expire {
  font-size: 0.85em;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li .__control dl.__number {
  font-size: 0.85em;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered td ul li .__control span.__delete {
  font-size: 0.85em;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-new td dl, .main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered-option td dl {
  margin: 0 0 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px dotted #ccc;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-new td dl dd, .main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered-option td dl dd {
  margin: 0.3em 0 0 0;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-new td dl:last-child, .main.main--order-confirm section.__block.__block--credit .__body table tr.__row-card-registered-option td dl:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-3d-secure-agree .__line-notice, .main.main--order-confirm section.__block.__block--payment .__body table tr.__row-3d-secure-agree .__line-notice {
  font-weight: bold;
  color: #666;
  font-size: 0.85em;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-3d-secure-agree .__content, .main.main--order-confirm section.__block.__block--payment .__body table tr.__row-3d-secure-agree .__content {
  padding: 1em;
  font-size: 0.85em;
  margin: 0.5em 0 0 0;
  background-color: #d1ecf1;
}
.main.main--order-confirm section.__block.__block--credit .__body table tr.__row-3d-secure-agree .__content .__content-info, .main.main--order-confirm section.__block.__block--payment .__body table tr.__row-3d-secure-agree .__content .__content-info {
  margin: 1em 0 0 0;
}

.main.main--order-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--order-finish section.__content-top, .main.main--order-finish section.__back-home {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--order-finish section.__back-home a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.main.main--order-finish section.__estimate-pdf {
  text-align: center;
}
.main.main--order-finish section.__estimate-pdf a {
  background-color: #2ab27b;
  color: #fff;
  display: inline-block;
  font-size: 1.3em;
}
.main.main--order-finish section.__estimate-pdf a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f15c";
  margin-right: 0.3em;
}
.main.main--order-finish section.__continue-order p.__text {
  margin: 0 0 1em 0;
}
.main.main--order-finish section.__continue-order .__to-cart a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.main.main--order-finish section.__payment-link p.__description {
  margin: 0 0 1em 0;
}
.main.main--order-finish section.__payment-link p.__description-bottom {
  margin: 1em 0 0 0;
  color: #666;
}

/* --------------------------------------------------------------------------
   クレジットカード決済ページ（リンク型）  order.php
   -------------------------------------------------------------------------- */
.main.main--credit section:not(:first-child) {
  margin-top: 1em;
}
.main.main--credit .__order {
  padding: 0.5em 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.main.main--credit .__order dl {
  margin: 0.5em 0;
}
.main.main--credit .__order dl dt,
.main.main--credit .__order dl dd {
  display: inline-block;
}
.main.main--credit .__order dl dt {
  font-weight: bold;
}
.main.main--credit .__order dl dt:after {
  content: ":";
  margin-right: 0.3em;
}
.main.main--credit .__order dl dd {
  margin: 0;
}
.main.main--credit section.__payment-link p.__description {
  margin: 0 0 1em 0;
}
.main.main--credit section.__payment-link p.__description-bottom {
  margin: 2em 0 0 0;
  margin: 1.5rem 0 0 0;
  font-size: 0.85em;
}

/* --------------------------------------------------------------------------
   送料一覧
   -------------------------------------------------------------------------- */
.main.main--send-cost-list {
  /* 縦列の色変更用のクラス(jQueryで使用) */
}
.main.main--send-cost-list .__description,
.main.main--send-cost-list .__price {
  margin-top: 1em;
  padding: 0 1em;
}
.main.main--send-cost-list .__description {
  font-size: 0.85em;
}
.main.main--send-cost-list .__price {
  overflow-x: scroll;
  height: 440px;
  padding-left: 0;
  margin-left: 1em;
}
.main.main--send-cost-list .__price table {
  border-collapse: separate;
  border-spacing: 0;
  border-right: 1px solid #ddd;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .main.main--send-cost-list .__price table {
    font-size: 0.85em;
  }
}
.main.main--send-cost-list .__price table tr th,
.main.main--send-cost-list .__price table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  white-space: nowrap;
  width: 1em;
}
.main.main--send-cost-list .__price table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
  text-align: center;
}
.main.main--send-cost-list .__price table thead {
  position: sticky;
  top: 0;
  z-index: 100;
}
.main.main--send-cost-list .__price table thead tr th {
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}
.main.main--send-cost-list .__price table thead tr th:first-child {
  position: sticky;
  left: 0;
}
.main.main--send-cost-list .__price table tbody tr:hover th, .main.main--send-cost-list .__price table tbody tr:hover td {
  background-color: #f2f2f2;
}
.main.main--send-cost-list .__price table tbody tr th {
  position: sticky;
  left: 0;
}
.main.main--send-cost-list .__price table tbody tr td {
  text-align: right;
}
.main.main--send-cost-list .__price table tbody tr td:hover {
  background-color: #dddddd;
}
.main.main--send-cost-list .js-hover {
  background-color: #f2f2f2;
}

/* --------------------------------------------------------------------------
   クイックオーダー  order_list.php
   -------------------------------------------------------------------------- */
.main.main--quickorder-form section:not(:first-child) {
  margin-top: 1em;
}
.main.main--quickorder-form section:not(:first-child).__csv-form, .main.main--quickorder-form section:not(:first-child).__input-form {
  margin-top: 1.5em;
}
.main.main--quickorder-form section.__csv-form .__body, .main.main--quickorder-form section.__input-form .__body {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--quickorder-form section.__content-top, .main.main--quickorder-form section.__csv-form .__heading, .main.main--quickorder-form section.__input-form .__heading, .main.main--quickorder-form section.__add, .main.main--quickorder-form section.__submit {
    padding: 0 1em;
    padding: 0 1rem;
  }
}
.main.main--quickorder-form .__csv-form .__heading {
  font-weight: bold;
  font-size: 1.3em;
}
.main.main--quickorder-form .__csv-form .__body .__table tr td .__description {
  font-size: 0.85em;
  margin-top: 1em;
}
.main.main--quickorder-form .__csv-form .__body .__table tr td .__sample {
  margin-top: 0.5em;
}
.main.main--quickorder-form .__csv-form .__body .__table tr td .__sample a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f019";
  margin-right: 0.3em;
}
.main.main--quickorder-form .__input-form .__heading {
  font-weight: bold;
  font-size: 1.3em;
}
.main.main--quickorder-form .__input-form .__body .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--quickorder-form .__input-form .__body .__table tr th,
.main.main--quickorder-form .__input-form .__body .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--quickorder-form .__input-form .__body .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--quickorder-form .__input-form .__body .__table thead th {
  white-space: nowrap;
  text-align: center;
}
.main.main--quickorder-form .__input-form .__body .__table thead th.__order {
  padding-left: 0;
  padding-right: 0;
}
.main.main--quickorder-form .__input-form .__body .__table tbody tr td {
  vertical-align: middle;
}
.main.main--quickorder-form .__input-form .__body .__table tbody tr td.__no {
  width: 100%;
}
.main.main--quickorder-form .__input-form .__body .__table tbody tr td.__no input {
  width: 100%;
}
.main.main--quickorder-form .__input-form .__body .__table tbody tr td.__order {
  white-space: nowrap;
  width: 1em;
  padding-left: 0;
  padding-right: 0;
}
.main.main--quickorder-form .__input-form .__body .__table tbody tr td.__order input {
  width: 4em;
  text-align: right;
}
.main.main--quickorder-form .__input-form .__body .__table tbody tr td.__delete {
  width: 1em;
  white-space: nowrap;
}
.main.main--quickorder-form .__submit {
  text-align: center;
}
.main.main--quickorder-form .__add {
  text-align: right;
}
.main.main--quickorder-form .__add .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f055";
  margin-right: 0.3em;
}

.main.main--quickorder-confirm section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--quickorder-confirm section.__content-top, .main.main--quickorder-confirm section.__submit, .main.main--quickorder-confirm section.__back {
    padding: 0 1em;
  }
}
.main.main--quickorder-confirm .__input-form .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--quickorder-confirm .__input-form .__table tr th,
.main.main--quickorder-confirm .__input-form .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--quickorder-confirm .__input-form .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--quickorder-confirm .__input-form .__table thead th {
  white-space: nowrap;
  text-align: center;
}
.main.main--quickorder-confirm .__input-form .__table thead th.__order {
  padding-left: 0;
  padding-right: 0;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td {
  vertical-align: middle;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description {
  width: 100%;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__error {
  margin-top: 0;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__no .__toggle {
  display: inline-block;
  margin-left: 0.5em;
  color: #666;
  cursor: pointer;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__no .__toggle:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-right: 0.3em;
}
@media screen and (min-width: 600px) {
  .main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__no .__toggle {
    font-size: 0.85em;
  }
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more {
  margin-top: 0.5em;
  display: none;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more:before, .main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more:after {
  content: " ";
  display: table;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more:after {
  clear: both;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more.__is-open {
  display: block;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__image {
  float: left;
  padding-right: 1em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__image img {
  max-height: 5em;
  max-width: 5em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail {
  display: inline;
  font-size: 0.85em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail dl {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail dl dt,
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail dl dd {
  display: inline-block;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail dl dt {
  display: inline-block;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail dl dt:after {
  content: ":";
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__description .__more .__detail dl dd {
  margin: 0;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order {
  white-space: nowrap;
  width: 1em;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__input input {
  width: 4em;
  text-align: right;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice {
  font-size: 0.85em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice dl {
  margin: 0;
  letter-spacing: -0.5em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice dl:first-child {
  margin-top: 0.5em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice dl dt,
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice dl dd {
  letter-spacing: normal;
  display: inline-block;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice dl dt:after {
  content: ":";
  margin-left: 0.3em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order .__notice dl dd {
  margin-left: 0.5em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order dl.__cart-count {
  margin: 0.5em 0 0 0;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order dl.__cart-count dt {
  font-size: 0.85em;
  vertical-align: middle;
  display: inline-block;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__order dl.__cart-count dd {
  font-size: 0.85em;
  background-color: #2ab27b;
  color: #fff;
  display: inline-block;
  padding: 0 0.4em;
  margin: 0;
  text-align: center;
  border-radius: 2em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr td.__delete {
  width: 1em;
  white-space: nowrap;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr.__is-error td {
  background-color: #f8d7da;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr.__is-error td .__message {
  color: #d9534f;
  margin-bottom: 0.3em;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr.__is-warning td {
  background-color: #fff3cd;
}
.main.main--quickorder-confirm .__input-form .__table tbody tr.__is-warning td .__message {
  color: #f0ad4e;
  margin-bottom: 0.3em;
}
.main.main--quickorder-confirm .__submit {
  text-align: right;
}
.main.main--quickorder-confirm .__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

/* --------------------------------------------------------------------------
   メール案内配信停止ページ  mm_refusal.php
   -------------------------------------------------------------------------- */
.main.main--mm-refusal-form section:not(:first-child),
.main.main--mm-refusal-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mm-refusal-form section:not(.__input),
.main.main--mm-refusal-finish section:not(.__input) {
    padding: 0 1em;
  }
}
.main.main--mm-refusal-form .__submit,
.main.main--mm-refusal-finish .__submit {
  text-align: center;
}

.main.main--mm-refusal-finish section.__message h2 {
  font-size: 1.3em;
  margin: 0;
}
.main.main--mm-refusal-finish section.__message p {
  margin: 1em 0 0 0;
}

/* --------------------------------------------------------------------------
   パスワード再設定ページ  password.php
   -------------------------------------------------------------------------- */
.main.main--password-form section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--password-form section.__description, .main.main--password-form section.__submit {
    padding: 0 1em;
  }
}
.main.main--password-form section.__input table.__table tr th {
  white-space: nowrap;
  vertical-align: middle;
}
.main.main--password-form section.__input table.__table tr td {
  vertical-align: middle;
}
.main.main--password-form section.__submit {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .main.main--password-form {
    width: 600px !important;
    margin-right: auto;
    margin-left: auto;
  }
}

.main.main--password-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--password-finish section.__message, .main.main--password-finish section.__to-login {
    padding: 0 1em;
  }
}
.main.main--password-finish section.__message h2 {
  font-size: 1.3em;
  margin: 0;
}
.main.main--password-finish section.__message p {
  margin: 1em 0 0 0;
}
.main.main--password-finish section.__to-login a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  padding-right: 0.3em;
}
@media screen and (min-width: 600px) {
  .main.main--password-finish {
    width: 600px !important;
    margin-right: auto;
    margin-left: auto;
  }
}

/* --------------------------------------------------------------------------
   マイページ > 注文履歴
   -------------------------------------------------------------------------- */
.main.main--mypage-order-list section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-order-list section:not(:first-child).__pagination {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-list section.__pagination, .main.main--mypage-order-list section.__description, .main.main--mypage-order-list section.__orderer {
    padding: 0 1em;
  }
}
.main.main--mypage-order-list section.__orderer span {
  font-weight: bold;
  margin-right: 0.5em;
}
.main.main--mypage-order-list section.__change-list-link a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-order-list section.__list table.__table {
    width: 100%;
    border-collapse: collapse;
  }
  .main.main--mypage-order-list section.__list table.__table tr th,
.main.main--mypage-order-list section.__list table.__table tr td {
    padding: 0.75em 1em;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-order-list section.__list table.__table tr th {
    font-weight: normal;
    background-color: #f2f2f2;
  }
  .main.main--mypage-order-list section.__list table.__table thead th {
    text-align: center;
    vertical-align: middle;
  }
  .main.main--mypage-order-list section.__list table.__table thead th.__group-info div:not(:first-child), .main.main--mypage-order-list section.__list table.__table thead th.__order-info div:not(:first-child) {
    margin-top: 0.3em;
  }
  .main.main--mypage-order-list section.__list table.__table thead th .__code {
    margin-top: 0.3em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td {
    vertical-align: middle;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td dl {
    margin: 0;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td dl dt {
    display: none;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td dl dd {
    margin: 0;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info, .main.main--mypage-order-list section.__list table.__table tbody tr td.__date-code, .main.main--mypage-order-list section.__list table.__table tbody tr td.__reorder, .main.main--mypage-order-list section.__list table.__table tbody tr td.__delivery-slip-download {
    width: 1em;
    white-space: nowrap;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl {
    text-align: center;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl:not(:first-child), .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl:not(:first-child) {
    margin-top: 0.3em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl.__total,
.main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl.__code, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl.__total,
.main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl.__code {
    margin-top: 0.3em;
    letter-spacing: 1px;
    font-size: 0.85em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info .__member, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info .__member {
    min-width: 120px;
    white-space: normal;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__date-code dl.__code {
    margin-top: 0.3em;
    letter-spacing: 1px;
    font-size: 0.85em;
    text-align: center;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a {
    display: block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a:before, .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a:after {
    clear: both;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a .__image {
    float: left;
    padding-right: 0.5em;
    text-align: center;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail .__approval-status {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.85em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail .__approval-status a {
    padding-left: 1em;
    display: inline-block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail .__approval-status a:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 0.3em;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-order-list section.__list table.__table {
    display: block;
  }
  .main.main--mypage-order-list section.__list table.__table thead {
    display: none;
  }
  .main.main--mypage-order-list section.__list table.__table tbody {
    display: block;
    border-top: 1px solid #ddd;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td {
    display: block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td dl {
    margin: 0 0 0.3em 0;
    display: inline-block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td dl dt {
    display: inline-block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td dl dd {
    display: inline-block;
    margin: 0;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info, .main.main--mypage-order-list section.__list table.__table tbody tr td.__date-code {
    font-size: 0.85em;
    letter-spacing: -0.5em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl, .main.main--mypage-order-list section.__list table.__table tbody tr td.__date-code dl {
    letter-spacing: normal;
    width: 50%;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl:last-child, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl:last-child, .main.main--mypage-order-list section.__list table.__table tbody tr td.__date-code dl:last-child {
    margin-right: none;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__group-info dl dt, .main.main--mypage-order-list section.__list table.__table tbody tr td.__order-info dl dt, .main.main--mypage-order-list section.__list table.__table tbody tr td.__date-code dl dt {
    font-weight: bold;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail {
    margin-top: 0.5em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a {
    display: block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a:before, .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a:after {
    clear: both;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a .__image {
    float: left;
    padding-right: 0.5em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail .__approval-status {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.85em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail .__approval-status a {
    padding-left: 1em;
    display: inline-block;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__detail .__approval-status a:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 0.3em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__reorder, .main.main--mypage-order-list section.__list table.__table tbody tr td.__delivery-slip-download {
    margin-top: 0.5em;
  }
  .main.main--mypage-order-list section.__list table.__table tbody tr td.__reorder a.__link, .main.main--mypage-order-list section.__list table.__table tbody tr td.__delivery-slip-download a.__link {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.main.main--mypage-order-detail section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-detail section.__detail, .main.main--mypage-order-detail section.__orderer {
    padding: 0 1em;
  }
}
.main.main--mypage-order-detail section.__orderer span {
  font-weight: bold;
  margin-right: 0.5em;
}
.main.main--mypage-order-detail section.__information .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-order-detail section.__information .__table tr th,
.main.main--mypage-order-detail section.__information .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-order-detail section.__information .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-order-detail section.__information .__table tr th {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-order-detail section.__information .__table tr th {
    width: 40%;
  }
}
.main.main--mypage-order-detail section.__information .__table tr.__approval-status td a {
  font-size: 0.85em;
  display: inline-block;
}
.main.main--mypage-order-detail section.__information .__table tr.__approval-status td a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.main.main--mypage-order-detail section.__information .__table tr.__enquete td dl {
  margin: 0;
}
.main.main--mypage-order-detail section.__information .__table tr.__enquete td dl dt,
.main.main--mypage-order-detail section.__information .__table tr.__enquete td dl dd {
  display: inline-block;
}
.main.main--mypage-order-detail section.__information .__table tr.__enquete td dl dt {
  display: inline-block;
}
.main.main--mypage-order-detail section.__information .__table tr.__enquete td dl dt:after {
  content: ":";
}
.main.main--mypage-order-detail section.__information .__table tr.__enquete td dl dd {
  margin: 0;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__final .__all {
  font-weight: bold;
  font-size: 1.3em;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__final .__by-tax-rate {
  font-size: 0.85em;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px dotted #ddd;
  font-size: 0.85em;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl {
  display: inline-block;
  margin: 0 1em 0 0;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl:last-child {
  margin-right: 0;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl dt,
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl dd {
  display: inline-block;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl dt {
  display: inline-block;
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl dt:after {
  content: ":";
}
.main.main--mypage-order-detail section.__information .__table tr.__total .__detail dl dd {
  margin: 0;
}
.main.main--mypage-order-detail section.__detail .__delivery:last-child {
  border-bottom: none;
}
.main.main--mypage-order-detail section.__detail .__delivery:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-order-detail section.__detail .__delivery h2.__title {
  margin: 0;
}
.main.main--mypage-order-detail section.__detail .__delivery .__information {
  margin-top: 1em;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-order-detail section.__detail .__delivery .__information {
    border: 1px solid #ddd;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    overflow: hidden;
  }
}
.main.main--mypage-order-detail section.__detail .__delivery .__information .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr th,
.main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr th {
  width: 30%;
}
.main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr:last-child th, .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr:last-child td {
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr th {
    border-left: 1px solid #ddd;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr td {
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr th {
    width: 40%;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr:first-child th, .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr:first-child td, .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr:last-child th, .main.main--mypage-order-detail section.__detail .__delivery .__information .__table tr:last-child td {
    border-top: none;
  }
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a {
  display: block;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__name {
  font-weight: bold;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl {
  color: #333;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a:hover {
  text-decoration: none;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a:hover .__detail .__name {
  text-decoration: underline;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more {
  margin-top: 0.5em;
  color: #666;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more dl {
  margin: 0;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt,
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dd {
  display: inline-block;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt {
  display: inline-block;
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt:after {
  content: ":";
}
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dd {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-order-detail section.__detail .__delivery .__product table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.85em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table thead th {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    background-color: #f2f2f2;
    white-space: nowrap;
    text-align: center;
    font-weight: normal;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td .__heading {
    display: none;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a {
    display: block;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a:before, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a:after {
    clear: both;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__image {
    float: left;
    padding-right: 0.5em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail {
    display: inline;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__name {
    margin-bottom: 0.5em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__tax-type {
    margin: 0 0.5em 0 0;
    display: inline-block;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl {
    margin: 0 0.5em 0 0;
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dt {
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dt:after {
    content: ":";
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dd {
    display: inline-block;
    margin: 0;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__price {
    white-space: nowrap;
    width: 1em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__price .__body {
    text-align: right;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__price .__body .__detail {
    font-size: 0.85em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__order {
    white-space: nowrap;
    width: 1em;
    text-align: center;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__order.__order--input span.__delete {
    display: inline-block;
    margin-left: 1em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody td.__total {
    white-space: nowrap;
    width: 1em;
    text-align: right;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__total-price dl {
    width: 40%;
    margin-left: 60%;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-order-detail section.__detail .__delivery .__product table {
    display: block;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table thead {
    display: none;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody {
    display: block;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td {
    display: block;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a:before, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a:after {
    clear: both;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__image {
    float: left;
    width: 30%;
    padding-right: 1em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail {
    display: inline;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail .__tax-type {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt,
.main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dd {
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt {
    display: inline-block;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt:after {
    content: ":";
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dd {
    margin: 0;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__description .__more {
    font-size: 0.85em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__order, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__total {
    padding: 0.5em 0;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price:before, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price:after, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__order:before, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__order:after, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__total:before, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__total:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price:after, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__order:after, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__total:after {
    clear: both;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price .__heading, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__order .__heading, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__total .__heading {
    font-weight: bold;
    width: 40%;
    float: left;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price .__body, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__order .__body, .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__total .__body {
    width: 60%;
    float: left;
    text-align: right;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr td.__price .__detail {
    font-size: 0.85em;
  }
  .main.main--mypage-order-detail section.__detail .__delivery .__product table tbody tr:last-child {
    border-bottom: none;
  }
}
.main.main--mypage-order-detail section.__reorder,
.main.main--mypage-order-detail section.__delivery-slip-download,
.main.main--mypage-order-detail section.__back {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-detail section.__reorder,
.main.main--mypage-order-detail section.__delivery-slip-download,
.main.main--mypage-order-detail section.__back {
    padding-right: 1em;
    padding-left: 1em;
  }
}
.main.main--mypage-order-detail section.__reorder,
.main.main--mypage-order-detail section.__delivery-slip-download {
  text-align: center;
}
.main.main--mypage-order-detail section.__back a.__link:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

.main.main--mypage-order-reorder section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-reorder section.__back, .main.main--mypage-order-reorder section.__add-cart {
    margin-right: 1em;
    margin-left: 1em;
  }
}
.main.main--mypage-order-reorder section.__add-cart {
  text-align: right;
}
.main.main--mypage-order-reorder section.__back a.__link:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

.main.main--mypage-order-list-agent section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-list-agent section.__description, .main.main--mypage-order-list-agent section.__orderer, .main.main--mypage-order-list-agent section.__change-list-link {
    margin-right: 1em;
    margin-left: 1em;
  }
}
.main.main--mypage-order-list-agent section.__orderer span {
  font-weight: bold;
  margin-right: 0.5em;
}
.main.main--mypage-order-list-agent section.__change-list-link a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.3em;
}
.main.main--mypage-order-list-agent section.__list table.__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-order-list-agent section.__list table.__table tr th,
.main.main--mypage-order-list-agent section.__list table.__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-order-list-agent section.__list table.__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-order-list-agent section.__list table.__table tbody td.__order {
  white-space: nowrap;
  width: 1em;
}

/* --------------------------------------------------------------------------
   マイページ > 見積履歴
   -------------------------------------------------------------------------- */
.main.main--mypage-estimate-list section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-estimate-list section:not(:first-child).__pagination {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-estimate-list section.__pagination, .main.main--mypage-estimate-list section.__description {
    padding: 0 1em;
  }
}
.main.main--mypage-estimate-list section.__list {
  margin-top: 1.5em;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-estimate-list section.__list table.__table {
    width: 100%;
    border-collapse: collapse;
  }
  .main.main--mypage-estimate-list section.__list table.__table tr th,
.main.main--mypage-estimate-list section.__list table.__table tr td {
    padding: 0.75em 1em;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-estimate-list section.__list table.__table tr th {
    font-weight: normal;
    background-color: #f2f2f2;
  }
  .main.main--mypage-estimate-list section.__list table.__table thead th {
    text-align: center;
    vertical-align: middle;
  }
  .main.main--mypage-estimate-list section.__list table.__table thead th .__code {
    margin-top: 0.3em;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td {
    vertical-align: middle;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td dl {
    margin: 0;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td dl dt {
    display: none;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td dl dd {
    margin: 0;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__date {
    width: 1em;
    white-space: nowrap;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code .__status {
    text-align: center;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code .__status span {
    display: inline-block;
    font-size: 0.8em;
    padding: 0 0.5em;
    vertical-align: middle;
    border: 1px solid #ccc;
    background-color: #fff;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code .__code {
    margin-top: 0.3em;
    letter-spacing: 1px;
    font-size: 0.85em;
    text-align: center;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a {
    display: block;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a:before, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a:after {
    clear: both;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a .__image {
    float: left;
    padding-right: 0.5em;
    text-align: center;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr.__is-disabled th, .main.main--mypage-estimate-list section.__list table.__table tbody tr.__is-disabled td {
    background-color: #e9e9e9;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-estimate-list section.__list table.__table {
    display: block;
  }
  .main.main--mypage-estimate-list section.__list table.__table thead {
    display: none;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody {
    display: block;
    border-top: 1px solid #ddd;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr.__is-disabled {
    background-color: #e9e9e9;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td {
    display: block;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td dl {
    margin: 0;
    display: inline-block;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td dl dt {
    display: inline-block;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td dl dd {
    display: inline-block;
    margin: 0;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__date {
    font-size: 0.85em;
    letter-spacing: -0.5em;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code dl, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__date dl {
    letter-spacing: normal;
    width: 50%;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code dl:last-child, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__date dl:last-child {
    margin-right: none;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__status-code dl dt, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__date dl dt {
    font-weight: bold;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail {
    margin-top: 0.5em;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a {
    display: block;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a:before, .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a:after {
    clear: both;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a .__image {
    float: left;
    padding-right: 0.5em;
  }
  .main.main--mypage-estimate-list section.__list table.__table tbody tr td.__detail a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
}

.main.main--mypage-estimate-detail section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-estimate-detail section.__detail {
    padding: 0 1em;
  }
}
.main.main--mypage-estimate-detail section.__information .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-estimate-detail section.__information .__table tr th,
.main.main--mypage-estimate-detail section.__information .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-estimate-detail section.__information .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-estimate-detail section.__information .__table tr th {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-estimate-detail section.__information .__table tr th {
    width: 40%;
  }
}
.main.main--mypage-estimate-detail section.__information .__table tr.__enquete td dl {
  margin: 0;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__enquete td dl dt,
.main.main--mypage-estimate-detail section.__information .__table tr.__enquete td dl dd {
  display: inline-block;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__enquete td dl dt {
  display: inline-block;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__enquete td dl dt:after {
  content: ":";
}
.main.main--mypage-estimate-detail section.__information .__table tr.__enquete td dl dd {
  margin: 0;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__final .__all {
  font-weight: bold;
  font-size: 1.3em;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__final .__by-tax-rate {
  font-size: 0.85em;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px dotted #ddd;
  font-size: 0.85em;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl {
  display: inline-block;
  margin: 0 1em 0 0;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl:last-child {
  margin-right: 0;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl dt,
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl dd {
  display: inline-block;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl dt {
  display: inline-block;
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl dt:after {
  content: ":";
}
.main.main--mypage-estimate-detail section.__information .__table tr.__total .__detail dl dd {
  margin: 0;
}
.main.main--mypage-estimate-detail section.__detail .__delivery:last-child {
  border-bottom: none;
}
.main.main--mypage-estimate-detail section.__detail .__delivery h2.__title {
  margin: 0;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__information {
  margin-top: 1em;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-estimate-detail section.__detail .__delivery .__information {
    border: 1px solid #ddd;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    overflow: hidden;
  }
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr th,
.main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr th {
  width: 30%;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr:last-child th, .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr:last-child td {
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr th {
    border-left: 1px solid #ddd;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr td {
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr th {
    width: 40%;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr:first-child th, .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr:first-child td, .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr:last-child th, .main.main--mypage-estimate-detail section.__detail .__delivery .__information .__table tr:last-child td {
    border-top: none;
  }
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a {
  display: block;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__name {
  font-weight: bold;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl {
  color: #333;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a:hover {
  text-decoration: none;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a:hover .__detail .__name {
  text-decoration: underline;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more {
  margin-top: 0.5em;
  color: #666;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more dl {
  margin: 0;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt,
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dd {
  display: inline-block;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt {
  display: inline-block;
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt:after {
  content: ":";
}
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dd {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.85em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table thead th {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    background-color: #f2f2f2;
    white-space: nowrap;
    text-align: center;
    font-weight: normal;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td .__heading {
    display: none;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a {
    display: block;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a:before, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a:after {
    clear: both;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__image {
    float: left;
    padding: 0 0.5em 0 0;
    text-align: center;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail {
    display: inline;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__name {
    margin-bottom: 0.5em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__tax-type {
    margin: 0 0.5em 0 0;
    display: inline-block;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl {
    margin: 0 0.5em 0 0;
    display: inline;
    vertical-align: top;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dt {
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dt:after {
    content: ":";
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dd {
    display: inline-block;
    margin: 0;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__price {
    white-space: nowrap;
    width: 1em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__price .__body {
    text-align: right;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__price .__body .__detail {
    font-size: 0.85em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__order {
    white-space: nowrap;
    width: 1em;
    text-align: center;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__order.__order--input span.__delete {
    display: inline-block;
    margin-left: 1em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody td.__total {
    white-space: nowrap;
    width: 1em;
    text-align: right;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__total-price dl {
    width: 40%;
    margin-left: 60%;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table {
    display: block;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table thead {
    display: none;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody {
    display: block;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr:last-child {
    border-bottom: none;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td {
    display: block;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a:before, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a:after {
    clear: both;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__image {
    float: left;
    width: 30%;
    padding-right: 1em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail {
    display: inline;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail .__tax-type {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt,
.main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dd {
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt {
    display: inline-block;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt:after {
    content: ":";
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dd {
    margin: 0;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__description .__more {
    font-size: 0.85em;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__order, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__total {
    padding: 0.5em 0;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price:before, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price:after, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__order:before, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__order:after, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__total:before, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__total:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price:after, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__order:after, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__total:after {
    clear: both;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price .__heading, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__order .__heading, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__total .__heading {
    font-weight: bold;
    width: 40%;
    float: left;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price .__body, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__order .__body, .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__total .__body {
    width: 60%;
    float: left;
    text-align: right;
  }
  .main.main--mypage-estimate-detail section.__detail .__delivery .__product table tbody tr td.__price .__detail {
    font-size: 0.85em;
  }
}
.main.main--mypage-estimate-detail section.__download,
.main.main--mypage-estimate-detail section.__order,
.main.main--mypage-estimate-detail section.__back {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-estimate-detail section.__download,
.main.main--mypage-estimate-detail section.__order,
.main.main--mypage-estimate-detail section.__back {
    padding-right: 1em;
    padding-left: 1em;
  }
}
.main.main--mypage-estimate-detail section.__download {
  text-align: center;
}
.main.main--mypage-estimate-detail section.__download .__button {
  background-color: #2ab27b;
  color: #fff;
}
.main.main--mypage-estimate-detail section.__download .__button:before {
  font-size: 1.3em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1c1";
  padding-right: 0.3em;
}
.main.main--mypage-estimate-detail section.__order {
  text-align: center;
}
.main.main--mypage-estimate-detail section.__back a.__link:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

/* --------------------------------------------------------------------------
   マイページ > お気に入り
   -------------------------------------------------------------------------- */
.main.main--mypage-bookmark section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-bookmark section.__description {
    padding: 0 1em;
  }
}
.main.main--mypage-bookmark section.__list ul.__product li.__item .__description .__date {
  margin: 0;
  font-size: 0.85em;
  text-align: center;
  color: #666;
}
.main.main--mypage-bookmark section.__list ul.__product li.__item .__description .__date dt {
  display: inline-block;
}
.main.main--mypage-bookmark section.__list ul.__product li.__item .__description .__date dd {
  display: inline-block;
  margin: 0 0 0 0.5em;
}
.main.main--mypage-bookmark section.__list ul.__product li.__item .__delete {
  margin-top: 1em;
  text-align: center;
}

/* --------------------------------------------------------------------------
   マイページ > 発注リスト
   -------------------------------------------------------------------------- */
.main.main--mypage-bookmarklist-index section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-bookmarklist-index section:not(:first-child).__pagination {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-bookmarklist-index section.__description, .main.main--mypage-bookmarklist-index section.__pagination {
    padding: 0 1em;
  }
}
.main.main--mypage-bookmarklist-index section.__list > ul {
  list-style-type: none;
  padding: 0;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li {
  display: block;
  padding: 1.5em 0;
  border-top: 2px solid #ddd;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-bookmarklist-index section.__list > ul > li .__information {
    padding-right: 1em;
    padding-left: 1em;
  }
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__title {
  margin: 0 0 0.5em 0;
  margin: 0 0 1rem 0;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information dl {
  margin: 0.3em 0;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information dl dt {
  display: inline-block;
  margin-right: 0.5em;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information dl dt:after {
  content: ":";
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information dl dd {
  display: inline-block;
  margin: 0;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__control {
  text-align: right;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__control .__toggle {
  display: inline-block;
  vertical-align: middle;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__control .__toggle span.__button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.6em 1em;
  cursor: pointer;
  zoom: 1;
  display: inline-block;
  border-radius: 0.3em;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__control .__toggle span.__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-right: 0.3em;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__control .__toggle span.__button.__is-open:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d8";
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__information .__control .__edit {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  margin-left: 0.3em;
}
.main.main--mypage-bookmarklist-index section.__list > ul > li .__product {
  display: none;
}
.main.main--mypage-bookmarklist-index section.__list .__submit {
  margin-top: 1em;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-bookmarklist-index section.__list .__submit {
    padding-right: 1em;
    padding-left: 1em;
  }
}

.main.main--mypage-bookmarklist-edit section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-bookmarklist-edit section.__description, .main.main--mypage-bookmarklist-edit section.__save, .main.main--mypage-bookmarklist-edit section.__delete, .main.main--mypage-bookmarklist-edit section.__back {
    padding: 0 1em;
  }
}
.main.main--mypage-bookmarklist-edit section.__save,
.main.main--mypage-bookmarklist-edit section.__delete {
  text-align: center;
}
.main.main--mypage-bookmarklist-edit section.__back {
  text-align: left;
}
.main.main--mypage-bookmarklist-edit section.__back a.__link:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}
.main.main--mypage-bookmarklist-edit section.__product table tbody tr td.__order .__body .__delete {
  margin-top: 0.5em;
}

/* --------------------------------------------------------------------------
   マイページ > 会員登録編集
   -------------------------------------------------------------------------- */
.main.main--mypage-profile-form section:not(:first-child),
.main.main--mypage-group-member-edit section:not(:first-child),
.main.main--mypage-group-member-create section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-profile-form section.__submit,
.main.main--mypage-group-member-edit section.__submit,
.main.main--mypage-group-member-create section.__submit {
    padding: 0 1em;
  }
}
.main.main--mypage-profile-form section.__content-form table tr.__row-password td .__change-flag,
.main.main--mypage-group-member-edit section.__content-form table tr.__row-password td .__change-flag,
.main.main--mypage-group-member-create section.__content-form table tr.__row-password td .__change-flag {
  margin-bottom: 0.75em;
}
.main.main--mypage-profile-form section.__content-form table tr.__row-email td .__checkmark,
.main.main--mypage-group-member-edit section.__content-form table tr.__row-email td .__checkmark,
.main.main--mypage-group-member-create section.__content-form table tr.__row-email td .__checkmark {
  color: #2ab27b;
  font-size: 0.85em;
}
.main.main--mypage-profile-form section.__content-form table tr.__row-email td .__checkmark:before,
.main.main--mypage-group-member-edit section.__content-form table tr.__row-email td .__checkmark:before,
.main.main--mypage-group-member-create section.__content-form table tr.__row-email td .__checkmark:before {
  font-size: 1.5em;
  vertical-align: sub;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5ca";
}
.main.main--mypage-profile-form section.__submit,
.main.main--mypage-group-member-edit section.__submit,
.main.main--mypage-group-member-create section.__submit {
  text-align: center;
}

.main.main--mypage-profile-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-profile-finish section.__description, .main.main--mypage-profile-finish section.__back {
    padding: 0 1em;
  }
}
.main.main--mypage-profile-finish section.__content-form table tr.__row-email td .__checkmark {
  color: #2ab27b;
  font-size: 0.85em;
}
.main.main--mypage-profile-finish section.__content-form table tr.__row-email td .__checkmark:before {
  font-size: 1.5em;
  vertical-align: sub;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "\e5ca";
}
.main.main--mypage-profile-finish section.__back {
  text-align: center;
}
.main.main--mypage-profile-finish section.__back a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

.main--mypage-email-verification-code-send section:not(:first-child),
.main--mypage-email-verification-code-verify section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main--mypage-email-verification-code-send section.__description, .main--mypage-email-verification-code-send section.__back, .main--mypage-email-verification-code-send section.__submit,
.main--mypage-email-verification-code-verify section.__description,
.main--mypage-email-verification-code-verify section.__back,
.main--mypage-email-verification-code-verify section.__submit {
    padding: 0 1em;
  }
}
.main--mypage-email-verification-code-send section.__back .__button:before,
.main--mypage-email-verification-code-verify section.__back .__button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}
.main--mypage-email-verification-code-send form section:first-child,
.main--mypage-email-verification-code-verify form section:first-child {
  margin-top: 1em;
}
.main--mypage-email-verification-code-send section.__submit,
.main--mypage-email-verification-code-verify section.__submit {
  text-align: center;
}

/* --------------------------------------------------------------------------
   マイページ > 配送先情報
   -------------------------------------------------------------------------- */
.main.main--mypage-address-list section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-address-list section:not(:first-child).__pagination {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-address-list section.__description, .main.main--mypage-address-list section.__create, .main.main--mypage-address-list section.__pagination {
    padding: 0 1em;
  }
}
.main.main--mypage-address-list section.__create {
  text-align: right;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-address-list section.__list table.__table {
    width: 100%;
  }
  .main.main--mypage-address-list section.__list table.__table thead tr th {
    padding: 0.75em 1em;
    vertical-align: middle;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
    background-color: #f2f2f2;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td {
    padding: 0.75em 1em;
    vertical-align: middle;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td .__heading {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-address-list section.__list table.__table {
    display: block;
  }
  .main.main--mypage-address-list section.__list table.__table thead {
    display: none;
  }
  .main.main--mypage-address-list section.__list table.__table tbody {
    display: block;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr {
    display: block;
    padding: 1em;
    border-top: 2px solid #ddd;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr:last-child {
    border-bottom: 2px solid #ddd;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr th,
.main.main--mypage-address-list section.__list table.__table tbody tr td {
    display: block;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td {
    padding: 0.5em 0;
    letter-spacing: -0.5em;
    border-bottom: 1px dotted #ddd;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td:first-child {
    padding-top: 0;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td > * {
    letter-spacing: normal;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td .__heading {
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    width: 40%;
  }
  .main.main--mypage-address-list section.__list table.__table tbody tr td .__body {
    display: inline-block;
    vertical-align: top;
    width: 60%;
  }
}
@media screen and (min-width: 600px) {
  .main.main--mypage-address-list section.__list table.__table tbody td.__control {
    width: 1em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-address-list section.__list table.__table tbody td.__control .__edit a.__link {
    width: 100%;
  }
}

.main.main--mypage-address-edit section:not(:first-child),
.main.main--mypage-address-create section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-address-edit section.__submit, .main.main--mypage-address-edit section.__delete, .main.main--mypage-address-edit section.__back,
.main.main--mypage-address-create section.__submit,
.main.main--mypage-address-create section.__delete,
.main.main--mypage-address-create section.__back {
    padding: 0 1em;
  }
}
.main.main--mypage-address-edit section.__submit,
.main.main--mypage-address-edit section.__delete,
.main.main--mypage-address-create section.__submit,
.main.main--mypage-address-create section.__delete {
  text-align: center;
}
.main.main--mypage-address-edit section.__back,
.main.main--mypage-address-create section.__back {
  text-align: left;
}
.main.main--mypage-address-edit section.__back a.__link:before,
.main.main--mypage-address-create section.__back a.__link:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

/* --------------------------------------------------------------------------
   マイページ > Paid利用申請フォーム
   -------------------------------------------------------------------------- */
.main.main--mypage-paid-form section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-paid-form section.__notice, .main.main--mypage-paid-form section.__submit {
    padding: 0 1em;
  }
}
.main.main--mypage-paid-form section.__description {
  padding: 1em;
  background-color: #f2f2f2;
}
.main.main--mypage-paid-form section.__description .__title {
  font-weight: bold;
  font-size: 1.5em;
}
.main.main--mypage-paid-form section.__description .__text {
  margin-top: 1em;
}
.main.main--mypage-paid-form section.__description .__text ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--mypage-paid-form section.__description .__text ul li {
  margin-bottom: 0.5em;
  margin-left: 1.3em;
  text-indent: -1.3em;
}
.main.main--mypage-paid-form section.__description .__text ul li:before {
  content: "※";
  margin-right: 0.3em;
}
.main.main--mypage-paid-form section.__description .__text ul li:last-child {
  margin-bottom: 0;
}
.main.main--mypage-paid-form section.__description .__text ul li a {
  font-weight: bold;
  text-decoration: underline;
}
.main.main--mypage-paid-form section.__description .__payment {
  margin-top: 1em;
}
.main.main--mypage-paid-form section.__description .__payment table th, .main.main--mypage-paid-form section.__description .__payment table td {
  background-color: #fff;
  padding: 0.75em 1em;
  border: 1px solid #ddd;
}
.main.main--mypage-paid-form section.__description .__payment table th {
  white-space: nowrap;
  font-weight: normal;
}
.main.main--mypage-paid-form section.__description .__payment table td dl {
  margin: 0 0 0.5em 0;
  font-size: 0.85em;
}
.main.main--mypage-paid-form section.__description .__payment table td dl dt {
  font-weight: bold;
}
.main.main--mypage-paid-form section.__description .__payment table td dl dd {
  margin: 0.3em 0 0 1em;
}
.main.main--mypage-paid-form section.__description .__payment table td dl dd ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--mypage-paid-form section.__description .__payment table td dl dd ul li {
  margin-bottom: 0.3em;
  margin-left: 1.3em;
  text-indent: -1.3em;
}
.main.main--mypage-paid-form section.__description .__payment table td dl dd ul li:before {
  content: "※";
  margin-right: 0.3em;
}
.main.main--mypage-paid-form section.__description .__payment table td dl dd ul li::last-child {
  margin-bottom: 0;
}
.main.main--mypage-paid-form section.__description .__payment table td dl:last-child {
  margin: 0;
}
.main.main--mypage-paid-form section.__notice {
  text-align: center;
  color: #d9534f;
}
.main.main--mypage-paid-form section.__submit {
  text-align: center;
}

.main.main--mypage-paid-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-paid-finish section.__message {
    padding: 0 1em;
  }
}

/* --------------------------------------------------------------------------
   マイページ > クロネコ掛け払い利用申請フォーム
   -------------------------------------------------------------------------- */
.main.main--mypage-kuroneko-form section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-kuroneko-form section.__submit {
    padding: 0 1em;
  }
}
.main.main--mypage-kuroneko-form section.__input table.__operation,
.main.main--mypage-kuroneko-form section.__input table.__destination,
.main.main--mypage-kuroneko-form section.__input table.__payment,
.main.main--mypage-kuroneko-form section.__input table.__kiyaku {
  margin-top: 1em;
}
.main.main--mypage-kuroneko-form section.__input table.__information tr.__is-hide, .main.main--mypage-kuroneko-form section.__input table.__information tr.__is-hide2,
.main.main--mypage-kuroneko-form section.__input table.__operation tr.__is-hide,
.main.main--mypage-kuroneko-form section.__input table.__operation tr.__is-hide2,
.main.main--mypage-kuroneko-form section.__input table.__destination tr.__is-hide,
.main.main--mypage-kuroneko-form section.__input table.__destination tr.__is-hide2 {
  display: none;
}
.main.main--mypage-kuroneko-form section.__input table.__information tr.__row-address .__detail,
.main.main--mypage-kuroneko-form section.__input table.__operation tr.__row-address .__detail,
.main.main--mypage-kuroneko-form section.__input table.__destination tr.__row-address .__detail {
  margin-top: 0.5em;
}
.main.main--mypage-kuroneko-form section.__input table.__kiyaku tr td .__content {
  border: 1px solid #ccc;
  height: 20em;
  overflow: auto;
  padding: 1em;
  background-color: #fff;
  font-size: 0.85em;
}
.main.main--mypage-kuroneko-form section.__input table.__kiyaku tr td .__content table tr td {
  width: auto;
  border: 1px solid #ddd;
}
.main.main--mypage-kuroneko-form section.__input table.__kiyaku tr td .__check-wrap {
  margin-top: 0.5em;
  text-align: center;
}
.main.main--mypage-kuroneko-form section.__submit {
  text-align: center;
}

.main.main--mypage-kuroneko-finish section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-kuroneko-finish section.__message {
    padding: 0 1em;
  }
}

/* --------------------------------------------------------------------------
   マイページ > MF KESSAI利用申請フォーム
   -------------------------------------------------------------------------- */
.main.main--mypage-mfkessai section:not(:first-child),
.main.main--mypage-bcart_kakebarai section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-mfkessai section.__notice, .main.main--mypage-mfkessai section.__submit,
.main.main--mypage-bcart_kakebarai section.__notice,
.main.main--mypage-bcart_kakebarai section.__submit {
    padding: 0 1em;
  }
}
@media screen and (max-width: 959px) {
  .main.main--mypage-mfkessai section.__description,
.main.main--mypage-bcart_kakebarai section.__description {
    padding: 0 1em;
  }
}
.main.main--mypage-mfkessai section.__notice,
.main.main--mypage-bcart_kakebarai section.__notice {
  color: #d9534f;
}
.main.main--mypage-mfkessai section.__submit,
.main.main--mypage-bcart_kakebarai section.__submit {
  text-align: center;
}

/* --------------------------------------------------------------------------
   マイページ > 設定
   -------------------------------------------------------------------------- */
.main.main--mypage-setting section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-setting section:not(:first-child).__pagination {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-setting section.__description, .main.main--mypage-setting section.__submit {
    padding: 0 1em;
  }
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li {
  display: block;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted #ddd;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li .__description {
  font-size: 0.85em;
  margin: 0.5em 0 0 0;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li .__description .__b-kake-logo a:hover {
  opacity: 0.7;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li .__description .__b-kake-logo a img {
  width: 270px;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li .__description .__b-credit-logo {
  padding: 1em 0.5em 0 0.5em;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li .__description .__b-credit-logo img {
  width: 180px;
}
.main.main--mypage-setting section.__input table tr.__row-payment td > ul > li .__custom {
  margin-top: 0.5em;
  font-size: 0.85em;
}
.main.main--mypage-setting section.__input table tr.__row-delivery td .__detail {
  margin-top: 1em;
  font-size: 0.85em;
}
.main.main--mypage-setting section.__input table tr.__row-delivery td .__detail .__address,
.main.main--mypage-setting section.__input table tr.__row-delivery td .__detail .__tel {
  margin-top: 0.3em;
}
.main.main--mypage-setting section.__submit {
  text-align: center;
}

/* --------------------------------------------------------------------------
   マイページ > ポイント履歴
   -------------------------------------------------------------------------- */
.main.main--mypage-point section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-point section:not(:first-child).__pagination {
  margin-top: 1.5em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-point section.__pagination {
    padding: 0 1em;
  }
}
.main.main--mypage-point section.__total {
  padding: 1em;
  background-color: #fff3cd;
}
.main.main--mypage-point section.__total dl {
  margin: 0;
}
.main.main--mypage-point section.__total dl dt {
  display: inline-block;
}
.main.main--mypage-point section.__total dl dt:after {
  content: ":";
}
.main.main--mypage-point section.__total dl dd {
  display: inline-block;
  margin: 0;
}
.main.main--mypage-point section.__total dl dd span {
  font-size: 1.15em;
  font-weight: bold;
  color: #d9534f;
}
.main.main--mypage-point section.__list table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-point section.__list table tr th,
.main.main--mypage-point section.__list table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-point section.__list table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-point section.__list table th {
  white-space: nowrap;
  width: 1em;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-point section.__list table th span {
    display: block;
  }
}
.main.main--mypage-point section.__list table td.__date {
  white-space: nowrap;
  width: 1em;
}
.main.main--mypage-point section.__list table td.__detail .__name {
  display: inline-block;
}
.main.main--mypage-point section.__list table td.__detail dl.__order {
  margin: 0;
  display: inline-block;
}
.main.main--mypage-point section.__list table td.__detail dl.__order:before {
  content: "（";
}
.main.main--mypage-point section.__list table td.__detail dl.__order:after {
  content: "）";
}
.main.main--mypage-point section.__list table td.__detail dl.__order dt {
  display: inline-block;
  margin-right: 0.3em;
}
.main.main--mypage-point section.__list table td.__detail dl.__order dt:after {
  content: ":";
}
.main.main--mypage-point section.__list table td.__detail dl.__order dd {
  display: inline-block;
  margin: 0;
}
.main.main--mypage-point section.__list table td.__detail dl.__order dd span {
  font-size: 1.15em;
  font-weight: bold;
  color: #d9534f;
}
.main.main--mypage-point section.__list table td.__count {
  white-space: nowrap;
  width: 1em;
  text-align: right;
}

/* --------------------------------------------------------------------------
   マイページ > グループ管理
   -------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
  .main.main--mypage-group section.__breadcrumb {
    padding: 0 1em;
  }
}

.main.main--mypage-group-index section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-group-index section.__group-list {
    padding: 0 1em;
  }
}
.main.main--mypage-group-index section.__group-list > ul {
  list-style-type: none;
  padding: 0;
}
.main.main--mypage-group-index section.__group-list > ul > li:not(:first-child) {
  margin-top: 1em;
  display: block;
}
.main.main--mypage-group-index section.__group-list > ul > li > .__body > ul {
  list-style-type: none;
  padding: 0;
}
.main.main--mypage-group-index section.__group-list > ul > li > .__body > ul > li:not(:first-child) {
  margin-top: 0.5em;
}

/* --------------------------------------------------------------------------
   マイページ > グループ管理 > 承認の依頼
   -------------------------------------------------------------------------- */
.main.main--mypage-approval-index section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-approval-index section.__discription, .main.main--mypage-approval-index section.__pagination {
    padding: 0 1em;
  }
}
@media screen and (min-width: 600px) {
  .main.main--mypage-approval-index section.__list table.__table {
    width: 100%;
    border-collapse: collapse;
  }
  .main.main--mypage-approval-index section.__list table.__table tr th,
.main.main--mypage-approval-index section.__list table.__table tr td {
    padding: 0.75em 1em;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-approval-index section.__list table.__table tr th {
    font-weight: normal;
    background-color: #f2f2f2;
  }
  .main.main--mypage-approval-index section.__list table.__table thead th {
    vertical-align: middle;
    white-space: nowrap;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td {
    vertical-align: middle;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td dl {
    margin: 0;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td dl dt {
    display: none;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td dl dd {
    margin: 0;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__status-code, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__date, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__requester, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__action {
    width: 1em;
    white-space: nowrap;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__requester .__group {
    margin-bottom: 0.3em;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__status-code .__status {
    text-align: center;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__status-code .__status span {
    display: inline-block;
    font-size: 0.8em;
    padding: 0 0.5em;
    vertical-align: middle;
    border: 1px solid #ccc;
    background-color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-approval-index section.__list table.__table {
    display: block;
  }
  .main.main--mypage-approval-index section.__list table.__table thead {
    display: none;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody {
    display: block;
    border-top: 1px solid #ddd;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td {
    display: block;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td dl {
    margin: 0 0 0.3em 0;
    display: inline-block;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td dl dt {
    display: inline-block;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td dl dd {
    display: inline-block;
    margin: 0;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__date, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__requester {
    font-size: 0.85em;
    letter-spacing: -0.5em;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__date dl, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__requester dl {
    letter-spacing: normal;
    width: 50%;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__date dl:last-child, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__requester dl:last-child {
    margin-right: none;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__date dl dt, .main.main--mypage-approval-index section.__list table.__table tbody tr td.__requester dl dt {
    font-weight: bold;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__product {
    margin-top: 1em;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__action {
    margin-top: 1em;
  }
  .main.main--mypage-approval-index section.__list table.__table tbody tr td.__action a {
    display: block;
  }
}

.main.main--mypage-approval-detail section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-approval-detail section.__requester > .__title, .main.main--mypage-approval-detail section.__information > .__title, .main.main--mypage-approval-detail section.__approval-form, .main.main--mypage-approval-detail section.__detail, .main.main--mypage-approval-detail section.__back {
    padding: 0 1em;
  }
}
.main.main--mypage-approval-detail section.__approval-form .__allow,
.main.main--mypage-approval-detail section.__approval-form .__not-allow {
  margin-top: 1em;
  text-align: center;
}
.main.main--mypage-approval-detail section.__approval-form .__not-allow .__button {
  background-color: #d9534f;
}
.main.main--mypage-approval-detail section.__result > .__message {
  font-size: 1.15em;
}
.main.main--mypage-approval-detail section.__result > .__message span.__status {
  font-weight: bold;
}
.main.main--mypage-approval-detail section.__result > .__message.__is-approved span.__status {
  color: #2ab27b;
}
.main.main--mypage-approval-detail section.__result > .__message.__is-denied span.__status {
  color: #d9534f;
}
.main.main--mypage-approval-detail section.__result > .__message.__is-unapproved span.__status {
  color: #f0ad4e;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers {
  padding: 0;
  margin: 0.5em 0 0 0;
  list-style-type: none;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item {
  display: block;
  margin-top: 0.5em;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item.__is-denied span.__status {
  color: #d9534f;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item.__is-approved span.__status {
  color: #2ab27b;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item.__is-unapproved span.__status {
  color: #f0ad4e;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__date {
  font-size: 0.85em;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__date:before {
  content: "（";
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__date:after {
  content: "）";
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__email {
  font-size: 0.85em;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__email:before {
  content: "（";
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__email:after {
  content: "）";
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__message {
  font-size: 0.85em;
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__message:before {
  content: "「";
}
.main.main--mypage-approval-detail section.__result > ul.__approvers li.__item span.__message:after {
  content: "」";
}
.main.main--mypage-approval-detail section.__requester .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-approval-detail section.__requester .__table tr th,
.main.main--mypage-approval-detail section.__requester .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-approval-detail section.__requester .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-approval-detail section.__requester .__table tr th {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-approval-detail section.__requester .__table tr th {
    width: 40%;
  }
}
.main.main--mypage-approval-detail section.__information .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-approval-detail section.__information .__table tr th,
.main.main--mypage-approval-detail section.__information .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-approval-detail section.__information .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-approval-detail section.__information .__table tr th {
  width: 30%;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-approval-detail section.__information .__table tr th {
    width: 40%;
  }
}
.main.main--mypage-approval-detail section.__information .__table tr.__enquete td dl {
  margin: 0;
}
.main.main--mypage-approval-detail section.__information .__table tr.__enquete td dl dt,
.main.main--mypage-approval-detail section.__information .__table tr.__enquete td dl dd {
  display: inline-block;
}
.main.main--mypage-approval-detail section.__information .__table tr.__enquete td dl dt {
  display: inline-block;
}
.main.main--mypage-approval-detail section.__information .__table tr.__enquete td dl dt:after {
  content: ":";
}
.main.main--mypage-approval-detail section.__information .__table tr.__enquete td dl dd {
  margin: 0;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__final .__all {
  font-weight: bold;
  font-size: 1.3em;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__final .__by-tax-rate {
  font-size: 0.85em;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px dotted #ddd;
  font-size: 0.85em;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl {
  display: inline-block;
  margin: 0 1em 0 0;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl:last-child {
  margin-right: 0;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl dt,
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl dd {
  display: inline-block;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl dt {
  display: inline-block;
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl dt:after {
  content: ":";
}
.main.main--mypage-approval-detail section.__information .__table tr.__total .__detail dl dd {
  margin: 0;
}
.main.main--mypage-approval-detail section.__detail .__delivery:last-child {
  border-bottom: none;
}
.main.main--mypage-approval-detail section.__detail .__delivery h2.__title {
  margin: 0;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__information {
  margin-top: 1em;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-approval-detail section.__detail .__delivery .__information {
    border: 1px solid #ddd;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    overflow: hidden;
  }
}
.main.main--mypage-approval-detail section.__detail .__delivery .__information .__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr th,
.main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr th {
  width: 30%;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr:last-child th, .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr:last-child td {
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr th {
    border-left: 1px solid #ddd;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr td {
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr th {
    width: 40%;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr:first-child th, .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr:first-child td, .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr:last-child th, .main.main--mypage-approval-detail section.__detail .__delivery .__information .__table tr:last-child td {
    border-top: none;
  }
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a {
  display: block;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__name {
  font-weight: bold;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl {
  color: #333;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a:hover {
  text-decoration: none;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a:hover .__detail .__name {
  text-decoration: underline;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more {
  margin-top: 0.5em;
  color: #666;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more dl {
  margin: 0;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt,
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dd {
  display: inline-block;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt {
  display: inline-block;
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dt:after {
  content: ":";
}
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description .__more dl dd {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.85em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table thead th {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    background-color: #f2f2f2;
    white-space: nowrap;
    text-align: center;
    font-weight: normal;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td .__heading {
    display: none;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a {
    display: block;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a:before, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a:after {
    clear: both;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__image {
    float: left;
    padding-right: 0.5em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__image img {
    max-height: 5em;
    max-width: 5em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail {
    display: inline;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__name {
    margin-bottom: 0.5em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail .__tax-type {
    margin: 0 0.5em 0 0;
    display: inline-block;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl {
    margin: 0 0.5em 0 0;
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dt {
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dt:after {
    content: ":";
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__description a .__detail dl dd {
    display: inline-block;
    margin: 0;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__price {
    white-space: nowrap;
    width: 1em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__price .__body {
    text-align: right;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__price .__body .__detail {
    font-size: 0.85em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__order {
    white-space: nowrap;
    width: 1em;
    text-align: center;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__order.__order--input span.__delete {
    display: inline-block;
    margin-left: 1em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody td.__total {
    white-space: nowrap;
    width: 1em;
    text-align: right;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__total-price dl {
    width: 40%;
    margin-left: 60%;
  }
}
@media screen and (max-width: 599px) {
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table {
    display: block;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table thead {
    display: none;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody {
    display: block;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td {
    display: block;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a:before, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a:after {
    clear: both;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__image {
    float: left;
    width: 30%;
    padding-right: 1em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail {
    display: inline;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail .__tax-type {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    font-size: 0.85em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt,
.main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dd {
    display: inline-block;
    vertical-align: top;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt {
    display: inline-block;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dt:after {
    content: ":";
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description a .__detail dl dd {
    margin: 0;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__description .__more {
    font-size: 0.85em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__order, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__total {
    padding: 0.5em 0;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price:before, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price:after, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__order:before, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__order:after, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__total:before, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__total:after {
    content: " ";
    display: table;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price:after, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__order:after, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__total:after {
    clear: both;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price .__heading, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__order .__heading, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__total .__heading {
    font-weight: bold;
    width: 40%;
    float: left;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price .__body, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__order .__body, .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__total .__body {
    width: 60%;
    float: left;
    text-align: right;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr td.__price .__detail {
    font-size: 0.85em;
  }
  .main.main--mypage-approval-detail section.__detail .__delivery .__product table tbody tr:last-child {
    border-bottom: none;
  }
}
.main.main--mypage-approval-detail section.__back a.__link:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  padding-right: 0.5em;
}

/* --------------------------------------------------------------------------
   マイページ > グループ管理 > グループ会員
   -------------------------------------------------------------------------- */
.main.main--mypage-group-member-index section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-group-member-index section.__create, .main.main--mypage-group-member-index section.__list, .main.main--mypage-group-member-index section.__pagination {
    padding: 0 1em;
  }
}
.main.main--mypage-group-member-index section.__create {
  text-align: right;
}
.main.main--mypage-group-member-index section.__list table.__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-group-member-index section.__list table.__table tr th,
.main.main--mypage-group-member-index section.__list table.__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-group-member-index section.__list table.__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-group-member-index section.__list table.__table {
    display: block;
  }
  .main.main--mypage-group-member-index section.__list table.__table tbody {
    display: block;
  }
  .main.main--mypage-group-member-index section.__list table.__table tbody tr {
    display: block;
    padding: 0.75em 1em;
    border-top: 1px solid #ddd;
  }
  .main.main--mypage-group-member-index section.__list table.__table tbody tr:last-child {
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-group-member-index section.__list table.__table tbody tr td {
    padding: 0;
    display: block;
    border-top: none;
    border-bottom: none;
  }
  .main.main--mypage-group-member-index section.__list table.__table tbody tr td:not(:first-child) {
    margin-top: 0.5em;
  }
  .main.main--mypage-group-member-index section.__list table.__table tbody tr td.__action {
    text-align: right;
  }
}
.main.main--mypage-group-member-index section.__list table.__table tbody td.__name .__email {
  display: block;
  font-size: 0.85em;
  color: #666;
}
.main.main--mypage-group-member-index section.__list table.__table tbody td.__roles ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main.main--mypage-group-member-index section.__list table.__table tbody td.__roles ul li {
  display: inline-block;
  font-size: 0.8em;
  padding: 0 0.5em;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-group-member-index section.__list table.__table tbody td.__action {
    white-space: nowrap;
    width: 1em;
  }
}

.main.main--mypage-group-member-edit section.__content-form table:not(:first-child),
.main.main--mypage-group-member-create section.__content-form table:not(:first-child) {
  margin-top: 1em;
}

.main.main--mypage-group-member-edit section.__delete {
  text-align: center;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-group-member-edit section.__delete {
    padding: 0 1em;
  }
}
.main.main--mypage-group-member-edit section.__delete button.__button {
  background-color: #fff;
  color: #FA8072;
  border: 1px solid #FA8072;
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   マイページ > グループ管理 > 承認ルール
   -------------------------------------------------------------------------- */
.main.main--mypage-group-policy-index section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-group-policy-index section.__create, .main.main--mypage-group-policy-index section.__list, .main.main--mypage-group-policy-index section.__pagination {
    padding: 0 1em;
  }
}
.main.main--mypage-group-policy-index section.__create {
  text-align: right;
}
.main.main--mypage-group-policy-index section.__list table.__table {
  width: 100%;
  border-collapse: collapse;
}
.main.main--mypage-group-policy-index section.__list table.__table tr th,
.main.main--mypage-group-policy-index section.__list table.__table tr td {
  padding: 0.75em 1em;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.main.main--mypage-group-policy-index section.__list table.__table tr th {
  font-weight: normal;
  background-color: #f2f2f2;
}
@media screen and (max-width: 599px) {
  .main.main--mypage-group-policy-index section.__list table.__table {
    display: block;
  }
  .main.main--mypage-group-policy-index section.__list table.__table tbody {
    display: block;
  }
  .main.main--mypage-group-policy-index section.__list table.__table tbody tr {
    display: block;
    padding: 0.75em 1em;
    border-top: 1px solid #ddd;
  }
  .main.main--mypage-group-policy-index section.__list table.__table tbody tr:last-child {
    border-bottom: 1px solid #ddd;
  }
  .main.main--mypage-group-policy-index section.__list table.__table tbody tr td {
    padding: 0;
    display: block;
    border-top: none;
    border-bottom: none;
  }
  .main.main--mypage-group-policy-index section.__list table.__table tbody tr td:not(:first-child) {
    margin-top: 0.5em;
  }
  .main.main--mypage-group-policy-index section.__list table.__table tbody tr td.__action {
    text-align: right;
  }
}
.main.main--mypage-group-policy-index section.__list table.__table tbody td.__name a {
  font-weight: bold;
}
.main.main--mypage-group-policy-index section.__list table.__table tbody td.__name .__discription {
  display: block;
  font-size: 0.85em;
  color: #666;
}
@media screen and (min-width: 600px) {
  .main.main--mypage-group-policy-index section.__list table.__table tbody td.__action {
    white-space: nowrap;
    width: 1em;
  }
}

.main.main--mypage-group-policy-edit section:not(:first-child) {
  margin-top: 1em;
}
.main.main--mypage-group-policy-edit section.__submit, .main.main--mypage-group-policy-edit section.__delete {
  text-align: center;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-group-policy-edit section.__submit, .main.main--mypage-group-policy-edit section.__delete {
    padding: 0 1em;
  }
}
.main.main--mypage-group-policy-edit section.__input td.__wrapper .__js-add-form {
  text-align: right;
}
.main.main--mypage-group-policy-edit section.__input td.__wrapper .__form-wrapper {
  margin-top: 1em;
}
.main.main--mypage-group-policy-edit section.__input td.__wrapper .__form-wrapper .__level {
  display: inline-block;
  color: #666;
  font-weight: bold;
}
.main.main--mypage-group-policy-edit section.__input td.__wrapper .__form-wrapper span.__js-delete-form {
  display: inline-block;
  float: right;
  cursor: pointer;
  color: #666;
  font-weight: bold;
}
.main.main--mypage-group-policy-edit section.__delete button.__button {
  background-color: #fff;
  color: #FA8072;
  border: 1px solid #FA8072;
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   マイページ > 発注書のダウンロード
   -------------------------------------------------------------------------- */
.main.main--mypage-order-purchase section:not(:first-child) {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-purchase section.__description {
    padding: 0 1em;
  }
}
.main.main--mypage-order-purchase section.__download {
  margin-top: 1em;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .main.main--mypage-order-purchase section.__download {
    padding-right: 1em;
    padding-left: 1em;
  }
}
.main.main--mypage-order-purchase section.__download .__button {
  background-color: #2ab27b;
  color: #fff;
}
.main.main--mypage-order-purchase section.__download .__button:before {
  font-size: 1.3em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1c1";
  padding-right: 0.3em;
}
