@charset "UTF-8";
.flex {
  display: flex;
}
@media (max-width: 1024px) {
  .flex {
    flex-direction: column;
  }
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-fixed {
  position: fixed;
}

.u-sticky {
  position: sticky;
}

.u-block {
  display: block;
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.u-grid {
  display: grid;
}

.u-none {
  display: none;
}

.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}

.u-m-0 {
  margin: 0;
}

.u-p-0 {
  padding: 0;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-overflow-visible {
  overflow: visible;
}

.u-overflow-auto {
  overflow: auto;
}

:root {
  --color-dark-brown: #776039;
  --color-light-brown: #f7eedd;
  --color-gray: rgba(64, 64, 64, 0.5019607843);
  --color-black: #404040;
  --color-white: #ffffff;
  --color-bg-brown: #fffbf4;
  --important-notice-h: 0px;
}

.br-pc {
  display: block;
}

@media (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}
.br-sp {
  display: none;
}

@media (max-width: 1024px) {
  .br-sp {
    display: block;
  }
}
.br-large {
  display: none;
}

@media (max-width: 1330px) {
  .br-large {
    display: block;
  }
}
body {
  font-family: YakuHanJP, "Nunito Sans", "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  background-color: #fffbf4;
  padding-top: 160px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #404040;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1330px) {
  body {
    padding-top: 70px;
  }
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 450px;
  background-color: #f7eedd;
}
@media (max-width: 1024px) {
  body::before {
    height: 220px;
  }
}
@media (max-width: 768px) {
  body {
    overflow: hidden;
  }
}

p {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

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

a {
  color: #776039;
  text-decoration: none;
}

.section, .section--bg-white {
  position: relative;
  display: block;
  padding: 0 5%;
  margin: 200px 0;
}
@media (max-width: 1024px) {
  .section, .section--bg-white {
    margin: 100px 0;
  }
}
.section:first-child, .section--bg-white:first-child {
  margin-top: 0;
}
.section:last-child, .section--bg-white:last-child {
  margin-bottom: 0;
}
.section--bg-white {
  background-color: #ffffff;
}

.lower-section {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .lower-section {
    margin-top: 80px;
  }
}

.section-block {
  margin: 40px 0 80px;
}
@media (max-width: 1024px) {
  .section-block {
    margin: 40px 0;
  }
}
.section-block:first-child {
  margin-top: 0;
}
.section-block:last-child {
  margin-bottom: 0;
}

.deco__wave--top::before {
  content: "";
  display: block;
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_wave.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .deco__wave--top::before {
    top: -80px;
    height: 80px;
  }
}
.deco__wave--bottom::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_wave.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .deco__wave--bottom::after {
    bottom: -80px;
    height: 80px;
  }
}

.stretched-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

a.link__external {
  display: flex;
  align-items: center;
}
a.link__external::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right-up.svg);
  background-size: cover;
}

body.theme-ec {
  background-color: #ffffff;
  padding-top: calc(140px + var(--important-notice-h, 0px));
  transition: padding-top 0.3s ease;
}
@media (max-width: 1024px) {
  body.theme-ec {
    padding-top: calc(93px + var(--important-notice-h, 0px));
  }
}
body.theme-ec::before {
  content: none;
}

/**
 * ress - A modern CSS reset
 * https://github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textare {
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button {
  overflow: visible;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

[hidden~=screen] {
  display: inherit;
}

[hidden~=screen]:not(:active):not(:focus):not(:target) {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

.gap-8 {
  gap: 8px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-60 {
  gap: 60px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-48 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.mx-56 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}

.mx-64 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

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

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

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

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

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

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

.my-48 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.my-56 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.my-64 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.py-56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.py-64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mx-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

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

.object-position--center {
  object-position: center;
}
.object-position--top {
  object-position: top;
}
.object-position--bottom {
  object-position: bottom;
}
.object-position--left {
  object-position: left;
}
.object-position--right {
  object-position: right;
}
.object-position--top-left {
  object-position: top left;
}
.object-position--top-right {
  object-position: top right;
}
.object-position--bottom-left {
  object-position: bottom left;
}
.object-position--bottom-right {
  object-position: bottom right;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.grid-auto {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .grid-auto {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .grid-auto {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-auto-4 {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .grid-auto-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .grid-auto-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-top {
  align-items: start;
}
.grid-center {
  align-items: center;
}
.grid-bottom {
  align-items: end;
}
.grid-stretch {
  align-items: stretch;
}
.grid-left {
  justify-content: start;
}
.grid-center {
  justify-content: center;
}
.grid-right {
  justify-content: end;
}
.grid-between {
  justify-content: space-between;
}
.grid-around {
  justify-content: space-around;
}

.item-left {
  justify-self: start;
}
.item-center {
  justify-self: center;
}
.item-right {
  justify-self: end;
}
.item-stretch {
  justify-self: stretch;
}
.item-2 {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .item-2 {
    grid-column: span 1;
  }
}
.item-3 {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .item-3 {
    grid-column: span 1;
  }
}
.item-full {
  grid-column: 1/-1;
}
.item-row-2 {
  grid-row: span 2;
}
.item-row-3 {
  grid-row: span 3;
}
.item-row-full {
  grid-row: 1/-1;
}

.auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.auto-small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.footer {
  position: relative;
  background: #f7eedd;
  padding: 0 5%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding-bottom: 100px;
  margin-top: 140px;
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 200px;
  }
}
.footer::before {
  display: block;
  content: "";
  width: 100%;
  height: 140px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_footer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100% !important;
  position: absolute;
  top: -140px;
}
@media (max-width: 1024px) {
  .footer::before {
    top: -80px;
    height: 80px;
  }
}
.footer__container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.footer__logo {
  margin-bottom: 0;
}
.footer__logo-img {
  width: auto;
  height: 70px;
  object-fit: contain;
}
.footer__main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100%;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-right: 40px;
  max-width: 30%;
}
@media (max-width: 1024px) {
  .footer__content {
    max-width: 100%;
  }
}
.footer__address-list {
  display: grid;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__address-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer__address {
  flex: 1;
  display: grid;
  gap: 8px;
}
@media (max-width: 1024px) {
  .footer__address {
    flex: unset;
  }
}
.footer__address-title {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: bold;
  font-size: 14px;
  color: #404040;
  letter-spacing: 0.7px;
  line-height: 1.5;
  margin-bottom: 4px;
}
.footer__address-title::before {
  content: "";
  display: block;
  min-width: 16px;
  height: 16px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #776039;
}
.footer__address-text p {
  font-weight: 500;
  font-size: 14px;
  color: #404040;
  line-height: 1.5;
  letter-spacing: 0.7px;
}
.footer__contact p {
  font-weight: 500;
  font-size: 14px;
  color: #404040;
  line-height: 1.5;
  margin: 0 0 4px 0;
}
.footer__contact p:last-child {
  font-size: 12px;
}
.footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
  height: fit-content;
}
.footer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 40px;
  border-left: 1px solid #776039;
  align-self: stretch;
}
.footer__nav-main {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.footer__nav-item {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  padding-left: 20px;
}
.footer__nav-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 16px;
  background-color: #776039;
  border-radius: 999px;
}
.footer__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  mask-size: 75%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: white;
  border-radius: 999px;
}
.footer__nav-text {
  font-weight: bold;
  font-size: 14px;
  color: #404040;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.footer__nav-text:hover {
  color: #776039;
}
.footer__nav-services {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__nav-service-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__nav-service-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 214px;
}
.footer__nav-service-category {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  width: 100%;
  font-weight: 500;
  font-size: 10px;
  color: #776039;
  letter-spacing: 0.45px;
  line-height: 1.5;
}
.footer__nav-service-category::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #776039;
  margin-left: 4px;
}
.footer__nav-service-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__nav-service-link {
  font-weight: 500;
  font-size: 14px;
  color: #404040;
  text-decoration: none;
  letter-spacing: 0.7px;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.footer__nav-service-link:hover {
  color: #776039;
}
.footer__nav-service-arrow {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
.footer__nav-policy {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.footer__copyright {
  position: absolute;
  bottom: 54.15px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
.footer__copyright-text {
  font-weight: 500;
  font-size: 9px;
  color: #404040;
  letter-spacing: 0.45px;
  line-height: 1.5;
  margin: 0;
}
.footer__cta {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer {
    gap: 40px;
    padding-bottom: 160px;
  }
  .footer__container {
    padding: 0;
    flex-direction: column-reverse;
  }
  .footer__main {
    flex-direction: column;
  }
  .footer__content {
    gap: 24px;
    grid-template-rows: unset;
    width: 100%;
    padding-right: 0;
    padding-bottom: 32px;
  }
  .footer__logo-img {
    height: 87px;
    width: auto;
  }
  .footer__nav {
    padding: 32px 0 0 0;
    border-left: unset;
    border-top: 1px solid #776039;
    width: 100%;
  }
  .footer__nav-services {
    flex-direction: column;
  }
  .footer__nav-service-grid {
    padding-left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer__nav-service-column {
    min-width: unset;
    width: 100%;
  }
  .footer__nav-policy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .footer__cta .button {
    width: 100%;
    max-width: 280px;
  }
  .footer__copyright {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .footer__nav-service-grid {
    grid-template-columns: 1fr;
  }
}

.page-content > * .footer::before {
  display: block;
  content: "";
  width: 100%;
  height: 140px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_footer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100% !important;
  background-color: #ffffff;
  position: absolute;
  top: -140px;
}
@media (max-width: 1024px) {
  .page-content > * .footer::before {
    top: -80px;
    height: 80px;
  }
}

.button, .button-c-reverse, .button--light-brown, .button--white, .button--brown-w, .button--brown {
  display: grid;
  justify-content: left;
  align-items: center;
  padding: 12px 56px 12px 12px;
  border: 1px solid #D7D0C4;
  position: relative;
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
  height: auto;
  min-width: 230px;
  min-height: 56px;
  box-sizing: border-box;
}
.button__label {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 8px;
}
.button::before, .button-c-reverse::before, .button--light-brown::before, .button--white::before, .button--brown-w::before, .button--brown::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(calc(100% - 56px));
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: #f7eedd;
  transition: all 0.3s ease;
}
.button::after, .button-c-reverse::after, .button--light-brown::after, .button--white::after, .button--brown-w::after, .button--brown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 20px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #776039;
}
.button:hover::before, .button-c-reverse:hover::before, .button--light-brown:hover::before, .button--white:hover::before, .button--brown-w:hover::before, .button--brown:hover::before {
  transform: translateX(0);
}
.button--brown {
  background-color: #776039;
}
.button--brown:hover .button__label {
  color: #776039;
}
.button--brown:hover input {
  color: #776039 !important;
}
.button--brown input {
  position: relative !important;
  z-index: 2 !important;
  color: white !important;
  font-weight: bold !important;
  cursor: pointer !important;
}
.button--brown-w {
  background-color: #776039;
}
.button--brown-w::before {
  background-color: #ffffff;
}
.button--brown-w:hover .button__label {
  color: #776039;
}
.button--brown-w:hover input {
  color: #776039 !important;
}
.button--brown-w input {
  position: relative !important;
  z-index: 2 !important;
  color: white !important;
  font-weight: bold !important;
  cursor: pointer !important;
}
.button--white {
  background-color: white;
}
.button--white .button__label {
  color: #776039;
}
.button--white::before {
  background-color: #776039;
}
.button--white::after {
  background-color: #ffffff;
}
.button--white:hover .button__label {
  color: #ffffff;
}
.button--light-brown {
  background-color: #f7eedd;
}
.button--light-brown .button__label {
  color: #776039;
}
.button--light-brown::before {
  background-color: #776039;
}
.button--light-brown::after {
  background-color: #ffffff;
}
.button--light-brown:hover .button__label {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .button, .button-c-reverse, .button--light-brown, .button--white, .button--brown-w, .button--brown {
    width: 100%;
  }
}

.button-c-reverse {
  justify-content: right;
  padding: 12px 12px 12px 56px;
}
.button-c-reverse .button__label {
  color: #776039;
}
.button-c-reverse::before {
  right: unset;
  left: 0;
  transform: translateX(calc(56px - 100%));
  background-color: #776039;
}
.button-c-reverse::after {
  right: unset;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
  background-color: #ffffff;
}
.button-c-reverse:hover .button__label {
  color: #ffffff;
}

.button-icon--right-up::after {
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right-up.svg);
}
.button-icon--right-up-w::after {
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right-up.svg);
}
.button-icon--person::after {
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_person-w.svg);
}
.button-icon--mail::after {
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_mail.svg);
}

.button-position, .button-position--left, .button-position--right, .button-position--center {
  width: fit-content;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .button-position, .button-position--left, .button-position--right, .button-position--center {
    width: 100%;
  }
}
.button-position--center {
  margin-left: auto;
  margin-right: auto;
}
.button-position--right {
  margin-left: auto;
}
.button-position--left {
  margin-right: auto;
}

.button-group, .button-group--flex {
  gap: 24px;
}
@media (max-width: 768px) {
  .button-group, .button-group--flex {
    gap: 16px;
  }
}
.button-group--flex {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .button-group--flex {
    flex-direction: column;
  }
}

/* Contact Form 7カスタマイズ
/*スマホContact Form 7カスタマイズ*/
/* 必須・任意のサイズ調整 */
.inquiry .haveto, .inquiry .any {
  font-size: 10px;
  text-wrap: nowrap;
}

.inquiry {
  width: 100%;
  max-width: 1100px;
}

