@charset "UTF-8";

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

/*要素のフォントサイズやマージン・パディングをリセットしています*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/

body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/

/*nav ul {
    list-style:none;
}*/

ol,
ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/

blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/

del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/

input,
select {
  vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/

img {
  vertical-align: top;
  /* font-size: 0; */
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.bg-white {
  background: #fff;
}

.bg-red {
  background: #de1122;
}

.bg-beige {
  background: #fcf7f0;
}

.bg-pink {
  background: #fef8f8;
}

.bg-gray {
  background: #8f8f8f;
}

.bg-light-gray {
  background: #f1f1f1;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #323232 !important;
}

.color-red {
  color: #de1122 !important;
}

.color-gold {
  color: #9a854a !important;
}

.color-silver {
  color: #7b7f82 !important;
}

.sofia {
  font-family: sofia-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sofia.bold {
  font-weight: 600;
}

.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif !important;
}

.fxw-w {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.xs-font-size {
  font-size: 10px;
}

.small-font-size,
.fs-12 {
  font-size: 12px;
}

.base-font-size,
.fs-14 {
  font-size: 14px;
}

.fs-16r {
  font-size: 1.6rem;
}

.bold {
  font-weight: bold;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #323232 !important;
}

.color-red {
  color: #de1122 !important;
}

.ls-01 {
  letter-spacing: 0.01em;
}

.ls-11 {
  letter-spacing: 0.11em;
}

.lh-20 {
  line-height: 2;
}

.lh-15 {
  line-height: 1.5;
}

.border-col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.border-col-3 li {
  /* width: 32%; */
  width: 49% !important;
}

.border-col-3 li .border-col-item {
  padding: 5px 5px 5px;
  font-size: 10px;
  font-weight: bold;
  height: 100%;
  text-align: center;
  border: 2px solid #de1122;
  border-radius: 4px;
}

/* Slider */

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */

@font-face {
  font-family: "slick";
  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");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: 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: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.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 {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

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

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

body {
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  	'Hiragino Sans', 'Noto Sans CJK JP', 'Original Yu Gothic', 'Yu Gothic',
  	sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
  	'Noto Sans Emoji';*/
  font-family: "Noto Sans JP", sans-serif;
  color: #323232;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.6;
}

.only-pc {
  display: block !important;
}

.only-sp {
  display: none !important;
}

.pc-none {
  display: none !important;
}

.sp-none {
  display: block !important;
}

@media screen and (max-width: 960px) {
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block !important;
  }
  .sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.wrap-inner {
  overflow: hidden;
}

.d-n {
  display: none;
}

.d-i {
  display: inline;
}

.d-b {
  display: block;
}

.d-ib {
  display: inline-block;
}

.d-tb {
  display: table;
}

.d-tbc {
  display: table-cell;
}

.d-tbr {
  display: table-row;
}

.d-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-if {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.display-t {
  display: table;
  width: 100%;
}

.t-layout-f {
  table-layout: fixed;
}

.jc-sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.jc-sa {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.jc-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ai-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.va-t {
  vertical-align: top;
}

.va-m {
  vertical-align: middle;
}

.pos-a {
  position: absolute;
}

.pos-r {
  position: relative;
}

.pos-f {
  position: fixed;
}

.sticky {
  position: sticky;
  z-index: 1000;
}

.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.ov-h {
  overflow: hidden;
}

.m-0 {
  margin: 0px !important;
}

.m-2 {
  margin: 2px !important;
}

.m-4 {
  margin: 4px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-12 {
  margin: 12px !important;
}

.m-16 {
  margin: 16px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-24 {
  margin: 24px !important;
}

.m-32 {
  margin: 32px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-52 {
  margin: 52px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-80 {
  margin: 80px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-52 {
  margin-top: 52px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-52 {
  margin-right: 52px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-52 {
  margin-left: 52px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mlr-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.mlr-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}

.mlr-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mlr-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.mlr-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mlr-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.mlr-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.mlr-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mlr-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.mlr-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.mlr-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mlr-52 {
  margin-left: 52px !important;
  margin-right: 52px !important;
}

.mlr-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.mlr-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.mtb-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.mtb-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.mtb-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mtb-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mtb-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mtb-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mtb-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mtb-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mtb-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mtb-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.mtb-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mtb-52 {
  margin-top: 52px !important;
  margin-bottom: 52px !important;
}

.mtb-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mtb-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.p-0 {
  padding: 0px !important;
}

.p-2 {
  padding: 2px !important;
}

.p-4 {
  padding: 4px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-12 {
  padding: 12px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-24 {
  padding: 24px !important;
}

.p-32 {
  padding: 32px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-52 {
  padding: 52px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-80 {
  padding: 80px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-52 {
  padding-top: 52px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-52 {
  padding-right: 52px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-52 {
  padding-bottom: 52px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-52 {
  padding-left: 52px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.plr-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.plr-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.plr-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.plr-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.plr-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.plr-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.plr-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.plr-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.plr-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.plr-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.plr-52 {
  padding-left: 52px !important;
  padding-right: 52px !important;
}

.plr-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.plr-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.ptb-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.ptb-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.ptb-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.ptb-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.ptb-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.ptb-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.ptb-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.ptb-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ptb-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.ptb-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.ptb-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.ptb-52 {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.ptb-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.ptb-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

@media (max-width: 768px) {
  .w-20 {
    width: 25%;
  }
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

@media (max-width: 768px) {
  .w-30 {
    width: 25%;
  }
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

@media (max-width: 768px) {
  .w-40 {
    width: 35%;
  }
}

.w-45 {
  width: 45%;
}

.w-48 {
  width: 48%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-88 {
  width: 88px;
}

.w-150 {
  width: 150px;
}

.w-15per {
  width: 15%;
}

.w-20per {
  width: 20%;
}

.w-25per {
  width: 25%;
}

.w-30per {
  width: 30%;
}

.w-40per {
  width: 40%;
}

.w-45per {
  width: 45%;
}

.w-50per {
  width: 50%;
}

.w-60per {
  width: 60%;
}

.w-65per {
  width: 65%;
}

.w-70per {
  width: 70%;
}

.w-80per {
  width: 80%;
}

.w-85per {
  width: 85%;
}

.w-90per {
  width: 90%;
}

.w-95per {
  width: 95%;
}

.w-100per {
  width: 100%;
}

.mw-100per {
  max-width: 100%;
}

.op-0per {
  opacity: 0;
}

.op-10per {
  opacity: 0.1;
}

.op-20per {
  opacity: 0.2;
}

.op-40per {
  opacity: 0.4;
}

.op-50per {
  opacity: 0.5;
}

.op-60per {
  opacity: 0.6;
}

.op-80per {
  opacity: 0.8;
}

.op-100per {
  opacity: 1;
}

.bd-n {
  border: none;
}

.bdrs-4 {
  border-radius: 4px;
}

.bdrs-50per {
  border-radius: 50%;
}

.bdrs-12 {
  border-radius: 12px;
}

.bd-rs-48 {
  border-radius: 48px;
}

.border-r-circle {
  border-radius: 100px;
}

.bd-t {
  border-top: 1px solid #323232;
}

.bd-t:last-child {
  border-bottom: 1px solid #323232;
}

.bd-b {
  border-bottom: 1px solid #323232;
}

.list-style-position-i {
  list-style-position: inside;
}

.pl1em-ti1em {
  padding-left: 1em;
  text-indent: -1em;
}

.v-align-middle {
  vertical-align: middle;
}

.z-idx-0 {
  z-index: 0;
}

.z-idx-1 {
  z-index: 1;
}

.z-idx-2 {
  z-index: 2;
}

.z-idx-3 {
  z-index: 3;
}

.z-idx-4 {
  z-index: 4;
}

.z-idx-5 {
  z-index: 5;
}

.z-idx-10 {
  z-index: 10;
}

.z-idx-20 {
  z-index: 20;
}

.z-idx-30 {
  z-index: 30;
}

.z-idx-50 {
  z-index: 50;
}

.z-idx-100 {
  z-index: 100;
}

.z-idx-9999 {
  z-index: 9999;
}

.touch-action-m {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.scale-tr-72 {
  font-size: 1.6rem;
  line-height: 1;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: scale(0.72);
  -ms-transform: scale(0.72);
  transform: scale(0.72);
}

.cur-p {
  cursor: pointer;
}

.cur-p:hover {
  opacity: 0.8;
}

.cur-d {
  cursor: default;
}

.flex.-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header {
  position: sticky;
  /* position: fixed; */
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  z-index: 100;
}

@media screen and (min-width: 1000px) {
  header .header-inner {
    width: 1121px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  header .header-inner {
    width: 99vw;
    padding: 0 20px;
  }
}

header .header-inner .header-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 21px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header-inner .header-pc img {
  width: 247px;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  header .header-inner .header-pc img {
    width: 200px;
  }
}

header .header-inner .header-pc ul li {
  align-self: center;
}

header .header-inner .header-pc ul li + li {
  margin-left: 27px;
}

header .header-inner .header-pc ul li:nth-of-type(1) a:before {
  width: 21px;
  margin-right: 8px;
  vertical-align: middle;
  content: url("../images/icon/menu-icon01.svg");
  display: inline-block;
}

header .header-inner .header-pc ul li:nth-of-type(2) a:before {
  width: 19px;
  margin-right: 8px;
  vertical-align: middle;
  content: url("../images/icon/menu-icon02.svg");
  display: inline-block;
}

header .header-inner .header-pc ul li:nth-of-type(3) a:before {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
  content: url("../images/icon/menu-icon06.svg");
  display: inline-block;
}

/* 
header .header-inner .header-pc ul li:nth-of-type(4) a:before {
    width: 14px;
    margin-right: 8px;
    vertical-align: middle;
    content: url('../images/icon/menu-icon04.svg');
} */

.lang_dropbtn:before {
  width: 14px;
  margin-right: 8px;
  vertical-align: middle;
  content: url("../images/icon/menu-icon08.svg");
  display: inline-block;
}

header .header-inner .header-pc ul li:nth-of-type(5) a:before {
  width: 14px;
  margin-right: 8px;
  vertical-align: middle;
  content: url("../images/icon/menu-icon09.svg");
  transform: scale(1.5);
  position: absolute;
}

header .header-inner .header-sp {
  padding: 16px 16px 16px 24px;
}

header .header-inner .header-sp .header-logo-sp {
  width: 115px;
}

header .header-inner .header-sp .menu img {
  display: block;
  vertical-align: middle;
}

footer {
  margin-top: 60px;
}

footer .section-inner {
  padding: 14px 0 27px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner {
    padding: 60px 0 30px;
  }
}

footer .section-inner .footer-txt {
  font-size: 8px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-txt {
    font-size: 14px;
  }
}

footer .section-inner img.footer-logo {
  width: 199px;
  margin-top: 4px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner img.footer-logo {
    width: 334px;
  }
}

footer .section-inner ul.footer-nav {
  width: auto;
  margin: 20px 0 8px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner ul.footer-nav {
    max-width: none;
    margin: 37px 0 27px;
  }
}

footer .section-inner ul.footer-nav li {
  display: inline-block;
  margin: 8px 0 0;
  padding: 0 8px;
  line-height: 1;
  border-right: 1px solid #323232;
}

footer .section-inner ul.footer-nav li:first-of-type {
  border-left: 1px solid #323232;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  footer .section-inner ul.footer-nav li {
    padding: 0 4px;
  }
}

@media screen and (min-width: 1000px) {
  footer .section-inner ul.footer-nav li {
    margin: 16px 0 0;
    padding: 0 16px;
  }
  footer .section-inner ul.footer-nav li:first-of-type {
    border-left: 1px solid #323232;
  }
}

footer .section-inner ul.footer-nav li a {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner ul.footer-nav li a {
    font-size: 14px;
  }
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-recruit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

footer .section-inner .footer-recruit a {
  display: inline-block;
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-recruit a + a {
    margin-left: 20px;
  }
}

@media screen and (max-width: 500px) {
  footer .section-inner .footer-recruit a + a {
    margin-top: 4px;
  }
}

footer .section-inner .footer-recruit .recruit-office:before {
  width: 9px;
  padding: 0 12px 0 5px;
  vertical-align: sub;
  content: url("../images/icon/recruit-office-icon.svg");
}

footer .section-inner .footer-recruit .recruit-shop:before {
  width: 19px;
  padding-right: 8px;
  vertical-align: sub;
  content: url("../images/icon/recruit-shop-icon.svg");
}

footer .section-inner .footer-shop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop ul {
    margin-top: 24px;
  }
}

footer .section-inner .footer-shop ul li {
  width: 48%;
  margin: 0 4px 4px 0;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop ul li {
    width: 23%;
    margin: 0 12px 20px 0;
  }
}

footer .section-inner .footer-shop p {
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop p {
    font-size: 1rem;
  }
}

footer .section-inner .footer-shop hr {
  margin: 8px 0 12px;
  color: #323232;
}

footer .section-inner .footer-shop-ja {
  margin-top: 30px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop-ja {
    margin-top: 100px;
  }
}

footer .section-inner .footer-shop-ja .shop-ja-area {
  font-weight: bold;
}

footer .section-inner .footer-shop-ja .shop-ja-area p {
  width: 140px;
  color: #8f8f8f;
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop-ja .shop-ja-area p {
    color: #323232;
  }
}

footer .section-inner .footer-shop-ja .shop-ja-area .shop-ja-area-box {
  margin-bottom: 12px;
}

footer
  .section-inner
  .footer-shop-ja
  .shop-ja-area
  .shop-ja-area-box
  .footer-shop-list {
  margin-top: 4px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop-ja .shop-ja-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .section-inner .footer-shop-ja .shop-ja-area .shop-ja-area-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 12px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  footer
    .section-inner
    .footer-shop-ja
    .shop-ja-area
    .shop-ja-area-box
    .footer-shop-list {
    width: 70%;
    margin-top: 0;
  }
}

footer .section-inner .footer-shop-ja .shop-ja-area a {
  position: relative;
  padding-right: 20px;
  color: #323232;
  font-size: 14px;
}

footer .section-inner .footer-shop-ja .shop-ja-area a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #323232;
  border-right: solid 2px #323232;
}

footer .section-inner .footer-shop-ja ul li {
  display: inline-block;
  margin-bottom: 4px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop-ja ul li {
    margin: 0 8px 8px 0;
  }
}

footer .section-inner .footer-shop-os {
  margin-top: 22px;
}

@media screen and (max-width: 500px) {
  footer .section-inner .footer-shop-os ul {
    display: block;
  }
}

footer .section-inner .footer-shop-os ul li {
  width: auto;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop-os ul li {
    width: 24%;
  }
}

@media screen and (max-width: 500px) {
  footer .section-inner .footer-shop-os ul li a.red-bdr-btn {
    display: inline-block;
    padding: 15px 24px 15px 12px;
  }
}

@media screen and (min-width: 1000px) {
  footer .section-inner .footer-shop-os {
    margin-top: 39px;
  }
}

footer .section-inner .copyright {
  margin-top: 27px;
}

@media screen and (min-width: 1000px) {
  footer .section-inner .copyright {
    margin-top: 39px;
  }
}

@media screen and (max-width: 500px) {
  footer .base-btn {
    padding: 12px 0;
    min-width: 137px;
    font-size: 12px;
  }
}

@media screen and (min-width: 501px) and (max-width: 960px) {
  footer .only-pc {
    display: block !important;
  }
  footer .only-sp {
    display: none !important;
  }
}

.footer-shop-nav {
  position: fixed;
  z-index: 1;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 501px) {
  .footer-shop-nav {
    display: none;
  }
}

.footer-shop-nav .footer-shop-nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 -4px 0 -2px;
}

.footer-shop-nav .footer-shop-nav-menuWrapper {
  width: 100%;
  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;
}

.footer-shop-nav .footer-shop-nav-menu li {
  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: #de1122;
  background: #fff;
  border-radius: 2px 2px 0 0;
  padding: 0;
  z-index: 1;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  width: calc(100% / 3 - 4px);
  margin: 0 2px;
}

.footer-shop-nav .footer-shop-nav-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  white-space: nowrap;
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 1.25rem;
  font-weight: bold;
  color: #de1122;
}

.footer-shop-nav .footer-shop-nav-menu li a .js-svg {
  height: 1rem;
  margin-right: 4px;
  margin-top: 2px;
}

.footer-shop-nav .footer-shop-nav-menu li a .js-svg path {
  fill: #de1122;
}

.footer-shop-nav .footer-shop-nav-menu li a span {
  font-size: 12.5px;
}

.footer-shop-nav .footer-shop-nav-menu .footer-shop-nav-menu-tel {
  background: #de1122;
}

.footer-shop-nav .footer-shop-nav-menu .footer-shop-nav-menu-tel a {
  color: #fff;
}

.footer-shop-nav .footer-shop-nav-menu .footer-shop-nav-menu-tel a .js-svg {
  height: 1rem;
  margin-right: 4px;
  margin-top: 3px;
}

.footer-shop-nav
  .footer-shop-nav-menu
  .footer-shop-nav-menu-tel
  a
  .js-svg
  path {
  fill: #fff;
}

.container-section-inner {
  width: 1000px;
  margin: 0 auto;
}

.section-inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .section-inner {
    width: 90vw;
  }
  .container-section-inner {
    width: 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .section-inner {
    padding: 0 20px;
  }
}

.button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 240px;
  text-decoration: none;
  width: 100%;
  border: 1px solid;
}

.arrow {
  position: relative;
}

.arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.base-btn {
  position: relative;
  display: inline-block;
  padding: 16px 20px;
  min-width: 200px;
  border-radius: 30px;
  color: #fff !important;
  font-size: 14px;
  background: #de1122;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .base-btn {
    padding: 16px 0;
    font-size: 1.3rem;
  }
}

.base-btn.center-right-arrow:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-white.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  width: 8px;
  height: 13px;
}

.center-right-arrow:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-white.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  right: 12px;
  background-size: 4px;
}

.center-right-arrow-small:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-white.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  right: 12px;
  width: 4px;
}

.red-bdr-btn {
  position: relative;
  display: block;
  padding: 15px 0 15px 12px;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #de1122;
  border-radius: 4px;
  background: #fff;
}

.red-bdr-btn:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-right: solid 2px #de1122;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .red-bdr-btn {
    font-size: 12px;
  }
}

.header ul li:nth-of-type(1) a:before {
  width: 21px;
  content: url("../images/icon/menu-icon01.svg");
}

.main-section img {
  width: 100%;
  object-fit: cover;
}

.common-tab ul li {
  position: relative;
  width: 50%;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .common-tab ul li {
    width: 50%;
  }
}

.common-tab ul li + li:before {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  background-color: #fff;
  height: 26px;
  width: 1px;
  left: 0;
  content: "";
}

.common-tab ul li a.common-tab-01:before {
  width: 16px;
  margin-right: 16px;
  vertical-align: middle;
  content: url("../images/icon/top-nav-icon-01.svg");
}

@media screen and (min-width: 1000px) {
  .common-tab ul li a.common-tab-01:before {
    width: 26px;
  }
}

.common-tab ul li a.common-tab-02:before {
  width: 14px;
  margin-right: 16px;
  vertical-align: middle;
  content: url("../images/icon/top-nav-icon-02.svg");
}

@media screen and (min-width: 1000px) {
  .common-tab ul li a.common-tab-02:before {
    width: 23px;
  }
}

.common-tab ul li a.common-tab-03:before {
  width: 17px;
  margin-right: 16px;
  vertical-align: middle;
  content: url("../images/icon/top-nav-icon-03.svg");
}

@media screen and (min-width: 1000px) {
  .common-tab ul li a.common-tab-03:before {
    width: 28px;
  }
}

.common-tab ul li a.common-tab-04:before {
  width: 16px;
  margin-right: 16px;
  vertical-align: middle;
  content: url("../images/icon/top-nav-icon-04.svg");
}

@media screen and (min-width: 1000px) {
  .common-tab ul li a.common-tab-04:before {
    width: 28px;
  }
}

.common-tab ul li a {
  display: inline-flex;
  padding: 12px 0;
  letter-spacing: 0.01em;
  align-items: center;
}

@media screen and (min-width: 1000px) {
  .common-tab ul li a {
    padding: 17px 0;
  }
}

.item-tag {
  display: inline-block;
  padding: 5px 13px;
  color: #323232;
  font-size: 12px;
  text-align: center;
  background: #fff;
  border: 1px solid #323232;
  border-radius: 50px;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .item-tag {
    font-size: 10px;
  }
}

@media screen and (min-width: 1000px) {
  .item-tag {
    min-width: 75px;
    padding: 5px 16px;
    font-size: 14px;
  }
}

a.border-arrow-btn {
  position: relative;
  display: inline-block;
  margin-top: 4px;
  padding: 16px 28px 10px 8px;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  a.border-arrow-btn {
    padding: 16px 50px 10px 25px;
  }
}

a.border-arrow-btn:after {
  position: absolute;
  right: 0;
  bottom: -3px;
  content: url("../images/common/detail-btn-bottom-sp.svg");
}

@media screen and (min-width: 1000px) {
  a.border-arrow-btn:after {
    content: url("../images/common/detail-btn-bottom.svg");
  }
}

.page-top-link {
  margin-top: 12px;
  text-align: center;
}

.page-top-link a {
  position: relative;
  display: inline-block;
  padding: 12px 32px 12px 20px;
  color: #de1122;
  font-weight: bold;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.page-top-link a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-left: solid 2px #de1122;
  right: 12px;
}

.black-border-btn {
  position: relative;
  display: inline-block;
  padding: 16px 20px;
  min-width: 200px;
  border-radius: 30px;
  color: #323232;
  font-size: 14px;
  background: #fff;
  border: 2px solid #323232;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .black-border-btn {
    padding: 16px 0;
    font-size: 1rem;
  }
}

.black-border-btn.center-right-arrow:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-gray.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  width: 8px;
  height: 13px;
}

.form-btn,
.form-back-btn {
  max-width: 267px;
  display: block;
  margin: 0 auto;
  padding: 14px 20px;
}

.form-btn input,
.form-back-btn input {
  border: none;
  background: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}

.form-btn {
  border: 2px solid #de1122;
}

.form-back-btn input {
  color: #323232;
}

.section-ja-title {
  margin: 12px 0 20px;
  color: #323232;
  font-size: 20px;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 1000px) {
  .section-ja-title {
    margin: 40px 0 50px;
    font-size: 36px;
    letter-spacing: 0.05em;
  }
}

.section-en-title {
  position: relative;
  margin-bottom: 8px;
  font-size: 2.625rem;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.05em;
}

.slash-title {
  position: relative;
  padding: 0 15px;
  text-align: center;
  font-size: 16px;
}

.slash-title:before,
.slash-title:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #323232;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.slash-title:before {
  left: 10px;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.slash-title:after {
  right: 10px;
}

.common-ttl {
  min-height: auto;
  max-width: 1000px;
  padding: 30px 0;
  margin: 0 auto 15px;
  background-image: url("../images/common/common-ttl-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  letter-spacing: 0.11em;
}

@media screen and (min-width: 1000px) {
  .common-ttl {
    max-width: 700px;
    min-height: 279px;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.common-ttl .section-inner {
  padding-left: 20px;
  width: 90vw;
}

.common-ttl .section-inner .common-ttl-sub {
  font-size: 16px;
}

@media screen and (min-width: 1000px) {
  .common-ttl .section-inner .common-ttl-sub {
    font-size: 2.4375rem;
  }
}

.common-ttl .section-inner .common-ttl-main {
  font-size: 1.8rem;
}

@media screen and (min-width: 1000px) {
  .common-ttl .section-inner .common-ttl-main {
    font-size: 3.625rem;
  }
}

.common-ttl .section-inner .common-ttl-main .marker-yellow {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(55%, transparent),
    color-stop(0%, #ffff00)
  );
  background: linear-gradient(transparent 55%, #ffff00 0%);
  height: 27px;
  display: inline-block;
}

@media screen and (min-width: 1000px) {
  .common-ttl .section-inner .common-ttl-main .marker-yellow {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(70%, transparent),
      color-stop(0%, #ffff00)
    );
    background: linear-gradient(transparent 70%, #ffff00 0%);
    height: 55px;
  }
}

.common-ttl .section-inner .common-ttl-en {
  font-size: 12px;
}

.red-border-left-ttl {
  margin-bottom: 20px;
  padding: 4px 12px;
  border-left: 5px solid #de1122;
}

.mincho-border-ttl {
  margin-bottom: 20px;
  padding-bottom: 12px;
  color: #de1122;
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
}

.mincho-border-ttl:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #da172b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(59%, #da172b),
    to(rgba(218, 23, 43, 0))
  );
  background: linear-gradient(90deg, #da172b 59%, rgba(218, 23, 43, 0) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#da172b", endColorstr="#da172b", GradientType=1);
}

@media screen and (min-width: 1000px) {
  .mincho-border-ttl {
    font-size: 40px;
  }
}

.ttl-jc-logo {
  width: 72px;
}

@media screen and (min-width: 1000px) {
  .ttl-jc-logo {
    width: 120px;
  }
}

.ttl-box-red {
  display: block;
  margin-bottom: 12px;
  padding: 12px 12px;
  font-size: 16px;
  color: #fff;
  background: #de1122;
  border-radius: 4px;
}

.ttl-404 {
  margin: 20px 0 20px;
  color: #323232;
  font-size: 2.25rem;
  letter-spacing: 0.01em;
  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 (min-width: 1000px) {
  .ttl-404 {
    /* margin: 120px 0 50px; */
    font-size: 3.25rem;
    letter-spacing: 0.05em;
  }
}

.ttl-404 .ttl-404-icon {
  max-width: 30%;
  margin: 0 -20px;
}

.dot-border {
  width: 100%;
  height: 12px;
  margin: 15px 0;
  background-image: url("../images/common/dot-border.png");
  background-repeat: repeat no-repeat;
  background-size: contain;
}

@media screen and (min-width: 1000px) {
  .dot-border {
    height: 18px;
    margin: 30px 0 45px;
  }
}

.ttl-hr-border {
  background-color: #323232;
  height: 1px;
  width: 12%;
}

.en-title-border {
  background-color: #323232;
  height: 2px;
  width: 16%;
  margin: 0 auto 20px;
}

@media screen and (min-width: 1000px) {
  .en-title-border {
    width: 6%;
    margin: 0 auto 40px;
  }
}

#drawernav {
  position: fixed;
  top: 0;
  right: -292px;
  width: 292px;
  height: 100%;
  margin-bottom: 0;
  background: #fff;
  color: #323232;
  letter-spacing: 0.01em;
  z-index: 1;
  overflow-y: scroll;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

#drawernav ul {
  list-style: none;
  padding: 0;
}

#drawernav .menu_list02 {
  /* margin-top: 10px; */
  padding: 10px !important;
}

#drawernav ul li a {
  color: #323232;
  display: block;
  text-decoration: none;
  width: 100%;
}

#drawernav ul li a:hover {
  color: #ddd;
  background: #222;
}

#drawernav h4 {
  padding: 0 15px;
}

#drawernav .drawer-select-ttl {
  margin-top: 52px;
}

#drawernav .drawer-select-link li {
  width: 32%;
}

#drawernav .drawer-select-link li a {
  padding: 16px 12px 12px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #de1122;
  border-radius: 4px;
}

#drawernav .drawer-column-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#drawernav .drawer-column-2 li {
  width: 50%;
  border-bottom: 0.4px solid #323232;
}

#drawernav .drawer-column-2 li:nth-of-type(2n) {
  border-left: 0.4px solid #323232;
}

#drawernav .drawer-column-2 li:last-of-type {
  border-right: 0.4px solid #323232;
}

#drawernav .drawer-column-2 li a {
  position: relative;
  padding: 8px 0 8px 12px;
  font-size: 12px;
}

#drawernav .drawer-column-2 li a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #323232;
  border-right: solid 2px #323232;
}

#drawernav #select-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#drawernav #select-tel select {
  width: 49%;
  padding: 8px;
  border: 2px solid #de1122;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#drawernav #select-tel select#ex1-city-category {
  background: #fff;
}

#humberger {
  position: absolute;
  /* top: 10; */
  right: 0;
  z-index: 100;
  width: 20px;
  margin: 0 15px;
  /* padding: 20px 16px;*/
  cursor: pointer;
}

.icon-bar {
  height: 1px;
  background: #323232;
  display: block;
  margin-bottom: 6px;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

.fixed-content {
  right: inherit;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

#overlay {
  z-index: -1;
  opacity: 0;
  background: #000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

#overlay .jcmedia {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  padding-top: 56.25%;
}

@media screen and (min-width: 1000px) {
  #overlay .jcmedia {
    width: 640px;
    padding-top: 0;
  }
}

#overlay .jcmedia iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

@media screen and (min-width: 1000px) {
  #overlay .jcmedia iframe {
    position: relative;
    height: 360px;
    padding: 0;
    max-width: 100%;
  }
}

#overlay .jcmedia .round_btn {
  display: block;
  position: absolute;
  top: -10px;
  left: 4px;
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  /* 枠の調整 */
  border-radius: 50%;
  /* 丸みの度合い */
  background: #fff;
  /* ボタンの背景色 */
  cursor: pointer;
}

#overlay .jcmedia .round_btn::before,
#overlay .jcmedia .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 22px;
  /* 棒の高さ */
  background: #333;
  /* バツ印の色 */
}

#overlay .jcmedia .round_btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

#overlay .jcmedia .round_btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.drawer-opened {
  overflow-y: hidden !important;
}

body.drawer-opened .drawer-fixed {
  position: fixed;
  width: 100%;
  height: 67px;
  /*old was 52px*/
  background: #fff;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

body.drawer-opened #page {
  left: -292px;
  box-shadow: 1px 0 2px #000;
  -webkit-box-shadow: 1px 0 2px #000;
}

body.drawer-opened .fixed-content {
  left: -292px;
}

body.drawer-opened #drawernav {
  right: 0;
}

