@charset "UTF-8";
@font-face {
  font-family: "Yu-Gothic";
  src: url("./../font/Yu-Gothic.ttf");
}
.scrolldown1 {
  position: absolute;
  left: 48.2%;
  bottom: -40px;
  height: 100px;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767.99px) {
  .scrolldown1 {
    bottom: -20px;
    height: 100px;
  }
}
@media screen and (max-width: 550px) {
  .scrolldown1 {
    bottom: -25px;
    height: 80px;
  }
}
@media screen and (max-width: 400px) {
  .scrolldown1 {
    bottom: -40px;
    height: 60px;
  }
}
.scrolldown1:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100px;
  background: #000;
  animation: pathmove 2s ease-in-out infinite;
  z-index: 9;
  display: block;
}
@media screen and (max-width: 550px) {
  .scrolldown1:after {
    height: 80px;
  }
}
@media screen and (max-width: 400px) {
  .scrolldown1:after {
    height: 60px;
  }
}
.scrolldown1 span {
  position: absolute;
  left: -16px;
  top: -68px;
  color: #000;
  font-size: 2rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.99px) {
  .scrolldown1 span {
    left: -8px;
    top: -35px;
    font-size: clamp(0.7rem, 1.3888888889vw, 2rem);
  }
}
@media screen and (max-width: 550px) {
  .scrolldown1 span {
    top: -20px;
    left: -5px;
  }
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 上から */
.fadeDownTrigger {
  animation-name: fadeDownAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeftTrigger {
  animation-name: fadeLeftAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRightTrigger {
  animation-name: fadeRightAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* その場で */
.fadeInTrigger {
  opacity: 0;
}
.fadeInTrigger.fadeIn {
  opacity: 0;
  animation-name: fadeInAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeInTrigger.delay1000 {
  animation-delay: 1s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUpTrigger {
  opacity: 0;
}
.fadeUpTrigger.fadeUp {
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeUpTrigger.delay1000 {
  animation-delay: 1s;
}
.fadeUpTrigger.delay500 {
  animation-delay: 0.5s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* || GENERAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  vertical-align: baseline;
  background: transparent;
  font-size: 10px !important;
}
html:focus-within {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px !important;
  }
}

a:focus {
  outline: none;
}

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

strong,
b {
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 0rem;
}

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

body {
  min-height: 100vh;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  line-height: 1.5;
  color: #262626;
  font-weight: 400;
  text-rendering: optimizeSpeed;
  background-color: #fff;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem;
  background: #fff;
  color: #666463;
  border: none;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: black;
}

input,
button,
textarea,
select {
  font: inherit;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin: 0;
  vertical-align: middle;
  accent-color: #000000;
}

/* || UTILITIES */
.container {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

.container-smaller {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container-smaller {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container-smaller {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

/*--------------------------------------------------------------
//Components*/
.search-results .product-card .product-link {
  text-decoration: none;
}
.search-results .product-card .product-link:hover {
  opacity: 0.7;
}
.search-results .product-card .product-link .product-info {
  margin: 0;
  padding: 0 !important;
}
.search-results .product-card .product-link .product-info .product-title {
  margin: 10px 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  color: #262626;
  font-family: "Noto Sans JP";
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-results .product-card .product-link .product-info .product-price {
  margin: 5px 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #262626;
  font-family: "Noto Sans JP";
}

#loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#loader-container .loader {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  place-items: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

#loader-container .loader__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#loader-container .loader__logo > span {
  -webkit-animation: bounce-loader 0.6s infinite alternate;
  animation: bounce-loader 0.6s infinite alternate;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: #FCC800;
  width: 1.2rem;
  height: 1.2rem;
}

#loader-container .loader__logo > span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

#loader-container .loader__logo > span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#loader-container .loader__logo > span:last-child {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

#loader-container .loader__progress {
  display: none;
  position: relative;
  width: 100%;
}

#loader-container .loader__progress #progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  text-align: center;
}

@-webkit-keyframes fade {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes fade {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes bounce-loader {
  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
@keyframes bounce-loader {
  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
.section-404 {
  padding: 0 0 3rem;
}
.section-404 .svg {
  width: 100%;
}
.section-404 .svg__character {
  fill: #FCC800;
}
.section-404 .svg__line {
  fill: none;
  stroke: #FCC800;
  stroke-dasharray: 6;
  stroke-width: 1;
  stroke-linejoin: round;
}
.section-404 .svg__dot {
  fill: #FCC800;
}
.section-404 .svg__plane {
  transform: translate(-6px, -11px) rotate(25deg);
  fill: #FCC800;
  opacity: 0;
}
.section-404 .svg__mask {
  fill: none;
  stroke: white;
  stroke-width: 10;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}
.section-404 .btn {
  width: 100%;
  max-width: 30rem;
  padding: 1rem 0;
  background: #FCC800;
  color: #fff;
  margin: 0 auto;
}
.section-404 .btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 2px 5px 14px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 2px 5px 14px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 2px 5px 14px 0px rgba(0, 0, 0, 0.19);
}
header .inner {
  width: 100%;
  max-width: 1090px;
  position: relative;
  padding-bottom: 0;
}
@media (max-width: 1150px) {
  header .inner {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  header .inner {
    padding: 0 15px;
  }
}
header .site-title {
  width: 100%;
  margin: 0;
  padding: 27px 0 27px;
  float: none;
  text-align: center;
}
@media (max-width: 1000px) {
  header .site-title {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  header .site-title {
    text-align: left;
  }
}
header .site-title img {
  max-width: 250px;
  margin: 0;
}
@media (max-width: 768px) {
  header .site-title img {
    margin: 0;
  }
}
@media (max-width: 350px) {
  header .site-title img {
    max-width: 230px;
  }
}
header .snav {
  width: fit-content;
  float: none;
}
@media (max-width: 1000px) {
  header .snav {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
}
header .snav i {
  padding: 0;
}
header .snav .box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  position: absolute;
  right: 10px;
  top: 30px;
}
@media (max-width: 1150px) {
  header .snav .box-header {
    right: 30px;
  }
}
@media (max-width: 1000px) {
  header .snav .box-header {
    position: relative;
    justify-content: center;
    right: 0;
    top: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 500px) {
  header .snav .box-header {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media (max-width: 1000px) {
  header .snav .box-header .membership {
    float: none;
    width: fit-content;
    padding: 0;
  }
}
header .snav .box-header .membership ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  position: relative;
  padding: 0;
  border: none !important;
  z-index: 0;
}
@media (max-width: 1000px) {
  header .snav .box-header .membership ul {
    justify-content: center;
    width: fit-content;
  }
}
header .snav .box-header .membership ul::before, header .snav .box-header .membership ul::after {
  display: none;
}
header .snav .box-header .membership ul li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none !important;
}
header .snav .box-header .membership ul li i {
  display: block;
  padding: 0;
  font-size: 24px;
}
header .snav .box-header .membership ul li .usces_login_a {
  padding: 0;
  border: none !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #262626;
}
header .snav .box-header .membership ul li a:has(i) {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #262626;
  padding: 0;
  outline: none;
}
header .snav .box-header .membership ul li a i {
  padding: 0 !important;
}
header .snav .box-header .membership ul li a:hover {
  text-decoration: none;
}
header .snav .box-header .membership ul li.in {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #262626;
}
header .snav .box-header .membership ul li.in a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #262626;
  padding: 0;
}
header .snav .box-header .membership ul li.in:first-child {
  gap: 0;
}
header .snav .box-header .incart-btn {
  margin-top: 0;
  min-width: fit-content;
  float: none;
}
header .snav .box-header .incart-btn a {
  padding: 0;
  background-color: transparent;
}
header .snav .box-header .incart-btn i::before {
  color: #262626;
  font-size: 26px;
  margin-right: 0;
}
header .snav .box-header .incart-btn .total-quant {
  background-color: #de5d50;
  color: #fff;
  font-size: 14px;
  font-family: "Yu Gothic";
  margin-left: 0;
  top: -4px;
  left: 10px;
}
@media (max-width: 1000px) {
  header .snav .box-header .incart-btn .total-quant {
    top: 3px;
    left: 30px;
  }
}
header .c-hamburger,
header .c-ham-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 35px;
  z-index: 0;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
header .c-hamburger:focus,
header .c-ham-close:focus {
  outline: none;
}
header .c-hamburger span,
header .c-ham-close span {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background: #262626;
  border-radius: 30px;
}
header .c-hamburger span:before, header .c-hamburger span:after,
header .c-ham-close span:before,
header .c-ham-close span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #262626;
  content: "";
  border-radius: 30px;
}
header .c-hamburger span:before,
header .c-ham-close span:before {
  top: -10px;
}
header .c-hamburger span:after,
header .c-ham-close span:after {
  bottom: -10px;
}
header .c-ham-close {
  z-index: 99;
  overflow: visible;
}
header .c-ham-close.is-active {
  display: block;
}
header .c-ham-close.is-active span {
  background: none;
}
header .c-ham-close.is-active span:before, header .c-ham-close.is-active span:after {
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
header .c-ham-close.is-active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .c-ham-close.is-active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 1000px) {
  header .c-hamburger {
    display: block;
  }
}
@media (max-width: 450px) {
  header .c-hamburger, header .c-ham-close {
    right: 15px;
  }
}
header #site-navigation {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
}
@media (max-width: 1150px) {
  header #site-navigation {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  header #site-navigation {
    padding: 0 15px;
  }
}
header #site-navigation .sub-menu #menu-header {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: fit-content;
  margin: 0 auto;
}
header #site-navigation .sub-menu #menu-header li {
  float: none;
  border: none;
}
header #site-navigation .sub-menu #menu-header li a {
  padding: 0 0 10px 0;
  background-color: transparent;
  font-size: 18px;
  font-weight: 400;
  font-family: "Yuji Syuku";
  color: #262626;
  position: relative;
}
header #site-navigation .sub-menu #menu-header li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #e84832;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
header #site-navigation .sub-menu #menu-header li a:hover:after {
  width: 100%;
  left: 0;
}
header #site-navigation .sub-menu #menu-header li.current-menu-item a:after {
  width: 100%;
  left: 0;
}
@media (max-width: 1000px) {
  header .overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
  header .overlay.is-active {
    right: 0;
  }
}
@media (max-width: 1000px) {
  header .sub-menu {
    padding: 0 30px;
    float: right;
    right: -80vw;
    top: 0;
    transition: all 0.3s ease;
    height: 100%;
    width: 80vw;
    position: fixed;
    margin: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 0;
    z-index: 99;
    overflow: auto;
    max-height: 100%;
  }
  header .sub-menu.oppenned {
    right: 0;
  }
  header .sub-menu #menu-header {
    margin: 0;
    flex-direction: column;
    align-items: start !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }
  header .sub-menu li {
    width: 100%;
    display: block;
    list-style: none;
    height: auto;
    margin-left: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  header .sub-menu li:first-child {
    margin-top: 100px;
  }
  header .sub-menu li a {
    color: #fff;
    font-size: 16px;
    width: 100%;
    display: block;
    float: left;
    text-transform: uppercase;
    line-height: 30px;
    text-decoration: none;
  }
}
@media (max-width: 450px) {
  header .sub-menu {
    padding: 0 15px;
  }
}

.page-id-6 header .logo {
  margin: 0 auto;
}

#secondary {
  width: 100% !important;
  max-width: 1090px;
  margin: 0 auto;
  padding: 53px 0 0 !important;
  border: none !important;
  display: none;
}
#secondary .columnleft {
  width: 100% !important;
  float: none !important;
  margin: 0;
  padding: 0;
  display: none;
}
#secondary .columncenter {
  width: 100% !important;
  float: none !important;
  margin: 0;
  padding: 0;
  display: none;
}
#secondary .columnright {
  width: 100% !important;
  float: none !important;
  margin: 0;
  padding: 0;
}
#secondary .columnright section {
  padding: 0;
  margin: 0;
}
#secondary .widget_welcart_calendar .widget_title {
  font-size: 24px;
  font-weight: 400;
  color: #262626;
  font-family: "Yuji Syuku";
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  white-space: nowrap;
}
@media (max-width: 520px) {
  #secondary .widget_welcart_calendar .widget_title {
    font-size: 21px;
  }
}
@media (max-width: 400px) {
  #secondary .widget_welcart_calendar .widget_title {
    flex-direction: column;
  }
}
#secondary .widget_welcart_calendar .widget_title span {
  margin-left: 25px;
  padding-left: 25px;
  font-size: 16px;
  line-height: 25px;
  position: relative;
  letter-spacing: 3px;
}
@media (max-width: 520px) {
  #secondary .widget_welcart_calendar .widget_title span {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  #secondary .widget_welcart_calendar .widget_title span {
    margin-left: 0;
    padding-left: 0;
  }
}
#secondary .widget_welcart_calendar .widget_title span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #262626;
  transform: translateY(-50%);
}
@media (max-width: 400px) {
  #secondary .widget_welcart_calendar .widget_title span::before {
    display: none;
  }
}
#secondary .widget_welcart_calendar .text-note {
  font-size: 16px !important;
  font-family: "Noto Sans JP";
  margin-top: 25px;
  text-align: center;
  color: #262626;
}
#secondary .widget_welcart_calendar .text-note span {
  color: #de5d50;
}
#secondary .widget_welcart_calendar .ucart_calendar_body {
  margin-top: 30px;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table {
  width: 240px;
  float: none;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #262626;
  border: none;
  font-family: "Noto Sans JP";
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table caption {
  text-align: center;
  margin-bottom: 10px;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table thead {
  background-color: #F8F8F8;
  box-shadow: 0px -2px 0 0px rgb(243, 243, 243);
  -webkit-box-shadow: 0px -2px 0 0px rgb(243, 243, 243);
  -moz-box-shadow: 0px -2px 0 0px rgb(243, 243, 243);
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table thead tr {
  box-shadow: 0px 2px 0 0px rgb(243, 243, 243);
  -webkit-box-shadow: 0px 2px 0 0px rgb(243, 243, 243);
  -moz-box-shadow: 0px 2px 0 0px rgb(243, 243, 243);
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table thead th {
  padding: 8.4px 6.5px;
  background-color: transparent;
  border: none;
  color: #262626;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table thead th:first-child {
  color: #DE5D50;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table thead th:last-child {
  color: #5CB1B1;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table tbody tr {
  box-shadow: 0px 2px 0 0px rgb(243, 243, 243);
  -webkit-box-shadow: 0px 2px 0 0px rgb(243, 243, 243);
  -moz-box-shadow: 0px 2px 0 0px rgb(243, 243, 243);
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table tbody td {
  font-weight: 400;
  border: none;
  padding: 8.4px 6.5px;
  background-color: transparent;
}
#secondary .widget_welcart_calendar .ucart_calendar_body li table tbody td.businessday {
  background-color: transparent;
  color: #DE5D50;
}
#secondary .widget_block {
  margin-top: 50px !important;
  margin-bottom: 53px !important;
}
#secondary .widget_block .box-image-sidebar {
  display: block;
  position: relative;
  text-decoration: none;
  min-height: 115px;
}
#secondary .widget_block .box-image-sidebar:hover {
  opacity: 0.7;
}
#secondary .widget_block .box-image-sidebar img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#secondary .widget_block .box-image-sidebar .text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
  font-family: "Yuji Syuku";
}
@media (max-width: 520px) {
  #secondary .widget_block .box-image-sidebar .text {
    font-size: 21px;
  }
}