/* 各行のスタイル */
.inquiry tr {
  border-bottom: 1px solid rgba(119, 96, 57, 0.3019607843);
}
@media (max-width: 768px) {
  .inquiry tr {
    display: grid;
  }
}

/*見出し欄*/
.inquiry th {
  text-align: left;
  font-size: 14px;
  color: #444;
  padding-right: 0;
  width: 40%;
  max-width: 422px;
  background: #fffbf4;
  border: transparent;
  align-content: center;
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .inquiry th {
    width: 100%;
    padding: 16px 24px;
    max-width: unset;
  }
}
.inquiry th p {
  width: fit-content;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  margin-bottom: 0;
}

/*通常欄*/
.inquiry td {
  font-size: 16px;
  font-weight: 500;
  border: transparent;
  padding: 24px 40px;
  align-content: center;
}
@media (max-width: 1024px) {
  .inquiry td {
    padding: 16px 24px;
  }
}
.inquiry td input::placeholder, .inquiry td textarea::placeholder {
  color: rgba(64, 64, 64, 0.5019607843);
}
.inquiry td input[type=text], .inquiry td input[type=password], .inquiry td input[type=email], .inquiry td input[type=tel], .inquiry td input[type=search], .inquiry td input[type=url], .inquiry td select {
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(119, 96, 57, 0.3019607843);
  line-height: 2;
}
.inquiry td input[type=number] {
  width: fit-content;
  padding: 8px 0 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(119, 96, 57, 0.3019607843);
  line-height: 2;
}
.inquiry td textarea {
  width: 100%;
  height: 110px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(119, 96, 57, 0.3019607843);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  font-family: inherit;
}
.inquiry td select {
  background: none;
}

/*横の行とテーブル全体*/
.entry-content .inquiry tr, .entry-content table {
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}

/*必須の調整*/
.haveto {
  font-size: 12px;
  padding: 0 9px;
  background: #776039;
  color: #ffffff;
  border-radius: 999px;
  margin-right: 0;
  position: relative;
}

/*任意の調整*/
.any {
  font-size: 12px;
  padding: 0 9px;
  background: #ffffff;
  outline: 1px solid rgba(119, 96, 57, 0.3019607843);
  color: #776039;
  border-radius: 999px;
  margin-right: 0;
  position: relative;
}

/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
  display: block;
}

/*送信ボタンのデザイン変更*/
#formbtn {
  all: unset;
}

/*送信ボタンマウスホバー時*/
#formbtn:hover {
  all: unset;
}

/* Contact Form 7のスピナーを非表示 */
.wpcf7-spinner {
  display: none !important;
}

/* ========================================
   Legacy Content Styles
   .legacy-contentクラスが付いた要素内で
   親テーマ（welcart_basic）のスタイルを復活させる
   ======================================== */
.legacy-content {
  /* body要素のスタイルをリセット */
  /* 親テーマのスタイルを適用 */
  /* 親テーマのヘッダースタイルを復活 */
  /* 親テーマのコンテンツスタイルを復活 */
  /* 親テーマのエントリーコンテンツスタイル */
  /* 親テーマのフッタースタイル */
  /* 親テーマのボタンスタイル */
  /* 親テーマの入力フィールドスタイル */
  /* 親テーマの商品一覧スタイル */
  /* 親テーマのカテゴリー一覧スタイル */
  /* 親テーマの検索結果スタイル */
  /* 親テーマのサイドバースタイル */
  /* 親テーマのページネーションスタイル */
  /* デスクトップサイズでの調整 */
  /* タブレットサイズでの調整 */
}
.legacy-content body {
  padding-top: 0 !important;
  background-color: #fff !important;
}
.legacy-content body::before {
  display: none !important;
}
.legacy-content body {
  padding-top: 0;
  background-color: #fff;
  color: #262626;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  line-height: 150%;
}
.legacy-content header {
  position: relative;
  width: 100%;
  margin-bottom: 1.4286em;
  border-bottom: 3px solid #efefef;
}
.legacy-content .site-description {
  min-height: 40px;
  padding: 0.8333em 6.6667em 0.8333em 0.8333em;
  overflow: hidden;
  background: #131313;
  color: #fff;
  font-size: 0.85714em;
  font-weight: bold;
}
.legacy-content #content {
  padding: 0 0.714286em 2.142856em;
}
.legacy-content #content header {
  position: inherit;
  margin: 0 0 1.42857em;
  padding: 0;
  border: none;
}
.legacy-content #content .page-title,
.legacy-content #content .entry-title {
  margin-bottom: 1.25em;
  font-size: 1.142857em;
  line-height: 1.25em;
}
.legacy-content .entry-content {
  margin-bottom: 1.42857em;
}
.legacy-content .entry-content p,
.legacy-content .item-description p {
  margin-bottom: 1.42857em;
  line-height: 1.42857em;
}
.legacy-content .entry-content h1,
.legacy-content .item-description h1 {
  margin-bottom: 1.07143em;
  font-size: 1.142857em;
}
.legacy-content .entry-content h2,
.legacy-content .item-description h2 {
  margin-bottom: 1.25em;
  padding-bottom: 0.312502em;
  border-bottom: 3px solid #eee;
  font-size: 1.142857em;
  line-height: 1.25em;
}
.legacy-content .entry-content h3,
.legacy-content .item-description h3 {
  margin-bottom: 1.071428em;
  padding-left: 0.357143em;
  border-left: 5px solid #262626;
  line-height: 140%;
}
.legacy-content .entry-content ul,
.legacy-content .entry-content ol,
.legacy-content .item-description ul,
.legacy-content .item-description ol {
  margin: 0 0 1.42857em 1.42857em;
}
.legacy-content .entry-content ul li,
.legacy-content .item-description ul li {
  line-height: 180%;
  list-style: disc;
}
.legacy-content .entry-content ol li,
.legacy-content .item-description ol li {
  line-height: 180%;
  list-style: decimal;
}
.legacy-content .entry-content table,
.legacy-content .item-description table {
  width: 100%;
  margin-bottom: 0.714286em;
  border-collapse: collapse;
}
.legacy-content .entry-content th,
.legacy-content .item-description th {
  padding: 0.714286em;
  background-color: #ddd;
}
.legacy-content .entry-content td,
.legacy-content .item-description td {
  padding: 0.714286em;
}
.legacy-content .entry-content img,
.legacy-content .item-description img {
  max-width: 100%;
  height: auto;
}
.legacy-content footer {
  padding: 0.714286em 1.07143em;
  background-color: #131313;
  color: #fff;
}
.legacy-content footer nav {
  padding: 1.071428em 0;
}
.legacy-content footer nav li {
  margin-bottom: 1.071428em;
}
.legacy-content .copyright {
  padding: 1.071428em 0;
  text-align: center;
}
.legacy-content input[type=button],
.legacy-content input[type=submit],
.legacy-content input[type=reset] {
  padding: 0.714288em 1.42857em;
  border: none;
  border-radius: 3px;
  background-color: #efefef;
  color: #262626;
  font-weight: normal;
}
.legacy-content input[type=button]:hover,
.legacy-content input[type=submit]:hover,
.legacy-content input[type=reset]:hover {
  background-color: #ddd;
  cursor: pointer;
}
.legacy-content input[type=text],
.legacy-content input[type=password],
.legacy-content input[type=email],
.legacy-content input[type=tel],
.legacy-content input[type=search],
.legacy-content input[type=url] {
  padding: 0.5714285em;
  border: 1px solid #bbb;
}
.legacy-content textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #bbb;
}
.legacy-content select {
  max-width: 100%;
  padding: 0.5714285em 2.14286em 0.5714285em 0.5714285em;
  border: 1px solid #bbb;
  background: url("images/select-arrow.gif") center right 10px no-repeat;
  color: #262626;
}
.legacy-content .front-il {
  letter-spacing: -0.5em;
}
.legacy-content .front-il article {
  display: inline-block;
  width: 46%;
  margin-right: 8%;
  padding: 1.42857em 0 0;
  letter-spacing: normal;
  vertical-align: text-top;
}
.legacy-content .front-il article:nth-of-type(even) {
  margin-right: 0;
}
.legacy-content .front-il .itemimg {
  margin-bottom: 0.357143em;
  text-align: center;
}
.legacy-content .front-il .itemimg img {
  width: 100%;
  height: auto;
}
.legacy-content .front-il .itemname {
  max-height: 63px;
  overflow: hidden;
}
.legacy-content .front-il .itemprice {
  height: 22px;
  font-weight: bold;
  text-align: right;
}
.legacy-content .cat-il.type-grid {
  margin-bottom: 1.42857em;
  letter-spacing: -0.5em;
}
.legacy-content .cat-il.type-grid article {
  display: inline-block;
  width: 46%;
  margin-right: 8%;
  padding: 1.42857em 0 0;
  letter-spacing: normal;
  vertical-align: text-top;
}
.legacy-content .cat-il.type-grid article:nth-of-type(even) {
  margin-right: 0;
}
.legacy-content .cat-il.type-grid .itemimg {
  margin-bottom: 0.357143em;
  text-align: center;
}
.legacy-content .cat-il.type-grid .itemimg img {
  width: 100%;
  height: auto;
}
.legacy-content .cat-il.type-grid .itemname {
  height: 63px;
  overflow: hidden;
}
.legacy-content .cat-il.type-grid .itemprice {
  height: 22px;
  font-weight: bold;
  text-align: right;
}
.legacy-content .search-li {
  margin-bottom: 1.42857em;
  letter-spacing: -0.5em;
}
.legacy-content .search-li article {
  display: inline-block;
  width: 46%;
  margin-right: 8%;
  padding: 1.4286em 0 0;
  border: none;
  letter-spacing: normal;
  vertical-align: text-top;
}
.legacy-content .search-li article:nth-of-type(even) {
  margin-right: 0;
}
.legacy-content .search-li .itemimg {
  margin-bottom: 0.357143em;
  text-align: center;
}
.legacy-content .search-li .itemimg img {
  width: 100%;
  height: auto;
}
.legacy-content .search-li .itemname {
  height: 63px;
  overflow: hidden;
}
.legacy-content .search-li .itemprice {
  height: 22px;
  font-weight: bold;
  text-align: right;
}
.legacy-content #secondary {
  padding: 2.14289em 0;
  border-top: 5px solid #eee;
}
.legacy-content #secondary h3 {
  margin-bottom: 1.07143em;
  padding-bottom: 0.357143em;
  border-bottom: 3px solid #eee;
}
.legacy-content #secondary section {
  margin-bottom: 2.14286em;
  padding: 0 0.714286em;
}
.legacy-content .pagination_wrapper {
  position: relative;
  clear: both;
  overflow: hidden;
}
.legacy-content .pagination_wrapper ul {
  position: relative;
  left: 50%;
  float: left;
  list-style: none;
}
.legacy-content .pagination_wrapper li {
  position: relative;
  left: -50%;
  margin: 0.178em;
  float: left;
}
.legacy-content .pagination_wrapper li .current {
  display: block;
  padding: 0.357143em 0.714286em;
  border: 1px solid #131313;
  background-color: #131313;
  color: #fff;
  text-decoration: none;
}
.legacy-content .pagination_wrapper li a {
  display: block;
  padding: 0.357143em 0.714286em;
  border: 1px solid #ddd;
  background-color: #eee;
  color: #262626;
}
@media screen and (min-width: 62.5em) {
  .legacy-content #main {
    width: 1000px;
    margin: 2.857143em auto;
    padding: 0;
  }
  .legacy-content #main.one-column #content {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .legacy-content #main.two-column #content {
    width: 750px;
    margin: 0;
    padding: 0;
  }
  .legacy-content .front-il article {
    width: 22%;
    margin-right: 4%;
  }
  .legacy-content .front-il article:nth-of-type(even) {
    margin-right: 4%;
  }
  .legacy-content .front-il article:nth-of-type(4n) {
    margin-right: 0;
  }
  .legacy-content .cat-il.type-grid article {
    width: 22%;
    margin-right: 4%;
  }
  .legacy-content .cat-il.type-grid article:nth-of-type(even) {
    margin-right: 4%;
  }
  .legacy-content .cat-il.type-grid article:nth-of-type(4n) {
    margin-right: 0;
  }
  .legacy-content .search-li article {
    width: 22%;
    margin-right: 4%;
  }
  .legacy-content .search-li article:nth-of-type(even) {
    margin-right: 4%;
  }
  .legacy-content .search-li article:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 38.75em) {
  .legacy-content .front-il article {
    width: 22%;
    margin-right: 4%;
  }
  .legacy-content .front-il article:nth-of-type(even) {
    margin-right: 4%;
  }
  .legacy-content .front-il article:nth-of-type(4n) {
    margin-right: 0;
  }
}

.heading-container, .heading-container--colmun {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 1024px) {
  .heading-container, .heading-container--colmun {
    flex-direction: column;
  }
}
.heading-container--colmun {
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
@media (max-width: 1024px) {
  .heading-container--colmun .button--brown {
    position: absolute;
    bottom: 0;
    width: 90%;
  }
}

.heading-container:has(+ .content), .heading-container--colmun:has(+ .content) {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .heading-container:has(+ .content), .heading-container--colmun:has(+ .content) {
    margin-bottom: 40px;
  }
}

.heading, .heading--center {
  display: grid;
  height: fit-content;
  min-width: 230px;
}
.heading__en {
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
  color: #776039;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .heading__en {
    font-size: 24px;
    padding-left: 16px;
  }
}
.heading__en:before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #776039;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .heading__en:before {
    left: 0;
  }
}
.heading__jp {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #404040;
}
@media (max-width: 1024px) {
  .heading__jp {
    font-size: 24px;
  }
}
.heading__description {
  display: grid;
  gap: 20px;
  margin-top: 56px;
  width: 50%;
}
@media (max-width: 1024px) {
  .heading__description {
    width: 100%;
    margin-top: 0;
  }
}
.heading__description p {
  line-height: 2;
}
.heading--center {
  margin-inline: auto;
  text-align: center;
}
.heading--center .heading__en:before {
  display: none;
}