body.drawer-opened #humberger {
  position: absolute;
}

body.drawer-opened #humberger .icon-bar {
  height: 2px;
  background: #de1122;
}

body.drawer-opened #humberger .icon-bar:nth-child(1) {
  -webkit-transform: translate(0, 4px) rotate(45deg);
  -ms-transform: translate(0, 4px) rotate(45deg);
  transform: translate(0, 4px) rotate(45deg);
}

body.drawer-opened #humberger .icon-bar:nth-child(2) {
  -webkit-transform: translate(0, -4px) rotate(-45deg);
  -ms-transform: translate(0, -4px) rotate(-45deg);
  transform: translate(0, -4px) rotate(-45deg);
}

body.drawer-opened #humberger:after {
  content: "Close";
  position: absolute;
  margin: -5px;
  font-size: 10px;
  color: #de1122;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translatesy(20px);
    transform: translatesy(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translatesy(20px);
    transform: translatesy(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

body.drawer-opened #overlay {
  z-index: 3 !important;
  opacity: 0.3 !important;
  left: -292px;
}

.slick-dots li {
  width: 16px;
  margin: 0;
}

.slick-dots li button {
  width: 16px;
  height: 16px;
}

.slick-dots li button:before {
  width: 16px;
  height: 16px;
}

.slick-kaitori {
  margin-top: 20px;
}

.slick-kaitori li.slick-kaitori-item {
  margin: 0 4px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.slick-kaitori li.slick-kaitori-item img {
  width: 100%;
}

.slick-kaitori li.slick-kaitori-item .slick-kaitori-info {
  padding: 12px;
}

.slick-kaitori li.slick-kaitori-item .slick-kaitori-info .slick-kaitori-txt {
  font-size: 14px;
}

.slick-kaitori li.slick-kaitori-item .slick-kaitori-info .slick-kaitori-detail {
  font-size: 12px;
}

.breadcrumbs {
  margin-bottom: 24px;
  padding: 13px 0 26px !important;
  font-size: 14px;
  background-image: url("../images/common/dot-border-4.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 13px;
  /* display: inline-flex; */
}

.breadcrumbs a {
  display: inline-block !important;
  color: #323232;
  position: relative;
  /* padding-right: 24px; */
  margin-right: 0 !important;
}

.breadcrumbs a span {
  position: absolute;
  /* display: inline-block; */
  top: 50%;
  bottom: 0;
  /* right: 8px; */
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #323232;
  border-right: solid 2px #323232;
  border-right: solid 1px #323232;
  border-top: solid 1px #323232;
}

.shop .breadcrumbs,
.shop-detail .breadcrumbs,
.purchase-page .breadcrumbs {
  /* padding-top: 70px !important; */
}

@media screen and (min-width: 1000px) {
  .shop .breadcrumbs,
  .shop-detail .breadcrumbs,
  .purchase-page .breadcrumbs {
    /* padding-top: 120px !important; */
  }
}

.accordion-purchase-ex .accordion .accordion-item,
.shop-detail-faq .accordion .accordion-item,
.accordion-section .accordion .accordion-item,
.tokei-pricetable .accordion .accordion-item,
.brand-pricetable .accordion .accordion-item,
.card-pricetable .accordion .accordion-item {
  border-bottom: 1px solid #8f8f8f;
}

.accordion-purchase-ex .accordion .accordion-item .accordion-head a,
.shop-detail-faq .accordion .accordion-item .accordion-head a,
.accordion-section .accordion .accordion-item .accordion-head a,
.tokei-pricetable .accordion .accordion-item .accordion-head a,
.brand-pricetable .accordion .accordion-item .accordion-head a,
.card-pricetable .accordion .accordion-item .accordion-head a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 20px 4px 0;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .accordion-purchase-ex .accordion .accordion-item .accordion-head a,
  .shop-detail-faq .accordion .accordion-item .accordion-head a,
  .accordion-section .accordion .accordion-item .accordion-head a,
  .tokei-pricetable .accordion .accordion-item .accordion-head a,
  .brand-pricetable .accordion .accordion-item .accordion-head a,
  .card-pricetable .accordion .accordion-item .accordion-head a {
    font-size: 1rem;
  }
}

.accordion-purchase-ex .accordion .accordion-item .accordion-head a:before,
.accordion-purchase-ex .accordion .accordion-item .accordion-head a:after,
.shop-detail-faq .accordion .accordion-item .accordion-head a:before,
.shop-detail-faq .accordion .accordion-item .accordion-head a:after,
.accordion-section .accordion .accordion-item .accordion-head a:before,
.accordion-section .accordion .accordion-item .accordion-head a:after,
.tokei-pricetable .accordion .accordion-item .accordion-head a:before,
.tokei-pricetable .accordion .accordion-item .accordion-head a:after,
.brand-pricetable .accordion .accordion-item .accordion-head a:before,
.brand-pricetable .accordion .accordion-item .accordion-head a:after,
.card-pricetable .accordion .accordion-item .accordion-head a:before,
.card-pricetable .accordion .accordion-item .accordion-head a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #323232;
  border-right: solid 2px #323232;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.accordion-purchase-ex
  .accordion
  .accordion-item
  .accordion-head
  .accordion-head-text,
.shop-detail-faq
  .accordion
  .accordion-item
  .accordion-head
  .accordion-head-text,
.accordion-section
  .accordion
  .accordion-item
  .accordion-head
  .accordion-head-text,
.tokei-pricetable
  .accordion
  .accordion-item
  .accordion-head
  .accordion-head-text,
.brand-pricetable
  .accordion
  .accordion-item
  .accordion-head
  .accordion-head-text,
.card-pricetable
  .accordion
  .accordion-item
  .accordion-head
  .accordion-head-text {
  padding: 12px 20px 4px 0;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .accordion-purchase-ex
    .accordion
    .accordion-item
    .accordion-head
    .accordion-head-text,
  .shop-detail-faq
    .accordion
    .accordion-item
    .accordion-head
    .accordion-head-text,
  .accordion-section
    .accordion
    .accordion-item
    .accordion-head
    .accordion-head-text,
  .tokei-pricetable
    .accordion
    .accordion-item
    .accordion-head
    .accordion-head-text,
  .brand-pricetable
    .accordion
    .accordion-item
    .accordion-head
    .accordion-head-text,
  .card-pricetable
    .accordion
    .accordion-item
    .accordion-head
    .accordion-head-text {
    font-size: 1rem;
  }
}

.accordion-purchase-ex .accordion .accordion-content,
.shop-detail-faq .accordion .accordion-content,
.accordion-section .accordion .accordion-content,
.tokei-pricetable .accordion .accordion-content,
.brand-pricetable .accordion .accordion-content,
.card-pricetable .accordion .accordion-content {
  margin-top: 8px;
  padding: 0 12px;
}

.accordion-purchase-ex .accordion .accordion-content p,
.shop-detail-faq .accordion .accordion-content p,
.accordion-section .accordion .accordion-content p,
.tokei-pricetable .accordion .accordion-content p,
.brand-pricetable .accordion .accordion-content p,
.card-pricetable .accordion .accordion-content p {
  margin-bottom: 12px;
  padding: 12px;
  font-size: 12px;
  background: #f1f1f1;
}

@media screen and (min-width: 501px) {
  .accordion-purchase-ex .accordion .accordion-content p,
  .shop-detail-faq .accordion .accordion-content p,
  .accordion-section .accordion .accordion-content p,
  .tokei-pricetable .accordion .accordion-content p,
  .brand-pricetable .accordion .accordion-content p,
  .card-pricetable .accordion .accordion-content p {
    font-size: 14px;
  }
}

.accordion-purchase-ex .accordion .accordion-content p span,
.shop-detail-faq .accordion .accordion-content p span,
.accordion-section .accordion .accordion-content p span,
.tokei-pricetable .accordion .accordion-content p span,
.brand-pricetable .accordion .accordion-content p span,
.card-pricetable .accordion .accordion-content p span {
  font-weight: bold;
}

.accordion-purchase-ex .accordion-item[data-active] .accordion-head a:before,
.shop-detail-faq .accordion-item[data-active] .accordion-head a:before,
.accordion-section .accordion-item[data-active] .accordion-head a:before,
.tokei-pricetable .accordion-item[data-active] .accordion-head a:before,
.brand-pricetable .accordion-item[data-active] .accordion-head a:before,
.card-pricetable .accordion-item[data-active] .accordion-head a:before {
  opacity: 0;
}

.accordion-purchase-ex .accordion-item[data-active] .accordion-head a:after,
.shop-detail-faq .accordion-item[data-active] .accordion-head a:after,
.accordion-section .accordion-item[data-active] .accordion-head a:after,
.tokei-pricetable .accordion-item[data-active] .accordion-head a:after,
.brand-pricetable .accordion-item[data-active] .accordion-head a:after,
.card-pricetable .accordion-item[data-active] .accordion-head a:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.shop-detail-faq .accordion-content p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tokei-pricetable .accordion .accordion-content,
.brand-pricetable .accordion .accordion-content,
.card-pricetable .accordion .accordion-content {
  padding: 0;
}

.tokei-pricetable .accordion table,
.brand-pricetable .accordion table,
.card-pricetable .accordion table {
  margin-bottom: 8px;
  padding: 8px;
  background: #f1f1f1;
  letter-spacing: 0.01em;
  width: 100%;
  table-layout: fixed;
}

.tokei-pricetable .accordion table thead th,
.brand-pricetable .accordion table thead th,
.card-pricetable .accordion table thead th {
  padding: 8px;
  text-align: left;
}

.brand-pricetable .accordion table thead th:nth-of-type(1),
.card-pricetable .accordion table thead th:nth-of-type(1) {
  width: 40%;
}

.brand-pricetable .accordion table thead th:nth-of-type(2),
.card-pricetable .accordion table thead th:nth-of-type(2) {
  width: 45%;
}

.brand-pricetable .accordion table thead th:nth-of-type(3),
.card-pricetable .accordion table thead th:nth-of-type(3) {
  width: 55%;
}

.tokei-pricetable .accordion table tbody tr,
.brand-pricetable .accordion table tbody tr,
.card-pricetable .accordion table tbody tr {
  border-top: 1px solid #c4c4c4;
}

.tokei-pricetable .accordion table tbody td,
.brand-pricetable .accordion table tbody td,
.card-pricetable .accordion table tbody td {
  padding: 8px;
}

.tokei-pricetable .accordion table tbody td:last-of-type,
.brand-pricetable .accordion table tbody td:last-of-type,
.card-pricetable .accordion table tbody td:last-of-type {
  color: #de1122;
  font-weight: bold;
}

.tokei-pricetable .accordion .accordion-head,
.card-pricetable .accordion .accordion-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #323232;
  font-size: 1rem;
  font-weight: bold;
}

.tokei-pricetable .accordion .accordion-head span,
.card-pricetable .accordion .accordion-head span {
  padding: 10px 0px;
}

.tokei-pricetable .accordion .accordion-head span:hover,
.card-pricetable .accordion .accordion-head span:hover {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.6;
}

.tokei-pricetable .accordion .accordion-head i,
.card-pricetable .accordion .accordion-head i {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #323232;
  border-right: solid 2px #323232;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tokei-pricetable .accordion .accordion-content2,
.card-pricetable .accordion .accordion-content2 {
  display: none;
}

.tokei-pricetable .accordion .accordion-content2 .accordion-model,
.card-pricetable .accordion .accordion-content2 .accordion-model {
  padding: 0px;
  margin: 0px;
  position: relative;
}

.tokei-pricetable .accordion .accordion-content2 .accordion-model td i,
.card-pricetable .accordion .accordion-content2 .accordion-model td i {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #323232;
  border-right: solid 2px #323232;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tokei-pricetable .accordion .accordion-content2 .accordion-model td:hover,
.card-pricetable .accordion .accordion-content2 .accordion-model td:hover {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.6;
}

.tokei-pricetable .accordion .accordion-content2 .model-content,
.card-pricetable .accordion .accordion-content2 .model-content {
  display: none;
}

.tokei-pricetable .accordion .accordion-content2 table thead th:nth-of-type(3),
.card-pricetable .accordion .accordion-content2 table thead th:nth-of-type(3) {
  padding-right: 40px;
  text-align: right;
}

.card-pricetable .accordion table thead th:nth-of-type(1) {
  width: 60%;
}

@media screen and (min-width: 1000px) {
  .card-pricetable .accordion table thead th:nth-of-type(1) {
    width: 75%;
  }
}

.card-pricetable .accordion table thead th:nth-of-type(2) {
  width: 20%;
}

@media screen and (min-width: 1000px) {
  .card-pricetable .accordion table thead th:nth-of-type(2) {
    width: 12%;
  }
}

.card-pricetable .accordion table thead th:nth-of-type(3) {
  width: 20%;
}

@media screen and (min-width: 1000px) {
  .card-pricetable .accordion table thead th:nth-of-type(3) {
    width: 13%;
  }
}

.card-pricetable .accordion table tbody td:nth-of-type(2) {
  padding-right: 20px;
}

@media screen and (min-width: 1000px) {
  .card-pricetable .accordion table tbody td:nth-of-type(2) {
    padding-right: 40px;
  }
}

.card-pricetable .accordion table tbody td:nth-of-type(3) {
  padding-right: 20px;
}

@media screen and (min-width: 1000px) {
  .card-pricetable .accordion table tbody td:nth-of-type(3) {
    padding-right: 40px;
  }
}

.brand-pricetable .model-content {
  display: none;
}

.brand-pricetable .accordion table {
  padding: 0;
  margin: 0;
}

.tokei-pricetable .accordion table,
.brand-pricetable .accordion table {
  padding: 0;
  margin: 0;
}

.brand-pricetable .accordion table th:nth-of-type(1),
.brand-pricetable .accordion table td:nth-of-type(1) {
  width: 35% !important;
}

@media screen and (min-width: 1000px) {
  .brand-pricetable .accordion table th:nth-of-type(1),
  .brand-pricetable .accordion table td:nth-of-type(1) {
    width: 44% !important;
  }
}

.brand-pricetable .accordion table th:nth-of-type(2),
.brand-pricetable .accordion table td:nth-of-type(2) {
  width: 35% !important;
}

@media screen and (min-width: 1000px) {
  .brand-pricetable .accordion table th:nth-of-type(2),
  .brand-pricetable .accordion table td:nth-of-type(2) {
    width: 44% !important;
  }
}

.brand-pricetable .accordion table th:nth-of-type(3),
.brand-pricetable .accordion table td:nth-of-type(3) {
  width: 30% !important;
}

@media screen and (min-width: 1000px) {
  .brand-pricetable .accordion table th:nth-of-type(3),
  .brand-pricetable .accordion table td:nth-of-type(3) {
    width: 12% !important;
  }
}

.accordion-purchase-ex .accordion-head a {
  position: relative;
  display: inline-block;
  color: #de1122;
  padding: 8px 12px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #de1122;
}

.accordion-purchase-ex .accordion-head a:before,
.accordion-purchase-ex .accordion-head a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #de1122;
  border-right: solid 2px #de1122;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main-section {
  /* padding-top: 50px; */
}

@media screen and (min-width: 1000px) {
  .main-section {
    /* padding-top: 90px; */
  }
}

.top-tab {
  margin: 24px 0 16px;
}

@media screen and (min-width: 1000px) {
  .top-tab {
    margin: 32px 0 75px;
  }
}

.top-catch {
  padding-bottom: 56px;
}

@media screen and (min-width: 1000px) {
  .top-catch {
    padding-bottom: 65px;
  }
}

.top-catch .top-catch-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 1000px) {
  .top-catch .top-catch-content .top-catch-text {
    width: 500px;
  }
}

.top-catch .top-catch-content .top-catch-text .section-ja-title {
  margin: 0 0 32px;
  line-height: 2.1;
}

.top-catch .top-catch-content .top-catch-text .top-catch-ttl {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 1000px) {
  .top-catch .top-catch-content .top-catch-text .top-catch-ttl {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.7;
    /* letter-spacing: 0.15em; */
  }
}

.top-catch .top-catch-content .top-catch-text p {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 1000px) {
  .top-catch .top-catch-content .top-catch-text p {
    padding-right: 30px;
    font-size: 16px;
    /* letter-spacing: 0.11em; */
    line-height: 1.8;
  }
}

.top-catch .top-catch-content .top-catch-text p + p {
  margin-top: 12px;
}

@media screen and (min-width: 1000px) {
  .top-catch .top-catch-content .top-catch-text p + p {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .top-catch .top-catch-content img {
    width: 500px;
  }
}

.top-catch .top-catch-bnr {
  margin-bottom: 35px;
}

@media screen and (max-width: 500px) {
  .top-catch .top-catch-bnr {
    position: relative;
    left: 50%;
    width: 100vw;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1000px) {
  .top-catch .top-catch-bnr {
    margin-bottom: 35px;
  }
}

.top-catch .top-catch-bnr ul li + li {
  margin-left: 8px;
}

.top-catch .top-catch-bnr ul li img {
  width: 100%;
}

.top-catch .top-catch-bnr ul li a {
  pointer-events: none;
}

.top-catch .base-btn {
  display: block;
  width: 266px;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .top-catch .base-btn {
    width: 309px;
  }
}

.top-catch .section-ja-title {
  margin: 20px 0 12px;
}

.purchase {
  padding: 20px 0 35px;
}

@media screen and (min-width: 1000px) {
  .purchase {
    padding: 60px 0 28px;
  }
}

.purchase .purchase-item ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  grid-gap: 8px;
  margin: 20px 0 30px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul {
    margin: 20px 0 50px;
    /* grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-gap: 16px;
  }
}

.purchase .purchase-item ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  height: 100%;
  color: #fff;
  background: #de1122;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media screen and (min-width: 501px) and (max-width: 960px) {
  .purchase .purchase-item ul li a {
    padding: 20px 10px;
  }
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li a {
    min-height: 145px;
    padding: 30px 0;
  }
}

.purchase .purchase-item ul li a img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.purchase .purchase-item ul li a span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li a span {
    margin-top: 12px;
  }
}

.purchase .purchase-item ul li a.center-right-arrow:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-white.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  width: 8px;
  height: 13px;
}

.purchase .purchase-item ul li .purchase-icon {
  position: relative;
  height: 50px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li .purchase-icon {
    height: 60px;
  }
}

.purchase .purchase-item ul li.purchase-icon-gold img {
  width: 55px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li.purchase-icon-gold img {
    width: 66px;
  }
}

.purchase .purchase-item ul li.purchase-icon-diamond img {
  width: 49px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li.purchase-icon-diamond img {
    width: 59px;
  }
}

.purchase .purchase-item ul li.purchase-icon-jewel img {
  width: 37px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li.purchase-icon-jewel img {
    width: 45px;
  }
}

.purchase .purchase-item ul li.purchase-icon-stone img {
  width: 34px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li.purchase-icon-stone img {
    width: 42px;
  }
}

.purchase .purchase-item ul li.purchase-icon-watch img {
  width: 26px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li.purchase-icon-watch img {
    width: 44px;
  }
}

.purchase .purchase-item ul li.purchase-icon-bag img {
  width: 52px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-item ul li.purchase-icon-bag img {
    width: 63px;
  }
}

.purchase .purchase-item ul li.purchase-icon-ticket img {
  width: 50px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand .section-ja-title {
    margin-bottom: 12px;
  }
}

.purchase .purchase-brand ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 7px;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .purchase .purchase-brand ul {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 16px;
  }
}

.purchase .purchase-brand ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand ul li {
    margin-top: 63px;
  }
}

.purchase .purchase-brand ul li a {
  display: block;
  padding: 0 19px 18px;
  border: 1px solid #323232;
  border-radius: 4px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand ul li a {
    padding: 0 29px 14px;
    min-height: 244px;
  }
}

.purchase .purchase-brand ul li a img {
  display: block;
  width: 63px;
  margin: -30px auto 12px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand ul li a img {
    width: 94px;
    margin: -50px auto 20px;
  }
}

.purchase .purchase-brand ul li a .brand-name-en {
  margin-top: 4px;
  color: #323232;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand ul li a .brand-name-en {
    margin-top: 12px;
  }
}

.purchase .purchase-brand ul li a .purchase-brand-dtl {
  color: #323232;
  line-height: 1.5;
}

.purchase .purchase-brand ul li a.center-right-arrow:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-red.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  right: 6px;
  width: 6px;
  height: 10px;
}

.purchase .purchase-brand ul li a.center-right-arrow.arrow-gray:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/arrow-right-white.svg);
  background-size: contain;
  vertical-align: middle;
  content: "";
  right: 6px;
  width: 6px;
  height: 10px;
  background-image: url(../images/common/arrow-right-gray.svg);
}

.purchase .purchase-brand ul li hr {
  border-top: 1px solid #323232;
  width: 20px;
  margin: 10px auto;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-brand ul li hr {
    width: 30px;
    margin: 20px auto;
  }
}

.purchase .purchase-broken {
  margin: 24px 0;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-broken {
    margin: 30px 0;
  }
}

.purchase .purchase-broken .purchase-broken-inner {
  padding: 24px 30px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-broken .purchase-broken-inner {
    padding: 24px 55px 36px 31px;
  }
}

.purchase .purchase-broken .purchase-broken-ttl {
  display: inline-block;
  padding: 14px 16px;
  font-size: 14px;
  background: #8f8f8f;
  border-radius: 4px 4px 0 0;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-broken .purchase-broken-ttl {
    font-size: 24px;
  }
}

.purchase .purchase-broken .purchase-broken-txt {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-broken .purchase-broken-txt {
    font-size: 14px;
  }
}

.purchase .purchase-broken .purchase-broken-list {
  margin-top: 15px;
  padding-left: 12px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-broken .purchase-broken-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.purchase .purchase-broken .purchase-broken-list ul {
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  .purchase .purchase-broken .purchase-broken-list ul {
    margin-bottom: 0;
  }
}

.purchase .purchase-broken hr {
  margin: 4px;
}

.purchase .purchase-broken ul li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 8px 0 18px;
  vertical-align: sub;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.purchase .purchase-broken ul li:before {
  content: "";
  background-image: url("../images/icon/list-check-icon.svg");
  position: absolute;
  left: 0;
  width: 14px;
  height: 11px;
  vertical-align: middle;
}

.purchase .base-btn {
  display: block;
  width: 266px;
  margin: 0 auto;
}

.purchase .purchase-broken-bag p {
  position: relative;
  padding-left: 20px;
}

.purchase .purchase-broken-bag p:before {
  content: "";
  background-image: url("../images/icon/broken-bag.svg");
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.purchase .purchase-broken-watch p {
  position: relative;
  padding-left: 20px;
}

.purchase .purchase-broken-watch p:before {
  content: "";
  background-image: url("../images/icon/broken-watch.svg");
  position: absolute;
  left: 0;
  width: 14px;
  height: 20px;
  vertical-align: middle;
}

.purchase .purchase-broken-jewely p {
  position: relative;
  padding-left: 20px;
}

.purchase .purchase-broken-jewely p:before {
  content: "";
  background-image: url("../images/icon/broken-jewel.svg");
  position: absolute;
  left: 0;
  width: 14px;
  height: 17px;
  vertical-align: middle;
}

.feature {
  padding: 21px 0;
}

@media screen and (min-width: 1000px) {
  .feature {
    padding: 55px 0 70px;
  }
}

@media screen and (min-width: 1000px) {
  .feature .feature-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1000px) {
  .feature .feature-content img {
    width: 502px;
  }
}

@media screen and (min-width: 1000px) {
  .feature .feature-content .feature-txt-wrapper {
    width: 423px;
  }
}

.feature .feature-txt {
  font-size: 8px;
  padding: 0 0 20px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-txt {
    padding: 20px 0;
    width: 423px;
    font-size: 14px;
  }
}

.feature .feature-txt span {
  display: block;
  font-size: 50px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-txt span {
    font-size: 80px;
  }
}

.feature .feature-txt .feature-reason-txt-ttl {
  font-size: 1.125rem;
}

@media screen and (min-width: 1000px) {
  .feature .feature-txt .feature-reason-txt-ttl {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}

.feature .feature-txt .feature-reason-ttl {
  margin-right: 14px;
}

.feature .feature-txt .feature-reason-ttl span {
  line-height: 0.9;
}

.feature .feature-txt .feature-reason-txt {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1000px) {
  .feature .feature-txt .feature-reason-txt {
    font-size: 13px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1000px) {
  .feature .feature-txt + .feature-txt {
    border-top: 1px solid #323232;
  }
}

@media screen and (min-width: 1000px) {
  .feature .feature-point {
    margin: 40px 0 80px;
  }
}

.feature .feature-point .feature-point-ttl {
  display: block;
  padding: 14px 11.5px;
  color: #fff;
  font-size: 1.25rem;
}

@media screen and (min-width: 1000px) {
  .feature .feature-point .feature-point-ttl {
    display: inline-block;
    padding: 25.5px 23px;
  }
}

.feature .feature-point ul {
  margin-top: 30px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-point ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.feature .feature-point ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 16px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-point ul li {
    display: block;
    width: 209px;
    margin-bottom: 16px;
  }
}

.feature .feature-point ul li .feature-point-list-ttl {
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-point ul li .feature-point-list-ttl {
    margin: 12px 0;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
  }
}

.feature .feature-point ul li .feature-point-txt {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-point ul li .feature-point-txt {
    font-size: 14px;
    line-height: 1.4;
  }
}

.feature .feature-point ul li img {
  display: block;
  width: 100px;
  margin-right: 8px;
}

@media screen and (min-width: 1000px) {
  .feature .feature-point ul li img {
    width: 140px;
    margin: 0 auto;
  }
}

.feature .feature-comparison {
  padding: 30px 0 20px;
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 1000px) {
  .feature .feature-comparison {
    padding: 40px 0 53px;
    width: 100%;
  }
}

@media screen and (min-width: 1000px) {
  .feature .feature-comparison .feature-comparison-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 732px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.feature .feature-comparison .feature-comparison-inner .feature-comparison-txt {
  width: 90vw;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt {
    width: 342px;
  }
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  .feature-comparison-case {
  font-size: 14px;
  text-align: center;
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  .feature-comparison-ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px 0;
}

@media screen and (min-width: 1000px) {
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    .feature-comparison-ex {
    margin: 10px 0 20px;
  }
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  .feature-comparison-ex
  .feature-comparison-ex-ttl {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 1.4;
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  .feature-comparison-ex
  .feature-comparison-ex-ttl
  span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  .feature-comparison-ex
  .feature-comparison-ex-price {
  font-size: 48px;
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  .feature-comparison-ex
  .feature-comparison-ex-price
  span {
  font-size: 20px;
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  ul {
  margin-top: 8px;
}

@media screen and (min-width: 1000px) {
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    ul {
    margin: 12px 0 8px;
  }
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  ul
  li {
  width: 32%;
  padding: 7px 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 1000px) {
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    ul
    li {
    padding: 13px 4px;
  }
}

.feature
  .feature-comparison
  .feature-comparison-inner
  .feature-comparison-txt
  ul
  li
  .feature-comparison-price {
  font-size: 16px;
  line-height: 1;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    .slash-title {
    padding: 0;
    font-size: 0.875rem;
  }
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    .slash-title:before {
    left: 0;
  }
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    .slash-title:after {
    right: 0;
  }
  .feature
    .feature-comparison
    .feature-comparison-inner
    .feature-comparison-txt
    .feature-comparison-ttl {
    font-size: 10px;
  }
}

.feature .feature-comparison img {
  display: block;
  width: 154px;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .feature .feature-comparison img {
    width: 349px;
  }
}

.news {
  padding-bottom: 50px;
}

@media screen and (min-width: 1000px) {
  .news {
    padding-bottom: 50px;
  }
}

.news ul li a {
  display: block;
  padding: 16px 0;
}

@media screen and (min-width: 1000px) {
  .news ul li a {
    display: block;
    padding: 43px 0;
  }
}

.news ul li a span.news-date {
  margin-bottom: 12px;
}

.news .news-dtl-btn a {
  display: block;
  text-align: right;
}

.media {
  position: relative;
}

@media screen and (min-width: 1000px) {
  .media {
    padding-bottom: 50px;
  }
}

.media ul.media-capture {
  margin: 0 0 21px;
  overflow-x: auto;
}

@media screen and (min-width: 501px) {
  .media ul.media-capture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 36px 0 43px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.media ul.media-capture li {
  display: block;
  width: 100%;
}

@media screen and (min-width: 501px) and (max-width: 960px) {
  .media ul.media-capture li {
    width: 40%;
  }
}

@media screen and (min-width: 1000px) {
  .media ul.media-capture li {
    width: 328px;
    display: inline-block;
  }
}

.media ul.media-capture li img.media-capture-img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .media ul.media-capture li img.media-capture-img {
    width: 328px;
  }
}

.media ul.media-capture li + li {
  margin-top: 36px;
}

@media screen and (min-width: 501px) {
  .media ul.media-capture li + li {
    margin-top: 0;
  }
}

.media ul.media-capture li p {
  padding: 0 30px 12px;
  font-size: 12px;
  line-height: 1.8;
}

@media screen and (min-width: 1000px) {
  .media ul.media-capture li p {
    font-size: 13px;
  }
}

.media ul.media-capture li p.slash-title {
  position: relative;
  padding: 0 15px;
  text-align: center;
  padding: 0 40px;
  margin-bottom: 12px;
}

.media ul.media-capture li p.slash-title:before,
.media ul.media-capture li p.slash-title:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #323232;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.media ul.media-capture li p.slash-title:before {
  left: 10px;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.media ul.media-capture li p.slash-title:after {
  right: 10px;
}

.media ul.media-capture li p.slash-title:before,
.media ul.media-capture li p.slash-title:after {
  width: 36px;
}

.media ul.media-capture li p.slash-title:before {
  left: 0;
}

.media ul.media-capture li p.slash-title:after {
  right: 0;
}

@media screen and (min-width: 1000px) {
  .media ul.media-capture li p.slash-title {
    padding: 0 10px;
  }
}

.media ul.media-capture li a {
  display: block;
}

.media ul.media-capture + p {
  margin-bottom: 32px;
}

@media screen and (min-width: 1000px) {
  .media .media-logo {
    display: block;
  }
}

.media hr {
  display: none;
}

@media screen and (min-width: 1000px) {
  .media hr {
    display: block;
  }
}

.media .media-logo {
  width: 100vw;
  overflow-x: scroll;
}

@media screen and (min-width: 1000px) {
  .media .media-logo {
    width: 100%;
    overflow-x: auto;
  }
}

.media .media-logo img {
  width: 800px;
  margin-right: 50px;
}

@media screen and (min-width: 1000px) {
  .media .media-logo img {
    width: 100%;
    margin-right: 0;
  }
}

.media .media-logo .media a {
  display: block;
}

.media .media-logo .section-ja-title {
  margin: 20px 0px;
}

.media .media-logo .media-reason-txt {
  margin-bottom: 30px;
}

.media .media-logo .close {
  width: 370px;
  position: relative;
  margin: 0 auto;
}

.media .popup {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0.6;
}

.media.show-popup .popup {
  opacity: 1;
  visibility: visible;
}

.media.show-popup .popup > iframe {
  width: 370px;
  position: absolute;
  top: 49px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.search-shop {
  margin-bottom: 3em;
  color: #fff;
  font-weight: bolder;
  background: #e64778;
  background: linear-gradient(135deg, #e64778 0%, #be0d14 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#e64778", endColorstr="#be0d14", GradientType=1);
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 1000px) {
  .search-shop {
    width: 100%;
  }
}

.search-shop .search-shop-bg {
  background-image: url("../images/common/bg_shops.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.search-shop .container {
  width: 90vw;
  margin: 0 auto;
  background-image: url("../images/common/bg_japan_shops.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 10vw;
  overflow: hidden;
}

@media screen and (min-width: 1000px) {
  .search-shop .container {
    width: 100%;
  }
}

.search-shop .search-shop-en {
  padding: 12px 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 16px;
}

.search-shop .search-shop-en .border {
  width: 25%;
  height: 1px;
  background-color: #fff;
  margin-left: 20px;
}

.search-shop .shop-ja-ttl {
  margin: 15px 0 20px;
  font-size: 16px;
}

@media screen and (min-width: 1000px) {
  .search-shop .shop-ja-ttl {
    margin: 0 0 20px;
    text-align: center;
    font-size: 20px;
  }
  .search-shop .shop-ja-ttl br {
    display: none;
  }
}

.search-shop .search-shop-list {
  position: relative;
  overflow: hidden;
}

.search-shop .search-shop-list .wrap a {
  position: relative;
  -webkit-box-shadow: 2px 2px 3px rgba(119, 10, 10, 0.4);
  box-shadow: 2px 2px 3px rgba(119, 10, 10, 0.4);
  padding: 8px 12px;
  background-color: #fff;
  border-radius: 4px;
  color: #323232 !important;
  font-weight: normal;
  margin-bottom: 5px;
}

.search-shop .search-shop-list .wrap a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #323232;
  border-right: solid 2px #323232;
}

.search-shop .search-shop-list .area_list {
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.search-shop .search-shop-list.selecting .area_list {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-shop .search-shop-list .area_list .ico_arrow:before {
  display: none;
}

.search-shop .search-shop-list .shopsArea .area_list .ico_arrow:before {
  display: block;
}

.search-shop .search-shop-list .prefs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-shop .search-shop-list.selecting .prefs {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.search-shop .search-shop-list.selecting .prefs [data-area-wrap] {
  opacity: 0;
  display: none;
}

.search-shop .search-shop-list .prefs .wrap {
  display: none;
}

.search-shop .search-shop-list .prefs .areaback {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 8px;
  display: inline-block;
}

.search-shop .search-shop-list .search-shops .prefback {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 1em;
  display: inline-block;
}

.search-shop .search-shop-list .prefs .areaback:hover,
.search-shop .search-shop-list .search-shops .prefback:hover {
  opacity: 0.6;
}

.search-shop .search-shop-list .prefs .areaback .ico_arrow,
.search-shop .search-shop-list .search-shops .prefback .ico_arrow {
  position: relative;
  padding-right: 0;
  padding-left: 1.5em;
  font-size: 12px;
}

.search-shop .search-shop-list .prefs .areaback .ico_arrow:before,
.search-shop .search-shop-list .search-shops .prefback .ico_arrow:before {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
}

.search-shop .search-shop-list .prefs .areaback .ico_arrow:before,
.search-shop .search-shop-list .search-shops .prefback .ico_arrow:before {
  border-color: #fff;
  right: auto;
  left: 0;
}

.search-shop .search-shop-list a {
  padding: 13px;
  background-color: #fff;
  border-radius: 4px;
  color: #323232 !important;
  font-size: 12px;
  margin-bottom: 5px;
}

.search-shop .search-shop-list .search-shops {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-shop .search-shop-list .search-shops .wrap {
  display: none;
}

.search-shop .search-shop-list .search-shops .wrap a {
  font-size: 12px;
  color: #323232 !important;
}

.search-shop .search-shop-list .shopsArea .wrap a {
  font-size: 12px;
  color: #323232 !important;
}

.search-shop .search-shop-list .search-shops .wrap a .ico_arrow,
.search-shop .search-shop-list .shopsArea .wrap a .ico_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 2.5em;
}

.search-shop .search-shop-list .search-shops .wrap a .ico_arrow:before,
.search-shop .search-shop-list .shopsArea .wrap a .ico_arrow:before {
  border-color: #de1122;
}

.search-shop .search-shop-list .search-shops .noshops {
  padding: 2em 0;
  font-size: 120%;
  width: auto;
}

.search-shop .search-shop-list.selecting.selecting_shop .search-shops {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.search-shop .search-shop-list.selecting .prefs {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}

.search-shop .search-shop-list.selecting.selecting_shop .prefs {
  opacity: 0;
}

@media screen and (min-width: 751px) {
  .search-shop .container {
    padding: 68px 46px 40px;
    background-size: auto 110%;
  }
  .search-shop .search-shop-en {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 10px;
  }
}

@media screen and (min-width: 751px) and (min-width: 1000px) {
  .search-shop .search-shop-en {
    font-size: 16px;
  }
}

@media screen and (min-width: 751px) {
  .search-shop .main {
    margin: 1em 0;
    font-size: 3rem;
  }
}

@media screen and (min-width: 751px) {
  .search-shop .search-shop-list .wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .search-shop .search-shop-list .wrap a {
    width: 32.8%;
    font-size: 14px;
    margin: 0.26%;
    padding: 12px;
  }
}

@media screen and (max-width: 750px) {
  .search-shop .main {
    font-size: 4.5vw;
    letter-spacing: 3px;
  }
}

/*--------------------------------------------------------------------*/

/*--------------------------------------------------------------------*/

/*--------------------------------------------------------------------*/

@media screen and (max-width: 750px) {
  .search-shop .search-shop-list .search-shops .wrap a,
  .search-shop .search-shop-list .shopsArea .wrap a {
    font-size: 3vw;
  }
}

/*--------------------------------------------------------------------*/

.search-shop-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-shop-flex.-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-shop-flex.c2 > * {
  width: 48%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.store {
  background: #fef8f8;
}

@media screen and (min-width: 1000px) {
  .store .section-inner {
    padding: 41px 37px 52px 32px;
  }
}

@media screen and (min-width: 1000px) {
  .store .store-select li {
    margin-bottom: 16px;
  }
  .store .store-select li a {
    width: 328px;
  }
}

.store .store-select img.store-map-bg {
  display: block;
  /* width: 100%; */
  margin: 0 auto 50px;
}

.store .section-ja-title {
  /* position: absolute; */
  /* left: 0; */
  text-align: left;
}

.store .section-ja-title span {
  display: block;
  font-size: 1.375rem;
}

.search {
  padding: 34px 0 28px;
}

@media screen and (min-width: 1000px) {
  .search {
    padding: 85px 0 45px;
  }
}

.search .search-box {
  background: #8f8f8f;
  padding: 30px;
}

@media screen and (min-width: 1000px) {
  .search .search-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 38px 90px;
  }
}

.search .search-box .search-box-item {
  width: 100%;
}

.search .search-box .search-box-item p {
  font-size: 15px;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .search .search-box .search-box-item p {
    font-size: 18px;
  }
}

.search .search-box .search-box-item .search-box-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.search .search-box .search-box-item .search-box-form input {
  width: calc(100% - 42px);
  padding: 20px 16px;
  height: 42px;
  border: none;
}

.search
  .search-box
  .search-box-item
  .search-box-form
  input::-webkit-input-placeholder {
  color: #c8c8c8;
}

.search .search-box .search-box-item .search-box-form input::-moz-placeholder {
  color: #c8c8c8;
}

.search
  .search-box
  .search-box-item
  .search-box-form
  input:-ms-input-placeholder {
  color: #c8c8c8;
}

.search
  .search-box
  .search-box-item
  .search-box-form
  input::-ms-input-placeholder {
  color: #c8c8c8;
}

.search .search-box .search-box-item .search-box-form input::placeholder {
  color: #c8c8c8;
}

@media screen and (min-width: 1000px) {
  .search .search-box .search-box-item .search-box-form input {
    width: calc(100% - 62px);
    height: 62px;
  }
}

.search .search-box .search-box-item .search-box-form button {
  width: 42px;
  height: 42px;
  border: none;
  background: #de1122;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .search .search-box .search-box-item .search-box-form button {
    width: 62px;
    height: 62px;
  }
}

.search .search-box .search-box-item .search-box-form button::before {
  content: "";
  position: absolute;
  background: url(../images/icon/search-icon.svg) no-repeat center center/cover;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1000px) {
  .search .search-box .search-box-item .search-box-form button::before {
    width: 21px;
    height: 21px;
  }
}

.search .search-popular-tag {
  margin: 28px 0;
}

@media screen and (min-width: 1000px) {
  .search .search-popular-tag {
    margin: 22px 0 14px;
  }
}

.search .search-popular-tag ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search .search-popular-tag ul li + li {
  margin-left: 10px;
}

.search .search-list ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 8px;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .search .search-list ul {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media screen and (min-width: 1000px) {
  .search .search-list ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 16px;
  }
}

.search .search-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
  background: #fff;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .search .search-list ul li {
    padding: 12px;
  }
}

@media screen and (min-width: 1000px) {
  .search .search-list ul li {
    padding: 20px 40px;
  }
}

.search .search-list ul li .search-list-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.search .search-list ul li .search-list-content .search-list-tag {
  margin: 12px 0;
  font-size: 14px;
}

.search .search-list ul li .search-list-content .search-list-txt {
  margin-bottom: 12px;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .search .search-list ul li .search-list-content .search-list-txt {
    font-size: 14px;
  }
}

.search .search-list ul li .search-list-content .search-item-price {
  margin-top: auto;
}

.search
  .search-list
  ul
  li
  .search-list-content
  .search-item-price
  .search-item-price-ttl {
  padding: 0 4px;
}

.search
  .search-list
  ul
  li
  .search-list-content
  .search-item-price
  .search-item-txt {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media screen and (min-width: 1000px) {
  .search
    .search-list
    ul
    li
    .search-list-content
    .search-item-price
    .search-item-txt {
    font-size: 1.625rem;
  }
}

.search
  .search-list
  ul
  li
  .search-list-content
  .search-item-price
  .search-item-txt
  span {
  font-size: 12px;
}

.search .search-list ul li img {
  display: block;
  width: 83px;
  margin: 0 auto 12px;
}

@media screen and (min-width: 1000px) {
  .search .search-list ul li img {
    width: 122px;
    margin: 0 auto 20px;
  }
}

.search .search-link {
  margin-top: 22px;
}

@media screen and (max-width: 500px) {
  .search .search-link {
    position: relative;
    left: 50%;
    width: 100vw;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1000px) {
  .search .search-link {
    margin-top: 32px;
  }
}

.search .search-link ul li + li {
  margin-left: 18px;
}

@media screen and (min-width: 1000px) {
  .search .search-link ul li + li {
    margin-left: 14px;
  }
}

.search .search-link ul li img {
  width: 100%;
}

.shops-search-shop {
  width: 100%;
  background: none;
  margin-bottom: 0;
}

.shops-search-shop .search-shop-list {
  height: 180px;
}

@media screen and (min-width: 1000px) {
  .shops-search-shop .search-shop-list {
    height: 120px;
  }
}

.shops-search-shop .search-shop-list .wrap a {
  position: relative;
  display: block;
  padding: 15px 0 15px 12px;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #de1122;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.shops-search-shop .search-shop-list .wrap a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-right: solid 2px #de1122;
}

.shops-search-shop .search-shop-list span {
  color: #de1122;
}

.shops-search-shop .search-shop-list .prefs .areaback .ico_arrow:before,
.shops-search-shop .search-shop-list .search-shops .prefback .ico_arrow:before {
  border-color: #de1122;
  right: auto;
  left: 0;
}

.shops-search-shop .search-shop-list .search-shops .noshops {
  color: #de1122;
}

.store-panel {
  display: none;
}

.store-panel.is-active {
  display: block;
}

.store-area-group .store-area-box {
  position: absolute;
  padding: 20px 26px 24px 25px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.store-area-group .store-area-box .store-area-ttl {
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 2px solid #8f8f8f;
}

.store-area-group .store-area-box .store-area-tab {
  max-width: 95px;
  border-bottom: 1px solid #8f8f8f;
}

.store-area-group .store-area-box .store-area-tab a {
  position: relative;
  display: block;
  /* padding: 4px 0; */
  padding: 4px;
  color: #323232;
  font-weight: bold;
}

.store-area-group .store-area-box .store-area-tab a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #323232;
  border-right: solid 2px #323232;
}

.store-area-group .store-area-box .store-area-box-column2,
.store-area-group .store-area-box .store-area-box-column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.store-area-group .store-area-box .store-area-box-column2 .store-area-tab,
.store-area-group .store-area-box .store-area-box-column3 .store-area-tab {
  width: 45%;
}

.store-area-group .store-area-box .store-area-box-column2 {
  width: 190px;
}

.store-area-group .store-area-box .store-area-box-column3 {
  width: 294px;
}

.store-area-group .store-area-box .store-area-box-column3 .store-area-tab {
  width: 30%;
}

.store-area-group .penang {
  top: 36.5%;
  left: -6%;
}

.store-area-group .selangor {
  top: 66%;
  left: -6%;
}

.store-area-group .kualalumpur {
  top: 43.5%;
  left: 47.5%;
}

.store-area-group .johor {
  bottom: -15%;
  left: 21%;
}

.store-list-group {
  padding: 31px 50px 38px;
  background: #d0d0d1;
}

.store-list-group .store-panel .store-panel-ttl {
  margin-bottom: 8px;
  font-size: 1.25rem;
  text-align: center;
}

.store-list-group .store-panel .store-panel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 30px;
  background: #fff;
}

.store-list-group .store-panel .store-panel-box .store-panel-box-list {
  width: 80%;
}

.store-list-group .store-panel .store-panel-box p {
  width: 20%;
  font-weight: bold;
}

.store-list-group .store-panel .store-panel-box .border {
  background: #323232;
  width: 1px;
  height: auto;
}

.store-list-group .store-panel .store-panel-box table {
  width: 100%;
  margin-left: 20px;
}

.store-list-group .store-panel .store-panel-box table tr td {
  padding: 0 0 4px;
}

.store-list-group .store-panel .store-panel-box table tr td a {
  position: relative;
  padding-right: 20px;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
}

.store-list-group .store-panel .store-panel-box table tr td a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #323232;
  border-right: solid 2px #323232;
}

.map-pin-icon img {
  position: absolute;
}

.map-pin-icon img.penang-map-pin {
  top: 19.5%;
  left: 13%;
}

.map-pin-icon img.selangor-map-pin {
  top: 56%;
  left: 19%;
}

.map-pin-icon img.kualalumpur-map-pin {
  bottom: 30%;
  left: 25.5%;
}

.map-pin-icon img.johor-map-pin {
  bottom: 7%;
  left: 43%;
}

.kaitori {
  font-size: 12px;
  letter-spacing: 0.11em;
}

@media screen and (min-width: 501px) {
  .kaitori {
    font-size: 1.5rem;
  }
}

.kaitori section {
  padding-bottom: 34px;
}

@media screen and (min-width: 1000px) {
  .kaitori section {
    padding-bottom: 52px;
  }
}

.market-price {
  padding: 15px 0;
  text-align: center;
  background: #fcf7f0;
}

@media screen and (min-width: 1000px) {
  .market-price {
    padding: 30px 0;
  }
}

.market-price .market-price-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 6px;
  width: 100%;
  max-width: 450px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.market-price .market-price-inner:first-of-type {
  margin-bottom: 12px;
}

@media screen and (min-width: 1000px) {
  .market-price .market-price-inner:first-of-type {
    margin-bottom: auto;
  }
}

.market-price .market-price-inner:last-of-type {
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .market-price .market-price-inner:last-of-type {
    max-width: 900px;
  }
}

.market-price .market-price-inner .market-price-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 12px 8px;
  border: 1px solid #323232;
  border-radius: 4px 0 0 4px;
  font-weight: bold;
  background: #fff;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .market-price .market-price-inner .market-price-item {
    padding: 12px 4px;
  }
}