.widget-home, .widget-store {
  display: block !important;
}

#toTop {
  right: 30px !important;
  bottom: 40px !important;
  z-index: 2;
  filter: drop-shadow(0px 0px 10px #ffffff);
}
@media (max-width: 600px) {
  #toTop {
    bottom: 60px !important;
  }
}
#toTop i {
  color: #262626 !important;
}
#toTop i:hover {
  color: #131313 !important;
}

.box-contact {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  position: fixed;
  right: 30px;
  bottom: 120px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  padding: 20px 30px;
  display: none !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9;
}
@media (max-width: 600px) {
  .box-contact {
    flex-direction: row;
    gap: 0;
    background-color: transparent;
    padding: 0;
    width: 100vw;
    right: 0;
    bottom: 0;
  }
}
.box-contact .title {
  font-size: 20px;
  line-height: 1;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #262626;
  margin: 0 0 20px 0;
  text-align: center;
}
@media (max-width: 600px) {
  .box-contact .title {
    display: none;
  }
}
@media (max-width: 600px) {
  .box-contact p {
    display: flex;
    align-items: center;
  }
}
.box-contact a {
  width: fit-content;
  min-width: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.7px;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-color: #262626;
  border: 1px solid #262626;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  margin-bottom: 20px;
}
.box-contact a:hover {
  color: #262626;
  background-color: rgba(255, 255, 255, 0.8);
}
.box-contact a:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(1999%) hue-rotate(316deg) brightness(86%) contrast(70%);
}
.box-contact a img {
  width: 20px;
}
@media (max-width: 600px) {
  .box-contact a img {
    width: 14px;
  }
}
.box-contact a:last-child {
  margin-bottom: 0;
  font-size: 20px;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .box-contact a {
    width: 50vw;
    margin: 0;
    border-radius: 0;
    padding: 15px 10px;
    border-right-color: #fff;
    font-size: 14px;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .box-contact a:last-child {
    border-left-color: #fff;
    font-size: 14px;
    border-right-color: #262626;
  }
}
@media (max-width: 390px) {
  .box-contact a {
    min-width: 50%;
  }
}

footer {
  width: 100% !important;
  padding: 60px 0 100px !important;
}
footer .footer-box {
  width: 100% !important;
  margin: 0 auto;
  max-width: 1090px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1150px) {
  footer .footer-box {
    padding: 0 30px;
  }
}
@media (max-width: 500px) {
  footer .footer-box {
    padding: 0 15px;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 450px) {
  footer .footer-box {
    padding: 0 15px;
  }
}
footer .footer-box .information .logo {
  max-width: 240px;
}
@media (max-width: 500px) {
  footer .footer-box .information .logo {
    margin: 0 auto;
  }
}
@media (max-width: 300px) {
  footer .footer-box .information .logo {
    min-width: 100%;
  }
}
footer .footer-box .information .logo img {
  width: 100%;
}
footer .footer-box .information .address {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.25;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #fff;
}
@media (max-width: 500px) {
  footer .footer-box .information .address {
    width: fit-content;
    margin: 40px auto 0;
    min-width: 240px;
  }
}
@media (max-width: 300px) {
  footer .footer-box .information .address {
    min-width: 100%;
  }
}
footer .footer-box #site-info {
  width: fit-content;
  margin: 70px 0 0;
  padding: 0;
}
@media (max-width: 500px) {
  footer .footer-box #site-info {
    margin: 40px auto 0;
    min-width: 240px;
  }
}
@media (max-width: 300px) {
  footer .footer-box #site-info {
    min-width: 100%;
  }
}
footer .footer-box #site-info .footer-menu {
  display: flex;
  flex-direction: column;
}
@media (max-width: 500px) {
  footer .footer-box #site-info .footer-menu {
    justify-content: center;
  }
}
footer .footer-box #site-info .footer-menu li {
  padding: 0;
  margin: 0 0 10px 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.25;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #fff;
}
footer .footer-box #site-info .footer-menu li:last-child {
  margin: 0;
}
footer .copyright {
  width: 100% !important;
  margin: 50px auto 0;
  max-width: 1090px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-family: "Yuji Syuku";
  font-weight: 400;
  padding: 0;
}
@media (max-width: 1150px) {
  footer .copyright {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  footer .copyright {
    padding: 0 15px;
  }
}

/*--------------------------------------------------------------


/*--------------------------------------------------------------
# Pages

--------------------------------------------------------------*/
#calendarMonth {
  height: auto !important;
}
#calendarMonth table {
  border: none;
}
#calendarMonth table thead tr th.fc-day-sun a {
  color: #c23033 !important;
}
#calendarMonth table thead tr th.fc-day-sat a {
  color: #2d64a6 !important;
}
#calendarMonth table tbody tr td.fc-day-sun a {
  color: #c23033 !important;
}
#calendarMonth table tbody tr td.fc-day-sat a {
  color: #2d64a6 !important;
}
#calendarMonth table tbody tr td.fc-day:has(.fc-daygrid-event-harness) .fc-daygrid-day-top .fc-daygrid-day-number {
  color: #c23033 !important;
}
#calendarMonth table tbody tr td .fc-daygrid-event-dot {
  display: none;
}
#calendarMonth td,
#calendarMonth th {
  padding: 0;
  border: none;
}
#calendarMonth .fc {
  height: 100%;
}
#calendarMonth .fc-view-harness {
  height: auto !important;
}
#calendarMonth .fc-toolbar-chunk > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#calendarMonth .fc-toolbar-chunk > div button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.4rem;
}
#calendarMonth .fc-toolbar-chunk > div button .fc-icon {
  height: auto;
  width: auto;
}
#calendarMonth .fc-toolbar-chunk > div button:focus {
  box-shadow: none;
}
#calendarMonth .fc-toolbar-chunk > div .fc-toolbar-title {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #333;
  font-size: 1.4rem;
  font-family: "M PLUS 2";
  font-weight: 400;
  line-height: 2.4rem;
}
#calendarMonth .fc-toolbar-chunk > div .fc-toolbar-title::before {
  display: none;
}
#calendarMonth.fc .fc-scrollgrid-section-sticky > * {
  background-color: transparent !important;
  padding: 0;
}
#calendarMonth .fc-scrollgrid .fc-col-header-cell {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
#calendarMonth .fc-scrollgrid .fc-col-header-cell a {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 510px) {
  #calendarMonth .fc-scrollgrid .fc-col-header-cell a {
    max-width: 3ch;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-frame {
  padding: 0.5rem;
  margin: 0.2rem;
  border: 1px solid #ddd;
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-top {
  flex-direction: row;
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-top a {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-events {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  padding: 0;
  margin: 0 0 1rem 0;
}
#calendarMonth .fc-daygrid-day .fc-event-title {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#calendarWeek {
  height: calc(100% - 4.5rem) !important;
  min-height: 300px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  #calendarWeek {
    height: 100% !important;
  }
}
#calendarWeek.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 4.5rem;
}
#calendarWeek.fc .fc-list-day-cushion {
  background-color: transparent !important;
  display: flex !important;
  justify-content: start !important;
  border: none !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0 2rem !important;
  color: #333;
  overflow-y: auto;
  gap: 3rem;
}
@media (max-width: 600px) {
  #calendarWeek.fc .fc-list-day-cushion {
    padding: 0 !important;
    gap: 3rem;
  }
}
#calendarWeek.fc .fc-list-day-cushion::after {
  display: none;
}
#calendarWeek.fc .fc-list-sticky .fc-list-day > * {
  position: relative;
}
#calendarWeek.fc .fc-list-day-text {
  min-width: 12rem !important;
}
#calendarWeek.fc .fc-list-day-side-text {
  min-width: 1.6rem;
}
#calendarWeek.fc .fc-list-day-side-text,
#calendarWeek.fc .fc-list-day-text {
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.6rem;
}
#calendarWeek.fc .fc-list-day-side-text {
  min-width: 30px !important;
  text-align: center !important;
}
#calendarWeek.fc .fc-list-day-side-text {
  text-align: right !important;
}
#calendarWeek.fc .fc-list-event {
  border: none !important;
  font-family: "M PLUS 2";
  font-size: 1.4rem;
}
#calendarWeek.fc .fc-list-event:hover td {
  background-color: transparent !important;
}
#calendarWeek.fc .fc-list-event td:first-child {
  padding-left: 3.5rem !important;
}
@media (max-width: 600px) {
  #calendarWeek.fc .fc-list-event td:first-child {
    padding-left: 1rem !important;
  }
}
#calendarWeek.fc .fc-list-event-time {
  width: 80px !important;
  color: #666 !important;
}
#calendarWeek.fc .fc-list-event-title {
  font-weight: normal !important;
}
#calendarWeek.fc .fc-list-table td {
  padding: 1rem !important;
  border-color: #eee !important;
}
#calendarWeek.fc.fc-theme-standard .fc-list-day th {
  padding: 1rem !important;
  border: 1px solid #ddd !important;
}
#calendarWeek .fc-toolbar-chunk > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#calendarWeek .fc-toolbar-chunk > div button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.4rem;
}
#calendarWeek .fc-toolbar-chunk > div button .fc-icon {
  height: auto;
  width: auto;
}
#calendarWeek .fc-toolbar-chunk > div button:focus {
  box-shadow: none;
}
#calendarWeek .fc-toolbar-chunk > div .fc-toolbar-title {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #333;
  font-size: 1.4rem;
  font-family: "M PLUS 2";
  font-weight: 400;
  line-height: 2.4rem;
}
#calendarWeek .fc-toolbar-chunk > div .fc-toolbar-title::before {
  display: none;
}

.fc-event:focus::after, .fc-daygrid-dot-event:hover {
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.1);
}

.fc-event:focus::before {
  border-radius: 2rem !important;
}

.fc-event:focus {
  box-shadow: none !important;
}

.fc-event .fc-event-title {
  padding: 0 3px;
}

.tippy-box {
  background-color: white;
  border-radius: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  font-family: "M PLUS 2";
}

.tippy-box .tippy-content {
  padding: 0;
}

.event-popup-details {
  padding: 0;
  font-family: "M PLUS 2";
  line-height: 1.4;
}

/* Event title with bullet point */
.event-title-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.event-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--fc-event-border-color);
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 5px;
}

.event-popup-details h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  flex: 1;
}

/* Date time styling */
.event-datetime {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 16px;
  padding-left: 20px;
  font-family: "M PLUS 2";
}

/* Location and other info sections styling */
.event-location,
.event-organizer,
.event-description {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}

.event-location i,
.event-organizer i,
.event-description i {
  color: #5f6368;
  width: 12px;
  font-size: 16px;
  margin-right: 8px;
  margin-top: 3px;
}

.location-details,
.event-organizer > div,
.event-description > div {
  font-size: 14px;
  color: #5f6368;
  flex: 1;
}

.location-details div,
.event-organizer div,
.event-description div {
  margin-bottom: 4px;
  line-height: 1.5;
}

/* Details link button */
.event-details-link {
  text-align: left;
  margin-top: 0;
  margin-left: 20px;
}

.event-details-link a {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  color: #1E5AA8;
  border-radius: 4px;
  text-decoration: none;
  font-size: 10px;
  font-family: "M PLUS 2";
  font-weight: 400;
}

.event-details-link a:hover {
  background-color: transparent;
  opacity: 0.8;
}

html.overflow-hidden {
  overflow: hidden;
}

.title-custom {
  font-size: 28px;
  font-weight: 400;
  color: #262626;
  font-family: "Yuji Syuku";
  display: flex;
  align-items: center;
  justify-content: start;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .title-custom {
    font-size: 21px;
  }
}
@media (max-width: 400px) {
  .title-custom {
    flex-direction: column;
  }
}
.title-custom span {
  margin-left: 25px;
  padding-left: 25px;
  font-size: 18px;
  line-height: 25px;
  position: relative;
  letter-spacing: 3px;
}
@media (max-width: 520px) {
  .title-custom span {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .title-custom span {
    margin-left: 0;
    padding-left: 0;
  }
}
.title-custom span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #262626;
  transform: translateY(-50%);
}
@media (max-width: 400px) {
  .title-custom span::before {
    display: none;
  }
}

.wp-block-button a {
  min-width: 170px;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  line-height: 1;
  font-family: "Yuji Syuku";
  font-weight: 400;
  border: 1px solid #262626;
  background: #262626;
  color: #fff;
  transition: all 0.3s ease;
}
.wp-block-button a:hover {
  background: transparent;
  color: #262626;
  text-decoration: none;
}