.heading-02 {
  width: 100%;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid #776039;
  border-bottom: 1px solid #776039;
  font-size: 20px;
  color: #776039;
  margin: 80px 0 40px;
}
@media (max-width: 1024px) {
  .heading-02 {
    font-size: 20px;
    margin: 40px 0;
  }
}

.heading-03 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #776039;
  padding-bottom: 24px;
  margin: 40px auto;
  text-align: center;
}
.heading-03::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 45px;
  height: 16px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .heading-03 {
    font-size: 20px;
  }
}

.heading-04 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #776039;
  text-align: center;
  background-color: #f7eedd;
  padding: 16px;
  border-radius: 8px;
}

.ec-heading {
  position: relative;
  display: flex;
  align-items: center;
  color: #776039;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  width: fit-content;
  height: 56px;
  padding-left: 48px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .ec-heading {
    height: auto;
    font-size: 20px;
    padding-left: 40px;
  }
}
.ec-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #776039;
  border-radius: 999px;
}
@media (max-width: 1024px) {
  .ec-heading::before {
    width: 32px;
    height: 32px;
  }
}
.ec-heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  mask-size: 50%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: white;
}
.ec-heading-icon--star::after {
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_star.svg);
}
.ec-heading-icon--category::after {
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_category.svg);
}

.article-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .article-archive {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 812px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .article-list {
    padding-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .article-list {
    grid-template-columns: 1fr;
  }
}

.article-card {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 24px;
  background-color: #f7eedd;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .article-card {
    padding: 16px;
  }
}
.article-card:hover .article-card__img {
  box-shadow: inset 0 0 0 1000px rgba(119, 96, 57, 0.8);
}
.article-card:hover .article-card__img img {
  transform: scale(1.1);
}
.article-card:hover .article-card__img::before {
  width: 60px;
  height: 60px;
}
.article-card:hover .article-card__img::after {
  z-index: 3;
  width: 60px;
  height: 60px;
}
.article-card:hover .article-card__title a {
  color: #776039;
}
.article-card__img {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 0 transparent;
  transition: all 0.3s ease;
}
.article-card__img::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 0;
  height: 0;
  background-color: white;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.article-card__img::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 0;
  height: 0;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 53.3333333333%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.article-card__img img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.article-card__category {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding: 2px 8px;
  background-color: #776039;
  border-radius: 999px;
}
.article-card__category::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: white;
  vertical-align: middle;
}
.article-card__date {
  font-size: 14px;
}
.article-card__title {
  font-weight: 500;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.article-card__title a {
  color: #404040;
}

.attention {
  display: flex;
  gap: 16px;
  position: relative;
  padding: 24px 32px;
  background-color: #fffbf4;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.attention:hover {
  background-color: #f7eedd;
}
.attention:hover .attention__title::after {
  transform: translateX(10px);
}
.attention:hover .attention__title::before {
  transform: translateY(-50%) translateX(10px);
}
@media (max-width: 768px) {
  .attention {
    padding: 24px;
    flex-direction: column;
  }
}
.attention__text-wrapper {
  display: grid;
  gap: 8px;
  max-width: calc(100% - 10px - 320px);
}
@media (max-width: 768px) {
  .attention__text-wrapper {
    max-width: unset;
  }
}
.attention__title {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  width: fit-content;
  padding-right: 48px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .attention__title {
    font-size: 18px;
  }
}
.attention__title a {
  color: #404040;
}
.attention__title::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.attention__title::after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 55%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
}
.attention__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 320px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: visible;
}
@media (max-width: 768px) {
  .attention__img {
    position: inherit;
    top: unset;
    right: unset;
    transform: unset;
    width: 100%;
    height: auto;
  }
}
.attention__img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-list__button-position {
  position: absolute;
  top: 0;
  right: 0;
  width: fit-content;
}
@media (max-width: 1024px) {
  .product-list__button-position {
    margin-top: 40px;
    width: 100%;
    position: relative;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover .product-card__img img {
  transform: scale(1.1);
}
.product-card__header {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.product-card__meta {
  display: flex;
}
.product-card__tags {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  padding: 4px 8px;
  background-color: #776039;
}
.product-card__category {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #776039;
  padding: 4px 8px;
  background-color: #ffffff;
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.product-card__body {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex: 1;
  margin-top: 8px;
  height: 100%;
}
.product-card__info {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.product-card__brand {
  font-size: 14px;
  font-weight: 700;
  color: rgba(64, 64, 64, 0.5019607843);
}
.product-card__name {
  line-height: 1.5;
}
.product-card__name a {
  color: #404040;
}
.product-card__price {
  font-size: 16px;
  font-weight: 700;
  width: fit-content;
  margin-left: auto;
  margin-top: auto;
}
.product-card__price em {
  font-size: 12px;
  font-weight: 700;
}
.product-card__price .price-range {
  color: #776039;
  font-weight: 700;
}
.product-card__price .price-no-data {
  color: rgba(64, 64, 64, 0.5019607843);
  font-weight: 500;
  font-style: italic;
}

.ec-cta {
  display: flex;
  background-color: #f7eedd;
  border-radius: 24px;
  height: fit-content;
}
@media (max-width: 768px) {
  .ec-cta {
    flex-direction: column;
  }
}
.ec-cta__img {
  position: relative;
  flex: 1;
}
@media (max-width: 768px) {
  .ec-cta__img {
    height: 25%;
    flex: unset;
  }
}
.ec-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ec-cta__content {
  flex: 1;
  padding: 40px;
}
@media (max-width: 768px) {
  .ec-cta__content {
    padding: 24px;
    flex: unset;
  }
}
.ec-cta__copy {
  display: grid;
  gap: 8px;
  font-size: 32px;
  font-weight: 700;
  color: #776039;
}
@media (max-width: 768px) {
  .ec-cta__copy {
    font-size: 24px;
    text-align: center;
  }
}
.ec-cta__copy-sub {
  font-size: 16px;
}
@media (max-width: 768px) {
  .ec-cta__copy-sub {
    font-size: 14px;
  }
}
.ec-cta__tel {
  display: grid;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
}
.ec-cta__tel-box {
  font-size: 14px;
  font-weight: 700;
  color: #776039;
  width: fit-content;
  margin-inline: auto;
}
.ec-cta__tel-number {
  position: relative;
  font-size: 32px;
}
@media (max-width: 768px) {
  .ec-cta__tel-number {
    font-size: 24px;
  }
}
.ec-cta__tel-number:hover::before {
  width: 100%;
}
.ec-cta__tel-number::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #776039;
  transition: all 0.3s ease;
}
.ec-cta__tel-time {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(119, 96, 57, 0.5019607843);
  text-align: center;
}
.diff-card {
  display: grid;
  gap: 16px;
  padding: 16px 24px 24px;
  background-color: #fffbf4;
  border-radius: 16px;
}
.diff-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #776039;
  text-align: center;
}

.page-header {
  position: relative;
  width: 100%;
  height: 500px;
  padding: 0 5%;
}
@media (max-width: 1024px) {
  .page-header {
    height: 300px;
  }
}
.page-header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.page-header__title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px 24px 24px 0;
  z-index: 2;
  font-size: 40px;
  line-height: 1.5;
  color: #776039;
  background-color: #f7eedd;
  border-bottom-right-radius: 40px;
}
@media (max-width: 1024px) {
  .page-header__title {
    font-size: 24px;
    border-bottom-right-radius: 24px;
  }
}
.page-header__title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #f7eedd;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_radius.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  top: 0;
  right: -40px;
  transform: scale(-1, 1) rotate(-90deg);
}
@media (max-width: 1024px) {
  .page-header__title::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    background-color: #f7eedd;
    mask-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_radius.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    top: 0;
    right: -24px;
  }
}
.page-header__title::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #f7eedd;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_radius.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  bottom: -40px;
  left: 0;
  transform: scale(-1, 1) rotate(-90deg);
}
@media (max-width: 1024px) {
  .page-header__title::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    background-color: #f7eedd;
    mask-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_radius.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    bottom: -24px;
    left: 0;
  }
}
.page-header__img {
  width: 100%;
  height: 100%;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  background-image: url(/wp-content/themes/welcart_basic-child/img/top/img_showroom.webp);
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1024px) {
  .page-header__img {
    border-radius: 24px 24px 0 0;
  }
}

.article-page-header {
  position: relative;
  width: 100%;
  height: 254px;
  padding: 0 5%;
}
@media (max-width: 1024px) {
  .article-page-header {
    height: 174px;
  }
}
.article-page-header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
}
.article-page-header__title {
  z-index: 2;
  font-size: 40px;
  line-height: 1.5;
  color: #776039;
}
@media (max-width: 1024px) {
  .article-page-header__title {
    font-size: 24px;
  }
}

.breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  font-weight: 700;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  color: rgba(119, 96, 57, 0.5019607843);
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  z-index: 10;
  margin-bottom: 16px;
  padding-left: 16px;
}
@media (max-width: 1024px) {
  .breadcrumb {
    width: 105%;
    overflow-x: auto;
  }
}
.breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.breadcrumb__link--home::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.breadcrumb__link:hover {
  color: #776039;
}
.breadcrumb__current {
  color: #776039;
  font-weight: bold;
  opacity: 1;
}
.breadcrumb span[property=itemListElement]:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  opacity: 0.5;
}

.news-container {
  position: relative;
  padding: 0 40px 60px;
  background: #ffffff;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .news-container {
    padding: 0 0 60px;
    border: 1px solid transparent;
    margin-inline: calc(50% - 50cqi);
    padding-inline: abs(50% - 50cqi);
  }
}
.news-container::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/top/deco_one-wave-large.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .news-container::before {
    top: -60px;
    height: 60px;
  }
}

.news-alert {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: #fff5f3;
  border-radius: 8px;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}
.news-alert:hover {
  background: rgba(255, 60, 0, 0.1);
}
.news-alert:hover::before {
  transform: translateY(-50%) translateX(5px);
}
.news-alert:hover::after {
  transform: translateX(5px);
}
.news-alert::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #ff3c00;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.news-alert::after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 50%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-alert__text {
  color: #ff3c00;
  font-weight: 700;
  flex: 1;
}

.news-filters {
  display: flex;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .news-filters {
    width: 105%;
    padding-right: 5%;
    overflow-x: auto;
  }
}

.news-filter {
  padding: 4px 16px;
  border-radius: 999px;
  line-height: 1.5;
  font-weight: 500;
  color: #404040;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.news-filter--active {
  background: #f7eedd;
}
.news-filter:hover:not(.news-filter--active) {
  background: rgba(119, 96, 57, 0.1);
}
@media (max-width: 1024px) {
  .news-filter {
    text-align: center;
  }
}

.news-divider {
  height: 1px;
  background: rgba(119, 96, 57, 0.1490196078);
  margin-bottom: 24px;
}

.news-list {
  margin-bottom: 32px;
}

