/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '©';
}
[dir='rtl'] .slick-prev:before
{
    content: '¨';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '¨';
}
[dir='rtl'] .slick-next:before
{
    content: '©';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: 'E';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model */
/* ============================================ */

* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 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 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 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: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 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: inherit; /* 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;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */

/**
 * Reset form fields to make them styleable
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  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"] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */

select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 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 {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  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;
}

/**
 * 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 outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * 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 */
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* 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;
}

/*
 * Remove outline for editable content.
 */

[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}


/*
Theme Name: 
Theme URI: 
Author: COMLAB
*/
.u-inner {
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.u-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}

.u-for_pc {
  display: none !important;
}

@media screen and (min-width: 840px) {
  .u-for_pc {
    display: block !important;
  }
}

.u-for_pc_il {
  display: none !important;
}

@media screen and (min-width: 840px) {
  .u-for_pc_il {
    display: inline !important;
  }
}

.u-for_pc_ilb {
  display: none !important;
}

@media screen and (min-width: 840px) {
  .u-for_pc_ilb {
    display: inline-block !important;
  }
}

.u-for_sp {
  display: block !important;
}

@media screen and (min-width: 840px) {
  .u-for_sp {
    display: none !important;
  }
}

.u-for_sp_il {
  display: inline !important;
}

@media screen and (min-width: 840px) {
  .u-for_sp_il {
    display: none !important;
  }
}

.u-for_sp_ilb {
  display: inline-block !important;
}

@media screen and (min-width: 840px) {
  .u-for_sp_ilb {
    display: none !important;
  }
}

.hp_fontPrata {
  font-family: 'Prata', serif !important;
}

.hp_fontMincyo {
  font-family: "Ÿà–¾’©", "YuMincho", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif !important;
}

.hp_fontGothic {
  font-family: "ŸàƒSƒVƒbƒN Medium" , "YuGothic" , "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo , sans-serif !important;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/*ƒx[ƒXÝ’è*/
body {
  font-size: 16px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.4px;
  color: #414141;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  /*word-wrap: break-word;
  overflow-wrap: break-word;*/
  word-break: break-all;
}

a {
  text-decoration: none;
  color: #212121;
}

a:focus {
  outline: none;
}

section {
  position: relative;
}

textarea {
  padding: 1em;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input {
  padding-left: 1em;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  cursor: pointer;
}

#notfound #content {
  padding: 200px 0;
  text-align: center;
}

.notfound-wrapper {
  line-height: 2;
}

.slick-slide {
  outline: none;
}

.a {
  width: 100px;
}

.test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  color: red;
  letter-spacing: 0.4em;
}

.test .hoge {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

article h2 {
  font-size: 140%;
  font-weight: bold;
  border-bottom: 1px dashed #707070;
  margin-bottom: 20px;
}

article h3 {
  font-size: 110%;
  font-weight: bold;
  border-bottom: 1px dashed #707070;
  margin-bottom: 20px;
}

article h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 841px) {
  body.__cart {
    min-width: 1200px;
  }
}

@media screen and (max-width: 1000px) {
  .p-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 20;
  }
}

.p-header__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 1000px) {
  .p-header__wrapper {
    position: relative;
  }
}

.p-sp_header_bg {
  background-color: #fff;
  height: 62px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  display: none;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

@media screen and (max-width: 1000px) {
  .p-sp_header_bg {
    position: relative;
    z-index: 20;
    height: 70px;
    display: block;
    opacity: 1;
  }
  .js_oneScroll .p-sp_header_bg {
    opacity: 1;
  }
  body:not(#index) .p-sp_header_bg {
    opacity: 1;
  }
  body.is-humburger_open .p-sp_header_bg {
    top: 0;
    opacity: 1;
    border-bottom: 0;
    height: 50px;
  }
}

.p-main {
  padding-top: 92px;
  overflow: hidden;
  -webkit-transition: padding-top 200ms ease-out;
  transition: padding-top 200ms ease-out;
}

@media screen and (max-width: 1000px) {
  .p-main {
    padding-top: 67px;
    /*.is-humburger_open &{
      padding-top: 50px;
    }*/
  }
}

.p-nav {
  width: 100%;
  top: 0;
  background-color: white;
  max-width: none;
  z-index: 10;
  width: 100%;
  max-width: none;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: auto;
  -webkit-transition: background-color 200ms ease-out;
  transition: background-color 200ms ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body:not(#index) .p-nav {
  background-color: white;
}

body.js-over_hero .p-nav {
  background-color: white;
}

@media screen and (max-width: 1000px) {
  .p-nav {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav {
    position: fixed;
    padding-top: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    position: fixed;
    width: 90%;
    height: 100vh;
    background-color: #fff;
    top: 0;
    left: auto;
    right: 0;
    -webkit-transition: -webkit-transform 600ms ease-out;
    transition: -webkit-transform 600ms ease-out;
    transition: transform 600ms ease-out;
    transition: transform 600ms ease-out, -webkit-transform 600ms ease-out;
    background-color: white;
    margin-bottom: 0;
    z-index: 10;
    padding-right: 0;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    padding-bottom: 80px;
  }
  .is-humburger_open .p-nav {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .is-humburger_close .p-nav {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .is-humburger_close_end .p-nav {
    opacity: 0;
    pointer-events: auto;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.p-nav__sns {
  display: none;
}

@media screen and (max-width: 840px) {
  .p-nav__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-nav__sns__wrapper {
  max-width: 95px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-nav__sns img.__fb {
  width: 28px;
  height: 28px;
}

.p-nav__sns img.__insta {
  width: 28px;
  height: 28px;
}

.p-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
}

@media screen and (max-width: 1000px) {
  .p-util {
    display: none;
  }
}

.p-util__item {
  position: relative;
  margin-right: 25px;
}

@media screen and (max-width: 1150px) {
  .p-util__item {
    margin-right: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-util__item {
    margin-right: 20px;
  }
}

.p-util__item > .__icon {
  display: inline-block;
}

.p-util__item > .__icon > img {
  width: 100%;
}

.p-util__item > .__icon > .iconText {
  font-size: 9px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .p-util__item > .__icon > .iconText {
    font-size: 6px;
    line-height: 1.8;
  }  
}

.p-util__item:last-child {
  margin-right: 0;
}

.p-util__item.__fav > .__icon > img {
  display: block;
  width: 23px;
  margin: 0 auto;
}

@media screen and (max-width: 1350px) {
  .p-util__item.__fav > .__icon > img {
    display: block;
    width: 19px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 840px) {
  .p-util__item.__fav > .__icon > img {
    display: block;
    width: 20px;
    margin: 0 auto;
  }
}

.p-util__item.__user > .__icon > img {
  display: block;
  width: 23px;
  margin: 0 auto;
}

@media screen and (max-width: 1350px) {
  .p-util__item.__user > .__icon > img {
    display: block;
    width: 19px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 840px) {
  .p-util__item.__user > .__icon > img {
    display: block;
    width: 20px;
    margin: 0 auto;
  }
}

.p-util__item.__cart > .__icon > img {
  display: block;
  width: 29px;
  margin: 0 auto;
}

@media screen and (max-width: 1350px) {
  .p-util__item.__cart > .__icon > img {
    display: block;
    width: 23px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 840px) {
  .p-util__item.__cart > .__icon > img {
    display: block;
    width: 27px;
    margin: 0 auto;
  }
}

.p-nav__inner {
  margin-left: auto;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 50px;
  padding-left: 255px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1250px) {
  .p-nav__inner {
    padding-left: 220px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 1150px) {
  .p-nav__inner {
    padding-right: 30px;
  }
}

@media screen and (max-width: 1050px) {
  .p-nav__inner {
    padding-left: 180px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__inner {
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 35px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  body.js_headerFixed .p-nav {
    position: fixed;
    width: 100%;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 2%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: none;
  }
}

.p-anker {
  position: absolute;
  left: 0;
  top: -148px;
}

@media screen and (max-width: 840px) {
  .p-anker {
    top: -120px;
  }
}

.p-nav__item {
  position: relative;
  font-weight: bold;
  padding: 33px 30px 33px 0;
  font-size: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

@media screen and (min-width: 1001px) {
  .p-nav__item.__guide {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1250px) {
  .p-nav__item {
    padding-right: 25px;
  }
}

@media screen and (max-width: 1050px) {
  .p-nav__item {
    padding-right: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item {
    font-size: 16px;
    padding-right: 30px;
    width: 100%;
  }
}

@media screen and (min-width: 1001px) {
  .p-nav__item.__sp {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item.__sp_arrow:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 1px;
    background-color: #242424;
    display: inline-block;
    right: 28px;
    top: calc(50% + 9px);
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform: translateY(-100%) rotate(30deg);
        -ms-transform: translateY(-100%) rotate(30deg);
            transform: translateY(-100%) rotate(30deg);
  }
  .p-nav__item.__sp_arrow:after {
    position: absolute;
    content: "";
    height: 10px;
    width: 1px;
    background-color: #242424;
    display: inline-block;
    right: 28px;
    top: 50%;
    -webkit-transform: translateY(-100%) rotate(-30deg);
        -ms-transform: translateY(-100%) rotate(-30deg);
            transform: translateY(-100%) rotate(-30deg);
  }
}

.p-nav__item:before {
  display: none;
}

.p-nav__item > .__arrow {
  display: none;
}

@media screen and (max-width: 1000px) {
  .p-nav__item > .__arrow {
    display: inline-block;
    position: absolute;
    top: 27px;
    right: 7%;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
  }
}

.p-nav__item.js_active > .__arrow {
  -webkit-transform: translateX(-100%) rotate(180deg);
      -ms-transform: translateX(-100%) rotate(180deg);
          transform: translateX(-100%) rotate(180deg);
}

@media screen and (max-width: 1000px) {
  .p-nav__item.js_active > .__arrow {
    -webkit-transform: translateX(-100%) rotate(180deg);
        -ms-transform: translateX(-100%) rotate(180deg);
            transform: translateX(-100%) rotate(180deg);
  }
}

@media screen and (min-width: 1001px) {
  .p-nav__item.__contact {
    background-color: #005927;
    width: 180px;
    color: #fff;
    padding: 31px 25px 31px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (min-width: 1001px) and (max-width: 1000px) {
  .p-nav__item.__contact {
    width: 150px;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item.__contact > .__main {
    font-size: 18px;
    margin-right: 5px;
  }
  .p-nav__item.__contact a {
    color: #fff;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item.__products {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item.__has_child > a.u-cover {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item {
    padding: 18px 0 0;
    padding-right: 0px;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
  }
}

.p-nav__item__inner {
  position: relative;
  z-index: 3;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .p-nav__item__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px 18px;
    border-bottom: 1px solid #EDF1F5;
    z-index: 1;
  }
}

.p-nav__item__inner > .__main {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

@media screen and (max-width: 1350px) {
  .p-nav__item__inner > .__main {
    font-size: 12px;
  }
}

@media screen and (max-width: 1250px) {
  .p-nav__item__inner > .__main {
    font-size: 11px;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item__inner > .__main {
    width: auto;
    margin-right: 20px;
    font-size: 14px;
    margin-bottom: 0;
  }
}

.p-nav__item__inner > .__sub {
  display: block;
  font-size: 12px;
  font-family: "Ÿà–¾’©", "YuMincho", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

@media screen and (max-width: 1350px) {
  .p-nav__item__inner > .__sub {
    font-size: 11px;
  }
}

@media screen and (max-width: 1250px) {
  .p-nav__item__inner > .__sub {
    font-size: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav__item__inner > .__sub {
    display: inline-block;
    width: auto;
    color: #000;
    display: none;
  }
}

.p-spnav_child {
  position: relative;
  z-index: 4;
  font-size: 12px;
  color: #000;
}

.p-spnav_child a {
  color: #000;
}

@media screen and (min-width: 1001px) {
  .p-spnav_child {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 100%);
        -ms-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    display: none !important;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.9);
    width: 160px;
  }
  .js_isPc .p-nav__item:hover .p-spnav_child {
    display: block !important;
  }
}

.p-spnav_child__item {
  position: relative;
  padding: 20px 18%;
  border-bottom: 1px solid #EDF1F5;
}

.p-spnav_child__item:first-child {
  border-top: 0;
}

.p-spnav_child_toggle {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% - 80px);
  right: 0;
  z-index: 15;
  height: 60px;
}

@media screen and (max-width: 1000px) {
  .p-spnav_child_toggle {
    display: block;
  }
}

.p-nav__item > .__main {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1000px) {
  .p-nav__item > .__main {
    font-size: 20px;
  }
}

.p-nav__item > .op_sub {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.p-nav__item.__line {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media screen and (min-width: 1001px) {
  .p-nav__item:last-child {
    padding-right: 0;
  }
}

.p-top_delivery_area {
  position: fixed;
  left: 193px;
  top: 27px;
  z-index: 25;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1250px) {
  .p-top_delivery_area {
    left: 164px;
    top: 27px;
    font-size: 13px;
  }
}

@media screen and (max-width: 1100px) {
  .p-top_delivery_area {
    left: 144px;
  }
}

@media screen and (max-width: 1000px) {
  .p-top_delivery_area {
    display: none;
  }
}

.p-top_delivery_area__ttl {
  margin-bottom: 10px;
}

.p-top_delivery_area_wrapper {
  font-size: 13px;
}

@media screen and (max-width: 1250px) {
  .p-top_delivery_area_wrapper {
    font-size: 12px;
  }
}

.p-top_delivery_area_wrapper > .__item {
  cursor: pointer;
  padding: 2px 5px;
}

.js_isIe .p-top_delivery_area_wrapper > .__item {
  padding: 4px 5px 0px;
}

.p-top_delivery_area_wrapper > .__item.__current {
  font-weight: 900;
  background-color: #377B4A;
  color: #fff;
}

.p-top_delivery_area_wrapper > .__sep {
  margin: 0 3px 0 5px;
}

@media screen and (max-width: 1250px) {
  .p-top_delivery_area_wrapper > .__sep {
    margin: 0 2px 0 3px;
  }
}

.p-logo {
  position: fixed;
  left: 20px;
  top: 27px;
  z-index: 25;
  -webkit-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  /*body:not(#index) &{
    opacity: 0;
    pointer-events: none;
  }*/
}

.js_oneScroll .p-logo {
  opacity: 0;
  pointer-events: none;
}

.is-humburger_open .p-logo {
  top: 11px;
  pointer-events: none;
}

body.column-site .p-logo {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 1000px) {
  .p-logo {
    top: 20px;
    left: 15px;
  }
}

.p-logo_s {
  position: fixed;
  left: 45px;
  top: 64px;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

@media screen and (max-width: 1250px) {
  .p-logo_s {
    width: 150px;
  }
}

@media screen and (max-width: 1100px) {
  .p-logo_s {
    width: 130px;
  }
}

@media screen and (max-width: 1000px) {
  .p-logo_s {
    width: 130px;
    top: 45px;
    left: 5.5%;
  }
  body.is-humburger_open .p-logo_s {
    top: 55px;
  }
  body .p-logo_s {
    top: 55px;
  }
}

.js_oneScroll .p-logo_s {
  opacity: 1;
  pointer-events: auto;
  top: 27px;
}

@media screen and (max-width: 1000px) {
  .js_oneScroll .p-logo_s {
    top: 13px;
  }
}

.is-humburger_open .p-logo_s {
  opacity: 1;
  pointer-events: auto;
  top: 27px;
}

@media screen and (max-width: 1000px) {
  .is-humburger_open .p-logo_s {
    top: 13px;
  }
}

body.column-site .p-logo_s {
  opacity: 1;
  pointer-events: auto;
}

body:not(#index) .p-logo_s {
  opacity: 1;
  pointer-events: auto;
}

.p-logo > h1 > .__img {
  width: 145px;
}

@media screen and (max-width: 1250px) {
  .p-logo > h1 > .__img {
    width: 125px;
  }
}

@media screen and (max-width: 1100px) {
  .p-logo > h1 > .__img {
    width: 110px;
  }
}

@media screen and (max-width: 1000px) {
  .p-logo > h1 > .__img {
    width: 108px;
  }
}

.p-logo_s > .__img {
  width: 171px;
  height: 31px;
}

.js_openSwitch {
  cursor: pointer;
}

.js_openTarget {
  display: none;
}

/*Humbuger button*/
.p-humburger {
  position: fixed;
  right: 3%;
  top: 5px;
  width: 40px;
  height: 60px;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 22px;
  z-index: 25;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
  display: none;
  -webkit-transition: top 200ms ease-out;
  transition: top 200ms ease-out;
}

.is-humburger_open .p-humburger {
  top: 0;
}

@media screen and (max-width: 1000px) {
  .p-humburger {
    padding: 20px 0 12px;
    display: block;
  }
  .is-humburger_open .p-humburger {
    padding: 15px 0 12px;
  }
  #factory .p-humburger {
    display: none;
  }
}

.p-humburger__wrapper {
  position: relative;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  margin-bottom: 5px;
  width: 42px;
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  .p-humburger__wrapper {
    margin-bottom: 5px;
    width: 24px;
  }
}

.is-humburger_open .p-humburger__wrapper {
  width: 35px;
}

.p-humburger span.p-humburger__bar {
  display: block;
  width: 100%;
  margin: 0 auto 8px;
  height: 1px;
  background: #141414;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.p-humburger span.p-humburger__bar:last-child {
  margin-bottom: 0;
}

.is-humburger_open .p-humburger span.p-humburger__bar {
  width: 55%;
}

@media screen and (max-width: 1000px) {
  .p-humburger span.p-humburger__bar {
    left: 0;
    top: 0;
  }
}

.is-humburger_open .p-humburger span.p-humburger__bar.-top {
  -webkit-transform: translateY(10px) rotate(-45deg);
      -ms-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.p-header_bg_sp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 50px;
  background-color: #111;
}

/*.p-humburger span.p-humburger__bar.-middle{
  opacity: 0;
}*/
.is-humburger_open .p-humburger span.p-humburger__bar.-middle {
  opacity: 0;
}

.is-humburger_open .p-humburger span.p-humburger__bar.-bottom {
  -webkit-transform: translateY(-8px) rotate(45deg);
      -ms-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

body.is-scroll_prevented {
  overflow-y: scroll;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  body.js_noScroll {
    overflow-y: scroll;
    position: fixed;
    width: 100%;
  }
}

.p-pattern1.-home_feature {
  margin-bottom: 120px;
}

@media screen and (max-width: 840px) {
  .p-pattern1.-home_feature {
    margin-bottom: 60px;
  }
}

.p-pattern1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-humburger__text {
  position: relative;
  left: 2px;
  font-size: 10px;
  text-align: center;
}

.p-ceiling {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .p-ceiling {
    font-size: 14px;
  }
}

.js_oneScroll .p-ceiling {
  margin-top: -40px;
}

@media screen and (max-width: 1000px) {
  .js_oneScroll .p-ceiling {
    margin-top: -30px;
  }
}

.is-humburger_open .p-ceiling {
  margin-top: -40px;
}

@media screen and (max-width: 1000px) {
  .is-humburger_open .p-ceiling {
    margin-top: -30px;
  }
}

.p-ceiling__text {
  background-color: #407E51;
  color: #fff;
  text-align: center;
  padding: 7px 0;
  min-height: 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  .p-ceiling__text {
    font-size: 13px;
    padding: 7px 0;
    min-height: 30px;
  }
}

.p-ceiling__more {
  position: absolute;
  right: 3.5%;
  top: 13px;
  font-size: 10px;
  font-family: "Ÿà–¾’©", "YuMincho", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  color: #fff;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-ceiling__more {
    right: 2%;
  }
}

@media screen and (max-width: 840px) {
  .p-ceiling__more > .__text {
    display: none;
  }
}

.p-ceiling__more:after {
  content: "";
  position: relative;
  top: 2px;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  display: inline-block;
  margin-left: 10px;
}

@media screen and (max-width: 840px) {
  .p-ceiling__more:after {
    border-top: 4px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #fff;
  }
}

.p-hero {
  position: relative;
}

.p-hero__bnr {
  position: absolute;
  right: 5%;
  bottom: 20px;
  z-index: 3;
  will-change: opacity;
}

@media screen and (max-width: 840px) {
  .p-hero__bnr {
    display: none;
  }
}

.p-hero__bnr__img {
  width: 220px;
}

.p-hero_slide {
  line-height: 0;
}

.p-hero_slide__item {
  position: relative;
  padding: 0 7px;
}

.p-hero_slide__item > img {
  width: 100%;
}

@media screen and (max-width: 840px) {
  .p-hero_slide__item > img.__pc {
    display: none;
  }
}

@media screen and (min-width: 841px) {
  .p-hero_slide__item > img.__sp {
    display: none;
  }
}

@media screen and (max-width: 840px) {
  .p-hero_slide__item {
    padding: 0;
  }
}

.slick-next:before {
  content: "";
  color: red;
  background-image: url(../img/common/slide_arrow_r.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 31px;
  display: inline-block;
  position: absolute;
  right: 32px;
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
  opacity: 1;
}

@media screen and (max-width: 840px) {
  .slick-next:before {
    width: 16px;
    height: 33px;
    right: 12px;
  }
}

.slick-prev {
  z-index: 5;
  left: 37px;
}

.slick-prev:before {
  content: "";
  color: red;
  background-image: url(../img/common/slide_arrow_l.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 31px;
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
  opacity: 1;
}

@media screen and (max-width: 840px) {
  .slick-prev:before {
    width: 16px;
    height: 33px;
    left: 17px;
  }
}

.slick-next {
  right: 0px;
  z-index: 3;
  width: calc(12% - 8px);
  height: 100%;
}

@media screen and (min-width: 841px) {
  .slick-next {
    background-color: rgba(0, 0, 0, 0.31) !important;
  }
}

@media screen and (max-width: 840px) {
  .slick-next {
    right: 0px;
    width: 30px;
  }
}

.slick-prev {
  left: 0px;
  z-index: 3;
  bottom: 50%;
  width: calc(12% - 8px);
  height: 100%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 841px) {
  .slick-prev {
    background-color: rgba(0, 0, 0, 0.31) !important;
  }
}

@media screen and (max-width: 840px) {
  .slick-prev {
    left: 0px;
    width: 30px;
  }
}

.slick-dots {
  bottom: 13px;
}

.slick-dots li {
  width: 8px;
  height: 6px;
}

.slick-dots li button {
  width: 8px;
  height: 6px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  width: 8px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.63);
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: rgba(79, 144, 97, 0.68);
}

.p-bg_sasa {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(54%, 100%);
      -ms-transform: translate(54%, 100%);
          transform: translate(54%, 100%);
  width: 32%;
}

#index_pickup .p-bg_sasa {
  top: 0;
  bottom: auto;
  -webkit-transform: translate(54%, 0);
      -ms-transform: translate(54%, 0);
          transform: translate(54%, 0);
}

@media screen and (min-width: 841px) {
  #index_pickup .p-bg_sasa {
    display: none;
  }
}

@media screen and (max-width: 840px) {
  .p-hero .p-bg_sasa {
    display: none;
  }
}

.p-contain {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  padding: 45px 0 0;
  margin: 0 auto;
  max-width: 1270px;
  margin-bottom: 90px;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 154% -2%;
}

@media screen and (min-width: 841px) {
  #index .p-contain {
    padding: 72px 0 0;
  }
}

@media screen and (max-width: 840px) {
  #index .p-contain {
    margin-bottom: 20px;
  }
}

#cart_delivery .p-contain {
  margin-bottom: 385px;
}

@media screen and (max-width: 840px) {
  #cart_delivery .p-contain {
    margin-bottom: 180px;
  }
}

#contact .p-contain {
  margin-bottom: 170px;
}

@media screen and (max-width: 840px) {
  #contact .p-contain {
    margin-bottom: 120px;
  }
}

.p-contain.__archive {
  margin-bottom: 155px;
}

@media screen and (max-width: 840px) {
  .p-contain.__archive {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 840px) {
  .p-contain {
    margin-bottom: 120px;
    padding-top: 30px;
  }
  #cart_zenkoku .p-contain {
    margin-bottom: 70px;
  }
  #recieve_hokuriku .p-contain {
    margin-bottom: 70px;
  }
}

#cart_payment .p-contain {
  margin-bottom: 160px;
}

@media screen and (max-width: 840px) {
  #cart_payment .p-contain {
    margin-bottom: 120px;
  }
}

#flo .p-contain {
  margin-bottom: 160px;
}

@media screen and (max-width: 840px) {
  #flo .p-contain {
    margin-bottom: 120px;
  }
}

#shopping_guide .p-contain {
  margin-bottom: 160px;
}

@media screen and (max-width: 840px) {
  #shopping_guide .p-contain {
    margin-bottom: 120px;
  }
}

#faq .p-contain {
  margin-bottom: 160px;
}

@media screen and (max-width: 840px) {
  #faq .p-contain {
    margin-bottom: 120px;
  }
}

#cart_confirm .p-contain {
  margin-bottom: 190px;
}

@media screen and (max-width: 840px) {
  #cart_confirm .p-contain {
    margin-bottom: 120px;
  }
}

#register .p-contain {
  margin-bottom: 360px;
}

@media screen and (max-width: 840px) {
  #register .p-contain {
    margin-bottom: 120px;
  }
}

#change_member_information .p-contain {
  margin-bottom: 190px;
}

@media screen and (max-width: 840px) {
  #change_member_information .p-contain {
    margin-bottom: 120px;
  }
}

#register_confirm .p-contain {
  margin-bottom: 190px;
}

@media screen and (max-width: 840px) {
  #register_confirm .p-contain {
    margin-bottom: 120px;
  }
}

#specific_commercial_transactions_law .p-contain {
  margin-bottom: 190px;
}

@media screen and (max-width: 840px) {
  #specific_commercial_transactions_law .p-contain {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 840px) {
  #single .p-contain {
    margin-bottom: 20px;
  }
}

.p-sidenav {
  width: 230px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-sidenav {
    display: none;
  }
}

.p-sidenav__ttl {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 900;
}

.p-sidenav__list {
  font-size: 13px;
}

.p-sidenav__list__item {
  display: block;
  padding: 18px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #E3E3E3;
}

.p-sidenav__list__item:first-child {
  border-top: 1px solid #E3E3E3;
}

body.js_isSafari .p-sidenav__list__item {
  padding: 18px 10px 16px;
}

.p-sidenav__wrapper {
  margin-bottom: 65px;
}

.p-sidenav__wrapper:last-child {
  margin-bottom: 0;
}

.p-contain__wrapper {
  width: calc(100% - 230px);
}

