@charset "UTF-8";
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
@import url("../fonts/css/fontawesome.css");
@import url("../fonts/css/regular.css");
@import url("../fonts/css/solid.css");
@import url("../fonts/css/brands.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
menu, nav, section, audio, video, canvas,ul {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

.jose,
.pageTitle
{font-family: 'Josefin Sans', sans-serif!important;}


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

body {
  color: #333;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

* {
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::selection {
  background: rgba(51, 153, 153, .6);
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

a, input[type=submit] {
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 3.2vw;
  position: relative;
}

body,
input,
textarea {
  color: #000;
  line-height: 1.8;
}

a:link,
a:visited {
  color: #6C6C6C;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  text-decoration: none;
  outline-width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.5em;
}

ul {

}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: bold;
}

dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}

dd:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}

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

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: .8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th, td {
  padding: .5em .8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: #fff;
}

th {
  font-weight: normal;
}

/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* エフェクトで使う keyframes */
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

/* フェードイン */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト */
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スプリング(拡大してバウンド) */
@keyframes spring {
  0% {
    transform: scale(0.2);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* 上に移動しながらフェードイン */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下に移動しながらフェードイン */
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左に移動しながらフェードイン */
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(3em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右に移動しながらフェードイン */
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-3em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* X方向スケールアップ */
@keyframes scale-up-x {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Y方向スケールアップ */
@keyframes scale-up-y {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* Y方向スケールダウン */
@keyframes scale-down-y {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

/* Y方向に拡大しながらフェードイン */
@keyframes scale-y-fade-in {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードイン */
@keyframes scale-fade-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードアウト */
@keyframes scale-fade-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}

body {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}












.headMenu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}
.headMenu p{ font-weight: 700; font-size: 12px; line-height: 1em; margin: 0;}
.headMenu img{ height: 27px!important;  width: auto!important; margin-bottom: 6px; }
.headMenu .login img{ height: 23px!important;   margin-bottom: 7px;   margin-top: 3px;}



.headMenu svg {
  vertical-align: bottom;
}

.headMenu form {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 2px 2px 2px 6px;
  margin-right: 15px;
  overflow: hidden;
}

.headMenu form button {
  display: block;
  padding: 0 2px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  vertical-align: bottom;
}

.headMenu form button svg {
  width: 12px;
  height: 12px;
  transform: translate(0, -10%);
}

.headMenu form input {
  width: 150px;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 12px;
  -webkit-appearance: none;
  color: #fff;
}

.navTrigger {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 18px;
  border: none;
  cursor: pointer;
  transition: all ease .4s;
  background: transparent;
  -webkit-appearance: none;
  z-index: 100;
  top: -6px;
}

.navTrigger div{
  position: absolute;
  background: #6C6C6C;
  height:1px;
  width: 26px;
  border-radius: 2px;
  margin-bottom: 1px;
}

.navTrigger p{
	position: absolute;
	font-weight: 700;
	bottom: -18px;
  color: #6C6C6C;
}

.view-nav .navTrigger div{
 opacity: 0;
}


.navTrigger:before, .navTrigger:after {
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  content: '';
  width: 26px;
  height: 1px;
  margin-right: -13px;
  background: #6C6C6C;
  border-radius: 2px;
}

.navTrigger:before {
  margin-top: -9px;
  transition: all ease .4s;
}

.navTrigger:after {
  margin-top: 7px;
  transition: all ease .3s;
}

.navTrigger .screen-reader-text {
  clip: auto !important;
  position: absolute;
  display: block;
  width: 26px;
  height: 2px;
  padding-top: 2px;
  overflow: hidden;
  transition: all ease .3s;
  background: #000 !important;
  border-radius: 2px;
}

.view-nav .navTrigger:before, .view-nav .navTrigger:after {
  margin-top: 0;
}

.view-nav .navTrigger:before {
  transform: rotate(225deg);
}

.view-nav .navTrigger:after {
  transform: rotate(-225deg);
}


@media screen and (max-width: 767px) {
  #header {
    height: 10.66667vw;
    padding: 0 3vw;
  }
  #header h1 svg {
    width: 30vw;
  }
  .headCart {
    margin-right: 15px;
  }
  .headMenu form {
    border-radius: 5px;
    margin-right: 10px;
    padding: 2px 2px 2px 6px;
  }
  .is-chrome .headMenu form {
    padding: 3px 2px 3px 6px;
  }
  .is-safari .headMenu form {
    padding: 0 2px 0 6px;
  }
  .headMenu form input {
    width: 30vw;
    font-size: 3.8vw;
    line-height: 1;
  }
  .is-chrome .headMenu form input {
    width: 27vw;
    margin-left: 1vw;
    line-height: 1.4;
  }
}

#gNav {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  transition: all ease .5s;
  transform: translate(0, -10%);
  opacity: 0;
  pointer-events: none;
}

#gNav .inner {
  width: 100%;
  max-height: 100vh;
  padding: 5vw 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.view-nav #gNav {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
}

#gNav ul {
  list-style: none;
  margin: 0;
}

#gNav a:hover {
  opacity: .5;
}

#gNav .navMenu,
#gNav .navMenu2 {
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5em;
  margin-bottom: 30px;
}

#gNav .navMenu li,
#gNav .navMenu2 li {
  width: 100%;
  padding: .5em 0;
  text-align: center;
}

#gNav {
  font-size: 20px;
  color: #272626;
}

#gNav h4 {
  padding-top: 1em;
  margin-bottom: 0;
  font-size: 20px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #fff;
}

#gNav h4:first-child {
  padding-top: 0;
  margin-bottom: .5em;
}

#gNav .navMenu2 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5em;
  margin-bottom: 30px;
}

#gNav .navMenu2 svg {
  margin-right: .5em;
  vertical-align: bottom;
  overflow: visible;
}

#gNav .navMenu2 li.navMenu2main {
  width: 50%;
}

#gNav .navMenu2 li.navMenu2main a {
  font-size: 20px;
}

#gNav .navMenu2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

#gNav .navSns {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#gNav .navSns li + li {
  margin-left: 22px;
}

@media screen and (max-width: 767px) {
  #gNav .inner {
    padding: 50px 0;
  }
  #gNav .navMenu,
  #gNav .navMenu2 {
    margin-bottom: 8vw;
  }
  #gNav .navMenu li,
  #gNav .navMenu2 li {
    width: 100%;
    padding: .5em 0;
  }
  #gNav .navMenu a,
  #gNav .navMenu span,
  #gNav .navMenu2 a {
    font-size: 4.26667vw;
  }
  #gNav h4 {
    font-size: 5.33333vw;
  }
  #gNav .navMenu2:after {
    display: block;
    content: '';
    width: 50%;
  }
  #gNav .navMenu2 svg {
    width: 1.2em;
    height: auto;
  }
  #gNav .navMenu2 li {
    width: 50%;
  }
  #gNav .navMenu2 li.navMenu2main {
    width: 50%;
  }
  #gNav .navMenu2 li.navMenu2main a {
    font-size: 4.26667vw;
  }
  #gNav .navMenu2 a {
    font-size: 2.66667vw;
  }
  #gNav .navSns li + li {
    margin-left: 5.33333vw;
  }
}

#footer {
  width: 100%;
  color: #B9B9B9;
}

#footer a,
#footer a:hover,
#footer a:active,
#footer a:visited{color: #B9B9B9;}

#footer .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0px;
}

#footer h1{ font-size: 16px; line-height: 1em; margin-bottom: 20px;}

#footer .address,
#footer .tel{ font-size: 14px; font-family: 'Shippori Mincho', serif; }
#footer .tel{margin-bottom: 20px;}
#footer .tel a:hover{ text-decoration: underline;}
#footer ul{ list-style: none; display: flex; justify-content: center; }
#footer ul li{ padding: 0 8px;}
#footer .copy{ text-align: center; margin-bottom: 0; font-size: 10px;}

#footer h5 {
  margin-bottom: 30px;
}

#footer h5 a {
  display: block;
}

#footer h5 a span {
  position: absolute;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

#footer .footerMenu {
  width: 100%;
  text-align: center;
}

#footer .footerMenu > * {
  flex: 1;
  margin-left: 20px;
}

#footer .footerMenu .footerNav {
  margin-left: 0;
}

#footer .footerMenu .footerNav ul {
  margin: 0 0 45px;
  list-style: none;
}

#footer .footerMenu .footerNav li + li {
  margin-top: 10px;
}

#footer .footerMenu .footerNav a {
  display: inline-block;
  font-size: 15px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.2;
}

#footer .footerMenu .footerNav dl {
  margin: 0;
}

#footer .footerMenu .footerNav dl dt {
  margin-bottom: 1em;
  font-size: 15px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}

#footer .footerMenu .footerNav dl dd input {
  width: 100%;
  max-width: 270px;
  height: 48px;
  margin: 0 0 18px;
  padding: 0 .5em;
  background: #fff;
  font-size: 15px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border: 1px solid #CCCCCC;
}

#footer .footerMenu .footerSNS dt {
  margin-bottom: 1em;
  font-size: 15px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}

#footer .footerMenu .footerSNS ul {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
}

#footer .footerMenu .footerSNS li + li {
  margin-left: 24px;
}

#footer .footerMenu .copyright {
  text-align: right;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
}

#shopNav {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  background: #E6E6E6;
  width: 100%;
  padding: 3em 1.5em;
}

#shopNav ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: .5em 0;
  list-style: none;
}

#shopNav ul li {
  padding: 0 .5em;
}

#shopNav ul a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

#shopNav ul svg {
  margin-right: .5em;
  vertical-align: bottom;
  overflow: visible;
}

#shopNav ul:first-child li {
  padding: 0 1em;
}

#shopNav ul:first-child a {
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
}

@media screen and (max-width: 1023px) {
  #footer .footerMenu .copyright {
    flex: .5;
  }
}

@media screen and (max-width: 767px) {
  #footer .inner {
    padding: 13.33333vw 5.33333vw 2.66667vw;
  }
  #footer h5 {
    margin-bottom: 13.33333vw;
  }
  #footer h5 a {
    text-align: center;
  }
  #footer h5 svg {
    width: 30.4vw;
    height: 4.8vw;
  }
  #footer .footerMenu {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  #footer .footerMenu > * {
    flex: auto;
    margin-left: 0;
  }
  #footer .footerMenu .footerNav ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 12vw;
    padding: 0 14vw;
  }
  #footer .footerMenu .footerNav li {
    padding: .6em .3em;
    font-size: 5.86667vw;
  }
  #footer .footerMenu .footerNav li + li {
    margin-top: 0;
  }
  #footer .footerMenu .footerNav a {
    font-size: 5.33333vw;
  }
  #footer .footerMenu .footerNav dl {
    margin: 0 0 16vw;
    padding: 4vw 0;
    background: #fff;
    border: 1px solid #999;
  }
  #footer .footerMenu .footerNav dl dt {
    margin-bottom: .6em;
    font-size: 4vw;
    text-align: center;
  }
  #footer .footerMenu .footerNav dl dd {
    text-align: center;
  }
  #footer .footerMenu .footerNav dl dd input {
    width: 80%;
    max-width: 80%;
    height: 12.8vw;
    margin: 0 auto 3.73333vw;
    font-size: 4vw;
  }
  #footer .footerMenu .footerNav dl dd .btn {
    margin: 0 auto;
  }
  #footer .footerMenu .footerSNS dt {
    display: none;
  }
  #footer .footerMenu .footerSNS ul {
    align-items: center;
    justify-content: center;
  }
  #footer .footerMenu .footerSNS li {
    margin: 0 2.66667vw;
  }
  #footer .footerMenu .footerSNS li + li {
    margin: 0 2.66667vw;
  }
  #footer .footerMenu .footerSNS li img {
    width: 8vw;
    height: 8vw;
  }
  #footer .footerMenu .copyright {
    text-align: center;
    font-size: 2.66667vw;
  }
  #shopNav {
    padding: 2em 3.2vw;
  }
  #shopNav ul {
    margin: .5em 0;
  }
  #shopNav ul a {
    font-size: 1em;
  }
  #shopNav ul svg {
    width: 1.4em;
    height: auto;
  }
  #shopNav ul:first-child li {
    width: 50%;
    padding: .5em 1em;
  }
  #shopNav ul:first-child a {
    justify-content: flex-start;
    font-size: 1.3em;
  }
  #shopNav ul:last-child {
    padding-top: 1em;
    border-top: 1px solid #666;
  }
}