.breadcrumb {
  width: 100%;
  max-width: 1090px;
  position: relative;
  margin: 15px auto !important;
}
.breadcrumb a {
  font-size: 14px;
  color: #437ec4;
  line-height: 17px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #262626;
}
.breadcrumb span {
  font-size: 14px;
  color: #262626;
  line-height: 17px;
  font-weight: 400;
  font-family: "Noto Sans JP";
}

.sub-form {
  max-width: 100%;
}
.sub-form .cf-field-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 0;
  row-gap: 0;
  padding: 1.5rem 0 !important;
  border-top: 1px solid #D9D9D9;
  background-color: transparent;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .sub-form .cf-field-container {
    padding: 2rem 0 !important;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    row-gap: 2rem;
  }
}
@media (max-width: 600px) {
  .sub-form .cf-field-container {
    padding: 2rem 0rem !important;
  }
}
.sub-form .cf-field-container label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 3rem;
  width: auto;
  min-width: 35rem;
  row-gap: 1rem;
  padding-top: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
  background-color: transparent;
  border-bottom: none;
}
@media (max-width: 800px) {
  .sub-form .cf-field-container label {
    width: 100%;
    justify-content: flex-start;
  }
}
.sub-form .cf-field-container label .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  line-height: 19px;
  letter-spacing: 1;
  color: #262626;
  font-family: "Noto Sans JP";
}
@media (max-width: 800px) {
  .sub-form .cf-field-container label .text {
    font-weight: 500;
  }
}
.sub-form .cf-field-container label .required-label {
  color: #fff;
  background: #DE5D50;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  white-space: nowrap;
  display: block;
  border-radius: 0;
  margin: 0;
  padding: 0.2rem 0.8rem;
  font-family: "Noto Sans JP";
  border-radius: 4px;
}
@media (max-width: 800px) {
  .sub-form .cf-field-container label .required-label {
    font-weight: 500;
  }
}
.sub-form .cf-field-container .cf-input-container,
.sub-form .cf-field-container .input-container {
  margin: 0;
  position: relative;
  z-index: 1;
  width: calc(100% - 35rem);
  gap: 0;
}
@media (max-width: 800px) {
  .sub-form .cf-field-container .cf-input-container,
  .sub-form .cf-field-container .input-container {
    border-left: 0;
    border-right: 0;
    padding: 0 !important;
  }
}
@media (max-width: 800px) {
  .sub-form .cf-field-container .cf-input-container,
  .sub-form .cf-field-container .input-container {
    width: 100%;
  }
}
.sub-form .cf-field-container .cf-input-container .name-inputs,
.sub-form .cf-field-container .input-container .name-inputs {
  width: 100% !important;
}
.sub-form .cf-field-container .cf-input-container input,
.sub-form .cf-field-container .cf-input-container textarea,
.sub-form .cf-field-container .cf-input-container select,
.sub-form .cf-field-container .input-container input,
.sub-form .cf-field-container .input-container textarea,
.sub-form .cf-field-container .input-container select {
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  font-weight: 400;
  line-height: 19px !important;
  color: #262626 !important;
  padding: 15px !important;
  border: 1px solid #D9D9D9 !important;
  border-radius: 4px !important;
  height: 49px;
  width: 100% !important;
  background-color: transparent !important;
  box-sizing: border-box;
  margin: 0 !important;
}
.sub-form .cf-field-container .cf-input-container input::placeholder,
.sub-form .cf-field-container .cf-input-container textarea::placeholder,
.sub-form .cf-field-container .cf-input-container select::placeholder,
.sub-form .cf-field-container .input-container input::placeholder,
.sub-form .cf-field-container .input-container textarea::placeholder,
.sub-form .cf-field-container .input-container select::placeholder {
  color: #939090 !important;
}
.sub-form .cf-field-container .cf-input-container textarea,
.sub-form .cf-field-container .input-container textarea {
  min-height: 192px;
}
.sub-form .cf-field-container .cf-input-container select,
.sub-form .cf-field-container .input-container select {
  max-width: 250px;
}
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-inner-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label::before,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: none;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: -25px;
  border: 1px solid #005cc8;
  border-radius: 5px;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label::after,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label::after {
  content: "";
  width: 18px;
  height: 12px;
  border-left: 4px solid #005cc8 !important;
  border-bottom: 4px solid #005cc8 !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -25px;
  opacity: 0;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::before,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::before {
  border: 1px solid #005cc8;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::after,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) label {
  position: relative;
  display: flex;
  width: fit-content !important;
  gap: 15px;
  flex-direction: column;
  font-size: 15px;
  font-weight: normal;
  line-height: 28px;
  color: #333333;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label a,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) label a {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: #333333;
  width: fit-content;
  margin: 0 auto;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label a:hover,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) label a:hover {
  opacity: 0.7;
}
.sub-form .cf-field-container .cf-error-message {
  width: calc(100% - 35rem);
  margin-top: 10px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .sub-form .cf-field-container .cf-error-message {
    flex-basis: 100%;
    width: 100%;
    padding-bottom: 12px;
    margin-top: 0;
  }
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 3.5rem;
  row-gap: 2rem;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=checkbox],
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label {
  position: relative;
  padding-left: 17px !important;
  width: 100%;
  min-width: fit-content;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-left: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #333;
  background-color: #fff;
  position: absolute;
  top: 3px;
  left: 0;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #1e5aa8;
  transform: scale(0.5);
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::before {
  box-shadow: 0 0 0 1px #1e5aa8, 0px 1px 2px rgb(30, 90, 168) !important;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::after {
  opacity: 1;
  border-radius: 50%;
}
.sub-form .cf-field-container[data-type=privacy_policy] {
  justify-content: center !important;
  margin-bottom: 0 !important;
  padding: 5rem 0 0 !important;
  border-top: 1px solid #D9D9D9;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container {
  width: 100% !important;
  padding: 0 !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-button-center {
  padding: 0;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy {
  padding: 0 0 15px 0 !important;
  justify-content: center;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
  gap: 0 !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: none;
  background-color: #D9D9D9 !important;
  position: absolute;
  top: 5px;
  border-radius: 4px;
  left: 20px;
  border: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::before {
    top: 3px;
  }
}
@media (max-width: 400px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::before {
    left: 30px;
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::after {
  content: "";
  width: 20px;
  height: 14px;
  border-left: 4px solid #262626 !important;
  border-bottom: 4px solid #262626 !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: 22px;
  opacity: 0;
}
@media (max-width: 768px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::after {
    top: 3px;
  }
}
@media (max-width: 400px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::after {
    left: 32px;
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox]:checked + label::before {
  border: 1px solid #262626;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy label {
  max-width: 100%;
  position: relative;
  display: flex;
  width: fit-content !important;
  margin: 0 auto;
  gap: 0;
  row-gap: 0;
  flex-direction: column;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #262626;
  font-family: "Noto Sans JP";
  background-color: transparent;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy label a {
  margin-top: 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0px;
  font-weight: 400;
  font-weight: normal;
  line-height: 25px;
  color: #437EC4;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  font-family: "Noto Sans JP";
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy label a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy .cf-error-message {
  flex-basis: 100%;
}
.sub-form .cf-field-container[data-type=privacy_policy] label {
  gap: 5px !important;
}
@media (max-width: 600px) {
  .sub-form .cf-field-container[data-type=privacy_policy] label {
    flex-direction: column !important;
  }
}
@media (max-width: 400px) {
  .sub-form .cf-field-container[data-type=privacy_policy] label {
    padding-left: 20px !important;
  }
}
.sub-form .cf-button-center {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.sub-form .cf-button-center {
  margin-top: 1rem;
}
.sub-form .cf-button,
.sub-form .cf-button-submit,
.sub-form .cf-button-confirm {
  display: block;
  margin: 0;
  min-width: 200px;
  width: fit-content;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .sub-form .cf-button,
  .sub-form .cf-button-submit,
  .sub-form .cf-button-confirm {
    min-width: 100%;
  }
}
.sub-form .cf-button:hover,
.sub-form .cf-button-submit:hover,
.sub-form .cf-button-confirm:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
.sub-form .note {
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  font-weight: 400;
  line-height: 19px !important;
  color: #262626 !important;
  margin-top: 25px;
}

.cf-confirmation-screen {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.cf-confirmation-screen .cf-title-confirm-info {
  display: none;
}
.cf-confirmation-screen .cf-title-confirm-info h3::before {
  display: none !important;
}
.cf-confirmation-screen .cf-confirmation-item {
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cf-confirmation-screen .cf-confirmation-item strong {
  width: 40%;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item strong {
    width: 100%;
    text-align: left;
  }
}
.cf-confirmation-screen .cf-button-center {
  margin-top: 5.5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cf-confirmation-screen .cf-button-center .cf-button {
  display: block;
  margin: 0;
  min-width: 200px;
  width: fit-content;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .cf-confirmation-screen .cf-button-center .cf-button {
    min-width: 100%;
  }
}
.cf-confirmation-screen .cf-button-center .cf-button:hover {
  background-color: #fff !important;
  color: #262626 !important;
}

.modal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}
.modal-popup .wrap {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-popup .modal__wrap {
  padding-top: 0;
  width: 90%;
  height: 100vh;
  max-width: 830px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  margin: 0 auto;
  gap: 0;
  position: relative;
}
@media (max-width: 600px) {
  .modal-popup .modal__wrap {
    padding-top: 60px;
  }
}
.modal-popup .modal__wrap .modal__close {
  position: absolute;
  width: auto;
  height: auto;
  box-shadow: none;
  background: transparent;
  border: none;
  position: absolute;
  z-index: 1;
  top: 13px;
  right: 13px;
  font-size: 12px;
  cursor: pointer;
}
.modal-popup .modal__wrap .modal__close img {
  width: 40px;
}
.modal-popup .modal__wrap .modal-body {
  width: 100%;
  max-width: 100%;
  max-height: 95%;
  background-color: #fff;
  border-radius: 0;
  overflow: auto;
  scrollbar-width: none;
  padding: 30px;
  filter: drop-shadow(0px 4px 3px #000000);
}
.modal-popup .modal__wrap .modal-body::-webkit-scrollbar {
  display: none;
}
@media (max-width: 600px) {
  .modal-popup .modal__wrap .modal-body {
    padding: 80px 15px 50px;
  }
}

/* || TEXT */
.font-noto-jp {
  font-family: "Noto Sans JP";
}

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

@media (max-width: 600px) {
  .text-mb-left {
    text-align: left !important;
  }
}

.m-b-0 {
  margin-bottom: 0 !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.m-auto {
  margin: 0 auto !important;
}
.m-l-auto {
  margin-left: auto !important;
}
.m-r-auto {
  margin-right: auto !important;
}
@media (max-width: 600px) {
  .m-mb-auto {
    margin: 0 auto !important;
  }
}

.w-fit-content {
  width: fit-content;
}

/* || LINE LIMIT */
.line-limit--1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line-limit--2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-limit--3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line-limit--4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* || BACKGROUND COLOR */
/* || ASPECT RATIO */
.aspect-ratio-unset img {
  aspect-ratio: unset;
}
.aspect-ratio--1-1 img {
  aspect-ratio: 1/1;
}
.aspect-ratio--2-1 img {
  aspect-ratio: 2/1;
}
.aspect-ratio--3-2 img {
  aspect-ratio: 3/2;
}
.aspect-ratio--3-4 img {
  aspect-ratio: 3/4;
}
.aspect-ratio--4-3 img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 992px) {
  .aspect-ratio-lg-unset img {
    aspect-ratio: unset;
  }
}

/* || HOVER */
.hover--scale img {
  transition: all 0.3s ease-out;
}
.hover--scale:hover img {
  transform: scale(1.1);
}

/* || Z-INDEX */
.z-index--1 {
  z-index: 1;
}

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

@media only screen and (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

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

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

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

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

.flex-sp-only {
  display: none !important;
}
@media (max-width: 600px) {
  .flex-sp-only {
    display: flex !important;
  }
}

.flex--pc-only {
  display: flex !important;
}
@media (max-width: 600px) {
  .flex--pc-only {
    display: none !important;
  }
}

.min-1090 {
  display: block !important;
}
@media (max-width: 1090px) {
  .min-1090 {
    display: none !important;
  }
}

.max-1090 {
  display: none !important;
}
@media (max-width: 1090px) {
  .max-1090 {
    display: block !important;
  }
}

.min-900 {
  display: block !important;
}
@media (max-width: 900px) {
  .min-900 {
    display: none !important;
  }
}

.max-900 {
  display: none !important;
}
@media (max-width: 899.99px) {
  .max-900 {
    display: block !important;
  }
}

.min-780 {
  display: block !important;
}
@media (max-width: 780px) {
  .min-780 {
    display: none !important;
  }
}

.max-768 {
  display: none !important;
}
@media (max-width: 767.99px) {
  .max-768 {
    display: block !important;
  }
}

.min-768 {
  display: block !important;
}
@media (max-width: 767.99px) {
  .min-768 {
    display: none !important;
  }
}

.max-760 {
  display: none !important;
}
@media (max-width: 760px) {
  .max-760 {
    display: block !important;
  }
}

.max-960 {
  display: none !important;
}
@media (max-width: 960px) {
  .max-960 {
    display: block !important;
  }
}

.min-960 {
  display: block !important;
}
@media (max-width: 960px) {
  .min-960 {
    display: none !important;
  }
}

.max-575 {
  display: none !important;
}
@media (max-width: 575px) {
  .max-575 {
    display: block !important;
  }
}

.min-575 {
  display: block !important;
}
@media (max-width: 575px) {
  .min-575 {
    display: none !important;
  }
}

.max-600 {
  display: none !important;
}
@media (max-width: 600px) {
  .max-600 {
    display: block !important;
  }
}

.min-600 {
  display: block !important;
}
@media (max-width: 600px) {
  .min-600 {
    display: none !important;
  }
}

.min-500 {
  display: block !important;
}
@media (max-width: 500px) {
  .min-500 {
    display: none !important;
  }
}

#memberpages .customer_form tbody tr {
  border: none !important;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 740px) {
  #memberpages .customer_form tbody tr {
    display: block;
    width: 100%;
  }
}
#memberpages .customer_form tbody tr th,
#memberpages .customer_form tbody tr td {
  background-color: transparent;
  border: none;
  border-top: 1px solid #d9d9d9 !important;
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  padding: 15px 1.071428em;
  font-weight: 400;
  line-height: 1.1875 !important;
  color: #262626 !important;
  margin: 0;
}
#memberpages .customer_form tbody tr th input,
#memberpages .customer_form tbody tr th select,
#memberpages .customer_form tbody tr td input,
#memberpages .customer_form tbody tr td select {
  padding: 10px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 4px !important;
  height: 49px;
  background-color: transparent !important;
  box-sizing: border-box;
  margin-bottom: 5px;
}
#memberpages .customer_form tbody tr th input::placeholder,
#memberpages .customer_form tbody tr th select::placeholder,
#memberpages .customer_form tbody tr td input::placeholder,
#memberpages .customer_form tbody tr td select::placeholder {
  color: #939090 !important;
}
@media (max-width: 500px) {
  #memberpages .customer_form tbody tr th input,
  #memberpages .customer_form tbody tr th select,
  #memberpages .customer_form tbody tr td input,
  #memberpages .customer_form tbody tr td select {
    width: 100%;
  }
}
#memberpages .customer_form tbody tr th select,
#memberpages .customer_form tbody tr td select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
@media (max-width: 500px) {
  #memberpages .customer_form tbody tr th,
  #memberpages .customer_form tbody tr td {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }
}
#memberpages .customer_form tbody tr td {
  color: #888 !important;
}
#memberpages .customer_form tbody tr th {
  min-width: 300px;
}
@media (max-width: 500px) {
  #memberpages .customer_form tbody tr th {
    min-width: 100%;
  }
}
@media (max-width: 740px) {
  #memberpages .customer_form tbody tr td {
    padding-top: 0 !important;
    border: none !important;
  }
}
#memberpages .customer_form tbody tr th:has(em) em {
  display: none;
}
#memberpages .customer_form tbody tr th:has(em):after {
  content: "必須";
  color: #fff;
  background: #de5d50;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  white-space: nowrap;
  display: inline-block;
  border-radius: 0;
  margin: 0 0 0 1rem;
  padding: 0.2rem 0.8rem;
  font-family: "Noto Sans JP";
  border-radius: 4px;
}
@media (max-width: 800px) {
  #memberpages .customer_form tbody tr th:has(em):after {
    font-weight: 500;
  }
}
#memberpages .customer_form tbody tr.inp1 td {
  color: #262626 !important;
}
#memberpages .customer_form tbody tr:last-child th,
#memberpages .customer_form tbody tr:last-child td {
  border-bottom: 1px solid #d9d9d9 !important;
}
#memberpages .send {
  padding-top: 0;
  margin-top: 20px;
}
#memberpages .send input {
  display: block;
  margin: 0 auto !important;
  min-width: 350px;
  max-width: 350px;
  width: fit-content;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff !important;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  #memberpages .send input {
    min-width: 100%;
  }
}
#memberpages .send input:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
#memberpages .send input.top {
  display: none;
}
#memberpages .send input.top.back {
  display: block;
  margin-bottom: 15px !important;
}
#memberpages .send input.editmember {
  background: #de5d50 !important;
  border: 1px solid #de5d50 !important;
}
#memberpages .send input.editmember:hover {
  background-color: #fff !important;
  color: #de5d50 !important;
}
#memberpages .send input.deletemember {
  min-width: fit-content;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  color: #437ec4 !important;
  text-decoration: underline;
  margin-bottom: 50px;
}
#memberpages .send input.deletemember:hover {
  text-decoration: none;
}
#memberpages .loginbox {
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.1875 !important;
  color: #262626 !important;
}
#memberpages .loginbox input {
  padding: 15px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 4px !important;
  height: 49px;
  background-color: transparent !important;
  box-sizing: border-box;
}
#memberpages .loginbox input::placeholder {
  color: #939090 !important;
}
#memberpages .loginbox .submit input {
  margin: 0 auto;
  min-width: 200px;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  #memberpages .loginbox .submit input {
    min-width: 100%;
  }
}
#memberpages .loginbox .submit input:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
#memberpages .loginbox .new-entry {
  margin-top: 50px;
}
#memberpages .loginbox .new-entry h2 {
  text-align: center;
}
#memberpages .loginbox .new-entry a {
  margin: 0 auto;
  min-width: 200px;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  #memberpages .loginbox .new-entry a {
    min-width: 100%;
  }
}
#memberpages .loginbox .new-entry a:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
#memberpages .loginbox .loginpass {
  padding: 15px 40px 15px 15px !important;
}
#memberpages .loginbox .nav {
  text-align: center;
}
#memberpages .loginbox .nav a {
  color: #437EC4 !important;
  text-decoration: underline;
}
#memberpages .loginbox .nav a:hover {
  text-decoration: none;
}
#memberpages .loginbox .nav a[title=新規ご入会はこちら] {
  color: #fff !important;
  text-decoration: none;
}
#memberpages .loginbox .nav a[title=新規ご入会はこちら]:hover {
  color: #262626 !important;
}
#memberpages #memberinfo p,
#memberpages #memberinfo h3 {
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.1875 !important;
  color: #262626 !important;
  padding: 20px 15px;
  background: #f8f8f8;
  font-weight: normal;
  border: none !important;
}
#memberpages #memberinfo h3 {
  margin-bottom: 15px;
}
#memberpages #memberinfo .currency_code,
#memberpages #memberinfo #usces_history {
  display: none;
}
#memberpages #memberinfo table {
  border: none;
}
#memberpages #memberinfo table tbody tr {
  border: none !important;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 740px) {
  #memberpages #memberinfo table tbody tr {
    display: block;
    width: 100%;
  }
}
#memberpages #memberinfo table tbody tr th,
#memberpages #memberinfo table tbody tr td {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d9d9d9 !important;
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  padding: 20px 15px;
  font-weight: 400;
  line-height: 1.1875 !important;
  color: #262626 !important;
  margin: 0;
}
#memberpages #memberinfo table tbody tr th {
  width: 200px;
}
@media (max-width: 500px) {
  #memberpages #memberinfo table tbody tr th {
    min-width: 100%;
    border-bottom: none !important;
    font-weight: bold;
  }
}
@media (max-width: 500px) {
  #memberpages #memberinfo table tbody tr td {
    min-width: 100%;
    border-bottom: 1px solid #d9d9d9 !important;
  }
}
#memberpages #memberinfo table tbody tr:has(.space) th,
#memberpages #memberinfo table tbody tr:has(.space) td {
  padding: 0;
  margin: 0;
  bottom: none;
}
#memberpages #memberinfo .table-info tbody tr {
  display: flex;
}
@media (max-width: 620px) {
  #memberpages #memberinfo .table-info tbody tr {
    display: block;
  }
}
#memberpages #memberinfo .table-info tbody tr th {
  width: 200px;
  display: block;
}
@media (max-width: 620px) {
  #memberpages #memberinfo .table-info tbody tr th {
    min-width: 100%;
    border-bottom: none !important;
    font-weight: bold;
  }
}
#memberpages #memberinfo .table-info tbody tr td {
  width: calc(100% - 200px);
  display: block;
}
@media (max-width: 620px) {
  #memberpages #memberinfo .table-info tbody tr td {
    padding-top: 0 !important;
    min-width: 100%;
    border-bottom: 1px solid #d9d9d9 !important;
  }
}
#memberpages #memberinfo .table-info tbody tr:has(.space) th,
#memberpages #memberinfo .table-info tbody tr:has(.space) td {
  padding: 0;
  margin: 0;
  bottom: none;
}
#memberpages #memberinfo .history-area {
  padding-top: 15px;
  font-size: 0;
}
#memberpages #memberinfo .history-area table#history_head,
#memberpages #memberinfo .history-area table.retail {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  background: #f8f8f8;
  border: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#memberpages #memberinfo .history-area table#history_head {
  width: 400px;
  margin-right: 30px;
  border-right: none;
  padding: 15px 30px;
}
#memberpages #memberinfo .history-area table.retail {
  width: calc(100% - 430px);
  border-left: none;
}
#memberpages #memberinfo .history-area table#history_head + table.retail {
  margin-top: 0;
}
#memberpages #memberinfo .history-area table#history_head {
  border-collapse: separate !important;
  border-spacing: 0;
}
#memberpages #memberinfo .history-area table#history_head thead {
  display: none;
}
#memberpages #memberinfo .history-area table#history_head tbody {
  display: table;
  width: 100%;
}
#memberpages #memberinfo .history-area table#history_head tr.order_head_value {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  width: 100%;
}
#memberpages #memberinfo .history-area table#history_head tr.order_head_value > td {
  display: flex;
  justify-content: start;
  align-items: baseline;
  gap: 5px;
  padding: 6px 0;
  width: 100%;
  font-size: 14px;
  color: #262626;
  font-family: "Noto Sans JP";
  border-bottom: none !important;
}
#memberpages #memberinfo .history-area table#history_head tr.order_head_value > td::before {
  content: attr(data-label) ":";
  color: #262626;
  white-space: nowrap;
  margin-right: 12px;
}
#memberpages #memberinfo .history-area table#history_head tr.order_head_value > td:last-child {
  border-bottom: 0;
}
#memberpages #memberinfo .history-area table#history_head .rightnum {
  text-align: right;
}
#memberpages #memberinfo .history-area table.retail {
  border-collapse: separate !important;
  border-spacing: 0;
  border: none;
  /* thumbnail 60px */
  /* tên sản phẩm cho phép xuống dòng */
}
#memberpages #memberinfo .history-area table.retail thead {
  width: 100%;
}
@media (max-width: 799.99px) {
  #memberpages #memberinfo .history-area table.retail thead {
    display: table;
  }
}
@media (max-width: 799.99px) {
  #memberpages #memberinfo .history-area table.retail thead tr {
    width: 100%;
    display: table-row;
  }
}
#memberpages #memberinfo .history-area table.retail thead th {
  color: #262626;
  padding: 15px 0;
  font-size: 16px;
  text-align: left;
  background-color: #f8f8f8;
  border: none;
  white-space: nowrap;
}
@media (max-width: 400px) {
  #memberpages #memberinfo .history-area table.retail thead th {
    white-space: normal;
  }
}
#memberpages #memberinfo .history-area table.retail thead th.productname {
  width: calc(50% - 60px);
}
@media (max-width: 400px) {
  #memberpages #memberinfo .history-area table.retail thead th.productname {
    width: calc(50% - 35px);
  }
}
#memberpages #memberinfo .history-area table.retail thead th.quantity {
  text-align: center;
  width: 10%;
}
@media (max-width: 350px) {
  #memberpages #memberinfo .history-area table.retail thead th.quantity {
    writing-mode: vertical-rl;
  }
}
#memberpages #memberinfo .history-area table.retail thead th.price {
  text-align: center;
  width: 20%;
}
@media (max-width: 350px) {
  #memberpages #memberinfo .history-area table.retail thead th.price {
    writing-mode: vertical-rl;
  }
}
#memberpages #memberinfo .history-area table.retail thead th.subtotal {
  text-align: center;
  width: 20%;
}
@media (max-width: 350px) {
  #memberpages #memberinfo .history-area table.retail thead th.subtotal {
    writing-mode: vertical-rl;
  }
}
#memberpages #memberinfo .history-area table.retail thead th.cartrownum {
  display: none;
}
#memberpages #memberinfo .history-area table.retail tbody {
  width: 100%;
  display: table;
}
#memberpages #memberinfo .history-area table.retail tbody td {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: center;
  background-color: #fff;
}
#memberpages #memberinfo .history-area table.retail tbody td.productname {
  width: calc(50% - 60px);
}
@media (max-width: 400px) {
  #memberpages #memberinfo .history-area table.retail tbody td.productname {
    width: calc(50% - 35px);
  }
}
#memberpages #memberinfo .history-area table.retail tbody td.price, #memberpages #memberinfo .history-area table.retail tbody td.rightnum {
  width: 10%;
  text-align: center;
}
@media (max-width: 600px) {
  #memberpages #memberinfo .history-area table.retail tbody td.price, #memberpages #memberinfo .history-area table.retail tbody td.rightnum {
    text-align: left;
  }
}
#memberpages #memberinfo .history-area table.retail tbody td.quantity {
  text-align: center;
  width: 10%;
}
#memberpages #memberinfo .history-area table.retail tbody td.price {
  text-align: center;
  width: 20%;
}
#memberpages #memberinfo .history-area table.retail tbody td.subtotal {
  text-align: center;
  width: 20%;
}
#memberpages #memberinfo .history-area table.retail tbody td.cartrownum {
  display: none;
}
@media (max-width: 799.99px) {
  #memberpages #memberinfo .history-area table.retail {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  #memberpages #memberinfo .history-area table.retail thead,
  #memberpages #memberinfo .history-area table.retail tbody,
  #memberpages #memberinfo .history-area table.retail tr {
    display: table;
    width: 100%;
    table-layout: auto;
  }
}
#memberpages #memberinfo .history-area table.retail .thumbnail {
  width: 60px;
}
@media (max-width: 400px) {
  #memberpages #memberinfo .history-area table.retail .thumbnail {
    width: 35px;
  }
}
#memberpages #memberinfo .history-area table.retail .thumbnail img {
  display: block;
  width: 60px;
  object-fit: cover;
  margin: 0 auto;
}
#memberpages #memberinfo .history-area table.retail .productname a {
  display: inline-block;
  line-height: 1.5;
  color: #262626;
  text-decoration: none;
  word-break: break-word;
}
@media (max-width: 800px) {
  #memberpages #memberinfo .history-area table#history_head,
  #memberpages #memberinfo .history-area table.retail {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  #memberpages #memberinfo .history-area table.retail {
    margin-top: 10px;
  }
  #memberpages #memberinfo .history-area table#history_head tr.order_head_value > td {
    padding: 4px 0;
  }
}
@media (max-width: 500px) {
  #memberpages #memberinfo .history-area table#history_head {
    padding: 15px;
  }
}
#memberpages #member_login {
  width: 100% !important;
}