#flo .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#shopping_guide .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#faq .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#single .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#cart_delivery .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#cart_counter_pickup .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#login .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#password_reset .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#password_reset_complete .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#register .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#register_confirm .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#mypage .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#change_member_information .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#destination .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#history .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#history_detail .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#receipt_guest .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#hold .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#contact .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#specific_commercial_transactions_law .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#privacy_policy .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#news_single .p-contain__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-contain__wrapper {
    width: 100%;
  }
}

.p-sidenav__bunner__item {
  margin-bottom: 40px;
  display: block;
}

.p-sidenav__bunner__item:last-child {
  margin-bottom: 0;
}

.p-newsbox {
  max-width: 915px;
}

.p-newsbox__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-newsbox__head__item {
  width: calc(20%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #CECECE;
  border-top: 1px solid #CECECE;
  text-align: center;
  font-size: 13px;
  padding: 10px 0;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.p-newsbox__head__item.__current {
  background-color: #101010;
  color: #fff;
}

@media screen and (max-width: 840px) {
  .p-newsbox__head__item {
    font-size: 10px;
  }
}

.p-newsbox__head__item:first-child {
  border-left: 1px solid #CECECE;
}

.p-newsbox__head__item.__last {
  border-right: 1px solid #cecece;
}

.js_isPc .p-newsbox__head__item:hover {
  background-color: #101010;
  color: #fff;
}

.p-secttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

#index_news .p-secttl {
  margin-bottom: 0;
}

#sctl_main .p-secttl {
  margin-bottom: 50px;
}

@media screen and (max-width: 840px) {
  #sctl_main .p-secttl {
    margin-bottom: 40px;
  }
}

.p-secttl__main {
  font-size: 24px;
  font-weight: 500;
  margin-right: 10px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  #about .p-secttl__main {
    font-size: 20px;
  }
}

.p-secttl__sub {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.p-newsbox__wrapper {
  border: 1px solid #CECECE;
  padding: 25px 35px;
  background-color: #fff;
}

@media screen and (max-width: 840px) {
  .p-newsbox__wrapper {
    padding: 30px 20px 30px;
  }
}

.p-index_news {
  margin-bottom: 85px;
}

@media screen and (max-width: 840px) {
  .p-index_news {
    margin-bottom: 50px;
  }
}

.p-index_news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 28px;
  padding-right: 10px;
  max-width: 915px;
}

.p-link {
  position: relative;
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.p-link:after {
  content: "";
  display: inline-block;
  border-top: 4px solid transparent;
  border-left: 6px solid #1C1C1C;
  border-right: 6px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 10px;
}

.p-newslist {
  display: none;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-newslist.is-active {
  display: block;
}

.p-newslist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 14px;
}

@media screen and (max-width: 840px) {
  .p-newslist__item {
    font-size: 13px;
  }
}

.p-newslist__item:last-child {
  margin-bottom: 0;
}

.p-newslist__item__date {
  width: 135px;
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .p-newslist__item__date {
    width: 100%;
    margin-bottom: 10px;
  }
}

.p-newslist__item__text {
  width: calc(100% - 135px);
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .p-newslist__item__text {
    width: 100%;
  }
}

.p-bunner {
  position: relative;
  background-color: #f2f2f2;
  margin-bottom: 75px;
  background-size: cover;
  background-image: url(../img/top/chirashi_bnr_bg.jpg);
  background-position: right center;
  display: block;
  padding: 60px 50px;
}

@media screen and (max-width: 1330px) {
  .p-bunner {
    background-position: 60% center;
  }
}

@media screen and (max-width: 840px) {
  .p-bunner {
    background-position: 80% center;
    margin-bottom: 50px;
    padding: 25px 20px;
    background-image: url(../img/top/chirashi_bnr_bg_sp.jpg);
  }
}

@media screen and (max-width: 500px) {
  .p-bunner {
    width: 114%;
    left: -7%;
  }
}

.p-bunner__inner {
  max-width: 465px;
}

@media screen and (max-width: 1330px) {
  .p-bunner__inner {
    max-width: 365px;
  }
}

@media screen and (max-width: 1200px) {
  .p-bunner__inner {
    max-width: 265px;
  }
}

@media screen and (max-width: 840px) {
  .p-bunner__inner {
    max-width: 465px;
  }
}

.p-bunner__ttl {
  position: relative;
  font-size: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .p-bunner__ttl {
    font-size: 34px;
  }
}

@media screen and (max-width: 840px) {
  .p-bunner__ttl {
    left: -3px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}

.p-bunner__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 1200px) {
  .p-bunner__text {
    font-size: 13px;
  }
}

@media screen and (max-width: 840px) {
  .p-bunner__text {
    font-size: 13px;
    width: 60%;
  }
}

.p-pickup {
  position: relative;
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  .p-pickup {
    margin-bottom: 55px;
  }
}

.p-pickup__wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
}

@media screen and (max-width: 840px) {
  .p-pickup__wrapper {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 841px) {
  body#index.__zenkoku .p-pickup__item {
    width: calc((100% - 21px)/2);
  }
  body#index.__zenkoku .p-pickup__item:nth-child(3n) {
    margin-right: 20px;
  }
  body#index.__zenkoku .p-pickup__item:nth-child(2n) {
    margin-right: 0;
  }
}

.p-pickup__item {
  width: calc((100% - 41px)/3);
  margin-right: 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 840px) {
  .p-pickup__item {
    width: calc((100% - 21px)/2);
    margin-bottom: 40px;
  }
  .p-pickup__item:nth-child(2n) {
    margin-right: 0;
  }
}

.p-pickup__item > .__img {
  margin-bottom: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*&:before{
      content:"";
      padding-top: 72.6%;
      display: block;
    }*/
}

@media screen and (max-width: 840px) {
  .p-pickup__item > .__img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
  }
}

.p-pickup__item > .__text {
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-pickup__item > .__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .p-pickup__item > .__text {
    font-size: 11px;
  }
}

@media screen and (min-width: 841px) {
  .p-pickup__item:nth-child(3n) {
    margin-right: 0;
  }
}

.p-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-blocks__item {
  position: relative;
  width: calc((100% - 31px)/2);
  margin-right: 30px;
  margin-bottom: 30px;
  background-color: #ccc;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-blocks__item > .__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.48);
}

.p-blocks__item > .__ttl {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.p-blocks__item:nth-child(1) {
  background-image: url(../img/top/situation_sightseen@2x.jpg);
}

.p-blocks__item:nth-child(2) {
  background-image: url(../img/top/situation_meeting@2x.jpg);
}

.p-blocks__item:nth-child(3) {
  background-image: url(../img/top/situation_celebration@2x.jpg);
}

.p-blocks__item:nth-child(4) {
  background-image: url(../img/top/situation_funeral@2x.jpg);
}

@media screen and (max-width: 840px) {
  .p-blocks__item {
    width: 100%;
    margin-right: 0;
    font-size: 17px;
  }
  .p-blocks__item:last-child {
    margin-bottom: 0;
  }
}

.p-blocks__item:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 1px solid #fff;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

@media screen and (max-width: 840px) {
  .p-blocks__item:after {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    opacity: 1;
  }
}

.js_isPc .p-blocks__item:hover:after {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 1;
}

.p-blocks__item:before {
  content: "";
  padding-top: 36%;
  display: block;
}

@media screen and (max-width: 840px) {
  .p-blocks__item:before {
    padding-top: 33.4%;
  }
}

.p-blocks__item:nth-child(2n) {
  margin-right: 0;
}

#archive .p-itemlist {
  margin-bottom: 70px;
}

@media screen and (max-width: 840px) {
  #archive .p-itemlist {
    margin-bottom: 40px;
  }
}

.p-itemlist__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-itemlist__item {
  position: relative;
  width: calc((100% - 71px)/3);
  margin-right: 35px;
  margin-bottom: 85px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-itemlist__item {
    width: calc((100% - 21px)/2);
    margin-bottom: 40px;
    margin-right: 20px;
  }
  .p-itemlist__item:nth-child(2n) {
    margin-right: 0;
  }
}

.p-itemlist__item > .__img {
  margin-bottom: 15px;
  /*&:before{
      content:"";
      padding-top: 100%;
      display: block;
    }*/
}

@media screen and (min-width: 841px) {
  .p-itemlist__item:nth-child(3n) {
    margin-right: 0;
  }
}

.p-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 12px;
  color: #fff;
  padding-left: 10px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 1200px) {
  .p-tags {
    font-size: 11px;
  }
}

@media screen and (max-width: 840px) {
  .p-tags {
    font-size: 10px;
    padding-left: 0;
    margin-bottom: 0;
  }
}

.p-tags > .__item {
  padding: 10px 12px;
  background-color: #9F7A35;
  margin-right: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.p-hold .p-tags > .__item {
  padding: 7px 15px;
}

@media screen and (max-width: 1200px) {
  .p-tags > .__item {
    padding: 8px 8px;
  }
}

@media screen and (max-width: 840px) {
  .p-tags > .__item {
    padding: 4px;
    margin-right: 8px;
  }
}

.p-tags > .__item:last-child {
  margin-right: 0;
}

.p-tags > .__item.__green {
  background-color: #4F9061;
}

.p-single__sub .p-tags {
  padding-left: 0;
  margin-bottom: 20px;
}

.p-hold .p-tags {
  padding-left: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-hold .p-tags {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-itemlist__item__ttl {
  padding-left: 10px;
}

@media screen and (max-width: 840px) {
  .p-itemlist__item__ttl {
    padding-left: 0;
  }
}

.p-itemlist__item__ttl > .__main {
  font-size: 18px;
  margin-bottom: 13px;
}

@media screen and (max-width: 840px) {
  .p-itemlist__item__ttl > .__main {
    font-size: 14px;
    margin-bottom: 7px;
  }
}

.p-itemlist__item__ttl__price {
  letter-spacing: 0.1em;
  font-size: 14px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-itemlist__item__ttl__revision{
  border: double;
  margin-top: 12px;
  padding: 8px;
}
.p-itemlist__item__ttl__price.__title{
  margin-bottom: 6px;
}

@media screen and (max-width: 840px) {
  .p-itemlist__item__ttl__price {
    font-size: 13px;
  }
}

.p-itemlist__item__ttl__price > .__tax {
  font-size: 12px;
}

@media screen and (max-width: 840px) {
  .p-itemlist__item__ttl__price > .__tax {
    font-size: 10px;
    padding-top: 5px;
    display: inline-block;
  }
}

.p-archive_price {
  font-size: 12px;
}

.p-archive_price > .__big {
  font-size: 16px;
}

.p-itemlist__item__ttl__price > .__big {
  font-size: 16px;
}

.p-belt {
  background-color: #2D342E;
  padding: 65px 0;
  margin-bottom: 95px;
}

@media screen and (max-width: 840px) {
  .p-belt {
    padding: 20px 0;
    margin-bottom: 85px;
  }
}

.p-belt__wrapper {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-belt__img {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/top/about_bg@2x.jpg);
}

@media screen and (max-width: 840px) {
  .p-belt__img {
    width: 100%;
  }
  .p-belt__img:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
}

.p-belt__texts {
  width: 50%;
  background-color: #fff;
  padding: 75px 50px 65px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 840px) {
  .p-belt__texts {
    width: 100%;
    padding: 35px 25px 30px;
  }
}

.p-belt__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .p-belt__ttl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-belt__ttl > .__main {
  font-size: 20px;
  margin-right: 15px;
}

@media screen and (max-width: 840px) {
  .p-belt__ttl > .__main {
    font-size: 18px;
    margin-right: 10px;
  }
}

.p-belt__ttl > .__sub {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.p-belt__text {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 35px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-belt__button {
  text-align: center;
  font-size: 12px;
}

.p-footer {
  background-color: #F5F5F5;
  padding: 60px 0 0;
}

@media screen and (max-width: 840px) {
  .p-footer {
    padding-top: 0;
  }
}

.p-footer__inner {
  width: 83%;
  max-width: 1160px;
}

.p-footer__bottom__innner {
  width: 83%;
  max-width: 1160px;
}

.p-footer__bottom {
  background-color: #838E72;
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 70px;
}

@media screen and (max-width: 840px) {
  .p-footer__wrapper {
    display: none;
  }
}

.p-footer__wrapper__wrapper {
  width: 50%;
  padding: 0 40px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-footer__wrapper__wrapper:nth-child(even) {
  padding: 0 0 0 40px;
}

.p-footer__ttl {
  font-size: 15px;
  font-weight: 900;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(114, 114, 114, 0.55);
  letter-spacing: 0.1em;
}

.p-footer__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.p-footer__texts:last-child {
  margin-bottom: 0;
}

.p-footer__tax {
  font-size: 10px;
}

body.__zenkoku .p-footer__tax {
  margin-left: auto;
}

.p-footer__tax__wrapper {
  display: inline-block;
  border: 1px solid rgba(112, 112, 112, 0.76);
  padding: 15px 30px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-footer__texts__wrapper {
  width: 50%;
  padding: 0 10px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-footer__texts__wrapper:nth-child(even) {
  padding: 0 0 0 20px;
}

.p-footer__texts__item {
  margin-bottom: 40px;
}

.p-footer__texts__item:last-child {
  margin-bottom: 0;
}

.p-footer__texts__item__ttl {
  font-size: 13px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.p-footer__texts__item__texts {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-footer__texts__item__texts:last-child {
  margin-bottom: 0;
}

.p-footer__texts__item__ex {
  font-size: 12px;
  font-weight: 500;
}

.p-footer__texts__item__ex__text {
  position: relative;
  display: inline-block;
}

.p-footer__texts__item__ex__text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: #707070;
}

.p-footer__bottom {
  padding: 60px 0;
  color: #fff;
}

@media screen and (max-width: 840px) {
  .p-footer__bottom {
    padding: 50px 0 100px;
  }
}

.p-footnav {
  font-size: 12px;
}

@media screen and (max-width: 840px) {
  .p-footnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-footnav__wrapper {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 840px) {
  .p-footnav__wrapper {
    width: 50%;
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-footnav__wrapper:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-footnav__wrapper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 840px) {
  .p-footnav__wrapper__wrapper {
    display: block;
  }
}

.p-footnav__item {
  letter-spacing: 0.1em;
  margin-right: 40px;
}

@media screen and (max-width: 840px) {
  .p-footnav__item {
    letter-spacing: 0;
  }
}

.p-footnav__item a {
  color: #fff;
}

.p-footnav__item a > .__icon {
  display: inline-block;
  margin-left: 5px;
}

@media screen and (max-width: 840px) {
  .p-footnav__item {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .p-footnav__item:last-child {
    margin-bottom: 0;
  }
}

.p-footnav__item:last-child {
  margin-right: 0;
}

.p-footsns {
  margin-left: auto;
  padding-right: 10px;
}

.p-footsns > .__icon {
  display: inline-block;
  margin-right: 28px;
}

.p-footsns > .__icon:last-child {
  margin-right: 0;
}

@media screen and (max-width: 840px) {
  .p-footsns {
    width: 100%;
    margin-top: 20px;
  }
}

.p-bottom {
  padding: 50px 0 40px;
  background-color: #ffffff;
}

@media screen and (max-width: 840px) {
  .p-bottom {
    text-align: center;
    padding: 10px 0 71px;
  }
}

.p-bottom__logo {
  max-width: 125px;
}

@media screen and (max-width: 840px) {
  .p-bottom__logo {
    display: none;
  }
}

.p-bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 83%;
  max-width: 1160px;
}

@media screen and (max-width: 840px) {
  .p-bottom__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-bottom__cr {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  .p-bottom__cr {
    margin-right: auto;
    width: 100%;
    text-align: center;
  }
}

.p-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1095px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 95px;
}

@media screen and (max-width: 840px) {
  .p-contact {
    margin-bottom: 50px;
  }
}

.p-contact__wrapper {
  width: 90%;
  max-width: 1090px;
  margin: 0 auto;
  position: relative;
  width: calc((100% - 56px)/2);
  margin-right: 55px;
  border: 1px solid #bbb;
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1050px) {
  .p-contact__wrapper {
    width: calc((100% - 41px)/2);
    margin-right: 40px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact__wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 65px;
    padding: 30px 0 20px;
  }
  .p-contact__wrapper:last-child {
    margin-bottom: 0;
  }
}

.p-contact__wrapper:nth-child(even) {
  margin-right: 0;
}

@media screen and (max-width: 840px) {
  .p-contact__wrapper:nth-child(even) {
    padding: 20px 0 13px;
  }
}

.p-contact__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 840px) {
  .p-contact__texts {
    display: block;
    text-align: center;
  }
}

.p-tel {
  position: relative;
  font-size: 21px;
  letter-spacing: 0.1em;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "ƒqƒ‰ƒMƒm–¾’© ProN W3", HiraMinProN-W3, Ÿà–¾’©, "Yu Mincho", Ÿà–¾’©‘Ì, YuMincho, ryumin_l_subset, HG–¾’©E, "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-contact__wrapper:nth-child(2) .p-tel {
  margin-right: 60px;
}

@media screen and (max-width: 1050px) {
  .p-contact__wrapper:nth-child(2) .p-tel {
    margin-right: 40px;
  }
}

@media screen and (max-width: 900px) {
  .p-contact__wrapper:nth-child(2) .p-tel {
    margin-right: 30px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact__wrapper:nth-child(2) .p-tel {
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 23px;
  }
}

.p-contact_sub__texts .p-tel {
  margin-bottom: 10px;
  font-size: 34px;
}

@media screen and (max-width: 1200px) {
  .p-contact_sub__texts .p-tel {
    font-size: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__texts .p-tel {
    font-size: 28px;
  }
}

@media screen and (max-width: 1000px) {
  .p-contact_sub__texts .p-tel {
    font-size: 24px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__texts .p-tel {
    font-size: 28px;
  }
}

.p-tel > .__icon {
  display: inline-block;
  width: 32px;
  margin-right: 15px;
}

@media screen and (max-width: 1000px) {
  .p-tel > .__icon {
    margin-right: 10px;
  }
}

@media screen and (max-width: 840px) {
  .p-tel > .__icon {
    margin-right: 15px;
  }
}

.p-contact_sub__texts .p-tel > .__icon {
  width: 60px;
}

@media screen and (max-width: 1200px) {
  .p-contact_sub__texts .p-tel > .__icon {
    width: 50px;
  }
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__texts .p-tel > .__icon {
    width: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .p-contact_sub__texts .p-tel > .__icon {
    width: 30px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__texts .p-tel > .__icon {
    width: 40px;
  }
}

@media screen and (max-width: 1050px) {
  .p-tel {
    font-size: 19px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .p-tel {
    font-size: 17px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 840px) {
  .p-tel {
    font-size: 21px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.p-contact_sub .p-tel {
  margin-right: 0;
}

.p-contact__texts__note {
  font-size: 10px;
}

.p-contact_sub__texts .p-contact__texts__note {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
  .p-contact_sub__texts .p-contact__texts__note {
    font-size: 13px;
  }
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__texts .p-contact__texts__note {
    font-size: 12px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__texts .p-contact__texts__note {
    font-size: 12px;
  }
}

.p-contact__ttl {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
  background-color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-contact__ttl {
    font-size: 16px;
  }
}

.p-contact__texts__download {
  font-size: 10px;
  color: #fff;
  background-color: #484848;
  border: 1px solid #484848;
  padding: 5px 30px;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.js_isPc .p-contact__texts__download:hover {
  background-color: #fff;
  color: #484848;
}

.p-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 80px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  letter-spacing: 0.1em;
}

#archive .p-breadcrumb {
  margin-bottom: 35px;
}

#single .p-breadcrumb {
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  #contact .p-breadcrumb {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 840px) {
  #news .p-breadcrumb {
    margin-bottom: 60px;
  }
}

.p-breadcrumb__item {
  position: relative;
  margin-right: 25px;
}

.p-breadcrumb__item:after {
  content: ">";
  position: absolute;
  display: inline-block;
  top: calc(50% - 2px);
  right: -8px;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.p-breadcrumb__item:last-child {
  margin-right: 0;
}

.p-breadcrumb__item:last-child:after {
  display: none;
}

.p-page_ttl {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  .p-page_ttl {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 840px) {
  #guest .p-page_ttl {
    margin-bottom: 60px;
  }
}

#news_single .p-page_ttl {
  margin-bottom: 90px;
}

@media screen and (max-width: 840px) {
  #news_single .p-page_ttl {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 840px) {
  #flo .p-page_ttl {
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  #flo .p-page_ttl {
    font-size: 19px;
  }
}

#about .p-page_ttl {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  #about .p-page_ttl {
    margin-bottom: 65px;
  }
}

#login .p-page_ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #login .p-page_ttl {
    margin-bottom: 30px;
  }
}

#password_reset_complete .p-page_ttl {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  #password_reset_complete .p-page_ttl {
    margin-bottom: 30px;
  }
}

#register_confirm .p-page_ttl {
  margin-bottom: 90px;
}

@media screen and (max-width: 840px) {
  #register_confirm .p-page_ttl {
    margin-bottom: 50px;
  }
}

#register_complete .p-page_ttl {
  margin-bottom: 115px;
}

@media screen and (max-width: 840px) {
  #register_complete .p-page_ttl {
    margin-bottom: 50px;
  }
}

#mypage .p-page_ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #mypage .p-page_ttl {
    margin-bottom: 30px;
  }
}

#card_register_complete .p-page_ttl {
  margin-bottom: 120px;
}

@media screen and (max-width: 840px) {
  #card_register_complete .p-page_ttl {
    margin-bottom: 50px;
  }
}

#destination_complete .p-page_ttl {
  margin-bottom: 120px;
}

@media screen and (max-width: 840px) {
  #destination_complete .p-page_ttl {
    margin-bottom: 50px;
  }
}

#contact_confirm .p-page_ttl {
  margin-bottom: 90px;
}

@media screen and (max-width: 840px) {
  #contact_confirm .p-page_ttl {
    margin-bottom: 30px;
  }
}

#contact_complete .p-page_ttl {
  margin-bottom: 120px;
}

@media screen and (max-width: 840px) {
  #contact_complete .p-page_ttl {
    margin-bottom: 30px;
  }
}

#specific_commercial_transactions_law .p-page_ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #specific_commercial_transactions_law .p-page_ttl {
    margin-bottom: 30px;
  }
}

#privacy_policy .p-page_ttl {
  margin-bottom: 90px;
}

@media screen and (max-width: 840px) {
  #privacy_policy .p-page_ttl {
    margin-bottom: 30px;
  }
}

#news .p-page_ttl {
  margin-bottom: 90px;
}

@media screen and (max-width: 840px) {
  #news .p-page_ttl {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 840px) {
  #contact .p-page_ttl {
    margin-bottom: 50px;
  }
}

.p-page_catch {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 85px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-page_catch {
    font-size: 16px;
    margin-bottom: 70px;
    text-align: left;
  }
}

@media screen and (max-width: 500px) {
  .p-page_catch {
    font-size: 14px;
  }
}

.p-page_catch p {
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .p-page_catch p {
    margin-bottom: 25px;
  }
}

.p-page_catch p:last-child {
  margin-bottom: 0;
}

.p-page_sec_ttl {
  width: 100%;
  font-size: 24px;
  margin-bottom: 35px;
  letter-spacing: 0.2em;
  padding-left: 10px;
  border-left: 7px solid #4F9061;
  line-height: 1.6;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-page_sec_ttl {
    font-size: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-left: 4px solid #4F9061;
    margin-bottom: 40px;
  }
  #single .p-page_sec_ttl {
    font-size: 24px;
  }
}

.p-page_sec_ttl.__h3 {
  font-size: 20px;
}

@media screen and (max-width: 840px) {
  .p-page_sec_ttl.__h3 {
    font-size: 15px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__coupon .p-page_sec_ttl {
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__point .p-page_sec_ttl {
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__total .p-page_sec_ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-guide_order__texts.__tel .p-page_sec_ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-guide_order__texts.__fax .p-page_sec_ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__other .p-page_sec_ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 840px) {
  #guide_other .p-page_sec_ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-post .p-page_sec_ttl {
    margin-bottom: 20px;
    padding-left: 15px;
  }
}

#guest_main .p-page_sec_ttl {
  margin-bottom: 50px;
}

@media screen and (max-width: 840px) {
  #guest_main .p-page_sec_ttl {
    margin-bottom: 28px;
  }
}

.p-flo_method__lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.p-flo_method__lead > .__list {
  line-height: 2;
}

@media screen and (max-width: 840px) {
  .p-flo_method__lead {
    font-size: 14px;
  }
}

.p-flo_flow {
  margin-bottom: 75px;
}

.p-flo_flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #CECECE;
}

@media screen and (max-width: 840px) {
  .p-flo_flow__wrapper {
    max-width: 500px;
    margin: 0 auto 75px auto;
  }
}

.p-flo_flow__item {
  position: relative;
  width: calc((100% - 1px)/6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 45px 10px 35px;
  border-right: 1px solid #CECECE;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #CECECE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 20px 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 170px;
  }
}

.p-flo_flow__item:last-child {
  border-right: 0;
}

.p-flo_flow__item:last-child:after {
  display: none;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:last-child {
    border-bottom: 0;
  }
}

.p-flo_flow__item > .__img {
  display: inline-block;
  margin-bottom: 35px;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item > .__img {
    margin-bottom: 0;
  }
}