html {
  background: #fff;
  font-feature-settings: 'palt' on;
  letter-spacing: .04em;
}

html img {
  vertical-align: bottom;
}

body {
  font-size: 12px;
}

[lang="en"] .is-ja {
  display: none !important;
}

#main {
  width: 100%;
  overflow: hidden;
}

.noscript {
  display: none;
}

.fa {
  vertical-align: baseline;
}

.is-pc {
  display: none;
}

@media screen and (min-width: 767px) {
  .is-sp {
    display: none;
  }
  span.is-pc {
    display: inline-block;
  }
  br.is-pc {
    display: inline;
    display: initial;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.2vw;
  }
}

/* plugin style
-----------------------------------*/
/* Slider */
.slick-slider {
  margin: 0;
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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 {
  transform: translate3d(0, 0, 0);
}

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url('/wp-content/themes/Champlu-202101/images/common/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}

.slick-dots li {
  position: relative;
  display: block;
  height: 2.6vw;
  width: 2.6vw;
  margin: 0 1.7vw 0 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  height: 2.6vw;
  width: 2.6vw;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 0;
  cursor: pointer;
  text-indent: -9999em;
  opacity: .5;
  background: #000;
  border-radius: 55%;
}

.slick-dots li.slick-active button {
  opacity: 1;
}

@media screen and (min-width: 767px) {
  .slick-dots li {
    height: 12px;
    width: 12px;
    margin: 0 8px 0 0;
  }
  .slick-dots li button {
    height: 12px;
    width: 12px;
  }
}

/* View style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
.arrow-down {
  transform: rotate(90deg);
}

.indexMainVisual {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  background: #222;
  color: #fff;
  overflow: hidden;
}

.is-safari .indexMainVisual {
  min-height: -webkit-fill-available;
}

.is-ie .indexMainVisual {
  height: 100vh;
}

.indexMainVisual .slick-list {
  overflow: visible;
}

.indexMainVisual .slick-dots {
  display: flex !important;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 40px;
  width: 100%;
  margin: 0;
}

.indexMainVisual .slick-dots li {
  height: 3px;
  width: 50px;
  margin: 0 6px 0 0;
  border-radius: 0;
  background: rgba(0, 0, 0, .2);
}

.indexMainVisual .slick-dots li.slick-active {
  background: #fff;
}

.indexMainVisual .slick-dots li button {
  opacity: 0;
}

.indexMainVisual .fvSlide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.indexMainVisual .fvSlideItem {
  position: absolute !important;
  width: 100vw;
  min-height: 100vh;
}

.is-safari .indexMainVisual .fvSlideItem {
  min-height: -webkit-fill-available;
}

.indexMainVisual .fvSlideItem .img {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: auto;
  left: 0;
  display: block;
  width: 0;
  height: 100vh;
  background: center center no-repeat;
  background-size: cover;
  transition: all ease-in-out .5s;
}

.indexMainVisual .fvSlideItem:after {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  display: block;
  content: '';
  width: 0;
  transition: all ease-in-out .5s;
  background: rgba(25, 25, 25, .2);
}

.indexMainVisual .fvSlideItem.slick-current, .indexMainVisual .fvSlideItem.slick-stay {
  opacity: 1 !important;
}

.indexMainVisual .fvSlideItem.slick-current:after,
.indexMainVisual .fvSlideItem.slick-current .img, .indexMainVisual .fvSlideItem.slick-stay:after,
.indexMainVisual .fvSlideItem.slick-stay .img {
  right: 0;
  width: 100%;
}

.indexMainVisual .fvSlideItem.slick-stay {
  opacity: 1 !important;
}

.indexMainVisual .logo {
  width: 270px;
  height: 42px;
  margin-bottom: 0;
  fill: #fff;
  vertical-align: bottom;
  transition: all ease-out .4s;
  transform: translate(0, -30%);
  opacity: 0;
}

.indexMainVisual .logo.is-view {
  opacity: 1;
  transform: translate(0, 0);
}

.indexAbout {
  width: 100%;
  margin-bottom: 70px;
  background: center center no-repeat url("../images/toppage/about_bg.png");
  background-size: cover;
  color: #fff;
  font-size: 10px;
}

.indexAbout .inner {
  max-width: 1010px;
  padding: 85px 35px;
  margin: 0 auto;
}

.indexAbout .inner p:last-child {
  margin-bottom: 0;
}

.indexAbout h3 {
  margin-bottom: 35px;
}

.indexAbout h4 {
  font-size: 20px;
  padding-bottom: 50px;
}
.indexAbout p{  font-size: 24px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1112px) {
  .indexMainVisual .slick-dots {
    bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .indexMainVisual .slick-dots {
    bottom: 5.33333vw;
  }
  .indexMainVisual .slick-dots li {
    width: 8vw;
    margin: 0 0.8vw 0 0;
  }
  .indexAbout {
    margin-bottom: 0;
    font-size: 3.73333vw;
    line-height: 1.8;
  }
  .indexAbout .inner {
    padding: 13.33333vw 4.26667vw 19vw;
  }
  .indexAbout h3 {
    font-size: 4vw;
    text-align: center;
    margin-bottom: 13.33333vw;
    line-height: 1.2;
  }
  .indexAbout h4,
  .indexAbout p   {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 1.2;
    padding-bottom: 0;
  }
  
  .indexAbout a, .indexAbout a:hover, .indexAbout a:active, .indexAbout a:visited,
  .indexAbout .link  {font-size: 16px;}

}

.archive {
  width: 100%;
  max-width: 1200px;
  padding: 0 25px;
  margin: 0 auto;
}

.archive.is-archive {
  padding-top: 40px;
}

.archiveList {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.archiveList article {
  width: calc(33.33333% - 10px);
  margin-bottom: 35px;
}

.archiveList article a {
  display: block;
  width: 100%;
  color: #919191;
}

.archiveList article header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 15px 0;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.archiveList article header h3 {
  width: calc(100% - 70px);
  margin: 0;
  color: #D8A526;
}

.archiveList article header time {
  text-align: right;
  font-size: 10px;
}

.archiveList article .cat {
  margin-bottom: .5em;
}

.archiveList article .catTag {
  display: inline-block;
  padding: .2em .5em;
  margin-bottom: .5em;
  line-height: 1;
  font-size: 10px;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.archiveList article p {
  width: 100%;
  margin: 0;
  line-height: 1.4;
}

.archiveList article.pickupArticle {
  width: 100%;
  height: calc(50vw + 70px);
  max-height: 770px;
  margin-bottom: 60px;
}

.archiveList article.pickupArticle a {
  display: block;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  height: calc(50vw + 70px);
  max-height: 770px;
}

.archiveList article.pickupArticle .pickupTtl {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -120%);
}

.archiveList article.pickupArticle .pickupDetails {
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(50% + 70px);
  max-width: 560px;
  padding: 25px 25px 12px;
  background: #ACCBD4;
  transform: translate(0, -50%);
}

.archiveList article.pickupArticle .pickupDetailsHead {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.archiveList article.pickupArticle .pickupDetailsHead h3 {
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 19px;
  color: #6A919D;
  padding-left: 10px;
  padding-right: 1em;
  line-height: 1.2;
}

.archiveList article.pickupArticle .pickupDetailsHead time {
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  color: #919191;
  white-space: nowrap;
}

.archiveList article.pickupArticle .pickupDetailsBody {
  color: #fff;
}

.archiveList article.pickupArticle .pickupDetailsBody p {
  font-size: 12px;
}

.archiveList article.pickupArticle .pickupDetailsBody .more {
  padding-top: 10px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  color: #6A919D;
  text-align: right;
}

.archiveList article.pickupArticle .bg {
  display: block;
  position: absolute;
  right: -130px;
  top: 0;
  width: calc(50vw + 70px);
  height: calc(50vw + 70px);
  max-width: 770px;
  max-height: 770px;
  background: center center no-repeat;
  background-size: cover;
}

.archiveList article.pickupArticle .more {
  margin-bottom: 0 !important;
}

.archiveListBody {
  padding: 0 9px 9px;
}

.archiveList:after {
  display: block;
  content: '';
  width: calc(33.33333% - 6.66667px);
}

.archiveList .noPost {
  width: 100%;
  padding: 5em 0;
  text-align: center;
}

.archive .more {
  margin-bottom: 0;
}

.singleFV {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  color: #fff;
  background: #000;
  text-align: center;
}

.is-safari .singleFV {
  min-height: -webkit-fill-available;
}

.singleFV > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  background: center center no-repeat;
  background-size: cover;
  opacity: .5;
}

.singleFV .postTitle {
  margin-bottom: .3em;
  font-size: 40px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.2;
}

.singleFV .postTitleJa {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 100;
}

.singleFV .postCat {
  margin: 0;
  font-size: 10px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.singleFV .more {
  position: absolute;
  bottom: 16px;
  margin: 0;
  text-align: center;
}

.singleFV .more a {
  display: inline-flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
}

.singleFV .more a:after {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

.commonSection.postSingle .postDetails,
.commonSection.is-guide .postDetails {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding: 100px 25px;
}

.commonSection.postSingle .postBody,
.commonSection.is-guide .postBody {
  font-size: 12px;
  color: #212121;
}

.commonSection.postSingle .postBody > *:last-child,
.commonSection.is-guide .postBody > *:last-child {
  margin-bottom: 0;
}

.commonSection.postSingle .postBody a,
.commonSection.is-guide .postBody a {
  font-weight: bold;
  text-decoration: underline;
}

.commonSection.postSingle .postBody a:hover,
.commonSection.is-guide .postBody a:hover {
  color: #D8A526;
}

.commonSection.postSingle .postBody p,
.commonSection.is-guide .postBody p {
  margin-bottom: 1.8em;
}

.commonSection.postSingle .postBody figure img,
.commonSection.is-guide .postBody figure img {
  margin-bottom: .5em;
  vertical-align: bottom;
}

.commonSection.postSingle .postBody figure figcaption,
.commonSection.is-guide .postBody figure figcaption {
  margin-top: 0;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .04em;
  color: #757575;
  text-align: right;
  font-weight: 100;
}

.commonSection.postSingle .postBody .except,
.commonSection.is-guide .postBody .except {
  width: 100%;
  padding: 40px;
  background: #efefef;
  margin-bottom: 50px;
}

.commonSection.postSingle .postBody h2, .commonSection.postSingle .postBody h3, .commonSection.postSingle .postBody h4, .commonSection.postSingle .postBody h5, .commonSection.postSingle .postBody h6,
.commonSection.postSingle .postBody figure, .commonSection.postSingle .postBody ul, .commonSection.postSingle .postBody ol,
.commonSection.is-guide .postBody h2,
.commonSection.is-guide .postBody h3,
.commonSection.is-guide .postBody h4,
.commonSection.is-guide .postBody h5,
.commonSection.is-guide .postBody h6,
.commonSection.is-guide .postBody figure,
.commonSection.is-guide .postBody ul,
.commonSection.is-guide .postBody ol {
  margin-top: 50px;
  margin-bottom: 25px;
}

.commonSection.postSingle .postBody h2:first-child, .commonSection.postSingle .postBody h3:first-child, .commonSection.postSingle .postBody h4:first-child, .commonSection.postSingle .postBody h5:first-child, .commonSection.postSingle .postBody h6:first-child,
.commonSection.postSingle .postBody figure:first-child, .commonSection.postSingle .postBody ul:first-child, .commonSection.postSingle .postBody ol:first-child,
.commonSection.is-guide .postBody h2:first-child,
.commonSection.is-guide .postBody h3:first-child,
.commonSection.is-guide .postBody h4:first-child,
.commonSection.is-guide .postBody h5:first-child,
.commonSection.is-guide .postBody h6:first-child,
.commonSection.is-guide .postBody figure:first-child,
.commonSection.is-guide .postBody ul:first-child,
.commonSection.is-guide .postBody ol:first-child {
  margin-top: 0 !important;
}

.commonSection.postSingle .postBody h2,
.commonSection.is-guide .postBody h2 {
  width: 100%;
  padding: .3em 0 .3em .5em;
  font-size: 20px;
  line-height: 1.2;
  border-left: 5px solid #D8A526;
}

.commonSection.postSingle .postBody h3,
.commonSection.is-guide .postBody h3 {
  width: 100%;
  padding: .3em .2em;
  font-size: 20px;
  line-height: 1.2;
  border-bottom: 3px solid #D8A526;
}

.commonSection.postSingle .postBody h4,
.commonSection.is-guide .postBody h4 {
  display: inline-block;
  padding: .5em .6em;
  font-size: 18px;
  line-height: 1.2;
  background: #000;
  color: #fff;
}

.commonSection.postSingle .postBody h5,
.commonSection.is-guide .postBody h5 {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.commonSection.postSingle .postBody h5:after,
.commonSection.is-guide .postBody h5:after {
  display: block;
  content: '';
  width: 5em;
  height: 1em;
  border-bottom: 2px solid #000;
}

.commonSection.postSingle .postBody h6,
.commonSection.is-guide .postBody h6 {
  font-size: 14px;
  line-height: 1.2;
  color: #666;
}

.commonSection.postSingle .postBody .wp-block-pullquote,
.commonSection.is-guide .postBody .wp-block-pullquote {
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  padding: 2em 0;
}

.commonSection.postSingle .postBody .wp-block-pullquote p,
.commonSection.is-guide .postBody .wp-block-pullquote p {
  font-size: 20px;
  margin: 0;
}

.commonSection.postSingle .postBody .wp-block-quote,
.commonSection.is-guide .postBody .wp-block-quote {
  border-left: 5px solid #D8A526;
  padding: 1.5em;
  margin-top: 50px;
  background: #efefef;
  color: #888;
}

.commonSection.postSingle .postBody .wp-block-quote cite,
.commonSection.is-guide .postBody .wp-block-quote cite {
  display: block;
  width: 100%;
  margin-top: -1em;
  color: #bbb;
  text-align: right;
}

.commonSection.postSingle .postBody .wp-block-table table,
.commonSection.is-guide .postBody .wp-block-table table {
  width: 100%;
}

.commonSection.postSingle .postBody .wp-block-table table td:first-child,
.commonSection.is-guide .postBody .wp-block-table table td:first-child {
  width: 30%;
}

.commonSection.postSingle .postBody .wp-block-table table td,
.commonSection.is-guide .postBody .wp-block-table table td {
  border-bottom: 1px solid #ccc;
}

.commonSection.postSingle .postBody .wp-block-table table tr:first-child td,
.commonSection.is-guide .postBody .wp-block-table table tr:first-child td {
  border-top: 1px solid #ccc;
}

.commonSection.postSingle .postBody .blocks-gallery-grid .blocks-gallery-item,
.commonSection.is-guide .postBody .blocks-gallery-grid .blocks-gallery-item {
  margin-right: 0;
}

.commonSection.postSingle .postBody .blocks-gallery-grid .blocks-gallery-item figure,
.commonSection.is-guide .postBody .blocks-gallery-grid .blocks-gallery-item figure {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 1113px) {
  .archiveList article.pickupArticle .bg {
    right: -85px;
  }
}

@media screen and (max-width: 1025px) {
  .archiveList article.pickupArticle .bg {
    right: -42px;
  }
}

@media screen and (max-width: 1023px) {
  .archiveList article {
    width: calc(50% - 10px);
  }
  .archiveList:after {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 990px) {
  .archiveList article.pickupArticle .bg {
    right: -25px;
  }
}

@media screen and (max-width: 900px) {
  .archiveList article.pickupArticle .pickupTtl {
    right: auto;
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
  .archiveList article.pickupArticle .pickupDetails {
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 767px) {
  .archive {
    padding: 0 3.5%;
  }
  .archive .more {
    margin-bottom: 10.66667vw;
  }
  .archive.is-archive {
    padding-top: 40px;
  }
  .archiveList {
    margin-bottom: 0;
  }
  .archiveList article {
    width: 100%;
    margin-bottom: 15vw;
  }
  .archiveList article header {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 1.5vw 2vw 0;
  }
  .archiveList article header h3 {
    width: auto;
    font-size: 4.26667vw;
    padding-right: .5em;
  }
  .archiveList article header time {
    width: auto;
    font-size: 2.66667vw;
  }
  .archiveList article .cat {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
  }
  .archiveList article .catTag {
    padding: .8em 1em .6em;
    font-size: 2.67vw;
  }
  .archiveList article.pickupArticle {
    height: auto;
    max-height: none;
    margin-bottom: 26.66667vw;
  }
  .archiveList article.pickupArticle a {
    height: auto;
    max-height: none;
  }
  .archiveList article.pickupArticle .pickupTtl {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40%;
    transform: translate(-50%, -50%);
  }
  .archiveList article.pickupArticle .pickupDetails {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: -15vw;
    padding: 8vw 4vw 3.2vw;
    top: auto;
    bottom: auto;
    transform: translate(0, 0);
  }
  .archiveList article.pickupArticle .pickupDetailsHead {
    margin-bottom: 2.66667vw;
  }
  .archiveList article.pickupArticle .pickupDetailsHead h3 {
    font-size: 5.06667vw;
    padding-left: 0;
  }
  .archiveList article.pickupArticle .pickupDetailsHead time {
    font-size: 2.66667vw;
  }
  .archiveList article.pickupArticle .pickupDetailsBody p {
    font-size: 3.2vw;
  }
  .archiveList article.pickupArticle .pickupDetailsBody .more {
    padding-top: 2.66667vw;
    font-size: 3.2vw;
  }
  .archiveList article.pickupArticle .bg {
    position: relative;
    right: auto;
    top: auto;
    width: 100vw;
    height: 75vw;
    max-width: none;
    max-height: none;
    margin-left: -3.5vw;
  }
  .archiveListBody {
    position: static;
    position: initial;
    padding: 0 2vw 2vw;
  }
  .archiveList:after {
    display: none;
  }
  .archiveList .more {
    margin-bottom: 40vw;
  }
  .singleFV .postTitle {
    font-size: 8vw;
  }
  .singleFV .postTitleJa {
    margin: 0 0 5.33333vw;
    font-size: 4.53333vw;
  }
  .singleFV .postCat {
    font-size: 2.66667vw;
  }
  .singleFV .more {
    bottom: 4vw;
  }
  .singleFV .more a {
    font-size: 2.66667vw;
  }
  .singleFV .more a:after {
    width: 2.13333vw;
    height: 2.13333vw;
  }
  .commonSection.is-guide .postDetails,
  .commonSection.postSingle .postDetails {
    max-width: 100%;
    padding: 10vw 5vw;
  }
  .commonSection.is-guide .postBody,
  .commonSection.postSingle .postBody {
    font-size: 3.73333vw;
  }
  .commonSection.is-guide .postBody figure figcaption,
  .commonSection.postSingle .postBody figure figcaption {
    font-size: 2.66667vw;
  }
  .commonSection.is-guide .postBody h2, .commonSection.is-guide .postBody h3, .commonSection.is-guide .postBody h4, .commonSection.is-guide .postBody h5, .commonSection.is-guide .postBody h6,
  .commonSection.is-guide .postBody figure, .commonSection.is-guide .postBody ul, .commonSection.is-guide .postBody ol,
  .commonSection.postSingle .postBody h2,
  .commonSection.postSingle .postBody h3,
  .commonSection.postSingle .postBody h4,
  .commonSection.postSingle .postBody h5,
  .commonSection.postSingle .postBody h6,
  .commonSection.postSingle .postBody figure,
  .commonSection.postSingle .postBody ul,
  .commonSection.postSingle .postBody ol {
    margin-top: 13.33333vw;
    margin-bottom: 6.66667vw;
  }
  .commonSection.is-guide .postBody .except,
  .commonSection.postSingle .postBody .except {
    padding: 2em;
    margin-bottom: 13.33333vw;
  }
  .commonSection.is-guide .postBody h2,
  .commonSection.postSingle .postBody h2 {
    font-size: 5.86667vw;
  }
  .commonSection.is-guide .postBody h3,
  .commonSection.postSingle .postBody h3 {
    font-size: 5.86667vw;
  }
  .commonSection.is-guide .postBody h4,
  .commonSection.postSingle .postBody h4 {
    font-size: 5.33333vw;
  }
  .commonSection.is-guide .postBody h5,
  .commonSection.postSingle .postBody h5 {
    font-size: 5.33333vw;
  }
  .commonSection.is-guide .postBody h6,
  .commonSection.postSingle .postBody h6 {
    font-size: 4.26667vw;
  }
  .commonSection.is-guide .postBody .wp-block-pullquote p,
  .commonSection.postSingle .postBody .wp-block-pullquote p {
    font-size: 5.33333vw;
  }
  .commonSection.is-guide .postBody .wp-block-quote,
  .commonSection.postSingle .postBody .wp-block-quote {
    margin-top: 6.66667vw;
    font-size: .8em;
  }
}

body.is-eventNone * {
  pointer-events: none !important;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FFF;
  z-index: 100000;
  transition: all linear .5s;
  opacity: 1;
}

.openLoader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.openLoader .loader {
  color: #fff;
  font-size: 1em;
  z-index: 10000;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 5em;
  margin: -2.5em 0 0 -2.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.6em solid rgba(255, 255, 255, .3);
  border-right: 0.6em solid rgba(255, 255, 255, .3);
  border-bottom: 0.6em solid rgba(255, 255, 255, .3);
  border-left: .6em solid #fff;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
  transition: all ease-in-out .5s;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
}

.loader.is-active {
  z-index: 100;
  opacity: 1;
}

.inview {
  opacity: 0;
  transition: all 0.5s ease;
}

.noscript .inview, .inview.is-view {
  opacity: 1;
}

.commonSection {
  width: 100%;
}

.commonSection.pageSection:not(.is-shop) .inner {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding: 40px 25px 100px;
}

.commonSection.pageSection.is-search .inner, .commonSection.pageSection.is-productArchive .inner, .commonSection.pageSection.is-checkout .inner, .commonSection.pageSection.is-myPage .inner, .commonSection.pageSection.is-cart .inner {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding: 40px 25px 100px;
}

.commonSection.pageSection.is-shop:not(.is-productArchive) .inner {
  padding-top: 40px;
}

.commonSection.pageSection.is-shop:not(.is-productArchive) .postBody {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding: 0 25px 100px;
}

.commonSection .more {
  margin-bottom: 0;
}

.commonSection .more a {
  transition: none;
}

.commonSection .woocommerce-error strong {
  font-weight: normal;
  color: #c00;
}

.commonSection .title03 {
  width: 100%;
  padding: .3em .2em;
  font-size: 20px;
  line-height: 1.2;
  border-bottom: 3px solid #D8A526;
  margin-top: 50px;
  margin-bottom: 25px;
}

.commonSection .title03:first-child {
  margin-top: 0 !important;
}

.commonSection .noPost {
  width: 100%;
  padding: 5em 0;
  text-align: center;
}

.pageTitle {
  width: 100%;
  margin: 0;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  text-align: left;
  font-weight: 500;
}

.pageTitle small {
  display: inline-block;
  padding-top: .8em;
  color: #555;
}

.contentPage {
  padding-top: 40px;
}

.contentPage.content404 {
  text-align: center;
  padding-bottom: 100px;
}

.contentPage.content404 .noPost {
  padding: 4em 0;
}

.contentInner {
  width: 100%;
  max-width: 960px;
  padding: 0 25px;
  margin: 0 auto;
}

.woocommerce-info,
.woocommerce-notices-wrapper {
  width: 100% !important;
}

.grecaptcha-badge {
  opacity: 0;
  pointer-events: none;
}

.pageID-176 .grecaptcha-badge {
  opacity: 1;
  pointer-events: auto;
  z-index: 100;
}

.contactForm {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.contactForm dt {
  width: 150px;
  padding-top: 15px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: normal;
}

.contactForm dd {
  width: calc(100% - 150px);
  margin-bottom: 40px;
}

.contactForm .required {
  display: inline-block;
  font-size: .9em;
  margin-left: .7em;
  color: #D8A526;
}

#main form .attention {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 2em;
}

#main form .attention * {
  text-indent: 0;
}

#main form [type="text"],
#main form [type="email"],
#main form [type="tel"],
#main form [type="password"],
#main form textarea {
  display: inline-block;
  width: 100%;
  height: auto;
  font-size: 14px;
  padding: .9em;
  font-weight: normal;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #fff;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-appearance: none;
}

#main form [type="text"].wpcf7-not-valid,
#main form [type="email"].wpcf7-not-valid,
#main form [type="tel"].wpcf7-not-valid,
#main form [type="password"].wpcf7-not-valid,
#main form textarea.wpcf7-not-valid {
  border-color: #D8A526;
}

#main form [type="text"][readonly="readonly"],
#main form [type="email"][readonly="readonly"],
#main form [type="tel"][readonly="readonly"],
#main form [type="password"][readonly="readonly"],
#main form textarea[readonly="readonly"] {
  border-color: transparent;
  background: none;
}

#main form [type="text"]:-ms-input-placeholder, #main form [type="email"]:-ms-input-placeholder, #main form [type="tel"]:-ms-input-placeholder, #main form [type="password"]:-ms-input-placeholder, #main form textarea:-ms-input-placeholder {
  color: #bdbdbd;
}

#main form [type="text"]::placeholder,
#main form [type="email"]::placeholder,
#main form [type="tel"]::placeholder,
#main form [type="password"]::placeholder,
#main form textarea::placeholder {
  color: #bdbdbd;
}

#main form textarea {
  height: 220px;
}

#main form .wpcf7-response-output {
  width: 100%;
  max-width: 100%;
  padding: .6em;
  font-size: .8em;
  font-weight: normal;
  margin: .8em auto 0;
  color: #000;
  background: #ffb900;
}

#main form .wpcf7-response-output.wpcf7-validation-errors {
  color: #000;
  background: #f7e700;
  border-color: #f7e700;
}

#main form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #fff;
  background: #398f14 !important;
  border-color: #398f14 !important;
}

#main form .submitArea {
  width: 100%;
  text-align: center;
}

#main form .submitArea .btn {
  vertical-align: bottom;
  margin-bottom: 1em;
  max-width: 400px;
}

#main form .submitArea .ajax-loader {
  position: absolute;
  left: 0;
  top: 0;
}

.instaSection .pageTitle {
  display: none;
}

.shopTopSlide {
  width: 100%;
  height: 420px;
  margin-bottom: 50px;
}

.shopTopSlide .slick-list {
  overflow: visible;
}

.shopTopSlide .slick-dots {
  display: flex !important;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 20px;
  width: 100%;
  margin: 0;
}

.shopTopSlide .slick-dots li {
  height: 3px;
  width: 50px;
  margin: 0 6px 0 0;
  border-radius: 0;
  background: rgba(0, 0, 0, .2);
}

.shopTopSlide .slick-dots li.slick-active {
  background: #fff;
}

.shopTopSlide .slick-dots li button {
  opacity: 0;
}

.shopTopSlide .shopTopSlideItem {
  position: absolute !important;
  width: 100vw;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 420px;
  background: #000;
}

.shopTopSlide .shopTopSlideItem .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: center center no-repeat;
  background-size: cover;
}

.shopTopSlide .shopTopSlideItem .img:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  background: rgba(0, 0, 0, .3);
}

.shopTopSlide .shopTopSlideItemInner {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  align-content: stretch;
  justify-content: center;
  color: #fff;
  width: 100%;
  max-width: 940px;
  height: 420px;
  margin-bottom: 0;
  padding: 40px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.shopTopSlide .shopTopSlideItemTitle {
  font-size: 50px;
  padding-right: 1em;
  border-bottom: 2px solid #fff;
}

.shopTopSlide .shopTopSlideItemCatch {
  font-size: 26px;
  margin-bottom: 20px;
}

.shopTopSlide .shopTopSlideItemBtn {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 120px;
  height: 40px;
  padding: 0 2em;
  background: #000;
  font-size: 15px;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .commonSection.pageSection:not(.is-shop) .inner {
    padding: 10.66667vw 6.66667vw 13.33333vw;
  }
  .commonSection.pageSection.is-search .inner, .commonSection.pageSection.is-productArchive .inner, .commonSection.pageSection.is-checkout .inner, .commonSection.pageSection.is-myPage .inner, .commonSection.pageSection.is-cart .inner {
    padding: 10.66667vw 4vw 13.33333vw;
  }
  .commonSection.pageSection.is-shop:not(.is-productArchive) .inner {
    padding-top: 10.66667vw;
  }
  .commonSection.pageSection.is-shop:not(.is-productArchive) .postBody {
    padding: 0 4vw 13.33333vw;
  }
  .commonSection .title03 {
    font-size: 4.26667vw;
    margin-top: 13.33333vw;
    margin-bottom: 6.66667vw;
  }
  .pageTitle {
    height: 40vw;
    font-size: 5.33333vw;
  }
  .instaSection .pageTitle {
    display: flex;
  }
  .instaSection .wp-my-instagram {
    width: 100%;
    padding: 0 5vw;
    margin-bottom: 10vw;
  }
  .instaSection .wp-my-instagram .wpmi-list {
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    list-style: none;
  }
  .instaSection .wp-my-instagram .wpmi-list .wpmi-item {
    width: calc(50% - 2.5vw);
    margin-bottom: 5vw;
    flex-grow: initial;
  }
  .instaSection .wp-my-instagram .wpmi-list img {
    border: 1px solid #555;
  }
  .contactForm {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .contactForm dt {
    width: 100%;
    padding-top: 0;
    margin-bottom: .5em;
    font-size: 3.73333vw;
  }
  .contactForm dd {
    width: 100%;
    margin-bottom: 5.33333vw;
  }
  #main form [type="text"],
  #main form [type="email"],
  #main form [type="tel"],
  #main form [type="password"],
  #main form textarea {
    font-size: 3.73333vw;
  }
  #main form textarea {
    height: 53.33333vw;
  }
  .shopTopSlide {
    margin-bottom: 13.33333vw;
    height: auto;
    min-height: 70vw;
  }
  .shopTopSlide .slick-dots {
    bottom: 4vw;
  }
  .shopTopSlide .slick-dots li {
    width: 8vw;
    margin: 0 0.8vw 0 0;
  }
  .shopTopSlide .shopTopSlideItem {
    height: auto;
    min-height: 70vw;
  }
  .shopTopSlide .shopTopSlideItemInner {
    height: auto;
    min-height: 70vw;
    padding: 5.33333vw;
  }
  .shopTopSlide .shopTopSlideItemTitle {
    font-size: 8vw;
  }
  .shopTopSlide .shopTopSlideItemCatch {
    font-size: 5vw;
    margin-bottom: 1em;
  }
  .shopTopSlide .shopTopSlideItemBtn {
    min-width: 10vw;
    height: 3em;
    font-size: 4vw;
  }
}

/*
.page-productDetail {
  padding-top: 106px;
}*/

#splash{ margin-top: -106px;}
.page-index #splash{ margin-top: 0;}

.select {
  display: inline-block;
  width: auto;
  font-size: 13px;
  padding: 0;
  background: #fff;
  font-weight: normal;
}

.select select {
  position: relative;
  width: auto;
  height: 2em;
  margin: 0;
  font-size: 13px;
  padding: 0 1.5em 0 .6em;
  border-radius: 0;
  border: 1px solid #777;
  z-index: 1;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-overflow: '';
  appearance: none;
}

.select select::-ms-expand {
  display: none;
}

.select:before {
  content: '▼';
  display: inline-block;
  position: absolute;
  right: .5em;
  top: 50%;
  transform: translate(0, -50%);
  width: 1em;
  height: 1em;
  font-size: 10px;
  padding: 0;
  line-height: 1;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background: transparent;
  z-index: 0;
  box-sizing: border-box;
}

.select.is-error {
  border-color: #ffb0bd;
  background: #ffedf5;
}

.quantity {
  display: inline-flex;
  margin-bottom: 1.5em;
}

.quantity:before {
  display: inline-block;
  content: 'QTY';
  margin-right: .5em;
}

.quantity input {
  position: relative;
  width: 3em;
  height: 2em;
  margin: 0;
  font-size: 13px;
  padding: 0;
  border-radius: 0;
  border: 1px solid #777;
  text-align: center;
  z-index: 1;
}

.catList {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin: 0 auto 30px;
  list-style: none;
}

.catList li {
  padding: 0 7px;
}

.catList a {
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
}

.catList a.is-current {
  text-decoration: underline;
}

.productBnrList {
  width: 100%;
}

.productBnrList ul {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 50px;
  list-style: none;
}

.productBnrList ul li {
  width: calc(33.33333% - 10px);
}

.is-shop .woocommerce ul.products li,
.is-shop .woocommerce-page ul.products li {
  margin-right: 18px;
}

.is-shop .woocommerce ul.products li.product,
.is-shop .woocommerce-page ul.products li.product {
  width: calc(25% - 13.5px);
  margin-right: 18px;
}

.is-shop .woocommerce ul.products li.product .price,
.is-shop .woocommerce-page ul.products li.product .price {
  color: #919191;
}

.is-shop .woocommerce ul.products li.last,
.is-shop .woocommerce-page ul.products li.last {
  margin-right: 0;
}

#main .is-shop:not(.is-productArchive) .woocommerce-result-count,
#main .is-shop:not(.is-productArchive) .woocommerce-ordering {
  display: none !important;
}

.productDetails {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1050px;
  padding: 0 25px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.productDetails .summary {
  width: calc(50% - 30px);
  margin-bottom: 90px;
}

.productDetails .summary .product_title {
  margin-bottom: 0;
  font-size: 30px;
  color:#272626;
}

.productDetails .summary .price {
  font-size: 15px;
  margin-bottom: 0;
}

.productDetails .summary .price .woocommerce-Price-currencySymbol {
  display: none !important;
}

.productDetails .summary .stock {
  display: none !important;
}

.productDetails .summary .variations {
  display: inline-block;
  margin-bottom: 1.5em;
}

.productDetails .summary .variations .reset_variations {
  display: none !important;
}

.productDetails .summary .variations tbody {
  display: inline-block;
}

.productDetails .summary .variations tr {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 1em;
}

.productDetails .summary .variations tr td, .productDetails .summary .variations tr th {
  display: inline;
  padding: 0;
}

.productDetails .summary .variations tr .label {
  text-transform: uppercase;
  margin-right: .5em;
}

.productDetails .summary .woocommerce-product-details__short-description {
  padding-top: 30px;
}

.productDetails button[type="submit"] {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  -webkit-appearance: none;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  background: #6C6C6C;
  border: none;
  outline: none;
}

.productDetails div.images {
  width: 50%;
  margin-bottom: 90px;
}

.productDetails div.images img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.productDetails div.images div.thumbnails {
  padding-top: 1em;
}

.productDetails div.images.woocommerce-product-gallery {
  position: relative;
}

.productDetails div.images .woocommerce-product-gallery__wrapper {
  transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  margin: 0;
  padding: 0;
}

.productDetails div.images .woocommerce-product-gallery__wrapper .zoomImg {
  background-color: #fff;
  opacity: 0;
}

.productDetails div.images .woocommerce-product-gallery__image--placeholder {
  border: 1px solid #f2f2f2;
}

.productDetails div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 25%;
  display: inline-block;
}

.productDetails div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  box-sizing: content-box;
}