@media (max-width: 1000px) {
  .s7 {
    margin-bottom: 50px;
  }
}
.s7 .footer_explanation + p a {
  margin: 0 auto;
  width: 100%;
  display: block;
  min-width: 200px;
  max-width: 350px;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .s7 .footer_explanation + p a {
    min-width: 100%;
  }
}
.s7 .footer_explanation + p a:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
.s7 .back_to_top_button {
  max-width: 350px;
}

.cart-page {
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.1875 !important;
  color: #262626 !important;
}
.cart-page .upbutton input {
  padding: 15px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 4px !important;
  height: 49px;
  background-color: transparent !important;
  box-sizing: border-box;
  color: #262626 !important;
}
.cart-page .upbutton input::placeholder {
  color: #939090 !important;
}
.cart-page .upbutton input:hover {
  background-color: #f5f5f5 !important;
}
.cart-page .send {
  margin-top: 30px;
  padding-top: 0;
}
.cart-page .send input {
  margin: 0 auto;
  display: block;
  min-width: 200px;
  max-width: 350px;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .cart-page .send input {
    min-width: 100%;
  }
}
.cart-page .send input:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
.cart-page .send input.to_customerinfo_button, .cart-page .send input.to_memberlogin_button, .cart-page .send input.to_reganddeliveryinfo_button, .cart-page .send input.to_confirm_button, .cart-page .send input.checkout_button {
  background: #de5d50 !important;
  border: 1px solid #de5d50 !important;
}
.cart-page .send input.to_customerinfo_button:hover, .cart-page .send input.to_memberlogin_button:hover, .cart-page .send input.to_reganddeliveryinfo_button:hover, .cart-page .send input.to_confirm_button:hover, .cart-page .send input.checkout_button:hover {
  background-color: #fff !important;
  color: #de5d50 !important;
}
.cart-page .send input.back_to_customer_button {
  margin-top: 20px;
}
.cart-page .send input.back_to_top_button {
  margin-bottom: 20px;
}
.cart-page .send .checkout_button {
  margin-top: 15px !important;
}
.cart-page .customer_form tbody tr {
  border: none !important;
  margin-bottom: 0;
  padding: 0;
}
@media (max-width: 740px) {
  .cart-page .customer_form tbody tr {
    display: block;
    width: 100%;
  }
}
.cart-page .customer_form tbody tr th,
.cart-page .customer_form tbody tr td {
  background-color: transparent;
  border: none;
  border-top: 1px solid #d9d9d9 !important;
  font-family: "Noto Sans JP";
  font-size: 16px !important;
  padding: 15px 1.071428em;
  font-weight: 400;
  line-height: 1.1875 !important;
  color: #262626 !important;
  margin: 0;
}
.cart-page .customer_form tbody tr th input,
.cart-page .customer_form tbody tr th select,
.cart-page .customer_form tbody tr td input,
.cart-page .customer_form tbody tr td select {
  padding: 10px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 4px !important;
  height: 49px;
  background-color: transparent !important;
  box-sizing: border-box;
  margin-bottom: 5px;
  color: #262626 !important;
}
.cart-page .customer_form tbody tr th input::placeholder,
.cart-page .customer_form tbody tr th select::placeholder,
.cart-page .customer_form tbody tr td input::placeholder,
.cart-page .customer_form tbody tr td select::placeholder {
  color: #939090 !important;
}
@media (max-width: 500px) {
  .cart-page .customer_form tbody tr th input,
  .cart-page .customer_form tbody tr th select,
  .cart-page .customer_form tbody tr td input,
  .cart-page .customer_form tbody tr td select {
    width: 100%;
  }
}
.cart-page .customer_form tbody tr th select,
.cart-page .customer_form tbody tr td select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.cart-page .customer_form tbody tr th #loginpass,
.cart-page .customer_form tbody tr td #loginpass {
  padding: 15px 40px 15px 15px !important;
}
@media (max-width: 500px) {
  .cart-page .customer_form tbody tr th,
  .cart-page .customer_form tbody tr td {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }
}
.cart-page .customer_form tbody tr td {
  color: #888 !important;
}
@media (max-width: 739.99px) {
  .cart-page .customer_form tbody tr td {
    padding-top: 0 !important;
    border: none !important;
  }
}
.cart-page .customer_form tbody tr th:has(em) em {
  display: none;
}
.cart-page .customer_form tbody tr th:has(em):after {
  content: "必須";
  color: #fff;
  background: #de5d50;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  white-space: nowrap;
  display: inline-block;
  border-radius: 0;
  margin: 0 0 0 1rem;
  padding: 0.2rem 0.8rem;
  font-family: "Noto Sans JP";
  border-radius: 4px;
}
@media (max-width: 800px) {
  .cart-page .customer_form tbody tr th:has(em):after {
    font-weight: 500;
  }
}
.cart-page .customer_form tbody tr.inp1 td {
  color: #262626 !important;
}
.cart-page .customer_form tbody tr:last-child th,
.cart-page .customer_form tbody tr:last-child td {
  border-bottom: 1px solid #d9d9d9 !important;
}
@media (max-width: 739.99px) {
  .cart-page .customer_form tbody tr:has(.password-input-wrapper) th {
    border-bottom: none !important;
  }
}
.cart-page #customer-info h5 {
  border: none;
}
.cart-page #cart_table {
  border: none;
}
.cart-page #cart_table thead th {
  border: none;
  border-bottom: 1px solid #d9d9d9;
  background-color: #f8f8f8;
}
@media (max-width: 400px) {
  .cart-page #cart_table thead th {
    font-size: 13px;
  }
}
.cart-page #cart_table tbody td {
  border: none !important;
  border-bottom: 1px solid #d9d9d9 !important;
}
@media (max-width: 400px) {
  .cart-page #cart_table tbody td {
    font-size: 13px;
  }
}
.cart-page #cart_table tbody td .quantity input {
  border: none;
}
.cart-page #cart_table tbody td.unitprice,
.cart-page #cart_table tbody td.subtotal {
  text-align: center !important;
}
.cart-page #cart_table tbody td.action input.delButton {
  background: transparent;
  border: none;
  font-size: 14px;
  padding: 0;
  background: url("../img/common/delete.svg") no-repeat center 14px/16px auto;
  display: inline-block;
  border: none;
  cursor: pointer;
  padding-top: 35px;
  height: auto;
}
@media (max-width: 400px) {
  .cart-page #cart_table tbody td.action input.delButton {
    font-size: 10px;
  }
}
.cart-page #cart_table tfoot tr th,
.cart-page #cart_table tfoot tr td {
  border: none !important;
  background-color: #f8f8f8 !important;
}
@media (max-width: 400px) {
  .cart-page #cart_table tfoot tr th,
  .cart-page #cart_table tfoot tr td {
    font-size: 13px;
  }
}
.cart-page #cart_table tfoot tr th.amount {
  text-align: center !important;
}
.cart-page #cart_table tfoot tr:nth-child(2) td:nth-child(4) {
  text-align: center !important;
}
.cart-page #cart_table tfoot tr:nth-child(3) td:nth-child(4) {
  text-align: center !important;
}
.cart-page #cart_table tfoot tr:first-child th {
  padding: 20px 0.357143em 0.357143em !important;
}
.cart-page #cart_table tfoot tr:last-child th {
  padding: 0.357143em 0.357143em 20px !important;
}
.cart-page #delivery_flag tr,
.cart-page #time tr,
.cart-page #notes_table tr {
  width: 100%;
  display: block;
}
.cart-page #delivery_flag tr th,
.cart-page #delivery_flag tr td,
.cart-page #time tr th,
.cart-page #time tr td,
.cart-page #notes_table tr th,
.cart-page #notes_table tr td {
  width: 100%;
  display: block;
  border: none !important;
  font-size: 16px;
  color: #262626;
  font-family: "Noto Sans JP";
}
.cart-page #delivery_flag tr th textarea,
.cart-page #delivery_flag tr td textarea,
.cart-page #time tr th textarea,
.cart-page #time tr td textarea,
.cart-page #notes_table tr th textarea,
.cart-page #notes_table tr td textarea {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.cart-page #delivery_flag tr th,
.cart-page #time tr th,
.cart-page #notes_table tr th {
  background: #f8f8f8;
  padding: 15px;
  margin: 0 !important;
}
.cart-page #delivery_flag tr td,
.cart-page #time tr td,
.cart-page #notes_table tr td {
  padding: 20px 15px;
}
.cart-page #delivery_flag tr td input,
.cart-page #time tr td input,
.cart-page #notes_table tr td input {
  height: 12px;
}
.cart-page #delivery_flag tr input {
  width: 12px !important;
}
.cart-page #delivery_flag tr td {
  padding-top: 20px !important;
}
.cart-page #delivery_flag tr:not(:has(th)) td:last-child {
  padding-top: 0;
}
.cart-page #time tr input {
  width: 12px !important;
}
.cart-page #time tr td {
  padding-top: 20px !important;
}
.cart-page #notes_table tr td {
  padding-top: 20px !important;
}
.cart-page h5.member-title {
  margin-top: 100px !important;
}
.cart-page #confirm_table {
  border-collapse: separate !important;
  border-spacing: 0;
}
@media (max-width: 500px) {
  .cart-page #confirm_table tr {
    display: block;
    width: 100%;
  }
}
.cart-page #confirm_table tr th,
.cart-page #confirm_table tr td {
  background: #fff;
  border: none !important;
  border-bottom: 1px solid #d9d9d9 !important;
  padding: 20px 15px;
  font-weight: 400;
}
@media (max-width: 500px) {
  .cart-page #confirm_table tr th,
  .cart-page #confirm_table tr td {
    display: block;
    width: 100%;
  }
}
.cart-page #confirm_table tr th {
  min-width: 200px;
}
@media (max-width: 500px) {
  .cart-page #confirm_table tr th {
    padding-bottom: 0 !important;
    font-weight: bold;
    border-bottom: none !important;
  }
}
.cart-page #confirm_table tr.ttl td {
  background: #f8f8f8;
  border-top: 50px solid transparent !important;
  border-bottom: none !important;
  background-clip: padding-box;
}
.cart-page #confirm_table tr.ttl td h3 {
  margin: 0;
  font-weight: 400 !important;
}
@media (max-width: 500px) {
  .cart-page #confirm_table tr.ttl td h3 {
    font-weight: bold !important;
  }
}
.cart-page .confiem_notice {
  margin-bottom: 20px;
}
.cart-page #cart_completion {
  margin-bottom: 50px;
}
.cart-page .lostpassword {
  margin-top: 20px;
  display: block;
}