.p-flo_flow__item > .__no {
  font-size: 40px;
  font-weight: bold;
  color: #377B4A;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item > .__no {
    margin-right: 30px;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item > .__no {
    font-size: 32px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:nth-child(1) > .p-flo_flow__item__img > .__img {
    width: 62px;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item:nth-child(1) > .p-flo_flow__item__img > .__img {
    width: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:nth-child(2) > .p-flo_flow__item__img > .__img {
    width: 61px;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item:nth-child(2) > .p-flo_flow__item__img > .__img {
    width: 49px;
  }
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:nth-child(3) > .p-flo_flow__item__img > .__img {
    width: 60px;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item:nth-child(3) > .p-flo_flow__item__img > .__img {
    width: 48px;
  }
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:nth-child(4) > .p-flo_flow__item__img > .__img {
    width: 76px;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item:nth-child(4) > .p-flo_flow__item__img > .__img {
    width: 61px;
  }
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:nth-child(5) > .p-flo_flow__item__img > .__img {
    width: 61px;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item:nth-child(5) > .p-flo_flow__item__img > .__img {
    width: 49px;
  }
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:nth-child(6) > .p-flo_flow__item__img > .__img {
    width: 74px;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item:nth-child(6) > .p-flo_flow__item__img > .__img {
    width: 59px;
  }
}

.p-flo_flow__item:after {
  content: "";
  height: 50px;
  width: 26px;
  position: absolute;
  top: 80px;
  right: 3px;
  display: inline-block;
  background-image: url(../img/common/flow_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item:after {
    top: auto;
    bottom: -35px;
    left: 20%;
    right: auto;
    -webkit-transform: translate(0, 0) rotate(90deg);
        -ms-transform: translate(0, 0) rotate(90deg);
            transform: translate(0, 0) rotate(90deg);
  }
}

.p-flo_flow__item__img {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item__img {
    margin-bottom: 0;
  }
}

.p-flo_flow__item__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #377B4A;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item__ttl {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-flo_flow__item__text {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  padding: 0 10px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item__text {
    font-size: 12px;
    font-weight: bold;
    padding: 0;
  }
}

.p-flo_flow__item__text > .__main {
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item__text > .__main {
    margin-bottom: 10px;
  }
}

.p-flo_flow__item__text > .__main:last-child {
  margin-bottom: 0;
}

.p-flo_flow__item__text > .__sub {
  font-size: 12px;
}

.p-flo_faq__item {
  margin-bottom: 30px;
}

.p-flo_faq__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .p-flo_flow__item__wrapper {
    width: calc(100% - 148px);
    margin-left: auto;
  }
}

@media screen and (max-width: 500px) {
  .p-flo_flow__item__wrapper {
    width: calc(100% - 120px);
  }
}

.p-flo_faq__item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
  .p-flo_faq__item__wrapper {
    font-size: 14px;
  }
}

.p-flo_faq__item__wrapper:last-child {
  margin-bottom: 0;
}

.p-flo_faq__item__wrapper > .__ttl {
  position: relative;
  top: -3px;
  width: 35px;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  .p-flo_faq__item__wrapper > .__ttl {
    font-size: 16px;
    width: 25px;
  }
}

@media screen and (max-width: 840px) {
  .p-flo_faq__item__wrapper > .__ttl {
    top: -2px;
  }
}

.p-flo_faq__item__wrapper > .__text {
  width: calc(100% - 35px);
  font-weight: 500;
}

.p-flo_faq__item__wrapper.__q > .__text {
  font-weight: bold;
}

.p-flo_faq__item__wrapper.__a > .__ttl {
  font-weight: 400;
}

.p-contact_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*max-width: 1095px;
  width: 90%;*/
  margin: 0 auto;
  margin-bottom: 95px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-contact_sub.__helf {
  width: calc(50% - 20px);
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .p-contact_sub.__helf {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub.__helf {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub {
    max-width: 500px;
    margin: 0 auto 70px 0;
  }
}

.p-contact_sub__wrapper {
  width: 90%;
  max-width: 1090px;
  margin: 0 auto 0 0;
  position: relative;
  width: calc((100% - 41px)/2);
  margin-right: 40px;
  border: 1px solid #ACACAC;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__wrapper {
    width: calc((100% - 31px)/2);
    margin-right: 30px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
    padding: 30px 0 20px;
  }
  .p-contact_sub__wrapper:last-child {
    margin-bottom: 0;
  }
}

.p-contact_sub.__helf .p-contact_sub__wrapper {
  width: 100%;
  margin-right: 0;
}

.p-contact_sub__wrapper:nth-child(even) {
  margin-right: 0;
}

@media screen and (max-width: 840px) {
  .p-contact_sub .p-contact_sub__wrapper.__form {
    padding: 29px 0;
  }
}

.p-contact_sub__texts {
  /*display: flex;
  align-items:flex-end;*/
  font-size: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1200px) {
  .p-contact_sub__texts {
    font-size: 22px;
  }
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__texts {
    font-size: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .p-contact_sub__texts {
    font-size: 16px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__texts {
    display: block;
    font-size: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-contact_sub__wrapper.__form .p-contact_sub__texts {
  -ms-flex-wrap: initial;
      flex-wrap: initial;
}

.p-guide_order__texts.__fax .p-contact_sub__texts {
  font-size: 34px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
  .p-guide_order__texts.__fax .p-contact_sub__texts {
    font-size: 32px;
  }
}

@media screen and (max-width: 1100px) {
  .p-guide_order__texts.__fax .p-contact_sub__texts {
    font-size: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .p-guide_order__texts.__fax .p-contact_sub__texts {
    font-size: 28px;
  }
}

.p-contact_sub__texts > .__img {
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 1200px) {
  .p-contact_sub__texts > .__img {
    width: 60px;
  }
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__texts > .__img {
    width: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .p-contact_sub__texts > .__img {
    width: 40px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__texts > .__img {
    width: 45px;
  }
}

.p-contact_sub__texts > .__text {
  position: relative;
}

.p-guide_order__texts.__fax .p-contact_sub__texts > .__text {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 840px) {
  .p-contact_sub__texts > .__text {
    top: -6px;
  }
  .p-guide_order__wrapper .p-contact_sub__texts > .__text {
    top: 0;
  }
}

.p-contact_sub__ttl {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
  background-color: #fff;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1100px) {
  .p-contact_sub__ttl {
    font-size: 12px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_sub__ttl {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .p-contact_sub__ttl {
    font-size: 12px;
  }
}

.p-contact_sub__texts__download {
  font-size: 10px;
  color: #fff;
  background-color: #484848;
  padding: 8px 30px;
}

.p-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-sidenav .p-search {
  margin-top: -30px;
  margin-bottom: 40px;
}

.p-search__input {
  background-color: #EFEFEF;
  height: 31px;
  width: calc(100% - 35px);
  padding-left: 12px;
  letter-spacing: 0.4px;
}

.p-nav_expanded .p-search__input {
  background-color: #F8F8F8;
  border: 1px solid #707070;
}

.p-search__icon {
  position: relative;
  width: 35px;
  background-color: #343434;
  display: inline-block;
}

.p-search__icon > .__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-search__input::-webkit-input-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #919191;
}

.p-search__input::-moz-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #919191;
}

.p-search__input:-ms-input-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #919191;
}

.p-search__input::-ms-input-placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #919191;
}

.p-search__input::placeholder {
  font-size: 12px;
  font-weight: 500;
  color: #919191;
}

.p-sec_line {
  font-size: 24px;
  font-weight: 500;
}

.p-inner_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 75px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-inner_link__item {
  position: relative;
  width: calc((100% - 61px)/3);
  border: 1px solid #ACACAC;
  font-weight: 500;
  padding: 20px 0;
  margin-right: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

@media screen and (max-width: 1300px) {
  .p-inner_link__item {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .p-inner_link__item {
    width: calc((100% - 41px)/3);
    margin-right: 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1100px) {
  .p-inner_link__item {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  .p-inner_link__item {
    font-size: 13px;
  }
}

@media screen and (max-width: 950px) {
  .p-inner_link__item {
    width: 100%;
    margin-right: 0;
    font-size: 15px;
  }
}

.p-inner_link__item > .__toggle {
  position: absolute;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-inner_link__item > .__toggle path {
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.p-inner_link__item:nth-child(3n) {
  margin-right: 0;
}

.js_isPc .p-inner_link__item:hover {
  background-color: #acacac;
  color: #fff;
}

.js_isPc .p-inner_link__item:hover > .__toggle path {
  stroke: #ffffff;
}

.p-sec_ttl_line {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #377B4A;
  margin-bottom: 55px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

#guide_method .p-sec_ttl_line {
  margin-bottom: 35px;
}

#guide_fee .p-sec_ttl_line {
  margin-bottom: 35px;
}

@media screen and (max-width: 840px) {
  #guide_fee .p-sec_ttl_line {
    margin-bottom: 20px;
  }
}

#guide_member .p-sec_ttl_line {
  margin-bottom: 35px;
}

#guide_pointsystem .p-sec_ttl_line {
  margin-bottom: 35px;
}

#faq .p-sec_ttl_line {
  margin-bottom: 35px;
}

@media screen and (max-width: 840px) {
  .p-sec_ttl_line {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

#faq .p-sec_ttl_line {
  font-size: 24px;
}

@media screen and (max-width: 840px) {
  #faq .p-sec_ttl_line {
    font-size: 20px;
  }
}

.p-sec_ttl_line:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #377B4A;
}

.p-sec_ttl_line__text {
  position: relative;
  padding-right: 50px;
  display: inline-block;
  z-index: 2;
  background-color: #fff;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-sec_ttl_line__text {
    padding-right: 25px;
  }
}

.p-flow {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-flow__item {
  position: relative;
  width: calc((100% - 91px)/4);
  border: 1px solid #ACACAC;
  margin-right: 30px;
  margin-bottom: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 15px;
}

@media screen and (max-width: 1000px) {
  .p-flow__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-flow__item:last-child {
    margin-bottom: 0;
  }
}

.p-flow__item:after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -10px;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-bottom: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid transparent;
  border-left: 12px solid #377B4A;
}

@media screen and (max-width: 1000px) {
  .p-flow__item:after {
    top: auto;
    bottom: -12px;
    right: 50%;
    -webkit-transform: translate(50%, 100%);
        -ms-transform: translate(50%, 100%);
            transform: translate(50%, 100%);
    border-bottom: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #377B4A;
    border-left: 12px solid transparent;
  }
}

.p-flow__item:nth-child(4n) {
  margin-right: 0;
}

.p-flow__item:last-child:after {
  display: none;
}

.p-flow__item__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .p-flow__item__img {
    width: 30%;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(1) .p-flow__item__img > .__img {
    max-width: 70px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(2) .p-flow__item__img > .__img {
    max-width: 63px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(3) .p-flow__item__img > .__img {
    max-width: 72px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(4) .p-flow__item__img > .__img {
    max-width: 71px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(5) .p-flow__item__img > .__img {
    max-width: 69px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(6) .p-flow__item__img > .__img {
    max-width: 73px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item:nth-child(7) .p-flow__item__img > .__img {
    max-width: 70px;
  }
}

@media screen and (max-width: 1000px) {
  .p-flow__item__wrapper {
    width: 70%;
  }
}

.p-flow__item__ttl {
  font-size: 18px;
  font-weight: bold;
  color: #377B4A;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1000px) {
  .p-flow__item__ttl {
    font-size: 16px;
    text-align: left;
  }
}

.p-flow__item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 1000px) {
  .p-flow__item__text {
    font-size: 12px;
  }
}

.p-guide_tel__wrapper {
  width: calc(50% - 20px);
}

@media screen and (max-width: 840px) {
  .p-guide_tel__wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}

.p-guide_order {
  margin-bottom: 80px;
}

.p-guide_order#guide_order {
  margin-bottom: 120px;
}

@media screen and (max-width: 840px) {
  .p-guide_order#guide_order {
    margin-bottom: 80px;
  }
}

.p-guide_order__texts.__tel {
  margin-bottom: 65px;
}

.p-guide_order__texts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-guide_tel__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.1;
}

@media screen and (max-width: 840px) {
  .p-guide_tel__text {
    font-size: 13px;
  }
}

.p-guide_fax__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-bottom: 20px;
}

@media screen and (max-width: 840px) {
  .p-guide_fax__text {
    font-size: 13px;
  }
}

.p-cart {
  margin-bottom: 85px;
}

.p-cart:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  #cart .p-cart {
    margin-bottom: 60px;
  }
}

.p-flamed_text {
  position: relative;
  border: 1px solid #377B4A;
  padding: 55px 45px 40px;
}

@media screen and (max-width: 840px) {
  .p-flamed_text {
    padding: 40px 20px 30px;
  }
}

.p-flamed_text__ttl {
  font-size: 24px;
  color: #377B4A;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 2;
  padding: 0 35px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-flamed_text__ttl {
    font-size: 20px;
    padding: 0 25px;
    white-space: nowrap;
  }
}

.p-flamed_text__wrapper {
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-flamed_text__wrapper {
    font-size: 13px;
  }
}

.p-flamed_text__wrapper p {
  margin-bottom: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 840px) {
  .p-flamed_text__wrapper p {
    font-size: 12px;
  }
}

.p-flamed_text__wrapper p:last-child {
  margin-bottom: 0;
}

.p-flamed_text__wrapper {
  margin-bottom: 55px;
}

@media screen and (max-width: 840px) {
  .p-flamed_text__wrapper {
    margin-bottom: 35px;
  }
}

.p-flamed_text__button {
  text-align: center;
}

.p-button {
  position: relative;
  background-color: #484848;
  border: 1px solid #484848;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  letter-spacing: 0.1em;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  font-weight: bold;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  cursor: pointer;
  /*.p-cart_destination__button &{
    max-width: 400px;
  }*/
}

#guide_member .p-button {
  font-size: 16px;
  padding: 20px 0;
}

.p-button.__add {
  font-weight: bold;
  font-size: 18px;
  max-width: 320px;
}

.js_isPc .p-button:hover {
  background-color: #fff;
  color: #484848;
}

@media screen and (max-width: 840px) {
  .p-button {
    width: 100%;
    max-width: 335px;
    margin-bottom: 15px;
    padding: 20px 0;
    font-size: 14px;
  }
  .p-passward_reset_wrapper .p-button {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 840px) {
  .p-button.__back {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
}

#guide_member .p-button {
  max-width: 290px;
}

.p-form__send .p-button {
  background: #101010;
  padding: 25px 40px;
}

.p-form_button .p-button {
  min-width: 250px;
  margin-right: 16px;
  background: #101010;
}

@media screen and (max-width: 840px) {
  .p-form_button .p-button {
    margin-right: 0;
  }
}

.p-form_button .p-button.__rewrite:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid #101010;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.js_isPc .p-form_button .p-button.__rewrite:hover:before {
  border-right: 6px solid #fff;
}

.p-form_button .p-button:last-child {
  margin-right: 0;
}

.p-button.__fav {
  background-color: #fff;
  border: 1px solid #484848;
  color: #60544E;
  font-weight: 900;
  width: 123px;
  padding: 19px 0;
  margin-right: 10px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.p-button.__fav > .__img {
  width: 19px;
  display: inline-block;
  margin-right: 10px;
}

.p-button.__fav.__active {
  background-color: #4F9061;
  color: #fff;
}

.p-button.__cart {
  background-color: #9F7A35;
  border: 1px solid #9F7A35;
  width: 204px;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 0;
}

.js_isPc .p-button.__cart:hover {
  opacity: 0.7;
}

.p-button.__cart > .__img {
  width: 24px;
  display: inline-block;
  margin-right: 10px;
}

.js_isPc .p-button.__cart:hover {
  background-color: #9F7A35;
  color: #fff;
}

.p-login .p-button {
  margin-bottom: 15px;
}

.p-login .p-login__wrapper__wrapper.__not_member .p-button {
  margin-bottom: 22px;
}

.p-button.__panda {
  min-width: 250px;
  background: #101010;
}

.p-button.__white {
  background: #fff;
  color: #101010;
  border: 1px solid #101010;
}

.js_isPc .p-button.__white:hover {
  background-color: #101010;
  color: #fff;
}

@media screen and (max-width: 840px) {
  .p-button.__rewrite {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-payment .p-payment_input .p-button {
  width: 100%;
  max-width: 150px;
  padding: 13px 0;
  font-size: 14px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-payment .p-payment_input .p-button {
    margin: 0 auto 0 auto;
    padding: 20px 0;
    max-width: 200px;
  }
}

.p-button.__output {
  width: 100%;
  max-width: 490px;
  background-color: #484848;
  padding: 24px 0;
  margin-bottom: 0;
}

@media screen and (min-width: 841px) {
  .p-button.__wide {
    width: 300px;
  }
}

.p-receipt_guest .p-button {
  font-size: 16px;
}

.p-belt__button .p-button {
  display: inline-block;
  padding: 13px 35px;
}

@media screen and (max-width: 840px) {
  .p-belt__button .p-button {
    max-width: 200px;
    padding: 13px 5px;
    font-size: 12px;
    margin-bottom: 0;
  }
  .p-belt__button .p-button > .__exlink {
    margin-left: 10px;
  }
}

.p-button > .__exlink {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 15px;
}

.p-button > .__exlink path {
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.p-button:hover > .__exlink path {
  fill: #484848;
}

.p-button.__fav .__img.__active {
  display: none;
}

.p-button.__fav.__active .__img.__active {
  display: inline-block;
}

.p-button.__fav.__active .__img.__default {
  display: none;
}

.p-button_fav_activetext {
  display: none;
}

.p-button.__fav.__active .p-button_fav_activetext {
  display: inline-block;
}

.p-button > .__text {
  position: relative;
}

.p-register .p-button > .__text {
  top: -3px;
}

.p-button > .__text:before {
  content: "{";
  display: inline-block;
  padding-right: 20px;
}

.p-register .p-button > .__text:before {
  display: none;
}

.p-button.__fav > .__text {
  position: relative;
}

.p-register .p-button.__fav > .__text {
  top: auto;
}

.p-guide_method__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 45px;
}

@media screen and (max-width: 840px) {
  .p-guide_method__lead {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

.p-guide_method__wrapper__wrapper {
  border: 1px solid #ACACAC;
  margin-bottom: 50px;
}

@media screen and (max-width: 840px) {
  .p-guide_method__wrapper__wrapper {
    margin-bottom: 20px;
    max-width: 500px;
  }
}

.p-guide_method__wrapper__wrapper:last-child {
  margin-bottom: 0;
}

.p-guide_method__ttl {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*.js_isPc &{
    &:hover:after{
      border-bottom: 12px solid #fff;
    }
  }*/
}

@media screen and (max-width: 840px) {
  .p-guide_method__ttl {
    padding: 20px 60px 20px 20px;
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-guide_method__ttl:after {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  right: 30px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid transparent;
  border-bottom: 12px solid #484848;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center 19px;
      -ms-transform-origin: center 19px;
          transform-origin: center 19px;
}

.p-guide_method__wrapper__wrapper.is-active .p-guide_method__ttl:after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media screen and (max-width: 840px) {
  .p-guide_method__ttl:after {
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #484848;
  }
}

.p-guide_method__ttl > .__large {
  font-size: 18px;
}

@media screen and (max-width: 840px) {
  .p-guide_method__ttl > .__large {
    font-size: 15px;
  }
}

.p-guide_method__content {
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #CECECE;
}

@media screen and (max-width: 840px) {
  .p-guide_method__content {
    padding: 40px 20px 60px;
  }
}

.p-guide_method__content__img {
  margin-bottom: 40px;
}

@media screen and (max-width: 840px) {
  .p-guide_method__content__img {
    margin-bottom: 30px;
    width: 100%;
  }
}

.p-guide_method__content__wrapper {
  margin-bottom: 75px;
}

.p-guide_method__content__wrapper:last-child {
  margin-bottom: 0;
}

.p-guide_method__content__ttl {
  font-size: 20px;
  font-weight: 500;
  padding-left: 20px;
  border-left: 7px solid #CE9529;
  margin-bottom: 35px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

#guide_fee .p-guide_method__content__ttl {
  border-left: 7px solid #4F9061;
}

@media screen and (max-width: 840px) {
  .p-guide_method__content__ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.p-guide_method_texts {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

@media screen and (max-width: 840px) {
  .p-guide_method_texts {
    font-size: 15px;
  }
}

.p-guide_method_texts__item {
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  .p-guide_method_texts__item {
    margin-bottom: 20px;
  }
}

.p-guide_method_texts__item:last-child {
  margin-bottom: 0;
}

.p-guide_method_timezone > .__catch {
  margin-bottom: 20px;
}

.p-guide_method_timezone__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 840px) {
  .p-guide_method_timezone__wrapper {
    margin-bottom: 30px;
  }
}

.p-guide_method_timezone__head {
  width: 75px;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-guide_method_timezone__head {
    width: 100%;
  }
}

.p-guide_method_timezone__body {
  width: calc(100% - 75px);
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 840px) {
  .p-guide_method_timezone__body {
    width: 100%;
    padding-left: 0px;
  }
}

.p-list {
  list-style-type: none;
}

.p-list > li {
  position: relative;
  padding-left: 20px;
}

.p-list > li:before {
  content: "¦";
  position: absolute;
  top: 0;
  left: 0;
}

.p-list.__dot > li:before {
  content: "E";
}

.p-list.__circle > li {
  padding-left: 15px;
}

.p-list.__circle > li:before {
  content: "";
  top: 0.45em;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #101010;
  border-radius: 100%;
}

.p-guide_method {
  margin-bottom: 95px;
}

.p-guide_delivery_hokuriku {
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  .p-guide_delivery_hokuriku {
    font-size: 15px;
  }
}

.p-guide_delivery_hokuriku__price {
  margin-bottom: 45px;
}

.p-guide_delivery_hokuriku__price_text {
  margin-bottom: 15px;
  display: block;
}

.p-guide_delivery_hokuriku__price_text:last-child {
  margin-bottom: 0;
}

.p-guide_delivery_hokuriku__price__table {
  font-weight: bold;
  max-width: 360px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.p-guide_delivery_hokuriku__price__table__tr {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-guide_delivery_hokuriku__price__table__tr:last-child {
  margin-bottom: 0;
}

.p-guide_delivery_hokuriku__price__table__th {
  width: calc(100% - 80px);
}

@media screen and (max-width: 840px) {
  .p-guide_delivery_hokuriku__price__table__th {
    width: calc(100% - 60px);
  }
}

.p-guide_delivery_hokuriku__price__table__td {
  width: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 840px) {
  .p-guide_delivery_hokuriku__price__table__td {
    width: 60px;
    padding-left: 5px;
  }
}

.p-guide_delivery_hokuriku__select__ttl {
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.8;
}

.p-guide_delivery_hokuriku__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 620px;
}

.p-guide_delivery_hokuriku__select__ttl {
  width: 100%;
}

.p-guide_delivery_hokuriku__select__wrapper {
  width: calc((100% - 30px)/2);
}

@media screen and (max-width: 840px) {
  .p-guide_delivery_hokuriku__select__wrapper {
    width: calc((100% - 15px)/2);
  }
}

.p-guide_delivery_hokuriku__select__wrapper:nth-child(odd) {
  margin-left: auto;
}

.p-guide_delivery_hokuriku__select__wrapper .p-select2 {
  max-width: none;
}

.p-guide_fee {
  margin-bottom: 95px;
}

.p-guide_other {
  margin-bottom: 100px;
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  .p-guide_other {
    font-size: 15px;
  }
}

.p-guide_other__wrapper {
  margin-bottom: 75px;
}

.p-guide_other__wrapper:last-child {
  margin-bottom: 0;
}

.p-guide_other__text {
  line-height: 1.8;
}

.p-guide_other__list {
  line-height: 1.8;
  max-width: 520px;
}

.p-guide_other__list > li {
  margin-bottom: 35px;
}

.p-guide_other__list > li:last-child {
  margin-bottom: 0;
}

.p-guide_pointsystem {
  margin-bottom: 80px;
}

.p-guide_pointsystem__texts {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  max-width: 780px;
}

@media screen and (max-width: 840px) {
  .p-guide_pointsystem__texts {
    font-size: 15px;
  }
}

.p-guide_pointsystem__texts__text > .__text {
  margin-bottom: 20px;
}

.p-guide_pointsystem__texts__text > .__text:last-child {
  margin-bottom: 0;
}

.p-guide_pointsystem__texts__wrapper {
  margin-bottom: 30px;
}

.p-guide_pointsystem__texts__wrapper:last-child {
  margin-bottom: 0;
}

.p-guide_member {
  margin-bottom: 120px;
}

.p-guide_member__texts {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  max-width: 900px;
}

#guide_noshi .p-guide_member__texts {
  margin-bottom: 45px;
}

@media screen and (max-width: 840px) {
  .p-guide_member__texts {
    font-size: 15px;
  }
}

.p-guide_member__texts__wrapper {
  margin-bottom: 25px;
}

.p-guide_member__texts__wrapper:last-child {
  margin-bottom: 0;
}

.js-toggle_target {
  display: none;
}

.js-toggle_button {
  cursor: pointer;
}

.p-faq__item {
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .p-faq__item {
    margin-bottom: 20px;
  }
}

.p-faq__item:last-child {
  margin-bottom: 0;
}

.p-faq {
  margin-bottom: 90px;
}

@media screen and (max-width: 840px) {
  .p-faq {
    margin-bottom: 70px;
  }
}

.p-faq:last-child {
  margin-bottom: 0;
}

.p-faq__item {
  border: 1px solid #ACACAC;
}

.p-faq__item__wrapper {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 2.2;
}

@media screen and (max-width: 840px) {
  .p-faq__item__wrapper {
    line-height: 2;
    font-size: 14px;
  }
}

.p-faq__item__wrapper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-faq__item__wrapper.__q .p-faq__item__wrapper__wrapper:after {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  right: 30px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #484848;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center 17px;
      -ms-transform-origin: center 17px;
          transform-origin: center 17px;
}

@media screen and (max-width: 840px) {
  .p-faq__item__wrapper.__q .p-faq__item__wrapper__wrapper:after {
    right: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    border-bottom: 8px solid #484848;
  }
}

.p-faq__item.is-active .p-faq__item__wrapper.__q .p-faq__item__wrapper__wrapper:after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.p-faq__item__wrapper.__a .p-faq__item__wrapper__wrapper {
  border-top: 1px solid #CECECE;
  color: #377B4A;
}

@media screen and (min-width: 841px) {
  .p-faq__item__wrapper.__a .p-faq__item__wrapper__wrapper > .__ttl {
    padding: 20px 0px 25px 30px;
  }
}

@media screen and (min-width: 841px) {
  .p-faq__item__wrapper.__a .p-faq__item__wrapper__wrapper > .__text {
    padding: 16px 30px 27px 30px;
    font-weight: 500;
  }
}

.p-faq__item__wrapper__wrapper > .__ttl {
  width: 60px;
  font-size: 16px;
  padding: 15px 0px 15px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 840px) {
  .p-faq__item__wrapper__wrapper > .__ttl {
    width: 40px;
    padding: 20px 0px 20px 20px;
  }
}

.p-faq__item__wrapper__wrapper > .__text {
  position: relative;
  top: 2px;
  width: calc(100% - 60px);
  padding: 15px 80px 15px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 840px) {
  .p-faq__item__wrapper__wrapper > .__text {
    width: calc(100% - 40px);
    padding: 20px 40px 20px 15px;
  }
}

.p-contact_main__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-contact_main__link {
    margin-bottom: 50px;
  }
}

.p-contact_main__link__item {
  width: calc((100% - 46px)/2);
  border: 1px solid #CECECE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 130px;
  font-size: 22px;
}

.p-contact_main__link__item > .__icon {
  display: inline-block;
  margin-right: 10px;
}

.p-contact_main__link__item:nth-child(1) > .__icon {
  max-width: 47px;
}

@media screen and (max-width: 1200px) {
  .p-contact_main__link__item:nth-child(1) > .__icon {
    max-width: 42px;
  }
}

@media screen and (max-width: 1050px) {
  .p-contact_main__link__item:nth-child(1) > .__icon {
    max-width: 38px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_main__link__item:nth-child(1) > .__icon {
    max-width: 31px;
  }
}

@media screen and (max-width: 1200px) {
  .p-contact_main__link__item:nth-child(2) > .__icon {
    max-width: 50px;
  }
}

@media screen and (max-width: 1050px) {
  .p-contact_main__link__item:nth-child(2) > .__icon {
    max-width: 45px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_main__link__item:nth-child(2) > .__icon {
    max-width: 38px;
  }
}

@media screen and (max-width: 1200px) {
  .p-contact_main__link__item {
    font-size: 20px;
    width: calc((100% - 36px)/2);
  }
}

@media screen and (max-width: 1050px) {
  .p-contact_main__link__item {
    font-size: 18px;
    width: calc((100% - 26px)/2);
  }
}

@media screen and (max-width: 950px) {
  .p-contact_main__link__item {
    font-size: 16px;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_main__link__item {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .p-contact_main__link__item:last-child {
    margin-bottom: 0;
  }
}

.p-contact_main__link__item:nth-child(even) {
  margin-left: auto;
}

.p-contact_main__link__item > .__text {
  white-space: nowrap;
}

.p-contact_main__notice {
  position: relative;
  width: 100%;
  background-color: #9EB091;
  color: #fff;
  text-align: center;
  line-height: 2;
  font-size: 14px;
  padding: 30px 20px;
  margin-bottom: 100px;
}

@media screen and (max-width: 840px) {
  .p-contact_main__notice {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 50px;
    padding: 40px 20px;
    width: 114%;
    right: 7%;
  }
}

@media screen and (max-width: 840px) {
  .p-contact_main__notice__wrapper {
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    line-height: 2.7;
  }
}

input:-moz-placeholder,
input::-moz-placeholder {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .p-form {
    font-size: 14px;
  }
}

@media screen and (max-width: 840px) {
  .p-form {
    font-size: 12px;
  }
}

.p-form input {
  background-color: #EFEFEF;
  height: 50px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
  max-width: 720px;
  padding-left: 25px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.p-form input::-webkit-input-placeholder {
  color: #919191;
}

.p-form input::-moz-placeholder {
  color: #919191;
}

.p-form input:-ms-input-placeholder {
  color: #919191;
}

.p-form input::-ms-input-placeholder {
  color: #919191;
}

.p-form input::placeholder {
  color: #919191;
}

@media screen and (max-width: 840px) {
  .p-form input {
    margin-bottom: 15px;
  }
}

.p-form input:last-child {
  margin-bottom: 0;
}

#contact .p-form input {
  height: 60px;
}

@media screen and (max-width: 840px) {
  #contact .p-form input {
    height: 50px;
  }
}

.p-form select {
  background-color: #EFEFEF;
  height: 50px;
  width: 100%;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #919191;
  border-radius: 5px;
  letter-spacing: 0.1em;
  font-size: 14px;
}

#contact .p-form select {
  height: 60px;
}

@media screen and (max-width: 840px) {
  #contact .p-form select {
    height: 50px;
  }
}

.p-form .p-form__tr.__birthday select {
  padding-left: 20px;
  border: none;
  color: #000;
}

.p-form textarea {
  background-color: #EFEFEF;
  height: 300px;
  width: 100%;
  border-radius: 5px;
}

.p-form .p-serial_input select {
  border: 0;
}

.p-form .p-form__tr.__cardno input {
  max-width: 350px;
}

#contact .p-form {
  max-width: 980px;
}

.p-form__tr.__password input {
  max-width: 400px;
}

.p-form__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 44px;
}

@media screen and (max-width: 840px) {
  .p-form__tr {
    margin-bottom: 45px;
  }
  .p-form__tr.__has_note {
    margin-bottom: 60px;
  }
}

.p-form__tr.__check {
  margin-bottom: 54px;
}

.p-form__tr:last-child {
  margin-bottom: 0;
}

.p-form__tr.__mail {
  margin-bottom: 80px;
}

#contact .p-form__tr {
  margin-bottom: 65px;
}

@media screen and (max-width: 840px) {
  #contact .p-form__tr {
    margin-bottom: 45px;
  }
}

.p-form__th {
  position: relative;
  width: 225px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 18px;
  padding-left: 30px;
  letter-spacing: 0em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 1200px) {
  .p-form__th {
    width: 200px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-form__th {
    width: 100%;
    padding-top: 0;
    padding-left: 0px;
    margin-bottom: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#contact .p-form__th {
  padding-left: 50px;
}

@media screen and (max-width: 840px) {
  #contact .p-form__th {
    padding-left: 20px;
    font-size: 14px;
  }
}

.p-require {
  position: absolute;
  right: 0;
  top: 15px;
  padding: 5px 10px;
  background-color: #CE9529;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-require {
    position: relative;
    top: auto;
    font-size: 10px;
    margin-left: 12px;
  }
}

.p-payment__method__th .p-require {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-left: 10px;
}

.p-form__td {
  position: relative;
  width: calc(100% - 260px);
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .p-form__td {
    width: calc(100% - 235px);
  }
}

@media screen and (max-width: 840px) {
  .p-form__td {
    width: 100%;
  }
}

.p-form__tr.__select .p-form__td:after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 30px;
  pointer-events: none;
  border-bottom: 10px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #484848;
}

.p-form__tr.__check .p-form__td {
  position: relative;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form__td > .__note {
  position: absolute;
  left: 0px;
  bottom: -5px;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 10px;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

#contact .p-form__td > .__note {
  left: 30px;
}

@media screen and (max-width: 840px) {
  #contact .p-form__td > .__note {
    left: 15px;
    font-size: 11px;
  }
}

@media screen and (max-width: 840px) {
  .p-form__td > .__note {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.5;
    bottom: -3px;
  }
}

.p-form__td__wrapper {
  position: relative;
  margin-bottom: 25px;
}

.p-form__td__wrapper:last-child {
  margin-bottom: 0;
}

.p-input_note {
  font-size: 12px;
  line-height: 1.8;
  margin-top: -10px;
  margin-bottom: -25px;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

#register_main .p-input_note {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-input_note {
    font-size: 11px;
  }
}

.p-form__table {
  margin-bottom: 120px;
}

@media screen and (max-width: 840px) {
  .p-form__table {
    margin-bottom: 80px;
  }
}

#guest .p-form__table {
  margin-bottom: 180px;
}

@media screen and (max-width: 840px) {
  #guest .p-form__table {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 840px) {
  #change_member_information .p-form__table {
    margin-bottom: 80px;
  }
}

.p-form__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact_premessage {
  border: 1px solid #707070;
  padding: 45px 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 65px;
  text-align: center;
  width: 90%;
  max-width: 720px;
  font-family: "Ÿà–¾’©", "YuMincho", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-contact_premessage {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 60px;
  }
}

.p-contact_premessage__ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-contact_premessage__ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.p-contact_premessage__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-contact_premessage__text {
    font-size: 13px;
  }
}

.p-confirm {
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-register_main__wrapper.__card_current .p-confirm {
  width: 100%;
  padding-left: 60px;
}

@media screen and (max-width: 840px) {
  .p-register_main__wrapper.__card_current .p-confirm {
    padding-left: 0;
  }
}

@media screen and (max-width: 840px) {
  .p-confirm {
    width: 100%;
  }
}

.p-confirm_note {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  .p-confirm_note {
    margin-bottom: 60px;
  }
}

.p-confirm__table {
  margin-bottom: 120px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-confirm__table {
    font-size: 13px;
    margin-bottom: 50px;
  }
}

.p-member_info_change_card .p-confirm__table {
  margin-bottom: 50px;
}

#contact_confirm .p-confirm__table {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #contact_confirm .p-confirm__table {
    margin-bottom: 40px;
  }
}

.p-confirm__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 25px 0;
  border-bottom: 1px solid #CECECE;
  /*&:first-child{
    border-top: 1px solid #CECECE;
  }*/
}

body:not(#register_confirm) .p-confirm__tr:last-child {
  border-bottom: 0;
}

.p-register_main__wrapper.__card_current .p-confirm__tr:last-child {
  border-bottom: 1px solid #CECECE;
}

@media screen and (max-width: 840px) {
  .p-confirm__tr {
    padding: 0 0 20px;
    margin-bottom: 20px;
  }
}

.p-confirm__th {
  font-weight: bold;
  width: 30%;
}

@media screen and (min-width: 841px) {
  #contact_confirm .p-confirm__th {
    width: 36%;
    font-size: 16px;
  }
  #register_main .p-confirm__th {
    width: 40%;
  }
  #register_confirm .p-confirm__th {
    width: 36%;
    font-size: 16px;
  }
}

@media screen and (max-width: 840px) {
  .p-confirm__th {
    width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 15px;
  }
}

.p-confirm__td {
  width: 70%;
}

@media screen and (min-width: 841px) {
  #contact_confirm .p-confirm__td {
    width: 64%;
  }
  #register_main .p-confirm__td {
    width: 60%;
  }
  #register_confirm .p-confirm__td {
    width: 64%;
  }
}