.productDetails div.images .woocommerce-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
  box-sizing: content-box;
}

.productDetails div.images .woocommerce-product-gallery__trigger::after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  transform: rotate(-45deg);
  box-sizing: content-box;
}

.productDetails div.images .flex-control-thumbs {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  zoom: 1;
  margin: 0;
  padding: 0;
}

.productDetails div.images .flex-control-thumbs li {
  width: 17%;
  margin: 15px 3.75% 0 0;
  list-style: none;
}

.productDetails div.images .flex-control-thumbs li:nth-child(5n) {
  margin-right: 0;
}

.productDetails div.images .flex-control-thumbs li img {
  cursor: pointer;
  opacity: 0.5;
  margin: 0;
}

.productDetails div.images .flex-control-thumbs li img.flex-active, .productDetails div.images .flex-control-thumbs li img:hover {
  opacity: 1;
}

.productDetails .productShare {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
}

.productDetails .productShare ul {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-items: flex-end;
  list-style: none;
  margin: 0;
}

.productDetails .productShare ul li {
  margin-left: 8px;
  line-height: 1;
}

.productDetails .productShare ul a {
  display: block;
}

.productDetails .productShare ul img {
  width: 16px;
  vertical-align: bottom;
}

.page-under .pswp__button--arrow--left,
.page-under .pswp__button--arrow--right {
  position: fixed;
}