#cart_table td.thumbnail {
  width: 100px;
}
#cart_table th.productname {
  text-align: left;
}
#cart_table .thumbnail img {
  margin: 0 auto;
}

#cart_completion .send a {
  display: block;
  margin: 0 auto;
  min-width: 200px;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  #cart_completion .send a {
    min-width: 100%;
  }
}
#cart_completion .send a:hover {
  background-color: #fff !important;
  color: #262626 !important;
}

.customer_form input#loginmail,
.customer_form input#mailaddress1,
.customer_form input#mailaddress2 {
  width: 100%;
}

@media (max-width: 500px) {
  .customer_form tr.inp1 span {
    width: 90%;
    padding-left: 0;
  }
}
.customer_form tr.inp1 input {
  width: calc(100% - 45px);
  margin-right: 0;
  margin-left: 0.5em;
}
@media (max-width: 500px) {
  .customer_form tr.inp1 input {
    width: 90%;
    margin-left: 0;
  }
}

.loginbox #nav {
  margin-top: 30px;
}
.loginbox #nav a {
  display: block;
  margin: 0 auto;
  min-width: 200px;
  width: 100%;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff !important;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .loginbox #nav a {
    min-width: 100%;
  }
}
.loginbox #nav a:hover {
  background-color: #fff !important;
  color: #262626 !important;
}

.member-page #memberpages .footer_explanation > p a {
  display: block;
  margin: 0 auto;
  min-width: 200px;
  width: 100%;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff !important;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .member-page #memberpages .footer_explanation > p a {
    min-width: 100%;
  }
}
.member-page #memberpages .footer_explanation > p a:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
.member-page #memberpages .back_to_top_button {
  display: block;
  margin: 0 auto;
  min-width: 200px;
  width: 100%;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff !important;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 350px) {
  .member-page #memberpages .back_to_top_button {
    min-width: 100%;
  }
}
.member-page #memberpages .back_to_top_button:hover {
  background-color: #fff !important;
  color: #262626 !important;
}
.member-page #memberpages .member-edit a,
.member-page #memberpages .member-logout a {
  display: block;
  margin: 0 auto;
  min-width: 250px;
  width: 100%;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff !important;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 300px) {
  .member-page #memberpages .member-edit a,
  .member-page #memberpages .member-logout a {
    min-width: 100%;
  }
}
.member-page #memberpages .member-edit a:hover,
.member-page #memberpages .member-logout a:hover {
  background-color: #fff !important;
  color: #262626 !important;
}

.member_page_title {
  display: none;
}

.top.back {
  margin: 0 auto;
  display: block;
  min-width: 200px;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  letter-spacing: 0px;
  color: #fff !important;
  box-sizing: border-box;
  padding: 1.5rem 4rem !important;
  min-height: 5rem !important;
  border-radius: 0.4rem !important;
  background: #262626 !important;
  border: 1px solid #262626 !important;
  font-family: "Noto Sans JP";
}
@media (max-width: 450px) {
  .top.back {
    min-width: 100%;
  }
}
.top.back:hover {
  background-color: #fff !important;
  color: #262626 !important;
}