@media screen and (max-width: 840px) {
  .p-confirm__td {
    width: 100%;
  }
}

.p-confirm__td.__textarea {
  position: relative;
  top: -5px;
  line-height: 2.6;
  padding-right: 20px;
}

@media screen and (max-width: 840px) {
  .p-confirm__td.__textarea {
    line-height: 2.2;
    top: auto;
  }
}

.p-complete_message {
  text-align: center;
}

.p-complete_message__main {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

#receipt_complete .p-complete_message__main {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #receipt_complete .p-complete_message__main {
    margin-bottom: 40px;
  }
}

#receipt_guest .p-complete_message__main {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #receipt_guest .p-complete_message__main {
    margin-bottom: 40px;
  }
}

#receipt .p-complete_message__main {
  font-size: 30px;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #receipt .p-complete_message__main {
    margin-bottom: 40px;
    font-size: 22px;
  }
}

#hold .p-complete_message__main {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  #hold .p-complete_message__main {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 840px) {
  .p-complete_message__main {
    font-size: 18px;
  }
}

.p-complete_message__sub {
  margin-bottom: 95px;
  line-height: 1.9;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-complete_message__sub {
    margin-bottom: 40px;
    font-size: 13px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#password_reset_complete .p-complete_message__sub {
  margin-bottom: 35px;
}

#receipt_complete .p-complete_message__sub {
  margin-bottom: 75px;
}

@media screen and (max-width: 840px) {
  #receipt_complete .p-complete_message__sub {
    margin-bottom: 30px;
  }
}

#receipt .p-complete_message__sub {
  line-height: 2.2;
}

#receipt_guest .p-complete_message__sub {
  margin-bottom: 40px;
  line-height: 2.2;
}

@media screen and (max-width: 840px) {
  #receipt_guest .p-complete_message__sub {
    margin-bottom: 30px;
  }
}

.p-complete_message__sub__wrapper {
  margin-bottom: 40px;
  width: 100%;
}

.p-complete_message__sub__wrapper:last-child {
  margin-bottom: 0;
}

.p-complete_message__sub__wrapper.__ttl {
  margin-bottom: 20px;
}

.p-complete_message__sub__wrapper.__list {
  max-width: 450px;
  margin: 0 auto;
  text-align: left;
}

.p-complete_message__sub__list {
  list-style-type: none;
}

.p-complete_message__sub__list > li {
  position: relative;
  padding-left: 1.4em;
}

.p-complete_message__sub__list > li:before {
  content: "¡";
  position: absolute;
  top: 0;
  left: 0;
}

.p-checkout_progress {
  max-width: 475px;
  margin: 0 auto 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#cart_complete .p-checkout_progress {
  margin: 0 auto 85px;
}

@media screen and (max-width: 840px) {
  .p-checkout_progress {
    max-width: 335px;
    margin: 0 auto 50px;
  }
}

.p-checkout_progress__item {
  min-width: 94px;
  position: relative;
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item {
    min-width: 62px;
  }
}

.p-checkout_progress__item:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAAXNSR0IArs4c6QAAABdJREFUGFdjPHfu3H8GBgYGIyMjRhANADVqBAIdgVoIAAAAAElFTkSuQmCC) repeat;
  right: 30px;
  top: 25px;
  display: block;
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item:after {
    top: 18px;
  }
}

.p-checkout_progress__item:last-child:after {
  display: none;
}

.p-checkout_progress__item > .__no {
  position: relative;
  z-index: 2;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background-color: #CECECE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item > .__no {
    font-size: 18px;
    width: 35px;
    height: 35px;
    margin: 0 auto 10px;
  }
}

.p-checkout_progress__item > .__text {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: #656565;
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item > .__text {
    font-size: 10px;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
}

.p-checkout_progress__item.__current {
  color: #377B4A;
}

.p-checkout_progress__item.__current > .__no {
  background-color: #377B4A;
  color: #fff;
}

.p-checkout_progress__item.__current > .__text {
  color: #377B4A;
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item:nth-child(1) > .__no > img {
    max-width: 7px;
  }
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item:nth-child(2) > .__no > img {
    max-width: 9px;
  }
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item:nth-child(3) > .__no > img {
    max-width: 9px;
  }
}

@media screen and (max-width: 840px) {
  .p-checkout_progress__item:nth-child(4) > .__no > img {
    max-width: 10px;
  }
}

.p-cart_detail {
  border: 1px solid #CECECE;
  margin-bottom: 65px;
  font-size: 15px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 1250px) {
  .p-cart_detail {
    font-size: 14px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_detail {
    border: 0;
    font-size: 14px;
  }
}

#cart .p-cart_detail {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  #cart .p-cart_detail {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 840px) {
  #cart_zenkoku .p-cart_detail {
    margin-bottom: 100px;
  }
}

#cart_confirm .p-cart_detail {
  margin-bottom: 40px;
}

@media screen and (max-width: 840px) {
  #cart_confirm .p-cart_detail {
    margin-bottom: 40px;
  }
}

#cart_counter_pickup .p-cart_detail {
  margin-bottom: 85px;
}

@media screen and (max-width: 840px) {
  #cart_counter_pickup .p-cart_detail {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 840px) {
  #recieve_hokuriku .p-cart_detail {
    margin-bottom: 100px;
  }
}

.p-cart_detail__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #CECECE;
  padding: 15px 25px;
}

.p-cart_detail.__confirm .p-cart_detail__tr.__main:not(.__low) {
  padding: 30px 25px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail.__confirm .p-cart_detail__tr.__main:not(.__low) {
    padding: 20px 20px 10px;
    margin-bottom: 10px;
  }
}

.p-cart_detail__tr:last-child {
  border-bottom: 0;
}

.p-cart_detail__tr.__first {
  padding: 20px 25px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__first {
    display: none;
  }
}

.p-cart_detail__tr.__main {
  padding: 15px 30px 15px;
}

.p-cart_detail__tr.__main.__low {
  padding: 15px 25px 15px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main.__low {
    padding: 5px 10px 0px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main {
    border: 1px solid #CECECE;
    padding: 5px 10px 0;
  }
}

.p-cart_detail__tr.__total {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__total {
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: 1px solid #CECECE;
    padding: 15px 0 10px 10px;
  }
}

.p-cart_detail__tr.__point {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 18px 25px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__point {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__option {
    background-color: #777777;
    color: #fff;
    padding: 20px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.p-cart_detail__tr.__main.__low.__option {
    padding: 20px 20px 10px;
  }
}

.p-cart_detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item {
    border-bottom: 1px solid #CECECE;
    padding: 15px 0px 15px 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-cart_detail.__confirm .p-cart_detail__item {
    padding: 0;
  }
  .p-cart_detail__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.p-cart_detail__item.__total {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item.__total {
    border-bottom: 0;
  }
}

.p-cart_detail__tr.__first .p-cart_detail__item {
  text-align: center;
  font-weight: bold;
}

.p-cart_detail__tr.__first .p-cart_detail__item:nth-child(1) {
  width: 82px;
}

.p-cart_detail.__confirm .p-cart_detail__tr.__first .p-cart_detail__item:nth-child(1) {
  width: 50%;
}

.p-cart_detail__tr.__first .p-cart_detail__item:nth-child(2) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
  width: calc((100% - 302px)*0.60);
}

.p-cart_detail.__confirm .p-cart_detail__tr.__first .p-cart_detail__item:nth-child(2) {
  width: 15%;
}

.p-cart_detail__tr.__first .p-cart_detail__item:nth-child(3) {
  width: calc((100% - 302px)*0.2);
}

.p-cart_detail.__confirm .p-cart_detail__tr.__first .p-cart_detail__item:nth-child(3) {
  width: 15%;
}

.p-cart_detail__tr.__first .p-cart_detail__item:nth-child(4) {
  width: calc((100% - 302px)*0.2);
}

.p-cart_detail.__confirm .p-cart_detail__tr.__first .p-cart_detail__item:nth-child(4) {
  width: 20%;
}

.p-cart_detail__tr.__first .p-cart_detail__item:nth-child(5) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 35px;
  width: 145px;
}

.p-cart_detail__tr.__first .p-cart_detail__item:nth-child(6) {
  width: 75px;
}

.p-cart_detail__tr.__main .p-cart_detail__item {
  text-align: center;
}

.p-cart_detail__tr.__main .p-cart_detail__item:nth-child(1) {
  width: 82px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(1) {
    width: 95px;
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.p-cart_detail.__confirm .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(1) {
  width: 50%;
}

@media screen and (max-width: 840px) {
  .p-cart_detail.__confirm .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(1) {
    width: 100%;
  }
}

.p-cart_detail__tr.__main .p-cart_detail__item:nth-child(2) {
  width: calc((100% - 302px)*0.60);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 20px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(2) {
    width: calc(100% - 95px);
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 841px) {
  .p-cart_detail.__confirm .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(2) {
    width: 15%;
  }
}

.p-cart_detail__tr.__main .p-cart_detail__item:nth-child(3) {
  width: calc((100% - 302px)*0.2);
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(3) {
    width: 100%;
    display: none;
  }
}

.p-cart_detail.__confirm .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(3) {
  width: 15%;
}

.p-cart_detail__tr.__main .p-cart_detail__item:nth-child(4) {
  width: calc((100% - 302px)*0.2);
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(4) {
    width: 100%;
    display: none;
  }
}

.p-cart_detail.__confirm .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(4) {
  width: 20%;
}

.p-cart_detail__tr.__main .p-cart_detail__item:nth-child(5) {
  width: 145px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(5) {
    width: 100%;
  }
}

.p-cart_detail__tr.__main .p-cart_detail__item:nth-child(6) {
  width: 75px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__main .p-cart_detail__item:nth-child(6) {
    width: 100%;
    display: none;
  }
}

.p-cart_detail__tr.__total .p-cart_detail__item {
  width: 100%;
  font-weight: bold;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__total .p-cart_detail__item {
    max-width: none;
    border-bottom: 0;
    padding: 0;
    margin-top: 10px;
  }
}

.p-cart_detail__tr.__point .p-cart_detail__item {
  max-width: 180px;
  width: 100%;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__point .p-cart_detail__item {
    max-width: none;
    border-bottom: 0;
    padding: 0;
    font-size: 12px;
  }
  .p-cart_detail__tr.__point .p-cart_detail__item > .__ttl {
    font-size: 10px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_detail__tr.__option .p-cart_detail__item:nth-child(2) {
    margin-left: auto;
  }
}

.p-cart_detail__item__spinfo {
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CECECE;
}

@media screen and (min-width: 841px) {
  .p-cart_detail__item__spinfo {
    display: none;
  }
}

.p-cart_detail__item__spinfo__del {
  margin-left: auto;
}

.p-cart_detail__item__spttl {
  font-size: 12px;
  font-weight: bold;
  margin-right: auto;
}

.p-cart_detail__item__spinfo__qty {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

.p-cart_detail__item__spinfo__qty > .__ttl {
  margin-right: 40px;
}

.p-cart_detail__item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__wrapper {
    font-size: 10px;
  }
  .p-cart_detail__item__wrapper > .__price b .__big {
    font-size: 14px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__total {
    font-size: 10px;
  }
}

.p-cart_detail__item__total > .__big {
  font-size: 22px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__total > .__big {
    font-size: 18px;
  }
}

.__p-delete_button {
  border: 1px solid #707070;
  min-width: 60px;
  text-align: center;
  padding: 5px 0;
  margin-right: 20px;
  letter-spacing: 0.1em;
  font-size: 12px;
  background-color: #F2F2F2;
  border-radius: 5px;
  margin-left: 20px;
}

.__p-delete_button > .__close {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
}

.__p-delete_button > .__close:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 147%;
  height: 1px;
  background-color: #707070;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.__p-delete_button > .__close:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 147%;
  height: 1px;
  background-color: #707070;
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.__p-delete_button:last-child {
  margin-right: 0;
}

.p-cart_detail__item__prime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.p-cart_detail__item__prime > .__img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-cart_detail__item__prime > .__img:before {
  content: "";
  display: block;
  padding-top: 100%;
  display: block;
}

@media screen and (max-width: 840px) {
  .p-cart_detail.__confirm .p-cart_detail__tr.__option .p-cart_detail__item__prime__wrapper > .__name {
    width: auto;
    margin-bottom: 0;
  }
}

.p-cart_confirm_sp_row_title {
  width: 100%;
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (min-width: 841px) {
  .p-cart_confirm_sp_row_title {
    display: none;
  }
}

.p-cart_confirm_sp_detail {
  width: 100%;
  font-size: 12px;
  margin-top: 10px;
  font-weight: bold;
}

.p-cart_confirm_sp_detail__tr {
  border-top: 1px solid #CECECE;
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-cart_confirm_sp_detail__tr:last-child {
  padding-bottom: 0;
}

.p-cart_confirm_sp_detail__td {
  margin-left: auto;
}

.p-cart_confirm_sp_detail__td > .__no {
  font-size: 14px;
}

.p-cart_confirm_sp_detail__td > .__text {
  font-size: 10px;
}

.p-cart_detail__item__revision {
  border: double;
  padding: 8px;
}
.p-cart_detail__item__revision > .__text{
  font-size: 14px;
}
.p-cart_detail__item__revision > .__text.__sub{
  margin-top: 6px;
}

.p-cart_detail__item__prime__tanka {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__prime__tanka {
    font-size: 12px;
  }
  .p-cart_detail.__confirm .p-cart_detail__item__prime__tanka {
    margin-left: auto;
    font-weight: bold;
  }
}

.p-cart_detail__item__prime__tanka > .__ttl {
  margin-right: 0px;
}

@media screen and (min-width: 841px) {
  .p-cart_detail__item__prime__tanka {
    display: none;
  }
}

.p-cart_confirm_sp_row_option_name {
  font-weight: bold;
}

.p-cart_detail__item__prime__wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__prime__wrapper {
    width: 100%;
  }
  .p-cart_detail.__confirm .p-cart_detail__item__prime__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-cart_detail__item__prime__wrapper > .__name {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail.__confirm .p-cart_detail__item__prime__wrapper > .__name {
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
  }
}

.p-cart_detail__item__prime__wrapper > .__name:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__prime__wrapper > .__name {
    font-size: 16px;
  }
}

.p-cart_detail__item__prime__wrapper > .__name:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item__prime__wrapper > .__name {
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 500;
  }
}

.p-cart_receive {
  position: relative;
  padding-top: 50px;
  padding-bottom: 25px;
  border: 1px solid #377B4A;
}

@media screen and (max-width: 840px) {
  .p-cart_receive {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}

.p-cart_receive__ttl {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 24px;
  color: #377B4A;
  text-align: center;
  padding: 0 30px;
  background-color: #fff;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-cart_receive__ttl {
    font-size: 16px;
    padding: 0 25px;
    letter-spacing: 0;
  }
}

.p-cart_receive__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 840px;
  width: 90%;
  margin: 0 auto 25px;
}

@media screen and (max-width: 840px) {
  .p-cart_receive__wrapper {
    margin: 0 auto;
  }
}

.p-cart_receive__note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.p-cart_receive__wrapper__wrapper {
  width: calc((100% - 41px)/2);
}

.p-cart_receive__wrapper__wrapper:nth-child(even) {
  margin-left: auto;
}

@media screen and (max-width: 840px) {
  .p-cart_receive__wrapper__wrapper {
    width: 100%;
  }
}

.p-cart_receive__item {
  background-color: #F8F8F8;
  border: 1px solid #B5B5B5;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-cart_receive__item.__delivery {
  font-size: 20px;
}

@media screen and (max-width: 840px) {
  .p-cart_receive__item.__delivery {
    font-size: 16px;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_receive__item {
    margin-bottom: 20px;
    height: 72px;
    font-size: 15px;
  }
  .p-cart_receive__item:last-child {
    margin-bottom: 0;
  }
}

.p-cart_receive__item.__delivery > .__img {
  max-width: 51px;
}

@media screen and (max-width: 840px) {
  .p-cart_receive__item.__delivery > .__img {
    max-width: 37px;
  }
}

.p-cart_receive__item > .__img {
  display: inline-block;
  margin-right: 20px;
}

@media screen and (max-width: 840px) {
  .p-cart_receive__item > .__img {
    max-width: 32px;
    margin-right: 20px;
  }
}

.p-cart_receive__note__sp {
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: left;
  margin-top: -10px;
}

.p-cart_detail__item {
  /*& > .__ttl{
    display: inline-block;
    width: 85px;
    white-space: nowrap;
    text-align: center;
  }
  & > .__value{
    display: inline-block;
    width: 135px;
    white-space: nowrap;
    text-align: right;
  }*/
}

.p-cart_detail__item > .__ttl {
  margin-right: 30px;
}

@media screen and (max-width: 840px) {
  .p-cart_detail__item > .__ttl {
    margin-right: auto;
  }
}

.p-tag {
  padding: 7px 15px;
  background-color: #CE9529;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .p-tag {
    font-size: 10px;
  }
  .p-cart_detail__item__prime__wrapper .p-tag {
    margin-bottom: 10px;
  }
  .p-cart_detail.__confirm .p-cart_detail__item__prime__wrapper .p-tag {
    margin-bottom: 0;
  }
}

.p-cart_detail__item input {
  border: 1px solid #707070;
  width: 75px;
  height: 30px;
  text-align: center;
  padding-left: 0;
}

.p-cart_detail__item.__price {
  white-space: nowrap;
}

.p-cart_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#cart .p-cart_button {
  margin-bottom: 95px;
}

.p-cart__wrapper.__bug {
  margin-bottom: 115px;
}

@media screen and (max-width: 840px) {
  .p-cart__wrapper.__bug {
    margin-bottom: 75px;
  }
}

.p-cart__wrapper.__destination {
  margin-bottom: 75px;
}

.p-cart__wrapper.__date {
  margin-bottom: 150px;
}

@media screen and (max-width: 840px) {
  .p-cart__wrapper.__date {
    margin-bottom: 120px;
  }
}

.p-cart_select__note {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-cart_select__note {
    margin-bottom: 30px;
    font-size: 13px;
  }
}

.p-cart_select__wrapper {
  margin: 0 auto 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 840px) {
  .p-cart_select__wrapper {
    width: 100%;
    margin: 0 auto 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-cart_select__wrapper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 840px) {
  .p-cart_select__wrapper__wrapper {
    max-width: 421px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .p-cart_select__wrapper__wrapper {
    max-width: 281px;
  }
}

.p-cart_select__item {
  width: 50%;
  font-size: 14px;
  line-height: 2;
  font-weight: bold;
  text-align: center;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
  /*@media screen and (max-width: 1250px){
    width: 95px;
    margin-right: 30px;
  }*/
  /* @media screen and (max-width: 500px){
    width: calc((100% - 21px)/3);
    margin-right: 10px;
    margin-bottom: 30px;
    &:nth-child(3n){
      margin-right: 0;
    }
  }*/
}

@media screen and (max-width: 840px) {
  .p-cart_select__item {
    width: 50%;
    max-width: 140px;
    display: block;
    font-size: 13px;
    padding-left: 0;
  }
}

@media screen and (max-width: 840px) and (min-width: 501px) {
  .p-cart_select__item:nth-child(4n) {
    margin-right: 0;
  }
}

.p-cart_select__item:last-child {
  margin-right: 0;
}

.p-cart_select__item input[name="bug"] {
  margin-bottom: 25px;
}

.p-cart_select__item > .__img {
  width: 100px;
  /*margin-bottom: 20px;*/
  display: inline-block;
}

@media screen and (max-width: 840px) {
  .p-cart_select__item > .__img {
    margin-bottom: 10px;
  }
}

.p-cart_select__item.__not > .__text {
  letter-spacing: 0.1em;
}

.p-cart_select__item__text {
  padding-left: 20px;
  letter-spacing: 0;
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 840px) {
  .p-cart_select__item__text {
    padding-left: 0;
    text-align: center;
  }
}

.p-cart_select__item__text > .__text {
  margin-bottom: 5px;
}

@media screen and (max-width: 840px) {
  .p-cart_select__item__text > .__text {
    text-align: center;
  }
}

.p-cart_select {
  border: 1px solid #CECECE;
  padding: 50px 50px 10px;
  margin-bottom: 38px;
}

@media screen and (max-width: 840px) {
  .p-cart_select {
    margin: 0 auto 35px;
    padding: 40px 20px;
  }
}

.p-cart_select:last-child {
  margin-bottom: 0;
}

.p-cart_select_qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-cart_select_qty .p-select2:after {
  right: 10px;
}

.p-cart_select_qty .p-select2__select {
  width: 75px;
  padding-left: 20px;
}

.p-cart_select_qty__ttl {
  font-size: 16px;
  font-weight: 500;
  margin-right: 50px;
}

@media screen and (max-width: 840px) {
  .p-cart_select_qty__ttl {
    font-size: 14px;
    margin-right: 30px;
  }
}

.p-cart_destination__table {
  border: 1px solid #CECECE;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__table {
    font-size: 13px;
  }
}

#destination .p-cart_destination__table {
  margin-bottom: 100px;
}

@media screen and (max-width: 1000px) {
  #destination .p-cart_destination__table {
    margin-bottom: 60px;
  }
}

.p-cart_destination__tr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 30px 5px;
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__tr {
    display: block;
    padding: 25px 25px 25px 25px;
  }
  #cart_delivery .p-cart_destination__tr {
    padding: 25px 25px 25px 55px;
  }
  .p-cart_destination__tr:before {
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    bottom: 0px;
    background-color: #CECECE;
  }
  .p-cart_destination__tr:after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 1px;
    background-color: #CECECE;
  }
  .p-form.__nocheckbutton .p-cart_destination__tr:after {
    display: none;
  }
}

.p-cart_destination__tr.__first {
  padding: 18px 30px;
  border-bottom: 1px solid #CECECE;
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__tr.__first {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .p-cart_destination__tr:nth-child(2) {
    padding: 40px 30px 5px;
  }
}

@media screen and (min-width: 1001px) {
  .p-cart_destination__tr:last-child {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__tr:last-child:before {
    display: none;
  }
}

.p-cart_destination__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 1001px) {
  .p-cart_destination__item:nth-child(1) {
    width: 10%;
    text-align: center;
  }
  .p-cart_destination__item:nth-child(2) {
    width: 18%;
  }
  .p-cart_destination__item:nth-child(3) {
    width: 41%;
  }
  .p-cart_destination__item:nth-child(4) {
    width: 17%;
  }
  .p-cart_destination__item:nth-child(5) {
    width: 14%;
    text-align: center;
  }
}

#destination .p-cart_destination__item:nth-child(1) {
  width: calc((100% - 220px)*0.25);
}

@media screen and (max-width: 1000px) {
  #destination .p-cart_destination__item:nth-child(1) {
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
}

#destination .p-cart_destination__item:nth-child(2) {
  width: calc((100% - 220px)*0.55);
  padding: 0 10px;
}