.page-under .productGuide {
  border-top: 1px solid #999;
  width: 100%;
  padding-top: 10px;
  font-size: 10px;
}

.page-under .productGuide ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-items: flex-start;
  list-style: none;
  margin: 0;
  width: 100%;
}

.page-under .productGuide ul li {
  margin: 0 1em .5em 0;
  line-height: 1;
}

.page-under .productGuide ul a {
  color: #999;
}

.page-under .products,
.page-index .products {
  width: 100%;
  margin-bottom: 45px;
}

.page-under .productsList,
.page-index .productsList {
  max-width: 980px;
  padding: 0 25px;
  margin: 0 auto;
}

.page-under .products.related,
.page-index .products.related {
  margin-bottom: 0;
}

.page-under .products.related ul.products,
.page-index .products.related ul.products {
  padding-bottom: 0;
}

.page-index .products > h2 {
  margin-bottom: 80px;
  font-size: 20px;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}

.page-under .products > h2{
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Josefin Sans', sans-serif!important;  text-align: keft;
}

.page-under .products ul,
.page-index .products ul {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  list-style: none;
}

.page-under .products ul:before, .page-under .products ul:after,
.page-index .products ul:before,
.page-index .products ul:after {
  order: 10;
  display: block;
  width: calc(25% - 13.5px);
  content: '';
}