@media screen and (min-width: 38.75em) {
  div.cart_navi li {
    font-size: 13px;
  }
}
#wc_login .error_message,
#wc_member .error_message,
#wc_changepassword .loginbox,
#wc_changepassword .error_message,
#wc_lostmemberpassword .loginbox,
#wc_lostmemberpassword .error_message {
  width: 50%;
}

@media screen and (max-width: 1000px) {
  #wc_login .error_message,
  #wc_member .error_message,
  #wc_changepassword .loginbox,
  #wc_changepassword .error_message,
  #wc_lostmemberpassword .loginbox,
  #wc_lostmemberpassword .error_message {
    width: 70%;
  }
}
@media screen and (max-width: 700px) {
  #wc_login .error_message,
  #wc_member .error_message,
  #wc_changepassword .loginbox,
  #wc_changepassword .error_message,
  #wc_lostmemberpassword .loginbox,
  #wc_lostmemberpassword .error_message {
    width: 100%;
  }
}
.store .breadcrumb {
  margin: 15px auto 0 !important;
}

.store-container .category-filter {
  margin-top: 55px;
}
@media (max-width: 600px) {
  .store-container .category-filter {
    margin-top: 30px;
  }
}
.store-container .store-header {
  margin: 80px 0 30px;
}
@media (max-width: 600px) {
  .store-container .store-header {
    margin: 50px 0 30px;
  }
}
.store-container .store-header .category-header-multi {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 400px) {
  .store-container .store-header .category-header-multi {
    gap: 15px;
  }
}
.store-container .store-header .category-header-multi img {
  width: 50px;
}
.store-container .store-header .category-header-multi .title-custom {
  font-size: 16px;
}
@media (max-width: 400px) {
  .store-container .store-header .category-header-multi .title-custom {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.store-container .store-header .category-header-multi .title-custom span {
  font-size: 24px;
}
@media (max-width: 400px) {
  .store-container .store-header .category-header-multi .title-custom span {
    margin-left: 10px;
    padding-left: 10px;
  }
  .store-container .store-header .category-header-multi .title-custom span::before {
    display: block;
  }
}
.store-container .store-header .category-header-multi .title-custom:not(:has(span)) {
  font-size: 24px;
}
.store-container .store-products .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 60px;
}
@media (max-width: 900px) {
  .store-container .store-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .store-container .store-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .store-container .store-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
  }
}
@media (max-width: 400px) {
  .store-container .store-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.store-container .store-products .products-grid .product-card .product-image {
  box-shadow: 0px 0px 10px 0px #ededed;
}
.store-container .store-products .products-grid .product-card .product-image img {
  max-height: none;
}
.store-container .store-products .products-grid .product-card .product-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 19px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto Sans JP";
  color: #262626;
  margin-top: 10px;
}
.store-container .store-products .products-grid .product-card .product-price {
  line-height: 19px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Sans JP";
  color: #555;
  margin-top: 10px;
}
.store-container .view-all-wrapper {
  margin-top: 30px;
}
.store-container .view-all-wrapper a {
  display: block;
  min-width: 200px;
  border-radius: 10px;
  padding: 15px;
  width: fit-content;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  font-family: "Yuji Syuku";
  font-weight: 400;
  border: 1px solid #262626;
  background: #262626;
  color: #fff;
  transition: all 0.3s ease;
}
.store-container .view-all-wrapper a:hover {
  background: transparent;
  color: #262626;
  text-decoration: none;
}

.pagination-wrapper {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .pagination-wrapper {
    margin-top: 60px;
  }
}
.pagination-wrapper .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.pagination-wrapper .pagination:has(.pagination-link) {
  gap: 30px;
}
@media (max-width: 1000px) {
  .pagination-wrapper .pagination {
    gap: 30px;
  }
}
@media (max-width: 400px) {
  .pagination-wrapper .pagination {
    gap: 20px;
  }
}
.pagination-wrapper .pagination .pagination-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 600px) {
  .pagination-wrapper .pagination .pagination-numbers {
    gap: 15px;
  }
}
@media (max-width: 400px) {
  .pagination-wrapper .pagination .pagination-numbers {
    gap: 10px;
  }
}
.pagination-wrapper .pagination .pagination-numbers span {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP";
  padding: 10px;
  background-color: #262626;
  border-radius: 4px;
}
.pagination-wrapper .pagination .pagination-numbers a {
  font-size: 16px;
  line-height: 1;
  color: #262626;
  font-family: "Noto Sans JP";
  padding: 10px;
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.pagination-wrapper .pagination .pagination-numbers a:hover {
  background-color: #262626;
  color: #fff;
}
.pagination-wrapper .pagination span.pagination-link {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP";
  padding: 10px;
  background-color: #262626;
  border-radius: 4px;
}
.pagination-wrapper .pagination a.pagination-link {
  font-size: 16px;
  line-height: 1;
  color: #262626;
  font-family: "Noto Sans JP";
  padding: 10px;
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.pagination-wrapper .pagination a.pagination-link:hover {
  background-color: #262626;
  color: #fff !important;
  opacity: 1;
}
.pagination-wrapper .pagination a.pagination-link:hover img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(99%) saturate(20%) hue-rotate(44deg) brightness(107%) contrast(100%);
}
.pagination-wrapper .pagination a.pagination-link img {
  width: 10px;
}
.pagination-wrapper .pagination a.pagination-link img:hover {
  opacity: 1;
}
.pagination-wrapper .pagination .prev-link.pagination-link {
  margin-right: 30px;
}
@media (max-width: 600px) {
  .pagination-wrapper .pagination .prev-link.pagination-link {
    margin-right: 0;
  }
}
.pagination-wrapper .pagination .next-link.pagination-link {
  margin-left: 30px;
}
@media (max-width: 600px) {
  .pagination-wrapper .pagination .next-link.pagination-link {
    margin-left: 0;
  }
}

.single-product .breadcrumb {
  margin: 25px auto 0 !important;
}
.single-product #itempage {
  margin-top: 74px !important;
}
@media (max-width: 600px) {
  .single-product #itempage {
    margin-top: 40px !important;
  }
}
.single-product #itempage .single-product-container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .single-product #itempage .single-product-container {
    flex-direction: column;
  }
}
.single-product #itempage .single-product-container #img-box,
.single-product #itempage .single-product-container .detail-box {
  float: none !important;
}
.single-product #itempage .single-product-container #img-box {
  width: 500px !important;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .single-product #itempage .single-product-container #img-box {
    width: fit-content !important;
  }
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container #img-box {
    width: 100% !important;
  }
}
.single-product #itempage .single-product-container #img-box #gallery .splide__slide {
  width: 100%;
  aspect-ratio: 1/1;
}
.single-product #itempage .single-product-container #img-box #gallery .splide__slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product #itempage .single-product-container #img-box #thumb {
  margin-top: 25px !important;
}
.single-product #itempage .single-product-container #img-box #thumb .splide__slide.is-active {
  border: 1px solid #262626;
}
.single-product #itempage .single-product-container .detail-box {
  width: calc(100% - 530px);
}
@media (max-width: 1000px) {
  .single-product #itempage .single-product-container .detail-box {
    width: 100%;
  }
}
.single-product #itempage .single-product-container .detail-box .categories {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.single-product #itempage .single-product-container .detail-box .categories a {
  white-space: nowrap;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: bold;
  padding: 10px;
  background: #c4a443;
  text-decoration: none;
}
.single-product #itempage .single-product-container .detail-box .categories a:hover {
  opacity: 0.7;
}
.single-product #itempage .single-product-container .detail-box .item-name {
  margin-top: 15px;
  font-size: 24px;
  line-height: 35px;
  font-weight: bold;
  color: #262626;
  font-family: "Noto Sans JP";
}
.single-product #itempage .single-product-container .detail-box .field_price {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .field_price {
    margin-top: 15px;
  }
}
.single-product #itempage .single-product-container .detail-box .field_price .price-amount {
  font-size: 28px;
  line-height: 35px;
  font-weight: bold;
  color: #de5d50;
  font-family: "Noto Sans JP";
}
.single-product #itempage .single-product-container .detail-box .field_price .price-amount span {
  font-size: 16px;
  font-weight: 400;
}
.single-product #itempage .single-product-container .detail-box .item-description {
  margin-top: 23px;
  margin-bottom: 85px;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #262626;
  font-family: "Noto Sans JP";
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .item-description {
    margin-top: 15px;
  }
}
.single-product #itempage .single-product-container .detail-box .item-description p {
  margin-bottom: 0;
}
.single-product #itempage .single-product-container .detail-box .delivery-badge-container {
  padding: 15px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.single-product #itempage .single-product-container .detail-box .delivery-badge-container .delivery-icon {
  margin-right: 5px;
}
.single-product #itempage .single-product-container .detail-box .delivery-badge-container button {
  margin-top: 15px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: #de5d50;
  background-color: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  text-align: left;
}
.single-product #itempage .single-product-container .detail-box .item-info {
  margin-top: 15px;
  padding-top: 0;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .item-info {
    margin-top: 45px;
  }
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box {
  text-align: left;
  /* Quantity controls for single product page */
  /* Style for quantity field in single product */
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box span {
  font-size: 16px;
  line-height: 19px;
  color: #262626;
  font-family: "Noto Sans JP";
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box input.skuquantity {
  margin-left: 0;
  margin-right: 0;
  padding: 15px;
  border: 1px solid #262626;
  border-radius: 4px;
  font-size: 20px;
  line-height: 1;
  color: #262626;
  font-family: "Noto Sans JP";
  min-width: 150px;
  height: 50px;
  text-align: right;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box input.skubutton {
  width: 100%;
  margin: 10px 0 0;
  font-weight: 400;
  text-align: center;
  background: #de5d50;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  height: 60px;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box .quantity-controls {
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 0 30px;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box .qty-btn {
  padding: 0;
  background: #fff;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box .qty-btn img {
  width: 24px;
  height: 24px;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box .quantity-controls input[name^=quant] {
  margin: 0 15px;
  padding: 15px;
  border: 1px solid #262626;
  border-radius: 4px;
  font-size: 20px;
  line-height: 1;
  color: #262626;
  font-family: "Noto Sans JP";
  min-width: 150px;
  height: 50px;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box .quantity-controls input[name^=quant]:focus {
  background: #f9f9f9;
  border-color: #999;
}
.single-product #itempage .single-product-container .detail-box .item-info .c-box .c-box .quantity {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}
.single-product #itempage .single-product-container .detail-box .item-custom-info {
  float: none;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .item-custom-info {
    margin-top: 15px;
  }
}
.single-product #itempage .single-product-container .detail-box .item-custom-info table {
  width: 100%;
  border: none;
}
.single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr th,
.single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr td {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP";
  color: #262626;
  padding: 13px 15px;
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 425px) {
  .single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr th,
  .single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr td {
    width: 100%;
    display: block;
  }
}
.single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr th {
  width: 120px;
  background: #f8f8f8;
}
@media (max-width: 425px) {
  .single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr th {
    width: 100%;
    font-weight: bold;
  }
}
.single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr:last-child th,
.single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 425px) {
  .single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr:last-child th {
    border-bottom: none;
  }
}
@media (max-width: 425px) {
  .single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr:last-child td {
    border-bottom: 1px solid #d9d9d9;
  }
}
@media (max-width: 425px) {
  .single-product #itempage .single-product-container .detail-box .item-custom-info table tbody tr {
    display: block;
  }
}
.single-product #itempage .single-product-container .detail-box .button-origin {
  width: 100%;
  margin-top: 30px;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  padding: 20px 10px;
  color: #de5d50;
  background: #feeba4;
  font-family: "Noto Sans JP";
  text-decoration: none;
  text-align: center;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .button-origin {
    margin-top: 15px;
  }
}
.single-product #itempage .single-product-container .detail-box .button-origin:hover {
  opacity: 0.7 !important;
}
.single-product #itempage .single-product-container .detail-box .custom-button-field {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .custom-button-field {
    margin-top: 15px;
  }
}
.single-product #itempage .single-product-container .detail-box .custom-button-field .custom-info-button {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  padding: 20px 10px;
  color: #fff;
  background: #437ec4;
  font-family: "Noto Sans JP";
  text-decoration: none;
  text-align: center;
}
.single-product #itempage .single-product-container .detail-box .custom-button-field .custom-info-button:hover {
  opacity: 0.7;
}
.single-product #itempage .single-product-container .detail-box .qa-content {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .qa-content {
    margin-top: 15px;
  }
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .collapsible {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .collapsible .box-title {
  color: #437ec4;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-family: "Noto Sans JP";
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0;
  line-height: 20px;
}
@media (max-width: 600px) {
  .single-product #itempage .single-product-container .detail-box .qa-content .item .collapsible .box-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .collapsible img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(74%) saturate(1426%) hue-rotate(190deg) brightness(80%) contrast(89%);
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .collapsible .rotated {
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
}
.single-product #itempage .single-product-container .detail-box .qa-content .item:first-child .collapsible {
  border-top: 1px solid #d9d9d9;
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .content-collapse {
  padding: 15px 5px;
  display: none;
  overflow: hidden;
  background-color: #ffffff;
  font-size: 16px;
  font-family: "Noto Sans JP";
  border-bottom: 1px solid #d9d9d9;
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .content-collapse strong {
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  max-width: calc(100% - 5em);
  text-indent: 0em;
  padding-left: 0em;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-all;
}
.single-product #itempage .single-product-container .detail-box .qa-content .item .content-collapse em {
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  max-width: calc(100% - 14em);
  text-indent: 0em;
  padding-left: 3em;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-all;
  color: #262626;
}
@media (max-width: 320px) {
  .single-product #itempage .single-product-container .detail-box .qa-content .item .content-collapse em {
    display: inline;
    max-width: 100%;
    padding-left: 1em;
  }
}
.single-product .related-products {
  margin-top: 55px;
  margin-bottom: 0;
  padding: 24px 0;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 600px) {
  .single-product .related-products {
    margin-top: 30px !important;
  }
}
.single-product .related-products .related-products-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 60px;
}
@media (max-width: 1000px) {
  .single-product .related-products .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .single-product .related-products .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
  }
}
@media (max-width: 400px) {
  .single-product .related-products .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .single-product .related-products .related-products-grid {
    margin-top: 15px;
  }
}
.single-product .related-products .related-products-grid .product-image {
  width: 100%;
  box-shadow: 0px 0px 10px 0px #ededed;
}
.single-product .related-products .related-products-grid .product-image img {
  width: 100%;
}
.single-product .related-products .related-products-grid .product-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 15px;
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  color: #262626;
  font-family: "Noto Sans JP";
}
.single-product .related-products .related-products-grid .product-price {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #555;
  font-family: "Noto Sans JP";
}