.news-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
@media (max-width: 1024px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.news-item:hover {
  background: rgba(247, 238, 221, 0.3);
}
.news-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.news-item__date {
  font-size: 14px;
  font-weight: 500;
  color: rgba(64, 64, 64, 0.5019607843);
}
.news-item__title {
  font-weight: 700;
  color: #404040;
  margin: 0;
  line-height: 1.5;
}
.news-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-item__title a:hover {
  color: #776039;
}

.news-more {
  display: flex;
  justify-content: center;
}

header {
  border: none !important;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1330px) {
  .site-header {
    top: 0;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
}

.header__container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
  padding: 0 20px;
}
@media (max-width: 1330px) {
  .header__container {
    max-width: unset;
    margin: 0;
    padding: 0;
  }
}
.header__content {
  height: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1330px) {
  .header__content {
    position: relative;
    height: 50px;
    padding: 0;
  }
}
.header__cta {
  position: relative;
  flex: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1330px) {
  .header__cta {
    display: none;
    width: 80%;
    margin-inline: auto;
  }
}

.branding {
  position: relative;
  flex: 0 0 auto;
  width: 185px;
  height: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1330px) {
  .branding {
    position: absolute;
    left: 5%;
    top: 5px;
    width: auto;
    height: 50px;
  }
}
.branding__link {
  display: block;
  width: 100%;
  height: 100%;
}
.branding__logo {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: fit-content;
}
@media (max-width: 1330px) {
  .navigation {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.navigation__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media (max-width: 1330px) {
  .navigation__content {
    display: none;
  }
}
.navigation.panelactive {
  z-index: 999;
  height: 100svh;
}
.navigation.panelactive .navigation__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.navigation.panelactive .menu {
  display: block;
  opacity: 1;
  padding: 100px 0 0 0;
  margin-inline: auto;
  height: fit-content;
}
.navigation.panelactive .menu-item {
  animation-name: gnaviAnime;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
  animation-duration: 1s;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.navigation.panelactive .navigation__info {
  display: block;
  animation-name: gnaviAnime;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-duration: 1s;
}
.navigation.panelactive .dropdown__menu a {
  padding: 16px 8px;
}
.navigation__info {
  display: none;
  width: 100%;
  margin: 40px 0 0 0;
  margin-inline: calc(50% - 50cqi);
  padding: 40px 0 0;
  background-color: #f7eedd;
  border-radius: 40px 40px 0 0;
}
.navigation__info > * {
  width: 80%;
  margin-inline: auto;
}
.navigation__address {
  margin-bottom: 16px;
}
.navigation__address-line, .navigation__address-postal-code {
  font-size: 14px;
  color: #404040;
  line-height: 1.6;
  margin: 0;
}
.navigation__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navigation__phone-label {
  font-size: 14px;
  color: #404040;
  margin: 0;
}
.navigation__phone-number {
  font-size: 14px;
  color: #404040;
  text-decoration: none;
}
.navigation__phone-number:hover {
  color: #776039;
}
.navigation__hours-text {
  font-size: 14px;
  color: #404040;
  line-height: 1.6;
  margin: 0;
}
.navigation__social {
  display: flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 24px;
}
.navigation .cta-button {
  position: relative;
  left: inherit;
  margin-top: 32px;
  height: 80px;
}

.menu {
  display: flex;
  gap: 24px;
}
@media (max-width: 1330px) {
  .menu {
    display: none;
    width: 80%;
    flex-direction: column;
    opacity: 0; /*はじめは透過0*/
    gap: 0;
  }
}
.menu a {
  font-size: 14px;
  font-weight: 700;
  color: #404040;
}
@media (max-width: 1330px) {
  .menu-item {
    border-top: 1px solid rgba(119, 96, 57, 0.1490196078);
  }
}
.menu-item > a {
  display: block;
  padding: 16px 0;
}
@media (max-width: 1330px) {
  .menu-item:first-child {
    border-top: none;
  }
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children > a {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 18px;
}
.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
}
@media (max-width: 1330px) {
  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.dropdown__menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  color: #404040;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}
.dropdown__menu a:hover::before {
  transform: translateY(-50%) translateX(5px);
}
.dropdown__menu a:hover::after {
  transform: translateX(5px);
}
.dropdown__menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
@media (max-width: 1330px) {
  .dropdown__menu a::before {
    right: 8px;
  }
}
.dropdown__menu a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 80%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
}

.dropdown-open {
  padding-bottom: 0;
}
.dropdown-open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: fit-content;
}
@media (max-width: 1330px) {
  .dropdown-open .dropdown__menu {
    max-height: 1000px; /* PC表示でも展開されるように大きな値を設定 */
  }
}

/* ハンバーガーメニューボタン */
.openbtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999; /* ボタンを最前面に */
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-bottom-left-radius: 16px;
  display: none; /* デフォルトで非表示 */
}
@media (max-width: 1330px) {
  .openbtn {
    display: block; /* large以下（1330px以下）で表示 */
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

.simple-news {
  background-color: #f7eedd;
  padding: 24px;
  margin: 24px 0;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .simple-news {
    border-radius: 16px;
  }
}
.simple-news__container {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .simple-news__container {
    flex-direction: column;
    gap: 8px;
  }
}
.simple-news__title {
  font-size: 16px;
  font-weight: 700;
  color: #776039;
  margin: 0;
  min-width: 131px;
}
.simple-news__list {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.simple-news__meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.simple-news__tags {
  font-size: 14px;
  font-weight: 400;
  padding: 4px 16px;
  background-color: #ffffff;
  border-radius: 999px;
}
@media (max-width: 1024px) {
  .simple-news__tags {
    font-size: 12px;
  }
}
.simple-news__item {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  padding: 8px 0;
}
@media (max-width: 1024px) {
  .simple-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.simple-news__item:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, #776039, #776039 5px, transparent 5px, transparent 10px);
  background-repeat: repeat-x;
  opacity: 0.5;
}
.simple-news__item:first-child:before {
  display: none;
}
.simple-news__item:hover .simple-news__link::after {
  transform: translateX(10px);
}
.simple-news__item:hover .simple-news__link::before {
  transform: translateY(-50%) translateX(10px);
}
.simple-news__date {
  font-size: 14px;
  color: rgba(64, 64, 64, 0.5019607843);
}
.simple-news__link {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #404040;
  transition: color 0.2s ease;
  height: 100%;
  font-weight: 500;
  width: 100%;
}
.simple-news__link::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.simple-news__link::after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 62.5%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
}
.simple-news__empty {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-size: 16px;
}

#ec-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#ec-header.has-important-notice {
  top: var(--important-notice-h, 0px);
}

.ec-header {
  display: flex;
  width: 100%;
  height: 100px;
  background: #ffffff;
  padding: 0 5%;
  border-bottom: 1px solid rgba(119, 96, 57, 0.3019607843);
  transition: top 0.3s ease;
  margin: 0;
}
.ec-header__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.ec-header-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ec-header-branding__link {
  display: block;
  width: auto;
  height: 60px;
}
.ec-header-branding__logo {
  width: 100%;
  height: 100%;
}
.ec-header-branding__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.ec-header-branding__text {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}
.ec-header-utilities {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ec-header-user__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #776039;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ec-header-user__link:hover {
  background: rgb(84.5170454545, 68.1818181818, 40.4829545455);
  text-decoration: none;
}
.ec-header-user__icon {
  width: 24px;
  height: 24px;
  display: block;
}
.ec-header-cart-info__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #776039;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ec-header-cart-info__link:hover {
  background: rgb(84.5170454545, 68.1818181818, 40.4829545455);
  text-decoration: none;
}
.ec-header-cart-info__icon {
  width: 24px;
  height: 24px;
  display: block;
}
.ec-header-cart-info__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3c00;
  color: #ffffff;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .ec-header {
    padding: 0 5%;
    height: 56px;
    padding: 8px;
  }
  .ec-header__content {
    height: auto;
    gap: 6px;
  }
  .ec-header-branding__link {
    width: auto;
    height: 40px;
  }
  .ec-header-branding__text {
    font-size: 16px;
  }
  .ec-header-user__link, .ec-header-cart-info__link {
    width: 48px;
    height: 48px;
    padding: 6px 12px;
  }
  .ec-header-user__icon, .ec-header-cart-info__icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .ec-header-branding {
    gap: 8px;
  }
  .ec-header-branding__text {
    font-size: 14px;
  }
  .ec-header-utilities {
    gap: 6px;
  }
  .ec-header-user__link, .ec-header-cart-info__link {
    width: 48px;
    height: 48px;
    padding: 6px 12px;
  }
  .ec-header-user__icon, .ec-header-cart-info__icon {
    width: 28px;
    height: 28px;
  }
  .ec-header-cart-info__badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

.return-top {
  position: relative;
  background-color: #776039;
  padding: 8px 5%;
}
.return-top__link {
  font-size: 14px;
  color: #ffffff;
  padding-left: 30px;
}
.return-top__link:hover::before {
  transform: translateY(-50%) rotate(180deg) translateX(10px);
}
.return-top__link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 5%;
  width: 20px;
  height: 20px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.important-notice {
  background: #fff5f3;
  color: #ff3c00;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: none;
}
.important-notice.show {
  display: block;
  transform: translateY(0);
}
.important-notice.hidden {
  transform: translateY(-100%);
}
.important-notice__container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 5%;
}
.important-notice__content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.important-notice__icon {
  font-size: 18px;
  flex-shrink: 0;
}
.important-notice__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}
.important-notice__text strong {
  font-weight: 600;
  margin-right: 8px;
}
.important-notice__link {
  color: #ff3c00;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.important-notice__link:hover {
  opacity: 0.8;
}
.important-notice__close {
  background: none;
  border: none;
  color: #ff3c00;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.important-notice__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.important-notice__close span {
  display: block;
  line-height: 1;
}

@media (max-width: 768px) {
  .important-notice {
    padding: 10px 0;
  }
  .important-notice__container {
    padding: 0 4%;
  }
  .important-notice__content {
    gap: 8px;
  }
  .important-notice__icon {
    font-size: 16px;
  }
  .important-notice__text {
    font-size: 13px;
  }
  .important-notice__text strong {
    display: block;
    margin-bottom: 2px;
  }
  .important-notice__close {
    font-size: 18px;
    padding: 2px 6px;
  }
}
@media (max-width: 480px) {
  .important-notice__text {
    font-size: 12px;
  }
  .important-notice__icon {
    font-size: 14px;
  }
}
.ec-service-tabs {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .ec-service-tabs {
    position: unset;
    overflow: unset;
    transform: unset;
    padding: 0;
  }
}
.ec-service-tabs__content {
  display: flex;
}
.ec-service-tabs__list {
  display: flex;
  gap: 10px;
  align-items: start;
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .ec-service-tabs__list {
    display: grid;
  }
}
.ec-service-tabs__item {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
  position: relative;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
  border-bottom: none;
}
@media (max-width: 768px) {
  .ec-service-tabs__item {
    min-height: 50px;
    background-color: #f7eedd;
    border-radius: 999px;
  }
}
.ec-service-tabs__item--active {
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .ec-service-tabs__item--active {
    color: white;
    background-color: #776039;
  }
}
.ec-service-tabs__item--active .ec-service-tabs__icon::before {
  width: 32px;
  height: 32px;
  background-color: #776039;
}
@media (max-width: 768px) {
  .ec-service-tabs__item--active .ec-service-tabs__icon::before {
    background-color: white;
  }
}
.ec-service-tabs__item--active .ec-service-tabs__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  mask-size: 60%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: white;
}
@media (max-width: 768px) {
  .ec-service-tabs__item--active .ec-service-tabs__icon::after {
    background-color: #776039;
  }
}
@media (max-width: 768px) {
  .ec-service-tabs__item--active .ec-service-tabs__text {
    color: white;
  }
}
.ec-service-tabs__item:hover:not(.ec-service-tabs__item--active) .ec-service-tabs__icon::before {
  width: 16px;
  height: 16px;
}
.ec-service-tabs__icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
}
.ec-service-tabs__icon::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.ec-service-tabs__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.ec-service-tabs__text {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #776039;
  letter-spacing: 0.9px;
  white-space: nowrap;
  margin: 0 8px;
}
.ec-service-tabs__content-area {
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}
.ec-service-tabs__panel {
  display: none;
}
.ec-service-tabs__panel--active {
  display: grid;
  gap: 100px;
}

.ec-rental-content,
.ec-school-content {
  max-width: 800px;
  margin: 0 auto;
}

.ec-rental-description,
.ec-school-description {
  font-size: 16px;
  line-height: 2;
  color: #404040;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .ec-rental-description,
  .ec-school-description {
    font-size: 14px;
  }
}

.ec-rental-features,
.ec-school-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ec-rental-feature,
.ec-school-feature {
  background-color: #fffbf4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
  transition: all 0.3s ease;
}
.ec-rental-feature:hover,
.ec-school-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.ec-rental-feature h3,
.ec-school-feature h3 {
  color: #776039;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ec-rental-feature p,
.ec-school-feature p {
  color: rgba(64, 64, 64, 0.5019607843);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .ec-rental-feature p,
  .ec-school-feature p {
    font-size: 12px;
  }
}

.ec-rental-plans {
  margin-top: 40px;
  padding: 30px;
  background-color: #fffbf4;
  border-radius: 12px;
}
.ec-rental-plans__title {
  text-align: center;
  color: #776039;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .ec-rental-plans__title {
    font-size: 20px;
  }
}
.ec-rental-plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ec-rental-plan {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgba(119, 96, 57, 0.1490196078);
  transition: all 0.3s ease;
}
.ec-rental-plan:hover {
  border-color: #776039;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(119, 96, 57, 0.2);
}
.ec-rental-plan h4 {
  color: #776039;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ec-rental-plan h4 {
    font-size: 16px;
  }
}
.ec-rental-plan p {
  color: rgba(64, 64, 64, 0.5019607843);
  font-size: 14px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .ec-rental-plan p {
    font-size: 12px;
  }
}
.ec-rental-plan__price {
  display: block;
  color: #776039;
  font-size: 20px;
  font-weight: 700;
  background-color: #fffbf4;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid #776039;
}
@media (max-width: 768px) {
  .ec-rental-plan__price {
    font-size: 18px;
  }
}

.ec-no-products {
  text-align: center;
  padding: 40px 20px;
  background-color: #fffbf4;
  border-radius: 8px;
  margin: 20px 0;
}
.ec-no-products p {
  color: rgba(64, 64, 64, 0.5019607843);
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .ec-no-products p {
    font-size: 14px;
  }
}

.search-form {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
.search-form__form {
  position: relative;
  display: flex;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(119, 96, 57, 0.3019607843);
  border-radius: 999px;
  padding: 16px 24px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .search-form__form {
    padding: 10px 24px;
  }
}
.search-form__form:focus-within {
  transform: translateY(-1px);
}
.search-form__input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.search-form__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0;
  font-size: 16px;
  color: #404040;
  background: transparent;
}
.search-form__input::placeholder {
  color: rgba(64, 64, 64, 0.5019607843);
  font-size: 14px;
}
.search-form__input:focus {
  outline: none;
}
.search-form__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}
.search-form__password-toggle:hover {
  opacity: 0.7;
}
.search-form__password-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(1000%) hue-rotate(30deg) brightness(0.4) contrast(0.8);
}
.search-form__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 24px;
  background: #776039;
  color: #ffffff;
  border: none;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  min-width: 80px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.search-form__button:hover {
  background: rgb(84.5170454545, 68.1818181818, 40.4829545455);
}
.search-form__icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.search-form--compact {
  max-width: 400px;
}
.search-form--compact .ec-search__button {
  min-width: 50px;
  padding: 10px;
}
.search-form--compact .ec-search__button span {
  display: none;
}
.search-form--mini {
  max-width: 300px;
}
.search-form--mini .ec-search__form {
  padding: 5px;
}
.search-form--mini .ec-search__input {
  padding: 5px 10px;
  font-size: 14px;
}
.search-form--mini .ec-search__button {
  min-width: 40px;
  padding: 5px 10px;
  font-size: 12px;
}
.search-form--mini .ec-search__button span {
  display: none;
}
.search-form--full {
  max-width: 100%;
}
@media (max-width: 768px) {
  .search-form__form {
    flex-direction: column;
    gap: 10px;
  }
  .search-form__input {
    padding: 15px;
    font-size: 16px;
  }
  .search-form__button {
    padding: 15px;
    font-size: 16px;
    min-width: auto;
  }
}