.market-price .market-price-inner .market-price-item .market-price-ttl {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .market-price .market-price-inner .market-price-item .market-price-ttl {
    font-size: 14px;
  }
}

.market-price .market-price-inner .market-price-item .market-price-detail {
  font-size: 1.125rem;
}

.market-price .market-price-inner .market-price-item .market-price-detail span {
  font-size: 12px;
}

.market-price .market-price-inner .market-price-item + .market-price-item {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.market-price .market-price-inner .market-price-item .market-price-detail {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 90%;
  text-align: right;
}

.market-price .market-price-inner .market-price-gold hr {
  border-top: 1px solid #9a854a;
}

.market-price .market-price-inner .market-price-gold .market-price-detail {
  padding-left: 38px;
  background-image: url("../images/kaitori/img-gold-price.png");
}

.market-price .market-price-inner .market-price-platinum hr,
.market-price .market-price-inner .market-price-silver hr,
.market-price .market-price-inner .market-price-platinum hr {
  border-top: 1px solid #7b7f82;
}

.market-price .market-price-inner .market-price-platinum .market-price-detail,
.market-price .market-price-inner .market-price-silver .market-price-detail,
.market-price .market-price-inner .market-price-platinum .market-price-detail {
  padding-left: 38px;
  background-image: url("../images/kaitori/img-plutinum-price.png");
}

.gold-info .gold-info-graph-ttl {
  padding: 0.2em 1em;
  border-left: 5px solid #de1122;
  margin-bottom: 2em;
}

.gold-info table,
.gold-info .table-att {
  width: 100%;
  border-collapse: separate;
}

@media screen and (min-width: 1000px) {
  .gold-info table,
  .gold-info .table-att {
    width: 40%;
    margin: 0 auto;
  }
}

.gold-info table thead td,
.gold-info .table-att thead td {
  padding-bottom: 12px;
}

.gold-info table thead td:first-of-type p,
.gold-info .table-att thead td:first-of-type p {
  border-radius: 4px 0 0 0;
}

.gold-info table thead td:nth-of-type(2) p,
.gold-info .table-att thead td:nth-of-type(2) p {
  border-radius: 0;
}

.gold-info table thead td:last-of-type p,
.gold-info .table-att thead td:last-of-type p {
  border-radius: 0 4px 0 0;
}

.gold-info table thead td p,
.gold-info .table-att thead td p {
  margin: -1px;
  padding: 0.6em 0;
  color: #fff;
  background: #de1122;
  border-right-width: 0px;
}

.gold-info table tbody tr td,
.gold-info .table-att tbody tr td {
  border: 1px solid #f1f1f1;
  border-right-width: 0px;
  border-bottom-width: 0px;
  padding: 0.5em;
}

.gold-info table tbody tr td:first-of-type,
.gold-info .table-att tbody tr td:first-of-type {
  background-color: #fcf7f0;
}

.gold-info table tbody tr td:nth-of-type(2),
.gold-info .table-att tbody tr td:nth-of-type(2) {
  font-size: 1.125rem;
}

.gold-info table tbody tr td:last-of-type,
.gold-info .table-att tbody tr td:last-of-type {
  border-right-width: 1px;
}

.gold-info table tbody tr td a,
.gold-info .table-att tbody tr td a {
  text-align: left;
  color: #9a854a;
}

.gold-info table tbody tr td span,
.gold-info .table-att tbody tr td span {
  font-size: 10px;
}

.gold-info table tbody tr.spacer td,
.gold-info .table-att tbody tr.spacer td {
  background-color: #fff;
  border: 0;
  border-top: 1px solid #f1f1f1;
}

.gold-info table {
  margin: 30px auto 0;
}

.intro {
  position: relative;
  background-image: url("../images/kaitori/img_minamino_intro_pc.png");
  background-repeat: no-repeat;
  background-position: right -10px top 0;
  background-size: 60% auto;
}

@media screen and (min-width: 1000px) {
  .intro {
    background-size: 346px auto;
    padding: 0;
    background-size: 45% auto;
    background-position: right 0px top 5%;
  }
}

.intro .logo img {
  width: 120px;
}

.intro .intro-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
}