@media screen and (max-width: 1000px) {
  #destination .p-cart_destination__item:nth-child(2) {
    width: 100%;
    margin-bottom: 10px;
  }
}

#destination .p-cart_destination__item:nth-child(3) {
  width: calc((100% - 220px)*0.2);
  padding: 0 10px;
}

@media screen and (max-width: 1000px) {
  #destination .p-cart_destination__item:nth-child(3) {
    width: 100%;
    margin-bottom: 10px;
  }
}

#destination .p-cart_destination__item:nth-child(4) {
  width: 220px;
  text-align: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1000px) {
  #destination .p-cart_destination__item:nth-child(4) {
    width: 100%;
  }
}

.p-cart_destination__item > .__change {
  border: 1px solid #000;
  min-width: 100px;
  text-align: center;
  padding: 5px 0;
  margin-right: 20px;
  letter-spacing: 0.1em;
}

.p-cart_destination__item > .__change:last-child {
  margin-right: 0;
}

.p-cart_destination__item > .__delete {
  border: 1px solid #000;
  min-width: 100px;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
  .p-cart_destination__item > .__delete {
    min-width: 90px;
  }
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__item.__check {
    position: absolute;
    left: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__item.__name {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.p-cart_destination__item.__address {
  line-height: 1.8;
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__item.__address {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__item.__tel {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .p-cart_destination__item.__change {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-delivery_fee {
  margin-bottom: 64px;
  border: 1px solid #707070;
  padding: 17px 0 23px;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee {
    font-size: 14px;
  }
}

.p-delivery_fee__head {
  font-size: 30px;
  border-bottom: 1px solid #707070;
  padding: 0 23px 17px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__head {
    font-size: 16px;
  }
}

.p-area_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 620px;
}

@media screen and (max-width: 840px) {
  .p-area_select {
    max-width: none;
  }
}

.p-area_select__ttl {
  width: 100%;
}

.p-area_select__wrapper {
  position: relative;
  width: calc((100% - 61px)/2);
  margin-right: 60px;
}

@media screen and (max-width: 840px) {
  .p-area_select__wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .p-area_select__wrapper:last-child {
    margin-bottom: 0;
  }
}

.p-area_select__wrapper:nth-child(even) {
  margin-right: 0;
}

.p-area_select__wrapper:after {
  content: "¨";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -40px;
}

@media screen and (max-width: 840px) {
  .p-area_select__wrapper:after {
    content: "«";
    right: 50%;
    top: auto;
    bottom: -25px;
    -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}

.p-area_select__wrapper:last-child:after {
  display: none;
}

.p-area_select__wrapper .p-select2 {
  max-width: none;
}

.p-delivery_fee__body__area__head {
  width: 75px;
  padding-top: 15px;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__body__area__head {
    width: 100%;
    margin-bottom: 10px;
    padding-top: 0;
  }
}

.p-delivery_fee__body__area__body {
  width: calc(100% - 75px);
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__body__area__body {
    width: 100%;
  }
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__body__note {
    font-size: 13px;
    line-height: 1.8;
  }
}

.p-delivery_fee__body__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__body__area {
    display: block;
  }
}

.p-delivery_fee__body {
  padding: 23px 23px 0;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-delivery_fee__body__area .p-select2__select {
  border-radius: 5px;
  border: 1px solid #707070;
}

.p-delivery_fee__body__result {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__body__result {
    display: block;
  }
}

@media screen and (max-width: 840px) {
  .p-delivery_fee__body__result__text {
    margin-bottom: 10px;
  }
  .p-delivery_fee__body__result__text:last-child {
    margin-bottom: 0;
  }
}

.p-delivery_fee_price {
  width: 100%;
  max-width: 450px;
  background-color: #E3E3E3;
  padding: 17px 22px;
  margin: 0 10px 0 5px;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee_price {
    margin: 0 0 10px;
    font-size: 13px;
    padding: 15px 20px;
    max-width: none;
  }
}

.p-delivery_fee_price__th {
  line-height: 1.7;
}

.p-delivery_fee_price__td {
  margin-left: auto;
}

.p-delivery_fee_price__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

@media screen and (max-width: 840px) {
  .p-delivery_fee_price__tr {
    margin-bottom: 15px;
  }
}

.p-delivery_fee_price__tr:last-child {
  margin-bottom: 0;
}

.p-tiny_button {
  border: 1px solid #000;
  min-width: 100px;
  text-align: center;
  padding: 5px 0;
  margin-right: 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

@media screen and (max-width: 1200px) {
  .p-tiny_button {
    min-width: 90px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 840px) {
  .p-tiny_button {
    min-width: 90px;
    margin-right: 15px;
  }
}

.p-tiny_button.__delete {
  background-color: #F2F2F2;
}

.p-tiny_button > .__close {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
}

.p-tiny_button > .__close:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 147%;
  height: 1px;
  background-color: #707070;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.p-tiny_button > .__close:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 147%;
  height: 1px;
  background-color: #707070;
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.p-tiny_button:last-child {
  margin-right: 0;
}

.js_isPc .p-tiny_button:hover {
  background-color: #000;
  color: #fff;
}

.js_isPc .p-tiny_button:hover > .__close:before {
  background-color: #fff;
}

.js_isPc .p-tiny_button:hover > .__close:after {
  background-color: #fff;
}

.p-cart_date__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  .p-cart_date__tr {
    margin-bottom: 40px;
  }
}

.p-cart_date__tr:last-child {
  margin-bottom: 0;
}

.p-cart_date__th {
  font-size: 20px;
  width: 140px;
  padding-top: 10px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-cart_date__th {
    padding-top: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

#cart_counter_pickup .p-cart_date .p-cart_date__th {
  font-size: 16px;
}

#cart_delivery .p-cart_date .p-cart_date__th {
  font-size: 16px;
}

.p-cart_date__td {
  position: relative;
  width: calc(100% - 140px);
}

@media screen and (max-width: 840px) {
  .p-cart_date__td {
    width: 100%;
  }
}

.p-cart_date__td select {
  background-color: #fff;
  height: 40px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #CECECE;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #919191;
}

@media screen and (max-width: 840px) {
  .p-cart_date__td select {
    padding-left: 20px;
  }
}

.p-archive_hero {
  position: relative;
  height: 252px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 55px;
}

@media screen and (max-width: 840px) {
  .p-archive_hero {
    height: auto;
    margin-bottom: 30px;
  }
  .p-archive_hero:before {
    content: "";
    display: block;
    padding-top: 44%;
  }
}

@media screen and (max-width: 840px) {
  .p-contain.__cancellation .p-archive_hero {
    margin-bottom: 50px;
  }
}

.p-archive_hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/archive/archive_hero@2x.jpg);
  background-position: 54% center;
}

@media screen and (max-width: 1200px) {
  #index .p-archive_hero__bg {
    background-position: 15% center;
  }
}

@media screen and (max-width: 840px) {
  #index .p-archive_hero__bg {
    background-position: 30% center;
  }
}

@media screen and (max-width: 1200px) {
  #archive.__cancellation .p-archive_hero__bg {
    background-position: 15% center;
  }
}

@media screen and (max-width: 840px) {
  #archive.__cancellation .p-archive_hero__bg {
    background-position: 40% center;
  }
}

.p-archive_hero__wrapper {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  white-space: nowrap;
}

.p-contain.__cancellation .p-archive_hero__wrapper {
  left: 7%;
}

@media screen and (max-width: 840px) {
  .p-archive_hero__wrapper {
    text-align: left;
    left: 20px;
  }
}

.p-archive_hero__ttl {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

@media screen and (max-width: 840px) {
  .p-archive_hero__ttl {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.p-archive_hero__sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.p-contain.__cancellation .p-archive_hero__sub {
  letter-spacing: 0.15em;
}

.p-archive__head {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #cfcfcf;
}

.p-archive__head__result {
  position: relative;
  bottom: 10px;
  width: 200px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1300px) {
  .p-archive__head__result {
    width: 180px;
  }
}

@media screen and (max-width: 1100px) {
  .p-archive__head__result {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-archive__head__control {
  width: calc(100% - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 1300px) {
  .p-archive__head__control {
    font-size: 12px;
    width: calc(100% - 180px);
  }
}

@media screen and (max-width: 1100px) {
  .p-archive__head__control {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 40px;
  }
}

.p-archive__head__control__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}

@media screen and (max-width: 1300px) {
  .p-archive__head__control__wrapper {
    margin-right: 30px;
  }
}

@media screen and (max-width: 900px) {
  .p-archive__head__control__wrapper {
    margin-right: 25px;
  }
}

@media screen and (max-width: 840px) {
  .p-archive__head__control__wrapper {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .p-archive__head__control__wrapper:last-child {
    margin-bottom: 0;
  }
}

.p-archive__head__control__wrapper > .__ttl {
  margin-right: 25px;
}

@media screen and (max-width: 1300px) {
  .p-archive__head__control__wrapper > .__ttl {
    margin-right: 15px;
  }
}

@media screen and (max-width: 900px) {
  .p-archive__head__control__wrapper > .__ttl {
    margin-right: 10px;
  }
}

.p-archive__head__control__wrapper:last-child {
  margin-right: 0;
}

.p-archive__head__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-archive__head__result > .__main {
  font-size: 16px;
  margin-right: 3px;
}

@media screen and (max-width: 1300px) {
  .p-archive__head__result > .__main {
    font-size: 14px;
  }
}

.p-archive__head__result > .__sub {
  font-size: 13px;
}

@media screen and (max-width: 1300px) {
  .p-archive__head__result > .__sub {
    font-size: 12px;
  }
}

.p-archive__wrapper {
  padding: 0 10px;
}

@media screen and (max-width: 840px) {
  .p-archive__wrapper {
    padding: 0;
  }
}

.p-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-pager__item {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #7BAD9A;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 12px;
}

.p-pager__item.__next {
  cursor: pointer;
  background-color: #484848;
  color: #fff;
}

.p-pager__item.__next > .__arrow {
  position: relative;
  top: 1px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-pager__item.__prev {
  cursor: pointer;
  background-color: #484848;
  color: #fff;
}

.p-pager__item:last-child {
  margin-right: 0;
}

.p-select {
  width: 130px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 14px;
}

.p-archive__lead {
  margin-top: -20px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 840px) {
  .p-archive__lead {
    margin-top: 0;
  }
}

.p-contain.__cancellation .p-archive__lead {
  margin-bottom: 10px;
}

@media screen and (max-width: 840px) {
  .p-contain.__cancellation .p-archive__lead {
    margin-bottom: 40px;
  }
}

.p-archive__lead__ttl {
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  width: 100%;
}

@media screen and (max-width: 840px) {
  .p-archive__lead__ttl {
    font-size: 18px;
  }
}

.p-archive__lead__texts {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  width: 100%;
}

@media screen and (max-width: 840px) {
  .p-archive__lead__texts {
    font-size: 15px;
  }
}

.p-archive__lead__wrapper {
  width: calc(100% - 218px);
  padding-bottom: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 840px) {
  .p-archive__lead__wrapper {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    padding-bottom: 0;
  }
}

.p-archive__lead__img {
  width: 218px;
}

@media screen and (max-width: 840px) {
  .p-archive__lead__img {
    width: 100%;
    text-align: center;
  }
  .p-archive__lead__img img {
    max-width: 180px;
  }
}

.p-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-single__wrapper {
  width: 100%;
  max-width: 880px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-single__wrapper.__main {
  max-width: 1048px;
}

.p-single__main {
  width: calc(100% - 400px);
  padding-right: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 950px) {
  .p-single__main {
    width: 100%;
    padding-right: 0;
  }
}

.p-single__sub {
  width: 400px;
}

@media screen and (max-width: 950px) {
  .p-single__sub {
    width: 100%;
  }
}

.p-single__main__view {
  margin-bottom: 70px;
}

@media screen and (max-width: 950px) {
  .p-single__main__view {
    margin-bottom: 25px;
  }
}

.p-single_slide {
  margin-bottom: 15px;
}

.p-single_slide__item {
  width: 100%;
  background-color: #ccc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-single_slide__item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.p-single_subslide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-single_subslide__item {
  width: calc((100% - 46px)/4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
  margin-bottom: 15px;
}

.p-single_subslide__item:nth-child(4n) {
  margin-right: 0;
}

.p-single_subslide__item:last-child {
  margin-right: 0;
}

.p-single_subslide__item:before {
  content: "";
  display: block;
  padding-top: 110%;
}

.p-single__main__lead {
  margin-bottom: 80px;
}

.p-single__main__lead > .__ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.p-single__main__lead__texts {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.p-single_block {
  background-color: #F2F2F2;
  padding: 30px 25px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 65px;
  /*&:last-child{
    margin-bottom: 0;
  }*/
}

@media screen and (max-width: 840px) {
  .p-single_block {
    margin-top: 0;
  }
}

.p-single_block__ttl {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-single_block__ttl {
    font-size: 22px;
  }
}

.p-single_block__texts__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 25px;
}

.p-single_block__texts__item > .__ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.p-single_block__texts__item:last-child {
  margin-bottom: 0;
}

.p-single__bottom {
  width: 100%;
  margin-top: 270px;
}

@media screen and (max-width: 840px) {
  .p-single__bottom {
    margin-top: 35px;
  }
}

.p-single__sub__no {
  color: #938F8D;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-single__sub__no {
    font-size: 13px;
  }
}

.p-single__sub__ttl {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .p-single__sub__ttl {
    font-size: 20px;
  }
}

.p-single__sub__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.p-single__sub__price.__sub{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0px;
}

.p-single__sub__price > .__price {
  font-size: 16px;
  font-weight: 500;
  margin-right: 15px;
}
.p-single__sub__price.__sub > .__price {
  font-size: 13px;
  font-weight: 500;
  margin-right: 15px;
}
.p-single__sub__text > .__text {
  font-size: 13px;
  font-weight: 500;
  margin-right: 15px;
}

.p-single__sub__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.p-single__sub__price__revision{
  border: double;
  margin-top: 12px;
  padding: 8px;
  margin-bottom: 18px;
}

@media screen and (max-width: 840px) {
  .p-single__sub__price > .__price {
    font-size: 15px;
  }
  .p-single__sub__price.__sub > .__price {
    font-size: 13px;
  }
  .p-single__sub__text > .__text {
    font-size: 12px;
  }
}

.p-single__sub__price > .__price > .__big {
  font-size: 22px;
}
.p-single__sub__price.__sub > .__price > .__big {
  font-size: 18px;
}

@media screen and (max-width: 840px) {
  .p-single__sub__price > .__price > .__big {
    font-size: 21px;
  }
  .p-single__sub__price.__sub > .__price > .__big {
    font-size: 17px;
  }
}

.p-single__sub__price > .__tax {
  font-size: 13px;
  font-weight: 500;
}

@media screen and (max-width: 840px) {
  .p-single__sub__price > .__tax {
    font-size: 13px;
  }
}

.p-single__sub__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-single__sub__option.__qty .__select {
  width: 90px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 5px;
  font-size: 14px;
  padding-left: 25px;
}

.p-single__sub__option.__set .__select {
  width: 204px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 5px;
  font-size: 14px;
  padding-left: 25px;
}

.p-single__sub__option:lst-child {
  margin-bottom: 0;
}

.p-single__sub__option > .__ttl {
  font-size: 14px;
  margin-right: 25px;
  line-height: 1.25;
}

@media screen and (min-width: 841px) {
  .p-single__sub__option.__wide {
    margin-bottom: 28px;
  }
  .p-single__sub__option.__wide > .__ttl {
    width: 130px;
  }
  .p-single__sub__option.__wide .p-select2__select {
    width: 190px !important;
    padding-left: 15px !important;
  }
}

@media screen and (max-width: 840px) {
  .p-single__sub__option.__wide > .__ttl {
    width: 145px;
    margin-right: 20px;
  }
  .p-single__sub__option.__wide .p-single__sub__option__wrapper {
    width: calc(100% - 145px) !important;
    max-width: 200px;
  }
  .p-single__sub__option.__wide .p-select2__select {
    width: 100% !important;
    padding-left: 15px !important;
  }
}

@media screen and (max-width: 370px) {
  .p-single__sub__option.__wide > .__ttl {
    width: 125px;
    font-size: 12px;
  }
  .p-single__sub__option.__wide .p-single__sub__option__wrapper {
    width: calc(100% - 125px) !important;
  }
}

.p-single_check_item {
  margin-right: 40px;
}

.p-single_check_item:last-child {
  margin-right: 0;
}

.p-single_check_item > input {
  display: inline-block;
  margin-right: 10px;
}

.p-single_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-single__sub__date {
  background-color: #F2F2F2;
  margin-bottom: 20px;
  padding: 20px 15px;
  font-size: 15px;
  max-width: 342px;
  line-height: 1.6;
}

@media screen and (max-width: 950px) {
  .p-single__sub__date {
    max-width: none;
  }
}

.p-single__sub__date.__end {
  margin-bottom: 40px;
}

.p-single__sub__date > .__ttl {
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: bold;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.p-product_detail.__split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-product_detail__wrapper {
  margin-bottom: 70px;
  padding: 0 20px;
}

@media screen and (max-width: 840px) {
  .p-product_detail__wrapper {
    padding: 0;
  }
}

.p-product_detail__wrapper.__feature {
  margin-bottom: 40px;
}

@media screen and (max-width: 840px) {
  .p-product_detail__wrapper.__feature {
    margin-bottom: 55px;
  }
}

.p-product_detail.__split .p-product_detail__wrapper {
  width: calc((100% - 70px)/2);
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .p-product_detail.__split .p-product_detail__wrapper {
    width: calc((100% - 55px)/2);
  }
}

@media screen and (max-width: 1000px) {
  .p-product_detail.__split .p-product_detail__wrapper {
    width: calc((100% - 40px)/2);
  }
}

@media screen and (max-width: 840px) {
  .p-product_detail.__split .p-product_detail__wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
  .p-product_detail.__split .p-product_detail__wrapper:last-child {
    margin-bottom: 0;
  }
}

.p-product_detail.__split .p-product_detail__wrapper:nth-child(odd) {
  margin-left: auto;
}

@media screen and (max-width: 840px) {
  .p-product_detail.__split .p-product_detail__wrapper.__info_pre {
    margin-bottom: 40px;
  }
}

.p-product_detail__wrapper__wrapper {
  margin-bottom: 25px;
}

.p-product_detail__wrapper__wrapper:last-child {
  margin-bottom: 0;
}

.p-product_detail__ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}
.p-product_detail__ttl {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .p-product_detail__ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.p-product_detail.__split .p-product_detail__ttl {
  margin-bottom: 15px;
}

.p-product_detail__texts {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 841px) {
  .p-product_detail.__limit .p-product_detail__texts {
    font-size: 18px;
  }
}

@media screen and (max-width: 840px) {
  .p-product_detail__texts {
    font-size: 16px;
  }
}

.p-product_detail__texts.__big {
  font-size: 18px;
}

@media screen and (max-width: 840px) {
  .p-product_detail__texts.__big {
    font-size: 13px;
  }
}

@media screen and (max-width: 840px) {
  .p-product_detail__wrapper__wrapper.__boxsize .p-product_detail__texts {
    font-size: 15px;
  }
}

.p-product_detail__wrapper__wrapper.__ingredient .p-product_detail__texts {
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .p-product_detail__wrapper__wrapper.__ingredient .p-product_detail__texts {
    font-size: 15px;
  }
}

.p-product_detail__ni {
  margin-bottom: 25px;
}

.p-product_detail__ni__ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-product_detail__ni__table {
  margin-bottom: 30px;
  font-size: 15px;
  max-width: 230px;
}

@media screen and (max-width: 840px) {
  .p-product_detail__ni__table {
    margin-bottom: 35px;
  }
}

.p-product_detail__ni__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}

.p-product_detail__ni__tr:last-child {
  margin-bottom: 0;
}

.p-product_detail__ni__th {
  width: 40%;
}

.p-product_detail__ni__td {
  width: 60%;
  text-align: right;
}

@media screen and (max-width: 840px) {
  .p-product_detail__srm {
    max-width: 335px;
  }
}

.p-product_detail__srm__ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-product_detail__srm__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-product_detail__srm__item {
  width: calc((100% - 43px)/6);
  margin-right: 7px;
  margin-bottom: 7px;
  text-align: center;
  font-size: 13px;
}

.p-product_detail__srm__item:nth-child(6) {
  margin-right: 0;
}

.p-product_detail__srm__item__img {
  background-color: #fff;
  margin-bottom: 10px;
}

.js_product_slide_sub__item {
  cursor: pointer;
}

.p-cart_lead {
  margin-bottom: 50px;
}

.p-cart_lead__ttl {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 35px;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-cart_lead__ttl {
    font-size: 12px;
    margin-bottom: 25px;
  }
}

.p-cart_lead__text {
  width: 90%;
  max-width: 775px;
  margin: 0 auto;
  background-color: #F2F2F2;
  padding: 30px 35px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 840px) {
  .p-cart_lead__text {
    padding: 25px 30px;
    font-size: 12px;
  }
}

.p-login__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-login__wrapper__wrapper {
  width: calc((100% - 41px)/2);
  border: 1px solid #DDDDDD;
  padding: 35px 50px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 500px;
}

@media screen and (max-width: 1250px) {
  .p-login__wrapper__wrapper {
    padding: 35px 35px 40px;
  }
}

@media screen and (max-width: 1100px) {
  .p-login__wrapper__wrapper {
    width: 100%;
    margin: 0 auto 40px;
    padding: 40px 20px 40px;
  }
  .p-login__wrapper__wrapper:last-child {
    margin-bottom: 0;
  }
}

.p-login__wrapper__wrapper:nth-child(even) {
  margin-left: auto;
}

.p-login__ttl {
  font-size: 22px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 1200px) {
  .p-login__ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .p-login__ttl {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.p-login__lead {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.p-login__wrapper__wrapper.__not_member .p-login__lead {
  margin-bottom: 55px;
}

.p-login__input__table {
  font-size: 14px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1250px) {
  .p-login__input__table {
    font-size: 13px;
  }
}

.p-login__input__th {
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
}

@media screen and (max-width: 1250px) {
  .p-login__input__th {
    width: 115px;
  }
}

@media screen and (max-width: 1100px) {
  .p-login__input__th {
    width: 100%;
    margin-bottom: 10px;
  }
}

.p-login__input__td {
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  width: calc(100% - 140px);
}

@media screen and (max-width: 1250px) {
  .p-login__input__td {
    width: calc(100% - 115px);
  }
}

@media screen and (max-width: 1100px) {
  .p-login__input__td {
    width: 100%;
  }
}

.p-input {
  border: 1px solid #A8A8A8;
  border-radius: 5px;
  height: 40px;
  width: 100%;
}

.p-input2 {
  border: 1px solid #A8A8A8;
  height: 40px;
  width: 100%;
}

.p-login__input__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

@media screen and (max-width: 1100px) {
  .p-login__input__tr {
    display: block;
  }
}

.p-login__button {
  text-align: center;
}

.p-login__button__note {
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  font-size: 12px;
}

@media screen and (max-width: 1100px) {
  .p-login__button__note {
    font-size: 12px;
  }
}

.p-payment__wrapper {
  margin-bottom: 105px;
}

.p-payment__wrapper.__title{
  margin-bottom: 6px;
  color: red;
}
.p-payment__wrapper.__text{
  margin-bottom: 6px;
  color: red;
}

.p-cart_confirm__wrapper.__title{
  margin-bottom: 6px;
  color: red;
}
.p-cart_confirm__wrapper.__text{
  margin-bottom: 6px;
  color: red;
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__coupon {
    max-width: 375px;
  }
}

.p-payment__wrapper.__coupon input {
  width: 320px;
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__coupon input {
    width: 100%;
    max-width: 375px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__point {
    max-width: 375px;
  }
}

.p-payment__wrapper.__point input {
  width: 150px;
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__point input {
    width: 200px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__other {
    margin-bottom: 30px;
  }
}

.p-payment__wrapper.__total {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  .p-payment__wrapper.__total {
    margin-bottom: 80px;
  }
}

.p-payment__method__table {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-payment__method__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

@media screen and (max-width: 840px) {
  .p-payment__method__tr {
    font-size: 12px;
  }
}

.p-payment__method__th {
  position: relative;
  width: 235px;
  padding-top: 10px;
  font-weight: 600;
}

@media screen and (max-width: 840px) {
  .p-payment__method__th {
    width: 100%;
    margin-bottom: 25px;
    font-size: 14px;
  }
}

.p-payment__method__td {
  width: calc(100% - 235px);
}

@media screen and (max-width: 840px) {
  .p-payment__method__td {
    width: 100%;
  }
}

.p-table {
  border: 1px solid #CECECE;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

#cart_confirm .p-table {
  line-height: 1.8;
}

#history_detail_main .p-table {
  line-height: 2;
}

@media screen and (max-width: 840px) {
  .p-table {
    font-size: 12px;
  }
}

.p-payment__method .p-table {
  margin-top: -10px;
}

@media screen and (max-width: 840px) {
  .p-payment__method .p-table {
    margin-top: 0;
  }
}

.p-table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #CECECE;
}

.p-table__tr:last-child {
  border-bottom: 0;
}

.p-table__th {
  width: 250px;
  background-color: #F5F5F5;
  padding: 30px 30px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cart_confirm .p-table__th {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 840px) {
  .p-table__th {
    width: 100%;
    border-bottom: 1px solid #CECECE;
    padding: 15px 30px;
    font-size: 14px;
  }
}

.p-table.__pressed .p-table__th {
  padding: 15px 30px;
}

.p-table__td {
  width: calc(100% - 250px);
  padding: 20px 30px;
}

@media screen and (max-width: 840px) {
  .p-table__td {
    width: 100%;
    padding: 15px 30px;
  }
}

@media screen and (max-width: 374px) {
  .p-table__td {
    padding: 15px 20px;
  }
}

.p-table.__pressed .p-table__td {
  padding: 15px 30px;
}

.p-payment_input__lead {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-payment_input__lead {
    font-size: 12px;
  }
}

.p-payment_input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 840px) {
  .p-payment_input__wrapper {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-payment_input__input {
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 840px) {
  .p-payment_input__input {
    margin-right: 0;
    margin-bottom: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-payment_input__input > .__pt {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-left: 5px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-payment_input__input > .__pt {
    margin-left: 10px;
  }
}

.p-summary {
  max-width: 750px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-summary__wrapper {
  padding: 18px 20px;
  border: 1px solid #CECECE;
  border-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-summary__wrapper {
    font-size: 14px;
  }
}

.p-summary__wrapper.__bottom {
  border-bottom: 1px solid #CECECE;
}

.p-summary__wrapper.__result {
  margin-top: 20px;
  background-color: #377B4A;
  border: 0;
  color: #fff;
  padding: 20px 20px;
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  .p-summary__wrapper.__result {
    margin-top: 10px;
    font-size: 14px;
  }
}

.p-summary__text {
  margin-left: auto;
  letter-spacing: 0.1em;
}

.p-summary__wrapper.__result .p-summary__text {
  font-size: 16px;
}

.p-payment__note {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-payment__note textarea {
  width: 100%;
  border: 1px solid #CECECE;
  height: 200px;
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-payment__note textarea {
    font-size: 12px;
  }
}

.p-payment__method__note {
  font-size: 12px;
  margin-top: 6px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-payment__method__note {
    font-size: 11px;
    text-align: center;
  }
}

.p-payment__method__select .__select {
  border: 1px solid #CECECE;
}

.p-select2 {
  position: relative;
  max-width: 280px;
}

.p-serial_input__item.__year .p-select2 {
  width: 130px;
}

@media screen and (max-width: 840px) {
  .p-serial_input__item.__year .p-select2 {
    width: 110px;
  }
}

.p-serial_input__item.__month .p-select2 {
  width: 100px;
}

@media screen and (max-width: 840px) {
  .p-serial_input__item.__month .p-select2 {
    width: 90px;
  }
}

.p-serial_input__item.__day .p-select2 {
  width: 100px;
}

@media screen and (max-width: 840px) {
  .p-serial_input__item.__day .p-select2 {
    width: 90px;
  }
}

.p-form__tr.__card_limit .p-select2 {
  width: 100px;
}

.p-form__tr.__card_limit .p-select2 select.p-select2__select {
  color: #000;
}

@media screen and (max-width: 840px) {
  .p-form__tr.__card_limit .p-select2 {
    width: 90px;
  }
}

@media screen and (min-width: 841px) {
  .p-form__tr.__card_company .p-select2 {
    max-width: 250px;
  }
}

.p-archive__head__control .p-select2 {
  width: 130px;
}

@media screen and (max-width: 1200px) {
  .p-archive__head__control .p-select2 {
    width: 110px;
  }
}

@media screen and (max-width: 900px) {
  .p-archive__head__control .p-select2 {
    width: 90px;
  }
}

@media screen and (max-width: 840px) {
  .p-archive__head__control .p-select2 {
    width: 130px;
  }
}

.p-archive__head__control__wrapper.__pps .p-select2 {
  width: 99px;
}

@media screen and (max-width: 1200px) {
  .p-archive__head__control__wrapper.__pps .p-select2 {
    width: 80px;
  }
}

@media screen and (max-width: 900px) {
  .p-archive__head__control__wrapper.__pps .p-select2 {
    width: 65px;
  }
}

@media screen and (max-width: 840px) {
  .p-archive__head__control__wrapper.__pps .p-select2 {
    width: 99px;
  }
}

.p-select2:after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: calc(50% + 3px);
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-image: url(../img/common/down_arrow@2x.png);
  width: 11px;
  height: 7px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 840px) {
  .p-select2:after {
    top: calc(50% + 1px);
  }
}

@media screen and (max-width: 500px) {
  .p-select2:after {
    width: 9px;
    height: 6px;
  }
}

.p-cart_detail .p-select2:after {
  top: calc(50% + 2px);
  right: 8px;
}

.p-single .p-select2:after {
  right: 10px;
}

.p-select2.__arrow_type2:after {
  background-image: none;
  right: 10px;
  border-top: 6px solid #484848;
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid transparent;
  display: inline-block;
}

.p-hold__control__sort .p-select2 {
  width: 210px;
}

@media screen and (max-width: 840px) {
  .p-hold__control__sort .p-select2 {
    width: 200px;
    font-size: 13px;
  }
}

@media screen and (max-width: 840px) {
  .p-payment__method__select .p-select2 {
    margin: 0 auto;
  }
}

@media screen and (max-width: 840px) {
  .p-guide_method__wrapper .p-select2:after {
    right: 10px;
  }
}

.p-cart__wrapper.__date .p-cart_date__tr.__recieve_date .p-select2 {
  max-width: 400px;
}

.p-cart_date__select.__herf .p-select2 {
  width: calc((100% - 31px)/2);
}

@media screen and (max-width: 840px) {
  .p-cart_date__select.__herf .p-select2 {
    width: 100%;
    margin-bottom: 10px;
  }
  .p-cart_date__select.__herf .p-select2:last-child {
    margin-bottom: 0;
  }
}

.p-cart_date__select.__herf .p-select2:nth-child(even) {
  margin-left: auto;
}

@media screen and (max-width: 840px) {
  .p-cart_date__select.__herf .p-select2:nth-child(even) {
    margin-left: 0;
  }
}

@media screen and (max-width: 840px) {
  .p-cart_date__select.__arrow .p-select2 {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.p-cart_date__select.__arrow .p-select2:before {
  content: "¨";
  font-size: 15px;
  font-weight: bold;
  display: block;
  position: absolute;
  right: -23px;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-cart_date__select.__arrow .p-select2:before {
    content: "«";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    -webkit-transform: translate(-50%, 100%);
        -ms-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}

.p-cart_date__select.__arrow .p-select2:last-child:before {
  display: none;
}

.p-cart_date__select.__herf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 620px;
}

.p-select2__pretext {
  position: absolute;
  left: 0;
  top: -5px;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media screen and (max-width: 840px) {
  .p-select2__pretext {
    /*position: relative;
    top: auto;
    transform:none;*/
  }
}

.p-select2__select {
  width: 100%;
  height: 40px;
  font-size: 14px;
  border: 1px solid #CECECE;
  padding-left: 35px;
  margin-bottom: 0px;
}

@media screen and (max-width: 1200px) {
  .p-select2__select {
    font-size: 13px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 900px) {
  .p-select2__select {
    font-size: 12px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 840px) {
  .p-select2__select {
    font-size: 14px;
    padding-left: 35px;
  }
}

.p-archive__head__control .p-select2__select {
  border-radius: 5px;
  border: 1px solid #a2a2a2;
  padding-left: 15px;
}

@media screen and (max-width: 1100px) {
  .p-archive__head__control .p-select2__select {
    height: 35px;
  }
}

@media screen and (max-width: 840px) {
  .p-archive__head__control .p-select2__select {
    font-size: 12px;
  }
}

@media screen and (max-width: 840px) {
  .p-hold__control .p-select2__select {
    padding-left: 20px;
  }
}

.p-payment__method .p-select2__select {
  padding-left: 20px;
}

.p-cart_detail .p-select2__select {
  width: 75px;
  height: 30px;
  padding: 0 0 0 30px;
}

.p-single__sub__option.__qty .p-select2__select {
  width: 90px;
  border: 1px solid #707070;
  border-radius: 5px;
  padding-left: 25px;
}

.p-single__sub__option.__set .p-select2__select {
  width: 204px;
  border: 1px solid #707070;
  border-radius: 5px;
  padding-left: 25px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-select2__select.__type2 {
  width: 204px;
  border: 1px solid #707070;
  border-radius: 5px;
  padding-left: 25px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
  font-size: 14px;
}

@media screen and (max-width: 840px) {
  .p-guide_method__wrapper .p-select2__select {
    padding-left: 10px;
    font-size: 11px;
  }
}

@media screen and (max-width: 500px) {
  .p-guide_method__wrapper .p-select2__select {
    font-size: 10px;
    letter-spacing: 0;
  }
}

.p-form__tr.__card_limit .p-select2__select {
  padding-left: 20px;
}

#hold .p-select2__select {
  padding-left: 20px;
}

.p-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 840px) {
  .p-payment__method__tr.__receipt .p-check {
    font-size: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-check__item {
  margin-right: 45px;
}

@media screen and (max-width: 840px) {
  .p-check__item {
    margin-right: 35px;
  }
}

.p-check__item:last-child {
  margin-right: 0;
}

.p-check__item > .__input {
  display: none;
  margin-right: 16px;
}

.p-payment__method__check {
  margin-bottom: 10px;
}

@media screen and (max-width: 840px) {
  .p-payment__method__check {
    margin-bottom: 15px;
  }
}

.p-check__item__ttl {
  position: relative;
  padding-left: 35px;
}

@media screen and (max-width: 840px) {
  .p-check__item__ttl {
    padding-left: 25px;
  }
}

.p-check__item__ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0px;
  width: 17px;
  height: 17px;
  border: 1px solid #707070;
  border-radius: 100%;
  display: block;
}

@media screen and (min-width: 841px) {
  #receipt .p-check__item__ttl:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 17px;
    height: 17px;
  }
}

.p-check__item__ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4px;
  width: 9px;
  height: 9px;
  background-color: #377B4A;
  border-radius: 100%;
  display: none;
}

@media screen and (min-width: 841px) {
  #receipt .p-check__item__ttl:before {
    left: 4px;
    width: 9px;
    height: 9px;
  }
}

/*@media screen and (max-width: 840px) {
  .p-check__item__ttl:after {
    width: 11px;
    height: 11px;
  }
  .p-check__item__ttl:after {
    top: 6px;
  }
}*/
input:checked + .p-check__item__ttl:before {
  display: block;
}

.p-form__tr.__address .p-serial_input {
  margin-bottom: 20px;
}

.p-serial_input__note {
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-serial_input__note {
    margin-bottom: 20px;
    margin-top: -10px;
  }
  .p-table__tr.__cardno .p-serial_input__note {
    margin: 0 0 6px;
    width: 100%;
  }
}

.p-serial_input__texts__text {
  line-height: 1.8;
  margin-bottom: 10px;
}

@media screen and (max-width: 840px) {
  .p-serial_input__texts__text {
    margin-bottom: 20px;
  }
}

.p-serial_input__texts__text > .__bold {
  font-weight: bold;
}

.p-serial_input__texts__remember {
  font-size: 12px;
  line-height: 1.8;
}

.p-serial_input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.p-serial_input__wrapper:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-serial_input__wrapper {
    margin-bottom: 18px;
  }
}

.p-serial_input__wrapper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}

@media screen and (max-width: 840px) {
  .p-serial_input__wrapper__wrapper {
    margin-right: 0;
  }
  .p-table__tr.__cardno .p-serial_input__wrapper__wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-table__tr.__cvc .p-serial_input__wrapper__wrapper {
    margin-right: 10px;
  }
}

.p-serial_input__item {
  position: relative;
  margin-right: 20px;
}

.p-serial_input.__tel .p-serial_input__item {
  width: 80px;
}

@media screen and (max-width: 840px) {
  .p-serial_input.__tel .p-serial_input__item {
    width: 57px;
  }
}

.p-serial_input.__cardno .p-serial_input__item {
  width: 80px;
}

@media screen and (max-width: 840px) {
  .p-serial_input.__cardno .p-serial_input__item {
    width: calc((100% - 60px)/3);
    max-width: 57px;
  }
}

.p-form__tr.__birthday .p-serial_input__item {
  width: auto;
}

.p-serial_input__item input {
  border: 1px solid #CECECE;
  width: 100%;
  height: 40px;
  text-align: center;
  padding: 0;
}

.p-form .p-serial_input__item input {
  height: 50px;
  border: 0;
}

@media screen and (max-width: 840px) {
  .p-form .p-serial_input__item input {
    height: 45px;
  }
}

.p-form__tr.__address .p-serial_input__item:nth-child(1) {
  width: 70px;
}

.p-form__tr.__address .p-serial_input__item:nth-child(2) {
  width: 80px;
}

.p-form__tr.__tel .p-serial_input__item {
  width: 70px;
}

.p-form__tr.__fax .p-serial_input__item {
  width: 70px;
}

.p-serial_input__item:last-child {
  margin-right: 0;
}

.p-serial_input__item:last-child:after {
  display: none;
}

.p-serial_input__item:after {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: -13px;
}

.p-serial_input.__nosep .p-serial_input__item:after {
  display: none;
}

.p-serial_input__note {
  font-size: 12px;
  font-weight: bold;
}

.p-serial_input__texts {
  font-size: 12px;
}

.p-underline {
  position: relative;
  display: inline-block;
}

.p-underline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #CECECE;
  bottom: 5px;
  left: 0;
}

.p-cart_receive .p-underline:after {
  bottom: 4px;
  background-color: #414141;
}

.p-form .p-underline:after {
  bottom: 3px;
  background-color: #414141;
}

.p-guide_method .p-underline:after {
  bottom: 3px;
  background-color: #414141;
}

.p-cardlimit__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-cardlimit__input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
}

.p-cardlimit__input__item {
  position: relative;
  width: 40px;
  margin-right: 25px;
}

.p-cardlimit__input__item input {
  border: 1px solid #CECECE;
  width: 40px;
  height: 40px;
}

.p-cardlimit__input__item:last-child {
  margin-right: 0;
}

.p-cardlimit__input__item:last-child:after {
  display: none;
}

.p-cardlimit__input__item:after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: -23px;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.p-serial_input__wrapper__note {
  font-size: 12px;
  font-weight: bold;
}

.p-cardcvc__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.p-cardcvc__input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
}

.p-cardcvc__input__item {
  position: relative;
  width: 70px;
  margin-right: 25px;
}

.p-cardcvc__input__item input {
  border: 1px solid #CECECE;
  width: 70px;
  height: 40px;
}

.p-cardcvc__input__item:last-child {
  margin-right: 0;
}

.p-cardcvc__input__item:last-child:after {
  display: none;
}

.p-cardcvc__input__item:after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: -23px;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.p-cardcvc__input__note {
  font-size: 12px;
  font-weight: bold;
}

.p-cardcvc__note {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.p-cart_confirm__wrapper {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  .p-cart_confirm__wrapper {
    margin-bottom: 60px;
  }
}

.p-cart_confirm__wrapper:last-child {
  margin-bottom: 0;
}

.p-passward_reset_text {
  line-height: 2.2;
  margin-bottom: 35px;
}

.p-passward_reset_wrapper {
  border: 1px solid #CECECE;
  padding: 50px 20px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-passward_reset_wrapper {
    padding: 40px 20px;
  }
}

.p-passward_reset_wrapper__wrapper {
  width: 90%;
  max-width: 845px;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .p-passward_reset_wrapper__wrapper {
    width: 100%;
  }
}

.p-passward_reset__button {
  text-align: center;
}

.p-passward_reset__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .p-passward_reset__input {
    margin-bottom: 20px;
  }
}

.p-passward_reset__input > .__ttl {
  width: 120px;
  font-size: 14px;
  font-weight: 900;
}

@media screen and (max-width: 840px) {
  .p-passward_reset__input > .__ttl {
    width: 100%;
    margin-bottom: 10px;
  }
}

.p-passward_reset__input__input {
  width: calc(100% - 120px);
}

@media screen and (max-width: 840px) {
  .p-passward_reset__input__input {
    width: 100%;
  }
}

.p-passward_reset__input__input input {
  width: 100%;
  height: 64px;
  background-color: #EFEFEF;
  background-repeat: 5px;
  border-radius: 5px;
  padding: 22px 0 22px 30px;
}

.p-passward_reset__input__input input::-webkit-input-placeholder {
  color: #919191;
}

.p-passward_reset__input__input input::-moz-placeholder {
  color: #919191;
}

.p-passward_reset__input__input input:-ms-input-placeholder {
  color: #919191;
}

.p-passward_reset__input__input input::-ms-input-placeholder {
  color: #919191;
}

.p-passward_reset__input__input input::placeholder {
  color: #919191;
}

@media screen and (max-width: 840px) {
  .p-passward_reset__input__input input {
    height: 56px;
    padding-left: 20px;
  }
}

body.js_isSafari input::-webkit-input-placeholder {
  position: relative;
  top: 0.18em;
}

/*input.p-search__input::placeholder{
  position: relative;
  color: red !important;
  top: 0.48em !important;
}*/
body.js_isSafari input.p-search__input::-webkit-input-placeholder {
  position: relative !important;
  top: 0.48em !important;
}
body.js_isSafari input.p-search__input::-moz-placeholder {
  position: relative !important;
  top: 0.48em !important;
}
body.js_isSafari input.p-search__input:-ms-input-placeholder {
  position: relative !important;
  top: 0.48em !important;
}
body.js_isSafari input.p-search__input::-ms-input-placeholder {
  position: relative !important;
  top: 0.48em !important;
}
body.js_isSafari input.p-search__input::placeholder {
  position: relative !important;
  top: 0.48em !important;
}

.p-passward_reset_text {
  font-size: 14px;
}

@media screen and (max-width: 840px) {
  .p-passward_reset_text {
    font-size: 13px;
  }
}

.p-complete_message__note {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 75px;
  line-height: 1.6;
}

@media screen and (max-width: 840px) {
  .p-complete_message__note {
    text-align: left;
  }
}

.p-form_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-form_name input {
  width: 250px;
  margin-right: 20px;
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-form_name input {
    max-width: 250px;
    width: calc((100% - 21px)/2);
  }
}

.p-form_name input:last-child {
  margin-right: 0;
}

.p-address_search__button {
  display: inline-block;
  width: 60px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F2F2F2;
  border: 1px solid #707070;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 20px;
}

@media screen and (max-width: 1200px) {
  .p-address_search__button {
    margin-right: 10px;
  }
}

@media screen and (max-width: 840px) {
  .p-address_search__button {
    margin-right: 0;
    margin-right: 20px;
  }
}

.p-address_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 840px) {
  .p-address_search {
    margin-left: 20px;
  }
}

.p-address_search__br {
  display: none;
}

@media screen and (max-width: 1300px) {
  .p-address_search__br {
    display: inline-block;
  }
}

.p-address_search__text {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1100px) {
  .p-address_search__text {
    font-size: 11px;
  }
}

@media screen and (max-width: 1050px) {
  .p-address_search__text {
    font-size: 10px;
  }
}

@media screen and (max-width: 840px) {
  .p-address_search__text {
    font-size: 12px;
  }
}

.p-note {
  background-color: #9EB091;
  color: #fff;
  padding: 14px 35px;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.8;
}

#register_confirm .p-note {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

#history .p-note {
  text-align: center;
}

@media screen and (max-width: 840px) {
  .p-note {
    padding: 10px 20px;
    font-size: 12px;
    margin: 0 auto 30px;
    display: block;
    max-width: 340px;
    text-align: center;
  }
}

.p-note.__wide {
  width: 100%;
}

#change_member_information .p-note {
  margin-bottom: 95px;
  text-align: center;
}

@media screen and (max-width: 840px) {
  #change_member_information .p-note {
    text-align: left;
  }
}

.p-terms_of_use__wrapper {
  height: 200px;
  overflow: auto;
  padding: 20px 40px 40px;
  border: 1px solid #CECECE;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #666666;
}

@media screen and (max-width: 840px) {
  .p-terms_of_use__wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }
}

.p-terms_of_use__ttl {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-terms_of_use__item {
  margin-bottom: 30px;
}

.p-terms_of_use__item:last-child {
  margin-bottom: 0;
}

.p-terms_of_use__item__ttl {
  font-weight: bold;
}

.p-terms_of_use {
  max-width: 960px;
  margin: 0 auto 90px;
}

.p-terms_of_use__lead {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.8;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  letter-spacing: 0.1em;
}

.p-terms_of_use__confirm {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.p-terms_of_use__confirm input {
  display: none;
}

.p-terms_of_use__confirm__ttl {
  position: relative;
  padding-left: 35px;
}

.p-terms_of_use__confirm__ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  display: block;
}

.p-terms_of_use__confirm__ttl:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 14px;
  height: 10px;
  display: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/common/check_icon@2x.png);
}

/*@media screen and (max-width: 840px) {
  .p-check__item__ttl:after {
    width: 11px;
    height: 11px;
  }
  .p-check__item__ttl:after {
    top: 6px;
  }
}*/
input:checked + .p-terms_of_use__confirm__ttl:before {
  display: block;
}

/*ƒXƒNƒ[ƒ‹ƒo[‘S‘Ì*/
.p-terms_of_use__wrapper::-webkit-scrollbar {
  width: 10px;
  background-color: #F2F2F2;
}

/*ƒXƒNƒ[ƒ‹ƒo[‚Ì‹O“¹*/
.p-terms_of_use__wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*ƒXƒNƒ[ƒ‹ƒo[‚Ì“®‚­•”•ª*/
.p-terms_of_use__wrapper::-webkit-scrollbar-thumb {
  background-color: #919191;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.p-mypage__wrapper {
  width: 90%;
  max-width: 820px;
  margin: 0 auto 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
}

.p-mypage__wrapper:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-mypage__wrapper {
    margin-bottom: 40px;
    font-size: 13px;
  }
}

.p-mypage__item {
  width: calc((100% - 20px)/2);
  margin-bottom: 20px;
  border: 1px solid #707070;
  padding: 45px 20px 20px;
}

@media screen and (max-width: 840px) {
  .p-mypage__item {
    width: 100%;
    padding: 40px 0;
  }
  .p-mypage__item:last-child {
    margin-bottom: 0;
  }
}

.p-mypage__item:nth-child(even) {
  margin-left: auto;
}

.p-mypage__item__img {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .p-mypage__item__img {
    margin-bottom: 20px;
  }
}

.p-mypage__item__ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.p-mypage__item__text {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  /*max-width: 240px;*/
  width: calc(100% - 40px);
  margin: 0 auto;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 840px) {
  .p-mypage__item__text {
    text-align: left;
  }
}

.p-mypage__button {
  text-align: center;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-mypage__button__wrapper {
  display: inline-block;
  border: 1px solid #707070;
  width: 270px;
  padding: 25px 0;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.js_isPc .p-mypage__button__wrapper:hover {
  background-color: #707070;
  color: #fff;
}

.p-form__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 18px;
}

.p-form__text > .__ttl {
  margin-right: 40px;
}

.p-form__tr.__point .p-form__text {
  font-weight: bold;
}

#change_member_information .p-member_info_change {
  margin-bottom: 140px;
}

@media screen and (max-width: 840px) {
  #change_member_information .p-member_info_change {
    margin-bottom: 100px;
  }
}

.p-register_main__wrapper.__card_current {
  max-width: 760px;
}

#card_confirm .p-register_main__wrapper {
  max-width: 755px;
  margin: 0 auto;
}

.p-small_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 190px;
}

@media screen and (max-width: 840px) {
  .p-small_buttons {
    margin-bottom: 120px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-small_buttons__item {
  width: 150px;
  padding: 15px 0;
  text-align: center;
  border: 1px solid #101010;
  background-color: #101010;
  color: #fff;
  margin-right: 20px;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-small_buttons__item.__white {
  background-color: #fff;
  color: #101010;
}

.p-small_buttons__item:last-child {
  margin-right: 0;
}

.p-register_main__bottom {
  border-top: 1px solid #CECECE;
  padding-top: 100px;
}

@media screen and (max-width: 840px) {
  .p-register_main__bottom {
    padding-top: 70px;
  }
}

.p-register_main__bottom__button {
  text-align: center;
}

.p-form_button {
  text-align: center;
}

@media screen and (max-width: 840px) {
  .p-form_button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-register_main__bottom__button .p-form_button {
  margin-bottom: 25px;
}

.p-history_detail__output__button .p-form_button {
  margin-top: 95px;
}

@media screen and (max-width: 840px) {
  .p-history_detail__output__button .p-form_button {
    margin-top: 70px;
  }
}

.p-receipt_guest .p-form_button {
  text-align: left;
}

.p-register_main__bottom__button__note {
  font-weight: bold;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  .p-register_main__bottom__button__note {
    font-size: 14px;
  }
}

.p-history {
  max-width: 720px;
  margin: 0 auto 155px;
}

@media screen and (max-width: 840px) {
  .p-history {
    margin: 0 auto 120px;
  }
}

.p-history__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #CECECE;
}

@media screen and (max-width: 840px) {
  .p-history__tr {
    border-bottom: 0;
  }
}

.p-history__th {
  width: 147px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #CECECE;
  padding: 20px;
}

@media screen and (max-width: 840px) {
  .p-history__th {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #CECECE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
}

.p-history__td {
  width: calc(100% - 147px);
}

@media screen and (max-width: 840px) {
  .p-history__td {
    width: 100%;
  }
}

.p-history__table {
  margin-bottom: 55px;
}

.p-history__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-history__pager__wrapepr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #919191;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .p-history__pager__wrapepr {
    font-size: 16px;
  }
}

.p-history__pager__no {
  position: relative;
  top: 6px;
  padding: 0 12px;
  line-height: 1;
}

@media screen and (max-width: 840px) {
  .p-history__pager__no {
    padding: 0 10px;
  }
}

.p-history__pager__no.__current {
  color: #377B4A;
}

.p-history__pager__item {
  position: relative;
  width: 30px;
  height: 26px;
  border: 1px solid #707070;
}

@media screen and (max-width: 840px) {
  .p-history__pager__item {
    width: 25px;
    height: 22px;
  }
}

.p-history__pager__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 5px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  border-left: 14px solid #484848;
  border-right: 10px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media screen and (max-width: 840px) {
  .p-history__pager__item:before {
    border-left: 10px solid #484848;
    border-right: 7px solid transparent;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
}

.p-history__pager__item.__next {
  margin-right: auto;
}

.p-history__pager__item.__next:before {
  left: calc(50% - 5px);
  border-right: 14px solid #484848;
  border-left: 10px solid transparent;
}

@media screen and (max-width: 840px) {
  .p-history__pager__item.__next:before {
    border-right: 10px solid #484848;
  }
}

.p-history__pager__item.__prev {
  margin-left: auto;
}

.p-history__items {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}

@media screen and (max-width: 840px) {
  .p-history__items {
    padding: 20px 0;
  }
}

.p-history__items__item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-history__items__item:last-child {
  margin-bottom: 0;
}

.p-history__items__item > .__img {
  width: 80px;
  height: 80px;
  background-color: #ccc;
}

.p-history__items__item__texts {
  width: calc(100% - 80px);
  padding-left: 21px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 840px) {
  .p-history__items__item__texts {
    display: block;
  }
}

.p-history__items__item__texts > .__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.95;
  letter-spacing: 0.1em;
}

.p-history__date {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-history__date {
    margin-bottom: 0;
  }
}

.p-history__detail__button {
  padding: 10px 0;
  text-align: center;
  border: 1px solid #707070;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  .p-history__detail__button {
    width: 120px;
    margin-left: 20px;
  }
}

.js_isPc .p-history__detail__button:hover {
  background-color: #707070;
  color: #fff;
}

.p-history__items__item__texts__no {
  margin-left: auto;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (max-width: 840px) {
  .p-history__items__item__texts__no {
    margin-left: 0;
  }
}

.p-nav_expanded {
  position: absolute;
  bottom: 1px;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  background-color: rgba(245, 245, 245, 0.96);
  z-index: 1;
  padding: 45px 0;
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 1000px) {
  .p-nav_expanded {
    display: none;
  }
}

.p-nav_expanded.is-enable {
  opacity: 1;
  pointer-events: auto;
}

.p-nav_expanded__inner {
  width: 80%;
  max-width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .p-nav_expanded__inner {
    width: 85%;
  }
}

.p-items_expanded__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-items_expanded__wrapper__wrapper {
  width: calc(100% - 230px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .p-items_expanded__wrapper__wrapper {
    width: calc(100% - 200px);
  }
}

.p-items_expanded__after {
  width: 230px;
}

@media screen and (max-width: 1200px) {
  .p-items_expanded__after {
    width: 200px;
  }
}

.p-items_expanded__after__bnr > .__item {
  display: block;
  margin-bottom: 30px;
}

.p-items_expanded__after__bnr > .__item:last-child {
  margin-bottom: 0;
}

.p-items_expanded__wrapper__wrapper__wrapper {
  position: relative;
  width: calc((100%)/4);
}

.p-items_expanded__ttl {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .p-items_expanded__ttl {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  .p-items_expanded__ttl {
    font-size: 14px;
    padding: 0 0 0 0;
    margin-bottom: 0;
  }
}

.js_spNavToggle_target {
  display: none;
}

@media screen and (min-width: 1001px) {
  .js_spNavToggle_target {
    display: block;
  }
}

.js_spNavToggle_switch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  cursor: pointer;
}

.p-nav .js_spNavToggle_switch {
  top: -18px;
}

@media screen and (min-width: 1001px) {
  .js_spNavToggle_switch {
    display: none !important;
  }
}

.p-nav .js_spNavToggle_switch:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  background-color: #242424;
  position: absolute;
  right: 29px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.p-nav .js_spNavToggle_parent.js_fire > .js_spNavToggle_switch:after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
      -ms-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
  opacity: 0;
}

.p-nav .js_spNavToggle_switch:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 1px;
  background-color: #242424;
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

.p-items_expanded__list {
  font-size: 13px;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .p-items_expanded__list {
    font-size: 12px;
  }
}

@media screen and (max-width: 1000px) {
  .p-items_expanded__list {
    padding: 25px 0 15px 15px;
    font-size: 13px;
  }
}

.p-items_expanded__list > li {
  margin-bottom: 15px;
}

@media screen and (max-width: 1000px) {
  .p-items_expanded__list > li {
    margin-bottom: 30px;
  }
}

.p-items_expanded__list > li:last-child {
  margin-bottom: 0;
}

.p-items_expanded__after__input {
  margin-bottom: 30px;
}

.p-nav_child_list {
  font-size: 13px;
  font-weight: 500;
}

@media screen and (min-width: 1001px) {
  .p-nav_child_list {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .p-nav_child_list {
    padding: 25px 0 15px 15px;
    font-size: 12px;
  }
}

.p-nav_child_list > li {
  margin-bottom: 15px;
}

@media screen and (max-width: 1000px) {
  .p-nav_child_list > li {
    margin-bottom: 30px;
  }
}

.p-nav_child_list > li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .js-tf_pc {
    display: none;
  }
}

@media screen and (min-width: 841px) {
  .js-tf_sp {
    display: none;
  }
}

.p-nav .js-tf_sp {
  display: block;
}

@media screen and (min-width: 1001px) {
  .p-nav .js-tf_sp {
    display: none;
  }
}

.p-history_detail__main {
  margin-bottom: 100px;
}

.p-history_detail__output {
  margin-bottom: 200px;
}

@media screen and (max-width: 840px) {
  .p-history_detail__output {
    margin-bottom: 120px;
  }
}

.p-history_detail_table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0;
}

@media screen and (max-width: 840px) {
  .p-history_detail_table__tr {
    display: block;
    margin-bottom: 10px;
    padding: 20px 20px 10px;
  }
  .p-history_detail_table__tr:last-child {
    margin-bottom: 0;
  }
}

.p-history_detail_table__tr:nth-child(1) {
  background-color: #9EB091;
  color: #414141;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .p-history_detail_table__tr:nth-child(1) {
    display: none;
  }
}

@media screen and (min-width: 841px) {
  .p-history_detail_table__tr:nth-child(2) {
    padding: 30px 0 15px;
  }
}

.p-history_detail_table__wrapper {
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .p-history_detail_table__wrapper {
    text-align: left;
    padding-left: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #CECECE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-history_detail_table__wrapper:nth-child(1) {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 0;
  }
}

@media screen and (min-width: 841px) {
  .p-history_detail_table__wrapper:nth-child(1) {
    width: 40%;
    text-align: left;
  }
  .p-history_detail_table__wrapper:nth-child(2) {
    width: 12%;
  }
  .p-history_detail_table__wrapper:nth-child(3) {
    width: 12%;
  }
  .p-history_detail_table__wrapper:nth-child(4) {
    width: 12%;
  }
  .p-history_detail_table__wrapper:nth-child(5) {
    width: 12%;
  }
  .p-history_detail_table__wrapper:nth-child(6) {
    width: 12%;
  }
}

@media screen and (max-width: 840px) {
  .p-history_detail_table__text {
    margin-left: auto;
  }
}

.p-history_detail_result {
  max-width: 280px;
  margin-left: auto;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-history_detail_result__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  margin-bottom: 20px;
}

.p-history_detail_result__wrapper.__final {
  font-weight: bold;
}

.p-history_detail_result__wrapper:last-child {
  margin-bottom: 0;
}

.p-history_detail_result__ttl {
  width: 90px;
}

.p-history_detail_result__text {
  width: calc(100% - 90px);
}

.p-history_detail_result__text > .__big {
  font-size: 20px;
}

.p-history_detail_table {
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CECECE;
}

@media screen and (min-width: 841px) {
  .p-history_detail_table__ttl {
    display: none;
  }
}

.p-history_detail_result {
  font-size: 14px;
}

.p-history_detail__other {
  margin-bottom: 100px;
}

@media screen and (max-width: 840px) {
  .p-history_detail__other {
    margin-bottom: 70px;
  }
}

.p-receipt_atena {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  padding: 30px 0;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-receipt_atena {
    margin-bottom: 50px;
    padding: 30px 20px;
  }
}

.p-receipt_atena__ttl {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 900;
}

@media screen and (max-width: 840px) {
  .p-receipt_atena__ttl {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.p-receipt_atena__wrapper {
  width: 65%;
  font-size: 14px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  .p-receipt_atena__wrapper {
    width: 100%;
    font-size: 13px;
  }
}

.p-receipt_atena__item {
  margin-bottom: 35px;
}

@media screen and (max-width: 840px) {
  .p-receipt_atena__item {
    margin-bottom: 25px;
  }
}

.p-receipt_atena__item:last-child {
  margin-bottom: 0;
}

.p-hold__wrapper {
  margin-bottom: 150px;
}

@media screen and (max-width: 840px) {
  .p-hold__wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
}

.p-hold__wrapper__wrapper {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #CECECE;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 840px) {
  .p-hold__wrapper__wrapper {
    margin: 0 auto 40px;
    border-bottom: 0;
  }
}

.p-hold__img {
  width: 160px;
  background-color: #ccc;
}

@media screen and (max-width: 840px) {
  .p-hold__img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
  }
}

.p-hold__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.p-hold__texts {
  width: calc((100% - 160px));
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 17px;
}

@media screen and (max-width: 840px) {
  .p-hold__texts {
    width: 100%;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 280px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
}

.p-hold__texts__wrapper {
  position: relative;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__wrapper {
    text-align: left;
  }
}

.p-close_button {
  position: absolute;
  top: -17px;
  right: 0;
}

@media screen and (max-width: 840px) {
  .p-close_button {
    top: 0;
  }
}

.p-hold__texts__date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 23px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__date {
    font-size: 10px;
    margin-bottom: 10px;
    text-align: left;
  }
}

.p-hold__texts__prime {
  font-size: 20px;
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime {
    font-size: 18px;
  }
}

.p-hold__texts__prime > .__ttl {
  letter-spacing: 0.2em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime > .__ttl {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #CECECE;
  }
}

.p-hold__texts__prime__price {
  margin-left: auto;
  font-size: 12px;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime__price {
    width: 100%;
  }
}

.p-hold__texts__prime__price > .__head {
  display: inline-block;
  margin-right: 40px;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime__price > .__head {
    margin-right: 20px;
  }
}

.p-hold__texts__prime__price > .__no {
  font-size: 20px;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime__price > .__no {
    font-size: 18px;
  }
}

.p-hold__texts__prime__code {
  font-size: 14px;
  margin-bottom: 23px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime__code {
    font-size: 12px;
  }
}

.p-hold__texts__prime__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-hold_detail {
  margin-left: auto;
  font-size: 11px;
}

@media screen and (max-width: 840px) {
  .p-hold_detail {
    width: 100%;
  }
}

.p-hold_detail__button {
  display: inline-block;
  border: 1px solid #707070;
  padding: 7px 8px;
  min-width: 103px;
  text-align: center;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  .p-hold_detail__button {
    width: 100%;
    max-width: 120px;
  }
}

.js_isPc .p-hold_detail__button:hover {
  background-color: #707070;
  color: #fff;
}

@media screen and (max-width: 840px) {
  .p-hold__texts__prime__bottom__tags {
    width: 100%;
    margin-bottom: 10px;
  }
}

.p-receipt_guest {
  border: 1px solid #CECECE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0 35px;
  text-align: left;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-receipt_guest {
    padding: 40px 0 40px;
  }
}

.p-receipt_guest__inner {
  max-width: 830px;
  width: 90%;
  margin: 0 auto;
}

.p-receipt_guest__table {
  font-size: 14px;
}

.p-receipt_guest__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.p-receipt_guest__tr:last-child {
  margin-bottom: 0;
}

.p-receipt_guest__tr.__button {
  margin-top: 30px;
}

.p-receipt_guest__th {
  width: 165px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-receipt_guest__th {
    width: 100%;
    margin-bottom: 10px;
  }
  .p-receipt_guest__tr.__button .p-receipt_guest__th {
    display: none;
  }
}

.p-receipt_guest__td {
  width: calc(100% - 165px);
}

@media screen and (max-width: 840px) {
  .p-receipt_guest__td {
    width: 100%;
  }
}

.p-receipt_guest input {
  background-color: #EFEFEF;
  height: 65px;
  width: 100%;
  border-radius: 5px;
  padding: 0 30px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 840px) {
  .p-receipt_guest input {
    height: 50px;
    padding: 0 20px;
  }
}

.p-receipt_guest input::-webkit-input-placeholder {
  color: #919191;
}

.p-receipt_guest input::-moz-placeholder {
  color: #919191;
}

.p-receipt_guest input:-ms-input-placeholder {
  color: #919191;
}

.p-receipt_guest input::-ms-input-placeholder {
  color: #919191;
}

.p-receipt_guest input::placeholder {
  color: #919191;
}

.p-hold__control {
  margin-bottom: 45px;
  text-align: left;
}

@media screen and (max-width: 840px) {
  .p-hold__control {
    margin-bottom: 35px;
  }
}

.p-hold__control__qty {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 840px) {
  .p-hold__control__qty {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.p-hold__control__qty > .__title {
  margin-right: 45px;
}

@media screen and (max-width: 840px) {
  .p-hold__control__qty > .__title {
    margin-right: 30px;
  }
}

.p-hold__control__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

@media screen and (max-width: 840px) {
  .p-hold__control__sort {
    font-size: 13px;
  }
}

.p-hold__control__sort__ttl {
  position: relative;
  font-weight: bold;
  margin-right: 22px;
}

@media screen and (max-width: 840px) {
  .p-hold__control__sort__ttl {
    margin-right: 15px;
  }
}

.p-sctl_table {
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-sctl_table {
    font-size: 13px;
  }
}

.p-sctl_table_tr {
  padding: 20px 0;
  border-bottom: 1px solid #DEDEDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 840px) {
  .p-sctl_table_tr {
    padding: 20px 0;
  }
}

.p-sctl_table_tr:first-child {
  border-top: 1px solid #DEDEDE;
}

.p-sctl_table_th {
  width: 260px;
  white-space: nowrap;
  padding-left: 20px;
}

@media screen and (max-width: 1200px) {
  .p-sctl_table_th {
    width: 180px;
  }
}

@media screen and (max-width: 840px) {
  .p-sctl_table_th {
    width: 100%;
    padding-left: 0;
  }
}

.p-sctl_table_td {
  width: calc(100% - 260px);
}

@media screen and (max-width: 1200px) {
  .p-sctl_table_td {
    width: calc(100% - 180px);
  }
}

@media screen and (max-width: 840px) {
  .p-sctl_table_td {
    width: 100%;
  }
}

.p-sctl_block__item {
  margin-bottom: 25px;
}

.p-sctl_block__item:last-child {
  margin-bottom: 0;
}

.p-pp_main {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  max-width: 780px;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .p-pp_main {
    font-size: 13px;
    line-height: 2;
  }
}

.p-pp_main__lead {
  margin-bottom: 70px;
}

@media screen and (max-width: 840px) {
  .p-pp_main__lead {
    margin-bottom: 50px;
  }
}

.p-pp_main__item__ttl {
  font-weight: bold;
  margin-bottom: 5px;
}

.p-pp_list > li {
  position: relative;
  padding-left: 1.8em;
}

.p-pp_list > li > .__ttl {
  position: absolute;
  top: 0;
  left: 0;
}

.p-pp_main__item__wrapper > .__text {
  margin-bottom: 30px;
}

.p-pp_main__item__wrapper > .__text.__onlist {
  margin-bottom: 0;
}

.p-pp_main__item__wrapper > .__text:last-child {
  margin-bottom: 0;
}

.p-pp_main__item {
  margin-bottom: 40px;
}

.p-pp_main__item:last-child {
  margin-bottom: 0;
}

.p-news__table {
  font-size: 14px;
  margin-bottom: 110px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-news__table {
    margin-bottom: 70px;
  }
}

.p-news__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 840px) {
  .p-news__tr {
    margin-bottom: 40px;
  }
}

.p-news__tr:last-child {
  margin-bottom: 0;
}

.p-news__item.__date {
  width: 120px;
}

@media screen and (max-width: 840px) {
  .p-news__item.__date {
    width: 105px;
  }
}

.p-news__item.__tag {
  width: 115px;
}

.p-news__item.__text {
  width: calc(100% - 235px);
}

@media screen and (max-width: 840px) {
  .p-news__item.__text {
    width: 100%;
    margin-top: 10px;
  }
}

.p-news_tag {
  background-color: #383838;
  color: #fff;
  display: inline-block;
  padding: 4px 15px;
  font-size: 10px;
}

.p-news__pager {
  max-width: 700px;
  margin: 0 auto 90px;
}

#news_single .p-news__pager {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-news__pager {
    margin-bottom: 115px;
  }
}

.p-news__pager__item {
  position: relative;
  padding: 0 15px;
}

.p-news__pager__item.__current {
  color: #377B4A;
}

.p-news__pager__item.__current:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 15px;
  height: 2px;
  background-color: #377B4A;
  display: inline-block;
}

.p-news__pager__item.__prev {
  margin-right: auto;
  font-size: 12px;
  padding-left: 45px;
}

.p-news__pager__item.__prev:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 21px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/common/pager_arrow_left@2x.png);
}

.p-news__pager__item.__next {
  margin-left: auto;
  font-size: 12px;
  padding-right: 45px;
}

.p-news__pager__item.__next:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 21px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/common/pager_arrow_right@2x.png);
}

@media screen and (max-width: 840px) {
  .p-news__pager__item > .__text {
    display: none;
  }
}

.p-news__pager__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-news_categolies__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-news_categolies__item {
  margin-right: 45px;
  font-size: 15px;
}

@media screen and (max-width: 840px) {
  .p-news_categolies__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.p-news_categolies__item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 840px) {
  .p-news_categolies__item:last-child {
    margin-bottom: 0;
  }
}

.p-post {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin: 0 0 190px 0;
}

@media screen and (max-width: 840px) {
  .p-post {
    margin: 0 0 80px;
  }
}

.p-post img {
  display: inline-block;
  margin: 0 0 25px;
}

.p-post__inner {
  padding: 0 20px;
}

@media screen and (max-width: 840px) {
  .p-post__inner {
    padding: 0;
  }
}

.p-post__texts {
  margin-bottom: 40px;
}

.p-post__texts:last-child {
  margin-bottom: 0;
}

.p-post__wrapper {
  margin-bottom: 75px;
}

@media screen and (max-width: 840px) {
  .p-post__wrapper {
    margin-bottom: 60px;
  }
}

.p-post__wrapper.__img {
  margin-bottom: 50px;
}

.p-post__wrapper:last-child {
  margin-bottom: 0;
}

.p-news_single__inner {
  max-width: 720px;
  margin: 0 0 190px 7%;
}

@media screen and (max-width: 840px) {
  .p-news_single__inner {
    margin: 0 0 120px;
  }
}

.p-news_single__head {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid #D0D0D0;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

.p-news_single__head__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

@media screen and (max-width: 840px) {
  .p-news_single__head__sub {
    margin-bottom: 15px;
  }
}

.p-news_single__head__sub > .__date {
  position: relative;
  display: inline-block;
  margin-right: 30px;
}

@media screen and (max-width: 840px) {
  .p-news_single__head__sub > .__date {
    font-size: 14px;
  }
}

.p-news_single__head__sub > .__date:after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #141414;
  position: absolute;
  top: 0;
  right: -16px;
}

.p-news {
  max-width: 880px;
  margin: 0 auto;
}

.p-news_single__head__ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 840px) {
  .p-news_single__head__ttl {
    font-size: 18px;
  }
}

.p-news_single__head__sub__category {
  font-size: 12px;
}

.p-news__pager__back {
  display: inline-block;
  background-color: #272727;
  color: #fff;
  font-size: 12px;
  padding: 15px 0;
  width: 160px;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .p-news__pager__back {
    width: 140px;
  }
}

.p-bottom_note {
  width: 90%;
  max-width: 295px;
  margin: 0 auto 50px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
}

@media screen and (min-width: 841px) {
  .p-bottom_note {
    display: none;
  }
}

.p-sp_fixed {
  position: fixed;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 61px;
  background-color: #EFEFEF;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px 0 15px;
  font-size: 12px;
  white-space: nowrap;
}

@media screen and (min-width: 1001px) {
  .p-sp_fixed {
    display: none;
  }
}

.p-sp_fixed__inner {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-sp_fixed__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 375px) {
  .p-sp_fixed__wrapper {
    flex-wrap: wrap;
  }
}

.p-sp_fixed__button {
  position: relative;
}

@media screen and (max-width: 375px) {
  .p-sp_fixed__button {
    height: 35px;
  }
}

.p-sp_fixed__button__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}

.p-sp_fixed__button__wrapper > .__item {
  width: 60px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #CECECE;
  margin-right: 6px;
  cursor: pointer;
}

@media screen and (max-width: 375px) {
  .p-sp_fixed__button__wrapper > .__item {
    height: 28px;
  }
}

.p-sp_fixed__button__wrapper > .__item:nth-child(1) {
  width: 80px;
}

.p-sp_fixed__button__wrapper > .__item:last-child {
  margin-right: 0;
}

.p-sp_fixed__button__wrapper > .__item.__active {
  background-color: #377B4A;
}

.p-sp_fixed .p-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-sp_fixed__ttl {
  margin-right: 10px;
}

.p-area_fukidashi {
  position: absolute;
  background-color: #fff;
  width: 152px;
  height: 43px;
  display: inline-block;
  left: 50%;
  top: -18px;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  font-weight: bold;
}

.p-area_fukidashi:not(.is-disable) {
  -webkit-animation: area_fukidashi 600ms ease-out 600ms forwards;
          animation: area_fukidashi 600ms ease-out 600ms forwards;
}

.p-area_fukidashi:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-top: 10px solid #fff;
}