.page-under .products li,
.page-index .products li {
  width: calc(33% - 13.5px);
}

.page-under .products li a,
.page-index .products li a {
  display: block;
}

.page-under .products li > a.button,
.page-index .products li > a.button {
  display: none !important;
}

.page-under .products img,
.page-index .products img {
  margin-bottom: 15px;
}

.page-under .products .woocommerce-loop-product__title,
.page-index .products .woocommerce-loop-product__title {
  font-size: 16px;
  font-family: 'Shippori Mincho', serif;
}

.page-under .products .price,
.page-index .products .price {
  font-size: 12px;
  color: #999;
}

.page-under ul.products,
.page-index ul.products {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding-bottom: 40px;
}

.page-under ul.products:before, .page-under ul.products:after,
.page-index ul.products:before,
.page-index ul.products:after {
  order: 10;
  display: block;
  width: calc(25% - 13.5px);
  content: '';
}

.page-index ul.products li {
  margin-bottom: 50px;
}

.page-index .productsList {
  margin-bottom: 154px;
}

.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: left;
}

.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: left;
}

.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: left;
}

@media screen and (max-width: 767px) {
  .select {
    font-size: 3.73333vw;
    padding: 0;
    background: #fff;
    font-weight: normal;
  }
  .select select {
    width: 100%;
    font-size: 3.73333vw;
  }
  .select:before {
    font-size: 2.66667vw;
    right: .8em;
  }
  .quantity {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .quantity:before {
    width: 50%;
    margin-right: 0;
    padding-right: 2em;
    text-align: right;
    box-sizing: border-box;
  }
  .quantity input {
    width: 50%;
    font-size: 4vw;
  }
  .catList {
    margin-bottom: 8vw;
  }
  .catList li {
    padding: 0 1.86667vw;
  }
  .catList a {
    font-size: 3.2vw;
  }
  .productBnrList ul {
    margin: 0 auto 13.33333vw;
  }
  .productBnrList ul li {
    width: 100%;
  }
  .productBnrList ul li + li {
    margin-top: 2.66667vw;
  }
  .productDetails {
    padding: 0 4vw;
    margin-bottom: 20vw;
  }
  .productDetails .summary {
    width: 100%;
    margin-bottom: 13.33333vw;
  }
  .productDetails .summary .product_title {
    font-size: 4.8vw;
  }
  .productDetails .summary .price {
    padding: 5.33333vw 2.66667vw;
    font-size: 4vw;
  }
  .productDetails .summary .woocommerce-product-details__short-description {
    padding-top: 5.33333vw;
  }
  .productDetails .summary .variations {
    display: block;
    width: 100%;
    border-bottom: 1px solid #E2E0E0;
    padding-bottom: 2.66667vw;
    margin-bottom: 1.5em;
  }
  .productDetails .summary .variations .reset_variations {
    display: none !important;
  }
  .productDetails .summary .variations tbody {
    display: block;
    width: 100%;
  }
  .productDetails .summary .variations tr {
    margin-right: 0;
    margin-bottom: 2.66667vw;
    width: 100%;
  }
  .productDetails .summary .variations tr td, .productDetails .summary .variations tr th {
    display: block;
    width: 50%;
    padding: 0;
  }
  .productDetails .summary .variations tr .label {
    text-transform: uppercase;
    margin-right: 0;
    padding-right: 2em;
    text-align: right;
  }
  .productDetails .summary .variations tr .select {
    width: 100%;
  }
  .productDetails .summary .variations tr .select select {
    width: 100%;
  }
  .productDetails button[type="submit"] {
    height: 10.66667vw;
    font-size: 3.73333vw;
  }
  .productDetails div.images {
    width: 100%;
    margin-bottom: 5.33333vw;
  }
  .productDetails div.images .woocommerce-product-gallery__trigger {
    width: 9.6vw;
    height: 9.6vw;
  }
  .productDetails div.images .woocommerce-product-gallery__trigger::before {
    width: 2.66667vw;
    height: 2.66667vw;
    top: 2.4vw;
    left: 2.4vw;
  }
  .productDetails div.images .woocommerce-product-gallery__trigger::after {
    width: 0.53333vw;
    height: 2.13333vw;
    border-radius: 1.6vw;
    top: 5.06667vw;
    left: 5.86667vw;
  }
  .productDetails div.images .flex-control-thumbs li {
    margin: 4vw 3.75% 0 0;
  }
  .productDetails .productShare {
    margin-bottom: 4vw;
    font-size: 3.73333vw;
  }
  .productDetails .productShare ul li {
    margin-left: 2.13333vw;
  }
  .productDetails .productShare ul img {
    width: 6.4vw;
  }
  .page-under .productGuide {
    padding-top: 2.66667vw;
    font-size: 3.2vw;
  }
  .page-under .productGuide ul li {
    margin-bottom: 1em;
  }
  .page-index .products,
  .page-under .products {
    margin-bottom: 10.66667vw;
  }
  .page-index .productsList,
  .page-under .productsList {
    padding: 0 3.5%;
  }
  .page-index .products > h2,
  .page-under .products > h2 {
    margin-bottom: 10.66667vw;
    font-size: 5.33333vw;
  }
  .page-index .products ul li,
  .page-under .products ul li {
    width: 48%;
  }
  .page-index .products ul:before, .page-index .products ul:after,
  .page-under .products ul:before,
  .page-under .products ul:after {
    width: 48%;
  }
  .page-index .products img,
  .page-under .products img {
    margin-bottom: 2.66667vw;
  }
  .page-index .products .woocommerce-loop-product__title,
  .page-under .products .woocommerce-loop-product__title {
    font-size: 3.2vw;
  }
  .page-index .products .price,
  .page-under .products .price {
    font-size: 2.66667vw;
    font-family: 'Shippori Mincho', serif;
  }
  .page-index ul.products,
  .page-under ul.products {
    margin-bottom: 0;
    padding-bottom: 5.33333vw;
  }
  .page-index ul.products li,
  .page-under ul.products li {
    width: 48%;
    margin-bottom: 5.33333vw;
  }
  .page-index ul.products:before, .page-index ul.products:after,
  .page-under ul.products:before,
  .page-under ul.products:after {
    width: 48%;
  }
}

.commonSection.is-cart .woocommerce {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.commonSection.is-cart .woocommerce-form-coupon-toggle {
  width: 100%;
}

.commonSection.is-cart .woocommerce-cart-form {
  width: 100%;
}

.commonSection.is-cart .woocommerce-cart-form th {
  font-size: 15px;
  font-weight: normal;
}

.commonSection.is-cart .woocommerce-cart-form .shop_table {
  border: none;
  background: none;
}

.commonSection.is-cart .woocommerce-cart-form .product-remove {
  width: 20px;
  padding: 0;
}

.commonSection.is-cart .woocommerce-cart-form .product-thumbnail {
  width: 114px;
}

.commonSection.is-cart .woocommerce-cart-form .product-price {
  text-align: center;
  width: 130px;
}

.commonSection.is-cart .woocommerce-cart-form .product-quantity {
  text-align: center;
  width: 130px;
}

.commonSection.is-cart .woocommerce-cart-form .product-quantity .quantity {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.commonSection.is-cart .woocommerce-cart-form .product-subtotal {
  width: 130px;
  text-align: center;
}

.commonSection.is-cart .woocommerce-cart-form a.remove {
  color: #222 !important;
}

.commonSection.is-cart .woocommerce-cart-form a.remove:hover {
  color: #999 !important;
  background-color: transparent !important;
}

.commonSection.is-cart .woocommerce .cart-collaterals h2 {
  font-size: 20px;
}

.commonSection.is-cart .woocommerce .cart_totals .shop_table {
  border: none;
  background: none;
}

.commonSection.is-cart .woocommerce .cart_totals .shop_table th {
  font-size: 15px;
  font-weight: normal;
  border: none;
}

.commonSection.is-cart .woocommerce .cart_totals .shop_table td {
  border: none;
}

.commonSection.is-cart .woocommerce .cart_totals .shop_table bpi,
.commonSection.is-cart .woocommerce .cart_totals .shop_table strong {
  font-weight: normal;
  color: #000;
}

.commonSection.is-cart .woocommerce .cart_totals .woocommerce-shipping-destination {
  margin-bottom: .75em;
}

.commonSection.is-cart .woocommerce .cart_totals .shipping-calculator-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  padding: .5em .8em;
  color: #fff;
  font-size: 12px;
  background: #222;
  font-weight: normal;
  border-radius: 0 !important;
}

.commonSection.is-cart .woocommerce .button.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 40px;
  font-weight: normal;
  font-size: 15px;
  color: #fff;
  background: #000;
  border-radius: 0;
  margin: 0 auto;
}

.commonSection.is-cart .return-to-shop {
  padding-top: 2em;
  text-align: center;
  width: 100%;
}

.commonSection.is-cart .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  height: 40px;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
  background: #D68400;
  border-radius: 0;
}