.intro .intro-sub {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  border-bottom: 1px solid #323232;
}

@media screen and (min-width: 1000px) {
  .intro .intro-sub {
    font-size: 32px;
  }
}

.intro .intro-appeal {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .intro .intro-appeal {
    font-size: 32px;
  }
}

.intro .intro-main {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.125rem;
  position: relative;
}

.intro .intro-main:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #da172b;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(59%, #da172b),
    to(rgba(218, 23, 43, 0))
  );
  background: linear-gradient(90deg, #da172b 59%, rgba(218, 23, 43, 0) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#da172b", endColorstr="#da172b", GradientType=1);
}

@media screen and (min-width: 1000px) {
  .intro .intro-main {
    font-size: 40px;
  }
}

.intro .intro-txt {
  width: 62%;
}

.intro .en {
  position: absolute;
  right: 22vw;
  top: 10vw;
  -webkit-transform: rotate(25.5deg);
  -ms-transform: rotate(25.5deg);
  transform: rotate(25.5deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

@media screen and (min-width: 1000px) {
  .intro .en {
    right: 11vw;
    top: 80px;
  }
}

.intro .en img {
  width: 25vw;
}

@media screen and (min-width: 1000px) {
  .intro .en img {
    width: 150px;
  }
}

.intro .medal {
  position: absolute;
  right: 0;
  bottom: -100px;
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
}

@media screen and (min-width: 1000px) {
  .intro .medal {
    right: -10px;
    bottom: -90px;
  }
}

.intro .medal img {
  max-width: 120px;
}

@media screen and (min-width: 1000px) {
  .intro .medal img {
    max-width: 200px;
  }
}

.intro .intro-txt {
  line-height: 1.6;
}

.ex-purchase ul.ex-purchase-list {
  margin-top: 16px;
}

@media screen and (min-width: 501px) {
  .ex-purchase ul.ex-purchase-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.ex-purchase ul.ex-purchase-list li {
  margin-bottom: 16px;
  padding: 18px 8px;
  border: 1px solid #323232;
  background-color: #fafafa;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 501px) {
  .ex-purchase ul.ex-purchase-list li {
    width: 48%;
    padding: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .ex-purchase ul.ex-purchase-list li {
    padding: 20px 50px;
  }
}

.ex-purchase ul.ex-purchase-list li .ex-purchase-sub {
  font-size: 10px;
}

.ex-purchase ul.ex-purchase-list li table {
  border-collapse: separate;
}

.ex-purchase ul.ex-purchase-list li table tr {
  display: block;
  padding-bottom: 4px;
}

.ex-purchase ul.ex-purchase-list li table tr th {
  font-size: 12px;
  padding: 0.2em 0.5em;
  background-color: #797979;
  color: #fff;
}

.ex-purchase ul.ex-purchase-list li table tr td {
  padding-left: 4px;
  font-size: 12px;
}

.ex-purchase ul.ex-purchase-list li .ex-purchase-comparison {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.ex-purchase ul.ex-purchase-list li .ex-purchase-comparison .ex-purchase-price {
  padding: 4px;
  color: #fff;
  background: #de1122;
}

.ex-purchase ul.ex-purchase-list li .ex-purchase-label {
  white-space: nowrap;
  left: 0;
  bottom: 0;
  position: absolute;
  min-width: 62%;
}

.ex-purchase ul.ex-purchase-list li .ex-purchase-label .ex-purchase-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ex-purchase
  ul.ex-purchase-list
  li
  .ex-purchase-label
  .ex-purchase-price
  .ex-purchase-price-ttl {
  font-size: 14px;
}

.ex-purchase
  ul.ex-purchase-list
  li
  .ex-purchase-label
  .ex-purchase-price
  .ex-purchase-price-ttl
  span {
  display: block;
  font-size: 9px;
}

.ex-purchase
  ul.ex-purchase-list
  li
  .ex-purchase-label
  .ex-purchase-price
  .ex-purchase-value {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.11em;
}

.ex-purchase
  ul.ex-purchase-list
  li
  .ex-purchase-label
  .ex-purchase-price
  .ex-purchase-value
  span {
  font-size: 9px;
}

.ex-purchase ul.ex-purchase-list li .ex-purchase-label .ex-purchase-logo img {
  width: 72px;
}

.ex-purchase .ex-purchase-img {
  max-width: 55%;
}

.ex-purchase .ex-purchase-img img {
  width: 100%;
}

.kaitori-kinds-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.kaitori-kinds-list li {
  width: calc(100% / 2 - 10px);
  margin-right: 5px;
  margin-left: 5px;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #323232;
  border-radius: 4px;
}

@media screen and (min-width: 501px) {
  .kaitori-kinds-list li {
    width: 32%;
  }
}

@media screen and (min-width: 1000px) {
  .kaitori-kinds-list li {
    width: 23%;
    margin: 1%;
  }
}

.kaitori-kinds-list li img {
  width: 100%;
  height: auto;
}

.kaitori-kinds-list li .kaitori-kinds-label {
  position: relative;
  margin-bottom: 4px;
  padding: 8px 16px;
  color: #fff;
  background: #de1122;
  border-radius: 4px;
}

.kaitori-kinds-list li .kaitori-kinds-label:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.kaitori-policy {
  background-color: #fef8f8;
  background-image: url("../images/common/dot-border-4.png");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 16px;
  padding-top: 30px;
}

.kaitori-policy .policy-ttl {
  padding-left: 110px;
  background: none;
}

@media screen and (min-width: 501px) {
  .kaitori-policy .policy-ttl {
    padding-left: 200px;
  }
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .kaitori-policy .policy-ttl img {
    width: 160px;
  }
}

.kaitori-policy .policy-inner {
  background-image: url("../images/kaitori/policy-ttl-bg.png");
  background-repeat: no-repeat;
  background-position: left top 20px;
  background-size: 25vw auto;
  max-width: 700px;
}

@media screen and (min-width: 1000px) {
  .kaitori-policy .policy-inner {
    background-size: 216px auto;
  }
}

.kaitori-policy .policy-item {
  position: relative;
  margin-bottom: 35px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (min-width: 1000px) {
  .kaitori-policy .policy-item {
    max-width: 700px;
    margin: 0 auto 35px;
  }
}

.kaitori-policy .policy-item .policy-dots {
  position: absolute;
  right: -6.6vw;
  bottom: 0;
}

.kaitori-policy .policy-item:nth-of-type(even) {
  /* flex-direction: row-reverse; */
}

.kaitori-policy .policy-item:nth-of-type(even) .policy-dots {
  right: 0;
  left: -6.6vw;
}

.kaitori-policy
  .policy-item:nth-of-type(even)
  .policy-item-inner
  .policy-img-txt {
  margin-left: 0;
  margin-right: -10%;
}

.kaitori-policy .policy-item .policy-img {
  width: 30%;
}

.kaitori-policy .policy-item .policy-img img {
  width: 100%;
}

.kaitori-policy .policy-item .policy-item-inner {
  width: 70%;
  z-index: 2;
}

.kaitori-policy .policy-item .policy-item-inner .policy-img-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 110%;
  height: 110%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding: 0 1em;
}

@media screen and (min-width: 501px) {
  .kaitori-policy .policy-item .policy-item-inner .policy-img-txt {
    width: 100%;
    height: 100%;
    margin-left: 0;
    padding: 0 0 0 1em;
  }
}

.kaitori-policy
  .policy-item
  .policy-item-inner
  .policy-img-txt
  .policy-img-txt-number {
  font-size: 12px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.kaitori-policy
  .policy-item
  .policy-item-inner
  .policy-img-txt
  .policy-img-txt-number
  .policy-img-txt-sub {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5px;
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.kaitori-policy
  .policy-item
  .policy-item-inner
  .policy-img-txt
  .policy-img-txt-number
  .number {
  background: #de1122;
  color: #fff;
  font-size: 1.5rem;
  margin-left: 5px;
  padding: 3px 3px 0 3px;
  line-height: 1;
}

.kaitori-policy .policy-item .policy-item-inner .policy-img-txt .policy-ttl {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
}

.kaitori-policy .policy-item .policy-item-inner .policy-img-txt .policy-title {
  font-size: 1.25rem;
  margin-bottom: 5px;
  line-height: 1.3;
}

@media screen and (min-width: 501px) {
  .kaitori-policy
    .policy-item
    .policy-item-inner
    .policy-img-txt
    .policy-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.kaitori-policy .policy-item .policy-item-inner .policy-img-txt .policy-text {
  font-size: 14px;
  line-height: 1.8;
}

.kaitori-voice .voice-list .voice-ttl {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #de1122;
  letter-spacing: 0.11em;
}

@media screen and (min-width: 1000px) {
  .kaitori-voice .voice-list .voice-ttl {
    font-size: 16px;
  }
}

.kaitori-voice .voice-list .voice-txt {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.11em;
}

@media screen and (min-width: 1000px) {
  .kaitori-voice .voice-list .voice-txt {
    font-size: 14px;
  }
}

.kaitori-voice .voice-list .voice-staff {
  margin-top: 12px;
}

.kaitori-voice .voice-list .voice-staff .voice-staff-img {
  margin-right: 12px;
}

.kaitori-voice .voice-list .voice-staff .voice-txt {
  margin-top: 12px;
}

.kaitori-voice hr {
  margin: 16px 0;
}

.kaitori-voice .rating {
  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;
  padding: 14px 0;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  background-clip: border-box;
  width: 90vw;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .kaitori-voice .rating {
    max-width: 45%;
  }
}

.kaitori-voice .count-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.375rem;
  line-height: 1;
}

.kaitori-voice .count-rating .devider {
  margin: 0 12px;
  border-left: 1px solid;
}

.kaitori-voice .count-rating .rating-value {
  color: #de1122;
}

.kaitori-voice .count-review {
  font-size: 12px;
}

.kaitori-voice .star-rating {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.kaitori-voice .star-rating .star-rating-front {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #de1122;
}

.kaitori-voice .star-rating .star-rating-back {
  white-space: nowrap;
  color: #ccc;
}

.kaitori-voice .star-rating-front::after,
.kaitori-voice .star-rating-back::after {
  content: "★★★★★";
}

.kaitori-voice .voice-list2 {
  margin-top: 20px;
  padding: 37px 0;
  background: #fef8f8;
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 501px) {
  .kaitori-voice .voice-list2 {
    width: 100%;
    margin: 20px auto 20px;
    padding: 40px 100px;
  }
}

.kaitori-voice .voice-list2 .voice-list-item {
  width: 90vw;
  margin: 0 auto;
  padding: 20px 0;
}

@media screen and (min-width: 501px) {
  .kaitori-voice .voice-list2 .voice-list-item {
    width: 100%;
  }
}

.kaitori-voice .voice-list2 .voice-list-item:first-of-type {
  padding-top: 0;
}

.kaitori-voice .voice-list2 .voice-list-item .voice-img {
  width: 30%;
}

@media screen and (min-width: 501px) {
  .kaitori-voice .voice-list2 .voice-list-item .voice-img {
    width: 15%;
  }
}

.kaitori-voice .voice-list2 .voice-list-item .voice-img img {
  width: 100%;
}

.kaitori-voice .voice-list2 .voice-list-item .voice-default {
  width: 100%;
  font-size: 14px;
}

.kaitori-voice .voice-list2 .voice-list-item .voice-default .count-rating {
  margin-bottom: 15px;
  padding-bottom: 8px;
  color: #de1122;
  font-size: 1.125rem;
  border-bottom: 1px solid #8f8f8f;
}

.kaitori-voice .voice-list2 .voice-list-item .voice-default .voice-ttl {
  font-weight: bold;
  font-size: 1rem;
}

@media screen and (min-width: 501px) {
  .kaitori-voice .voice-list2 .voice-list-item .voice-default .voice-ttl {
    font-size: 1.25rem;
  }
}

.kaitori-voice .voice-list2 .voice-list-item .voice-default .voice-ttl span {
  font-size: 12px;
}

.kaitori-voice .voice-list2 .voice-list-item a.button-more {
  position: relative;
  padding-left: 12px;
  font-weight: bold;
  border-bottom: 2px solid #323232;
}

.kaitori-voice .voice-list2 .voice-list-item a.button-more:before {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #323232;
  border-right: solid 2px #323232;
  left: 0;
}

.kaitori-voice .voice-list2 .voice-list-item:last-child {
  border-bottom: none;
}

@media screen and (min-width: 1000px) {
  .kaitori-voice .voice-list2 .voice-list-item .media {
    padding-bottom: 0;
  }
}

.kaitori-voice .voice-list2 .voice-txt .voiceBox {
  width: 90vw;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 501px) {
  .kaitori-voice .voice-list2 .voice-txt .voiceBox {
    width: 100%;
  }
}

.kaitori-voice .voice-list2 .voice-txt .more {
  padding-right: 2em;
  height: 55px;
  line-height: 55px;
  margin-top: -15px;
  text-align: right;
  color: #323232;
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
}

@media screen and (min-width: 501px) {
  .kaitori-voice .voice-list2 .voice-txt .more {
    padding-right: 0;
  }
}

.kaitori-voice .voice-list2 .voice-txt .more:after {
  content: ">";
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.kaitori-voice .voice-list2 .voice-txt .more.is-active:after {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.kaitori-column a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #323232;
}

@media screen and (min-width: 1000px) {
  .kaitori-column a {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 0;
  }
}

.kaitori-column a .kaitori-info {
  margin-right: 8px;
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (min-width: 1000px) {
  .kaitori-column a .kaitori-info {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
}

.kaitori-column a .kaitori-column-img {
  position: relative;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  overflow: hidden;
}

@media screen and (min-width: 1000px) {
  .kaitori-column a .kaitori-column-img {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }
}

.kaitori-column a .kaitori-column-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}

@media screen and (min-width: 1000px) {
  .kaitori-column a .kaitori-column-img img {
    width: 300px;
    max-width: 300px;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: auto;
    left: auto;
  }
}

.kaitori-faq .kaitori-faq-list {
  margin-bottom: 12px;
}

.kaitori-faq .kaitori-faq-list .faq-icon,
.kaitori-faq .kaitori-faq-list .faq-txt {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .kaitori-faq .kaitori-faq-list .faq-icon,
  .kaitori-faq .kaitori-faq-list .faq-txt {
    font-size: 1rem;
  }
}

.kaitori-greet {
  margin-top: 20px;
}

.kaitori-greet .kaitori-greet-txt {
  margin-bottom: 12px;
  line-height: 2;
}

.kaitori-greet .kaitori-greet-txt span {
  font-size: 14px;
}

@media screen and (min-width: 501px) {
  .kaitori-greet .kaitori-greet-txt span {
    font-size: 1rem;
  }
}

.kaitori-rank .kaitori-rank-list {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.kaitori-rank .kaitori-rank-list .kaitori-rank-ttl {
  padding: 8px 0 4px 29px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#e64778),
    to(#be0d14)
  );
  background: linear-gradient(to right, #e64778, #be0d14);
  border-radius: 4px 4px 0 0;
}

.kaitori-rank .kaitori-rank-list .kaitori-rank-ttl img {
  width: 30px;
  margin-right: 8px;
}

.kaitori-rank .kaitori-rank-list .kaitori-rank-txt {
  padding: 18px 29px;
  line-height: 2;
}

@media screen and (min-width: 501px) {
  .kaitori-rank .kaitori-rank-list .kaitori-rank-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 501px) {
  .kaitori-rank .kaitori-rank-list img {
    margin-right: 12px;
    width: 30%;
  }
}

.kaitori-rank .kaitori-rank-list + .kaitori-rank-list {
  margin-top: 28px;
}

.kaitori-ways img {
  margin: 20px 0;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1000px) {
  .kaitori-ways img {
    display: block;
    width: 50%;
    /* margin: 20px auto; */
  }
}

.kaitori-ways-list h2,
.kaitori-ways-list h3 {
  border-left: 5px solid #de1122;
  margin-top: 20px;
  margin-bottom: 16px;
  padding: 4px 12px;
}

@media screen and (min-width: 501px) {
  .purchase-mv-txt {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    padding-left: 20px;
    color: #fff;
  }
}

.purchase-mv-txt h2 {
  margin: 12px 0 12px;
  font-size: 1.125rem;
}

.purchase-mv-txt h2 br {
  display: none;
}

@media screen and (min-width: 501px) {
  .purchase-mv-txt h2 {
    margin: 0 0 12px;
    font-size: 1.5rem;
  }
  .purchase-mv-txt h2 br {
    display: block;
  }
}

.purchase-mv-txt p {
  font-size: 14px;
}

@media screen and (min-width: 501px) {
  .kaitori-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
  }
  .kaitori-list ul {
    width: 30%;
  }
}

.kaitori .blog-archive-list {
  margin-top: 33px;
}

.kaitori-howto-item {
  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;
  margin: 0 -6px;
}

.kaitori-howto-item > * {
  margin: 0 6px;
}

.kaitori-howto-item-title {
  color: #de1122;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.11em;
  display: inline-block;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .kaitori-howto-item-title {
    font-size: 2rem;
  }
}

.kaitori-howto-item img {
  width: 50%;
}

@media screen and (min-width: 1000px) {
  .kaitori-howto-item img {
    width: 30%;
  }
}

.kaitori-howto-txt {
  margin-top: 36px;
}

.kaitori-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto;
}

.common-kaitori-resuluts {
  background-color: #fef8f8;
  background-image: url("../images/common/dot-border-4.png");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 16px;
  padding-top: 30px;
}

.common-kaitori-resuluts .item-list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.common-kaitori-resuluts .item-list li {
  width: 48%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 501px) {
  .common-kaitori-resuluts .item-list li {
    /* width:24%; */
    width: 19%;
    margin-right: 10px;
  }
}

.common-kaitori-resuluts .item-list li .item-img img {
  max-width: 100%;
  height: auto;
}

.common-kaitori-resuluts .item-list li .kaitoriName {
  font-size: 10px;
  color: #ccc;
  padding-left: 10px;
}

.common-kaitori-resuluts .item-list li .ttl {
  padding-left: 10px;
}

.common-kaitori-resuluts .item-list li .ttl {
  font-size: 11px;
}

@media screen and (min-width: 501px) {
  .common-kaitori-resuluts .item-list li .ttl {
    font-size: 12px;
  }
}

.common-kaitori-resuluts .item-list li .priceBox {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  line-height: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.common-kaitori-resuluts .item-list li .priceBox .left {
  font-size: 10px;
  width: 100%;
  margin-bottom: 5px;
}

@media screen and (min-width: 501px) {
  .common-kaitori-resuluts .item-list li .priceBox .left {
    font-size: 12px;
    width: auto;
    margin-bottom: 0;
  }
}

.common-kaitori-resuluts .item-list li .priceBox .right {
  font-size: 20px;
  width: 100%;
  text-align: right;
}

@media screen and (min-width: 501px) {
  .common-kaitori-resuluts .item-list li .priceBox .right {
    font-size: 20px;
    /* width: auto; */
  }
}

.common-kaitori-resuluts .item-list li .priceBox .right .small {
  font-size: 10px;
  font-weight: normal;
}

.common-kaitori-resuluts .more-item {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #de1122;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 82px;
  border-radius: 50px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.common-kaitori-resuluts .more-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: translateY(-70%) rotate(50deg);
  -ms-transform: translateY(-70%) rotate(50deg);
  transform: translateY(-70%) rotate(50deg);
}

.common-kaitori-resuluts .more-item.is-active::before {
  -webkit-transform: translateY(-30%) rotate(225deg);
  -ms-transform: translateY(-30%) rotate(225deg);
  transform: translateY(-30%) rotate(225deg);
}

.new-item-list li .kaitoriName {
  color: #ccc;
  font-size: 10px;
  text-align: left;
  height: 25px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.common-kaitori-resuluts .new-item-list .priceBox .left {
  font-size: 12px;
  margin-bottom: 0px;
  width: 100%;
  text-align: left;
}

.common-kaitori-resuluts .new-item-list .priceBox .right {
  font-size: 20px;
  width: 100%;
  text-align: right;
  letter-spacing: -0.3px;
}

.common-kaitori-resuluts .new-item-list .ttl {
  font-size: 10px;
  min-height: 58px;
  text-align: left;
  padding-left: 10px;
}

.common-kaitori-resuluts .new-item-list .priceBox .right .small {
  font-size: 10px;
}

/* 
.swiper {
    width: 100%;
    height: 100%;
} */

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 80%;
  display: block;
}

.swiper-wrapper {
  height: auto !important;
}

/* 
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.kaitori-diamond-title {
  padding: 10px;
  position: relative;
  background: #e0f0ff;
  color: #31a6ff;
  font-size: 15px;
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-title {
    display: none;
  }
}

.kaitori-diamond-title::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 40%;
  right: 20px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-top: 8px solid #31a6ff;
}

.kaitori-diamond {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.kaitori-diamond-header {
  padding-top: 40px;
}

.kaitori-diamond-header-titleWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.kaitori-diamond-header-title {
  font-size: 20px;
  color: #0c97ff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-header-title {
    font-size: 40px;
    font-weight: 700;
  }
}

.kaitori-diamond-header-title > * + * {
  margin-top: 16px;
}

.kaitori-diamond-header-title-small {
  font-size: 15px;
  color: #323232;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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 (min-width: 1000px) {
  .kaitori-diamond-header-title-small {
    font-size: 26px;
  }
}

.kaitori-diamond-header-title-small::before {
  position: relative;
  content: "";
  width: 24px;
  height: 1px;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  background: #323232;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-header-title-small::before {
    width: 32px;
    height: 2px;
  }
}

.kaitori-diamond-header-title-small::after {
  position: relative;
  content: "";
  width: 20px;
  height: 1px;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
  background: #323232;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-header-title-small::after {
    width: 32px;
    height: 2px;
  }
}

.kaitori-diamond-header-img {
  max-width: 100%;
  height: auto;
}

.kaitori-diamond-header-img img {
  width: 100%;
}

.kaitori-diamond-header-text {
  font-size: 13px;
  display: block;
  padding: 15px 0;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-header-text {
    padding: 15px 40px;
    font-weight: 600;
  }
}

.kaitori-diamond-content {
  padding: 15px;
  background: #dfefff;
  border-radius: 5px;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content {
    padding: 30px 40px;
  }
}

.kaitori-diamond-content-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: justify;
}

.kaitori-diamond-content-search li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
  letter-spacing: -0.4em;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-search li {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
}

.kaitori-diamond-content-search li::before {
  border-bottom: 4.5px solid #30a6ff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 11px;
  top: 10px;
  width: 0;
}

.kaitori-diamond-content-search li::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid #30a6ff;
  content: "";
  position: absolute;
  right: 11px;
  top: 24px;
  width: 0;
}

.kaitori-diamond-content-search li label {
  width: 30%;
  font-size: 12px;
  letter-spacing: normal;
  background: #30a6ff;
  font-weight: bold;
  border-radius: 5px 0 0 5px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-search li label {
    font-size: 14px;
  }
}

.kaitori-diamond-content-search li select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 10px;
  width: 69%;
  display: inline-block;
  padding: 0 5px;
  background: #fff;
  height: 35px;
  line-height: 35px;
  border: 0;
  border-style: inset;
  outline-color: #30a6ff;
  padding-left: 10px;
  border-radius: 0 5px 5px 0;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-search li select {
    font-size: 13px;
  }
}

.kaitori-diamond-content-buttonWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.kaitori-diamond-content-button {
  background: #de1122;
  color: #fff;
  padding: 10px 50px;
  font-weight: bold;
  border: 0;
  border-radius: 5px;
  -webkit-appearance: none;
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-button {
    padding: 20px 50px;
    font-size: 20px;
  }
  .kaitori-diamond-content-button:hover {
    background: #bd0c1a;
  }
}

.kaitori-diamond-content-price {
  padding: 10px;
  font-size: 10px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  border-radius: 5px;
  background: #fff;
  margin: 35px 0;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-price {
    height: 270px;
    padding: 20px;
  }
}

.kaitori-diamond-content-price-title {
  color: #323232;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-price-title {
    font-size: 14px;
  }
}

.kaitori-diamond-content-price-title span {
  color: #30a6ff;
  font-size: 14px;
}

.kaitori-diamond-content-price-table {
  margin-bottom: 15px;
  border-collapse: separate;
  border-spacing: 5px;
}

.kaitori-diamond-content-price-table tr:first-child td {
  background: #30a6ff;
  color: #fff;
}

.kaitori-diamond-content-price-table td {
  background: #dfefff;
  padding: 5px 0;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-price-table td {
    font-size: 14px;
  }
}

.kaitori-diamond-content-price-table td:first-child {
  background: #30a6ff;
  color: #fff;
  width: 30px;
}

@media screen and (min-width: 1000px) {
  .kaitori-diamond-content-price-table td:first-child {
    width: 70px;
  }
}

.kaitori-diamond-attention p {
  font-size: 10px;
  line-height: 100%;
  margin-bottom: 5px;
}

.kaitori-diamond .the_active {
  -webkit-animation-name: bg-color;
  animation-name: bg-color;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes bg-color {
  0% {
    background-color: #f7bf77;
  }
  50% {
    background-color: #dfefff;
  }
  100% {
    background-color: #f7bf77;
  }
}

@keyframes bg-color {
  0% {
    background-color: #f7bf77;
  }
  50% {
    background-color: #dfefff;
  }
  100% {
    background-color: #f7bf77;
  }
}

.diamond-4c img {
  max-width: 100%;
  height: auto;
}

.diamond-4c ul.tabBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin: 30px auto;
}

.diamond-4c ul.tabBtn li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
  padding: 10px 10px;
  min-width: none;
  max-height: 100px;
  width: 45%;
  border-radius: 5px;
  background-position: center;
  background-color: #31a6ff;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 2px 2px 5px #999;
  box-shadow: 2px 2px 5px #999;
  margin-bottom: 15px;
}

@media screen and (min-width: 501px) {
  .diamond-4c ul.tabBtn li {
    max-width: 170px;
  }
}

.diamond-4c ul.tabBtn li img {
  height: 50%;
  width: auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  z-index: 1;
}

.diamond-4c ul.tabBtn li .label {
  margin-left: 3%;
  line-height: 1.1;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.diamond-4c ul.tabBtn li p {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 501px) {
  .diamond-4c ul.tabBtn li p {
    font-size: 26px;
  }
}

.diamond-4c ul.tabBtn li span {
  color: white;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 501px) {
  .diamond-4c ul.tabBtn li span {
    font-size: 14px;
  }
}

.diamond-4c ul.tabBtn li:hover {
  -webkit-box-shadow: 2px;
  box-shadow: 2px;
}

.diamond-4c ul.tabBtn li:hover:before {
  opacity: 1;
}

.diamond-4c ul.tabBtn li:hover:after {
  bottom: 0;
  opacity: 1;
}

.diamond-4c ul.tabBtn li:active {
  -webkit-box-shadow: 2px;
  box-shadow: 2px;
}

.diamond-4c ul.tabBtn li:active:before {
  opacity: 1;
}

.diamond-4c ul.tabBtn li:active:after {
  bottom: 0;
  opacity: 1;
}

.diamond-4c ul.tabBtn li:not(.active):before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: block;
  border-top: solid 0.5em #ffe200;
  border-right: solid 0.4em transparent;
  border-bottom: solid 0.5em transparent;
  border-left: solid 0.4em transparent;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 20%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.diamond-4c ul.tabBtn li:not(.active):hover:after {
  content: "More Detail";
  opacity: 1;
}

.diamond-4c ul.tabBtn li:not(.active):active:after {
  content: "More Detail";
  opacity: 1;
}

.diamond-4c ul.tabBtn li:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: block;
  padding: 70% 0 0.9em;
  width: calc(100% + 1px);
  background: #31a6ff;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#00307e),
    color-stop(65%, #31a6ff)
  );
  background: linear-gradient(0deg, #00307e 0%, #31a6ff 65%);
  color: #ffe200;
  font-size: 10px;
  text-align: center;
  position: absolute;
  left: 0;
  overflow: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}

.diamond-4c ul.tabBtn li:before {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}

.diamond-4c ul.tabBtn li.active {
  -webkit-box-shadow: 2px;
  box-shadow: 2px;
}

.diamond-4c ul.tabBtn li.active:after {
  bottom: 0;
  opacity: 1;
}

.diamond-4c .tabArea {
  background: #e0f0ff;
  border: transparent;
  border-radius: 10px;
}

.diamond-4c .tabArea .inner {
  padding: 0 25px;
  display: none;
  display: inline-block;
}

@media screen and (min-width: 501px) {
  .diamond-4c .tabArea .inner {
    padding: 0 50px;
  }
}

.diamond-4c .tabArea .inner h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #31a6ff;
  text-align: center;
  padding: 15px 0 0 0;
  font-weight: bold !important;
}

@media screen and (min-width: 501px) {
  .diamond-4c .tabArea .inner h3 {
    font-size: 46px;
  }
}

.diamond-4c .tabArea .inner h3 span {
  font-size: 18px;
  display: block;
}

@media screen and (min-width: 501px) {
  .diamond-4c .tabArea .inner h3 span {
    display: inline;
    font-size: 30px;
  }
}

.diamond-4c .tabArea .inner .closeBtn {
  display: block;
  margin: 0 auto 20px;
  padding: 10px;
  font-size: 15px;
  width: 110px;
  border-radius: 1rem;
  background: #31a6ff;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  cursor: pointer;
}

.diamond-4c .tabArea .inner .closeBtn:active,
.diamond-4c .tabArea .inner .closeBtn:hover {
  background: #00307e;
}

.diamond-4c .tabArea .inner .content {
  font-size: 11px;
  height: 200px;
  overflow-y: scroll;
  padding: 1px 20px 15px;
  background: white;
  border: transparent;
  border-radius: 5px;
}

.diamond-4c .tabArea .inner .text {
  line-height: 1.7;
  font-size: 14px;
  margin: 15px 0 15px;
}

.diamond-4c .tabArea .inner .faq_box {
  margin: 15px;
}

.diamond-4c .tabArea .inner .faq_box .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #31a6ff;
  margin-bottom: 5px;
}

.diamond-4c .tabArea .inner .faq_box .question .ico {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  min-width: 1.2em;
}

.diamond-4c .tabArea .inner .faq_box .question .txt {
  font-size: 15px;
  font-weight: bold;
}

.diamond-4c .tabArea .inner .faq_box .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.diamond-4c .tabArea .inner .faq_box .answer .ico {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  min-width: 1.2em;
}

.diamond-4c .tabArea .inner .faq_box .answer .txt {
  font-size: 14px;
}

.diamond-4c .tabArea .inner .fag_gia {
  margin: 34px 0 55px;
}

.diamond-4c .tabArea .inner .fag_gia h4 {
  text-align: center;
  font-size: 20px;
  font-weight: bold !important;
  color: #31a6ff;
  border-bottom: 2px solid #31a6ff;
  padding-bottom: 3px;
  margin-bottom: 13px;
}

@media screen and (min-width: 501px) {
  .diamond-4c .tabArea .inner .fag_gia h4 {
    font-size: 30px;
  }
}

.diamond-4c .tabArea .inner .shop_gia p {
  margin-bottom: 21px;
}

.tentouKaitoriRecommend {
  color: #de1122;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  margin-top: 10px;
}

@media screen and (min-width: 501px) {
  .tentouKaitoriRecommend {
    display: none;
  }
}

.tentouKaitoriRecommend > .inner {
  position: relative;
}

.tentouKaitoriRecommend > .inner:before,
.tentouKaitoriRecommend > .inner:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #de1122;
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}

.tentouKaitoriRecommend > .inner:before {
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.tentouKaitoriRecommend > .inner:after {
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
}

.tentouKaitori {
  margin: 7px 0;
}

@media screen and (min-width: 501px) {
  .tentouKaitori {
    margin: 20px 0;
  }
}

.tentouKaitori .left {
  width: 38%;
  margin-right: 1em;
}

@media screen and (min-width: 501px) {
  .tentouKaitori .left {
    width: 200px;
    margin-right: 20px;
  }
}

.tentouKaitori .left img {
  max-width: 100%;
  height: auto;
}

.tentouKaitori .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 1000px) {
  .tentouKaitori .right {
    width: 675px;
  }
}

.tentouKaitori .right .txt1 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (min-width: 501px) {
  .tentouKaitori .right .txt1 {
    font-size: 18px;
  }
}

.tentouKaitori .right .txt1 .br-sp {
  display: block;
}

@media screen and (min-width: 501px) {
  .tentouKaitori .right .txt1 .br-sp {
    display: none;
  }
}

.tentouKaitori .right .kaitoriName {
  font-size: 40px;
}

@media screen and (min-width: 501px) {
  .tentouKaitori .right .kaitoriName {
    font-size: 48px;
  }
}

.tentouKaitori .right .tentouKaitoriPoint_pc li {
  display: none;
}

@media screen and (min-width: 501px) {
  .tentouKaitori .right .tentouKaitoriPoint_pc li {
    display: block;
    background: #de1122;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 4px;
    width: 210px;
    font-size: 19px;
    margin-right: 15px;
  }
}

.tentouKaitoriPoint_sp {
  margin-bottom: 15px;
}

@media screen and (min-width: 501px) {
  .tentouKaitoriPoint_sp {
    display: none;
  }
}

.tentouKaitoriPoint_sp li {
  background: #de1122;
  color: #fff;
  padding: 7px 0;
  border-radius: 4px;
  margin-bottom: 7px;
  text-align: center;
  font-size: 18px;
}

.takuhaiSyuttyouKaitori {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

.takuhaiSyuttyouKaitori > .left {
  margin-bottom: 40px;
}

@media screen and (min-width: 501px) {
  .takuhaiSyuttyouKaitori > .left {
    width: 48%;
  }
}

.takuhaiSyuttyouKaitori > .left .head {
  margin-bottom: 15px;
}

.takuhaiSyuttyouKaitori > .left .head > .left {
  width: 30%;
  margin-right: 10px;
}

.takuhaiSyuttyouKaitori > .left .head > .left img {
  max-width: 100%;
  height: auto;
}

.takuhaiSyuttyouKaitori > .left .head .right .txt1 {
  font-size: 17px;
}

.takuhaiSyuttyouKaitori > .left .head .right .kaitoriName {
  font-size: 20px;
  text-align: left;
}

@media (min-width: 1000px) {
  .takuhaiSyuttyouKaitori > .left .head .right .kaitoriName {
    font-size: 32px;
  }
}

.takuhaiSyuttyouKaitori > .left .point {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.takuhaiSyuttyouKaitori > .left .point li {
  width: 48%;
  background: #de1122;
  color: #fff;
  font-size: 16px;
  margin-right: 5px;
  text-align: center;
  padding: 10px 0;
  border-radius: 4px;
  margin-bottom: 7px;
}

.takuhaiSyuttyouKaitori > .left .linkBtn {
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  margin-top: 15px;
}

.takuhaiSyuttyouKaitori > .left .linkBtn a {
  display: block;
  padding: 10px 0;
  color: #000;
}

.takuhaiSyuttyouKaitori > .right {
  margin-bottom: 40px;
}

@media screen and (min-width: 501px) {
  .takuhaiSyuttyouKaitori > .right {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.takuhaiSyuttyouKaitori > .right .head {
  margin-bottom: 15px;
}

.takuhaiSyuttyouKaitori > .right .head > .left {
  width: 30%;
  margin-right: 10px;
}

.takuhaiSyuttyouKaitori > .right .head > .left img {
  max-width: 100%;
  height: auto;
}

.takuhaiSyuttyouKaitori > .right .head .right .txt1 {
  font-size: 17px;
}

.takuhaiSyuttyouKaitori > .right .head .right .kaitoriName {
  font-size: 20px;
  text-align: left;
}

@media (min-width: 1000px) {
  .takuhaiSyuttyouKaitori > .right .head .right .kaitoriName {
    font-size: 32px;
  }
}

.takuhaiSyuttyouKaitori > .right .point {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.takuhaiSyuttyouKaitori > .right .point li {
  width: 48%;
  background: #de1122;
  color: #fff;
  font-size: 16px;
  margin-right: 5px;
  text-align: center;
  padding: 10px 0;
  border-radius: 4px;
  margin-bottom: 7px;
}

.takuhaiSyuttyouKaitori > .right .linkBtn {
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  margin-top: 15px;
}

.takuhaiSyuttyouKaitori > .right .linkBtn a {
  display: block;
  padding: 10px 0;
  color: #000;
}

.kaitori-resuluts .detailBtn {
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
}

.kaitori-resuluts .detailBtn:after {
  content: ">";
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (min-width: 501px) {
  .kaitori-resuluts .detailBtn:after {
    margin-left: 5px;
  }
}

.kaitori-resuluts .detailBtn.is-active:after {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.kaitori-resuluts .detailBtn:hover {
  background: #de1122;
  color: #fff;
}

.kaitori-resuluts .acMenuContents {
  display: none;
}

.media {
  position: relative;
}

.media img.media-capture-img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .media img.media-capture-img {
    width: 328px;
  }
}

@media screen and (min-width: 1000px) {
  .media img.media-capture-img:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 1000px) {
  .media .media-logo {
    display: block;
  }
}

.media .popup {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0.6;
}

.media.show-popup .popup {
  opacity: 1;
  visibility: visible;
}

.media.show-popup .popup > iframe {
  width: 100%;
  position: absolute;
  top: 51px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.media .close {
  width: 620px;
  position: relative;
  margin: 50px auto 0;
}

.section-message {
  background: #de1022;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 15px;
  font-weight: normal;
}

.section-message span {
  color: #ffff00;
  font-weight: bold;
}

.shop,
.shop-detail {
  font-size: 12px !important;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 501px) {
  .shop,
  .shop-detail {
    font-size: 1rem;
  }
}

.shop section,
.shop-detail section {
  padding-bottom: 12px;
}

.shop section h2,
.shop-detail section h2 {
  margin-bottom: 0;
}

.shop .main-section,
.shop-detail .main-section {
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 501px) {
  .shop .main-section,
  .shop-detail .main-section {
    width: 100%;
  }
}

.shop .shop-detail-h1,
.shop-detail .shop-detail-h1 {
  margin: 20px 0;
}

.shop-detail .main-section {
  padding-top: 0;
}

.shop-detail-link {
  margin-top: 24px;
  text-align: center;
}

.shop-detail-link a {
  border-radius: 30px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  color: #de1122;
  display: inline-block;
  font-weight: bold;
  padding: 12px 32px 12px 20px;
  position: relative;
}

.shop-detail-link a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-left: solid 2px #de1122;
  right: 12px;
}

.shop-catch {
  margin-bottom: 20px;
  line-height: 1.5;
}

.shop-catch .ttl-box-red {
  display: block;
}

.shop-catch .border-col-3 li .border-col-item {
  padding: 16px 8px 12px;
  font-size: 12px;
}

.shop-catch .border-col-3 li .shop-catch-col-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 33px;
  margin-bottom: 4px;
}

.shop-catch .border-col-3 li .shop-catch-col-img img {
  margin: 0 auto;
}

.shop-search-keyword {
  margin-bottom: 20px;
  background: #fcf7f0;
}

.shop-search-keyword .ttl-box-red {
  display: block;
  padding: 8px 0 8px 13px;
  border-radius: 4px 4px 0 0;
}

.shop-search-keyword .search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shop-search-keyword .search-form form input:first-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px 0 8px 13px;
  border: none;
}

.shop-search-keyword .search-form form input:last-of-type {
  padding: 12px;
  background: #de1122;
}

.shop-search-inner {
  padding: 18px 31px 19px 31px;
}

.shop-area .ttl-box-red {
  width: 100%;
}

@media screen and (min-width: 501px) {
  .shop-area .shop-area-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.shop-area .shop-area-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.125rem;
  border-bottom: 2px solid #de1122;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 501px) {
  .shop-area .shop-area-list li {
    width: 48%;
    margin-bottom: 20px;
  }
}

.shop-area .shop-area-list li:before {
  background-color: #de1122;
  height: 22px;
  width: 3px;
  content: "";
}

.shop-area .shop-area-list li:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-right: solid 2px #de1122;
}

.shop-area .shop-area-list li a,
.shop-area .shop-area-list li span {
  padding: 8px 0 8px 8px;
  width: 100%;
  color: #de1122;
  font-weight: bold;
}

.shop-area-city .shop-area-city-tll {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  border-bottom: 2px solid #de1122;
}

.shop-area-city .shop-area-city-tll span {
  padding: 8px 0 8px 8px;
}

.shop-area-city .shop-area-city-tll:before {
  height: 22px;
  width: 3px;
  background-color: #de1122;
  content: "";
}

.shop-area-city .shop-area-city-item {
  padding: 12px 0;
  border-bottom: 1px solid #8f8f8f;
}

.shop-area-city .shop-area-city-item .shop-name {
  font-size: 1rem;
}

.shop-area-city .shop-area-city-item .shop-tel {
  display: inline-block;
  margin-bottom: 4px;
  border-bottom: 2px solid #de1122;
  font-size: 1.125rem;
}

.shop-area-city .shop-area-city-item .shop-address,
.shop-area-city .shop-area-city-item .shop-opening {
  font-size: 12px;
}

.shop-area-city .shop-area-city-item .shop-address br {
  display: none;
}

.shop-area-city .shop-area-city-item .shop-detail-btn {
  padding-right: 20px;
  font-size: 14px;
}

.shop-area-city .shop-area-city-item .shop-detail-btn:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-right: solid 2px #de1122;
}

.shop-area-city .shop-area-city-item .shop-detail-btn + .no-link {
  pointer-events: none;
}

.shop-area-city .shop-area-city-item .shop-att {
  margin: 8px 0;
  padding: 8px;
  background: #fef8f8;
  letter-spacing: 0.11em;
}

.shop-info-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
}

.shop-info-tab .shop-tab {
  display: inline-block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #323232;
  border: 1px solid #323232;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
}

.shop-info-tab .shop-tab:first-of-type {
  border-right: none;
}

.shop-info-tab .shop-tab.active {
  background-color: #fef8f8;
}

.shop-tab-content-area {
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 30px;
  text-align: center;
  background: #fef8f8;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area {
    width: 100%;
  }
}

.shop-tab-content-area .shop-tab-content {
  display: none;
  padding: 20px 0;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area .shop-tab-content {
    padding: 30px;
  }
}

.shop-tab-content-area .shop-tab-content table {
  width: 90vw;
  margin: 0 auto 12px;
  text-align: left;
  font-size: 14px;
  border-collapse: collapse;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area .shop-tab-content table {
    width: 100%;
  }
}

.shop-tab-content-area .shop-tab-content table tr {
  padding: 12px 0;
  border-bottom: 1px solid #8f8f8f;
}

.shop-tab-content-area .shop-tab-content table tr th {
  width: 30%;
  color: #de1122;
  white-space: nowrap;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area .shop-tab-content table tr th {
    width: 14%;
  }
}

.shop-tab-content-area .shop-tab-content table tr td {
  padding: 12px;
}

.shop-tab-content-area .shop-tab-content table tr td .shop-tab-content-tel {
  font-size: 17px;
  color: #323232;
}

.shop-tab-content-area
  .shop-tab-content
  table
  tr
  td
  .shop-tab-content-linkWrapper {
  display: block;
  margin-top: 10px;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area
    .shop-tab-content
    table
    tr
    td
    .shop-tab-content-linkWrapper {
    margin-top: 0;
  }
}

.shop-tab-content-area
  .shop-tab-content
  table
  tr
  td
  .shop-tab-content-linkWrapper
  > *
  + * {
  margin-top: 10px;
}

.shop-tab-content-area
  .shop-tab-content
  table
  tr
  td
  .shop-tab-content-linkWrapper
  .shop-tab-content-link {
  display: inline-block;
  font-size: 12px;
  padding: 0.6em 0.75em;
  color: #de1122;
  border: 2px solid #de1122;
  border-radius: 2.5px;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area
    .shop-tab-content
    table
    tr
    td
    .shop-tab-content-linkWrapper
    .shop-tab-content-link {
    font-size: 13px;
  }
}

.shop-tab-content-area .shop-tab-content .map-img-guide ul {
  width: 90vw;
  margin: 0 auto 12px;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area .shop-tab-content .map-img-guide ul {
    width: 100%;
  }
}

.shop-tab-content-area .shop-tab-content .map-img-guide ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}

.shop-tab-content-area
  .shop-tab-content
  .map-img-guide
  ul
  li
  .map-img-guide-number {
  position: absolute;
  top: -15px;
  left: 0;
  width: 30px;
  height: 30px;
  color: #de1122;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #de1122;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}

.shop-tab-content-area
  .shop-tab-content
  .map-img-guide
  ul
  li
  .map-img-guide-img {
  position: relative;
  width: 40%;
  margin-right: 12px;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area
    .shop-tab-content
    .map-img-guide
    ul
    li
    .map-img-guide-img {
    width: 30%;
  }
}

.shop-tab-content-area
  .shop-tab-content
  .map-img-guide
  ul
  li
  .map-img-guide-img
  img {
  width: 100%;
}

.shop-tab-content-area
  .shop-tab-content
  .map-img-guide
  ul
  li
  .map-img-guide-img:after {
  content: "";
  display: inline-block;
  bottom: -30px;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  background-image: url("../images/icon/double-arrow.svg");
  background-size: contain;
}

.shop-tab-content-area .shop-tab-content .map-img-guide ul li:last-of-type {
  margin-bottom: 0;
}

.shop-tab-content-area .shop-tab-content .map-img-guide ul li p {
  width: 60%;
  font-size: 12px;
  text-align: left;
}

@media screen and (min-width: 501px) {
  .shop-tab-content-area .shop-tab-content .map-img-guide ul li p {
    font-size: 14px;
  }
}

.shop-tab-content-area
  .shop-tab-content
  .map-img-guide
  ul
  li:last-of-type
  .map-img-guide-img:after {
  display: none;
}

.shop-tab-content-area .shop-tab-content.show {
  display: block;
}

.intro-broken {
  background-image: url("../images/shop/detail-broken-ttl-img.jpg");
  background-position: right 0px top 0%;
  background-size: 40% auto;
  margin-top: 120px;
}

@media screen and (min-width: 1000px) {
  .intro-broken {
    background-position: right 35% top 0%;
    background-size: 18% auto;
  }
}

.intro-broken .intro-sub,
.intro-broken .intro-main {
  display: table;
}

.intro-broken ul.detail-broken-list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.intro-broken ul.detail-broken-list li {
  width: 48%;
  margin-bottom: 12px;
}

@media screen and (min-width: 1000px) {
  .intro-broken ul.detail-broken-list li {
    width: 24%;
  }
}

.intro-broken ul.detail-broken-list li h3 {
  padding: 8px;
  color: #fff;
  font-size: 12px;
  background: #de1122;
}

.intro-broken ul.detail-broken-list li h4 {
  margin: 4px 0;
  color: #de1122;
  font-size: 14px;
}

.intro-broken ul.detail-broken-list li img {
  width: 100%;
}

.intro-broken .detail-confirm {
  background-color: #fef8f8;
  padding: 28px 31px;
}

@media screen and (min-width: 1000px) {
  .intro-broken .detail-confirm {
    padding: 40px 150px;
  }
}

.intro-broken .detail-confirm .detail-confirm-list ul {
  margin-bottom: 8px;
}

@media screen and (min-width: 1000px) {
  .intro-broken .detail-confirm .detail-confirm-list ul {
    text-align: center;
  }
}

.intro-broken .detail-confirm .detail-confirm-list ul li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 8px 4px 18px;
  color: #de1122;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1000px) {
  .intro-broken .detail-confirm .detail-confirm-list ul li {
    font-size: 1rem;
  }
}

.intro-broken .detail-confirm .detail-confirm-list ul li:before {
  content: "";
  background-image: url(../images/icon/list-check-icon.svg);
  height: 11px;
  left: 0;
  position: absolute;
  vertical-align: middle;
  width: 14px;
}

.intro-broken .detail-confirm .detail-confirm-list ul li.confirm-list-small {
  color: #323232;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .intro-broken .detail-confirm .detail-confirm-list ul li.confirm-list-small {
    font-size: 14px;
  }
}

.intro-broken .detail-confirm .detail-confirm-list p {
  margin-bottom: 12px;
  padding-bottom: 4px;
  font-size: 0.8125rem;
  border-bottom: 2px dotted #323232;
}

@media screen and (min-width: 1000px) {
  .intro-broken .detail-confirm .detail-confirm-list p {
    font-size: 1rem;
  }
}

.intro-broken .detail-confirm .detail-confirm-txt {
  font-size: 12px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .intro-broken .detail-confirm .detail-confirm-txt {
    font-size: 14px;
  }
}

.intro-broken .detail-confirm .detail-confirm-txt .detail-confirm-txt-att {
  font-weight: normal;
}

.intro-broken .detail-confirm-border {
  width: 12%;
  height: 1px;
  border: 1px solid #323232;
  margin: 0 12px;
}

.store-detail-guide .shop-att {
  margin: 8px 0 16px;
  padding: 8px;
  background: #fef8f8;
  letter-spacing: 0.11em;
}

.store-detail-guide .store-guide-slick {
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 501px) {
  .store-detail-guide .store-guide-slick {
    width: 100%;
  }
}

.store-detail-guide .store-guide-slick img {
  padding: 0 12px;
}

.store-detail-guide .store-map {
  text-align: center;
}

.store-detail-guide .store-map .acf-map {
  max-width: 100vw;
  margin: 24px calc(50% - 50vw) 10px;
  width: 100vw;
  height: 248px;
}

@media screen and (min-width: 1000px) {
  .store-detail-guide .store-map .acf-map {
    max-width: 950px;
    width: 100%;
    margin: 32px auto;
    height: 400px;
  }
}

.store-detail-guide .store-map .acf-map img {
  max-width: inherit !important;
}

.store-detail-guide .store-map .store-map-btn-list a {
  width: 100%;
  max-width: 350px;
  padding: 10px;
  background: #de1122;
  color: #fff;
  position: relative;
  border: none;
}

.store-detail-guide .store-map .store-map-btn-list a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.store-detail-guide .store-map a {
  display: inline-block;
  padding: 4px;
  margin: 0 4px;
  width: 47%;
  color: #323232;
  font-size: 12px;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .store-detail-guide .store-map a {
    width: 65%;
    margin-bottom: 8px;
  }
}

.shop-voice .rating {
  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;
  padding: 14px 0;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  background-clip: border-box;
}

@media screen and (min-width: 1000px) {
  .shop-voice .rating {
    max-width: 60%;
    margin: 0 auto;
  }
}

.shop-voice .count-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.375rem;
  line-height: 1;
}

.shop-voice .count-rating .devider {
  margin: 0 12px;
  border-left: 1px solid;
}

.shop-voice .count-review {
  font-size: 12px;
}

.shop-voice .star-rating {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.shop-voice .star-rating .star-rating-front {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #de1122;
}

.shop-voice .star-rating .star-rating-back {
  white-space: nowrap;
  color: #ccc;
}

.shop-voice .star-rating-front::after,
.shop-voice .star-rating-back::after {
  content: "★★★★★";
}

.shop-voice .shop-voice-list {
  margin-top: 20px;
  padding: 37px 0;
  background: #fef8f8;
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 501px) {
  .shop-voice .shop-voice-list {
    width: 100%;
    margin: 20px auto 20px;
    padding: 40px 100px;
  }
}

.shop-voice .shop-voice-list .shop-voice-list-item {
  width: 90vw;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #8f8f8f;
}

@media screen and (min-width: 501px) {
  .shop-voice .shop-voice-list .shop-voice-list-item {
    width: 100%;
  }
}

.shop-voice .shop-voice-list .shop-voice-list-item:first-of-type {
  padding-top: 0;
}

.shop-voice .shop-voice-list .shop-voice-list-item .voice-img {
  width: 30%;
}

@media screen and (min-width: 501px) {
  .shop-voice .shop-voice-list .shop-voice-list-item .voice-img {
    width: 15%;
  }
}

.shop-voice .shop-voice-list .shop-voice-list-item .voice-img img {
  width: 100%;
}

.shop-voice .shop-voice-list .shop-voice-list-item .voice-default {
  width: 65%;
  font-size: 14px;
}

@media screen and (min-width: 1000px) {
  .shop-voice .shop-voice-list .shop-voice-list-item .voice-default {
    width: 80%;
  }
}

.shop-voice
  .shop-voice-list
  .shop-voice-list-item
  .voice-default
  .count-rating {
  margin-bottom: 8px;
  padding-bottom: 8px;
  color: #de1122;
  font-size: 1.125rem;
  border-bottom: 1px solid #8f8f8f;
}

.shop-voice .shop-voice-list .shop-voice-list-item .voice-default .voice-ttl {
  font-weight: normal;
}

.shop-voice
  .shop-voice-list
  .shop-voice-list-item
  .voice-default
  .voice-ttl
  span {
  font-size: 12px;
}

.shop-voice .shop-voice-list .shop-voice-list-item a.button-more {
  position: relative;
  padding-left: 12px;
  font-weight: bold;
  border-bottom: 2px solid #323232;
}

.shop-voice .shop-voice-list .shop-voice-list-item a.button-more:before {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom: solid 2px #323232;
  border-right: solid 2px #323232;
  left: 0;
}

.shop-voice .shop-voice-list .shop-voice-list-item:last-child {
  border-bottom: none;
}

@media screen and (min-width: 1000px) {
  .shop-voice .shop-voice-list .shop-voice-list-item .media {
    padding-bottom: 0;
  }
}

.shop-voice .shop-kaitori-menu {
  position: relative;
  padding: 25px;
  background-image: url("../images/shop/kaitori-satei-menu-bg.jpeg");
  background-size: cover;
  letter-spacing: 0.01em;
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 501px) {
  .shop-voice .shop-kaitori-menu {
    width: 100%;
  }
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .shop-voice .shop-kaitori-menu {
    padding: 15px;
  }
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner {
  padding: 25px;
  background: white;
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner > img {
  display: block;
  width: 210px;
  margin: 0 auto;
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner .shop-kaitori-menu-ttl {
  margin: 5px 0 20px;
  text-align: center;
  font-size: 25px;
  font-weight: bold !important;
}

@media screen and (min-width: 1000px) {
  .shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1000px) {
  .shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul li {
    width: 48%;
  }
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul li + li {
  margin-top: 20px;
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul li img {
  width: 90px;
  margin-left: 12px;
}

.shop-voice
  .shop-kaitori-menu
  .shop-kaitori-menu-inner
  ul
  li
  .shop-kaitori-menu-number {
  font-size: 1.125rem;
  font-weight: bold !important;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .shop-voice
    .shop-kaitori-menu
    .shop-kaitori-menu-inner
    ul
    li
    .shop-kaitori-menu-number {
    font-size: 1rem;
  }
}

.shop-voice
  .shop-kaitori-menu
  .shop-kaitori-menu-inner
  ul
  li
  .shop-kaitori-menu-number
  span {
  margin-right: 15px;
  color: #000;
  font-size: 2.25rem;
  font-weight: bold;
}

@media screen and (min-width: 0px) and (max-width: 320px) {
  .shop-voice
    .shop-kaitori-menu
    .shop-kaitori-menu-inner
    ul
    li
    .shop-kaitori-menu-number
    span {
    font-size: 1.75rem;
  }
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul li hr {
  width: 24px;
  margin: 5px 0 10px;
}

.shop-voice .shop-kaitori-menu .shop-kaitori-menu-inner ul li p {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}

.shop-voice .free_ribbon {
  display: inline-block;
  position: absolute;
  top: 0;
  margin: 0;
  padding: 20px 0;
  z-index: 2;
  width: 70px;
  text-align: center;
  font-size: 25px;
  color: white;
  background: #da172b;
  letter-spacing: 2px;
}

.shop-voice .free_ribbon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 35px solid #da172b;
  border-right: 35px solid #da172b;
  border-bottom: 6px solid transparent;
}

.shop-voice .kaitori-satei-menu-text {
  width: auto;
}

.shop-voice .kaitori-satei-menu-img {
  width: auto;
}

.shop-three-features .feature-title {
  margin: 0 0 12px 100px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.11em;
}

.shop-three-features .feature-number-box {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border: 2px solid #da172c;
  font-size: 9px;
  font-weight: bold;
  line-height: 0.7;
  background-color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-three-features .feature-number-box span {
  font-size: 2.125rem;
  line-height: 1.2;
}

.shop-three-features .feature-desc {
  font-size: 12px;
}

.shop-three-features .shop-feature-item + .shop-feature-item {
  margin-top: 20px;
}

@media screen and (min-width: 1000px) {
  .shop-three-features ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .shop-three-features ul li {
    width: 31%;
  }
  .shop-three-features ul li .feature-title {
    font-size: 1.25rem;
  }
  .shop-three-features ul .shop-feature-item + .shop-feature-item {
    margin-top: 0;
  }
}

.shop-news .shop-news-comment {
  margin-top: 20px;
  padding: 12px;
  background: #fcf7f0;
}

.shop-news .shop-news-comment .shop-news-comment-inner {
  padding: 12px;
  background: #fff;
}

.shop-news .shop-news-comment .shop-news-comment-inner .shop-news-ttl {
  padding: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: #de1122;
}

.shop-news .shop-news-comment .shop-news-comment-inner .shop-news-txt {
  margin-top: 8px;
  font-size: 12px;
}

.shop-news p {
  line-height: 2;
}

@media screen and (min-width: 501px) {
  .detail-st-purchase ul.detail-st-purchase-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1000px) {
  .detail-st-purchase ul.detail-st-purchase-list {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.detail-st-purchase ul.detail-st-purchase-list > li {
  margin-bottom: 12px;
  padding: 12px;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 501px) {
  .detail-st-purchase ul.detail-st-purchase-list > li {
    width: 48%;
    margin-bottom: 5%;
  }
}

@media screen and (min-width: 1000px) {
  .detail-st-purchase ul.detail-st-purchase-list > li {
    width: 24%;
    min-height: 470px;
  }
}

.detail-st-purchase ul.detail-st-purchase-list > li > p {
  font-size: 12px;
  line-height: 2;
}

@media screen and (min-width: 1000px) {
  .detail-st-purchase ul.detail-st-purchase-list > li > p {
    font-size: 14px;
  }
}

.detail-st-purchase ul.detail-st-purchase-list .accordion .accordion-head a {
  color: #de1122;
  border-bottom: 2px solid #de1122;
  font-size: 1rem;
}

.detail-st-purchase
  ul.detail-st-purchase-list
  .accordion
  .accordion-head
  a:before,
.detail-st-purchase
  ul.detail-st-purchase-list
  .accordion
  .accordion-head
  a:after {
  left: 0;
}

.detail-st-purchase ul.detail-st-purchase-list .detail-st-purchase-ttl {
  font-size: 1.375rem;
}

.detail-st-purchase ul.ex-price-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #8f8f8f;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 1000px) {
  .detail-st-purchase ul.ex-price-list > li {
    display: block;
  }
  .detail-st-purchase ul.ex-price-list > li > p {
    text-align: right;
  }
}

.detail-st-purchase ul.ex-price-list > li img {
  width: 30%;
  margin-right: 12px;
}

.shop-ex-purchase .shop-ex-purchase-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shop-ex-purchase .shop-ex-purchase-list li {
  width: 32%;
  margin-bottom: 2%;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
}

@media screen and (min-width: 1000px) {
  .shop-ex-purchase .shop-ex-purchase-list li {
    width: 15%;
  }
}

.shop-ex-purchase .shop-ex-purchase-list li img {
  width: 100%;
}

.shop-ex-purchase .shop-ex-purchase-list li .shop-ex-purchase-info {
  padding: 8px;
}

.shop-ex-purchase
  .shop-ex-purchase-list
  li
  .shop-ex-purchase-info
  .shop-ex-purchase-price {
  font-size: 14px;
}

.shop-ex-purchase
  .shop-ex-purchase-list
  li
  .shop-ex-purchase-info
  .shop-ex-purchase-detail {
  font-size: 9px;
}

.shop-top-bnr {
  margin: 20px 0;
}

.shop-top-bnr .slash-title {
  margin-bottom: 8px;
  font-size: 1rem;
}

@media screen and (min-width: 501px) {
  .shop-top-bnr .slash-title {
    max-width: 500px;
    margin: 0 auto;
  }
}

.shop-top-bnr img {
  width: 100%;
  margin-bottom: 8px;
}

@media screen and (min-width: 501px) {
  .shop-top-bnr img {
    display: block;
    max-width: 500px;
    margin: 12px auto;
  }
}

@media screen and (min-width: 501px) {
  .shop-top-bnr p {
    text-align: center;
  }
}

.shop-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.blog .breadcrumbs {
  padding-top: 70px;
}

@media screen and (min-width: 1000px) {
  .blog .breadcrumbs {
    padding-top: 120px;
  }
}

.blog .common-tab {
  margin: 40px 0 30px;
}

.blog .blog-comment h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  border-bottom: 2px solid #de1122;
  color: #de1122;
}

.blog .blog-comment h2 span {
  padding: 8px 0 8px 8px;
}

.blog .blog-comment h2:before {
  height: 22px;
  width: 3px;
  background-color: #de1122;
  content: "";
}

.blog .blog-comment h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  border-bottom: 2px solid #de1122;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #de1122;
  font-size: 14px;
  border-bottom: none;
}

.blog .blog-comment h3 span {
  padding: 8px 0 8px 8px;
}

.blog .blog-comment h3:before {
  height: 22px;
  width: 3px;
  background-color: #de1122;
  content: "";
}

.blog .blog-comment h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #de1122;
  font-size: 12px;
  border-bottom: none;
}

@media screen and (min-width: 1000px) {
  .blog .blog-comment h4 {
    font-size: 13px;
  }
}

.blog .blog-comment h4::before {
  width: 8px;
  height: 8px;
  background: #de1122;
  border-radius: 50%;
}

.blog .blog-comment p {
  line-height: 1.6;
}

.blog-archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.blog-archive-list li {
  width: calc(100% / 2 - 10px);
  margin-bottom: 4%;
  margin-right: 5px;
  margin-left: 5px;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.blog-archive-list li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-archive-list li .blog-archive-content {
  height: 100%;
}

@media screen and (min-width: 501px) {
  .blog-archive-list li {
    width: calc(100% / 3 - 10px);
  }
}

@media screen and (min-width: 1000px) {
  .blog-archive-list li {
    width: calc(100% / 5 - 10px);
    margin-bottom: 2%;
  }
}

.blog-archive-list li .blog-archive-category {
  color: #de1122;
  font-size: 12px;
}

.blog-archive-list li .blog-archive-ttl {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #323232;
  font-size: 12px;
  font-weight: bold;
}

.blog-archive-list li .blog-archive-shop {
  color: #323232;
  font-size: 10px;
}

.blog-archive-list li .blog-catch-img {
  position: relative;
}

.blog-archive-list li .blog-catch-img img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.blog-archive-list li .blog-catch-img .blog-archive-date {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  background: #de1122;
  border-radius: 0 4px 0 0;
}

.blog-archive-link {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #de1122;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 82px;
  border-radius: 50px;
  position: relative;
}

.blog-archive-linkWrapper {
  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;
  margin-top: 15px;
}

.blog-archive-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.blog-bottom-list a {
  position: relative;
  display: block;
  padding: 12px 0;
  color: #323232;
  font-weight: bold;
  border-top: 1px solid #323232;
}

.blog-bottom-list a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #de1122;
  border-right: solid 2px #de1122;
}

.blog-bottom-list li:last-of-type a {
  border-bottom: 1px solid #323232;
}

.blog-search-shop {
  margin: 46px 0 20px;
}

.blog-search-shop p {
  font-size: 14px;
}

.blog-search-shop .ttl-box-red {
  display: block;
}

.blog-ex-list {
  margin-top: 48px;
}

.blog-ex-list .ttl-box-red {
  display: block;
}

.blog-detail-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  border-bottom: 2px solid #de1122;
  color: #de1122;
}

.blog-detail-ttl span {
  padding: 8px 0 8px 8px;
}

.blog-detail-ttl:before {
  height: 22px;
  width: 3px;
  background-color: #de1122;
  content: "";
}

.blog-detail-date {
  font-size: 12px;
  color: #323232;
}

.detail-column {
  margin: 24px 0 0;
  font-size: 14px;
}

.detail-column .blog-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.detail-column .blog-flex-item + .blog-flex-item {
  margin-top: 16px;
}

.detail-column .blog-flex-item .blog-detail-list-border {
  width: 70%;
}

.detail-column .blog-flex-item .blog-detail-list-border p {
  padding: 4px 0;
  border-bottom: 1px solid #323232;
}

.detail-column .blog-flex-item .blog-detail-list-border p + p {
  margin-top: 4px;
}

.detail-column .blog-flex-item .blog-detail-list-border p a {
  color: #323232;
  display: inline-block;
  position: relative;
}

.detail-column .blog-flex-item .blog-detail-list-border p a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #8f8f8f;
  border-right: 1px solid #8f8f8f;
}

.detail-column .blog-flex-item ul {
  width: 70%;
}

.detail-column .blog-flex-item ul li {
  display: inline-block;
  margin: 0 4px 4px 0;
  padding: 4px 12px;
  color: #fff;
  background: #de1122;
  border-radius: 4px;
}

.detail-column .blog-flex-item .detail-column-ttl {
  width: 30%;
}

.blog-comment {
  margin-top: 20px;
}

.blog-comment h2,
.blog-comment h3,
.blog-comment h4,
.blog-comment h5 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  border-bottom: 2px solid #de1122;
  color: #de1122;
  padding: 8px 0 8px 11px;
}

.blog-comment h2 span,
.blog-comment h3 span,
.blog-comment h4 span,
.blog-comment h5 span {
  padding: 8px 0 8px 8px;
}

.blog-comment h2:before,
.blog-comment h3:before,
.blog-comment h4:before,
.blog-comment h5:before {
  height: 22px;
  width: 3px;
  background-color: #de1122;
  content: "";
}

.blog-comment h2:before,
.blog-comment h3:before,
.blog-comment h4:before,
.blog-comment h5:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-comment h2:not(:first-child),
.blog-comment h3:not(:first-child),
.blog-comment h4:not(:first-child),
.blog-comment h5:not(:first-child) {
  margin-top: 20px;
}

.blog-comment p {
  font-size: 12px;
  line-height: 2;
  margin-top: 20px;
}

@media screen and (min-width: 1000px) {
  .blog-comment p {
    font-size: 14px;
  }
}

.blog-comment img {
  width: 100%;
  height: auto;
}

.blog-detail-img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 666px;
  display: block;
  margin: 0 auto;
}

.blog-pagination {
  margin-top: 12px;
}

.blog-pagination .page-numbers {
  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;
}

.blog-pagination li > * {
  font-size: 14px;
  font-weight: bold;
  width: 34px;
  height: 34px;
  border: 1px solid #323232;
  color: #323232;
}

.blog-pagination li > .current {
  background: #323232;
  color: #fff;
}

.blog-pagination li > .next,
.blog-pagination li > .prev {
  border: none;
  width: auto;
  height: auto;
}

.blog-pagination-prev,
.blog-pagination-next {
  width: 12px;
  height: 12px;
  border-right: 2px solid #323232;
  border-bottom: 2px solid #323232;
}

.blog-pagination-next {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.blog-pagination-prev {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.blog-news-list li {
  margin: 32px 0;
}

.blog-news-list li p {
  color: #8f8f8f;
  font-size: 14px;
}

.blog-news-list li a {
  color: #de1122;
  text-decoration: underline;
  font-size: 14px;
}

.column-comment {
  margin-top: 20px;
}

.column-comment h2 {
  border-bottom: 1px solid #de1122;
  color: #de1122;
  padding: 8px 0 2px 0;
  font-size: 18px;
}

@media screen and (min-width: 1000px) {
  .column-comment h2 {
    font-size: 30px;
  }
}

.column-comment h3 {
  color: #000;
  font-size: 16px;
}

@media screen and (min-width: 1000px) {
  .column-comment h3 {
    font-size: 24px;
  }
}

.column-comment h2:not(:first-child) {
  margin-top: 40px;
}

.column-comment h3:not(:first-child) {
  margin-top: 35px;
}

.column-comment h4:not(:first-child),
.column-comment h5:not(:first-child) {
  margin-top: 20px;
}

.column-comment p {
  font-size: 12px;
  line-height: 2;
  margin-top: 20px;
}

@media screen and (min-width: 1000px) {
  .column-comment p {
    font-size: 16px;
  }
}

.column-comment img {
  width: 100%;
  height: auto;
}

.column-related-article > .ttl {
  color: #de1122;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .column-related-article > .ttl {
    font-size: 30px;
  }
}

.column-related-article .contents {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column-related-article .contents article {
  width: 48%;
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article {
    width: 31%;
    border-right: 1px solid #000;
    padding-right: 3%;
    margin-right: 3%;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article:nth-child(3n) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

.column-related-article .contents article a {
  color: #000;
}

.column-related-article .contents article a .pic {
  margin-bottom: 7px;
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article a .pic {
    margin-bottom: 10px;
  }
}

.column-related-article .contents article a .pic img {
  max-width: 100%;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article a .pic img {
    height: 150px;
  }
}

.column-related-article .contents article a .ttl {
  margin-bottom: 3px;
  color: #de1122;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article a .ttl {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}

.column-related-article .contents article a .ellipsis {
  font-size: 10px;
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article a .ellipsis {
    font-size: 12px;
  }
}

@media screen and (min-width: 1000px) {
  .column-related-article .contents article a:hover {
    opacity: 0.8;
    display: block;
  }
}

.static-catch {
  margin-bottom: 12px;
}

@media screen and (min-width: 1000px) {
  .static-catch {
    /* padding-top: 90px; */
  }
}

.static-catch .section-ja-title {
  margin-bottom: 8px;
}

.static-catch img {
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 8px;
}

@media screen and (min-width: 1000px) {
  .static-catch img {
    width: 100%;
  }
}

.static-catch .static-sub-ttl {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .static-catch .static-sub-ttl {
    font-size: 24px;
    margin: 40px 0;
    text-align: center;
  }
}

.static-catch p {
  font-size: 12px;
  font-weight: bold;
}

.static-buy p {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .static-buy p {
    font-size: 14px;
  }
}

.static-buy .search-shop {
  margin-bottom: 30px;
}

.buy-flow {
  margin: 30px 0 0;
}

.buy-flow ul {
  margin: 40px 0 0;
}

.buy-flow ul li {
  position: relative;
  margin-bottom: 50px;
  padding: 30px;
  line-height: 1.8;
  border: 1px solid #8f8f8f;
  border-radius: 4px;
}

.buy-flow ul li .buy-flow-ttl {
  margin-bottom: 8px;
  color: #de1122;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}

.buy-flow ul li p {
  font-weight: bold;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .buy-flow ul li p {
    font-size: 14px;
  }
}

.buy-flow ul li p span {
  text-decoration: underline;
}

.buy-flow ul li .flow-number {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 26px;
  text-align: center;
  background: #de1122;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.buy-flow ul li:after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -40px;
  width: 16px;
  height: 18px;
  left: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  vertical-align: middle;
  background-image: url("../images/icon/double-arrow.svg");
  background-size: contain;
}

.buy-flow ul li:last-of-type {
  margin-bottom: 0;
}

.buy-flow ul li:last-of-type:after {
  display: none;
}

.buy-flow.buy-flow-line img {
  width: 100%;
  margin-bottom: 8px;
}

@media screen and (min-width: 1000px) {
  .buy-flow.buy-flow-line img {
    max-width: 300px;
    margin-right: 30px;
  }
}

.buy-order {
  margin-bottom: 20px;
  padding: 25px 30px;
  text-align: center;
  background: #fcf7f0;
}

@media screen and (min-width: 1000px) {
  .buy-order {
    padding: 40px 50px;
  }
}

.buy-order a {
  position: relative;
  width: 100%;
  margin-top: 12px;
  font-size: 16px;
}

@media screen and (min-width: 1000px) {
  .buy-order a {
    width: 300px;
    margin: 12px auto 0;
  }
}

.buy-order a:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  right: 12px;
}

.buy-order p {
  margin-top: 12px;
  padding-top: 12px;
  text-align: left;
  border-top: 1px solid #8f8f8f;
}

@media screen and (min-width: 1000px) {
  .buy-order p {
    margin-top: 24px;
    padding-top: 24px;
  }
}

.buy-order .slash-title {
  display: inline-block;
  padding: 0;
}

.buy-order .slash-title:before,
.buy-order .slash-title:after {
  width: 36px;
}

.buy-order .slash-title:before {
  left: -40px;
}

.buy-order .slash-title:after {
  right: -40px;
}

.buy-order.buy-order-line {
  margin-bottom: 0;
}

.buy-order.buy-order-line a {
  background: #5bbc0c;
}

.about-line-point {
  margin: 30px 0;
}

.about-line-point img {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .about-line-point img {
    max-width: 500px;
    margin-right: 30px;
  }
}

.about-line-point ul {
  margin-top: 12px;
}

.about-line-point ul li {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .about-line-point ul li {
    font-size: 1.125rem;
  }
}

.about-line-point ul li:before {
  display: inline-block;
  content: "";
  margin-top: 6px;
  margin-right: 7px;
  width: 10px;
  height: 10px;
  vertical-align: top;
  border-radius: 5px;
  background-color: #5bbc0c;
}

@media screen and (min-width: 1000px) {
  .about-line-point ul li:before {
    width: 16px;
    height: 16px;
    border-radius: 8px;
  }
}

.about-line-point p {
  margin-top: 12px;
  padding-top: 12px;
  font-size: 12px;
  border-top: 1px solid #8f8f8f;
}

@media screen and (min-width: 1000px) {
  .about-line-point p {
    font-size: 1rem;
  }
}

.about-line-point .pc-flex,
.buy-flow-line .pc-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.buy-flow-line {
  margin-top: 30px;
}

@media screen and (min-width: 1000px) {
  .buy-flow-line ul li {
    padding: 36px 120px 40px;
  }
  .buy-flow-line ul li .buy-flow-ttl {
    text-align: left;
  }
}

.static-first .first-ttl {
  margin-bottom: 4px;
  font-size: 1.125rem;
}

@media screen and (min-width: 1000px) {
  .static-first .first-ttl {
    margin-bottom: 8px;
    font-size: 1.5rem;
    text-align: center;
  }
}

.static-first p {
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .static-first p {
    font-size: 14px;
  }
}

.static-first .first-base-btn {
  min-width: 266px;
  margin: 0 auto 12px;
}

@media screen and (min-width: 1000px) {
  .static-first .first-base-btn {
    min-width: 300px;
    margin: 0 12px 12px;
  }
}

.static-first .first-base-btn:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  bottom: 0;
  right: 8px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  right: 12px;
}

.company-table table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

.company-table table tr {
  border-bottom: 1px solid #8f8f8f;
}

.company-table table tr th,
.company-table table tr td {
  display: block;
  font-size: 14px;
}

.company-table table tr th {
  padding-top: 20px;
  text-align: left;
}

.company-table table tr td {
  padding: 0 0 20px 12px;
  font-weight: normal;
}

iframe {
  display: block;
  width: 100%;
  height: 250px;
}

@media screen and (min-width: 1000px) {
  iframe {
    width: auto;
    max-width: 600px;
    margin: 12px auto;
    height: 300px;
  }
}

@media screen and (min-width: 1000px) {
  .company .main-section {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1000px) {
  .company .breadcrumbs {
    max-width: 1000px;
    margin: 0 auto 24px;
  }
}

.reinforcement-area {
  margin: 20px 0;
  font-size: 14px;
}

.reinforcement-area dt {
  padding-left: 8px;
  color: #de1122;
  font-weight: bold;
  border-left: 1px solid #de1122;
}

.reinforcement-area dd {
  padding: 8px;
}

.proprety-img {
  margin: 12px 0;
}

.proprety-img li {
  margin-bottom: 12px;
}

.proprety-img li img {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .proprety-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .proprety-img li {
    width: 49%;
  }
  .proprety-img li img {
    width: 100%;
  }
}

.media.trip-buy iframe,
.media.delivery-buy iframe,
.media.shop-buy iframe {
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  .media.trip-buy iframe,
  .media.delivery-buy iframe,
  .media.shop-buy iframe {
    height: 565px;
    margin-bottom: 0;
  }
}

.media.trip-buy .close,
.media.delivery-buy .close,
.media.shop-buy .close {
  display: none;
}

.form-page .section-ja-title {
  padding-top: 73px;
}

@media screen and (min-width: 1000px) {
  .form-page .section-ja-title {
    padding-top: 0;
  }
}

.form-top-text {
  padding: 25px 30px;
  background: #fcf7f0;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .form-top-text {
    font-size: 14px;
  }
}

.form-flow {
  margin-top: 49px;
}

.form-flow ul {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.form-flow ul li {
  position: relative;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
  background: #fef8f8;
}

.form-flow ul li.flow-active {
  color: #fff;
  background: #de1122;
}

.form-flow ul li.flow-active:after {
  position: absolute;
  top: 0;
  right: -15px;
  width: 0;
  height: 0;
  border-left: 15px solid #de1122;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  content: "";
  z-index: 1;
}

.form-flow ul li:nth-of-type(2).flow-active,
.form-flow ul li:nth-of-type(3).flow-active {
  padding-left: 8px;
}

.form-flow ul li:nth-of-type(2).flow-active:before,
.form-flow ul li:nth-of-type(3).flow-active:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 15px solid #fef8f8;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  content: "";
  z-index: 1;
}

.form-flow ul li:nth-of-type(3):after {
  display: none;
}

.form {
  margin-bottom: 94px;
}

.form .form-list .form-item {
  padding: 20px 0;
  border-bottom: 1px solid #8f8f8f;
}

@media screen and (min-width: 1000px) {
  .form .form-list .form-item {
    padding: 40px 0;
  }
}

.form .form-list .form-item label {
  vertical-align: middle;
}

.form .form-list .form-item dt {
  margin-bottom: 8px;
  font-size: 1.7rem;
  font-weight: bold;
}

.form .form-list .form-item dt .input-required {
  margin: -6px 0 0 4px;
  padding: 0 4px;
  font-size: 1rem;
  color: #fff;
  background: #de1122;
  border-radius: 2px;
}

.form .form-list .form-item input,
.form .form-list .form-item select,
.form .form-list .form-item textarea {
  padding: 8px;
  border: 1px solid #8f8f8f;
}

@media screen and (min-width: 1000px) {
  .form .form-list .form-item input,
  .form .form-list .form-item select,
  .form .form-list .form-item textarea {
    padding: 12px;
  }
}

.form .form-list .form-item input::-webkit-input-placeholder,
.form .form-list .form-item select::-webkit-input-placeholder,
.form .form-list .form-item textarea::-webkit-input-placeholder {
  color: #8f8f8f;
}

.form .form-list .form-item input::-moz-placeholder,
.form .form-list .form-item select::-moz-placeholder,
.form .form-list .form-item textarea::-moz-placeholder {
  color: #8f8f8f;
}

.form .form-list .form-item input:-ms-input-placeholder,
.form .form-list .form-item select:-ms-input-placeholder,
.form .form-list .form-item textarea:-ms-input-placeholder {
  color: #8f8f8f;
}

.form .form-list .form-item input::-ms-input-placeholder,
.form .form-list .form-item select::-ms-input-placeholder,
.form .form-list .form-item textarea::-ms-input-placeholder {
  color: #8f8f8f;
}

.form .form-list .form-item input::placeholder,
.form .form-list .form-item select::placeholder,
.form .form-list .form-item textarea::placeholder {
  color: #8f8f8f;
}

.form .form-list .form-item input {
  font-size: 14px;
}

.form .form-list .form-item input[type="radio"],
.form .form-list .form-item input[type="check"] {
  margin: -2px 4px 0 0;
}

.form .form-list .form-item .form-file {
  margin-right: 8px;
  padding: 4px 12px;
  font-size: 14px;
  color: #323232;
  background: #fcf7f0;
  border: 1px solid #8f8f8f;
  border-radius: 2px;
}

.form .form-list .form-item select {
  background: #fcf7f0;
  border-radius: 2px;
}

.form .form-list .form-item dd img {
  max-width: 328px;
  margin-top: 20px;
}

.form .form-list p.form-att {
  margin-top: 8px;
  font-size: 12px;
}

@media screen and (min-width: 1000px) {
  .form .form-list p.form-att {
    font-size: 14px;
  }
}

.form .form-list p.form-att a {
  color: #de1122;
  font-weight: bold;
  text-decoration: underline;
}

.form .form-thanks {
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 55px 0;
  background: #fcf7f0;
}

.form .form-thanks .sofia {
  font-size: 1.75rem;
  font-weight: bold;
}

.property-form-flow {
  margin-top: 20px;
}

.property-form .form-list .form-list-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.property-form .form-list .form-list-ttl .border {
  background-color: #323232;
  height: 1px;
  margin-left: 20px;
  width: 70%;
}

.property-form .form-list .form-item {
  padding: 20px 0 0 0;
  border: none;
}

.form-postal p:first-child {
  margin-right: 4px;
}

.form-postal p:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-postal p:last-child .postal-code input {
  width: 22.4vw;
  max-width: 84px;
}

.form-postal p:last-child .prefecture select {
  width: 35.4vw;
  max-width: 133px;
}

/* .lang_dropbtn {
    background-color: #ffffff;
    border: 2px solid #de1122;
    color: #de1122;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    -webkit-box-shadow: 3px 3px 2px 0px rgb(0 0 0 / 20%);
    box-shadow: 3px 3px 2px 0px rgb(0 0 0 / 20%);
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.lang_dropdown {
  position: relative;
  transition: 0.3s ease-in-out;
  margin-right: 20px;
}

.mv-lang-dropdown {
  left: auto !important;
  width: 55px !important;
  text-align: center;
}

.lang_dropdown-content {
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #f9f9f9;
  width: 90px;
  left: 0;
  top: 33px;
  right: 0;
  margin: auto;
  -webkit-box-shadow: 1px 2px 2px 1px rgb(0 0 0 / 20%);
  box-shadow: 1px 2px 2px 1px rgb(0 0 0 / 20%);
  z-index: 1;
  transition: 0.3s ease-in-out;
}

.lang_dropdown-content a {
  color: black;
  padding: 10px;
  text-decoration: none;
  display: block;
  font-family: "Roboto";
  font-weight: 500;
}

.lang_dropdown-content a:hover {
  background-color: #e0e0e0;
  border-radius: 5px;
}

.lang_dropdown:hover .lang_dropdown-content {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 2px 3px 3px 1px rgb(0 0 0 / 20%);
  box-shadow: 2px 3px 3px 1px rgb(0 0 0 / 20%);
}

.lang_dropdown:hover .lang_dropbtn {
  /* background-color: #de1122;
    color: #ffffff !important; */
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0px 1px 0px 0px rgb(0 0 0 / 20%);
  box-shadow: 0px 1px 0px 0px rgb(0 0 0 / 20%);
}

.btn_whatsapp {
  background-color: #ffffff;
  color: #128c7e !important;
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  border: 2px solid #128c7e;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  text-decoration: none !important;
  padding: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 1px 2px 2px 1px rgb(0 0 0 / 20%);
  box-shadow: 1px 2px 2px 1px rgb(0 0 0 / 20%);
}

.btn_whatsapp img {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  object-fit: contain;
}

/* .lang_dropbtn img {
    width: 15px;
    height: 15px;
    margin: 0 3px;
    object-fit: contain;
} */

.btn_whatsapp:hover {
  background-color: #128c7e;
  color: #ffffff !important;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 2px 3px 3px 1px rgb(0 0 0 / 20%);
  box-shadow: 2px 3px 3px 1px rgb(0 0 0 / 20%);
}

.static-catch picture img {
  opacity: 1 !important;
}

.kaitori-voice .voice-list .voice-staff .voice-staff-img img {
  width: auto;
}

@media (min-width: 1000px) {
  .ttl-text {
    text-align: center;
    font-size: 15px;
  }
}

.ttl-text {
  font-size: 13px;
}

.takuhaiSyuttyouKaitori > .left .head .right .txt1 {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
  text-align: left;
}

@media (min-width: 1000px) {
  .takuhaiSyuttyouKaitori > .left .head .right .txt1 {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
  }
}

.takuhaiSyuttyouKaitori > .left .head > .left {
  width: 38%;
  margin-right: 10px;
  flex: none;
}

@media (min-width: 1000px) {
  .takuhaiSyuttyouKaitori > .left .head > .left {
    width: 200px;
  }
}

.takuhaiSyuttyouKaitori > .right .head .right .txt1 {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
  text-align: left;
}

@media (min-width: 1000px) {
  .takuhaiSyuttyouKaitori > .right .head .right .txt1 {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
  }
}

.takuhaiSyuttyouKaitori > .right .head > .left {
  width: 38%;
  margin-right: 10px;
  flex: none;
}

@media (min-width: 1000px) {
  .takuhaiSyuttyouKaitori > .right .head > .left {
    width: 200px;
  }
}

div.breadcrumbs {
  width: 100%;
  height: auto !important;
}

div.breadcrumbs a span {
  background: url(../../img/common/pankuzu_arrow.png) no-repeat right 5px;
  padding-right: 15px;
  margin-right: 8px;
  text-decoration: none;
  color: #787878;
  position: relative;
  border: none;
}

/* Columns fade animation More/Close */

.compare-wrap img {
  width: 100%;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

@media screen and (min-width: 800px) {
  .content-wrap {
    overflow: hidden;
    position: relative;
    margin: 0;
  }
}

.close-btn,
.more-btn {
  display: block;
  width: 100%;
  padding: 80px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.close-btn {
  background: 0 0;
}

.kaitori-column .slide-up {
  height: 450px;
  padding-bottom: 0;
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  .kaitori-column .slide-up {
    height: 650px;
    padding-bottom: 0;
    overflow: hidden;
  }
}

.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}

.more-btn p {
  position: relative;
  display: inline-block;
  color: #fff;
  cursor: pointer;
  background: #de1122;
  padding: 5px 20px;
  padding: 10px 82px;
  border-radius: 50px;
  font-weight: 700;
}

.more-btn p:before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  height: 9px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 9px;
}

.more-btn p:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.close-btn {
  padding: 0;
}

.close-btn p {
  background: #aaa;
}

.close {
  font-size: initial;
  top: auto;
  right: auto;
}

section.columns {
  margin-bottom: 40px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

.content-wrap {
  height: 450px;
  overflow: hidden;
  position: relative;
  margin: 0;
}

@media screen and (min-width: 800px) {
  .content-wrap {
    height: 650px;
    overflow: hidden;
    position: relative;
    margin: 0;
  }
}

.close-btn,
.more-btn {
  display: block;
  width: 100%;
  padding: 80px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.close-btn {
  background: 0 0;
}

.slide-up {
  height: 450px;
  padding-bottom: 0;
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  .slide-up {
    height: 650px;
    padding-bottom: 0;
    overflow: hidden;
  }
}

.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}

.more-btn p {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  background: #de1122;
  padding: 5px 20px;
  padding: 10px 82px;
  border-radius: 50px;
  font-weight: 700;
}

.more-btn p:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.close-btn {
  padding: 0;
}

.close-btn p {
  background: #aaa;
}

section.kinds .item {
  border: 1px solid #bebebe;
  border-radius: 3px;
  padding: 0.8em;
  align-self: stretch;
  margin-bottom: 4%;
}

section.kinds .item .label {
  background-color: #d01427;
  color: #fff;
  padding: 0.8em;
  border-radius: 0.2em;
  margin-bottom: 1.5em;
  font-size: 3vw;
}

section.kinds .item .label .ico_arrow:before {
  border-color: #fff;
}

@media screen and (min-width: 751px) {
  section.kinds .body {
    margin-bottom: 80px;
  }
  section.kinds .body .wrap {
    justify-content: flex-start;
    align-items: stretch;
  }
  section.kinds .item {
    width: 23%;
    margin: 1%;
  }
  section.kinds .item .label {
    font-size: 1.3rem;
  }
  section.kinds .item .image img {
    width: 100%;
    /* max-height: 105px; */
  }
}

@media screen and (max-width: 750px) {
  section.kinds .body {
  }
}

section.columns .body .item {
  border-top: 1px solid #ccc;
  padding: 1em 1em;
}

section.columns .body .item .info {
  margin-right: 1em;
}

section.columns .body .item .info .the_title {
  padding-bottom: 0.1em;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.3em;
}

section.columns .body .item .info .the_excerpt {
  color: #5b5b5b;
  line-height: 1.5;
  height: 5em;
  overflow: hidden;
}

section.columns .body .item .image img {
  width: 32vw;
}

@media screen and (min-width: 751px) {
  section.columns .body .item {
    padding: 1.5em 0;
  }
  section.columns .body .item .info .the_title {
    font-size: 2rem;
  }
  section.columns .body .item .info .the_excerpt {
    font-size: 1.6rem;
  }
  section.columns .body .item .image img {
    width: auto;
    max-width: 270px;
  }
}

@media screen and (max-width: 750px) {
  section.columns .body .item .wrap {
    align-items: stretch;
  }
  section.columns .body .item .info {
    flex: 6;
  }
  section.columns .body .item .image {
    flex: 4;
    position: relative;
    overflow: hidden;
  }
  section.columns .body .item .image img {
    flex: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: none;
  }
}

section.faq .body .each:first-of-type {
  /* border-top: 1px solid #ccc; */
  padding-top: 3em;
}

section.faq .body .each {
  margin-bottom: 2em;
}

section.faq .body .each:last-of-type {
  margin-bottom: 0;
}

section.faq .body .each .ico {
  min-width: 1.6em;
}

section.faq .body .each .q {
  margin-bottom: 1.5em;
}

section.faq .body .each a {
  color: #0078ff !important;
  display: inline;
}

@media screen and (min-width: 751px) {
  section.faq {
    margin-bottom: 100px;
  }
  section.faq .body .each {
    margin-bottom: 4em;
  }
  section.faq .body .each:first-of-type {
    padding-top: 65px;
  }
  section.faq .body .each .ico {
    font-size: 2.5rem;
    line-height: 1;
  }
  section.faq .body .each .value {
    font-size: 2rem;
  }
  section.faq .body .each dt {
    margin-bottom: 2.5em;
  }
  section.faq .body .each dd .value {
    font-size: 1.6rem;
  }
}

#wrap {
  width: 1030px;
  margin: 20px auto 0;
}

.kaitori-ways-list p {
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-size: 1.6rem;
}

.kaitori-howto-txt {
  font-size: 1.6rem !important;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.kaitori-policy .common-ttl-sub {
  /* font-size: 12px; */
  font-size: 16px;
}

.kaitori-policy .common-ttl-main {
  /* font-size: 18px; */
  font-size: 1.8rem;
}

.kaitori-policy .common-ttl-main .marker-yellow {
  background: linear-gradient(transparent 55%, #ffff00 0%);
  height: 32px;
  display: inline-block;
}

@media screen and (min-width: 751px) {
  .kaitori-policy .common-ttl-sub {
    /* font-size: 16px; */
    font-size: 2.4375rem;
  }
  .kaitori-policy .common-ttl-main {
    /* font-size: 24px; */
    font-size: 3.625rem;
  }
}

/* watch kaitori price table */

.market-price-content {
  padding: 20px 0px;
}

.market-price-wrap .ttl-wrap {
  display: flex;
  font-size: 16px;
  align-items: top;
}

.market-price-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  padding-bottom: 0px;
}

#market-price-wrap .deco {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 15px 0px;
  padding-bottom: 5px;
  margin-top: 10px;
}

#market-price-wrap .ttl {
  font-size: 25px;
  font-weight: bold;
  color: #000;
}

#market-price-wrap .ttl-minamino {
  width: 100px;
  /* overflow:hidden; */
  height: 130px;
}

#market-price-wrap .ttl-minamino img {
  max-width: 90px;
}

#market-price-wrap .maker {
  background: linear-gradient(transparent 70%, #ff0 0%);
  height: 28px;
  line-height: 28px;
  color: #f00200;
  position: absolute;
}

#market-price-wrap .date {
  padding: 10px 0px;
  border-right: 1px solid #fbcfac;
  letter-spacing: -0.5px;
  text-align: center;
  font-weight: bold;
}

#market-price-wrap .old {
  color: #323232;
}

#market-price-wrap .new {
  color: #f00200;
  font-weight: bold;
  background: #ffdac7;
}

.maket-price-table td {
  border-right: 1px solid #fbcfac;
  font-size: 12px;
  padding: 5px;
  vertical-align: middle;
  letter-spacing: -1px;
}

#market-price-wrap .maket-price-img {
  width: 40px;
  margin-right: 5px;
}