.delivery-info-badge {
  display: inline-block;
  padding: 10px;
  margin: 0;
  text-align: center;
  border-radius: 0;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid;
}

.delivery-badge-green {
  background-color: #c5e0b4;
  border-color: #00b050;
}

.delivery-badge-blue {
  background-color: #bdd7ee;
  border-color: #0070c0;
}

.delivery-badge-gray {
  background-color: #d9d9d9;
  border-color: #939090;
}

html {
  overflow-y: overlay;
}

html.overflow-hidden {
  overflow: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: overlay;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  scrollbar-width: none;
}

.single.single-post #primary {
  margin-top: 0;
}

.entry-content h2.title {
  display: none;
}

#main {
  width: 100%;
  max-width: 1090px;
  padding-top: 42px;
  padding-top: 0;
}
@media (max-width: 1150px) {
  #main {
    padding: 0 30px 0;
  }
}
@media (max-width: 450px) {
  #main {
    padding: 0 15px 0;
  }
}
#main .sof {
  margin-bottom: 0;
}
#main header {
  background-color: transparent;
  box-shadow: none;
}
#main .page-title {
  font-size: 24px !important;
  font-family: "Noto Sans JP";
}

.archive-posts article {
  border: none;
  margin-bottom: 1.42857em;
  padding-bottom: 1.42857em;
  border-bottom: 1px solid #eaeaea;
}
.archive-posts article:first-child {
  margin-top: 30px;
}
.archive-posts a {
  text-decoration: none;
}
.archive-posts a:hover {
  opacity: 0.7;
}
.archive-posts .entry-box {
  color: #262626;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0;
  line-height: 1.25;
}
@media (max-width: 600px) {
  .archive-posts .entry-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.archive-posts .entry-box .entry-title {
  font-size: 16px !important;
  font-family: "Noto Sans JP";
  margin-bottom: 0 !important;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.archive-posts .entry-box .date {
  min-width: 150px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP";
}
.archive-posts .entry-content {
  font-size: 16px !important;
  font-family: "Noto Sans JP";
  margin: 15px 0 0 150px !important;
  font-weight: 400;
}
@media (max-width: 600px) {
  .archive-posts .entry-content {
    margin: 15px 0 0 !important;
  }
}

.post .entry-header {
  background-color: transparent !important;
  box-shadow: none;
}
.post .entry-title {
  font-size: 24px !important;
  font-family: "Noto Sans JP";
}

@media (max-width: 1090px) {
  .section-banner-hero {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
}
.section-banner-hero .splide__slide a:hover {
  opacity: 0.9;
}
.section-banner-hero .splide__slide .box-image {
  position: relative;
  min-height: 400px;
}
.section-banner-hero .splide__slide .box-image.has-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.section-banner-hero .splide__slide .box-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-banner-hero .splide__slide .box-image .pc {
  display: block;
}
@media (max-width: 800px) {
  .section-banner-hero .splide__slide .box-image .pc {
    display: none;
  }
}
.section-banner-hero .splide__slide .box-image .mb {
  display: none;
}
@media (max-width: 800px) {
  .section-banner-hero .splide__slide .box-image .mb {
    display: block;
    object-fit: contain;
  }
}
.section-banner-hero .splide__slide .box-image .box-text {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.section-banner-hero .splide__slide .box-image .box-text p {
  font-size: 24px;
  letter-spacing: 11px;
  font-family: "Yuji Syuku";
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 2;
}
@media (max-width: 1000px) {
  .section-banner-hero .splide__slide .box-image .box-text p {
    letter-spacing: 6px;
  }
}
@media (max-width: 500px) {
  .section-banner-hero .splide__slide .box-image .box-text p {
    letter-spacing: 5px;
    font-size: 20px;
  }
}

.section-products-recommended .splide__slide .product-card .product-link {
  text-decoration: none;
}
.section-products-recommended .splide__slide .product-card .product-link:hover {
  opacity: 0.7;
}
.section-products-recommended .splide__slide .product-card .product-link .product-image {
  box-shadow: 0px 0px 10px 0px #ededed;
}
.section-products-recommended .splide__slide .product-card .product-link .product-info {
  margin: 0;
  padding: 0 !important;
}
.section-products-recommended .splide__slide .product-card .product-link .product-info .product-title {
  margin: 10px 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  color: #262626;
  font-family: "Noto Sans JP";
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-products-recommended .splide__slide .product-card .product-link .product-info .product-price {
  margin: 5px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  font-family: "Noto Sans JP";
}

.section-news-home .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .section-news-home .wp-block-group__inner-container {
    justify-content: center;
    gap: 20px;
  }
}
.section-news-home .title-custom span {
  margin-left: 20px;
  padding-left: 20px;
}
@media (max-width: 400px) {
  .section-news-home .title-custom span {
    margin-left: 0;
    padding-left: 0;
  }
}

.section-news {
  padding: 60px 15px;
  background-color: #f8f8f8;
}
@media (max-width: 600px) {
  .section-news {
    padding: 30px 15px;
  }
}
.section-news .news-content {
  padding: 40px 30px;
  background-color: #fff;
}
@media (max-width: 600px) {
  .section-news .news-content {
    padding: 20px 15px;
  }
}
.section-news .news-content .item .collapsible {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
  transition: transform 0.3s ease;
}
.section-news .news-content .item .collapsible .box-title {
  color: #262626;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-family: "Noto Sans JP";
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0;
  line-height: 1.25;
}
@media (max-width: 600px) {
  .section-news .news-content .item .collapsible .box-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.section-news .news-content .item .collapsible .box-title .news-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .news-content .item .collapsible .box-title .time {
  min-width: 150px;
}
.section-news .news-content .item .collapsible .rotated {
  transform: rotate(-180deg);
}
.section-news .news-content .item:first-child .collapsible {
  padding-top: 0;
}
.section-news .news-content .item .content-collapse {
  padding: 15px 5px 15px 150px;
  display: none;
  overflow: hidden;
  background-color: #ffffff;
  font-size: 16px;
  font-family: "Noto Sans JP";
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 600px) {
  .section-news .news-content .item .content-collapse {
    padding: 15px 0;
  }
}
.section-news .news-content .item .content-collapse .wp-block-button {
  margin-top: 20px;
}
.section-news .news-content .item .content-collapse .wp-block-button a {
  width: fit-content;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4286;
  letter-spacing: -0.7px;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #fff;
  text-align: center;
  background-color: #262626;
  border: 1px solid #262626;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  margin-bottom: 0;
}
.section-news .news-content .item .content-collapse .wp-block-button a:hover {
  color: #262626;
  background-color: rgba(255, 255, 255, 0.8);
}

.section-cate-home {
  background-color: #262626;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.section-cate-home .wp-block-group__inner-container {
  width: 100% !important;
  margin: 0 auto;
  max-width: 1090px;
}
@media (max-width: 1150px) {
  .section-cate-home .wp-block-group__inner-container {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .section-cate-home .wp-block-group__inner-container {
    padding: 0 15px;
  }
}
.section-cate-home .wp-block-group__inner-container .title-custom {
  color: #fff;
}
.section-cate-home .wp-block-group__inner-container .title-custom span:before {
  background-color: #fff;
}

.section-category .category-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media (max-width: 1000px) {
  .section-category .category-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .section-category .category-box {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 12px;
  }
}
.section-category .category-box .item .category-card .category-image {
  position: relative;
}
.section-category .category-box .item .category-card .category-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.section-category .category-box .item .category-card .category-image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 195/85;
  object-fit: cover;
}
.section-category .category-box .item .category-card .category-image .category-name {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Yuji Syuku";
  text-align: center;
  width: 100%;
  padding: 0 10px;
}
.section-category .category-box .item .collapsible {
  cursor: pointer;
}
.section-category .category-box .item .collapsible .category-image {
  position: relative;
}
.section-category .category-box .item .collapsible .category-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.section-category .category-box .item .collapsible .category-image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 195/85;
  object-fit: cover;
}
.section-category .category-box .item .collapsible .category-image .category-name {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Yuji Syuku";
  text-align: center;
  width: 100%;
  padding: 0 10px;
}
.section-category .category-box .item .content-collapse {
  margin: 15px 0 0;
  padding: 20px 10px;
  display: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
}
@media (max-width: 600px) {
  .section-category .category-box .item .content-collapse {
    margin: 10px 0 0;
  }
}
.section-category .category-box .item .content-collapse .box-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.section-category .category-box .item .content-collapse .box-content a {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid #939090;
  font-family: "Inter";
  color: #fff;
  text-decoration: none;
}
.section-category .category-box .item .content-collapse .box-content a:hover {
  opacity: 0.7;
}
.section-category .category-box .item .content-collapse .box-content a:first-child {
  padding-top: 0;
}
.section-category .category-box .item .content-collapse .box-content a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-text-home {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.section-text-home .wp-block-group__inner-container {
  width: 100% !important;
  margin: 0 auto;
  max-width: 1090px;
}
@media (max-width: 1150px) {
  .section-text-home .wp-block-group__inner-container {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .section-text-home .wp-block-group__inner-container {
    padding: 0 15px;
  }
}
.section-text-home .wp-block-group__inner-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.section-text-home .wp-block-group__inner-container p {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #262626;
  text-align: center;
}
@media (max-width: 600px) {
  .section-text-home .wp-block-group__inner-container p {
    text-align: left;
  }
}
.section-text-home .wp-block-group__inner-container .title-text {
  font-size: 28px;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .section-text-home .wp-block-group__inner-container .title-text {
    margin-bottom: 30px;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .section-text-home .wp-block-group__inner-container .title-text {
    font-size: 21px;
  }
}
.section-text-home .wp-block-group__inner-container .wp-block-button {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .section-text-home .wp-block-group__inner-container .wp-block-button {
    margin-top: 30px;
  }
}

.section-order-home {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-color: #fff;
}
.section-order-home .wp-block-group__inner-container {
  width: 100% !important;
  margin: 0 auto;
  max-width: 1090px;
}
@media (max-width: 1150px) {
  .section-order-home .wp-block-group__inner-container {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .section-order-home .wp-block-group__inner-container {
    padding: 0 15px;
  }
}
.section-order-home .wp-block-group__inner-container .container-block {
  display: block;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block {
    display: none;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block {
    display: block;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 43px;
  grid-row-gap: 43px;
  padding: 0 !important;
}
@media (max-width: 1150px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 43px;
    grid-row-gap: 43px;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group {
  width: 100%;
  height: 100%;
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container {
  position: relative;
  height: 100%;
  padding: 46px 15px 6px 15px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0;
  border: 1px solid #C4A443;
  border-radius: 4px;
  position: relative;
}
@media (max-width: 1150px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container {
    padding: 46px 0 6px !important;
  }
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container {
    padding: 46px 15px 6px 15px !important;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container {
    padding: 20px 15px !important;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container::before {
  content: "";
  background: url(../../assets/img/common/ar-yl.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
}
@media (max-width: 1150px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container::before {
    right: -24px;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container::before {
    top: auto;
    bottom: -32px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container img {
  width: auto;
  margin: 0 auto;
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container p {
  font-size: 18px;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.44;
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container p.text {
  margin-top: 39px;
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container p.text {
    margin-top: 20px;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container p.color {
  color: #E84832;
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group > .wp-block-group__inner-container p.space {
  text-align: left;
  text-indent: -1.7rem;
  padding-left: 1.5rem;
  font-size: 16px;
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(2) > .wp-block-group__inner-container {
  padding-top: 30px !important;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(2) > .wp-block-group__inner-container::before {
    right: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(50%) rotate(90deg);
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(2) > .wp-block-group__inner-container::before {
    top: auto;
    bottom: -32px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(2) > .wp-block-group__inner-container .text {
  margin-top: 44px;
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(2) > .wp-block-group__inner-container .text {
    margin-top: 20px;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container {
  padding-top: 54px !important;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container {
    padding-top: 30px !important;
  }
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container::before {
    right: -24px;
    top: 50%;
    bottom: -24px;
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container::before {
    top: auto;
    bottom: -32px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container .text {
  margin-top: 68px;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container .text {
    margin-top: 24px;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(3) > .wp-block-group__inner-container .text {
    margin-top: 20px;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container {
  padding-top: 37px !important;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container {
    padding-top: 73px !important;
    padding-bottom: 30px !important;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container {
    padding-top: 30px !important;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container::before {
  display: none;
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container .text {
  margin-top: 24px;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container .text {
    margin-top: 68px;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .wp-block-group:nth-child(4) > .wp-block-group__inner-container .text {
    margin-top: 20px;
  }
}
.section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .p-custom {
  grid-area: 2/1/3/5;
  font-size: 16px;
  font-family: "Yuji Syuku";
  font-weight: 400;
  color: #000000;
  line-height: 1.44;
  margin-top: -10px;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .p-custom {
    grid-area: 3/1/4/3;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block > .wp-block-group__inner-container .p-custom {
    grid-area: auto;
  }
}
.section-order-home .wp-block-group__inner-container .container-block.section-tablet {
  display: none;
}
@media (max-width: 1000px) {
  .section-order-home .wp-block-group__inner-container .container-block.section-tablet {
    display: block;
  }
}
@media (max-width: 600px) {
  .section-order-home .wp-block-group__inner-container .container-block.section-tablet {
    display: none;
  }
}

.section-banner {
  margin: 0 !important;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw;
  min-height: 209px;
}
.section-banner .wp-block-group__inner-container {
  width: 100%;
}
.section-banner .wp-block-group__inner-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.section-banner .wp-block-group__inner-container p {
  font-size: 24px;
  font-family: "Yuji Syuku";
  color: #262626;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media (max-width: 1150px) {
  .section-banner .wp-block-group__inner-container p {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .section-banner .wp-block-group__inner-container p {
    padding: 0 15px;
  }
}

.form-contact {
  width: 100%;
  max-width: 850px !important;
  margin: 0 auto !important;
  padding: 42px 0 60px !important;
}
@media (max-width: 600px) {
  .form-contact {
    padding: 30px 0 !important;
  }
}
.form-contact p {
  font-size: 16px !important;
  font-family: "Noto Sans JP";
  line-height: 1.5625;
  margin-bottom: 0;
  font-weight: 400;
  color: #262626;
}
.form-contact p.text-bg {
  padding: 15px 18px;
  background: #fff8de;
  margin-top: 15px;
  margin-bottom: 58px;
}
.form-contact .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label {
  transform: translateX(11px);
}
@media (max-width: 1000px) {
  .form-contact .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label {
    transform: translateX(0);
  }
}

#content {
  padding: 0;
}

.entry-content {
  margin-bottom: 0 !important;
}

.section-qa {
  width: 100%;
  padding: 0;
  margin: 55px 0 60px !important;
}
@media (max-width: 600px) {
  .section-qa {
    margin: 30px 0 !important;
  }
}
.section-qa .parent {
  background-color: #f8f8f8;
  font-size: 20px;
  line-height: 1.45;
  font-family: "Yuji Syuku";
  color: #262626;
  margin-top: 30px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .section-qa .parent {
    margin-top: 30px !important;
  }
}
.section-qa .parent:first-child {
  margin-top: 0;
}
.section-qa .parent > summary {
  padding: 30px 66px 30px 46px;
  position: relative;
  list-style: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .section-qa .parent > summary {
    padding: 30px 40px 30px 20px;
  }
}
.section-qa .parent > summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  background: url(../../assets/img/common/ar-d.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .section-qa .parent > summary::after {
    right: 20px;
  }
}
.section-qa .parent > summary::-webkit-details-marker {
  display: none;
}
.section-qa .parent > summary::marker {
  display: none;
}
.section-qa .parent > summary.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.section-qa .parent details {
  font-size: 16px;
  line-height: 1.1875;
  font-family: "Noto Sans JP";
  color: #262626;
  padding: 0 16px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .section-qa .parent details {
    padding: 0 10px;
  }
}
.section-qa .parent details::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  height: 100%;
  z-index: 0;
  background-color: #fff;
}
@media (max-width: 600px) {
  .section-qa .parent details::before {
    width: calc(100% - 20px);
  }
}
.section-qa .parent details summary {
  border-top: 1px solid #d9d9d9;
  padding: 20px 20px 20px 50px;
  margin: 0 30px;
  position: relative;
  z-index: 1;
  list-style: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .section-qa .parent details summary {
    padding: 20px;
    margin: 0 20px;
  }
}
.section-qa .parent details summary:before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 20px;
  color: #de5d50;
  transform: translateY(-50%);
  font-family: "Noto Sans JP";
  font-weight: bold;
}
.section-qa .parent details summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../../assets/img/common/ar-d.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.section-qa .parent details summary::-webkit-details-marker {
  display: none;
}
.section-qa .parent details summary::marker {
  display: none;
}
.section-qa .parent details summary.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.section-qa .parent details .wp-block-group {
  position: relative;
  z-index: 1;
  padding: 0 0 20px 50px;
  margin: 0 30px 0 30px !important;
}
@media (max-width: 600px) {
  .section-qa .parent details .wp-block-group {
    padding: 0 0 20px 20px;
    margin: 0 20px 0 20px !important;
  }
}
.section-qa .parent details .wp-block-group:before {
  content: "A";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  font-size: 20px;
  color: #5cb1b1;
  transform: translateY(-50%);
  font-family: "Noto Sans JP";
  font-weight: bold;
}
.section-qa .parent details .wp-block-group p {
  line-height: 1.5625;
  margin-bottom: 0 !important;
}
.section-qa .parent details:nth-child(2) {
  padding-top: 20px;
}
.section-qa .parent details:nth-child(2) summary {
  border-top: none !important;
}
.section-qa .parent details:last-child {
  padding-bottom: 20px;
}
.section-qa .parent details summary.active::after {
  transform: translateY(-50%) rotate(-180deg) !important;
  transition: transform 0.2s ease !important;
}
.section-qa .parent[open] details:last-child {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .section-qa .parent[open] details:last-child {
    margin-bottom: 30px;
  }
}

.section-order-policy {
  margin: 0 auto !important;
}
.section-order-policy p {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #262626;
  margin-bottom: 0;
}
.section-order-policy ul {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #262626;
  margin-bottom: 0;
}
.section-order-policy ol {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #262626;
  margin-bottom: 0;
  margin-left: 38px;
}
.section-order-policy ol li {
  list-style: "・";
}

.section-policy {
  margin: 0 auto !important;
}
.section-policy p {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #262626;
  margin-bottom: 0;
}
.section-policy .title {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  color: #262626;
  margin-bottom: 0;
  margin-top: 30px;
}
.section-policy .desc {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #262626;
  margin-bottom: 0;
  margin-top: 15px;
}

.table-about {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.table-about table {
  border: none;
}
@media (max-width: 600px) {
  .table-about table tbody tr {
    width: 100%;
    display: block;
  }
}
.table-about table tbody tr td {
  font-size: 16px;
  padding: 20px 0;
  color: #262626;
  font-family: "Noto Sans JP";
  border: none;
  border-top: 1px solid #d9d9d9;
  vertical-align: middle;
}
.table-about table tbody tr td a {
  color: #437ec4;
}
.table-about table tbody tr td strong {
  font-weight: 400;
  text-indent: -20px;
  padding-left: 20px;
  display: inline-block;
}
.table-about table tbody tr td strong::before {
  content: "・";
  font-size: 20px;
}
.table-about table tbody tr td:first-child {
  width: 180px;
}
@media (max-width: 600px) {
  .table-about table tbody tr td:first-child {
    width: 100%;
    display: block;
    font-weight: bold;
  }
}
@media (max-width: 600px) {
  .table-about table tbody tr td:last-child {
    border: none;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .table-about table tbody tr td {
    width: 100%;
    display: block;
  }
}
.table-about table tbody tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 600px) {
  .table-about table tbody tr:last-child td:first-child {
    border-bottom: none;
  }
}

.items-rice {
  margin: 0 auto !important;
  padding: 30px 0;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 800px) {
  .items-rice {
    flex-wrap: wrap !important;
  }
}
.items-rice .wp-block-group {
  margin: 0 !important;
}
.items-rice .wp-block-group:first-child {
  width: 500px;
}
@media (max-width: 1000px) {
  .items-rice .wp-block-group:first-child {
    width: 100%;
  }
}
.items-rice .wp-block-group:first-child img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.items-rice .wp-block-group:last-child {
  width: calc(100% - 500px);
}
@media (max-width: 1000px) {
  .items-rice .wp-block-group:last-child {
    width: 100%;
    margin-top: 20px !important;
  }
}
.items-rice .wp-block-group p {
  font-size: 16px;
  color: #262626;
  font-family: "Noto Sans JP";
  margin-bottom: 30px;
}
.items-rice .wp-block-group table {
  border: none;
}
@media (max-width: 500px) {
  .items-rice .wp-block-group table tbody tr {
    display: block;
    width: 100%;
  }
}
.items-rice .wp-block-group table tbody tr td {
  font-size: 16px;
  line-height: 1;
  padding: 13px 15px;
  color: #262626;
  font-family: "Noto Sans JP";
  border: none;
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 500px) {
  .items-rice .wp-block-group table tbody tr td {
    width: 100%;
    display: block;
  }
}
.items-rice .wp-block-group table tbody tr td:first-child {
  background-color: #f8f8f8;
  width: 120px;
}
@media (max-width: 500px) {
  .items-rice .wp-block-group table tbody tr td:first-child {
    width: 100%;
    font-weight: bold;
  }
}
.items-rice .wp-block-group table tbody tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 500px) {
  .items-rice .wp-block-group table tbody tr:last-child td:first-child {
    border-bottom: none;
  }
}

.section-infor {
  max-width: 850px;
  margin: 0 auto !important;
}
.section-infor table {
  width: 100%;
  border: none;
}
@media (max-width: 600px) {
  .section-infor table tr {
    width: 100%;
    display: block;
  }
}
.section-infor table tr td {
  font-size: 16px;
  line-height: 1.1875;
  padding: 19.5px 0;
  color: #262626;
  font-family: "Noto Sans JP";
  border: none;
  border-top: 1px solid #d9d9d9;
  vertical-align: middle;
}
.section-infor table tr td:first-child {
  width: 115px;
}
@media (max-width: 600px) {
  .section-infor table tr td:first-child {
    width: 100%;
    display: block;
    font-weight: bold;
  }
}
@media (max-width: 600px) {
  .section-infor table tr td:last-child {
    border: none;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .section-infor table tr td {
    width: 100%;
    display: block;
  }
}
.section-infor table tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 600px) {
  .section-infor table tr:last-child td:first-child {
    border-bottom: none;
  }
}
.section-infor p {
  line-height: 1.1875;
}

.section-map {
  margin: 0 auto !important;
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media (max-width: 1000px) {
  .section-map {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-map iframe {
  width: 100%;
  max-height: 434px;
}
@media (max-width: 600px) {
  .section-map iframe {
    max-height: 250px;
  }
}
.section-map figure {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 434px;
}
@media (max-width: 1000px) {
  .section-map figure {
    min-height: 100%;
  }
}
.section-map figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1000px) {
  .section-map figure img {
    position: unset;
  }
}

.section-history {
  max-width: 850px;
  margin: 0 auto !important;
}
.section-history table {
  width: 100%;
  border: none;
}
@media (max-width: 600px) {
  .section-history table tr {
    width: 100%;
    display: block;
  }
}
.section-history table tr td {
  font-size: 16px;
  line-height: 1.1875;
  padding: 19.5px 0;
  color: #262626;
  font-family: "Noto Sans JP";
  border: none;
  border-top: 1px solid #d9d9d9;
  vertical-align: top;
}
.section-history table tr td strong {
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1.4375;
}
.section-history table tr td:first-child {
  width: 115px;
  color: #e84832;
  font-size: 24px;
  line-height: 1;
}
.section-history table tr td:first-child strong {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .section-history table tr td:first-child {
    width: 100%;
    display: block;
    font-weight: bold;
  }
}
@media (max-width: 600px) {
  .section-history table tr td:last-child {
    border: none;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .section-history table tr td {
    width: 100%;
    display: block;
  }
}
.section-history table tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 600px) {
  .section-history table tr:last-child td:first-child {
    border-bottom: none;
  }
}

.button-detail-ck {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background-color: #DE5D50;
  border: 1px solid #DE5D50 !important;
  cursor: pointer;
  gap: 5px;
  padding: 15px;
  text-align: left;
  margin-top: 30px;
  transition: all 0.3s ease;
}
.button-detail-ck img {
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(99%) sepia(95%) saturate(3%) hue-rotate(208deg) brightness(105%) contrast(100%);
}
.button-detail-ck:hover {
  background-color: #fff;
  color: #DE5D50;
}
.button-detail-ck:hover img {
  filter: none;
}

.box-content-popup {
  font-size: 14px;
  line-height: 1.42;
}
.box-content-popup .delivery-info-badge {
  margin-top: 10px;
}
.box-content-popup .delivery-info-badge.delivery-badge-blue {
  margin-bottom: 10px;
}
.box-content-popup span.color-red {
  color: #DE5D50;
  display: block;
  text-indent: -15px;
  padding-left: 15px;
}
.box-content-popup .box-mid {
  margin-top: 30px;
}
.box-content-popup .box-mid p {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.box-content-popup .box-mid ul {
  font-size: 14px;
  padding-left: 15px;
}
.box-content-popup .box-mid ul li {
  list-style: "・";
}
.box-content-popup .box-item {
  margin-top: 30px;
}
.box-content-popup .box-item h3 {
  font-size: 14px;
  font-weight: normal;
  color: #000000;
  width: 100%;
  text-align: center;
  padding: 5px;
  background-color: #C5E0B4;
}
.box-content-popup .box-item .items {
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 10px;
}
@media (max-width: 800px) {
  .box-content-popup .box-item .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .box-content-popup .box-item .items {
    padding: 15px 5px;
  }
}
.box-content-popup .box-item .items .item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
@media (max-width: 600px) {
  .box-content-popup .box-item .items .item {
    gap: 5px;
  }
}
.box-content-popup .box-item .items .item img {
  width: 30px;
}
.box-content-popup .box-item .items .item p {
  font-size: 14px;
  color: #000000;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .box-content-popup .box-item .items .item p {
    font-size: 12px;
  }
}
@media (max-width: 450px) {
  .box-content-popup .box-item .items .item p {
    white-space: normal;
  }
}
.box-content-popup .box-item.blue h3 {
  background-color: #BDD7EE;
}
.box-content-popup .box-item.gray h3 {
  background-color: #D9D9D9;
}

.content-single {
  margin-top: 50px;
}
.content-single .entry-meta {
  border: none;
  padding: 0;
  margin: 0;
}
.content-single .entry-meta .date {
  font-size: 14px;
}
.content-single .entry-meta .date:before {
  display: none;
}
.content-single .box-title {
  margin-top: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
}
.content-single .box-title .title {
  margin: 0;
  border-bottom: 3px solid #000;
  font-size: 20px;
  width: fit-content;
}

/*# sourceMappingURL=style.css.map */