input[type=search] {
  border: none !important;
  padding: 0 !important;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}

.category-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 199px;
}
.category-sidebar .sidebar-section {
  position: relative;
  padding: 24px 0;
}
.category-sidebar .sidebar-section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #776039;
}
.category-sidebar .sidebar-section:first-child {
  padding-top: 0;
}
.category-sidebar .sidebar-section__header {
  margin-bottom: 16px;
}
.category-sidebar .sidebar-section__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #404040;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}
.category-sidebar .sidebar-section__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.category-sidebar .sidebar-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.category-sidebar .sidebar-item__link {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: 100%;
}
.category-sidebar .sidebar-item__link:hover {
  opacity: 0.7;
}
.category-sidebar .sidebar-item__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(64, 64, 64, 0.8);
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.category-sidebar .sidebar-item__count {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(64, 64, 64, 0.8);
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.category-sidebar .sidebar-item--current .sidebar-item__name {
  color: #404040;
  font-weight: 600;
}
.category-sidebar .sidebar-item--current .sidebar-item__count {
  color: #404040;
  font-weight: 600;
}
.category-sidebar .sidebar-item--empty .sidebar-item__name {
  color: rgba(64, 64, 64, 0.5);
}
.category-sidebar .sidebar-item--empty .sidebar-item__count {
  color: rgba(64, 64, 64, 0.5);
}
.category-sidebar .sidebar-item--empty .sidebar-item__link {
  cursor: default;
  pointer-events: none;
}
.category-sidebar .sidebar-item--empty .sidebar-item__link:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .category-sidebar {
    max-width: 100%;
  }
  .category-sidebar .sidebar-section {
    padding: 20px 0;
  }
  .category-sidebar .sidebar-section__title {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  .category-sidebar .sidebar-item__name, .category-sidebar .sidebar-item__count {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 480px) {
  .category-sidebar .sidebar-section {
    padding: 16px 0;
  }
  .category-sidebar .sidebar-section__title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .category-sidebar .sidebar-item__name, .category-sidebar .sidebar-item__count {
    font-size: 13px;
    letter-spacing: 0.65px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-sidebar .sidebar-item__link {
    transition: none;
  }
}
@media (prefers-color-scheme: dark) {
  .category-sidebar .sidebar-section__title {
    color: #f0f0f0;
  }
  .category-sidebar .sidebar-item__name, .category-sidebar .sidebar-item__count {
    color: rgba(240, 240, 240, 0.8);
  }
  .category-sidebar .sidebar-item--current .sidebar-item__name,
  .category-sidebar .sidebar-item--current .sidebar-item__count {
    color: #f0f0f0;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px auto;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.pagination__item--number {
  color: #404040;
  background-color: #ffffff;
  border-color: rgba(119, 96, 57, 0.1490196078);
}
.pagination__item--number:hover {
  background-color: #f7eedd;
  border-color: #776039;
}
.pagination__item--number.current {
  background-color: #776039;
  color: #ffffff;
  border-color: #776039;
}
.pagination__item--nav {
  color: #776039;
  background-color: #ffffff;
  border-color: #776039;
  padding: 0;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  position: relative;
}
.pagination__item--nav:hover {
  background-color: #776039;
  color: #ffffff;
  background-image: none;
}
.pagination__item--nav:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.pagination__item--nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination__item--nav--prev {
  transform: scaleX(-1);
}
.pagination__item--ellipsis {
  color: rgba(64, 64, 64, 0.5019607843);
  cursor: default;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .pagination {
    gap: 4px;
    margin: 32px 0;
  }
  .pagination__item {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .pagination__item--nav {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .pagination {
    gap: 2px;
    margin: 24px 0;
  }
  .pagination__item {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .pagination__item--nav {
    padding: 0;
  }
}

.scroll-animate {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-enabled .scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-enabled .scroll-animate.delay-1 {
  transition-delay: 0.1s;
}
.js-enabled .scroll-animate.delay-2 {
  transition-delay: 0.2s;
}
.js-enabled .scroll-animate.delay-3 {
  transition-delay: 0.3s;
}
.js-enabled .scroll-animate.delay-4 {
  transition-delay: 0.4s;
}
.js-enabled .scroll-animate.delay-5 {
  transition-delay: 0.5s;
}

.scroll-animate--slide-left {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate--slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-enabled .scroll-animate--slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate--slide-right {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate--slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-enabled .scroll-animate--slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate--scale {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate--scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-enabled .scroll-animate--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate--rotate {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate--rotate {
  opacity: 0;
  transform: rotate(-5deg) translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-enabled .scroll-animate--rotate.is-visible {
  opacity: 1;
  transform: rotate(0deg) translateY(0);
}

.scroll-animate--fade {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate--fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.js-enabled .scroll-animate--fade.is-visible {
  opacity: 1;
}

.scroll-animate--large {
  opacity: 1;
  transform: none;
}

.js-enabled .scroll-animate--large {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-enabled .scroll-animate--large.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .scroll-animate--slide-left,
  .scroll-animate--slide-right,
  .scroll-animate--scale,
  .scroll-animate--rotate,
  .scroll-animate--fade,
  .scroll-animate--large {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-animate.is-visible,
  .scroll-animate--slide-left.is-visible,
  .scroll-animate--slide-right.is-visible,
  .scroll-animate--scale.is-visible,
  .scroll-animate--rotate.is-visible,
  .scroll-animate--fade.is-visible,
  .scroll-animate--large.is-visible {
    opacity: 1;
    transform: none;
  }
}
.tag, .tag--dark, .tag--light, .tag--info, .tag--warning, .tag--success, .tag--secondary, .tag--primary, .tag--important {
  display: inline-block;
  padding: 4px 16px;
  background: #f7eedd;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #404040;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 165px;
}
@media (max-width: 1024px) {
  .tag, .tag--dark, .tag--light, .tag--info, .tag--warning, .tag--success, .tag--secondary, .tag--primary, .tag--important {
    font-size: 12px;
    min-width: unset;
  }
}
.tag--important {
  background: #fff5f3;
  color: #ff3c00;
}
.tag--primary {
  background: #776039;
  color: white;
}
.tag--secondary {
  background: #6c757d;
  color: white;
}
.tag--success {
  background: #28a745;
  color: white;
}
.tag--warning {
  background: #ffc107;
  color: #212529;
}
.tag--info {
  background: #17a2b8;
  color: white;
}
.tag--light {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}
.tag--dark {
  background: #343a40;
  color: white;
}
.tag--small {
  padding: 2px 6px;
  font-size: 10px;
}
.tag--large {
  padding: 6px 12px;
  font-size: 12px;
}
.tag--link {
  cursor: pointer;
}
.tag--link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tag--removable {
  position: relative;
  padding-right: 20px;
}
.tag--removable::after {
  content: "×";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.tag--removable:hover::after {
  opacity: 1;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.tag-group--center {
  justify-content: center;
}
.tag-group--end {
  justify-content: flex-end;
}
.tag-group--between {
  justify-content: space-between;
}
.tag-group--around {
  justify-content: space-around;
}

.post-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(64, 64, 64, 0.5019607843);
  margin-bottom: 16px;
}
.post-meta__left {
  display: flex;
  gap: 4px;
  align-items: center;
}

.post-title {
  font-size: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(119, 96, 57, 0.3019607843);
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .post-title {
    font-size: 20px;
    padding-bottom: 24px;
  }
}

.post-content p {
  margin-bottom: 24px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-content: space-between;
    margin-top: 80px;
  }
}

@media (max-width: 1024px) {
  .nav-previous a, .nav-next a {
    min-width: fit-content;
  }
}
.nav-previous.is-hidden, .nav-next.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-archive {
  grid-column: span 2;
  grid-row: 2;
}

.fv {
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 5%;
}
.fv__inner {
  position: relative;
}
.fv__img {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 40px;
}
@media (max-width: 1024px) {
  .fv__img {
    height: 250px;
    border-radius: 24px;
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__overlay {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: fit-content;
}
@media (max-width: 1024px) {
  .fv__overlay {
    position: relative;
  }
}
.fv__copy {
  color: #ffffff;
  padding: 40px 0;
  margin-right: auto;
  margin-left: 40px;
}
@media (max-width: 1024px) {
  .fv__copy {
    width: 100%;
    color: #776039;
    padding: 0;
    margin: 16px 0;
  }
}
.fv__copy-title {
  font-size: 64px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .fv__copy-title {
    font-size: 32px;
  }
}
.fv__menu {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: fit-content;
  height: fit-content;
  padding: 40px;
  margin-left: auto;
  background-color: #fffbf4;
  border-radius: 40px 0 0 0;
}
@media (max-width: 1024px) {
  .fv__menu {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    border-radius: 16px;
    margin: 0;
    background-color: #ffffff;
  }
}
.fv__menu::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #fffbf4;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_radius.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  bottom: 0;
  left: -40px;
}
.fv__menu::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  background-color: #fffbf4;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/deco_radius.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  top: -40px;
  right: 0;
}
.fv__menu-item {
  position: relative;
  display: grid;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  color: #776039;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .fv__menu-item {
    padding: 24px 16px;
  }
}
.fv__menu-item:hover .fv__menu-icon {
  animation: icon-bounce 0.6s ease-in-out;
}
.fv__menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-size: 1px 10px;
  background-image: linear-gradient(to bottom, #776039, #776039 5px, transparent 5px, transparent 10px);
  background-repeat: repeat-y;
}
.fv__menu-item:last-child::before {
  display: none;
}
@media (max-width: 1024px) {
  .fv__menu-item:nth-child(even)::before {
    display: none;
  }
  .fv__menu-item:nth-child(3), .fv__menu-item:nth-child(4) {
    position: relative;
  }
  .fv__menu-item:nth-child(3)::after, .fv__menu-item:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-size: 10px 1px;
    background-image: linear-gradient(to right, #776039, #776039 5px, transparent 5px, transparent 10px);
    background-repeat: repeat-x;
  }
}
.fv__menu-icon {
  width: 32px;
  height: 32px;
  margin-inline: auto;
  transition: all 0.3s ease;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.fv__menu-link {
  color: #776039;
  font-size: 18px;
  font-weight: 700;
}

@keyframes icon-bounce {
  0% {
    transform: translateY(-5px);
  }
  30% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.about {
  overflow: hidden;
}
.about .section__content {
  padding: 60px 80px;
  max-width: 1100px;
  border-radius: 24px;
  background-color: #ffffff;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .about .section__content {
    padding: 40px 0;
    border: 1px solid transparent;
    margin-inline: calc(50% - 50cqi);
    padding-inline: abs(50% - 50cqi);
  }
}
.about .section__img {
  width: 100%;
  height: 900px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: -1;
  margin-top: -80px;
  background-color: #f7eedd;
}
@media (max-width: 1024px) {
  .about .section__img {
    width: 100svw;
    height: 450px;
    margin: 0 calc(50% - 50svw);
    border-radius: 0;
  }
}
.about .section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.about .heading__description {
  width: fit-content;
}

.section__inner {
  max-width: 1100px;
  margin-inline: auto;
}
.section__inner.flex {
  gap: 32px;
}

.service__content {
  position: relative;
  display: flex;
  gap: 40px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .service__content {
    flex-direction: column;
  }
}

.service-nav {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 144px;
  height: fit-content;
}
@media (max-width: 1330px) {
  .service-nav {
    top: 80px;
  }
}
@media (max-width: 1024px) {
  .service-nav {
    position: relative;
    top: 0;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }
  .service-nav__item {
    cursor: pointer;
  }
  .service-nav__item--active {
    background-color: #776039;
    color: white;
  }
  .service-nav__item--active .service-nav__item-label {
    color: white;
  }
  .service-nav__item--active .service-nav__item-icon::before {
    background-color: white;
    width: 12px;
    height: 12px;
  }
}
.service-nav__item {
  padding: 12px;
  color: #776039;
  background-color: #f7eedd;
  border-radius: 999px;
  min-width: 230px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .service-nav__item {
    width: 100%;
    min-width: unset;
  }
}
.service-nav__item-link {
  display: flex;
  align-items: center;
}
.service-nav__item:hover:not(.service-nav__item--active) .service-nav__item-icon::before {
  width: 16px;
  height: 16px;
}
.service-nav__item--active {
  background-color: #776039;
}
.service-nav__item--active .service-nav__item-label {
  color: #f7eedd;
}
.service-nav__item--active .service-nav__item-icon::before {
  background-color: #f7eedd;
  width: 32px;
  height: 32px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-nav__item-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 1024px) {
  .service-nav__item-icon {
    display: none;
  }
}
.service-nav__item-icon::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.service-nav__item-label {
  font-weight: 700;
  display: flex;
  align-items: center;
  margin: 0 8px;
}
@media (max-width: 1024px) {
  .service-nav__item-label {
    margin-inline: auto;
  }
}

.service-list {
  width: 100%;
  max-width: 830px;
  display: grid;
  gap: 80px;
}
@media (max-width: 1024px) {
  .service-list {
    max-width: unset;
  }
  .service-list__item {
    display: none;
  }
  .service-list__item:first-child {
    display: grid;
  }
}
.service-list__item {
  display: grid;
  gap: 40px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-list__item--no-img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-list__item--no-img .service-list__content {
  max-width: unset;
  padding: 40px;
}
@media (max-width: 1024px) {
  .service-list__item--no-img .service-list__content {
    padding: 0 0 40px 0;
  }
}
.service-list__item--no-img .service-list__text::before {
  display: none;
}
.service-list__item--no-img .service-list__buttons {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .service-list__item--no-img .service-list__buttons {
    grid-template-columns: unset;
  }
}
.service-list__main {
  display: flex;
  gap: 60px;
}
@media (max-width: 1330px) {
  .service-list__main {
    gap: 32px;
    flex-direction: column;
  }
}
.service-list__item:nth-child(even) .service-list__main {
  flex-direction: row-reverse;
}
@media (max-width: 1330px) {
  .service-list__item:nth-child(even) .service-list__main {
    flex-direction: column;
  }
}
.service-list__item:nth-child(even) .service-list__img::after {
  content: "";
  background-image: url(/wp-content/themes/welcart_basic-child/img/top/deco_one-wave-small_r.svg);
  background-size: 10.5263157895% 43.6%;
  background-position: right;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  rotate: 180deg;
}
@media (max-width: 1330px) and (max-width: 1330px) {
  .service-list__item:nth-child(even) .service-list__img::after {
    background-image: url(/wp-content/themes/welcart_basic-child/img/top/deco_one-wave-small.svg);
    background-size: 63.7426900585% 13%;
    background-position: bottom;
    rotate: unset;
  }
}
.service-list__attention {
  display: grid;
  gap: 40px;
}
.service-list__img {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 380px;
  height: 500px;
  border-radius: 24px;
  background-color: #f7eedd;
  overflow: hidden;
}
@media (max-width: 1330px) {
  .service-list__img {
    max-width: unset;
    height: auto;
    aspect-ratio: 2/1;
    border-radius: 16px;
  }
}
.service-list__img::after {
  content: "";
  background-image: url(/wp-content/themes/welcart_basic-child/img/top/deco_one-wave-small_r.svg);
  background-size: 10.5263157895% 43.6%;
  background-position: right;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1330px) {
  .service-list__img::after {
    background-image: url(/wp-content/themes/welcart_basic-child/img/top/deco_one-wave-small.svg);
    background-size: 63.7426900585% 13%;
    background-position: bottom;
  }
}
.service-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-list__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  width: 100%;
  max-width: 450px;
  height: fit-content;
  margin: auto 0;
  padding: 40px 0;
}
@media (max-width: 1330px) {
  .service-list__content {
    max-width: unset;
    padding: 0;
  }
}
.service-list__text {
  position: relative;
  height: fit-content;
}
.service-list__text::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  opacity: 0.5;
  background-image: url(/wp-content/themes/welcart_basic-child/img/top/deco_bg-text.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1330px) {
  .service-list__text::before {
    width: 240px;
    height: 240px;
  }
}
.service-list__text:last-child::before {
  display: none;
}
.service-list__title {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #776039;
}
.service-list__title-sub {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #776039;
}
.service-list__title-main {
  display: block;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .service-list__title-main {
    font-size: 20px;
  }
}
.service-list__description {
  padding-top: 16px;
}
.service-list__buttons {
  display: grid;
  gap: 8px;
}
.service-list__buttons .button {
  width: 100%;
}
.service-list__buttons .button--brown {
  width: 100%;
}
.service-list__buttons .button--light-brown {
  width: 100%;
}

.cta-button {
  position: relative;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  width: 120px;
  height: auto;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  border-radius: 999px;
  background-color: #776039;
  box-shadow: 0 5px 15px rgba(119, 96, 57, 0.3);
}
@media (max-width: 1024px) {
  .cta-button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    width: 100%;
    height: 48px;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}
.cta-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.cta-button__inner {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
}
@media (max-width: 1024px) {
  .cta-button__inner {
    display: flex;
    height: 100%;
  }
}
.cta-button__icon {
  width: 32px;
  height: 32px;
  margin-inline: auto;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_shopping-cart-w.svg);
  background-size: contain;
}
@media (max-width: 1024px) {
  .cta-button__icon {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}
.cta-button__link {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cta-button__link .cta-button__label {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.note-bounce {
  --size: 20px;
  --jump: 0.9em;
  --duration: 2000ms;
  --delay-step: 0.4s;
  --ease: cubic-bezier(.22,.61,.36,1);
  position: absolute;
  top: calc(var(--size) * -1);
  right: 0;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.6em;
  height: calc(var(--size) * 2);
  opacity: 0.5;
}
.note-bounce__item {
  width: var(--size);
  height: var(--size);
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_music-note.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  transform-origin: 50% 100%;
  animation: bounce var(--duration) var(--ease) infinite;
  will-change: transform, opacity;
}
.note-bounce__item:nth-child(2) {
  animation-delay: var(--delay-step);
}
.note-bounce__item:nth-child(3) {
  animation-delay: calc(var(--delay-step) * 2);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  20% {
    transform: translateY(calc(-0.4 * var(--jump))) rotate(-6deg);
  }
  40% {
    transform: translateY(calc(-1 * var(--jump))) rotate(0deg);
  }
  60% {
    transform: translateY(calc(-0.4 * var(--jump))) rotate(6deg);
  }
  80% {
    transform: translateY(0) rotate(0deg);
  }
}
/* アクセシビリティ：動きを苦手な人向けに無効化 */
@media (prefers-reduced-motion: reduce) {
  .note-bounce .note-bounce__item {
    animation: none !important;
    transform: none !important;
  }
}
.page-content {
  position: relative;
  background-color: white;
  padding: 0 5%;
}
.page-content__inner, .page-content__inner--narrow, .page-content__inner--wide {
  max-width: 1100px;
  margin-inline: auto;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .page-content__inner, .page-content__inner--narrow, .page-content__inner--wide {
    padding: 60px 0;
  }
}
.page-content__inner--wide {
  max-width: 1200px;
}
.page-content__inner--narrow {
  max-width: 900px;
}

.section-mt-360 {
  margin-top: 360px;
}

.section-mt-120 {
  margin-top: 120px;
}

.list-box {
  border-radius: 16px;
  overflow: hidden;
}
.list-box__header {
  padding: 16px;
  background-color: #776039;
  color: #ffffff;
  text-align: center;
}
.list-box__title {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .list-box__title {
    font-size: 16px;
  }
}
.list-box__list {
  display: grid;
  padding: 40px;
  background-color: #fffbf4;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .list-box__list {
    padding: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.list-box__list--icon-check .list-box__item::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_check-box.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .list-box__list--icon-check .list-box__item::before {
    width: 20px;
    height: 20px;
  }
}
.list-box__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background-color: #f7eedd;
  border-radius: 8px;
  font-weight: 500;
  color: #776039;
}
@media (max-width: 1024px) {
  .list-box__item {
    padding: 16px 8px;
  }
}
.list-box__item:hover a span::after {
  transform: translateX(5px);
}
.list-box__item:hover a span::before {
  transform: translateX(5px);
}
.list-box__item a {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .list-box__item a {
    flex-direction: column;
  }
}
.list-box__item a span {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media (max-width: 1024px) {
  .list-box__item a span {
    text-align: center;
    flex-direction: column;
  }
}
.list-box__item a span::before {
  content: "";
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #776039;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .list-box__item a span::before {
    right: unset;
    bottom: 0;
  }
}
.list-box__item a span::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 62.5%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
}
.list-box__item-name {
  display: block;
  flex: 1;
  margin: 0 8px;
}
@media (max-width: 1024px) {
  .list-box__item-name {
    text-align: center;
  }
}
.list-box__item-icon {
  min-width: 40px;
  height: 40px;
}
.list-box__item-icon img {
  width: 100%;
  height: auto;
  margin: auto;
}
@media (max-width: 1024px) {
  .list-box__item-icon {
    display: none;
  }
}

.square-list {
  gap: 40px;
}
.square-list__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.square-list__item-icon {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  background-color: #f7eedd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .square-list__item-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
  }
}
.square-list__item-icon img {
  object-fit: contain;
  width: 70%;
  height: auto;
  margin: auto;
}
.square-list__item-title {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .square-list__item-title {
    font-size: 16px;
  }
}

.circle-list {
  gap: 40px;
}
.circle-list__item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .circle-list__item-header {
    flex-direction: row;
  }
}
.circle-list__item-icon {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  background-color: #f7eedd;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .circle-list__item-icon {
    width: 80px;
    height: 80px;
  }
}
.circle-list__item img {
  object-fit: contain;
  width: 55%;
  height: auto;
  margin: auto;
}
.circle-list__item-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1024px) {
  .circle-list__item-title {
    font-size: 16px;
    text-align: left;
  }
}

.large-card-container {
  display: grid;
  gap: 40px;
}

.large-card {
  position: relative;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
}
@media (max-width: 1024px) {
  .large-card {
    flex-direction: column;
    border-radius: 8px;
  }
}
.large-card:hover .large-card__img img {
  transform: scale(1.1);
}
.large-card:hover .large-card__content {
  background-color: #f7eedd;
}
.large-card__img {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .large-card__img {
    aspect-ratio: 16/9;
  }
}
.large-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.large-card__content {
  flex: 1;
  padding: 40px;
  background-color: #fffbf4;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .large-card__content {
    padding: 24px;
  }
}
.large-card__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .large-card__title {
    font-size: 16px;
  }
}
.large-card__title:hover::before {
  transform: translateY(-50%) translateX(10px);
}
.large-card__title:hover::after {
  transform: translateX(10px);
}
.large-card__title::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.large-card__title::after {
  position: relative;
  z-index: 2;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 62.5%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.large-card__description {
  line-height: 2;
}

.table-01 {
  width: 100%;
  border-collapse: collapse;
}
.table-01 tr {
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.table-01 th {
  width: 180px;
  padding: 24px 40px;
  border-bottom: 1px solid #776039;
  text-align: center;
}
.table-01 td {
  padding: 24px 40px;
}

.table-02 {
  width: 100%;
  outline: 1px solid rgba(119, 96, 57, 0.1490196078);
  border-radius: 16px;
  overflow: hidden;
}
.table-02 tr {
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.table-02 tr:last-child {
  border-bottom: none;
}
.table-02 td {
  padding: 10px 16px;
}
.table-02 td:first-child {
  text-align: center;
  align-content: center;
  border-right: 1px solid rgba(119, 96, 57, 0.1490196078);
}

.table-03 {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  outline: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.table-03 tr {
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.table-03 tr:last-child {
  border-bottom: none;
}
.table-03 th {
  min-width: 100px;
  padding: 10px 16px;
  background-color: #f7eedd;
  text-align: center;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
@media (max-width: 1024px) {
  .table-03 th {
    min-width: 80px;
    position: sticky;
    left: 0;
    z-index: 10;
  }
}
.table-03 td {
  width: 300px;
  padding: 16px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .table-03 td {
    min-width: 250px;
  }
}
.table-03 th, .table-03 td {
  border-left: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.table-03 th:first-child, .table-03 td:first-child {
  border-left: none;
}

.detail-section__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .detail-section__img {
    aspect-ratio: 2/1;
    height: auto;
  }
}
.detail-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-section__container {
  display: flex;
  gap: 80px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .detail-section__container {
    flex-direction: column;
    gap: 40px;
  }
}
.detail-section__text {
  flex: 1;
}
.detail-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #776039;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .detail-section__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.detail-section__description {
  display: grid;
  gap: 16px;
}
@media (max-width: 1024px) {
  .detail-section__description {
    gap: 8px;
  }
}
.detail-section__description-main {
  font-size: 16px;
  font-weight: 700;
}
.detail-section__price {
  flex: 1;
  display: grid;
  gap: 16px;
}
.detail-section__item {
  display: flex;
  align-items: baseline;
  background-color: #f7eedd;
  border-radius: 16px;
  overflow: hidden;
}
.detail-section__item-title {
  font-weight: 700;
  color: #776039;
  padding: 4px 16px;
  width: fit-content;
}
.detail-section__item-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  padding: 4px 16px;
}
.detail-section__item-list li::after {
  content: ",";
  display: inline-block;
  margin-right: 4px;
}
.detail-section__item-list li:last-child::after {
  content: "";
}

.price-box {
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
  border-radius: 8px;
  overflow: hidden;
  height: fit-content;
}
.price-box__header {
  padding: 8px 16px;
  line-height: 1.6;
  color: #776039;
  font-weight: 700;
  background-color: #f7eedd;
}
.price-box__price {
  padding: 24px;
  line-height: 1.5;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .price-box__price {
    padding: 16px 24px;
  }
}
.price-box__price-main {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 40px;
  line-height: 1.5 !important;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .price-box__price-main {
    font-size: 32px;
  }
}
.price-box__price-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5 !important;
  text-align: center;
}
.price-box__yen, .price-box__yen--over {
  font-size: 16px;
  font-weight: 700;
}
.price-box__yen--over::after {
  content: "~";
  display: inline-block;
  margin-left: 4px;
}
.price-box__period {
  font-size: 16px;
  font-weight: 700;
  color: rgba(64, 64, 64, 0.5019607843);
}
.price-box__period::before {
  content: "/";
  display: inline-block;
  color: rgba(64, 64, 64, 0.5019607843);
  margin-right: 4px;
}

.comment-mark::after {
  content: "※";
  display: inline-block;
  color: #ff3c00;
  font-size: 12px;
}

.comment-text {
  display: flex;
  gap: 4px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
  color: #ff3c00;
}
.comment-text:before {
  content: "※";
  display: inline-block;
  color: #ff3c00;
}
.comment-text p {
  font-size: 14px;
}

.page-intro {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .page-intro {
    flex-direction: column;
  }
}
.page-intro__title {
  font-size: 32px;
  font-weight: 700;
  color: #776039;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .page-intro__title {
    font-size: 24px;
  }
}
.page-intro__content {
  width: 50%;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .page-intro__content {
    width: 100%;
  }
}

.point-list {
  counter-reset: my-counter;
  gap: 40px;
}
.point-list__header {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  color: #776039;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .point-list__header {
    gap: 16px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}
.point-list__header::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(my-counter, decimal-leading-zero);
  counter-increment: my-counter;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  width: 60px;
  height: 60px;
  background-color: #776039;
  border-radius: 999px;
}
@media (max-width: 1024px) {
  .point-list__header::before {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.point-list__header h3 {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .point-list__header h3 {
    font-size: 16px;
  }
}
.point-list__description {
  display: grid;
  gap: 24px;
}

.address-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .address-list {
    grid-template-columns: unset;
  }
}
@media (max-width: 768px) {
  .address-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .address-list {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .address-list__item {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .address-list__item {
    flex-direction: column;
  }
}
.address-list__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #776039;
  padding: 16px;
  border-bottom: 1px solid #776039;
  text-align: center;
}
@media (max-width: 1024px) {
  .address-list__item-title {
    font-size: 16px;
    text-align: left;
    margin-bottom: 0;
    padding: 8px 16px;
    border-bottom: none;
    border-right: 1px solid #776039;
    width: 20%;
    height: 100%;
    align-content: center;
  }
}
@media (max-width: 768px) {
  .address-list__item-title {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #776039;
  }
}
@media (max-width: 1024px) {
  .address-list__item-content {
    flex: 1;
    width: 100%;
  }
}
.address-list__item-data {
  font-weight: 500;
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
@media (max-width: 1024px) {
  .address-list__item-data {
    padding: 8px 16px;
    text-align: left;
  }
}
.address-list__item-data:last-child {
  border-bottom: none;
}

.bunner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  .bunner-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .bunner-list {
    grid-template-columns: 1fr;
  }
}
.bunner-list__box-link {
  display: block;
  border-radius: 4px;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
  overflow: hidden;
}
.bunner-list__box-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bunner-list__box p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.simple-border-box {
  padding: 40px;
  margin: 24px 0;
  border-radius: 40px;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
}
@media (max-width: 1024px) {
  .simple-border-box {
    padding: 24px;
    border-radius: 24px;
    overflow: hidden;
  }
}
.simple-border-box__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.class-schedule {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  outline: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.class-schedule tr {
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.class-schedule tr:last-child {
  border-bottom: none;
}
.class-schedule__day-header {
  min-width: 100px;
  padding: 10px 16px;
  background-color: #f7eedd;
  text-align: center;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
@media (max-width: 1024px) {
  .class-schedule__day-header {
    min-width: 80px;
    position: sticky;
    left: 0;
    z-index: 10;
  }
}
.class-schedule__location-header {
  width: 300px;
  padding: 10px 16px;
  background-color: #f7eedd;
  text-align: center;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
}
@media (max-width: 1024px) {
  .class-schedule__location-header {
    min-width: 250px;
  }
}
.class-schedule__day {
  padding: 16px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  background-color: #f7eedd;
}
@media (max-width: 1024px) {
  .class-schedule__day {
    position: sticky;
    left: 0;
    z-index: 10;
  }
}
.class-schedule__course {
  padding: 16px;
}
.class-schedule th, .class-schedule td {
  border-left: 1px solid rgba(119, 96, 57, 0.1490196078);
}
.class-schedule th:first-child, .class-schedule td:first-child {
  border-left: none;
}

.course-tag__group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.course-tag, .course-tag--fl, .course-tag--vc, .course-tag--vl, .course-tag--pf {
  display: flex;
  align-items: baseline;
  border-radius: 4px;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
  width: fit-content;
  overflow: hidden;
}
.course-tag--pf .course-tag__label {
  background-color: #816639;
}
.course-tag--vl .course-tag__label {
  background-color: #AF3638;
}
.course-tag--vc .course-tag__label {
  background-color: #E48F00;
}
.course-tag--fl .course-tag__label {
  background-color: #2B8CA4;
}
.course-tag__label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 8px;
}
.course-tag__name {
  font-size: 14px;
  font-weight: 500;
  padding: 0 8px;
  background-color: #ffffff;
}

.scroll-x-wrapper {
  position: relative;
}
@media (max-width: 1024px) {
  .scroll-x-wrapper {
    overflow-x: auto !important;
    width: calc(100% + 24px);
    padding-left: 1px;
    padding-right: 24px;
  }
}

.simple-block-list__item {
  padding: 16px;
  font-weight: 500;
  background-color: #f7eedd;
  border-radius: 8px;
  text-align: center;
}

.simple-card {
  position: relative;
  padding: 40px;
  background-color: #fffbf4;
  border-radius: 16px;
  border: 1px solid rgba(119, 96, 57, 0.1490196078);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .simple-card {
    padding: 24px;
  }
}
.simple-card:hover {
  background-color: #f7eedd;
}
.simple-card__title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #776039;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .simple-card__title {
    font-size: 18px;
  }
}
.simple-card__title:hover::before {
  transform: translateY(-50%) translateX(10px);
}
.simple-card__title:hover::after {
  transform: translateX(10px);
}
.simple-card__title::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #776039;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.simple-card__title::after {
  position: relative;
  z-index: 2;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_arrow-right.svg);
  mask-size: 62.5%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.image-container {
  margin-inline: auto;
  width: fit-content;
}

.video-container {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex: 1;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.twentytwenty-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 8px;
}
.twentytwenty-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.tab {
  display: flex;
  gap: 8px;
  width: 100%;
}
.tab li {
  position: relative;
  flex: 1;
  background-color: #776039;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border-radius: 24px 24px 0 0;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .tab li {
    font-size: 14px;
    border-radius: 16px 16px 0 0;
    padding: 8px;
  }
}
.tab li a {
  color: #ffffff;
}
.tab li.active {
  background-color: #fffbf4;
}
.tab li.active a {
  color: #776039;
}
.tab-content {
  display: none;
  gap: 24px;
  padding: 40px;
  background-color: #fffbf4;
  border-radius: 0 0 24px 24px;
}
@media (max-width: 1024px) {
  .tab-content {
    padding: 24px;
  }
}
.tab-content.is-active {
  display: grid;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-brand {
  padding: 32px 32px 16px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(119, 96, 57, 0.3019607843);
}
@media (max-width: 1024px) {
  .p-brand {
    padding: 24px 10px 16px;
  }
}
.p-brand__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #776039;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 1024px) {
  .p-brand__title {
    font-size: 16px;
  }
}

.p-brand-list__item {
  border-bottom: 1px solid rgba(119, 96, 57, 0.3019607843);
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .p-brand-list__item {
    margin-bottom: 8px;
  }
}
.p-brand-list__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.series-description {
  font-size: 18px;
  font-weight: 700;
  color: #776039;
  padding: 0 16px;
}
@media (max-width: 1024px) {
  .series-description {
    font-size: 16px;
  }
}

.series-details summary {
  list-style: none;
}
.series-details summary::-webkit-details-marker {
  display: none;
}
.series-details:not([open]) .series-area {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.series-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: #776039;
  padding: 0 16px 16px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .series-title {
    font-size: 16px;
    padding: 0 8px 8px;
  }
}
.series-title__accordion {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #776039;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .series-title__accordion {
    width: 24px;
    height: 24px;
  }
}
.series-title__accordion::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .series-title__accordion::before {
    width: 10px;
    height: 1px;
  }
}
.series-title__accordion::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .series-title__accordion::after {
    width: 10px;
    height: 1px;
  }
}

.series-details[open] .series-title__accordion::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.series-area {
  padding-bottom: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding-bottom 0.5s ease-out;
}
.series-area:last-of-type {
  padding-bottom: 0;
}
.series-area__wrapper {
  padding: 0 16px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .series-area__wrapper {
    padding: 8px 8px;
    margin-bottom: 0;
  }
}
.series-area__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .series-area__content {
    padding-bottom: 8px;
    margin-bottom: 8px;
    flex-direction: column;
  }
}
.series-area__content:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.series-area__content:last-of-type .series-area__title {
  top: 50%;
}
.series-area__title {
  position: absolute;
  top: calc(50% - 16px);
  transform: translateY(-50%);
  left: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #776039;
}
@media (max-width: 1024px) {
  .series-area__title {
    position: relative;
    top: 0;
    transform: translateY(0);
    left: 0;
    font-size: 16px;
  }
}
.series-area__note {
  font-size: 14px;
  font-weight: 400;
  color: #776039;
  text-align: right;
  margin-top: 14px;
}
@media (max-width: 1024px) {
  .series-area__note {
    font-size: 12px;
    margin-top: 8px;
    text-align: left;
  }
}

.series-box {
  display: grid;
  gap: 8px;
  width: 100%;
  padding-left: 60px;
}
@media (max-width: 1024px) {
  .series-box {
    padding-left: 0;
    gap: 16px;
  }
}
.series-box__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  .series-box__item {
    flex-direction: column;
    align-items: center;
  }
}

.series-color, .series-color--wood, .series-color--black {
  display: grid;
  align-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
}
.series-color--black {
  background-color: #404040;
}
.series-color--wood {
  background-color: #776039;
}

.series-text {
  font-weight: 400;
  text-align: left;
  color: #404040;
}
@media (max-width: 1024px) {
  .series-text {
    text-align: center;
  }
}
.series-text p {
  margin-top: 16px;
  font-weight: 400;
}
.series-text p:first-child {
  margin-top: 0;
}

.border-box {
  border: 1px solid #776039;
  border-radius: 24px;
  overflow: hidden;
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .border-box {
    margin: 60px 0;
  }
}
.border-box__header {
  padding: 16px;
  background-color: #776039;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.border-box__content {
  padding: 40px;
}
@media (max-width: 768px) {
  .border-box__content {
    padding: 24px 5%;
  }
}
.border-box__item {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 40px 0;
}
.border-box__img {
  width: 100%;
  height: auto;
  z-index: 1;
}
.border-box__img-wrapper {
  position: relative;
  max-width: 910px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .border-box__img-wrapper {
    max-width: 310px;
  }
}
.border-box__img img {
  width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.modal-button {
  position: absolute;
  width: clamp(150px, 25.27vw, 230px);
  height: clamp(30px, 4vw, 48px);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 768px) {
  .modal-button {
    width: 185px;
    height: 38px;
  }
}

#modalButton01 {
  top: clamp(15.7px, 2.64vw, 24px);
  right: 0;
}
@media (max-width: 768px) {
  #modalButton01 {
    top: 0;
  }
}

#modalButton02 {
  top: clamp(52.4px, 8.79vw, 80px);
  left: 0;
}
@media (max-width: 768px) {
  #modalButton02 {
    top: 47px;
  }
}

#modalButton03 {
  bottom: clamp(26.2px, 4.4vw, 40px);
  left: 0;
}
@media (max-width: 768px) {
  #modalButton03 {
    bottom: 0;
  }
}