.market-price-wrap table .item {
  display: flex !important;
  font-size: 13px;
  align-items: center;
  flex-direction: row;
}

.pc-note {
  padding: 0px 10px;
  font-size: 10px;
  position: relative;
}

.maket-more {
  height: 270px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  .maket-more {
    position: relative;
    height: auto;
  }
  #market-price-wrap .date {
    font-size: 16px;
  }
  #market-price-wrap .old {
    width: 200px;
  }
  #market-price-wrap .new {
    width: 200px;
  }
  .maket-price-table td {
    border-right: 1px solid #fbcfac;
    font-size: 20px;
    padding: 5px 0px;
    vertical-align: middle;
    letter-spacing: 1px;
  }
  #market-price-wrap .deco {
    font-size: 25px;
    letter-spacing: 0;
    padding: 0px;
  }
  #market-price-wrap .ttl {
    font-size: 35px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
  }
  .market-price-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    padding-bottom: 20px;
  }
  #market-price-wrap .maker {
    background: linear-gradient(transparent 70%, #ff0 0%);
    height: 50px;
    line-height: 60px;
    color: #f00200;
    font-size: 45px;
    position: absolute;
  }
  #market-price-wrap .maket-price-img {
    width: 50px;
    margin-right: 10px;
  }
  .market-price-wrap table .item {
    display: flex;
    font-size: 14px;
    width: 300px;
    align-items: center;
    justify-content: left;
    flex-direction: row;
  }
  .market-content {
    display: flex;
    font-size: 16px;
    align-items: top;
  }
}

.maket-price-table {
  border-collapse: separate;
  border-spacing: 0px;
  border: 1px solid #fbcfac;
}

.maket-price-table td {
  border-bottom: 1px solid #fbcfac;
}

.maket-price-table tr:last-child td {
  border-bottom: 0px;
}

.market-price-wrap table .item div {
  vertical-align: middle;
}

.market-model img {
  max-width: 290px;
}

.code {
  font-size: 10px;
}

.note {
  font-size: 10px;
  padding: 15px 0px;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.captchanote {
  display: inline-flex;
  white-space: pre-wrap;
  font-size: 0.6em !important;
}

.captchanote a {
  color: #de1122 !important;
}