@-webkit-keyframes area_fukidashi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes area_fukidashi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.p-hero_slide_ttl {
  position: absolute;
  left: 153px;
  bottom: 43px;
  background-color: #fff;
  padding: 10px 20px;
  z-index: 5;
  font-weight: bold;
  -webkit-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-hero_slide_ttl {
    left: 4%;
    font-size: 12px;
    padding: 10px 15px;
  }
}

.p-hero.is-sliding .p-hero_slide_ttl {
  opacity: 0;
  bottom: 33px;
}

.p-nav__cr {
  padding: 0 20px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
}

@media screen and (min-width: 1001px) {
  .p-nav__cr {
    display: none;
  }
}

@media screen and (min-width: 841px) {
  .p-nav__bunner,.p-nav__search {
    display:none;
  }
}
.p-nav__bunner,.p-nav__search {
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}

.p-nav__search .p-search {
}
.p-nav__search .p-search .p-search__input,
.p-nav__search .p-search .p-search__icon {
  height:50px;
}
.p-nav__search .p-search .p-search__input,
.p-nav__search .p-search .p-search__input::placeholder {
  width:calc(100% - 50px);
  font-size: 17px;
  letter-spacing: 0;
}
.p-nav__search .p-search .p-search__icon {
  width:50px;
}
.p-nav__search .p-search .p-search__icon > .__icon {
  width:24px;
  height:24px;
}