#modalButton04 {
  top: clamp(90.5px, 15.16vw, 138px);
  right: 0;
}
@media (max-width: 768px) {
  #modalButton04 {
    top: 0;
  }
}

#modalButton05 {
  top: clamp(52.4px, 8.79vw, 80px);
  left: 0;
}
@media (max-width: 768px) {
  #modalButton05 {
    top: 47px;
  }
}

#modalButton06 {
  bottom: clamp(6.5px, 1.1vw, 10px);
  left: 0;
}
@media (max-width: 768px) {
  #modalButton06 {
    bottom: 0;
  }
}

#modalButton07 {
  top: clamp(34.1px, 5.71vw, 52px);
  right: 0;
}
@media (max-width: 768px) {
  #modalButton07 {
    top: 0;
  }
}

.modal {
  background-color: #fffbf4;
  border: none;
  margin: auto;
  padding: 24px;
  border-radius: 24px;
  width: fit-content;
  height: fit-content;
  max-width: 90%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.modal[open] {
  animation: modalFadeIn 0.3s ease-out forwards;
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  animation: backdropFadeIn 0.3s ease-out;
}
@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
}
.modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #DE850F;
}
.modal__close {
  position: relative;
}
.modal__close::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #DE850F;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.modal__close::after {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  mask-image: url(/wp-content/themes/welcart_basic-child/img/common/icon_plus.svg);
  mask-size: 50%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #ffffff;
  border-radius: 999px;
  border: 5px solid #ffffff;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(119, 96, 57, 0.1490196078);
  margin-bottom: 16px;
}