#main .commonSection.is-cart .woocommerce-cart-form .coupon .input-text {
  width: 120px;
  height: 30px;
  padding: .2em .5em;
  font-size: 12px;
}

#main .commonSection.is-cart .woocommerce-cart-form .coupon .input-text:-ms-input-placeholder {
  display: none;
}

#main .commonSection.is-cart .woocommerce-cart-form .coupon .input-text::placeholder {
  display: none;
}

#main .commonSection.is-cart .woocommerce-cart-form .coupon .button {
  width: 120px;
  height: 30px;
  color: #fff;
  font-size: 12px;
  background: #222;
  font-weight: normal;
  border-radius: 0;
}

.commonSection.is-checkout .woocommerce-checkout h3, .commonSection.is-checkout .woocommerce-billing-fields h3 {
  font-size: 15px;
  margin-bottom: .5em;
}

.commonSection.is-checkout .woocommerce-checkout-review-order .button {
  width: 120px;
  height: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  background: #222;
  border-radius: 0;
}

.commonSection.is-checkout .woocommerce-checkout-review-order .button:hover {
  background: #999;
}

.commonSection.is-checkout .woocommerce #customer_details {
  margin-bottom: 2em;
}

.commonSection.is-checkout .woocommerce .checkout_coupon {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.commonSection.is-checkout .woocommerce .checkout_coupon p {
  float: none;
}

.commonSection.is-checkout .woocommerce .checkout_coupon p:first-child {
  width: 100%;
}

.commonSection.is-checkout .woocommerce .checkout_coupon .form-row {
  padding: 0;
}

.commonSection.is-checkout .woocommerce .checkout_coupon .button {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 47px;
  padding: 0 2em;
  font-size: 15px;
  color: #fff;
  background: #222;
  border-radius: 0;
}

.commonSection.is-checkout .woocommerce-order h2 {
  font-size: 15px;
  margin-bottom: .5em;
}

.commonSection.is-checkout .woocommerce-order .woocommerce-thankyou-order-received {
  text-align: center;
  font-size: 20px;
}

.commonSection.is-checkout .woocommerce-order .thankYouText {
  padding: 40px;
  margin-bottom: 35px;
  background: #efefef;
}

.commonSection.is-checkout .woocommerce-order .thankYouText > *:last-child {
  margin-bottom: 0;
}

.commonSection.is-checkout .woocommerce-order .back {
  text-align: center;
}

.commonSection.is-checkout .woocommerce-order .back .button {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  height: 40px;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  background: #D68400;
  border-radius: 0;
}

.commonSection.is-checkout .woocommerce-order .back .button:hover {
  background: #999;
}

.commonSection.is-checkout .woocommerce-order .woocommerce-order-overview strong {
  font-weight: normal;
}

.commonSection.is-checkout .woocommerce-order .woocommerce-table--order-details {
  font-size: 14px;
}

.commonSection.is-checkout .woocommerce-order .woocommerce-table--order-details th {
  font-weight: normal;
  font-size: 14px;
}

.commonSection.is-checkout .woocommerce-order .woocommerce-table--order-details td {
  font-weight: normal;
  font-size: 14px;
}

.commonSection.is-checkout .woocommerce-terms-and-conditions {
  background: #fff;
}

.commonSection.is-checkout .woocommerce-terms-and-conditions-wrapper a {
  color: #fb7818;
  text-decoration: underline;
}

.commonSection.is-checkout .woocommerce-terms-and-conditions h2 {
  margin-bottom: .5em;
  font-size: 1.2em;
  background: transparent !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0 !important;
}

.commonSection.is-checkout .woocommerce-terms-and-conditions h2:not(:first-child) {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  /*.commonSection.is-cart .woocommerce .woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item {
    margin-top: 2em;
  }*/
  .commonSection.is-cart .woocommerce-cart-form th {
    font-size: 1em;
    font-weight: normal;
  }
  .commonSection.is-cart .woocommerce-cart-form tr {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
  }
  .commonSection.is-cart .woocommerce-cart-form td {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    border-top: none;
  }
  .commonSection.is-cart .woocommerce-cart-form td:before {
    font-weight: normal;
  }
  .commonSection.is-cart .woocommerce-cart-form .shop_table {
    border: none;
    background: none;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-remove {
    order: 2;
    width: 10%;
    padding: 0;
    padding-top: 1em;
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
    text-align: center;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-thumbnail {
    order: 1;
    display: flex;
    width: 90%;
    padding-top: 1em;
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-thumbnail:before {
    display: none;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-thumbnail img {
    width: 23.46667vw;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-name {
    order: 3;
    width: 100%;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-price {
    order: 4;
    text-align: center;
    width: 100%;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-quantity {
    order: 5;
    text-align: center;
    width: 100%;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-quantity .quantity {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-quantity .quantity:before {
    display: none;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-quantity .quantity input {
    width: 6em;
    text-align: center;
    font-size: 3.2vw;
  }
  .commonSection.is-cart .woocommerce-cart-form .product-subtotal {
    order: 6;
    width: 100%;
    padding-bottom: 1em;
    text-align: center;
    /*border-bottom: 1px solid rgba(0, 0, 0, .1) !important;*/
  }
  .commonSection.is-cart .woocommerce-cart-form a.remove {
    color: #222 !important;
  }
  .commonSection.is-cart .woocommerce-cart-form a.remove:hover {
    color: #999 !important;
    background-color: transparent !important;
  }
  .commonSection.is-cart .woocommerce-cart-form tr:not(.woocommerce-cart-form__cart-item) td {
    background: transparent !important;
    flex-wrap: wrap;
    padding: 1em 0;
  }
  .commonSection.is-cart .woocommerce-cart-form tr:not(.woocommerce-cart-form__cart-item) [name="update_cart"] {
    width: 100%;
    max-width: 100%;
    height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-cart .woocommerce .cart-collaterals h2 {
    font-size: 1.8em;
    margin-bottom: .5em;
    text-align: center;
  }
  .commonSection.is-cart .woocommerce .cart_totals .shop_table {
    border: none;
    background: none;
  }
  .commonSection.is-cart .woocommerce .cart_totals .shop_table th {
    font-size: 15px;
    font-weight: normal;
    border: none;
  }
  .commonSection.is-cart .woocommerce .cart_totals .shop_table td {
    border: none;
    background: transparent !important;
  }
  .commonSection.is-cart .woocommerce .cart_totals .shop_table bpi,
  .commonSection.is-cart .woocommerce .cart_totals .shop_table strong {
    font-weight: normal;
    color: #000;
  }
  .commonSection.is-cart .woocommerce .cart_totals .shipping-calculator-button {
    width: 10em;
    padding: .5em;
    font-size: .8em;
  }
  .commonSection.is-cart .woocommerce .button.checkout-button {
    width: 100%;
    max-width: 100%;
    height: 3em;
    font-size: 1.2em;
  }
  #main .commonSection.is-cart .woocommerce-cart-form .coupon {
    padding-bottom: 1.5em;
  }
  #main .commonSection.is-cart .woocommerce-cart-form .coupon .input-text {
    width: 100%;
    height: 3em;
    padding: .2em .5em;
    margin-bottom: .3em;
    font-size: 3.2vw;
  }
  #main .commonSection.is-cart .woocommerce-cart-form .coupon .input-text:-ms-input-placeholder {
    display: none;
  }
  #main .commonSection.is-cart .woocommerce-cart-form .coupon .input-text::placeholder {
    display: none;
  }
  #main .commonSection.is-cart .woocommerce-cart-form .coupon .button {
    width: 100%;
    max-width: 100%;
    height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-checkout .woocommerce-checkout h3, .commonSection.is-checkout .woocommerce-billing-fields h3 {
    font-size: 1.4em;
  }
  .commonSection.is-checkout .woocommerce-checkout-review-order .button {
    width: 100%;
    max-width: 100%;
    height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-checkout .woocommerce .checkout_coupon .form-row {
    padding: 0;
    width: 100%;
  }
  .commonSection.is-checkout .woocommerce .checkout_coupon .button {
    width: 100%;
    height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-checkout .woocommerce-checkout-review-order-table .includes_tax {
    display: block;
  }
  .commonSection.is-checkout .woocommerce-order h2 {
    font-size: 1.2em;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 1.5em;
  }
  .commonSection.is-checkout .woocommerce-order .thankYouText {
    padding: 1.5em;
    margin-bottom: 2em;
  }
  .commonSection.is-checkout .woocommerce-order .back .button {
    max-width: 100%;
    height: 3em;
    font-size: 1.4em;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-order-overview li {
    margin-bottom: 2em;
    font-weight: 600;
    white-space: nowrap;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-order-overview li strong {
    font-weight: normal;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-column--billing-address {
    margin-bottom: 2em;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-table--order-details {
    font-size: 1em;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-table--order-details th {
    font-weight: normal;
    font-size: 1em;
  }
  .commonSection.is-checkout .woocommerce-order .woocommerce-table--order-details td {
    font-weight: normal;
    font-size: 1em;
  }
}

.commonSection.is-myPage .woocommerce {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.commonSection.is-myPage .woocommerce .woocommerce-ResetPassword {
  max-width: 500px;
  margin: 0 auto;
}

.commonSection.is-myPage .woocommerce .woocommerce-ResetPassword .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 30px;
  font-size: 1em;
  color: #fff;
  background: #222;
  text-decoration: none;
}

.commonSection.is-myPage .woocommerce .woocommerce-ResetPassword .form-row-first {
  width: 100%;
}

.commonSection.is-myPage .woocommerce #customer_login h2 {
  font-size: 20px;
  margin-bottom: .7em;
  text-align: center;
}

.commonSection.is-myPage .woocommerce #customer_login a {
  color: #fb7818;
  text-decoration: underline;
}

.commonSection.is-myPage .woocommerce #customer_login .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 30px;
  font-size: 1em;
  color: #fff;
  background: #222;
  text-decoration: none;
}

.commonSection.is-myPage .woocommerce-MyAccount-navigation {
  width: 190px;
}

.commonSection.is-myPage .woocommerce-MyAccount-navigation ul {
  width: 100%;
  margin: 0;
  list-style: none;
}

.commonSection.is-myPage .woocommerce-MyAccount-navigation li {
  width: 100%;
}

.commonSection.is-myPage .woocommerce-MyAccount-navigation li a {
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 2.2;
}

.commonSection.is-myPage .woocommerce-MyAccount-navigation li.is-active a {
  color: #d68420;
}

.commonSection.is-myPage .woocommerce-MyAccount-content {
  width: calc(100% - 220px);
  min-height: 300px;
  font-size: 15px;
  line-height: 2.2;
}

.commonSection.is-myPage .woocommerce-MyAccount-content h3 {
  font-size: 20px;
  margin-bottom: .7em;
}

.commonSection.is-myPage .woocommerce-MyAccount-content a {
  color: #d68420;
  text-decoration: underline;
}

.commonSection.is-myPage .woocommerce-MyAccount-content .woocommerce-Button.button {
  color: #fff;
  white-space: nowrap;
  background: #222;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.commonSection.is-myPage .woocommerce-MyAccount-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 30px;
  font-size: .8em;
  color: #fff;
  background: #222;
  text-decoration: none;
}

.commonSection.is-myPage .woocommerce-Address {
  line-height: 1.6;
}

.commonSection.is-myPage .woocommerce-Address .title {
  margin-bottom: 1em;
}

.commonSection.is-myPage .woocommerce-Address .title h3 {
  font-size: 20px;
}

.commonSection.is-myPage .woocommerce-Address a.edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 30px;
  font-size: .8em;
  color: #fff;
  background: #222;
  text-decoration: none;
}

.commonSection.is-myPage .woocommerce-Address address {
  margin-bottom: 2em;
  font-style: normal;
}

.commonSection.is-myPage .woocommerce-Address .add {
  text-align: right;
}

.commonSection.is-myPage .woocommerce-order-details h2 {
  font-size: 15px;
  margin-bottom: .5em;
}

.commonSection.is-myPage .woocommerce-order-details .woocommerce-thankyou-order-received {
  text-align: center;
  font-size: 20px;
}

.commonSection.is-myPage .woocommerce-order-details .woocommerce-order-overview strong {
  font-weight: normal;
}

.commonSection.is-myPage .woocommerce-order-details .woocommerce-table--order-details {
  font-size: 14px;
}

.commonSection.is-myPage .woocommerce-order-details .woocommerce-table--order-details th {
  font-weight: normal;
  font-size: 14px;
}

.commonSection.is-myPage .woocommerce-order-details .woocommerce-table--order-details td {
  font-weight: normal;
  font-size: 14px;
}

.commonSection.is-myPage .woocommerce-columns--addresses h2 {
  font-size: 15px;
  margin-bottom: .5em;
}

.commonSection.is-myPage .woocommerce-columns--addresses address {
  line-height: 1.6;
}

.postBody .woocommerce form .form-row,
.postBody .woocommerce-page form .form-row {
  margin-bottom: 1em;
}

.postBody .woocommerce form .show-password-input,
.postBody .woocommerce-page form .show-password-input {
  top: 50%;
  transform: translate(0, -50%);
}

.postBody .woocommerce form .select2 .select2-selection--single,
.postBody .woocommerce-page form .select2 .select2-selection--single {
  height: 44px;
  font-size: 14px;
  border-radius: 0;
  border-color: #999;
}

.postBody .woocommerce form .select2 .select2-selection__rendered, .postBody .woocommerce form .select2 .select2-selection__arrow,
.postBody .woocommerce-page form .select2 .select2-selection__rendered,
.postBody .woocommerce-page form .select2 .select2-selection__arrow {
  height: 44px;
  font-size: 14px;
}

.postBody .woocommerce form .select2 .select2-selection__rendered,
.postBody .woocommerce-page form .select2 .select2-selection__rendered {
  line-height: 44px;
}

@media screen and (max-width: 767px) {
  .commonSection.is-myPage .woocommerce .woocommerce-ResetPassword .button {
    min-width: 100%;
    min-height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-myPage .woocommerce #customer_login h2 {
    font-size: 1.4em;
  }
  .commonSection.is-myPage .woocommerce #customer_login .button {
    min-width: 100%;
    min-height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-myPage .woocommerce #customer_login .woocommerce-form-login__rememberme {
    margin-bottom: .6em;
  }
  .commonSection.is-myPage .woocommerce #customer_login .u-column1 {
    margin-bottom: 3em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-navigation {
    width: 100%;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #ccc;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #999;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-navigation li {
    width: 33.33%;
    border-left: 1px solid #999;
    border-top: 1px solid #999;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-navigation li:nth-child(3), .commonSection.is-myPage .woocommerce-MyAccount-navigation li:nth-child(6) {
    border-right: 1px solid #999;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-navigation li a {
    padding: .3em 0;
    font-size: 1em;
    text-align: center;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-navigation li.is-active a {
    color: #fff;
    background: #D68420;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content {
    width: 100%;
    font-size: 1em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content h3 {
    font-size: 1.4em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .woocommerce-Button.button {
    font-size: .9em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .button {
    min-width: 50%;
    min-height: 3em;
    font-size: .8em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .button[name="save_address"], .commonSection.is-myPage .woocommerce-MyAccount-content .button[name="save_account_details"] {
    min-width: 100%;
    min-height: 3em;
    font-size: 1.2em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .my_account_orders {
    font-size: 1em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-actions {
    padding: 1em;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-actions:before {
    display: none;
  }
  .commonSection.is-myPage .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-actions .button {
    width: 100%;
    font-size: 1.2em;
  }
  .commonSection.is-myPage .woocommerce-Address + .woocommerce-Address {
    padding-top: 1em;
  }
  .commonSection.is-myPage .woocommerce-Address .title h3 {
    font-size: 1.4em;
  }
  .commonSection.is-myPage .woocommerce-Address a.edit {
    min-width: 50%;
    min-height: 2.6em;
    font-size: 1em;
  }
  .commonSection.is-myPage .woocommerce-order-details h2 {
    font-size: 1.4em;
    margin-bottom: .5em;
  }
  .commonSection.is-myPage .woocommerce-order-details .woocommerce-table--order-details {
    font-size: 1em;
  }
  .commonSection.is-myPage .woocommerce-order-details .woocommerce-table--order-details th {
    font-size: 1em;
  }
  .commonSection.is-myPage .woocommerce-order-details .woocommerce-table--order-details td {
    font-size: 1em;
  }
  .commonSection.is-myPage .woocommerce-columns--addresses h2 {
    font-size: 1.4em;
  }
  .commonSection.is-myPage .woocommerce-column--shipping-address {
    margin-top: 3em;
  }
  .postBody .woocommerce form .select2 .select2-selection--single,
  .postBody .woocommerce-page form .select2 .select2-selection--single {
    height: 12.53333vw;
    font-size: 3.7333vw;
  }
  .postBody .woocommerce form .select2 .select2-selection__rendered, .postBody .woocommerce form .select2 .select2-selection__arrow,
  .postBody .woocommerce-page form .select2 .select2-selection__rendered,
  .postBody .woocommerce-page form .select2 .select2-selection__arrow {
    height: 12.53333vw;
    font-size: 3.7333vw;
  }
  .postBody .woocommerce form .select2 .select2-selection__rendered,
  .postBody .woocommerce-page form .select2 .select2-selection__rendered {
    line-height: 12.53333vw;
  }
}

/* Components style
-----------------------------------*/
body .btn {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  max-width: 940px;
  padding: 1.2em .7em;
  margin: 0 auto;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border: none;
  text-decoration: none !important;
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: all ease-out .2s;
  overflow: hidden;
}

body .btn span {
  display: inline-block;
  font-size: 15px;
  line-height: 1.8;
}

.more body .btn svg, body .more .btn svg {
  margin-left: .3em;
  width: 2.66667vw;
  height: 4vw;
}

body .btn.is-small {
  border-radius: 2px;
  font-size: 11px;
  line-height: 16px;
  padding-left: 6px;
  padding-right: 6px;
}

body .btn.is-medium {
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

body .btn.is-large {
  font-size: 22px;
  padding-left: 20px;
  padding-right: 20px;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body .btn {
  background: #D8A526;
  color: #fff;
}

[lang="en"] body .btn span {
  font-size: 4.26667vw;
  font-weight: 400;
  letter-spacing: .12em;
  padding-left: .12em;
  transform: translate(0, 6%);
}

[lang="ja"] body .btn .is-en {
  display: none;
}

[lang="en"] body .btn .is-ja {
  display: none;
}

body .btn .arrow-left {
  transform: rotate(-180deg);
  margin-right: .5em;
}

body .btn .arrow-right {
  margin-left: .5em;
}

body .btn strong {
  color: inherit;
}

body .btn small {
  display: block;
  font-size: 11px;
  line-height: 1;
  margin-top: 5px;
}

body .btn .is-right {
  position: absolute;
  right: .8em;
  display: block;
  line-height: 1;
  font-size: 1.2em;
  top: 50%;
  transform: translate(50%, -60%);
}

body .btn .icon:first-child,
body .btn .tag:first-child {
  margin-left: -2px;
  margin-right: 4px;
}

body .btn .icon:last-child,
body .btn .tag:last-child {
  margin-left: 4px;
  margin-right: -2px;
}

body .btn:hover, body .btn:focus, body .btn.is-active {
  text-decoration: none;
  background: #000;
}

body .btn:active {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
}

body .btn-white {
  color: #D8A526;
  background: #fff;
}

body .btn-white svg {
  fill: #D8A526;
  transition: all ease-out .2s;
}

body .btn-white:hover {
  color: #fff;
}

body .btn-white:hover:before {
  transform: translate(0, 0);
}

body .btn-white:hover svg {
  fill: #fff;
}

body .btn-black {
  color: #fff;
  background: #212121;
}

body .btn-black svg {
  fill: #fff;
}

body .btn-black:before {
  background: #666;
}

body .btn-black:hover:before {
  transform: translate(0, 0);
}

body .btn-send01 {
  width: auto;
  max-width: none;
  padding: 7px 24px;
  line-height: 1;
  background: #000;
  margin: 0;
}

body .btn.is-dark {
  color: #fff;
}

body .btn.is-link {
  background-color: transparent;
  border-color: transparent;
  color: #000;
  text-decoration: underline;
}

body .btn.is-link:hover, body .btn.is-link:focus {
  background-color: #b2b6b9;
  color: #000;
}

body .btn.is-next {
  display: flex;
  flex-flow: row nowrap;
  padding-right: 0;
  padding-left: 0;
}

body .btn.is-next span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}

body .btn.is-next:before, body .btn.is-next:after {
  display: inline-block;
  speak: none;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  width: 1.5em;
  min-width: 1.5em;
  content: '';
  text-align: center;
}

body .btn.is-next:after {
  content: \f105;
}

body .btn[disabled], body .btn.is-disabled {
  opacity: 0.5;
}

body .btn.is-fullWidth {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 767px) {
  body .btn {
    font-size: 4vw;
  }
  body .btn span {
    font-size: 4vw;
  }
  body .more .btn svg {
    width: 12px;
    height: 18px;
  }
}

.tag {
  display: inline-flex;
  width: auto;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  color: #333;
  font-size: .8em;
  font-style: normal;
  font-weight: 700;
  justify-content: center;
  line-height: 1.4;
  padding: .2em 1em;
  vertical-align: middle;
  white-space: nowrap;
  border: 0;
  text-decoration: none !important;
}

.tag .delete {
  margin-left: 4px;
  margin-right: -6px;
}

.tag.is-white {
  background-color: #fff;
  color: #000;
}

.tag.is-black {
  background-color: #000;
  color: #fff;
}

.tag.is-light {
  background-color: #b2b6b9;
  color: #69707a;
}

.tag.is-dark {
  background-color: #69707a;
  color: #b2b6b9;
}

.tag.is-primary {
  background-color: #1fc8db;
  color: findColorInvert(#1fc8db);
}

.tag.is-info {
  background-color: #3f78c6;
  color: findColorInvert(#3f78c6);
}

.tag.is-success {
  background-color: #78bc1e;
  color: findColorInvert(#78bc1e);
}

.tag.is-warning {
  background-color: #fad00d;
  color: findColorInvert(#fad00d);
}

.tag.is-danger {
  background-color: #C30705;
  color: findColorInvert(#C30705);
}

.tag.is-border {
  border: 1px solid #ddd;
}

.tag.is-dark {
  color: #fff;
}

.tag.is-small {
  font-size: .8em;
  padding: .2em .6em;
  border-radius: 3px;
}

.tag.is-medium {
  font-size: 1em;
  padding: .7em 1em .6em;
  border-radius: 3px;
}

.tag.is-large {
  font-size: 1.25em;
  padding: .4em .8em;
}

.tag.is-large .delete {
  margin-left: 4px;
  margin-right: -8px;
}

.tag.discTag {
  padding: .2em 1em .1em;
  margin-bottom: 2vw;
  min-width: 5em;
  border-radius: 0;
}

.tag.is-album {
  color: #fff;
  background: #c00;
}

.tag.is-ep, .tag.is-single {
  color: #fff;
  background: #0085cc;
}

.tag.is-other {
  color: #fff;
  background: #000;
}

.tag.is-dvd-blu-ray {
  color: #fff;
  background: #e06200;
}

@media screen and (min-width: 767px) {
  .tag.discTag {
    margin-bottom: 10px;
  }
}

.modal {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 1000;
  padding: 0 5.867%;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
  
  display: none;
  /**
	 * Movieモーダル
	 */
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal .delete {
  position: absolute;
  right: -22px;
  top: -22px;
  display: inline-block;
  width: 44px;
  height: 44px;
  vertical-align: top;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 100;
}

.modal .delete:before, .modal .delete:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -25%;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 50%;
}

.modal .delete:before {
  transform: rotate(45deg);
}

.modal .delete:after {
  transform: rotate(-45deg);
}

.modal-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .75);
}

.modal-container {
  width: 100%;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
}

.modal-content .message {
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content .message-body {
  padding: 30px;
}

.modal-content .message-body > *:last-child {
  margin-bottom: 0 !important;
}

.modal-content .message-header {
  padding: 20px 30px 0;
}

.modal.modalMovie .modal-content .message-body {
  padding: 0;
  border: 1px solid #fff;
}

.modal.modalComment {
  color: #311b00;
}

.modal.modalComment p:last-child {
  margin-bottom: 0 !important;
}

.modal.modalComment hr {
  margin-bottom: 25px;
}

.modal.modalComment .message-body {
  padding: 10px 30px 30px;
}

.modal.modalComment .message-header {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.modal.modalComment h5 {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  color: #fff;
  background: #311b00;
}

.modal.modalComment .prev,
.modal.modalComment .next {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  font-size: 25px;
  line-height: 1;
  color: #311b00;
  background: #fff;
  border: 2px solid #311b00;
  border-radius: 22px;
  -webkit-appearance: none;
  z-index: 100;
  cursor: pointer;
}

.modal.modalComment .prev {
  left: -1em;
}

.modal.modalComment .next {
  right: -1em;
}

.modalMovie .modal-content {
  max-width: 900px;
}

.modalMovie .modal-content .message-body {
  padding: 0;
}

.modalMovie .modal-content .message-body .video-container {
  border: none;
  padding-bottom: 55.25%;
  margin: 0;
}

@media screen and (max-width: 667px) {
  .modal .delete {
    width: 38px;
    height: 38px;
    position: absolute;
    right: -16px;
    top: -16px;
  }
}

/* @ pagination
// ------------------------------------------------------------ */
.pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 8vw;
  margin: 0;
}

.pagination span,
.pagination a {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  min-width: 5.33333vw;
  height: 5.33333vw;
  padding: .2em 0 0;
  margin: 0 2.13333vw;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  outline: none;
  text-decoration: none;
  color: #B1ABAB;
  background: #fff;
  border: 1px solid #B1ABAB;
  border-radius: 50%;
}

.pagination span svg,
.pagination a svg {
  margin-top: -.2em;
  fill: #757575;
  vertical-align: bottom;
}

.pagination span .arrow-left,
.pagination a .arrow-left {
  transform: rotate(180deg) translate(-20%, 0);
}

.pagination span .arrow-right,
.pagination a .arrow-right {
  transform: translate(-20%, 0);
}

.pagination span:hover,
.pagination a:hover {
  border: 1px solid #D8A526;
  color: #D8A526;
}

.pagination span:hover svg,
.pagination a:hover svg {
  fill: #D8A526;
}

.pagination span.is-current,
.pagination a.is-current {
  color: #fff !important;
  background: #D8A526;
  border: 1px solid #D8A526;
}

.pagination span.is-current:hover,
.pagination a.is-current:hover {
  opacity: 1;
}

#main .woocommerce .woocommerce-pagination .page-numbers {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 8vw;
  margin: 0;
  float: none;
  border: none;
}

#main .woocommerce .woocommerce-pagination .page-numbers li {
  float: none;
  display: block;
  overflow: visible;
  border: none;
}

#main .woocommerce .woocommerce-pagination .page-numbers span,
#main .woocommerce .woocommerce-pagination .page-numbers a {
  display: inline-flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 5.33333vw;
  height: 5.33333vw;
  padding: .2em 0 0;
  margin: 0 1.06667vw;
  font-family: Arial, Helvetica, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  outline: none;
  text-decoration: none;
  color: #B1ABAB;
  background: #fff;
  border: 1px solid #B1ABAB;
  border-radius: 50%;
}

#main .woocommerce .woocommerce-pagination .page-numbers span:hover,
#main .woocommerce .woocommerce-pagination .page-numbers a:hover {
  border: 1px solid #D8A526;
  color: #D8A526;
}

#main .woocommerce .woocommerce-pagination .page-numbers span:hover svg,
#main .woocommerce .woocommerce-pagination .page-numbers a:hover svg {
  fill: #D8A526;
}

#main .woocommerce .woocommerce-pagination .page-numbers span.prev, #main .woocommerce .woocommerce-pagination .page-numbers span.next,
#main .woocommerce .woocommerce-pagination .page-numbers a.prev,
#main .woocommerce .woocommerce-pagination .page-numbers a.next {
  display: none;
}

#main .woocommerce .woocommerce-pagination .page-numbers span.current,
#main .woocommerce .woocommerce-pagination .page-numbers a.current {
  color: #fff !important;
  background: #D8A526;
  border: 1px solid #D8A526;
}

#main .woocommerce .woocommerce-pagination .page-numbers span.current:hover,
#main .woocommerce .woocommerce-pagination .page-numbers a.current:hover {
  opacity: 1;
}

@media screen and (min-width: 767px) {
  .pagination {
    padding-bottom: 40px;
  }
  .pagination span,
  .pagination a {
    min-width: 20px;
    height: 20px;
    font-size: 12px;
    margin: 0 6px;
  }
  #main .woocommerce .woocommerce-pagination .page-numbers {
    padding-bottom: 40px;
  }
  #main .woocommerce .woocommerce-pagination .page-numbers span,
  #main .woocommerce .woocommerce-pagination .page-numbers a {
    min-width: 20px;
    height: 20px;
    font-size: 12px;
    margin: 0 6px;
  }
}

@media screen and (min-width: 1023px) {
  #main .woocommerce .woocommerce-pagination,
  .pagination {
    padding-bottom: 60px;
  }
}

.touchlink {
  cursor: pointer;
}

/* extension style
-----------------------------------*/
.white {
  color: #fff !important;
}

.black {
  color: #000 !important;
}

.blue {
  color: #3f78c6 !important;
}

.green {
  color: #78bc1e !important;
}

.orange {
  color: #fb7818 !important;
}

.red {
  color: #C30705 !important;
}

.yellow {
  color: #fad00d !important;
}

.purple {
  color: #847bb9 !important;
}

.pink {
  color: #ff82a1 !important;
}

.grey {
  color: #acadad !important;
}

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

.bg-black {
  background-color: #000 !important;
}

.bg-blue {
  background-color: #3f78c6 !important;
}

.bg-blue-light {
  background-color: #73cbef !important;
}

.bg-green-light {
  background-color: #a0d264 !important;
}

.bg-orange {
  background-color: #fb7818 !important;
}

.bg-red {
  background-color: #C30705 !important;
}

.bg-yellow {
  background-color: #fad00d !important;
}

.bg-purple {
  background-color: #847bb9 !important;
}

.bg-pink {
  background-color: #ff82a1 !important;
}

.bg-sec-sub {
  background-color: #f4f4f4 !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

.w9em {
  width: 9em !important;
}

.w10em {
  width: 10em !important;
}

.flr {
  float: right !important;
}

.fll {
  float: left !important;
}

.fln {
  float: none !important;
}

.clb {
  clear: both !important;
}

.cln {
  clear: none !important;
}

.is-left {
  text-align: left !important;
}

.has-text-align-center,
.is-center {
  text-align: center !important;
}

.has-text-align-right,
.is-right {
  text-align: right !important;
}

.is-bold {
  font-weight: bold !important;
}

.nowrap {
  white-space: nowrap !important;
}

/* 文字サイズ */
.fs08 {
  font-size: .8em !important;
}

.fs0875 {
  font-size: .875em !important;
}

.fs09 {
  font-size: .9em !important;
}

.fs0937 {
  font-size: .9375em !important;
}

.fs11 {
  font-size: 1.1em !important;
}

.fs12 {
  font-size: 1.2em !important;
}

.fs1125 {
  font-size: 1.125em !important;
}

.fs125 {
  font-size: 1.25em !important;
}

.fs13 {
  font-size: 1.3em !important;
}

.fs14 {
  font-size: 1.4em !important;
}

.fs15 {
  font-size: 1.5em !important;
}

.fs16 {
  font-size: 1.6em !important;
}

.fs17 {
  font-size: 1.7em !important;
}

.fs18 {
  font-size: 1.8em !important;
}

.fs19 {
  font-size: 1.9em !important;
}

.fs20 {
  font-size: 2.0em !important;
}

.lh1 {
  line-height: 1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh20 {
  line-height: 2 !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

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

.mt15 {
  margin-top: 15px !important;
}

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

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

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

.mb15 {
  margin-bottom: 15px !important;
}

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

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

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

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

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

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

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

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

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

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

.ml30 {
  margin-left: 30px !important;
}

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

.ml50 {
  margin-left: 50px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

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

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

.mr30 {
  margin-right: 30px !important;
}

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

.mr50 {
  margin-right: 50px !important;
}

.mlr5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

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

/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

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

.pb15 {
  padding-bottom: 15px !important;
}

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

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

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

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb80 {
  padding-bottom: 50px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

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

.pt15 {
  padding-top: 15px !important;
}

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

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

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

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pl0 {
  padding-left: 0 !important;
}

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

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

.pl30 {
  padding-left: 30px !important;
}

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

.pl50 {
  padding-left: 50px !important;
}

.pr0 {
  padding-right: 0 !important;
}

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

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

.pr30 {
  padding-right: 30px !important;
}

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

.pr50 {
  padding-right: 50px !important;
}

.plr5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

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

.plr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

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

.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

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

.ofx {
  width: 100% !important;
  overflow-x: auto;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  padding-top: 30px;
  margin-bottom: 1.5em;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

hr.dot {
  background: transparent;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 1.5em;
}

hr.clearHr {
  background: transparent;
  border-bottom: none;
  margin: 0 0 30px;
}

.op01 {
  opacity: .1;
}

.op02 {
  opacity: .2;
}

.op03 {
  opacity: .3;
}

.op04 {
  opacity: .4;
}

.op05 {
  opacity: .5;
}

.op06 {
  opacity: .6;
}

.op07 {
  opacity: .7;
}

.op08 {
  opacity: .8;
}

.op09 {
  opacity: .9;
}

.op10 {
  opacity: 10;
}

.cf:after {
  display: table;
  content: '';
  width: 100%;
}