.p-nav__bunner{
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .p-nav__bunner{
  display: flex;
  justify-content: center;
  align-items: center;
  }
}
@media screen and (max-width: 640px) {
  .p-nav__bunner{
    display:block;
  }
}

.p-nav__bunner .p-nav__bunner__item {
  display:block;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px){
  .p-nav__bunner .p-nav__bunner__item + .p-nav__bunner__item{
    margin-left:10px;
  }
}
@media screen and (max-width: 640px) {
  .p-nav__bunner .p-nav__bunner__item + .p-nav__bunner__item{
    margin-top:29px;
  }
}


.p-nav__sns {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1001px) {
  .p-nav__sns {
    display: none;
  }
}

.p-nav__sns > .__icon {
  margin-right: 40px;
}

.p-nav__sns > .__icon:last-child {
  margin-right: 0;
}

.u-hover {
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

.js_isPc .u-hover:hover {
  opacity: 0.6;
}

.p-desc_for_cancellation {
  margin-bottom: 50px;
}

.p-desc_for_cancellation__ttl {
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  .p-desc_for_cancellation__ttl {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
  }
}

.p-desc_for_cancellation__wrapper {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-desc_for_cancellation__wrapper > p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  .p-desc_for_cancellation__wrapper > p {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

.p-desc_for_cancellation__wrapper > p:last-child {
  margin-bottom: 0;
}

.p-checkbox input {
  display: none;
}

.p-checkbox label {
  position: relative;
  padding-left: 30px;
}

.p-checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #CECECE;
}

.p-checkbox label:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  display: inline-block;
  width: 14px;
  height: 10px;
  background-image: url(../img/common/peke@2x.png);
  background-size: cover;
  opacity: 0;
}

.p-checkbox input:checked + label:after {
  opacity: 1;
}

.p-checkbox.__circle label:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
  width: 17px;
  height: 17px;
}