.modal-content {
  display: grid;
  gap: 16px;
}
.modal-content__item {
  display: grid;
}
.modal-content__item-title {
  font-weight: 700;
  line-height: 1.6;
}
.modal-content__item-description {
  font-weight: 400;
}
.modal-content__img, .modal-content__img--flex {
  width: auto;
  object-fit: cover;
  margin-inline: auto;
}
.modal-content__img--flex {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .modal-content__img--flex {
    flex-direction: column;
    gap: 8px;
  }
}
.modal-content__img img, .modal-content__img--flex img {
  flex: 1;
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}
.modal-content__img figcaption, .modal-content__img--flex figcaption {
  font-size: 14px;
  font-weight: 400;
  color: #776039;
  text-align: center;
  padding-top: 8px;
}

.archive-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .archive-container {
    flex-direction: column;
    gap: 20px;
  }
}

.archive-content {
  flex: 1;
}

.archive-sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 20px;
}
@media (max-width: 1024px) {
  .archive-sidebar {
    position: relative;
    top: 0;
    flex: none;
    width: 100%;
  }
}
.archive-sidebar__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #404040;
}

.archive-filters {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .archive-filters {
    display: flex;
    flex-direction: unset;
    margin-bottom: 24px;
    width: 105%;
    padding-right: 5%;
    overflow-x: auto;
  }
}