.p-checkbox.__circle label:after {
  border-radius: 100%;
  background-image: none;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: #377B4A;
}

.p-cart_select__item .p-checkbox {
  margin-bottom: 0px;
  margin-right: 20px;
}

@media screen and (max-width: 840px) {
  .p-cart_select__item .p-checkbox {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.p-cart_select__item .p-checkbox label {
  padding-left: 20px;
}

.p-login__input__td .p-checkbox {
  font-size: 12px;
  white-space: nowrap;
}

@media screen and (max-width: 1350px) {
  .p-login__input__td .p-checkbox {
    font-size: 11px;
  }
}

@media screen and (max-width: 1280px) {
  .p-login__input__td .p-checkbox {
    font-size: 10px;
  }
}

@media screen and (max-width: 1100px) {
  .p-login__input__td .p-checkbox {
    font-size: 12px;
  }
}

.p-popup_bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
  opacity: 0;
  pointer-events: none;
}

.p-popup_bg.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 840px) {
  .p-popup__inner {
    width: 95%;
    max-width: 300px;
  }
}

.p-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  height: 340px;
  z-index: 1000;
  padding: 0 50px;
  text-align: center;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
  opacity: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-popup.__index {
  height: 450px;
}

@media screen and (max-width: 840px) {
  .p-popup {
    padding: 40px 20px 40px;
    height: auto;
  }
}

@media screen and (max-width: 350px) {
  .p-popup {
    padding: 30px 10px 30px;
  }
}

.p-popup.is-active {
  opacity: 1;
  pointer-events: auto;
}

.p-popup > .__close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  cursor: pointer;
}

.p-popup__ttl {
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 1.8;
  white-space: nowrap;
}

.p-popup:not(.__index) .p-popup__ttl {
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-popup__ttl.__big {
  font-size: 24px;
  margin-bottom: 20px;
}

@media screen and (max-width: 840px) {
  .p-popup__ttl.__big {
    font-size: 18px;
  }
}

@media screen and (max-width: 840px) {
  .p-popup__ttl {
    font-size: 14px;
  }
}

.p-popup__text {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 40px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}

.p-popup__text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-popup__text {
    font-size: 13px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.p-popup__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-popup.__index .p-popup__button {
  display: block;
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  .p-popup__button {
    max-width: 300px;
    margin: 0 auto;
  }
}

.p-popup__note {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", ƒƒCƒŠƒI, Meiryo, sans-serif;
}

@media screen and (max-width: 840px) {
  .p-popup__note {
    font-size: 13px;
  }
}

.p-popup__button__item {
  width: 150px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #707070;
  margin-right: 24px;
  cursor: pointer;
}

.p-popup.__index .p-popup__button__item {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 250px;
  height: 70px;
}

@media screen and (max-width: 840px) {
  .p-popup.__index .p-popup__button__item {
    width: 100%;
    max-width: 220px;
    height: 60px;
  }
}

.p-popup.__index .p-popup__button__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  .p-popup__button__item {
    width: calc((100% - 21px)/2);
    margin-right: 20px;
    font-size: 14px;
    height: 40px;
  }
}

.p-popup__button__item.__black {
  background-color: #101010;
  color: #fff;
}

.p-popup__button__item.__green {
  background-color: #3A724A;
  color: #fff;
}

.p-popup__button__item:last-child {
  margin-right: 0;
}

.p-popup__contact {
  position: relative;
  border: 1px solid #CECECE;
  padding: 45px 0 40px;
}

@media screen and (max-width: 840px) {
  .p-popup__contact {
    padding: 35px 0 30px;
  }
}

.p-popup__ttl {
  font-weight: bold;
  letter-spacing: 0.15em;
  text-align: center;
}

.p-popup__contact__ttl {
  position: absolute;
  background-color: #fff;
  padding: 0 25px 0;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 14px;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-popup__contact__ttl {
    font-size: 12px;
  }
}

.p-popup__contact__texts__main {
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media screen and (max-width: 840px) {
  .p-popup__contact__texts__main {
    font-size: 18px;
  }
}

.p-popup__contact__texts__sub {
  font-size: 14px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-popup__contact__texts__sub {
    font-size: 11px;
  }
}

.p-about_main {
  margin-bottom: 175px;
}

@media screen and (max-width: 840px) {
  .p-about_main {
    margin-bottom: 90px;
  }
}

.p-about_main__wrapper__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 90px;
  padding-top: 70px;
}

@media screen and (min-width: 841px) {
  .p-about_main__wrapper__wrapper:nth-child(2) {
    padding-top: 58px;
  }
}

@media screen and (max-width: 840px) {
  .p-about_main__wrapper__wrapper {
    margin-bottom: 60px;
    padding-top: 0;
  }
}

.p-about_main__wrapper__wrapper:last-child {
  margin-bottom: 0;
}

.p-about_main__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
}

@media screen and (min-width: 841px) {
  .p-about_main__wrapper__wrapper:nth-child(2) .p-about_main__img {
    width: 58%;
  }
}

@media screen and (max-width: 840px) {
  .p-about_main__img {
    position: relative;
    width: 100%;
  }
}

.p-about_main__wrapper__wrapper:nth-child(even) .p-about_main__img {
  left: auto;
  right: 0;
}

.p-about_main__texts {
  position: relative;
  z-index: 2;
  background-color: rgba(248, 248, 248, 0.92);
  width: calc(50% + 55px);
  padding: 80px 75px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .p-about_main__texts {
    padding: 70px 50px 50px;
    width: calc(60% + 55px);
  }
}

@media screen and (max-width: 1000px) {
  .p-about_main__texts {
    padding: 70px 40px 50px;
    width: calc(70% + 55px);
  }
}

@media screen and (max-width: 840px) {
  .p-about_main__texts {
    width: 100%;
    padding: 20px 20px 40px;
  }
}

.p-about_main__wrapper__wrapper:nth-child(even) .p-about_main__texts {
  margin-left: 0;
}

.p-about_main__texts__ttl {
  font-size: 26px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 500;
}

@media screen and (max-width: 840px) {
  .p-about_main__texts__ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.p-about_main__texts__text {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 840px) {
  .p-about_main__texts__text {
    font-size: 13px;
  }
}

.p-about_main__texts__text > p {
  margin-bottom: 20px;
  line-height: 2.1;
}

.p-about_main__texts__text > p:last-child {
  margin-bottom: 0;
}

.p-about_commitment__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 840px) {
  .p-about_commitment__wrapper {
    padding: 0;
  }
}

.p-about_commitment__item {
  width: calc((100% - 55px) / 2);
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  .p-about_commitment__item {
    width: 100%;
    margin-bottom: 60px;
  }
  .p-about_commitment__item:last-child {
    margin-bottom: 0;
  }
}

.p-about_commitment__item:nth-child(even) {
  margin-left: auto;
}

.p-about_commitment__item__img {
  margin-bottom: 20px;
}

@media screen and (max-width: 840px) {
  .p-about_commitment__item__img {
    margin-bottom: 15px;
  }
}

.p-about_commitment__item__texts {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 840px) {
  .p-about_commitment__item__texts {
    font-size: 13px;
  }
}

.p-about_commitment__item__texts > .__ttl {
  font-size: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 840px) {
  .p-about_commitment__item__texts > .__ttl {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.p-about_commitment__item__texts > .__text {
  line-height: 2.2;
}

.p-calender {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 290px;
  border: 1px solid #CECECE;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  z-index: 2;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}

.p-calender.is-enable {
  opacity: 1;
  pointer-events: auto;
}

.p-calender__head {
  background-color: #9EB091;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-calender__head > .__year {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.p-calender__head > .__month {
  font-size: 16px;
  letter-spacing: 0.2em;
}

.p-calender_button {
  position: relative;
  font-size: 13px;
  color: #414141;
  background-color: #fff;
  padding: 7px 17px;
}

.p-calender_button:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #484848;
}

.p-calender__wrapper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-calender__wrapper__wrapper.__youbi {
  font-weight: bold;
}

.p-calender__item {
  width: calc((100%/7));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #CECECE;
  border-top: 1px solid #CECECE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
}

.p-calender__item.__current {
  background-color: #377B4A;
  color: #fff;
}

.p-calender__item.__clickable {
  cursor: pointer;
}

.p-calender__item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.p-calender__wrapper__wrapper.__youbi .p-calender__item {
  border: 0;
}

.p-calender__wrapper__wrapper:last-child .p-calender__item {
  border-bottom: 1px solid #CECECE;
}

.p-calender__wrapper__wrapper:last-child .p-calender__item.__empty {
  border-top: 1px solid #CECECE;
  border-bottom: 0;
}

.p-calender__item:nth-child(1) {
  border-left: 1px solid #CECECE;
}

.p-calender__item.__disable {
  color: #CECECE;
}

.p-calender__item.__empty {
  border: 0;
}

.p-calender__item.__start {
  border-left: 1px solid #CECECE;
}

.p-date_input {
  position: relative;
  width: 230px;
  white-space: nowrap;
  border: 1px solid #CECECE;
  font-size: 16px;
  padding: 12px 0 12px 25px;
  letter-spacing: 0.1em;
}

.p-date_input > .__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20px;
}

input[type="date"] {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.p-qty {
  position: relative;
}

.p-qty > .__arrow {
  position: absolute;
  top: calc(50% - 9px);
  right: 10px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  border-left: 4px solid transparent;
  border-top: 6px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #000;
  cursor: pointer;
}

.p-cart_detail .p-qty > .__arrow {
  top: calc(50% - 7px);
  border-left: 3px solid transparent;
  border-top: 5px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 5px solid #000;
}

.p-qty > .__arrow.__down {
  top: calc(50% + 9px);
  border-bottom: 6px solid transparent;
  border-top: 6px solid #000;
}

.p-cart_detail .p-qty > .__arrow.__down {
  border-bottom: 5px solid transparent;
  border-top: 5px solid #000;
  top: calc(50% + 7px);
}

.p-qty__input {
  width: 91px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 5px;
  padding-left: 25px;
}

.p-cart_detail .p-qty__input {
  border: 1px solid #CECECE;
  border-radius: 0;
}

.p-noshi_table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  line-height: 1.5;
}

.p-noshi_table th {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #ccc;
  vertical-align: middle;
  padding: 10px;
  letter-spacing: 0.1em;
}

.p-noshi_table th:nth-child(1) {
  width: 13%;
}

.p-noshi_table th:nth-child(2) {
  width: 29%;
}

.p-noshi_table th:nth-child(3) {
  width: 29%;
}

.p-noshi_table th:nth-child(4) {
  width: 29%;
}

.p-noshi_table td {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 10px;
}

.p-noshi_table td:nth-child(1) {
  width: 13%;
}

.p-noshi_table td:nth-child(2) {
  width: 29%;
}

.p-noshi_table td:nth-child(3) {
  width: 29%;
}

.p-noshi_table td:nth-child(4) {
  width: 29%;
}

.p-noshi_table td .p-noshi_table__sep {
  text-align: left;
}

.p-noshi_table td .p-noshi_table__sep__wrapper {
  padding-left: 10px;
  padding-right: 10px;
}

.p-noshi_table tr {
  border-bottom: 1px solid #ccc;
}

.p-noshi_table__sep {
  width: 100%;
  text-align: center;
}

.p-noshi_table__sep__wrapper {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.p-noshi_table__sep__wrapper:last-child {
  border-bottom: 0;
}

.p-page_first_desc {
  text-align: center;
  margin-bottom: 40px;
}

#receipt .p-page_first_desc {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  #receipt .p-page_first_desc {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 840px) {
  .p-page_first_desc {
    margin-bottom: 40px;
  }
}

.p-page_first_desc__main {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 840px) {
  .p-page_first_desc__main {
    font-size: 18px;
  }
}

.p-page_first_desc__sub {
  line-height: 1.9;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

@media screen and (max-width: 840px) {
  .p-page_first_desc__sub {
    font-size: 13px;
    text-align: left;
  }
}

.p-guide_noshi_table {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  font-weight: bold;
  margin-top: 35px;
}

@media screen and (max-width: 840px) {
  .p-guide_noshi_table {
    font-size: 12px;
  }
}

.p-payment__method .p-guide_noshi_table {
  margin-top: -10px;
}

@media screen and (max-width: 840px) {
  .p-payment__method .p-guide_noshi_table {
    margin-top: 0;
  }
}

.p-guide_noshi_table__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #707070;
}

.p-guide_noshi_table__tr:last-child {
  border-bottom: 0;
}

.p-guide_noshi_table__th {
  width: 120px;
  background-color: #F5F5F5;
  padding: 20px 10px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 840px) {
  .p-guide_noshi_table__th {
    width: 100%;
    border-bottom: 1px solid #707070;
    padding: 10px 10px;
    font-size: 14px;
  }
}

.p-guide_noshi_table__td {
  width: calc(100% - 120px);
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 840px) {
  .p-guide_noshi_table__td {
    width: 100%;
    padding: 15px 20px;
  }
}

.p-noshi_variation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-noshi_variation__item {
  width: calc((100% - 52px)/4);
  margin-right: 17px;
}

@media screen and (max-width: 840px) {
  .p-noshi_variation__item {
    width: calc((100% - 21px)/2);
    margin-right: 0;
    margin-bottom: 40px;
  }
  .p-noshi_variation__item:nth-child(even) {
    margin-left: auto;
  }
}

.p-noshi_variation__item:nth-child(4n) {
  margin-right: 0;
}

.p-noshi_variation__item__img {
  margin-bottom: 20px;
}

.p-noshi_variation__item__texts > .__main {
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 840px) {
  .p-noshi_variation__item__texts > .__main {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.p-noshi_variation__item__texts > .__sub {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 840px) {
  .p-noshi_variation__item__texts > .__sub {
    font-size: 13px;
  }
}

.p-guide_noshi_table__list__wrapper {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-guide_noshi_table__list__wrapper:last-child {
  margin-bottom: 0;
}

.p-cart_delively_calender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 840px) {
  .p-cart_delively_calender {
    display: block;
  }
}

.p-cart_delively_calender__note {
  font-size: 12px;
  padding-left: 10px;
  line-height: 1.6;
}

@media screen and (max-width: 840px) {
  .p-cart_delively_calender__note {
    padding-left: 0;
    margin-top: 10px;
  }
}

.js-select_color_change.is-default {
  color: #B4B4B4;
}

.js-select_color_change option {
  color: #414141;
}

.js-ajax_zip {
  cursor: pointer;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.p-notice_circle {
  position: absolute;
  z-index: 2;
  top: -9px;
  right: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 17px;
  height: 17px;
  background-color: #AF0000;
  color: #fff;
  border-radius: 100%;
  font-size: 10px;
  font-weight: bold;
  pointer-events: none;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", ƒƒCƒŠƒI, Meiryo, sans-serif;
}

.p-footer_zenkoku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

@media screen and (max-width: 1000px) {
  .p-footer_zenkoku {
    margin-bottom: 45px;
  }
}

.p-footer_zenkoku__wrapper {
  position: relative;
  width: calc((100% - 1px)/ 3);
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  .p-footer_zenkoku__wrapper {
    padding: 0 30px;
  }
}

.p-footer_zenkoku__wrapper > .__title {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .p-footer_zenkoku__wrapper > .__title {
    margin-bottom: 20px;
  }
}

.p-footer_zenkoku__wrapper:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  background-color: rgba(114, 114, 114, 0.55);
  top: 48px;
  bottom: 40px;
  right: 0;
}

.p-footer_zenkoku__wrapper:last-child:after {
  display: none;
}

.p-footer_zenkoku__texts {
  padding-top: 10px;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", ƒƒCƒŠƒI, Meiryo, sans-serif;
}

.p-footer_zenkoku__texts__item {
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 15px;
}

.p-footer_zenkoku__texts__item:last-child {
  margin-bottom: 0;
}

.p-qty.__design2 {
  position: relative;
  display: inline-block;
  border-right: 1px solid #707070;
}

@media screen and (max-width: 840px) {
  .p-qty.__design2 {
    right: 14px;
  }
}

.p-qty.__design2:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -30px;
  border: 1px solid #707070;
}

.p-qty.__design2 .p-qty__input {
  position: relative;
  z-index: 2;
  height: 30px;
  border-radius: 0;
  padding: 0;
  text-align: center;
  border: 0;
}

@media screen and (max-width: 840px) {
  .p-qty.__design2 .p-qty__input {
    width: 80px;
  }
}

.p-qty.__design2 > .__arrow {
  right: -18px;
  z-index: 5;
  top: calc(50% - 8px);
}

.p-qty.__design2 > .__arrow.__down {
  top: calc(50% + 10px);
}

/*** ‘S”Ê ***/

div#splashMessage{
  display: none;
  height:auto;
  width: auto;
  box-shadow:0px 0px 40px;
  background-color: #fafafa;
  padding: 12px 20px;
  border-radius: 16px;
  opacity:0;
  position: fixed;
  top:-100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 24px;
  color: #000000;
  margin: auto auto;
  z-index: 300001;
  white-space: nowrap;
}

.display__none{
  display: none;
}

.p-history__pager__link{
  color: inherit;
}

/*** ¤•iƒ^ƒO ***/
.p-tags > .__item.__purple,
.p-tag.__purple {
  background-color: #913982;
}
.p-tags > .__item.__pink,
.p-tag.__pink {
  background-color: #FF5983;
}
.p-tags > .__item.__blue,
.p-tag.__blue {
  background-color: #388DD1;
}
.p-tags > .__item.__orange,
.p-tag.__orange  {
  background-color: #F5974A;
}
.p-tags > .__item.__none,
.p-tag.__none  {
  background: none;
}
/********************************/

.p-passward_reset__input__input{
  position: relative;
}

.__hidden{
  display: none;
}

/*** ƒGƒ‰[ƒƒbƒZ[ƒW•\Ž¦—pƒfƒUƒCƒ“ ***/
.__error{
  color: #ff7676;
  white-space: normal;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

#cart .p-cart .__error{
  top: 17px;
}
#history_detail .__error{
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  font-size: 14px;
  white-space: nowrap;
}

.__error
{
  position: absolute;
  white-space: nowrap;
  left: 0px;
  top: -46px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
#single .__error,
#login .__error,
.p-receipt_guest__td .__error{
  position: initial;
  -webkit-transform: initial;
}
#cart_delivery .__error{
  top: auto;
  transform: translateY(-23px);
}
.__error-add2{
  top : 25px;
}
.__tr_error{
  color: #ff7676;
  white-space: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: "Ÿà–¾’©", "Yu Mincho", "Ÿà–¾’©‘Ì", YuMincho, "ryumin_l_subset", "ƒqƒ‰ƒMƒm–¾’© ProN W3", "HiraMinProN-W3", "HG–¾’©E", "‚l‚r ‚o–¾’©", "MS PMincho", "MS –¾’©", serif;
}

/* ƒ[ƒ‹Šm”F—p’²® */
.__error.__mailconfirm{
  top: 23px;
}

/* ‚²—˜—p‹K–ñƒ`ƒFƒbƒNƒ{ƒbƒNƒXƒGƒ‰[•\Ž¦—p */
.p-terms_of_use__confirm,
.p-login__input__td{
  position: relative;
}
@media screen and (max-width: 841px) {
  .__error{
    position: initial;
    font-size: 13px;
    -webkit-transform: initial;
    padding: 3px 0px;
  }  
  .p-terms_of_use__confirm > .__error{
    position: absolute;
    left: 0px;
    top: -30px;
  }
  #login .__error{
    position: initial;
    -webkit-transform: initial;
    text-align: center;
  }
  #cart_delivery .__error{
    transform: translateY(0px);
  }
}

/*************************************/

@media screen and (min-width: 841px) {
  .p-history_detail_table__wrapper:nth-child(1) {
    width: 52%;
    text-align: left;
  }
}

.p-cart_receive {
  margin-bottom: 115px;
}

@media screen and (max-width: 840px) {
  .p-cart_receive {
    margin-bottom: 75px;
  }
}

.p-cart__wrapper.__destination {
  margin-bottom: 150px;
}

@media screen and (max-width: 1000px) {
  #recieve_hokuriku .p-cart_destination__tr {
    padding: 25px 25px 25px 55px;
  }
  #cart_zenkoku .p-cart_destination__tr {
    padding: 25px 25px 25px 55px;
  }
}

#recieve_hokuriku .p-cart_date .p-cart_date__th {
  font-size: 16px;
}
#cart_zenkoku .p-cart_date .p-cart_date__th {
  font-size: 16px;
}

/* ƒQƒXƒg‰ïˆõ“o˜^ƒtƒŠƒKƒi—“Œ‹‡—p */
.p-form input.__join{
  width: 520px;
}

/* ‚¨‹C‚É“ü‚è¤•i‰æ‘œ‚ÌC³—p */
.p-hold__img{
  background-size: contain;
}

/* íœƒ{ƒ^ƒ“–³‚µƒJ[ƒgƒfƒUƒCƒ“‚ÌC³—p */
@media screen and (min-width: 841px) {
  /* ƒJ[ƒg¤•i */
  .p-cart_detail__tr.__first .p-cart_detail__item.__order{
    width: calc((100% - 205px)*0.60);
  }
  .p-cart_detail__tr.__main .p-cart_detail__item.__order{
    width: calc((100% - 205px)*0.60);
  }
}

/* ƒXƒ}ƒzƒTƒCƒYƒZƒŒƒNƒgƒ{ƒbƒNƒX–îˆóC³ */
@media screen and (max-width: 500px) {
  .p-form__tr.__select .p-form__td:after{
    top: calc(50% -6px);
  }
}

/*** single ***/
/* ƒZƒŒƒNƒgƒ{ƒbƒNƒX‚Ì•\Ž¦F•ÏX */
.js-select_color_change.is-default{
  color: #414141;
}

/*** cart_delivery ***/
.p-cart_date__td select > option:disabled{
  background: #cecece;
}

#cart_delivery .p-cart_date__th{
  display: flex;
} 

@media screen and (max-width: 840px){
  #cart_delivery .p-cart_date__th{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  } 
}

@media screen and (min-width: 840px){
  #cart_delivery .p-cart_date__th{
    position: relative;
    width: 200px;
  } 
  #cart_delivery .p-cart_date__td {
    width: calc(100% - 200px);
  }
  #cart_delivery .p-cart_date__th > .p-require{
    right: 20px;
    top: 7px;
  }
}

.p-cart_date__note {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}

@media screen and (max-width: 840px) {
  .p-cart_date__note {
    font-size: 13px;
  }
}

/*** cart_payment ***/

/* ƒNƒŒƒWƒbƒgƒJ[ƒh”Ô† */
.p-payment .p-button.p-card_input {
  width: 100%;
  margin: -25px 235px;
  max-width: 280px;
  padding: 13px 0;
  font-size: 14px;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, sans-serif;
}
.p-payment .p-button.p-card_input.success,
.p-button.use_point.success{
  background-color: #377b4a;
}
.p-payment .p-button.p-card_input:hover{
  color: #000;
}
.p-payment .p-button.p-card_input.success:hover,
.p-button.use_point.success:hover{
  background-color: #fff;
}
@media screen and (max-width: 840px){
  .p-payment .p-button.p-card_input  {
      margin: 0 auto 0 auto;
      padding: 20px 0;
      max-width: 200px;
  }
}
.p_pre{
  white-space: pre-wrap ;    
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Yu Gothic", "ŸàƒSƒVƒbƒN Medium", YuGothic, "ƒqƒ‰ƒMƒmŠpƒS Pro", "Hiragino Kaku Gothic Pro", ƒƒCƒŠƒI, Meiryo, sans-serif;
}

/* ƒ_ƒCƒAƒƒO‚Ìƒ^ƒCƒgƒ‹Ü‚è•Ô‚µÝ’è */
.p-popup__ttl.__big{
  white-space: normal;
}

.p-cart_date__tr.__nopad{
  margin-bottom: 0px;
}

/*** cart ***/
.p-cart_lead__ttl.__attention{
  color:red;
}

/*** cart_payment ***/

.p-payment__method__td .p-check{
  margin-top: 10px;
}
@media screen and (max-width: 840px){
  .p-payment__method__td .p-check {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
}

.p-page_sec_ttl.__h3.pay-store{
  margin-bottom: 55px;
}
#cart_payment .p-cart_date__tr{
  position: relative;
}
#cart_payment .p-cart_date__tr .__error{
  top: -70px;
}

/*** single ***/
.p-product_detail.__split{
  width: 100%;
}
.p-product_detail{
  width: 100%;
}

/*** password_initialize ***/

.p-passward_initialize_text {
  font-size: 14px;
  color:red;
  font-weight: bold;
  line-height: 2.2;
  margin-bottom: 35px;
}


.p-product_review {
  width:100%;
  max-width:880px;
}
.p-reviewlist {
  width:100%;
  max-width: 880px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #ccc;
}

.p-reviewlist_data {
  overflow: hidden;
  zoom: 1;
  margin-bottom: 10px;
}

.p-reviewlist_commnet {
  overflow: hidden;
  zoom: 1;
  /* word-wrap: break-word; */
}

.reviewcomment {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.review_poster li {
  float: left;
  margin-left: 10px;
}
.review_poster li {
  list-style: none;
}

.star5_rating{
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #CCCCCC; /* ?????? ?????? */
  /*font-size: 30px; ??????? ?????? */
}

.star5_rating:before, .star5_rating:after{
  content: 'ššššš';
}

.star5_rating:after{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ffcf32; /* ??????? ?????? */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* ?5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* ?4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* ?4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* ?3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* ?3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* ?2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* ?2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* ?1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* ?1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* ?0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* ?0 */

.p-reviewlist_commentdate{
  margin: 0 0 0 auto;
  /* height: 100px; */
  width:  100px;
}

.p-reviewlist_wrapper{
  padding : 0 10px;
}


@media screen and (max-width: 840px) {
  .p-passward_initialize_text {
    font-size: 13px;
  }
}