.archive-filter {
  display: block;
  padding: 8px 16px;
  border-radius: 999px;
  line-height: 1.5;
  font-weight: 500;
  color: #404040;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.archive-filter--active {
  background: #f7eedd;
}
.archive-filter:hover:not(.archive-filter--active) {
  background: rgba(119, 96, 57, 0.1);
  text-decoration: none;
  color: #404040;
}
@media (max-width: 1024px) {
  .archive-filter {
    text-align: center;
  }
}

.news-archive-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.news-archive-item:last-child {
  border-bottom: none;
}
.news-archive-item__meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.news-archive-item__date {
  font-size: 14px;
  color: rgba(64, 64, 64, 0.5019607843);
}
.news-archive-item__title {
  margin: 0;
  flex: 1;
  line-height: 1.4;
}
.news-archive-item__title a {
  color: #404040;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-archive-item__title a:hover {
  color: #776039;
}

#primary #content.ec-page-content {
  max-width: 1100px;
  margin-inline: auto;
  padding: 100px 0;
}

.ec-main-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .ec-main-content {
    flex-direction: column;
    gap: 20px;
  }
}

.ec-main-content #img-box {
  flex: 0 0 400px;
}
@media (max-width: 768px) {
  .ec-main-content #img-box {
    flex: none;
    width: 100%;
  }
}

.ec-main-content .detail-box {
  flex: 1;
}
@media (max-width: 1024px) {
  .ec-main-content .detail-box {
    width: 100%;
  }
}

.item-header .item-meta-info {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ec-description {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.ec-description .item-description {
  line-height: 1.6;
}

.item-header__info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.item-tag {
  width: fit-content;
  padding: 4px 16px;
  background-color: #776039;
  border-radius: 999px;
}
.item-tag__label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.item-brand {
  width: fit-content;
}
.item-brand__label {
  color: #776039;
  font-size: 14px;
  font-weight: 700;
}

.item-info .field_price {
  font-size: 32px;
}

.item-name {
  display: none;
}

.itemcode {
  display: none;
}

.site-content {
  position: relative;
  padding: 0 5%;
}
.site-content__container {
  display: grid;
  gap: 40px;
  max-width: 1100px;
  margin-inline: auto;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .site-content__container {
    padding: 60px 0;
  }
}

.ec-fv {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #f7eedd;
  display: grid;
}
@media (max-width: 1024px) {
  .ec-fv {
    height: 325px;
  }
}
.ec-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 186px;
  background-image: url(/wp-content/themes/welcart_basic-child/img/ec/deco_ec-wave.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .ec-fv::before {
    height: 100px;
  }
}
.ec-fv__title {
  font-size: 64px;
  margin: auto;
  color: #776039;
  display: grid;
  text-align: center;
}
.ec-fv__title span:last-child {
  font-size: 40px;
}
@media (max-width: 1024px) {
  .ec-fv__title {
    font-size: 40px;
  }
  .ec-fv__title span:last-child {
    font-size: 24px;
  }
}

.ec-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .ec-category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.ec-category-list__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 24px;
  background-color: #f7eedd;
  border-radius: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .ec-category-list__item {
    padding: 16px;
    flex-direction: column;
    gap: 8px;
  }
}
.ec-category-list__item:hover .ec-category-list__icon {
  transform: scale(1.1);
}
.ec-category-list__link {
  width: 100%;
  margin: 0 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #776039;
}
.ec-category-list__icon {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}

.product-section {
  position: relative;
}

.list {
  border: 1px solid transparent;
  margin-inline: calc(50% - 50cqi);
  padding-inline: abs(50% - 50cqi);
  padding: 40px 5%;
  background-color: #f7eedd;
}
.list__container {
  max-width: 1100px;
  margin-inline: auto;
}
.list .ec-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .list .ec-category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.list .ec-category-list__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 24px;
  background-color: #fffbf4;
  border-radius: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .list .ec-category-list__item {
    padding: 10px;
    border-radius: 8px;
  }
}
.list .ec-category-list__item:hover .ec-category-list__icon {
  transform: scale(1.1);
}
.list .ec-category-list__link {
  width: 100%;
  margin: 0 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #776039;
}
.list .ec-category-list__icon {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}
@media (max-width: 1024px) {
  .list .ec-category-list__icon {
    display: none;
  }
}

/**
 * EC Listing Page Styles
 * カテゴリーページと検索結果ページで共通使用
 * Figmaデザインに基づく商品一覧ページ専用スタイル
 * BEM形式で記述
 */
.ec-listing {
  background: #ffffff;
  min-height: 100vh;
}
.ec-listing__container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 40px 20px;
}
.ec-listing__header {
  margin-bottom: 40px;
}
.ec-listing__layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.ec-listing__main {
  flex: 1;
  min-width: 0;
}
.ec-listing__info {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 32px;
}
.ec-listing__info-total, .ec-listing__info-range {
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.ec-listing__info-number {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #404040;
}
.ec-listing__info-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.7px;
  color: #404040;
}

.page-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.page-title__main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #404040;
  margin: 0;
}
.page-title__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #404040;
}

.ec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .ec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.no-ecs {
  text-align: center;
  padding: 40px 20px;
}
.no-ecs p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination .page-numbers li a, .pagination .page-numbers li span {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
  transition: all 0.2s ease;
}
.pagination .page-numbers li a:hover, .pagination .page-numbers li span:hover {
  background: #f5f5f5;
  color: #333;
}
.pagination .page-numbers li .current {
  background: #776039;
  color: white;
  border-color: #776039;
}

@media (max-width: 1024px) {
  .ec-listing__container {
    padding: 20px 16px;
  }
  .ec-listing__layout {
    flex-direction: column;
    gap: 40px;
  }
  .category-sidebar {
    width: 100%;
    order: 2;
  }
  .ec-listing__main {
    order: 1;
  }
  .ec-grid {
    justify-content: center;
  }
  .ec-card {
    width: 100%;
    max-width: 300px;
  }
  .page-title__main {
    font-size: 24px;
  }
  .page-title__sub {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .ec-grid {
    gap: 12px;
  }
  .ec-card {
    width: 100%;
    max-width: 280px;
  }
}
.ec-login {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out;
}
.ec-login__container {
  position: relative;
  max-width: 1100px;
  width: 100%;
  background: #f7eedd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .ec-login__container {
    display: flex;
    flex-direction: column;
  }
}
.ec-login__container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background: rgba(119, 96, 57, 0.3019607843);
}
@media (max-width: 1024px) {
  .ec-login__container::before {
    display: none;
  }
}
.ec-login__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .ec-login__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.ec-login__form-section {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}
@media (max-width: 1024px) {
  .ec-login__form-section {
    width: 100%;
    padding: 24px;
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .ec-login__form-section::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: rgba(119, 96, 57, 0.3019607843);
  }
}
.ec-login__register-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}
@media (max-width: 1024px) {
  .ec-login__register-section {
    width: 100%;
    padding: 24px;
    gap: 32px;
  }
}
.ec-login__header {
  text-align: center;
  margin: 0 !important;
}
.ec-login__title {
  color: #776039;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}
.ec-login__error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}
.ec-login__error:empty {
  display: none;
}
.ec-login__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .ec-login__form {
    gap: 20px;
  }
}
.ec-login__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ec-login__field--remember {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.ec-login__field:has(.ec-login__input[type=password]) {
  position: relative;
}
.ec-login__field:has(.ec-login__input[type=password]) .ec-login__input {
  padding-right: 50px;
  position: relative;
}
.ec-login__password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: auto;
  user-select: none;
}
.ec-login__password-toggle:hover {
  background: rgba(119, 96, 57, 0.1);
}
.ec-login__password-toggle .ec-login__toggle-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/welcart_basic-child/img/login/icon_visibility_off.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.ec-login__password-toggle--active .ec-login__toggle-icon {
  background-image: url("/wp-content/themes/welcart_basic-child/img/login/icon_visibility.svg");
}
.ec-login__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
.ec-login__label-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #776039;
  letter-spacing: 0.7px;
}
.ec-login__input {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  border: 1px solid rgba(119, 96, 57, 0.15);
  border-radius: 99px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #ffffff;
  letter-spacing: 0.8px;
}
@media (max-width: 1024px) {
  .ec-login__input {
    padding: 14px 16px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .ec-login__input {
    padding: 12px 14px;
  }
}
.ec-login__input:focus {
  outline: none;
  border-color: #776039;
  box-shadow: 0 0 0 3px rgba(119, 96, 57, 0.1);
  transform: scale(1.02);
}
.ec-login__input::placeholder {
  color: rgba(119, 96, 57, 0.5);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.ec-login__input:invalid {
  border-color: #e33;
}
.ec-login__input:invalid:not(:focus) {
  border-color: #e33;
  background: #fef;
}
.ec-login__input:valid:not(:focus) {
  border-color: #3c3;
  background: #fef;
}
.ec-login__input.invalid {
  border-color: #e33;
  background: #fef;
  animation: shake 0.5s ease-in-out;
}
.ec-login__input.valid {
  border-color: #3c3;
  background: #fef;
}
.ec-login__input:focus-visible {
  outline: 3px solid #776039;
  outline-offset: 2px;
}
.ec-login__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #776039;
}
.ec-login__checkbox {
  width: 20px;
  height: 20px;
  accent-color: #776039;
  cursor: pointer;
}
.ec-login__checkbox:focus-visible {
  outline: 2px solid #776039;
  outline-offset: 2px;
}
.ec-login__checkbox-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.ec-login .loginbox {
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: auto !important;
}
.ec-login__submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-login__submit #member_login {
  all: revert-layer !important;
}
@layer {
  .ec-login__submit #member_login {
    all: unset;
    position: relative;
    z-index: 2;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
}
.ec-login__links {
  text-align: center;
  margin-top: 16px;
}
.ec-login__link {
  color: #776039;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.ec-login__link:hover {
  border-bottom-color: #776039;
}
.ec-login__register {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .ec-login__register {
    width: 100%;
    margin-top: 32px;
    padding-top: 24px;
  }
}
.ec-login__register-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #776039;
  margin-bottom: 0;
  letter-spacing: 1.2px;
}
@media (max-width: 1024px) {
  .ec-login__register-title {
    font-size: 16px;
  }
}
.ec-login__register-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #776039;
  margin-bottom: 0;
  letter-spacing: 0.8px;
}
.ec-login__register-link-wrapper {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-login__field-error {
  color: #e33;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}
.ec-login__form.loading__submit input[type=submit], .ec-login__form.loading__submit button {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
@media (prefers-color-scheme: dark) {
  .ec-login {
    background: #1a1a1a;
    color: #ffffff;
  }
  .ec-login__container {
    background: #2a2a2a;
    border: 1px solid #444;
  }
  .ec-login__input {
    background: #3a3a3a;
    border-color: #555;
    color: #ffffff;
  }
  .ec-login__input:focus {
    border-color: #776039;
    background: #4a4a4a;
  }
  .ec-login__input::placeholder {
    color: #999;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
body.error404::before {
  display: none;
}

.page-404 h1 {
  font-size: 100px;
  font-weight: bold;
  color: #776039;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page-404 h1 {
    font-size: 80px;
  }
}
.page-404 h1 span {
  display: block;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .page-404 h1 span {
    font-size: 40px;
  }
}
.page-404 p {
  font-size: 24px;
  color: #776039;
}
@media (max-width: 1024px) {
  .page-404 p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .page-404 + .footer {
    margin-top: 80px;
  }
}

.twentytwenty-vertical .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-horizontal .twentytwenty-handle:before {
  content: " ";
  display: block;
  background: #fff;
  position: absolute;
  z-index: 30;
}

.twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-horizontal .twentytwenty-handle:before {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.twentytwenty-overlay, .twentytwenty-after-label, .twentytwenty-before-label {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-overlay, .twentytwenty-after-label, .twentytwenty-before-label {
  transition-duration: 0.5s;
}

.twentytwenty-after-label, .twentytwenty-before-label {
  transition-property: opacity;
}

.twentytwenty-after-label:before, .twentytwenty-before-label:before {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-after-label:before, .twentytwenty-before-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before, .twentytwenty-horizontal .twentytwenty-before-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-after-label:before, .twentytwenty-vertical .twentytwenty-before-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-down-arrow, .twentytwenty-up-arrow, .twentytwenty-right-arrow, .twentytwenty-left-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.twentytwenty-right-arrow, .twentytwenty-left-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-down-arrow, .twentytwenty-up-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}
.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0;
}
.twentytwenty-container * {
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}
.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-after-label {
  opacity: 0;
}
.twentytwenty-after-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}
.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}
.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}
.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid #fff;
  border-radius: 1000px;
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  box-shadow: 0 3px 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  box-shadow: 0 -3px 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  box-shadow: 3px 0 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  box-shadow: -3px 0 0 #fff, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid #fff;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid #fff;
  bottom: 50%;
  margin-bottom: -17px;
}
