@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: #ff3700;
  --color-ivory: #ffffe6;
  --color-gray: #f3f3f3;
  --color-gray-50: #e9eaea;
  --color-gray-100: #9a9a9a;
  --color-gray-250: #7f7f7f;
  --color-gray-280: #777985;
  --color-gray-300: #636363;
  --color-gray-400: #525252;
  --color-brand-smith: #009579;
  --rb25-gray: #9ba0a5;
  --rb25-black: #000528;
  --color-base: var(--color-black);
  --theme-primary: #ff3700;
  --theme-secondary: #ffffff;
  --easein-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

.c-search-activate-btn::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
}

/* stylelint-disable */
/* stylelint-enable */
/* =====================================================
* Base
* ================================================== */
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/* stylelint-disable */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* -----------------------------------------------------
 * Init
 * -------------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* normalize overwrite */
html {
  position: relative;
  min-height: 100%;
  font-family: "neue-frutiger-world", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-style: normal;
  background-color: var(--theme-primary);
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

figure {
  margin: 0;
}

a {
  text-decoration: none;
}

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

p {
  margin: 0;
}

dl {
  margin: 0;
}

dd {
  margin-left: 0;
}

button {
  padding: 0;
  border-style: none;
}

address {
  font-weight: 500;
  font-style: inherit;
}

/* =====================================================
* State
* ================================================== */
/* =====================================================
 * Module
 * ================================================== */
/* -----------------------------------------------------
 * Display
 * -------------------------------------------------- */
@media screen and (min-width: 1280px) {
  .u-hide-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-hide-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .u-hide-md {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .u-show-pc {
    display: block !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-show-sp {
    display: block !important;
  }
}

.u-show-br-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-show-br-sp {
    display: inline-block !important;
  }
}

.u-show-br-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .u-show-br-pc {
    display: inline-block !important;
  }
}

.u-brbr-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-brbr-sp {
    display: block !important;
    height: 1em;
  }
}

.u-no-side-padding {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.js-1stview-appearance-mask {
  -webkit-clip-path: inset(110% 0% -10% 0%);
          clip-path: inset(110% 0% -10% 0%);
}

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

/* -----------------------------------------------------
 * Text
 * -------------------------------------------------- */
/* font-family
---------------------------------------- */
.u-font-en {
  font-family: "neue-frutiger-world", sans-serif !important;
}

.u-font-ja {
  font-family: "neue-frutiger-world", "Noto Sans JP", sans-serif !important;
}

/* text-align
---------------------------------------- */
.u-al-left {
  text-align: left !important;
}

.u-al-center {
  text-align: center !important;
}

.u-al-right {
  text-align: right !important;
}

/* writing-mode
---------------------------------------- */
.u-wm-rl {
  -webkit-writing-mode: vertical-rl !important;
      -ms-writing-mode: tb-rl !important;
          writing-mode: vertical-rl !important;
}

/* reveal text
---------------------------------------- */
.js-reveal-text,
.js-1stview-reveal-text {
  visibility: hidden;
}

.u-rtext-wrap {
  display: inline-block;
  overflow: visible;
  line-height: inherit;
  vertical-align: bottom;
  -webkit-clip-path: inset(0% 0% -20% 0%);
          clip-path: inset(0% 0% -20% 0%);
}

.u-rtext-char {
  display: inline-block;
  letter-spacing: 0;
}

/* bulk reveal text
---------------------------------------- */
.js-bulk-reveal-text,
.js-1stview-bulk-reveal-text {
  visibility: hidden;
}

.u-bulk-rtext-wrap {
  display: block;
  overflow: hidden;
}

.u-bulk-rtext-inner {
  display: block;
}

/**
 * ページにかかわらずカスタムブロックは呼び出される可能性があるので、
 * ブロックエディターに関連するスタイルはこちらに集約してください
 * ただし、カスタムブロックのうち、エディタ側のスタイルは個別に指定してください。
 * ※テーマ内部では common.css はロードしていません
 */
@media screen and (max-width: 768px) {
  .wp-block-flexible-table-block-table {
    max-width: 100%;
  }
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
    table-layout: auto;
    width: auto;
  }
  .wp-block-flexible-table-block-table th,
  .wp-block-flexible-table-block-table td {
    white-space: nowrap;
  }
}
.wp-block-lazyblock-gray-box {
  margin: 3.3333333333vw 0;
  padding: 2.2222222222vw 3.3333333333vw;
  background-color: rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1023px) {
  .wp-block-lazyblock-gray-box {
    margin: 5.3333333333vw 0;
    padding: 8.5333333333vw 8vw;
  }
}
.wp-block-lazyblock-gray-box .wp-block-paragraph {
  margin-top: 0;
}
.wp-block-lazyblock-gray-box .wp-block-paragraph:last-child {
  margin-bottom: 0;
}
.wp-block-lazyblock-gray-box a {
  text-decoration: underline;
}
.wp-block-lazyblock-gray-box a:link, .wp-block-lazyblock-gray-box a:visited {
  color: var(--color-black);
}
.wp-block-lazyblock-gray-box a:hover, .wp-block-lazyblock-gray-box a:active {
  color: var(--color-black);
}
.wp-block-lazyblock-gray-box a:link, .wp-block-lazyblock-gray-box a:visited {
  text-decoration: underline !important;
}

.p-bottom-post-list {
  padding: 4.4444444444vw 2.7777777778vw;
  padding-bottom: 17.3611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list {
    padding: 14.1333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list {
    padding-bottom: 45.6vw;
  }
}
.p-bottom-post-list h3 {
  margin: 0;
  font-size: 2.2222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list h3 {
    font-size: 5.3333333333vw;
  }
}
.p-bottom-post-list h3:not(:first-child) {
  margin-top: 7.5vw;
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list h3:not(:first-child) {
    margin-top: 22.6666666667vw;
  }
}
.p-bottom-post-list .posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5138888889vw 2.2222222222vw;
  margin-top: 2.4305555556vw;
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list .posts {
    grid-template-columns: 1fr;
    gap: 7.7333333333vw;
    margin-top: 7.2vw;
  }
}
.p-bottom-post-list .posts .p-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "fig fig" "link link" "date category";
  -webkit-column-gap: 1.0416666667vw;
     -moz-column-gap: 1.0416666667vw;
          column-gap: 1.0416666667vw;
  row-gap: 1.1111111111vw;
  max-width: 21.9444444444vw;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list .posts .p-post {
    max-width: unset;
  }
}
.p-bottom-post-list .posts .p-post:hover img {
  -webkit-transform: scale(115%) rotateZ(-5deg);
          transform: scale(115%) rotateZ(-5deg);
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list .posts .p-post:hover img {
    -webkit-transform: scale(100%) rotateZ(0deg);
            transform: scale(100%) rotateZ(0deg);
  }
}
.p-bottom-post-list .posts .p-post__eyecatch {
  overflow: hidden;
  grid-area: fig;
  aspect-ratio: 316/190;
  border-radius: 0.3472222222vw 0.3472222222vw 0.3472222222vw 0.3472222222vw;
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list .posts .p-post__eyecatch {
    border-radius: 1.3333333333vw 1.3333333333vw 1.3333333333vw 1.3333333333vw;
  }
}
.p-bottom-post-list .posts .p-post__eyecatch img {
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ), -webkit-transform 0.25s var(--easein-out-circ);
  -webkit-transform: scale(100%) rotateZ(0deg);
          transform: scale(100%) rotateZ(0deg);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-bottom-post-list .posts .p-post__link {
  grid-area: link;
  align-self: start;
  text-decoration: underline;
  font-weight: 700;
  text-decoration: none;
}
.p-bottom-post-list .posts .p-post__link:link, .p-bottom-post-list .posts .p-post__link:visited {
  color: var(--color-white);
}
.p-bottom-post-list .posts .p-post__link:hover, .p-bottom-post-list .posts .p-post__link:active {
  color: var(--theme-primary);
}
.p-bottom-post-list .posts .p-post__date {
  grid-area: date;
  color: var(--rb25-gray);
}
.p-bottom-post-list .posts .p-post__category {
  grid-area: category;
  color: var(--rb25-gray);
}
.p-bottom-post-list .posts .p-post__category > *::before {
  content: "#";
  margin-right: 0.2777777778vw;
}
.p-bottom-post-list .posts .p-post__category a {
  color: var(--rb25-gray);
}
.p-bottom-post-list .posts .p-post__category a:hover, .p-bottom-post-list .posts .p-post__category a:active {
  opacity: 1;
  color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .p-bottom-post-list .posts .p-post {
    grid-template-columns: -webkit-max-content auto 1fr;
    grid-template-columns: max-content auto 1fr;
    grid-template-areas: "fig link link" "fig date category";
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
    row-gap: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .p-bottom-post-list .posts .p-post__eyecatch {
    overflow: hidden;
    width: 26.1333333333vw;
    height: 26.1333333333vw;
  }
  .p-bottom-post-list .posts .p-post__eyecatch img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-bottom-post-list .posts .p-post__date {
    font-size: 3.4666666667vw;
  }
  .p-bottom-post-list .posts .p-post__category {
    font-size: 3.4666666667vw;
  }
}

.c-btn {
  --c-btn-bg: var(--color-black, #000);
  --c-btn-fg: var(--color-white, #fff);
  --c-btn-hover-bg: var(--theme-secondary, #fff);
  --c-btn-hover-fg: var(--theme-primary, #000);
  --c-btn-duration: 0.25s;
  --c-btn-easing: var(--easein-out-circ);
  --c-btn-icon: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
  cursor: pointer;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  gap: 12px;
  min-width: 12.5694444444vw;
  padding: 1.25vw 1.4583333333vw;
  border-radius: 0.5555555556vw;
  background: var(--c-btn-bg);
  color: var(--c-btn-fg);
  font-size: 1.0416666667vw;
  text-decoration: none;
  -webkit-appearance: none;
          appearance: none;
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .c-btn {
    min-width: 48.2666666667vw;
    padding: 4.8vw 5.6vw;
    border-radius: 2.1333333333vw;
    font-size: 4vw;
  }
}
.c-btn::before {
  content: "";
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  order: 1;
  width: 0.5555555556vw;
  background-color: var(--c-btn-fg);
  transition: background-color var(--c-btn-duration) var(--c-btn-easing);
  aspect-ratio: 1/1;
  -webkit-mask-image: var(--c-btn-icon);
          mask-image: var(--c-btn-icon);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 1023px) {
  .c-btn::before {
    width: 2.1333333333vw;
  }
}
.c-btn--external {
  --c-btn-icon: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right-top.svg');
}
.c-btn--left-arrow::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: var(--c-btn-hover-bg);
  transition: -webkit-transform var(--c-btn-duration) var(--c-btn-easing);
  transition: transform var(--c-btn-duration) var(--c-btn-easing);
  transition: transform var(--c-btn-duration) var(--c-btn-easing), -webkit-transform var(--c-btn-duration) var(--c-btn-easing);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  inset: 0;
}
.c-btn > span {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  z-index: 1;
  flex: 1;
  order: 0;
  transition: color var(--c-btn-duration) var(--c-btn-easing);
  font-weight: 500;
  letter-spacing: -0.02em;
}
@supports (text-box: trim-both cap alphabetic) {
  .c-btn > span {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
.c-btn--icon-left::before {
  order: 0;
}
.c-btn--icon-left > span {
  order: 1;
  text-align: right;
}
.c-btn--no-icon::before {
  display: none;
}
.c-btn--center {
  justify-content: center;
}
.c-btn--center > span {
  flex: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover::before, .c-btn:focus-visible::before {
    background-color: var(--c-btn-hover-fg);
  }
  .c-btn:hover::after, .c-btn:focus-visible::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-btn:hover > span, .c-btn:focus-visible > span {
    color: var(--c-btn-hover-fg);
  }
}
@media (hover: none) {
  .c-btn::before, .c-btn::after, .c-btn > span {
    transition-duration: 0s;
  }
  .c-btn:active::before, .c-btn:focus-visible::before {
    background-color: var(--c-btn-bg);
  }
  .c-btn:active::after, .c-btn:focus-visible::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-btn:active > span, .c-btn:focus-visible > span {
    color: var(--c-btn-bg);
  }
}
.c-btn:disabled, .c-btn[aria-disabled=true] {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}
.c-btn--primary {
  --c-btn-bg: var(--theme-primary);
  --c-btn-fg: var(--color-black);
  --c-btn-hover-bg: var(--color-black);
  --c-btn-hover-fg: var(--color-primary);
}
.c-btn--secondary {
  --c-btn-bg: var(--theme-secondary);
  --c-btn-fg: var(--color-black);
  --c-btn-hover-bg: var(--theme-primary);
  --c-btn-hover-fg: var(--theme-secondary);
}
.c-btn--dark-bg, .c-btn--black {
  --c-btn-bg: var(--color-white);
  --c-btn-fg: var(--color-black);
  --c-btn-hover-bg: var(--theme-primary);
  --c-btn-hover-fg: var(--color-white);
}
.c-btn--light-bg, .c-btn--white {
  --c-btn-bg: var(--color-black);
  --c-btn-fg: var(--color-white);
  --c-btn-hover-bg: var(--theme-primary);
  --c-btn-hover-fg: var(--color-white);
}
.c-btn--smith {
  --c-btn-bg: var(--color-brand-smith);
  --c-btn-fg: var(--color-white);
}
.c-btn--webshop {
  --c-btn-bg: var(--color-gray-400);
  --c-btn-fg: var(--color-white);
}

.c-journal-metadata {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-metadata {
    gap: 8.5333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.c-journal-metadata a {
  text-decoration: underline;
  text-decoration: none;
}
.c-journal-metadata a:link, .c-journal-metadata a:visited {
  color: var(--color-white);
}
.c-journal-metadata a:hover, .c-journal-metadata a:active {
  color: var(--theme-primary);
}
@media (hover: hover) {
  .c-journal-metadata a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
.c-journal-metadata__item h3 {
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  -webkit-column-gap: 0.5555555556vw;
     -moz-column-gap: 0.5555555556vw;
          column-gap: 0.5555555556vw;
  margin-bottom: 1.1111111111vw;
  padding-bottom: 1.1111111111vw;
  border-bottom: 1px solid var(--color-white);
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-metadata__item h3 {
    -webkit-column-gap: 2.1333333333vw;
       -moz-column-gap: 2.1333333333vw;
            column-gap: 2.1333333333vw;
    margin-bottom: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}
.c-journal-metadata__item h3::after {
  content: "";
  display: block;
  width: 0.8333333333vw;
  height: 0.5555555556vw;
  background-color: var(--color-white);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_chevron_down.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_chevron_down.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 1023px) {
  .c-journal-metadata__item h3::after {
    width: 3.2vw;
    height: 2.1333333333vw;
  }
}
.c-journal-metadata__item h3[aria-expanded=true]::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.c-journal-metadata__list {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 0.5555555556vw;
     -moz-column-gap: 0.5555555556vw;
          column-gap: 0.5555555556vw;
  row-gap: 0.8333333333vw;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .c-journal-metadata__list {
    -webkit-column-gap: 2.1333333333vw;
       -moz-column-gap: 2.1333333333vw;
            column-gap: 2.1333333333vw;
    row-gap: 3.2vw;
  }
}
.c-journal-metadata__list li {
  list-style: none;
}
.c-journal-metadata__list--categories li a::before {
  content: "#";
  margin-right: 0.2777777778vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-metadata__list--categories li a::before {
    margin-right: 1.0666666667vw;
  }
}
.c-journal-metadata__list--tags li a {
  display: inline-block;
  padding: 0.2777777778vw 0.6944444444vw;
  line-height: 1;
}

.c-copy-toast {
  position: fixed;
  z-index: 1000;
  padding: 0.5555555556vw 0.8333333333vw;
  background-color: var(--color-black);
  opacity: 0;
  color: var(--color-white);
  font-size: 0.9722222222vw;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.3s var(--easein-out-circ);
  -webkit-transform: translateX(-50%) translateY(calc(-100% - 20px));
          transform: translateX(-50%) translateY(calc(-100% - 20px));
  pointer-events: none;
  border-radius: 0.4166666667vw 0.4166666667vw 0.4166666667vw 0.4166666667vw;
}
@media screen and (max-width: 1023px) {
  .c-copy-toast {
    border-radius: 1.6vw 1.6vw 1.6vw 1.6vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-copy-toast {
    padding: 2.1333333333vw 3.2vw;
    font-size: 4.2666666667vw;
  }
}
.c-copy-toast.is-visible {
  opacity: 1;
}
.c-copy-toast::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 5px solid transparent;
  border-top-color: var(--color-black);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-faq-switch {
  display: flex;
  gap: 1.1805555556vw;
  margin-top: 4.7222222222vw;
}
@media screen and (max-width: 1023px) {
  .c-faq-switch {
    flex-wrap: wrap;
    gap: 3.7333333333vw;
    margin-top: 10.1333333333vw;
  }
}
.c-faq-switch .c-btn {
  display: block;
  flex: 1 1 0;
  text-align: center;
}
.c-faq-switch .c-btn.is-active {
  --c-btn-bg: var(--theme-primary);
  --c-btn-fg: var(--color-white);
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .c-faq-switch .c-btn {
    flex: 0 0 calc(50% - 3.7333333333vw);
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.c-faq-switch .c-btn::before {
  display: none;
}
.c-faq-switch .c-btn span {
  font-size: 1.3888888889vw;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1023px) {
  .c-faq-switch .c-btn span {
    font-size: 4.8vw;
  }
}
.c-faq-switch .c-btn span small {
  display: block;
  font-size: 0.9722222222vw;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 1023px) {
  .c-faq-switch .c-btn span small {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-faq-switch.u-sp-vertical-btns {
    flex-direction: column;
  }
  .c-faq-switch.u-sp-vertical-btns .c-btn {
    flex: 1;
    padding: 3.7333333333vw;
  }
  .c-faq-switch.u-sp-vertical-btns .c-btn span {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}

.c-faq {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  margin-top: 4.3055555556vw;
  padding: 6.5972222222vw 11.8055555556vw;
  padding-bottom: 6.9444444444vw;
  background-color: var(--color-white);
  color: var(--color-black);
}
@media screen and (max-width: 1023px) {
  .c-faq {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.c-faq:not(.is-active) {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-faq {
    padding: 12.8vw 6.4vw;
  }
}
.c-faq .c-sect-title {
  margin-bottom: 3.125vw;
  font-size: 2.4305555556vw;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .c-faq .c-sect-title {
    font-size: 5.8666666667vw;
  }
}
.c-faq-list {
  font-weight: 500;
}
.c-faq-list .c-faq-item .c-faq-q {
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: -webkit-max-content 1fr -webkit-max-content;
  grid-template-columns: max-content 1fr max-content;
  gap: 2.2222222222vw;
  padding: 2.2222222222vw 0;
  border-top: 1px solid var(--color-black);
  font-size: 1.3888888889vw;
  transition: color 0.25s var(--easein-out-circ), background-color 0.25s var(--easein-out-circ);
}
@media screen and (max-width: 1023px) {
  .c-faq-list .c-faq-item .c-faq-q {
    font-size: 4.2666666667vw;
  }
}
.c-faq-list .c-faq-item .c-faq-q .c-faq__marker {
  align-self: flex-start;
  font-size: 3.3333333333vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .c-faq-list .c-faq-item .c-faq-q .c-faq__marker {
    font-size: 6.4vw;
  }
}
.c-faq-list .c-faq-item .c-faq-q:hover {
  background-color: var(--theme-primary);
  color: var(--color-white);
}
.c-faq-list .c-faq-item .c-faq-q:hover::before {
  color: var(--color-white);
}
.c-faq-list .c-faq-item .c-faq-q:hover .c-faq-tgl {
  --toggle-icon-color: var(--color-white);
}
.c-faq-list .c-faq-item .c-faq-a {
  display: grid;
  align-items: start;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 2.2222222222vw;
  font-size: 1.0416666667vw;
}
.c-faq-list .c-faq-item .c-faq-a > span, .c-faq-list .c-faq-item .c-faq-a > div {
  padding-top: 1.0416666667vw;
}
@media screen and (max-width: 1023px) {
  .c-faq-list .c-faq-item .c-faq-a > span, .c-faq-list .c-faq-item .c-faq-a > div {
    padding-top: 2.6666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-faq-list .c-faq-item .c-faq-a {
    font-size: 3.7333333333vw;
  }
}
.c-faq-list .c-faq-item .c-faq-a .c-faq__marker {
  align-self: flex-start;
  color: var(--theme-primary);
  font-size: 3.3333333333vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .c-faq-list .c-faq-item .c-faq-a .c-faq__marker {
    font-size: 6.4vw;
  }
}
.c-faq-list .c-faq-item .c-faq-a > div {
  padding-bottom: 2.2222222222vw;
}
.c-faq-list .c-faq-tgl {
  --toggle-icon-color: var(--color-black);
  --toggle-icon-size: 18px;
  --toggle-icon-weight: 1px;
  --toggle-icon-duration: 0.35s;
  --toggle-icon-easing: var(--easein-out-circ);
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: var(--toggle-icon-size);
  height: var(--toggle-icon-size);
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
          appearance: none;
}
.c-faq-list .c-faq-tgl::before, .c-faq-list .c-faq-tgl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--toggle-icon-size);
  height: var(--toggle-icon-weight);
  border-radius: calc(var(--toggle-icon-weight) / 2);
  background-color: var(--toggle-icon-color);
  transition: rotate var(--toggle-icon-duration) var(--toggle-icon-easing), opacity var(--toggle-icon-duration) var(--toggle-icon-easing), background-color 0.25s var(--easein-out-circ);
  translate: -50% -50%;
}
.c-faq-list .c-faq-tgl::before {
  rotate: 0deg;
}
.c-faq-list .c-faq-tgl::after {
  rotate: -90deg;
}
.c-faq-list .c-faq-tgl.is-open::before {
  rotate: 180deg;
}
.c-faq-list .c-faq-tgl.is-open::after {
  rotate: 180deg;
}

.c-hgroup {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 1023px) {
  .c-hgroup {
    flex-direction: column;
    row-gap: 2.6666666667vw;
  }
}
.c-hgroup .c-sect-title {
  color: var(--theme-primary);
  font-size: 4.8611111111vw;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .c-hgroup .c-sect-title {
    font-size: 9.3333333333vw;
  }
}
.c-hgroup small,
.c-hgroup .c-description {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1023px) {
  .c-hgroup small,
  .c-hgroup .c-description {
    font-size: 3.4666666667vw;
  }
}

.c-contact-form {
  max-width: 55.5555555556vw;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .c-contact-form {
    max-width: unset;
  }
}
.c-contact-form--container {
  padding: 6.25vw 3.4722222222vw;
  background-color: var(--color-ivory);
}
.c-contact-form .p-hg {
  display: flex;
  flex-direction: column;
  gap: 1.8055555556vw;
  margin-bottom: 6.25vw;
}
@media screen and (max-width: 1023px) {
  .c-contact-form .p-hg {
    gap: 4.2666666667vw;
  }
}
.c-contact-form .p-hg .c-sect-title {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  color: var(--theme-primary);
  font-size: 4.8611111111vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -4%;
}
@supports (text-box: trim-both cap alphabetic) {
  .c-contact-form .p-hg .c-sect-title {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .c-contact-form .p-hg .c-sect-title {
    font-size: 9.3333333333vw;
  }
}
.c-contact-form .p-hg .c-sect-subtitle {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  font-size: 1.1111111111vw;
}
@supports (text-box: trim-both cap alphabetic) {
  .c-contact-form .p-hg .c-sect-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .c-contact-form .p-hg .c-sect-subtitle {
    font-size: 4.2666666667vw;
  }
}
.c-contact-form .c-form-content {
  flex-grow: 1;
}
.c-contact-form .c-form-content .c-form-selector {
  border-radius: 0.2777777778vw 0.2777777778vw 0.2777777778vw 0.2777777778vw;
  display: block;
  width: 100%;
  margin-top: 1.1111111111vw;
  padding: 1.25vw 1.0416666667vw;
  background-color: var(--color-gray-50);
}
@media screen and (max-width: 1023px) {
  .c-contact-form .c-form-content .c-form-selector {
    border-radius: 1.0666666667vw 1.0666666667vw 1.0666666667vw 1.0666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-contact-form .c-form-content .c-form-selector {
    margin-top: 4.2666666667vw;
  }
}
.c-contact-form .c-form-content .c-form-selector--container {
  margin-bottom: calcvwpc(30);
  padding-bottom: 3.4722222222vw;
  border-bottom: 1px solid var(--color-gray-300);
}
@media screen and (max-width: 1023px) {
  .c-contact-form .c-form-content .c-form-selector--container {
    padding-bottom: 13.3333333333vw;
  }
}
.c-contact-form .c-form-content .c-form-selector--label {
  font-weight: bold;
}
.c-contact-form .c-form-content .c-form-selector--label::after {
  content: "*";
  color: var(--theme-primary);
}
.c-contact-form .c-form-content iframe {
  width: 100%;
  min-height: 500px;
}

.c-journal-list {
  margin: 0;
  padding: 0 2.7777777778vw;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list {
    padding: 0;
  }
}
.c-journal-list__container {
  margin-top: 7.9861111111vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list__container {
    margin-top: 25.3333333333vw;
  }
}
.c-journal-list-filter {
  display: flex;
  margin: 0;
  padding: 0 0 2.7777777778vw 12.1527777778vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list-filter {
    gap: 10.6666666667vw;
    padding: 0 0 6.4vw 0;
    padding-left: 0;
  }
}
.c-journal-list-filter li {
  list-style: none;
  min-width: 12.1527777778vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list-filter li {
    min-width: none;
  }
}
.c-journal-list .c-sect-title {
  font-size: 1.7361111111vw;
  font-weight: 400;
  margin-bottom: 3.3333333333vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-sect-title {
    margin-bottom: 9.0666666667vw;
    font-size: 5.3333333333vw;
  }
}
.c-journal-list .p-filter {
  display: inline-block;
  position: relative;
}
.c-journal-list .p-filter::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.8333333333vw;
  height: 0.5555555556vw;
  background-color: var(--color-white);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* 矢印部分をクリックしてもセレクトボックスが開くようにする */
  pointer-events: none;
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_chevron_down.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_chevron_down.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .p-filter::after {
    width: 3.2vw;
    height: 2.1333333333vw;
  }
}
.c-journal-list .p-filter__select {
  cursor: pointer;
  width: 100%;
  padding: 0.6944444444vw 2.4305555556vw 0.6944444444vw 0;
  border: none;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}
.c-journal-list .p-filter__select:focus {
  outline: none;
}
.c-journal-list .p-filter__select option {
  background-color: var(--color-black);
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .c-journal-list .p-filter__select {
    padding: 0 9.3333333333vw 0 0;
  }
}
.c-journal-list-item-wrap {
  position: relative;
  list-style: none;
}
.c-journal-list-item {
  display: grid;
  grid-template-columns: 12.1527777778vw 12.1527777778vw minmax(0, 1fr) 50%;
  align-items: center;
  position: relative;
  padding: 2.2222222222vw 0 1.7361111111vw;
  border-top: 1px solid var(--color-white);
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .c-journal-list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4vw;
    padding-top: 5.3333333333vw;
    padding-bottom: 12vw;
  }
}
.c-journal-list .c-jl-date {
  display: grid;
  align-items: ecenter;
  grid-template-columns: repeat(2, auto) 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "day month sp" "day year sp";
  gap: 0.5555555556vw;
  width: 12.1527777778vw;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-date {
    -webkit-column-gap: 2.1333333333vw;
       -moz-column-gap: 2.1333333333vw;
            column-gap: 2.1333333333vw;
  }
}
.c-journal-list .c-jl-date-day {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  grid-area: day;
  font-size: 3.8888888889vw;
}
@supports (text-box: trim-both cap alphabetic) {
  .c-journal-list .c-jl-date-day {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-date-day {
    font-size: 13.3333333333vw;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
}
.c-journal-list .c-jl-date-month {
  align-self: flex-end;
  grid-area: month;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-date-month {
    font-size: 4.2666666667vw;
  }
}
.c-journal-list .c-jl-date-year {
  grid-area: year;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-date-year {
    font-size: 4.2666666667vw;
  }
}
.c-journal-list .c-jl-category {
  width: 12.1527777778vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-category {
    width: auto;
    color: var(--color-gray-100);
    font-size: 4vw;
  }
}
.c-journal-list .c-jl-category a {
  text-decoration: underline;
  text-decoration: none;
}
.c-journal-list .c-jl-category a:link, .c-journal-list .c-jl-category a:visited {
  color: var(--color-white);
}
.c-journal-list .c-jl-category a:hover, .c-journal-list .c-jl-category a:active {
  color: var(--theme-primary);
}
.c-journal-list .c-jl-category a::before {
  content: "#";
  padding-right: 0.2em;
}
.c-journal-list .c-jl-tags {
  font-size: 0.9722222222vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6944444444vw;
  padding-right: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-tags {
    color: var(--color-gray-100);
    font-size: 3.2vw;
    padding-right: 0;
  }
}
.c-journal-list .c-jl-tags a {
  text-decoration: underline;
  text-decoration: none;
  display: inline-block;
  padding: 0.2777777778vw 0.6944444444vw;
  border: 1px solid var(--color-white);
  border-radius: 100px;
}
.c-journal-list .c-jl-tags a:link, .c-journal-list .c-jl-tags a:visited {
  color: var(--color-white);
}
.c-journal-list .c-jl-tags a:hover, .c-journal-list .c-jl-tags a:active {
  color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-tags a {
    padding: 1.0666666667vw 2.6666666667vw;
    border-color: var(--color-gray-100);
  }
}
.c-journal-list .c-jl-title {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  -webkit-column-gap: 2.2222222222vw;
     -moz-column-gap: 2.2222222222vw;
          column-gap: 2.2222222222vw;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-title {
    display: block;
    width: 100%;
    margin-top: 4.5333333333vw;
    font-size: 3.7333333333vw;
  }
  .c-journal-list .c-jl-title:active {
    color: var(--theme-primary);
  }
}
.c-journal-list .c-jl-title::after {
  content: "";
  display: block;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  background-color: var(--color-white);
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-title::after {
    margin-top: 7.2vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.c-journal-list .c-jl-title:hover::after {
  background-color: var(--theme-primary);
}
.c-journal-list .c-jl-title a {
  text-decoration: underline;
  text-decoration: none;
}
.c-journal-list .c-jl-title a:link, .c-journal-list .c-jl-title a:visited {
  color: var(--color-white);
}
.c-journal-list .c-jl-title a:hover, .c-journal-list .c-jl-title a:active {
  color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .c-journal-list .c-jl-title a {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-journal-list-item {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr -webkit-max-content;
    grid-template-columns: max-content 1fr max-content;
    grid-template-areas: "dt cat arw" "ttl ttl arw" "tag tag arw";
    -webkit-column-gap: 3.2vw;
       -moz-column-gap: 3.2vw;
            column-gap: 3.2vw;
    row-gap: 5.8666666667vw;
    padding: 5.8666666667vw 0;
  }
  .c-journal-list--dynamic .c-journal-list-item .c-jl-date {
    grid-area: dt;
  }
  .c-journal-list--dynamic .c-journal-list-item::after {
    grid-area: arw;
    content: "";
    display: block;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    background-color: var(--color-white);
    -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
            mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    align-self: center;
  }
}
.c-journal-list--dynamic .c-jl-date {
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-jl-date {
    font-size: 3.7333333333vw;
    align-self: center;
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-jl-category {
    grid-area: cat;
    font-size: 3.4666666667vw;
    align-self: center;
  }
}
@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-jl-tags {
    gap: 1.3333333333vw;
    grid-area: tag;
    padding: 1.0666666667vw 2.6666666667vw;
  }
}
.c-journal-list--dynamic .c-jl-tags a {
  text-decoration: underline;
  text-decoration: none;
}
.c-journal-list--dynamic .c-jl-tags a:link, .c-journal-list--dynamic .c-jl-tags a:visited {
  color: var(--color-gray-100);
}
.c-journal-list--dynamic .c-jl-tags a:hover, .c-journal-list--dynamic .c-jl-tags a:active {
  color: var(--theme-primary);
}
.c-journal-list--dynamic .c-jl-tags a:hover {
  border-color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-jl-title {
    margin-top: 0;
    grid-area: ttl;
  }
}
@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-jl-title a {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .c-journal-list--dynamic .c-jl-title::after {
    display: none;
  }
}

.c-journal-list .c-jl-eyecatch {
  --eyecatch-color: var(--theme-primary);
  display: grid;
  visibility: hidden;
  position: absolute;
  z-index: 30;
  top: 50%;
  width: 26.7361111111vw;
  height: 16.5277777778vw;
  background-image: linear-gradient(var(--eyecatch-color, transparent), var(--eyecatch-color, transparent)), var(--eyecatch);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  place-items: center;
  background-blend-mode: multiply, normal;
  pointer-events: none;
}
.c-journal-list .c-jl-eyecatch .c-btn {
  pointer-events: auto;
}

.c-loading-spinner {
  display: inline-block;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 5px solid var(--theme-secondary);
  border-bottom-color: var(--theme-primary);
  border-radius: 50%;
  -webkit-animation: loading-spinner-animation 1s linear infinite;
          animation: loading-spinner-animation 1s linear infinite;
}

@-webkit-keyframes loading-spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading-spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-inpage-nav {
  --link-color: var(--color-black);
  display: flex;
  gap: 2.7777777778vw;
  border-top: clamp(2px, 0.1388888889vw, 3px) solid var(--link-color);
}
@media screen and (max-width: 1023px) {
  .c-inpage-nav {
    flex-direction: column;
    border-top-width: clamp(2px, 0.5333333333vw, 3px);
  }
}
.c-inpage-nav a {
  text-decoration: underline;
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 1.1111111111vw 0;
  border-bottom: 0.0694444444vw solid var(--link-color);
  text-decoration: none;
}
.c-inpage-nav a:link, .c-inpage-nav a:visited {
  color: var(--theme-black);
}
.c-inpage-nav a:hover, .c-inpage-nav a:active {
  color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .c-inpage-nav a {
    padding: 4.5333333333vw 0;
  }
}
.c-inpage-nav a::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.5555555556vw;
  margin-right: 0.8333333333vw;
  margin-left: auto;
  background-color: var(--link-color);
  aspect-ratio: 1/1;
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-down.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-down.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .c-inpage-nav a::after {
    width: 2.1333333333vw;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6666666667vw;
  margin: 0;
  padding: 0;
  font-size: 1.6666666667vw;
}
@media screen and (max-width: 1023px) {
  .c-pagination {
    flex-wrap: wrap;
    -webkit-column-gap: 4.8vw;
       -moz-column-gap: 4.8vw;
            column-gap: 4.8vw;
    row-gap: 6.4vw;
    font-size: 4.8vw;
  }
  .c-pagination::after {
    content: "";
    flex: 0 0 100%;
    order: 1;
  }
}
.c-pagination__item {
  list-style: none;
}
.c-pagination__item--prev .c-pagination__link, .c-pagination__item--next .c-pagination__link {
  display: grid;
  place-items: center;
  border-radius: 0.5555555556vw 0.5555555556vw 0.5555555556vw 0.5555555556vw;
  width: 2.5694444444vw;
  height: 2.9166666667vw;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .c-pagination__item--prev .c-pagination__link, .c-pagination__item--next .c-pagination__link {
    border-radius: 2.1333333333vw 2.1333333333vw 2.1333333333vw 2.1333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .c-pagination__item--prev .c-pagination__link, .c-pagination__item--next .c-pagination__link {
    width: 12.8vw;
    height: 14.4vw;
  }
}
.c-pagination__item--prev span.c-pagination__link, .c-pagination__item--next span.c-pagination__link {
  background-color: transparent;
}
@media screen and (max-width: 1023px) {
  .c-pagination__item--prev, .c-pagination__item--next {
    order: 2;
  }
}
.c-pagination__item--prev {
  margin-right: 1.6666666667vw;
}
@media screen and (max-width: 1023px) {
  .c-pagination__item--prev {
    margin-right: 0;
  }
}
.c-pagination__item--next {
  margin-left: 1.6666666667vw;
}
@media screen and (max-width: 1023px) {
  .c-pagination__item--next {
    margin-left: 0;
  }
}
.c-pagination__link {
  text-decoration: underline;
  text-decoration: none;
}
.c-pagination__link:link, .c-pagination__link:visited {
  color: var(--color-white);
}
.c-pagination__link:hover, .c-pagination__link:active {
  color: var(--theme-primary);
}
.c-pagination__link.is-current {
  color: var(--theme-primary);
}
.c-pagination.u-theme--light .is-current {
  color: var(--color-black);
}

.c-peel-img-container {
  display: grid;
}
.c-peel-img-container__top, .c-peel-img-container__bottom {
  grid-area: 1/1;
}
.c-peel-img-container__top img, .c-peel-img-container__bottom img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-peel-img-container__top {
  -webkit-clip-path: inset(0% 0 0 0);
          clip-path: inset(0% 0 0 0);
}

.c-preloader {
  --preloader-remaining-loads: 0%;
  display: grid;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  place-items: center;
  visibility: hidden;
}
.c-preloader__logo {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.c-preloader__logo-wrap {
  overflow: hidden;
}
.c-preloader::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/themes/delfonics2026/assets/img/common/progress.svg');
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 100% auto;
  -webkit-transform: translateY(var(--preloader-remaining-loads));
          transform: translateY(var(--preloader-remaining-loads));
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
.c-preloader__curtain {
  background-image: url('/wp-content/themes/delfonics2026/assets/img/common/wall.webp');
  background-position: left top;
  background-size: 100% auto;
  background-blend-mode: multiply;
  position: fixed;
  z-index: 700;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-primary);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 1023px) {
  .c-preloader__curtain {
    background-image: url('/wp-content/themes/delfonics2026/assets/img/common/wall-sp.webp');
  }
}

:root {
  --cal-theme-sat: #006dc1;
  --cal-theme-sun: #ff3700;
  --cal-theme-cell-border: #d9d9d9;
  --cal-theme-decoration-underline-blue: #4a85d1;
  --cal-theme-decoration-highlight-blue: #c8e0ff;
  --cal-theme-decoration-highlight-pink: #ffc7e0;
  --cal-theme-decoration-highlight-green: #c6ff54;
  --cal-theme-decoration-bullet: #ff0056;
  --cal-theme-category-other: #e0e0e0;
  --cal-theme-category-shop: #ff0056;
  --cal-theme-sp-weekselect-inactive: #535353;
}

.c-schedule-calendar {
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  display: grid;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 1023px) {
  .c-schedule-calendar {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.c-schedule-calendar-slider .splide__slide {
  height: auto;
}
.c-schedule-calendar__grid {
  display: flex;
  flex-direction: column;
  gap: 0.46875vw;
}
.c-schedule-calendar__head {
  display: flex;
  gap: 0.7291666667vw;
}
.c-schedule-calendar__month-num {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  font-size: max(100px, 5.2083333333vw);
  font-weight: 500;
  line-height: 1;
}
@supports (text-box: trim-both cap alphabetic) {
  .c-schedule-calendar__month-num {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
.c-schedule-calendar__month-info {
  display: flex;
  flex-direction: column;
  align-self: end;
}
.c-schedule-calendar__month-name {
  font-size: max(16px, 0.8333333333vw);
  font-weight: 600;
}
.c-schedule-calendar__month-year {
  font-size: max(16px, 0.8333333333vw);
  font-weight: 400;
}
.c-schedule-calendar__row {
  display: flex;
  gap: 0.46875vw;
}
.c-schedule-calendar__cell {
  flex: 1;
  min-height: 5.2em;
  padding: 0.4166666667vw;
  border-top: 1px solid var(--cal-theme-cell-border);
  border-left: 1px solid var(--cal-theme-cell-border);
}
.c-schedule-calendar__cell:has(.c-schedule-calendar__event.is-active) {
  z-index: 10;
}
.c-schedule-calendar__cell--header {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 0;
  border: none;
  min-height: 4.5em;
}
.c-schedule-calendar__cell--saturday {
  color: var(--cal-theme-sat);
}
.c-schedule-calendar__cell--sunday {
  color: var(--cal-theme-sun);
}
.c-schedule-calendar__day-ja {
  font-size: max(14px, 0.7291666667vw);
  font-weight: 500;
}
.c-schedule-calendar__day-en {
  font-size: max(12px, 0.625vw);
  font-weight: 600;
}
.c-schedule-calendar__date {
  font-size: max(14px, 1.25vw);
  font-weight: 600;
  line-height: 1;
}
.c-schedule-calendar__events {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-schedule-calendar__event {
  position: relative;
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  font-size: max(10px, 0.625vw);
}
.c-schedule-calendar__event:has(img) {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.c-schedule-calendar__event:has(img)::before, .c-schedule-calendar__event:has(img)::after {
  display: none;
}
.c-schedule-calendar__event img {
  display: block;
  height: auto;
}
.c-schedule-calendar__event--underline-blue {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  font-size: max(10px, 0.625vw);
}
.c-schedule-calendar__event--underline-blue::-ms-clear {
  display: none;
}
.c-schedule-calendar__event--underline-blue::-ms-reveal {
  display: none;
}
.c-schedule-calendar__event--underline-blue::-ms-expand {
  display: none;
}
.c-schedule-calendar__event--underline-blue::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1%;
  width: 102%;
  background-color: var(--cal-theme-decoration-underline-blue);
  -webkit-mask-image: url("/wp-content/themes/delfonics2026/assets/img/common/cal_underline_blue.svg");
          mask-image: url("/wp-content/themes/delfonics2026/assets/img/common/cal_underline_blue.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  aspect-ratio: 86/4;
}
@media screen and (max-width: 1023px) {
  .c-schedule-calendar__event--underline-blue::after {
    bottom: -1.6vw;
  }
}
.c-schedule-calendar__event--highlight-blue {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  font-size: max(10px, 0.625vw);
}
.c-schedule-calendar__event--highlight-blue::-ms-clear {
  display: none;
}
.c-schedule-calendar__event--highlight-blue::-ms-reveal {
  display: none;
}
.c-schedule-calendar__event--highlight-blue::-ms-expand {
  display: none;
}
.c-schedule-calendar__event--highlight-blue::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -1%;
  width: 103%;
  height: 50%;
  background-color: var(--cal-theme-decoration-highlight-blue);
}
.c-schedule-calendar__event--highlight-pink {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  font-size: max(10px, 0.625vw);
}
.c-schedule-calendar__event--highlight-pink::-ms-clear {
  display: none;
}
.c-schedule-calendar__event--highlight-pink::-ms-reveal {
  display: none;
}
.c-schedule-calendar__event--highlight-pink::-ms-expand {
  display: none;
}
.c-schedule-calendar__event--highlight-pink::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -1%;
  width: 103%;
  height: 50%;
  background-color: var(--cal-theme-decoration-highlight-pink);
}
.c-schedule-calendar__event--highlight-green {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  font-size: max(10px, 0.625vw);
}
.c-schedule-calendar__event--highlight-green::-ms-clear {
  display: none;
}
.c-schedule-calendar__event--highlight-green::-ms-reveal {
  display: none;
}
.c-schedule-calendar__event--highlight-green::-ms-expand {
  display: none;
}
.c-schedule-calendar__event--highlight-green::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -1%;
  width: 103%;
  height: 50%;
  background-color: var(--cal-theme-decoration-highlight-green);
}
.c-schedule-calendar__event--bullet {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  padding-left: 1em;
  font-size: max(10px, 0.625vw);
}
.c-schedule-calendar__event--bullet::-ms-clear {
  display: none;
}
.c-schedule-calendar__event--bullet::-ms-reveal {
  display: none;
}
.c-schedule-calendar__event--bullet::-ms-expand {
  display: none;
}
.c-schedule-calendar__event--bullet::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 0.625vw;
  height: 0.625vw;
  background-color: var(--cal-theme-decoration-bullet);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_calendar_category_asterisk.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_calendar_category_asterisk.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-schedule-calendar__popover {
  display: grid;
  position: absolute;
  z-index: 50;
  bottom: 100%;
  left: 100%;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  grid-template-areas: "category date" "title title";
  width: 100vw;
  max-width: 15.625vw;
  padding: 0.7291666667vw;
  background-color: var(--theme-primary);
  color: var(--color-black);
  border-radius: 0.5555555556vw 0.5555555556vw 0.5555555556vw 0.5555555556vw;
}
@media screen and (max-width: 1023px) {
  .c-schedule-calendar__popover {
    border-radius: 2.1333333333vw 2.1333333333vw 2.1333333333vw 2.1333333333vw;
  }
}
.c-schedule-calendar__popover-category {
  grid-area: category;
  justify-self: flex-start;
  color: var(--color-black);
}
.c-schedule-calendar__popover-date {
  grid-area: date;
  font-size: max(16px, 0.8333333333vw);
  font-weight: bold;
}
.c-schedule-calendar__popover-title {
  grid-area: title;
  color: var(--color-white);
  justify-self: flex-start;
}
.c-schedule-calendar__popover .c-schedule-calendar__popover-title {
  font-weight: 700;
}
.c-schedule-calendar__popover--new-product {
  background-color: var(--cal-theme-decoration-highlight-blue);
}
.c-schedule-calendar__popover--new-product .c-schedule-calendar__popover-title {
  color: var(--color-black);
}
.c-schedule-calendar__popover--delfonics-event {
  background-color: var(--cal-theme-decoration-highlight-pink);
}
.c-schedule-calendar__popover--delfonics-event .c-schedule-calendar__popover-title {
  color: var(--color-black);
}
.c-schedule-calendar__popover--other {
  background-color: var(--cal-theme-category-other);
}
.c-schedule-calendar__popover--other .c-schedule-calendar__popover-title {
  color: var(--color-black);
}
.c-schedule-calendar__popover--campaign {
  background-color: var(--cal-theme-decoration-highlight-green);
}
.c-schedule-calendar__popover--campaign .c-schedule-calendar__popover-title {
  color: var(--color-black);
}
.c-schedule-calendar__popover--event {
  background-color: var(--cal-theme-decoration-bullet);
  color: var(--color-white);
}
.c-schedule-calendar__popover--shop {
  background-color: var(--cal-theme-category-shop);
  color: var(--color-white);
}
.c-schedule-calendar-sp {
  margin-top: 9.3333333333vw;
  color: white;
}
.c-schedule-calendar-sp__slider {
  gap: 4.2666666667vw;
}
.c-schedule-calendar-sp__week-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--cal-theme-sp-weekselect-inactive);
}
.c-schedule-calendar-sp__week-slide.is-active {
  color: var(--color-white);
}
.c-schedule-calendar-sp__week-month-num {
  font-size: max(37px, 9.8666666667vw);
  line-height: 1;
}
.c-schedule-calendar-sp__week-month-name {
  margin-top: 1.6vw;
  font-size: max(10px, 2.6666666667vw);
  line-height: 1;
}
.c-schedule-calendar-sp__week-label {
  margin-top: 2.9333333333vw;
  font-size: max(14px, 3.7333333333vw);
}
.c-schedule-calendar-sp__list-container {
  margin-top: 9.0666666667vw;
  padding: 4.5333333333vw 4.5333333333vw 7.2vw;
  background-color: var(--color-white);
  color: black;
  border-radius: 0.6944444444vw 0.6944444444vw 0.6944444444vw 0.6944444444vw;
}
@media screen and (max-width: 1023px) {
  .c-schedule-calendar-sp__list-container {
    border-radius: 2.6666666667vw 2.6666666667vw 2.6666666667vw 2.6666666667vw;
  }
}
.c-schedule-calendar-sp__list {
  margin: 0;
  padding-left: 0;
}
.c-schedule-calendar-sp__row {
  display: flex;
  list-style: none;
  align-items: start;
  gap: 3.2vw;
  padding: 3.2vw 0;
  border-bottom: 1px solid var(--color-gray-50);
}
.c-schedule-calendar-sp__day-num {
  width: 6.6666666667vw;
  font-size: max(24px, 6.4vw);
  line-height: 1;
}
.c-schedule-calendar-sp__day-name {
  display: flex;
  align-items: center;
  gap: 0.8vw;
}
.c-schedule-calendar-sp__day-ja {
  font-size: max(14px, 3.7333333333vw);
  font-weight: 500;
}
.c-schedule-calendar-sp__day-en {
  font-size: max(10px, 2.6666666667vw);
  font-weight: 600;
}
.c-schedule-calendar-sp__day--saturday {
  color: var(--cal-theme-sat);
}
.c-schedule-calendar-sp__day--sunday {
  color: var(--cal-theme-sun);
}
.c-schedule-calendar-sp__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 4.8vw;
}
.c-schedule-calendar-sp__event {
  line-height: 1;
  margin-bottom: 4.2666666667vw;
}
.c-schedule-calendar-sp__event-keyword {
  display: inline-block;
  font-size: max(15px, 4vw);
  line-height: 1;
}
.c-schedule-calendar-sp__event-keyword:has(img) {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.c-schedule-calendar-sp__event-keyword:has(img)::before, .c-schedule-calendar-sp__event-keyword:has(img)::after {
  display: none;
}
.c-schedule-calendar-sp__event-keyword img {
  display: block;
  height: auto;
}
.c-schedule-calendar-sp__event-keyword--underline-blue {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}
.c-schedule-calendar-sp__event-keyword--underline-blue::-ms-clear {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--underline-blue::-ms-reveal {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--underline-blue::-ms-expand {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--underline-blue::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1%;
  width: 102%;
  background-color: var(--cal-theme-decoration-underline-blue);
  -webkit-mask-image: url("/wp-content/themes/delfonics2026/assets/img/common/cal_underline_blue.svg");
          mask-image: url("/wp-content/themes/delfonics2026/assets/img/common/cal_underline_blue.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  aspect-ratio: 86/4;
}
@media screen and (max-width: 1023px) {
  .c-schedule-calendar-sp__event-keyword--underline-blue::after {
    bottom: -1.6vw;
  }
}
.c-schedule-calendar-sp__event-keyword--highlight-blue {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}
.c-schedule-calendar-sp__event-keyword--highlight-blue::-ms-clear {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-blue::-ms-reveal {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-blue::-ms-expand {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-blue::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -1%;
  width: 103%;
  height: 50%;
  background-color: var(--cal-theme-decoration-highlight-blue);
}
.c-schedule-calendar-sp__event-keyword--highlight-pink {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}
.c-schedule-calendar-sp__event-keyword--highlight-pink::-ms-clear {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-pink::-ms-reveal {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-pink::-ms-expand {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-pink::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -1%;
  width: 103%;
  height: 50%;
  background-color: var(--cal-theme-decoration-highlight-pink);
}
.c-schedule-calendar-sp__event-keyword--highlight-green {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}
.c-schedule-calendar-sp__event-keyword--highlight-green::-ms-clear {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-green::-ms-reveal {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-green::-ms-expand {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--highlight-green::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -1%;
  width: 103%;
  height: 50%;
  background-color: var(--cal-theme-decoration-highlight-green);
}
.c-schedule-calendar-sp__event-keyword--bullet {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.c-schedule-calendar-sp__event-keyword--bullet::-ms-clear {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--bullet::-ms-reveal {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--bullet::-ms-expand {
  display: none;
}
.c-schedule-calendar-sp__event-keyword--bullet::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 0.625vw;
  height: 0.625vw;
  background-color: var(--cal-theme-decoration-bullet);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_calendar_category_asterisk.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_calendar_category_asterisk.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-schedule-calendar-sp__event-title {
  display: block;
  margin-top: 2.4vw;
  color: var(--color-black);
  line-height: 1.2;
  font-size: max(10px, 2.6666666667vw);
  font-weight: 400;
}
.c-schedule-calendar-sp__slider {
  display: flex;
}
.c-schedule-calendar-sp__slider .splide__track {
  flex: 1;
  align-self: center;
  order: 0;
}
.c-schedule-calendar-sp__slider .splide__arrows {
  display: contents;
}
.c-schedule-calendar-sp__slider .splide__arrow {
  position: static;
  flex-shrink: 0;
  align-self: stretch;
  height: auto;
  border-radius: 2.1333333333vw;
  background-color: var(--color-white);
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  touch-action: manipulation;
}
.c-schedule-calendar-sp__slider .splide__arrow--prev {
  order: -1;
}
.c-schedule-calendar-sp__slider .splide__arrow--next {
  order: 1;
}

/* =====================================================
 * Layout
 * ================================================== */
/* -----------------------------------------------------
 * footer
 * -------------------------------------------------- */
.l-pagefoot-contact {
  max-width: 74.4444444444vw;
  padding: 2.0833333333vw 0;
  padding-bottom: 3.4722222222vw;
  background-color: var(--theme-secondary);
  border-radius: 1.3888888889vw 1.3888888889vw 0 0;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact {
    border-radius: 5.3333333333vw 5.3333333333vw 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact {
    max-width: unset;
    padding: 6.4vw 0;
    padding-bottom: 24.5333333333vw;
  }
}
.l-pagefoot-contact h3 {
  padding: 0 2.7777777778vw;
  color: var(--theme-primary);
  font-size: 1.3888888889vw;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact h3 {
    padding: 0 5.3333333333vw;
    font-size: 4.8vw;
  }
}
.l-pagefoot-contact .c-pfc-marquee {
  display: flex;
  overflow: hidden;
  gap: 1.6666666667vw;
  margin-top: 6.8055555556vw;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-marquee {
    gap: 6.4vw;
  }
}
.l-pagefoot-contact .c-pfc-marquee-inner {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  -webkit-column-gap: 1.6666666667vw;
     -moz-column-gap: 1.6666666667vw;
          column-gap: 1.6666666667vw;
  font-size: 7.0833333333vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-marquee-inner {
    -webkit-column-gap: 6.4vw;
       -moz-column-gap: 6.4vw;
            column-gap: 6.4vw;
    font-size: 12.8vw;
  }
}
.l-pagefoot-contact .c-pfc-marquee-inner > span {
  margin-top: -0;
  margin-bottom: -0;
  padding-block: 0.05em;
}
@supports (text-box: trim-both cap alphabetic) {
  .l-pagefoot-contact .c-pfc-marquee-inner > span {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
.l-pagefoot-contact .c-pfc-marquee-inner::after {
  --bar-w: 4.4444444444vw;
  --bar-h: 0.2777777778vw;
  content: "";
  flex-shrink: 0;
  width: var(--bar-w);
  height: var(--bar-h);
  background-color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-marquee-inner::after {
    --bar-w: 8.5333333333vw;
    --bar-h: 0.8vw;
    --tri-size: 9.6vw;
  }
}
.l-pagefoot-contact .c-pfc-contacts {
  display: flex;
  gap: 2.0833333333vw;
  margin-top: 2.0833333333vw;
  padding: 0 2.0833333333vw;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-contacts {
    flex-direction: column;
    padding: 0 5.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}
.l-pagefoot-contact .c-pfc-contacts .c-item {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  display: flex;
  position: relative;
  overflow: hidden;
  flex: 1;
  flex-direction: column;
  padding: 1.0416666667vw;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
  transition: background-color 0.25s var(--easein-out-circ);
  aspect-ratio: 317/410;
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-contacts .c-item {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-contacts .c-item {
    flex: none;
    height: 50.6666666667vw;
    padding: 4vw;
    aspect-ratio: unset;
  }
}
.l-pagefoot-contact .c-pfc-contacts .c-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 11.9444444444vw auto;
  opacity: 0;
  transition: opacity 0.25s var(--easein-out-circ);
  inset: 0;
}
.l-pagefoot-contact .c-pfc-contacts .c-item:hover {
  background-color: var(--theme-primary);
}
.l-pagefoot-contact .c-pfc-contacts .c-item:hover::before {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-contacts .c-item {
    transition: none;
  }
  .l-pagefoot-contact .c-pfc-contacts .c-item:hover {
    background-color: var(--color-black);
  }
  .l-pagefoot-contact .c-pfc-contacts .c-item:hover::before {
    opacity: 0;
  }
}
.l-pagefoot-contact .c-pfc-contacts .c-item h4 {
  font-size: 2.2222222222vw;
  font-weight: normal;
  line-height: 1;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-contacts .c-item h4 {
    font-size: 8.5333333333vw;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.l-pagefoot-contact .c-pfc-contacts .c-item .c-label-text {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  margin-top: auto;
  font-size: 0.9722222222vw;
  font-size: medium;
}
@media screen and (max-width: 1023px) {
  .l-pagefoot-contact .c-pfc-contacts .c-item .c-label-text {
    font-size: 3.7333333333vw;
  }
}
.l-pagefoot-contact .c-pfc-contacts .c-item .c-label-text::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.l-pagefoot-contact .c-pfc-contacts .c-customer::before {
  background-image: url('/wp-content/themes/delfonics2026/assets/img/common/anim_common_footer_contact_customer_hover.apng');
}
.l-pagefoot-contact .c-pfc-contacts .c-recruit::before {
  background-image: url('/wp-content/themes/delfonics2026/assets/img/common/anim_common_footer_contact_recruit_hover.apng');
}
.l-pagefoot-contact .c-pfc-contacts .c-business::before {
  background-image: url('/wp-content/themes/delfonics2026/assets/img/common/anim_common_footer_contact_business_hover.apng');
}

.l-footer {
  display: grid;
  grid-template-columns: 1fr 2.7777777778vw;
  grid-template-areas: "ttl ttl" "nav copyright" "f-txt f-txt";
  margin-top: -1.3888888889vw;
  padding-top: 4.8611111111vw;
  padding-bottom: calc(2.0833333333vw + env(safe-area-inset-bottom, 0px));
  background-color: var(--color-black);
  border-radius: 1.3888888889vw 1.3888888889vw 0 0;
}
@media screen and (max-width: 1023px) {
  .l-footer {
    border-radius: 5.3333333333vw 5.3333333333vw 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer {
    grid-template-columns: 1fr 5.3333333333vw;
    margin-top: -5.3333333333vw;
    padding: 6.4vw 5.3333333333vw 4vw;
    padding-bottom: calc(4vw + env(safe-area-inset-bottom, 0px));
  }
}
.l-footer__section-title {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  grid-area: ttl;
  padding: 0 2.7777777778vw;
  color: var(--theme-primary);
  font-size: 1.3888888889vw;
  font-weight: 500;
}
@supports (text-box: trim-both cap alphabetic) {
  .l-footer__section-title {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__section-title {
    padding: 0 0 14.9333333333vw;
    font-size: 4.8vw;
  }
}
.l-footer .l-footer-nav-container {
  display: flex;
  grid-area: nav;
  gap: 2.7777777778vw;
  padding: 0 2.7777777778vw;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer-nav-container {
    display: grid;
    align-items: self-start;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "primary secondary" "primary other";
    gap: 0 3.7333333333vw;
    padding: 0;
  }
}
.l-footer .l-footer-nav-container .l-footer-nav-group {
  width: 21.3194444444vw;
  font-size: 1.1111111111vw;
  letter-spacing: 4%;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer-nav-container .l-footer-nav-group {
    width: auto;
    font-size: 3.7333333333vw;
  }
}
.l-footer .l-footer-nav-container .l-footer-nav-group ul {
  padding-left: 0;
}
.l-footer .l-footer-nav-container .l-footer-nav-group.c-primary {
  grid-area: primary;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer-nav-container .l-footer-nav-group.c-primary {
    font-size: 4.2666666667vw;
  }
  .l-footer .l-footer-nav-container .l-footer-nav-group.c-primary ul {
    gap: 8.5333333333vw;
  }
  .l-footer .l-footer-nav-container .l-footer-nav-group.c-primary ul a {
    margin-top: -0.1em;
    margin-bottom: -0.1em;
  }
  @supports (text-box: trim-both cap alphabetic) {
    .l-footer .l-footer-nav-container .l-footer-nav-group.c-primary ul a {
      margin-top: 0;
      margin-bottom: 0;
      text-box: trim-both cap alphabetic;
    }
  }
}
.l-footer .l-footer-nav-container .l-footer-nav-group.c-secondary {
  grid-area: secondary;
}
.l-footer .l-footer-nav-container .l-footer-nav-group.c-other {
  grid-area: other;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer-nav-container .l-footer-nav-group.c-other {
    align-self: end;
  }
}
.l-footer .l-footer-nav-container .l-footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer-nav-container .l-footer-nav-group ul {
    gap: 5.8666666667vw;
    margin-top: 0;
  }
}
.l-footer .l-footer-nav-container .l-footer-nav-group a {
  text-decoration: underline;
  text-decoration: none;
}
.l-footer .l-footer-nav-container .l-footer-nav-group a:link, .l-footer .l-footer-nav-container .l-footer-nav-group a:visited {
  color: var(--color-white);
}
.l-footer .l-footer-nav-container .l-footer-nav-group a:hover, .l-footer .l-footer-nav-container .l-footer-nav-group a:active {
  color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer-nav-container .l-footer-nav-group a {
    display: block;
  }
}
.l-footer .c-footer-txt-delfonics {
  grid-area: f-txt;
  width: 100%;
  height: auto;
  padding: 2.7777777778vw;
  padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .l-footer .c-footer-txt-delfonics {
    margin-top: 14.9333333333vw;
    padding: 0;
  }
}
.l-footer .c-copyright {
  display: flex;
  flex-wrap: wrap;
  align-content: baseline;
  grid-area: copyright;
  gap: 0.5em;
  padding-top: 2.7777777778vw;
  color: var(--color-white);
  font-size: 0.8333333333vw;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: sideways;
}
@media screen and (max-width: 1023px) {
  .l-footer .c-copyright {
    font-size: 2.6666666667vw;
  }
}
.l-footer .c-copyright .c-copyright-mark {
  font-size: 1.8em;
  line-height: 1;
}

/* -----------------------------------------------------
 * header
 * -------------------------------------------------- */
.l-header {
  display: flex;
  visibility: visible;
  position: -webkit-sticky;
  position: sticky;
  z-index: 500;
  top: 0;
  justify-content: space-between;
  align-items: center;
  padding: 2.2916666667vw 2.7777777778vw 0;
  opacity: 1;
  transition: all 1s ease-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1023px) {
  .l-header {
    padding: 6.4vw 5.3333333333vw;
  }
}
.l-header__left {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header__left .c-header-logo {
  vertical-align: middle;
}
.l-header__left.is-hidden {
  visibility: hidden;
  opacity: 0;
}
.l-header__right {
  display: flex;
  gap: 2.7777777778vw;
  color: var(--color-white);
  font-size: 1.1111111111vw;
  font-weight: bold;
  transition: color 0.3s var(--easein-out-circ);
}
@media screen and (max-width: 1023px) {
  .l-header__right {
    gap: 10.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.l-header .c-header-menu-trigger {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}
.l-header .c-header-menu-trigger::-ms-clear {
  display: none;
}
.l-header .c-header-menu-trigger::-ms-reveal {
  display: none;
}
.l-header .c-header-menu-trigger::-ms-expand {
  display: none;
}
.l-header .c-header-menu-close {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}
.l-header .c-header-menu-close::-ms-clear {
  display: none;
}
.l-header .c-header-menu-close::-ms-reveal {
  display: none;
}
.l-header .c-header-menu-close::-ms-expand {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header.global-nav-is-open .c-header-logo {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s var(--easein-out-circ);
  }
}
.l-header.global-nav-is-open__right {
  color: var(--theme-primary);
}
.l-header.is-dark .l-header__right {
  color: var(--color-black);
}
.l-header.is-light .c-header-logo {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.l-global-nav {
  visibility: hidden;
  position: fixed;
  z-index: 700;
  top: 0;
  right: 0;
  overflow-y: auto;
  width: 24.7916666667vw;
  max-height: 100dvh;
  padding: 2.2916666667vw 1.875vw 2.5vw 2.0833333333vw;
  border-radius: 0 0 0 1.3888888889vw;
  background-color: var(--color-gray-250);
  color: var(--color-white);
  transition: visibility 0.35s var(--easein-out-circ), -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, visibility 0.35s var(--easein-out-circ);
  transition: transform 0.35s ease, visibility 0.35s var(--easein-out-circ), -webkit-transform 0.35s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 1023px) {
  .l-global-nav {
    width: 94.6666666667vw;
    padding: 8.8vw 7.2vw 9.6vw 8vw;
    border-radius: 0 0 0 5.3333333333vw;
  }
}
.l-global-nav.is-open {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-global-nav .c-global-nav-head {
  display: flex;
  justify-content: flex-end;
  gap: 2.7777777778vw;
  padding-right: 0.9027777778vw;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-global-nav-head {
    gap: 10.6666666667vw;
    padding-right: 3.4666666667vw;
  }
}
.l-global-nav .c-global-nav-head .c-header-menu-close {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  top: 2.7777777778vw;
  right: 2.7777777778vw;
  font-weight: 600;
}
.l-global-nav .c-global-nav-head .c-header-menu-close::-ms-clear {
  display: none;
}
.l-global-nav .c-global-nav-head .c-header-menu-close::-ms-reveal {
  display: none;
}
.l-global-nav .c-global-nav-head .c-header-menu-close::-ms-expand {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-global-nav-head .c-header-menu-close {
    top: 6.4vw;
    right: 5.3333333333vw;
  }
}
.l-global-nav a {
  text-decoration: underline;
  text-decoration: none;
}
.l-global-nav a:link, .l-global-nav a:visited {
  color: var(--color-white);
}
.l-global-nav a:hover, .l-global-nav a:active {
  color: var(--theme-primary);
}
.l-global-nav a:link, .l-global-nav a:visited {
  color: var(--color-white);
}
.l-global-nav .c-global-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  margin: 2.7777777778vw 0;
  padding: 0;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-global-nav-list {
    gap: 9.3333333333vw;
    margin: 10.6666666667vw 0;
  }
}
.l-global-nav .c-global-nav-list li {
  list-style: none;
  font-size: 1.7361111111vw;
  font-weight: 500;
  letter-spacing: -1%;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-global-nav-list li {
    font-size: 6.6666666667vw;
  }
}
.l-global-nav .c-global-nav-list--sub-menu {
  gap: 1.3888888889vw;
  margin: 1.7361111111vw 0 0;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-global-nav-list--sub-menu {
    gap: 5.3333333333vw;
    margin: 6.6666666667vw 0 0;
  }
}
.l-global-nav .c-global-nav-list--sub-menu li {
  font-size: 1.1111111111vw;
  font-weight: 500;
  letter-spacing: -4%;
}
.l-global-nav .c-global-nav-list--sub-menu li::before {
  content: "-";
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-global-nav-list--sub-menu li {
    font-size: 4.2666666667vw;
  }
}
.l-global-nav .c-secondary-nav {
  display: flex;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
  margin-top: 2.3611111111vw;
  font-size: 0.8333333333vw;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-secondary-nav {
    margin-top: 9.0666666667vw;
    font-size: 3.2vw;
  }
}
.l-global-nav .c-secondary-nav ul {
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  gap: 1.1111111111vw 1.3888888889vw;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-secondary-nav ul {
    gap: 4.2666666667vw 5.3333333333vw;
  }
}
.l-global-nav .c-secondary-nav ul.contacts {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-secondary-nav ul.contacts {
    gap: 5.3333333333vw;
  }
}
.l-global-nav .c-secondary-nav ul.contacts li img {
  width: 1.3888888889vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-global-nav .c-secondary-nav ul.contacts li img {
    width: 5.3333333333vw;
  }
}
.l-global-nav .c-secondary-nav ul li {
  list-style: none;
}

.l-search-panel {
  visibility: hidden;
  position: fixed;
  z-index: 700;
  top: 0;
  right: 0;
  overflow-y: auto;
  width: 24.7916666667vw;
  max-height: 100dvh;
  padding: 2.2916666667vw 1.875vw 2.5vw 2.0833333333vw;
  border-radius: 0 0 0 1.3888888889vw;
  background-color: var(--color-gray-250);
  color: var(--color-white);
  transition: visibility 0.35s var(--easein-out-circ), -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, visibility 0.35s var(--easein-out-circ);
  transition: transform 0.35s ease, visibility 0.35s var(--easein-out-circ), -webkit-transform 0.35s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 1023px) {
  .l-search-panel {
    width: 94.6666666667vw;
    padding: 8.8vw 7.2vw 9.6vw 8vw;
    border-radius: 0 0 0 5.3333333333vw;
  }
}
.l-search-panel.is-open {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-search-panel .c-search-panel-head {
  display: flex;
  justify-content: flex-end;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .l-search-panel .c-search-panel-head {
    gap: 10.6666666667vw;
  }
}
.l-search-panel .c-search-panel-head .c-header-menu-close {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 600;
}
.l-search-panel .c-search-panel-head .c-header-menu-close::-ms-clear {
  display: none;
}
.l-search-panel .c-search-panel-head .c-header-menu-close::-ms-reveal {
  display: none;
}
.l-search-panel .c-search-panel-head .c-header-menu-close::-ms-expand {
  display: none;
}
.l-search-panel .c-search-form {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 1023px) {
  .l-search-panel .c-search-form {
    margin-top: 16vw;
  }
}
.l-search-panel .c-search-form__label {
  display: block;
  margin-bottom: 1.1111111111vw;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1023px) {
  .l-search-panel .c-search-form__label {
    margin-bottom: 4.2666666667vw;
    font-size: 3.2vw;
  }
}
.l-search-panel .c-search-form__field {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-search-panel .c-search-form__field {
    gap: 3.2vw;
  }
}
.l-search-panel .c-search-form__input {
  flex: 1;
  padding: 0.8333333333vw;
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1023px) {
  .l-search-panel .c-search-form__input {
    padding: 4.2666666667vw 3.2vw;
    font-size: 4.2666666667vw;
  }
}
.l-search-panel .c-search-form__input:-ms-input-placeholder {
  color: var(--color-white);
}
.l-search-panel .c-search-form__input:placeholder-shown {
  color: var(--color-white);
}
.l-search-panel .c-search-form__input::-webkit-input-placeholder {
  color: var(--color-white);
}
.l-search-panel .c-search-form__input:-moz-placeholder {
  opacity: 1;
  color: var(--color-white);
}
.l-search-panel .c-search-form__input::-moz-placeholder {
  opacity: 1;
  color: var(--color-white);
}
.l-search-panel .c-search-form__input:-ms-input-placeholder {
  color: var(--color-white);
}
.l-search-panel .c-search-form__input:focus {
  outline: none;
}
.l-search-panel .c-search-form__submit {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  cursor: pointer;
  padding: 0.9722222222vw;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-gray-250);
  font-size: 1.25vw;
}
.l-search-panel .c-search-form__submit::-ms-clear {
  display: none;
}
.l-search-panel .c-search-form__submit::-ms-reveal {
  display: none;
}
.l-search-panel .c-search-form__submit::-ms-expand {
  display: none;
}
@supports (text-box: trim-both cap alphabetic) {
  .l-search-panel .c-search-form__submit {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .l-search-panel .c-search-form__submit {
    padding: 2.6666666667vw 4.2666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media (hover: hover) {
  .l-search-panel .c-search-form__submit:hover {
    background: var(--color-white);
    color: var(--color-gray-250);
  }
}

.c-search-activate-btn {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}
.c-search-activate-btn::-ms-clear {
  display: none;
}
.c-search-activate-btn::-ms-reveal {
  display: none;
}
.c-search-activate-btn::-ms-expand {
  display: none;
}
.c-search-activate-btn span {
  visibility: hidden;
}
.c-search-activate-btn::after {
  content: "\f002";
}

/* -----------------------------------------------------
 * layout
 * -------------------------------------------------- */
html {
  background-color: var(--color-black);
}

body {
  z-index: 1;
  min-height: 100vh;
  background-color: var(--color-black);
  color: var(--color-base);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1023px) {
  body {
    min-height: 100dvh;
    font-size: 4vw;
  }
}

.l-page {
  background-color: var(--theme-primary);
  background-image: url('/wp-content/themes/delfonics2026/assets/img/common/wall.webp');
  background-position: left top;
  background-size: 100% auto;
  background-blend-mode: multiply;
}
@media screen and (max-width: 1023px) {
  .l-page {
    background-image: url('/wp-content/themes/delfonics2026/assets/img/common/wall-sp.webp');
  }
}

body.is-overlay-open {
  overflow: hidden;
}

.l-modal-overlay {
  visibility: hidden;
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s var(--easein-out-circ);
  inset: 0;
}
.l-modal-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.l-pagehead {
  padding: 11.1111111111vw 2.7777777778vw 6.9444444444vw;
}
@media screen and (max-width: 1023px) {
  .l-pagehead {
    display: flex;
    flex-direction: column;
    padding: 21.3333333333vw 5.3333333333vw 19.2vw;
  }
}
.l-pagehead .p-breadcrumb {
  display: flex;
  gap: 0.5555555556vw;
  margin: 0;
  margin-bottom: 2.7777777778vw;
  padding-left: 0;
  font-size: 1.3888888889vw;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .l-pagehead .p-breadcrumb {
    gap: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.l-pagehead .p-breadcrumb a {
  text-decoration: underline;
  text-decoration: none;
}
.l-pagehead .p-breadcrumb a:link, .l-pagehead .p-breadcrumb a:visited {
  color: var(--color-white);
}
.l-pagehead .p-breadcrumb a:hover, .l-pagehead .p-breadcrumb a:active {
  color: var(--color-white);
}
.l-pagehead .p-breadcrumb li {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  gap: 0.5555555556vw;
}
@media screen and (max-width: 1023px) {
  .l-pagehead .p-breadcrumb li {
    gap: 2.1333333333vw;
  }
}
.l-pagehead .p-breadcrumb li:not(:last-child):after {
  content: "";
  width: 6.6666666667vw;
  height: 1px;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .l-pagehead .p-breadcrumb li:not(:last-child):after {
    width: 10.6666666667vw;
  }
}
.l-pagehead .p-pagetitle {
  font-size: 12.2222222222vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1023px) {
  .l-pagehead .p-pagetitle {
    font-size: 17.0666666667vw;
  }
}

.l-black-container {
  position: relative;
  z-index: 10;
  padding: 8.3333333333vw 2.7777777778vw 6.9444444444vw;
  background-color: var(--color-black);
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .l-black-container {
    margin-top: -5.3333333333vw;
    padding: 26.6666666667vw 6.6666666667vw 23.4666666667vw;
  }
}

.u-box-align-center {
  margin-inline: auto;
}
.u-box-align-right {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

/* =====================================================
 * Page
 * ================================================== */
.p-aboutus {
  padding-bottom: 8.6805555556vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus {
    padding-bottom: 25.3333333333vw;
  }
}
.p-aboutus .p-philosophy {
  margin-top: 4.5138888889vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .p-philosophy {
    margin-top: 13.3333333333vw;
  }
}
.p-aboutus .p-philosophy .c-sect-title {
  font-size: 2.2222222222vw;
  font-weight: normal;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .p-philosophy .c-sect-title {
    font-size: 6.6666666667vw;
  }
}
.p-aboutus .p-philosophy-content {
  display: flex;
  gap: 0 2.7777777778vw;
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .p-philosophy-content {
    flex-direction: column;
    gap: 17.0666666667vw 0;
    margin-top: 4.2666666667vw;
  }
}
.p-aboutus .p-philosophy-content p {
  margin-bottom: 2em;
}
.p-aboutus .p-philosophy-content .c-en {
  flex: 1;
  margin-right: auto;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .p-philosophy-content .c-en {
    width: calc(calc(25% * 3) - 1.8666666667vw);
    font-size: 3.7333333333vw;
  }
}
.p-aboutus .p-philosophy-content .c-en p {
  max-width: 34.0277777778vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .p-philosophy-content .c-en p {
    max-width: none;
  }
}
.p-aboutus .p-philosophy-content .c-ja {
  flex: 1;
  margin-left: auto;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .p-philosophy-content .c-ja {
    width: calc(calc(25% * 3) - 1.8666666667vw);
    font-size: 3.7333333333vw;
  }
}
.p-aboutus .l-main-content .l-black-container {
  padding: 0 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .l-black-container {
    padding: 0 6.6666666667vw;
  }
}
.p-aboutus .l-main-content .p-profile {
  display: flex;
  justify-content: space-between;
  margin-top: 2.7777777778vw;
  padding: 8.3333333333vw 0;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-profile {
    display: block;
    padding: 0;
    font-size: 4vw;
  }
}
.p-aboutus .l-main-content .p-profile .c-sect-title {
  width: calc(calc(25% * 2) - 1.8666666667vw);
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  font-size: 6.9444444444vw;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@supports (text-box: trim-both cap alphabetic) {
  .p-aboutus .l-main-content .p-profile .c-sect-title {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-profile .c-sect-title {
    width: 100%;
    padding: 18.6666666667vw 0;
    font-size: 12vw;
  }
}
.p-aboutus .l-main-content .p-profile .c-profile-list {
  width: calc(calc(25% * 2) - 1.8666666667vw);
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: 3.4722222222vw;
     -moz-column-gap: 3.4722222222vw;
          column-gap: 3.4722222222vw;
  row-gap: 1.7361111111vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-profile .c-profile-list {
    width: calc(calc(25% * 3) - 1.8666666667vw);
    display: block;
    padding-bottom: 10.6666666667vw;
  }
}
.p-aboutus .l-main-content .p-profile .c-profile-list dt {
  color: var(--color-gray-100);
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-profile .c-profile-list dt {
    margin-bottom: 5.3333333333vw;
  }
}
.p-aboutus .l-main-content .p-profile .c-profile-list dd {
  font-size: 1.1111111111vw;
  line-height: 1.8;
  font-weight: 500;
}
.p-aboutus .l-main-content .p-profile .c-profile-list dd a {
  text-decoration: underline;
  text-decoration: none;
}
.p-aboutus .l-main-content .p-profile .c-profile-list dd a:link, .p-aboutus .l-main-content .p-profile .c-profile-list dd a:visited {
  color: var(--color-white);
}
.p-aboutus .l-main-content .p-profile .c-profile-list dd a:hover, .p-aboutus .l-main-content .p-profile .c-profile-list dd a:active {
  color: var(--theme-primary);
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-profile .c-profile-list dd {
    font-size: 4vw;
    margin-bottom: 10.6666666667vw;
  }
}
.p-aboutus .l-main-content .p-recruit {
  padding: 9.7222222222vw 0 6.9444444444vw;
  border-top: 1px solid var(--color-gray-300);
}
.p-aboutus .l-main-content .p-recruit .c-hgroup .c-sect-title {
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.p-aboutus .l-main-content .p-recruit-buttons {
  display: flex;
  gap: 2.0833333333vw;
  margin-top: 4.8611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-recruit-buttons {
    flex-direction: column;
    gap: 5.8666666667vw;
  }
}
.p-aboutus .l-main-content .p-huge-btn {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  cursor: pointer;
  display: inline-flex;
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  grid-template-areas: "txt ico";
  width: 100%;
  padding: 4.8611111111vw 3.4722222222vw;
  background-color: var(--color-white);
  color: var(--theme-primary);
  text-decoration: none;
  -webkit-appearance: none;
          appearance: none;
  isolation: isolate;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-huge-btn {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-huge-btn {
    padding: 9.3333333333vw 4.5333333333vw;
  }
}
.p-aboutus .l-main-content .p-huge-btn::before {
  content: "";
  display: inline-block;
  align-self: center;
  grid-area: ico;
  width: 2.9861111111vw;
  height: 2.9861111111vw;
  background-color: var(--theme-primary);
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico-arrow-right.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-huge-btn::before {
    width: 4.5333333333vw;
    height: 4.5333333333vw;
  }
}
.p-aboutus .l-main-content .p-huge-btn:hover::before {
  background-color: var(--color-white);
}
.p-aboutus .l-main-content .p-huge-btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background: var(--theme-primary);
  transition: -webkit-transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ), -webkit-transform 0.25s var(--easein-out-circ);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  inset: 0;
}
.p-aboutus .l-main-content .p-huge-btn:hover::after, .p-aboutus .l-main-content .p-huge-btn:focus-visible::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.p-aboutus .l-main-content .p-huge-btn > span {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  position: relative;
  z-index: 1;
  font-size: 3.4722222222vw;
  font-weight: 400;
  transition: color 0.25s var(--easein-out-circ);
  justify-self: start;
}
@supports (text-box: trim-both cap alphabetic) {
  .p-aboutus .l-main-content .p-huge-btn > span {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .p-aboutus .l-main-content .p-huge-btn > span {
    font-size: 8vw;
  }
}
.p-aboutus .l-main-content .p-huge-btn:hover > span, .p-aboutus .l-main-content .p-huge-btn:focus-visible > span {
  color: var(--color-white);
}

.p-contact {
  padding-bottom: 9.7222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-contact {
    padding-bottom: 25.3333333333vw;
  }
}
.p-contact.p-thanks {
  padding-bottom: 9.0277777778vw;
}
@media screen and (max-width: 1023px) {
  .p-contact.p-thanks {
    padding-bottom: 52vw;
  }
}
.p-contact .l-pagehead .l-pagehead__subtitle {
  padding: 0;
  padding-top: 4.5833333333vw;
  padding-bottom: 1.7361111111vw;
  font-size: 2.2222222222vw;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 1280px) {
  .p-contact .l-pagehead .l-pagehead__subtitle {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 1.9444444444vw;
       -moz-column-gap: 1.9444444444vw;
            column-gap: 1.9444444444vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-contact .l-pagehead .l-pagehead__subtitle {
    font-size: 6.6666666667vw;
  }
}
.p-contact .l-pagehead .l-pagehead__subtitle small {
  font-size: 0.9722222222vw;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-contact .l-pagehead .l-pagehead__subtitle small {
    font-size: 3.4666666667vw;
  }
}
.p-contact .l-pagehead .l-pagehead__subtitle small::before {
  content: "-";
  margin-right: 0.25em;
}
.p-contact .l-pagehead .l-pagehead__subtitle li {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}
@media screen and (min-width: 1280px) {
  .p-contact .l-pagehead .l-pagehead__subtitle li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .p-contact .l-pagehead .l-pagehead__subtitle li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .p-contact .l-pagehead .l-pagehead__subtitle li:nth-child(3) {
    grid-column: 2/5;
    grid-row: 1;
  }
  .p-contact .l-pagehead .l-pagehead__subtitle li:nth-child(4) {
    grid-column: 2/5;
    grid-row: 2;
  }
}
.p-contact .l-pagehead .c-contact-subtitle {
  padding-top: 6.9444444444vw;
  font-size: 6.6666666667vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-contact .l-pagehead .c-contact-subtitle {
    padding-top: 7.2vw;
    font-size: 4.8vw;
  }
}
.p-contact .l-pagehead .p-pagehead-content {
  padding-top: 1.7361111111vw;
}
.p-contact .l-pagehead .p-pagehead-content .c-btn {
  width: 22.9166666667vw;
}
@media screen and (max-width: 1023px) {
  .p-contact .l-pagehead .p-pagehead-content .c-btn {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-contact .l-pagehead .p-pagehead-content {
    padding-top: 17.0666666667vw;
  }
}
.p-contact .l-pagehead .c-inpage-nav {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 1023px) {
  .p-contact .l-pagehead .c-inpage-nav {
    margin-top: 20vw;
  }
}
.p-contact .l-main-content .c-hgroup .c-sect-title {
  color: var(--color-white);
}
.p-contact .l-main-content .p-contact-thanks {
  padding: 0 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-contact .l-main-content .p-contact-thanks {
    padding: 0 5.3333333333vw;
  }
}
.p-contact .l-main-content .p-contact-thanks p {
  margin-bottom: 2em;
  font-size: 1.1111111111vw;
  line-height: 2.3;
}
@media screen and (max-width: 1023px) {
  .p-contact .l-main-content .p-contact-thanks p {
    font-size: 4vw;
  }
}
.p-contact .l-main-content .p-contact-thanks p.no-margin {
  margin: 0;
}
.p-contact .l-main-content .p-contact-thanks ul {
  margin: 0;
}
.p-contact .l-main-content .p-contact-thanks ul li {
  line-height: 1.9;
}

.p-error {
  padding-bottom: 9.0277777778vw;
}
@media screen and (max-width: 1023px) {
  .p-error {
    padding-bottom: 32.5333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-error {
    display: grid;
    min-height: 100dvh;
  }
}
.p-error .l-pagehead {
  padding-bottom: 0;
}
.p-error .p-pagehead-content .c-error-subtitle {
  padding-top: 6.9444444444vw;
  font-size: 6.6666666667vw;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-error .p-pagehead-content .c-error-subtitle {
    padding-top: 7.2vw;
    font-size: 4.8vw;
  }
}
.p-error .l-main-content {
  padding: 5vw 2.7777777778vw 0;
}
@media screen and (max-width: 1023px) {
  .p-error .l-main-content {
    align-self: end;
    width: 66.6666666667vw;
    padding: 0 5.3333333333vw;
    justify-self: end;
  }
}
.p-error .l-main-content p {
  font-size: 1.1111111111vw;
  line-height: 2.3;
}
@media screen and (max-width: 1023px) {
  .p-error .l-main-content p {
    font-size: 4vw;
  }
}
.p-error .l-main-content .c-btn {
  margin-top: 6.9444444444vw;
}

.p-for-businesses {
  padding-bottom: 9.7222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses {
    padding-bottom: 24vw;
  }
}
.p-for-businesses .l-pagehead .l-pagehead__subtitle {
  padding: 0;
  padding-top: 4.5833333333vw;
  padding-bottom: 1.7361111111vw;
  font-size: 2.2222222222vw;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 1280px) {
  .p-for-businesses .l-pagehead .l-pagehead__subtitle {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 1.9444444444vw;
       -moz-column-gap: 1.9444444444vw;
            column-gap: 1.9444444444vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .l-pagehead__subtitle {
    font-size: 6.6666666667vw;
  }
}
.p-for-businesses .l-pagehead .l-pagehead__subtitle small {
  font-size: 0.9722222222vw;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .l-pagehead__subtitle small {
    font-size: 3.4666666667vw;
  }
}
.p-for-businesses .l-pagehead .l-pagehead__subtitle small::before {
  content: "-";
  margin-right: 0.25em;
}
.p-for-businesses .l-pagehead .l-pagehead__subtitle li {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}
@media screen and (min-width: 1280px) {
  .p-for-businesses .l-pagehead .l-pagehead__subtitle li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .p-for-businesses .l-pagehead .l-pagehead__subtitle li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .p-for-businesses .l-pagehead .l-pagehead__subtitle li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .p-for-businesses .l-pagehead .l-pagehead__subtitle li:nth-child(4) {
    grid-column: 2/5;
    grid-row: 1;
  }
  .p-for-businesses .l-pagehead .l-pagehead__subtitle li:nth-child(5) {
    grid-column: 2/5;
    grid-row: 2;
  }
}
.p-for-businesses .l-pagehead .c-contact-subtitle {
  padding-top: 6.9444444444vw;
  font-size: 6.6666666667vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .c-contact-subtitle {
    padding-top: 7.2vw;
    font-size: 4.8vw;
  }
}
.p-for-businesses .l-pagehead .p-pagehead-content {
  padding-top: 1.7361111111vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .p-pagehead-content {
    padding-top: 17.0666666667vw;
  }
}
.p-for-businesses .l-pagehead .p-pagehead-content .c-btn {
  width: 22.9166666667vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .p-pagehead-content .c-btn {
    width: 100%;
  }
}
.p-for-businesses .l-pagehead .c-inpage-nav {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .c-inpage-nav {
    margin-top: 20vw;
  }
}
.p-for-businesses .l-pagehead .c-inpage-nav span {
  margin-left: 1.1805555556vw;
  font-size: 0.9027777778vw;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-pagehead .c-inpage-nav span {
    font-size: 3.4666666667vw;
  }
}
.p-for-businesses .l-main-content .p-wholesale__eyecatch {
  width: 100%;
}
.p-for-businesses .l-main-content .p-white-container {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  position: relative;
  z-index: 20;
  padding: 5.5555555556vw 2.7777777778vw;
  background-color: var(--color-gray);
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container {
    padding: 20vw 5.3333333333vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .c-hgroup {
  align-items: center;
  margin-bottom: 8.3333333333vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .c-hgroup {
    align-items: flex-start;
    gap: 17.0666666667vw;
    margin-bottom: 4.5333333333vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .c-hgroup .c-sect-title {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  color: var(--color-black);
  font-size: 5.5555555556vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
@supports (text-box: trim-both cap alphabetic) {
  .p-for-businesses .l-main-content .p-white-container .c-hgroup .c-sect-title {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .c-hgroup .c-sect-title {
    font-size: 10.1333333333vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .c-hgroup .c-sect-subtitle {
  display: block;
  margin-top: 1.5277777778vw;
  font-size: 1.3888888889vw;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .c-hgroup .c-sect-subtitle {
    margin-top: 4.5333333333vw;
    font-size: 4.5333333333vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .c-hgroup .c-sect-subtitle::before {
  content: "-";
  margin-right: 0.25em;
  margin-left: 0.5em;
}
.p-for-businesses .l-main-content .p-white-container .c-hgroup .c-description {
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .c-hgroup .c-description {
    font-size: 4vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .p-oem {
  margin-top: 13.1944444444vw;
  padding-top: 2.7777777778vw;
  border-top: 1px solid var(--color-gray-300);
}
.p-for-businesses .l-main-content .p-white-container .p-oem-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 5.2083333333vw 2.0833333333vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem-showcase {
    gap: 10.6666666667vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .p-oem .c-hgroup {
  margin-bottom: 0;
}
.p-for-businesses .l-main-content .p-white-container .p-oem h4 {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  padding-top: 5.2083333333vw;
  padding-bottom: 3.125vw;
  font-size: 1.9444444444vw;
  font-weight: 400;
  letter-spacing: -0.04em;
}
@supports (text-box: trim-both cap alphabetic) {
  .p-for-businesses .l-main-content .p-white-container .p-oem h4 {
    margin-top: 0;
    margin-bottom: 0;
    text-box: trim-both cap alphabetic;
  }
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem h4 {
    padding-top: 24vw;
    padding-bottom: 8vw;
    font-size: 7.4666666667vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item {
  display: flex;
  flex: 1 0 calc(50% - 2.0833333333vw);
  flex-direction: column;
  gap: 1.1111111111vw;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item {
    flex: 1 0 100%;
    gap: 5.3333333333vw;
  }
}
.p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-thumbnail {
  display: grid;
  grid-template-rows: 100%;
  padding: 2.0833333333vw;
  background-color: var(--color-white);
  place-items: center;
  aspect-ratio: 665/400;
  border-radius: 0.6944444444vw 0.6944444444vw 0.6944444444vw 0.6944444444vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-thumbnail {
    border-radius: 2.6666666667vw 2.6666666667vw 2.6666666667vw 2.6666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-thumbnail {
    max-width: 100%;
  }
}
.p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-thumbnail img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-summary {
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-summary {
    font-size: 3.7333333333vw;
    overflow-wrap: anywhere;
  }
}
.p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-client {
  color: var(--color-gray-300);
  font-size: 1.0416666667vw;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .p-white-container .p-oem .p-showcase-item .c-client {
    font-size: 3.4666666667vw;
  }
}
.p-for-businesses .l-main-content .l-black-container {
  margin-top: -1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .l-black-container {
    margin-top: -5.3333333333vw;
  }
}
.p-for-businesses .l-main-content .l-black-container .c-hgroup .c-sect-title {
  color: var(--color-white);
}
.p-for-businesses .l-main-content .l-black-container .c-faq {
  margin-top: 4.3055555556vw;
}
@media screen and (max-width: 1023px) {
  .p-for-businesses .l-main-content .l-black-container .c-faq {
    margin-top: 4.5333333333vw;
  }
}

/* -----------------------------------------------------
 * home
 * -------------------------------------------------- */
.p-home {
  padding-bottom: 10.0694444444vw;
}
@media screen and (max-width: 1023px) {
  .p-home {
    padding-bottom: 25.3333333333vw;
  }
}
.p-home .l-pagehead {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "ttl ttl" "cc cc" "intro rb";
  row-gap: 2.7777777778vw;
  min-height: calc(100dvh - 5.7638888889vw);
  padding: 2.7777777778vw;
  padding-bottom: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-home .l-pagehead {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 25.3333333333vw);
    padding: 0 5.3333333333vw;
  }
}
.p-home .l-pagehead .c-heading-txt-delfonics {
  grid-area: ttl;
}
.p-home .l-pagehead .c-heading-txt-delfonics img {
  width: 100%;
  height: auto;
}
.p-home .l-pagehead .c-catchcopy {
  display: flex;
  align-self: start;
  grid-area: cc;
  gap: 2.7777777778vw;
  padding-left: 0;
  color: var(--color-white);
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .p-home .l-pagehead .c-catchcopy {
    flex-direction: column;
    gap: 4.2666666667vw;
    font-size: 3.2vw;
  }
}
.p-home .l-pagehead .c-catchcopy li {
  list-style: none;
  width: 21.3194444444vw;
}
@media screen and (max-width: 1023px) {
  .p-home .l-pagehead .c-catchcopy li {
    width: auto;
  }
}
.p-home .l-pagehead .c-introduction {
  grid-area: intro;
  width: 34.7222222222vw;
  font-size: 0.8333333333vw;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-home .l-pagehead .c-introduction {
    width: calc(calc(25% * 3) - 1.8666666667vw);
    margin-top: auto;
    margin-left: auto;
    font-size: 3.2vw;
  }
}
.p-home .l-pagehead .c-introduction p:not(:last-child) {
  margin-bottom: 1em;
}
.p-home .l-pagehead .c-ph-rightbtm {
  align-self: end;
  grid-area: rb;
}
@media screen and (max-width: 1023px) {
  .p-home .l-pagehead .c-ph-rightbtm {
    margin-bottom: 4vw;
  }
}
.p-home .l-pagehead .c-ph-rightbtm img {
  width: 8.1944444444vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-home .l-pagehead .c-ph-rightbtm img {
    width: 15.2vw;
  }
}
.p-home .p-stacking-cards {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  margin-top: 6.25vw;
}
.p-home .p-stacking-cards__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner {
    height: 100dvh;
  }
}
.p-home .p-stacking-cards__inner .c-card {
  position: absolute;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding: 0 2.7777777778vw;
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card {
    padding: 0 5.3333333333vw;
  }
}
.p-home .p-stacking-cards__inner .c-card:not(:last-child) {
  border-radius: 1.3888888889vw 1.3888888889vw 0 0;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card:not(:last-child) {
    border-radius: 5.3333333333vw 5.3333333333vw 0 0;
  }
}
.p-home .p-stacking-cards__inner .c-card:has(.c-card__scroll-content) {
  --JS_STACK_TOP_VH: 0px;
  height: calc(100vh - var(--JS_STACK_TOP_VH));
}
.p-home .p-stacking-cards__inner .c-card:last-child {
  height: 100vh;
  min-height: 100vh;
}
.p-home .p-stacking-cards__inner .c-card .c-card__clip {
  overflow: hidden;
  padding: 2.7777777778vw 0;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card .c-card__clip {
    padding: 12vw 0 18.6666666667vw;
  }
}
.p-home .p-stacking-cards__inner .c-card .c-card-subtitle {
  display: block;
  font-size: 1.3888888889vw;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card .c-card-subtitle {
    font-size: 4.8vw;
  }
}
.p-home .p-stacking-cards__inner .c-card .c-card-header {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card .c-card-header {
    gap: 6.4vw;
  }
}
.p-home .p-stacking-cards__inner .c-card .c-card-header .c-card-title {
  font-size: 7.0833333333vw;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card .c-card-header .c-card-title {
    font-size: 12.8vw;
  }
}
.p-home .p-stacking-cards__inner .c-card .c-card-header .c-products-intro {
  padding-top: 2.2222222222vw;
  font-size: 1.1111111111vw;
}
.p-home .p-stacking-cards__inner .c-card-philosophy {
  background-color: var(--theme-secondary);
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-card-subtitle {
  color: var(--theme-primary);
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-card-content {
  display: flex;
  gap: 2.0833333333vw;
  margin: 2.0833333333vw 0;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-philosophy .c-card-content {
    flex-direction: column;
    margin-top: 10.1333333333vw;
  }
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-anim {
  flex: 1;
  width: 32.8472222222vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-anim {
    width: auto;
  }
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content {
  display: grid;
  flex: 1;
  grid-template-columns: 22.0138888889vw auto;
  grid-template-rows: auto;
  grid-template-areas: "ja ja" "en act";
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 13.3333333333vw;
    margin-top: 15.2vw;
  }
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-lang-ja {
  grid-area: ja;
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-lang-ja p {
  margin-bottom: 2em;
  font-family: "Noto Sans JP";
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-lang-ja p {
    font-size: 4vw;
    line-height: 1.9;
  }
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-lang-en {
  align-content: end;
  grid-area: en;
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-lang-en p {
  margin-bottom: 1em;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-lang-en p {
    font-size: 3.2vw;
    line-height: 1.3;
  }
}
.p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-actions {
  align-self: end;
  grid-area: act;
  justify-self: end;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-philosophy .c-philosophy-content .c-actions {
    margin-top: 2.6666666667vw;
  }
}
.p-home .p-stacking-cards__inner .c-card-products {
  padding-right: 0;
  padding-left: 0;
  background-color: var(--theme-primary);
}
.p-home .p-stacking-cards__inner .c-card-products .c-card-subtitle {
  color: var(--color-white);
}
.p-home .p-stacking-cards__inner .c-card-products .c-card-header {
  padding-right: 2.7777777778vw;
  padding-left: 2.7777777778vw;
}
.p-home .p-stacking-cards__inner .c-card-products .c-card-header .c-products-intro {
  padding: 2.2222222222vw 2.7777777778vw 0;
  font-size: 1.1111111111vw;
}
.p-home .p-stacking-cards__inner .c-card-products .c-card-content .c-products-content .c-products-slider {
  --slider-padding: 5vw;
  --single-slide-height: 34.3055555556vw;
  overflow: hidden;
  height: calc(var(--slider-padding) * 2 + var(--single-slide-height));
  padding: var(--slider-padding) 0;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-products .c-card-content .c-products-content .c-products-slider {
    --slider-padding: 10.6666666667vw;
    --single-slide-height: 120vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-products .c-card-content .c-products-content .c-products-slider {
    --single-slide-height: calc(calcvw(450) + var(--slider-padding) * 2);
  }
}
@media screen and (max-width: 767px) {
  .p-home .p-stacking-cards__inner .c-card-products .c-card-content .c-products-content .c-products-slider {
    --single-slide-height: min(120vw, calc(95dvh - var(--slider-padding) * 2 - 22.6666666667vw));
  }
}
.p-home .p-stacking-cards__inner .c-card-products .c-card-content .c-products-content .c-products-slider .splide__track {
  overflow: visible;
}
.p-home .p-stacking-cards__inner .c-card-products .c-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 2.7777777778vw;
}
.p-home .p-stacking-cards__inner .c-card-place {
  background-color: var(--theme-secondary);
}
.p-home .p-stacking-cards__inner .c-card-place .c-card-subtitle {
  color: var(--theme-primary);
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list {
  position: relative;
  height: 42.1527777778vw;
  margin-top: 4.8611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list {
    display: flex;
    flex-direction: column;
    gap: 2.6666666667vw;
    height: auto;
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-place {
  display: grid;
  position: absolute;
  top: 0;
  overflow: hidden;
  align-items: center;
  height: 100%;
  padding: 3.8194444444vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-place {
    position: relative;
    top: auto;
    overflow: visible;
    width: 100%;
    height: auto;
    aspect-ratio: 332/296;
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-place::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-transform: scaleX(var(--before-scaleX, 1));
          transform: scaleX(var(--before-scaleX, 1));
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-place::before {
    display: none;
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-place .c-shop-logo {
  position: relative;
  z-index: 2;
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-osaka {
  left: 0;
  justify-content: start;
  width: calc(50% - 1.0416666667vw);
  background-image: url('/wp-content/themes/delfonics2026/assets/img/home/fig_home_place_cover_osaka_pc.webp');
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-osaka {
    left: auto;
    width: 100%;
    background-image: url('/wp-content/themes/delfonics2026/assets/img/home/fig_home_place_cover_osaka_sp.webp');
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-osaka::before {
  background-color: var(--color-red);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-osaka .c-shop-logo {
  width: 17.7777777778vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-osaka .c-shop-logo {
    width: 36.2666666667vw;
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-smith {
  right: 0;
  justify-content: end;
  width: calc(50% - 1.0416666667vw);
  background-image: url('/wp-content/themes/delfonics2026/assets/img/home/fig_home_place_cover_smith_pc.webp');
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-smith {
    right: auto;
    width: 100%;
    background-image: url('/wp-content/themes/delfonics2026/assets/img/home/fig_home_place_cover_smith_sp.webp');
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-smith::before {
  background-color: var(--color-brand-smith);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-smith .c-shop-logo {
  width: 11.25vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-place-list .c-smith .c-shop-logo {
    width: 21.3333333333vw;
  }
}
.p-home .p-stacking-cards__inner .c-card-place .c-actions {
  display: flex;
  justify-content: flex-end;
  padding: 2.7777777778vw 0;
}
@media screen and (max-width: 1023px) {
  .p-home .p-stacking-cards__inner .c-card-place .c-actions {
    padding: 13.3333333333vw 0;
  }
}
.p-home .p-schedule {
  position: relative;
  z-index: 1;
  margin-top: -1.3888888889vw;
  padding: 6.25vw 0 8.3333333333vw;
  background-color: var(--color-black);
}
@media screen and (max-width: 1023px) {
  .p-home .p-schedule {
    margin-top: -5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-bottom: 24vw;
    padding-left: 5.3333333333vw;
  }
}
.p-home .p-schedule .c-card__clip {
  padding-bottom: 0;
}
.p-home .p-schedule .c-card-header .c-card-title {
  padding: 0 2.7777777778vw;
  color: var(--color-white);
  font-size: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-home .p-schedule .c-card-header .c-card-title {
    padding-top: 5.3333333333vw;
    font-size: 6.4vw;
    font-weight: 400;
  }
}
.p-home .p-schedule .c-card-content {
  margin-top: 2.9166666667vw;
}
.p-home .p-schedule .c-journal-title {
  margin-top: 8.6805555556vw;
  margin-bottom: 1.7361111111vw;
  padding: 0 2.7777777778vw;
  color: var(--color-white);
  font-size: 1.3888888889vw;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-home .p-schedule .c-journal-title {
    margin-top: 16vw;
    margin-bottom: 6.6666666667vw;
    padding: 0;
    font-size: 4.8vw;
  }
}
.p-home .p-schedule .c-actions {
  display: flex;
  justify-content: flex-end;
  padding: 2.7777777778vw;
  padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .p-home .p-schedule .c-actions {
    padding: 0;
  }
}

.p-journal-single {
  padding-bottom: 17.2916666667vw;
  --post-fg-color: var(--color-black);
  --post-bg-color: var(--color-white);
  --post-content-h3-bg: var(--color-gray-50);
  --post-content-h3-border: var(--color-black);
  --post-content-hx-border: var(--color-gray-280);
}
@media screen and (max-width: 1023px) {
  .p-journal-single {
    padding-bottom: 18.6666666667vw;
  }
}
.p-journal-single .l-pagehead {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
  padding-bottom: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-pagehead {
    padding-bottom: 8vw;
  }
}
.p-journal-single .l-pagehead .p-breadcrumb {
  margin-bottom: 1.8055555556vw;
}
.p-journal-single .l-pagehead .c-hgroup {
  display: block;
}
.p-journal-single .l-pagehead .p-page-subtitle {
  position: relative;
  margin-right: 24.3055555556vw;
  margin-bottom: 0.8333333333vw;
  margin-left: 1.25vw;
  padding: 0.8333333333vw 1.1111111111vw;
  background-color: var(--color-black);
  color: var(--theme-secondary);
  font-size: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-pagehead .p-page-subtitle {
    margin-right: 0;
    margin-left: 2.9333333333vw;
    padding: 1.6vw 2.6666666667vw;
    font-size: 4vw;
  }
}
.p-journal-single .l-pagehead .p-page-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% + 0.2777777778vw);
  bottom: 0;
  width: 0.9722222222vw;
  background-color: var(--color-black);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-pagehead .p-page-subtitle::before {
    right: calc(100% + 0.5333333333vw);
    width: 2.4vw;
  }
}
.p-journal-single .l-pagehead .p-pagetitle {
  font-size: 2.7777777778vw;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-pagehead .p-pagetitle {
    font-size: 6.1333333333vw;
  }
}
.p-journal-single .l-pagehead .p-postdate {
  font-size: 1.25vw;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-pagehead .p-postdate {
    font-size: 4.2666666667vw;
  }
}
.p-journal-single .l-main-content {
  display: grid;
  grid-template-columns: 1fr 22.2222222222vw;
  grid-template-areas: "body side" "foot side";
  gap: 2.0833333333vw;
  margin-bottom: 6.9444444444vw;
  padding: 0 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "side" "foot";
    gap: 13.3333333333vw;
    margin-bottom: 17.8666666667vw;
    padding: 0;
  }
}
.p-journal-single .l-main-content .p-post-content {
  grid-area: body;
  min-width: 0;
}
.p-journal-single .l-main-content .p-postfoot {
  grid-area: foot;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot {
    padding: 0 5.3333333333vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__navigation {
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 4.5333333333vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em;
  margin: 0;
  padding: 0;
}
.p-journal-single .l-main-content .p-postfoot__breadcrumb li {
  display: flex;
  list-style: none;
  gap: 0.2em;
}
.p-journal-single .l-main-content .p-postfoot__breadcrumb li:not(:last-child)::after {
  content: "＞";
}
.p-journal-single .l-main-content .p-postfoot__breadcrumb li a {
  text-decoration: underline;
  text-decoration: none;
}
.p-journal-single .l-main-content .p-postfoot__breadcrumb li a:link, .p-journal-single .l-main-content .p-postfoot__breadcrumb li a:visited {
  color: var(--color-black);
}
.p-journal-single .l-main-content .p-postfoot__breadcrumb li a:hover, .p-journal-single .l-main-content .p-postfoot__breadcrumb li a:active {
  color: var(--color-white);
}
.p-journal-single .l-main-content .p-postfoot dl {
  display: grid;
  align-items: center;
  grid-template-columns: 15.2777777778vw 1fr;
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot dl {
    grid-template-columns: 1fr;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }
}
.p-journal-single .l-main-content .p-postfoot__tags {
  margin-top: 5.5555555556vw;
  padding: 2.5vw 0;
}
.p-journal-single .l-main-content .p-postfoot__tags dt {
  font-size: 2.2222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__tags dt {
    font-size: 6.6666666667vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__tags dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625vw;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__tags dd ul {
    gap: 2.6666666667vw;
    margin-top: 3.7333333333vw;
    margin-bottom: 6.4vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__tags dd ul li {
  list-style: none;
}
.p-journal-single .l-main-content .p-postfoot__tags dd a {
  display: inline-block;
  padding: 0.4166666667vw 1.0416666667vw;
  border: 1px solid var(--color-black);
  border-radius: 100px;
  color: var(--color-black);
  font-size: 1.1805555556vw;
}
.p-journal-single .l-main-content .p-postfoot__tags dd a:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__tags dd a {
    padding: 1.3333333333vw 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__share {
  padding: 1.8055555556vw 0;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__share {
    padding-top: 5.3333333333vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__share dt {
  font-size: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__share dt {
    font-size: 5.3333333333vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__share dd ul {
  display: flex;
  gap: 2.7777777778vw;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-postfoot__share dd ul {
    gap: 2.6666666667vw;
    margin-top: 3.7333333333vw;
    margin-bottom: 6.4vw;
  }
}
.p-journal-single .l-main-content .p-postfoot__share dd ul li {
  list-style: none;
}
.p-journal-single .l-main-content .p-postfoot__share dd a {
  display: block;
  text-decoration: none;
}
.p-journal-single .l-main-content .p-postfoot__share dd a:hover {
  opacity: 0.6;
}
.p-journal-single .l-main-content .p-sidebar {
  display: flex;
  flex-direction: column;
  grid-area: side;
  gap: 3.75vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-sidebar {
    display: none;
  }
}
.p-journal-single .l-main-content .p-sidebar__postmeta {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  padding: 2.2222222222vw;
  background-color: var(--color-black);
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-sidebar__postmeta {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-journal-single .l-main-content .p-sidebar__postmeta a {
  text-decoration: underline;
  text-decoration: none;
}
.p-journal-single .l-main-content .p-sidebar__postmeta a:link, .p-journal-single .l-main-content .p-sidebar__postmeta a:visited {
  color: var(--color-white);
}
.p-journal-single .l-main-content .p-sidebar__postmeta a:hover, .p-journal-single .l-main-content .p-sidebar__postmeta a:active {
  color: var(--theme-primary);
}
.p-journal-single .l-main-content .p-sidebar__postmeta a:hover, .p-journal-single .l-main-content .p-sidebar__postmeta a:active {
  opacity: 1;
  color: var(--theme-primary);
}
.p-journal-single .l-main-content .p-sidebar__postmeta h3 {
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  -webkit-column-gap: 0.5555555556vw;
     -moz-column-gap: 0.5555555556vw;
          column-gap: 0.5555555556vw;
  margin-bottom: 1.1111111111vw;
  padding-bottom: 1.1111111111vw;
  border-bottom: 1px solid var(--color-white);
  font-size: 1.1111111111vw;
}
.p-journal-single .l-main-content .p-sidebar__postmeta h3::after {
  content: "";
  display: block;
  width: 0.8333333333vw;
  height: 0.5555555556vw;
  background-color: #fff;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_chevron_down.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_chevron_down.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.p-journal-single .l-main-content .p-sidebar__postmeta h3[aria-expanded=true]::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.p-journal-single .l-main-content .p-sidebar__postmeta ul {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 0.5555555556vw;
     -moz-column-gap: 0.5555555556vw;
          column-gap: 0.5555555556vw;
  row-gap: 0.8333333333vw;
  margin: 0;
  padding: 0;
}
.p-journal-single .l-main-content .p-sidebar__postmeta ul li {
  list-style: none;
}
.p-journal-single .l-main-content .p-sidebar__categories li a::before {
  content: "#";
  margin-right: 0.2777777778vw;
}
.p-journal-single .l-main-content .p-sidebar__tags li a {
  border-radius: 6.9444444444vw 6.9444444444vw 6.9444444444vw 6.9444444444vw;
  display: inline-block;
  padding: 0.2777777778vw 0.6944444444vw;
  border: 1px solid var(--color-white);
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-sidebar__tags li a {
    border-radius: 26.6666666667vw 26.6666666667vw 26.6666666667vw 26.6666666667vw;
  }
}
.p-journal-single .l-main-content .p-sidebar__tags li a:hover {
  border-color: var(--theme-primary);
}
.p-journal-single .l-main-content .p-sidebar__pickup h3, .p-journal-single .l-main-content .p-sidebar__whatsnew h3 {
  padding: 1.1111111111vw 0;
  border-top: 2px solid var(--color-black);
  font-size: 1.3888888889vw;
}
.p-journal-single .l-main-content .p-sidebar__posts {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "fig fig" "link link" "date category";
  -webkit-column-gap: 1.0416666667vw;
     -moz-column-gap: 1.0416666667vw;
          column-gap: 1.0416666667vw;
  row-gap: 1.1111111111vw;
  font-size: 1.1111111111vw;
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post:hover img {
  -webkit-transform: scale(115%) rotateZ(-5deg);
          transform: scale(115%) rotateZ(-5deg);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-sidebar__posts .p-post:hover img {
    -webkit-transform: scale(100%) rotateZ(0deg);
            transform: scale(100%) rotateZ(0deg);
  }
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__eyecatch {
  overflow: hidden;
  grid-area: fig;
  aspect-ratio: 316/190;
  border-radius: 0.3472222222vw 0.3472222222vw 0.3472222222vw 0.3472222222vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .l-main-content .p-sidebar__posts .p-post__eyecatch {
    border-radius: 1.3333333333vw 1.3333333333vw 1.3333333333vw 1.3333333333vw;
  }
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__eyecatch img {
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ), -webkit-transform 0.25s var(--easein-out-circ);
  -webkit-transform: scale(100%) rotateZ(0deg);
          transform: scale(100%) rotateZ(0deg);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__link {
  grid-area: link;
  text-decoration: underline;
  text-decoration: none;
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__link:link, .p-journal-single .l-main-content .p-sidebar__posts .p-post__link:visited {
  color: var(--color-black);
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__link:hover, .p-journal-single .l-main-content .p-sidebar__posts .p-post__link:active {
  color: var(--color-white);
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__date {
  grid-area: date;
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__category {
  grid-area: category;
}
.p-journal-single .l-main-content .p-sidebar__posts .p-post__category::before {
  content: "#";
  margin-right: 0.2777777778vw;
}
.p-journal-single .l-main-content .p-sidebar__whatsnew .p-post {
  grid-template-columns: -webkit-max-content 1fr 1fr;
  grid-template-columns: max-content 1fr 1fr;
  grid-template-areas: "fig link link" "fig date category";
  font-size: 0.9722222222vw;
}
.p-journal-single .l-main-content .p-sidebar__whatsnew .p-post__eyecatch {
  overflow: hidden;
  width: 6.8055555556vw;
  height: 6.8055555556vw;
}
.p-journal-single .l-main-content .p-sidebar__whatsnew .p-post__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-journal-single .l-main-content .p-sidebar__whatsnew .p-post__date {
  font-size: 0.9027777778vw;
}
.p-journal-single .l-main-content .p-sidebar__whatsnew .p-post__category {
  font-size: 0.9027777778vw;
}
.p-journal-single__theme-0 {
  --post-fg-color: var(--color-black);
  --post-bg-color: var(--color-white);
  --post-content-h3-bg: var(--color-gray-50);
  --post-content-h3-border: var(--color-black);
  --post-content-hx-border: var(--color-gray-280);
}
.p-journal-single__theme-1 {
  --post-fg-color: var(--color-white);
  --post-bg-color: var(--color-gray-280);
  --post-content-h3-bg: var(--color-gray-300);
  --post-content-h3-border: var(--color-white);
  --post-content-hx-border: var(--color-gray-50);
}
.p-journal-single .p-post-content {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  padding: 5.2083333333vw 12.1527777778vw;
  background-color: var(--post-bg-color);
  color: var(--post-fg-color);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content {
    padding: 8vw 5.3333333333vw 24vw;
  }
}
.p-journal-single .p-post-content h2 {
  margin: 1.3em 0;
  font-size: 25px;
  font-weight: 500;
}
.p-journal-single .p-post-content h3 {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  position: relative;
  margin: 1.3em 0 1.3em 6px;
  padding: 10px 8px;
  background-color: var(--post-content-h3-bg);
  font-size: 25px;
  font-weight: 700;
}
@supports (text-box: trim-both cap alphabetic) {
  .p-journal-single .p-post-content h3 {
    margin-top: 1.3em;
    margin-bottom: 1.3em;
    text-box: trim-both cap alphabetic;
  }
}
.p-journal-single .p-post-content h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  width: 6px;
  height: 100%;
  background-color: var(--post-content-h3-border);
}
.p-journal-single .p-post-content h4 {
  padding: 8px 10px;
  border: 1px solid var(--post-content-hx-border);
  font-size: 20px;
  font-weight: 500;
}
.p-journal-single .p-post-content h5 {
  margin: 1.3em 0;
  border: 1px solid var(--post-content-hx-border);
  border-right: none;
  border-left: none;
  font-size: 18px;
  font-weight: 700;
}
.p-journal-single .p-post-content h6 {
  margin: 1.3em 0;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
}
.p-journal-single .p-post-content .wp-block-paragraph {
  margin: 0 0 2em 0;
  font-size: 14px;
  line-height: 2;
}
.p-journal-single .p-post-content .wp-block-paragraph:last-child {
  margin-bottom: 0;
}
.p-journal-single .p-post-content .wp-block-paragraph a {
  text-decoration: underline;
}
.p-journal-single .p-post-content .wp-block-paragraph a:link, .p-journal-single .p-post-content .wp-block-paragraph a:visited {
  color: var(--color-black);
}
.p-journal-single .p-post-content .wp-block-paragraph a:hover, .p-journal-single .p-post-content .wp-block-paragraph a:active {
  color: var(--theme-primary);
}
.p-journal-single .p-post-content .wp-block-image {
  margin-bottom: 2em;
}
.p-journal-single .p-post-content .wp-block-file a:not(.wp-block-file__button) {
  color: var(--post-fg-color, currentColor);
}
.p-journal-single .p-post-content .wp-block-file__button {
  color: var(--color-white);
}
.p-journal-single .p-post-content .wp-block-separator {
  margin: 1.3em 0;
  border-top-width: 1px;
  color: var(--post-fg-color, currentColor);
}
.p-journal-single .p-post-content .wp-block-buttons {
  margin: 1.3em 0;
}
.p-journal-single .p-post-content .wp-block-column h2,
.p-journal-single .p-post-content .wp-block-column h3,
.p-journal-single .p-post-content .wp-block-column h4,
.p-journal-single .p-post-content .wp-block-column h5,
.p-journal-single .p-post-content .wp-block-column h6 {
  margin-top: 0;
}
.p-journal-single .p-post-content .wp-block-embed-youtube {
  width: 100%;
}
.p-journal-single .p-post-content .wp-block-embed-youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.p-journal-single .p-post-content h2 {
  font-size: 1.7361111111vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content h2 {
    font-size: 4.8vw;
  }
}
.p-journal-single .p-post-content h3 {
  margin-left: 0.4166666667vw;
  padding: 0.6944444444vw 0.5555555556vw;
  font-size: 1.7361111111vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content h3 {
    padding: 2.6666666667vw 2.1333333333vw;
    font-size: 6.6666666667vw;
  }
}
.p-journal-single .p-post-content h3::before {
  width: 0.4166666667vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content h3::before {
    width: 1.6vw;
  }
}
.p-journal-single .p-post-content h4 {
  padding: 0.5555555556vw 0.6944444444vw;
  font-size: 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content h4 {
    padding: 2.1333333333vw 2.6666666667vw;
    font-size: 5.3333333333vw;
  }
}
.p-journal-single .p-post-content h5 {
  font-size: 1.25vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content h5 {
    font-size: 4.8vw;
  }
}
.p-journal-single .p-post-content h6 {
  padding: 0.8333333333vw 0;
  font-size: 1.25vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content h6 {
    padding: 3.2vw 0;
    font-size: 4.8vw;
  }
}
.p-journal-single .p-post-content .wp-block-paragraph {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-content .wp-block-paragraph {
    font-size: 4vw;
  }
}
.p-journal-single .p-post-gallery__main .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.p-journal-single .p-post-gallery__thumbs {
  border-radius: 0.5555555556vw 0.5555555556vw 0.5555555556vw 0.5555555556vw;
  margin-top: 1.1111111111vw;
  padding: 1.6666666667vw 2.0833333333vw;
  background-color: var(--color-black);
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-gallery__thumbs {
    border-radius: 2.1333333333vw 2.1333333333vw 2.1333333333vw 2.1333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-gallery__thumbs {
    margin-top: 4.2666666667vw;
  }
}
.p-journal-single .p-post-gallery__thumbs .splide__track {
  margin-inline: 3.0555555556vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-gallery__thumbs .splide__track {
    margin-inline: 9.6vw;
  }
}
.p-journal-single .p-post-gallery__thumbs .splide__arrow {
  border-radius: 0.5555555556vw 0.5555555556vw 0.5555555556vw 0.5555555556vw;
  top: 50%;
  background-color: var(--color-white);
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  touch-action: manipulation;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-gallery__thumbs .splide__arrow {
    border-radius: 2.1333333333vw 2.1333333333vw 2.1333333333vw 2.1333333333vw;
  }
}
.p-journal-single .p-post-gallery__thumbs .splide__arrow:hover {
  opacity: 0.7;
}
.p-journal-single .p-post-gallery__thumbs .splide__arrow--prev {
  left: 2.0833333333vw;
}
.p-journal-single .p-post-gallery__thumbs .splide__arrow--next {
  right: 2.0833333333vw;
}
.p-journal-single .p-post-gallery__thumbs .splide__slide {
  overflow: hidden;
  height: 5.5555555556vw;
  touch-action: manipulation;
}
@media screen and (max-width: 1023px) {
  .p-journal-single .p-post-gallery__thumbs .splide__slide {
    height: 16vw;
  }
}
.p-journal-single .p-post-gallery__thumbs .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-journal-single .p-post-gallery__thumbs .splide__slide.is-active {
  opacity: 0.5;
}
.p-journal-single .p-post-content .wp-block-lazyblock-gallery {
  margin: 3em 0;
}

.p-journal {
  padding-bottom: 10.7638888889vw;
}
@media screen and (max-width: 1023px) {
  .p-journal {
    padding-bottom: 16vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal .l-pagehead {
    padding-bottom: 16vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal-calendar {
    padding: 0 5.3333333333vw;
  }
}
.p-journal .p-post {
  display: flex;
  flex-direction: column;
}
.p-journal .p-post:hover img {
  -webkit-transform: scale(115%) rotateZ(-5deg);
          transform: scale(115%) rotateZ(-5deg);
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post:hover img {
    -webkit-transform: scale(100%) rotateZ(0deg);
            transform: scale(100%) rotateZ(0deg);
  }
}
.p-journal .p-post a {
  color: var(--theme-secondary);
}
.p-journal .p-post a:hover {
  color: var(--theme-primary);
}
.p-journal .p-post__eyecatch {
  display: grid;
  overflow: hidden;
  border-radius: 0.6944444444vw;
  place-items: center;
}
.p-journal .p-post__eyecatch a {
  display: block;
}
.p-journal .p-post__eyecatch img {
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ), -webkit-transform 0.25s var(--easein-out-circ);
  -webkit-transform: scale(100%) rotateZ(0deg);
          transform: scale(100%) rotateZ(0deg);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-journal .p-post__link {
  display: flex;
  flex-direction: column;
  grid-area: link;
  gap: 1.25vw;
  margin-bottom: 0.625vw;
}
.p-journal .p-post__body {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  grid-template-rows: 1fr auto auto;
  grid-template-areas: "ttl ttl" "category date" "tags tags";
  row-gap: 1.1111111111vw;
  margin-top: 1.25vw;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post__body {
    margin-top: 0;
    row-gap: 3.2vw;
    -webkit-column-gap: 4.8vw;
       -moz-column-gap: 4.8vw;
            column-gap: 4.8vw;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto auto;
    grid-template-areas: "ttl ttl" "date category" "tags tags";
  }
}
.p-journal .p-post__title {
  align-self: flex-start;
  grid-area: ttl;
  margin-bottom: 0.625vw;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post__title {
    margin-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.p-journal .p-post__category {
  grid-area: category;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post__category {
    font-size: 3.4666666667vw;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
}
.p-journal .p-post__category a {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: calvwPC(4);
     -moz-column-gap: calvwPC(4);
          column-gap: calvwPC(4);
  color: var(--rb25-gray);
}
.p-journal .p-post__category a::hover {
  color: var(--theme-primary);
}
.p-journal .p-post__category a::before {
  content: "#";
}
.p-journal .p-post__tags {
  display: flex;
  flex-wrap: wrap;
  grid-area: tags;
  gap: 0.2777777778vw;
  font-size: 0.9722222222vw;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post__tags {
    gap: 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
}
.p-journal .p-post__tags a {
  display: inline-block;
  padding: 0.2777777778vw 0.6944444444vw;
  border: 1px solid var(--rb25-gray);
  border-radius: 100px;
  color: var(--rb25-gray);
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post__tags a {
    padding: 1.3333333333vw 3.2vw;
  }
}
.p-journal .p-post__tags a:hover {
  border-color: var(--theme-primary);
}
.p-journal .p-post__postdate {
  grid-area: date;
  color: var(--rb25-gray);
  font-size: 1.1111111111vw;
  justify-self: end;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-post__postdate {
    font-size: 3.4666666667vw;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
}
.p-journal-postlist {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  margin-top: 8.9583333333vw;
  padding: 8.6111111111vw 2.7777777778vw 10.8333333333vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist {
    margin-top: 19.2vw;
    padding: 18.6666666667vw 5.3333333333vw 21.3333333333vw;
  }
}
.p-journal-postlist__contenthead {
  display: flex;
  justify-content: space-between;
  gap: 9.8611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist__contenthead {
    flex-direction: column;
    gap: 20vw;
  }
}
.p-journal-postlist__hgroup {
  display: flex;
  flex-direction: column;
  gap: 1.5277777778vw;
  color: var(--theme-secondary);
}
.p-journal-postlist__hgroup h2 {
  font-size: 6.9444444444vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist__hgroup h2 {
    font-size: 12vw;
  }
}
.p-journal-postlist__subtitle {
  font-size: 1.9444444444vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist__subtitle {
    font-size: 5.3333333333vw;
  }
}
.p-journal-postlist .p-pickup {
  display: flex;
  gap: 2.2222222222vw;
  margin-top: 2.5694444444vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-pickup {
    flex-direction: column;
    gap: 10.6666666667vw;
  }
}
.p-journal-postlist .p-pickup__container {
  flex: 1;
}
.p-journal-postlist .p-pickup__container h3 {
  margin: 0;
  padding-bottom: 1.8055555556vw;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 1.7361111111vw;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-pickup__container h3 {
    font-size: 5.3333333333vw;
  }
}
.p-journal-postlist .p-pickup .p-post {
  width: 22.0138888889vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-pickup .p-post {
    width: auto;
  }
}
.p-journal-postlist .p-pickup .p-post__eyecatch {
  aspect-ratio: 303/316;
  place-items: stretch;
}
.p-journal-postlist .p-whatsnew {
  display: flex;
  gap: 2.2222222222vw;
  margin-top: 2.5694444444vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-whatsnew {
    flex-direction: column;
    gap: 8vw;
    margin-top: 7.2vw;
  }
}
.p-journal-postlist .p-whatsnew__container {
  margin-top: 9.3055555556vw;
}
.p-journal-postlist .p-whatsnew__container h3 {
  font-size: 1.7361111111vw;
  font-weight: normal;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-whatsnew__container h3 {
    font-size: 5.3333333333vw;
  }
}
.p-journal-postlist .p-whatsnew .p-post {
  width: 21.9444444444vw;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-whatsnew .p-post {
    flex-direction: row;
    gap: 4vw;
    width: 100%;
  }
}
.p-journal-postlist .p-whatsnew .p-post a {
  color: var(--color-white);
}
.p-journal-postlist .p-whatsnew .p-post a:hover {
  color: var(--theme-primary);
}
.p-journal-postlist .p-whatsnew .p-post__tags a {
  border-color: var(--rb25-gray);
  color: var(--rb25-gray);
}
.p-journal-postlist .p-whatsnew .p-post__tags a:hover {
  border-color: var(--theme-primary);
}
.p-journal-postlist .p-whatsnew .p-post__eyecatch {
  position: relative;
  aspect-ratio: 316/190;
}
.p-journal-postlist .p-whatsnew .p-post__eyecatch a {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-whatsnew .p-post__eyecatch {
    flex-shrink: 0;
    align-self: flex-start;
    width: 26.1333333333vw;
    aspect-ratio: 1/1;
  }
  .p-journal-postlist .p-whatsnew .p-post__eyecatch a {
    position: absolute;
    inset: 0;
  }
  .p-journal-postlist .p-whatsnew .p-post__eyecatch img {
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-whatsnew .p-post__body {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal-postlist .p-whatsnew .p-post__title {
    margin-bottom: 0;
    font-size: 3.7333333333vw;
  }
}
.p-journal-postlist .c-journal-list {
  position: relative;
  padding: 0;
}
.p-journal-postlist .c-journal-list .c-pagination {
  margin-top: 6.0416666667vw;
}
.p-journal-postlist .c-journal-list .c-loading-spinner {
  position: absolute;
  left: calc(50% - 24px);
}
.p-journal-postlist .c-journal-list .c-loading-spinner[hidden] {
  display: none;
}
.p-journal .p-voyageur {
  border-radius: 0 2.7777777778vw 0 2.7777777778vw;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-template-rows: 1fr auto -webkit-max-content;
  grid-template-rows: 1fr auto max-content;
  grid-template-areas: "fig ttl" "fig summary" "btn btn";
  -webkit-column-gap: 3.9583333333vw;
     -moz-column-gap: 3.9583333333vw;
          column-gap: 3.9583333333vw;
  margin: 4.6527777778vw 2.7777777778vw 0;
  padding: 3.8888888889vw 2.3611111111vw 2.3611111111vw 3.8888888889vw;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-journal .p-voyageur {
    border-radius: 0 10.6666666667vw 0 10.6666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-journal .p-voyageur {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 17.3333333333vw 5.3333333333vw;
    padding: 9.3333333333vw;
  }
}
.p-journal .p-voyageur__eyecatch {
  grid-area: fig;
}
.p-journal .p-voyageur__title {
  grid-area: ttl;
  margin-top: 3.4722222222vw;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-voyageur__title {
    width: 59.7333333333vw;
    margin: auto;
    margin-top: 10.6666666667vw;
    padding-bottom: 5.3333333333vw;
  }
}
.p-journal .p-voyageur__summary {
  grid-area: summary;
  padding-bottom: 3.125vw;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .p-journal .p-voyageur__summary {
    padding-top: 16vw;
    padding-bottom: 8.8vw;
    font-size: 3.7333333333vw;
  }
}
.p-journal .p-voyageur__act {
  align-self: end;
  grid-area: btn;
  justify-self: end;
}

.p-place {
  padding-bottom: 10.7638888889vw;
}
@media screen and (max-width: 1023px) {
  .p-place {
    padding-bottom: 22.6666666667vw;
  }
}
.p-place .p-intro {
  display: flex;
  justify-content: space-between;
  gap: 2.7777777778vw;
  margin-top: 4.5833333333vw;
}
@media screen and (max-width: 1023px) {
  .p-place .p-intro {
    flex-direction: column;
  }
}
.p-place .p-intro .c-sect-title {
  flex: 1;
  font-size: 2.2222222222vw;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1023px) {
  .p-place .p-intro .c-sect-title {
    font-size: 6.6666666667vw;
  }
}
.p-place .p-intro .message {
  flex: 1;
  font-size: 1.1805555556vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .p-place .p-intro .message {
    width: 66.6666666667vw;
    margin-top: 38.4vw;
    margin-left: auto;
    font-size: 3.7333333333vw;
  }
}
.p-place .l-main-content .p-place-item {
  --place-item-bg: var(--color-white);
  --place-item-fg: var(--color-black);
  padding: 2.2222222222vw 2.7777777778vw;
  padding-bottom: 13.1944444444vw;
  background-color: var(--place-item-bg);
  color: var(--place-item-fg);
}
.p-place .l-main-content .p-place-item.c-archive {
  --place-item-bg: var(--color-gray);
}
.p-place .l-main-content .p-place-item.c-osaka {
  --place-item-bg: var(--color-black);
  --place-item-fg: var(--color-white);
}
.p-place .l-main-content .p-place-item.c-webshop {
  --place-item-bg: var(--color-gray-50);
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item {
    padding: 5.3333333333vw;
    padding-bottom: 24.5333333333vw;
  }
}
.p-place .l-main-content .p-place-item .c-place-label {
  margin-bottom: 6.3888888889vw;
  padding: 2.2222222222vw 0 0.6944444444vw;
  border-bottom: 1px solid var(--color-gray-300);
  font-size: 1.0416666667vw;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-label {
    font-size: 4vw;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info {
  display: flex;
  gap: 2.3611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info {
    flex-direction: column;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info.c-webshop {
  gap: 4.3055555556vw;
}
.p-place .l-main-content .p-place-item .p-shop-info .u-logo-osaka {
  width: 24.7916666667vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .u-logo-osaka {
    width: 65.8666666667vw;
    height: auto;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .u-logo-smith {
  width: 28.9583333333vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .u-logo-smith {
    width: 69.6vw;
    height: auto;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .u-logo-webshop {
  width: 38.125vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .u-logo-webshop {
    width: 80vw;
    height: auto;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .u-logo-lido {
  width: 13.9583333333vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .u-logo-lido {
    width: 35.7333333333vw;
    height: auto;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info.c-pos-reverse {
  flex-direction: row-reverse;
  gap: 5.7638888889vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info.c-pos-reverse {
    flex-direction: column;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info.c-pos-reverse .p-shop-detail {
  margin-right: 3.125vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info.c-pos-reverse .p-shop-detail {
    margin-right: 0;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-photo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-photo img {
  width: 58.2638888889vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .p-shop-photo img {
    width: 100%;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-sect-title {
  font-size: 5.5555555556vw;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-sect-title img {
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-sect-title {
    font-size: 12vw;
  }
  .p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-sect-title.c-smith {
    width: 69.6vw;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-detail-body {
  width: 15.1388888889vw;
  margin-top: auto;
  margin-left: auto;
  font-size: 0.9027777778vw;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-detail-body {
    width: 66.4vw;
    margin-top: 20vw;
    font-size: 3.2vw;
  }
}
.p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-detail-body .c-btn {
  margin-top: 3.4722222222vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-info .p-shop-detail .c-detail-body .c-btn {
    margin-top: aclcvw(25);
  }
}
.p-place .l-main-content .p-place-item.c-webshop .p-shop-info .p-shop-detail .c-detail-body {
  width: 14.9305555556vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item.c-webshop .p-shop-info .p-shop-detail .c-detail-body {
    width: 72.2666666667vw;
  }
}
.p-place .l-main-content .p-place-item .p-shop-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10.9722222222vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-gallery {
    gap: 4.5333333333vw;
  }
}
.p-place .l-main-content .p-place-item .p-shop-gallery > div {
  flex: 0 0 calc(50% - 2.0833333333vw);
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-gallery > div {
    flex: 1 1 auto;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.p-place .l-main-content .p-place-item .p-shop-gallery.c-osaka > div:nth-child(2) {
  margin-top: 26.7361111111vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-gallery.c-osaka > div:nth-child(2) {
    margin-top: 0;
  }
}
.p-place .l-main-content .p-place-item .p-shop-gallery.c-osaka > div:nth-child(3) {
  margin-top: -8.1944444444vw;
}
.p-place .l-main-content .p-place-item .p-shop-gallery.c-osaka > div:nth-child(3) img {
  width: 29.0972222222vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-gallery.c-osaka > div:nth-child(3) {
    margin-top: 0;
  }
  .p-place .l-main-content .p-place-item .p-shop-gallery.c-osaka > div:nth-child(3) img {
    width: 100%;
  }
}
.p-place .l-main-content .p-place-item .p-shop-gallery.c-smith > div:nth-child(2) {
  margin-top: 37.3611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-gallery.c-smith > div:nth-child(2) {
    margin-top: 0;
  }
}
.p-place .l-main-content .p-place-item .p-shop-gallery.c-smith > div:nth-child(2) .c-peel-img-container > div {
  justify-items: end;
}
.p-place .l-main-content .p-place-item .p-shop-gallery.c-smith > div:nth-child(2) img {
  width: 34.0277777778vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .p-shop-gallery.c-smith > div:nth-child(2) img {
    width: 100%;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive {
  display: flex;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive {
    flex-direction: column;
    gap: 12.5333333333vw;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive-item {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "logo desc" "act desc-ja";
  -webkit-column-gap: 3.4722222222vw;
     -moz-column-gap: 3.4722222222vw;
          column-gap: 3.4722222222vw;
  row-gap: 2.7777777778vw;
  padding: 4.1666666667vw 2.0833333333vw;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive-item--inner {
    display: flex;
    flex-direction: column;
    gap: 6.1333333333vw;
    aspect-ratio: 3/5;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-sect-title {
  grid-area: logo;
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-description {
  grid-area: desc;
  font-size: 0.8333333333vw;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-description {
    max-width: 60vw;
    font-size: 2.9333333333vw;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-description--ja {
  align-content: end;
  grid-area: desc-ja;
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-description--ja a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-actions {
  align-self: flex-end;
  grid-area: act;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-actions {
    align-self: start;
    margin-top: auto;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-actions .c-btn {
  width: 15.0694444444vw;
  max-width: unset;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive-item--inner .c-actions .c-btn {
    width: 57.8666666667vw;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive-item--summary {
  margin-top: 1.1805555556vw;
  margin-bottom: 0.6944444444vw;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive-item--summary {
    margin-top: 3.7333333333vw;
    margin-bottom: 1.8666666667vw;
    font-size: 3.2vw;
  }
}
.p-place .l-main-content .p-place-item .c-place-archive-item--instagram span {
  display: block;
  overflow: hidden;
  width: 1.5972222222vw;
  height: 1.5972222222vw;
  background-color: var(--color-black);
  white-space: nowrap;
  text-indent: 100%;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_common_instagram.svg');
          mask-image: url('/wp-content/themes/delfonics2026/assets/img/common/ico_common_instagram.svg');
}
@media screen and (max-width: 1023px) {
  .p-place .l-main-content .p-place-item .c-place-archive-item--instagram span {
    width: 6.1333333333vw;
    height: 6.1333333333vw;
  }
}

.p-privacy {
  padding-bottom: 12.1527777778vw;
}
@media screen and (max-width: 1023px) {
  .p-privacy {
    padding-bottom: 40vw;
  }
}
.p-privacy .l-main-content {
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
  max-width: 85.1388888889vw;
  padding: 4.8611111111vw 2.7777777778vw;
  background-color: var(--theme-secondary);
}
@media screen and (max-width: 1023px) {
  .p-privacy .l-main-content {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-privacy .l-main-content {
    max-width: unset;
    padding: 12vw 5.3333333333vw;
  }
}
.p-privacy .l-main-content h2 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 1.6666666667vw;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .p-privacy .l-main-content h2 {
    font-size: 6.4vw;
  }
}
.p-privacy .l-main-content p {
  margin: 1em 0;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.p-privacy .l-main-content ul,
.p-privacy .l-main-content ol {
  margin: 1em 0;
  padding-left: 2em;
}

.p-products .p-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "ttl ttl ttl msg";
  -webkit-column-gap: 1.9444444444vw;
     -moz-column-gap: 1.9444444444vw;
          column-gap: 1.9444444444vw;
  margin-top: 4.5833333333vw;
}
@media screen and (max-width: 1023px) {
  .p-products .p-intro {
    grid-template-areas: "ttl ttl ttl ttl" "_ _ msg msg";
  }
}
.p-products .p-intro .c-sect-title {
  grid-area: ttl;
  font-size: 2.2222222222vw;
  font-weight: normal;
}
@media screen and (max-width: 1023px) {
  .p-products .p-intro .c-sect-title {
    font-size: 6.6666666667vw;
  }
}
.p-products .p-intro .message {
  grid-area: msg;
  font-size: 1.1805555556vw;
}
@media screen and (max-width: 1023px) {
  .p-products .p-intro .message {
    margin-top: 38.4vw;
    font-size: 3.7333333333vw;
  }
}
.p-products .l-main-content .l-black-container {
  padding: 4.1666666667vw 2.7777777778vw;
}
.p-products .l-main-content .p-content-head {
  padding-top: 9.375vw;
  padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-content-head {
    padding-top: 18.1333333333vw;
  }
}
.p-products .l-main-content .c-hgroup {
  align-items: center;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .c-hgroup {
    align-items: flex-start;
    gap: 10.6666666667vw;
  }
}
.p-products .l-main-content .c-hgroup .c-sect-title {
  flex: 1;
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .c-hgroup .c-sect-title {
    font-size: 12vw;
  }
}
.p-products .l-main-content .c-hgroup .c-description {
  flex: 1;
  font-size: 0.9722222222vw;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .c-hgroup .c-description {
    font-size: 3.4666666667vw;
  }
}
.p-products .l-main-content .c-products-cover-image {
  margin-top: 6.5972222222vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .c-products-cover-image {
    width: 100%;
    height: auto;
    margin-top: 4.5333333333vw;
  }
}
.p-products .l-main-content .c-inpage-nav {
  margin-top: 9.0277777778vw;
  --link-color: var(--color-white);
}
.p-products .l-main-content .c-products {
  padding-top: 4.0277777778vw;
  padding-bottom: 9.7222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .c-products {
    padding-bottom: 25.6vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .c-products {
    display: block;
    padding-top: 15.4666666667vw;
  }
}
.p-products .l-main-content .js-products-scroll {
  overflow-x: clip;
}
.p-products .l-main-content .p-products-scroll__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-products-scroll__inner {
    height: 100dvh;
  }
}
.p-products .l-main-content .p-products-scroll__inner .p-product {
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
}
.p-products .l-main-content .p-products-scroll__inner .p-product:first-child {
  -webkit-transform: none;
          transform: none;
}
.p-products .l-main-content .p-product {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  border: 1px solid var(--color-black);
  background-color: var(--theme-secondary);
  color: var(--color-black);
  border-radius: 1.3888888889vw 1.3888888889vw 1.3888888889vw 1.3888888889vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product {
    height: 100dvh;
  }
}
.p-products .l-main-content .p-product__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  -webkit-column-gap: 3.4722222222vw;
     -moz-column-gap: 3.4722222222vw;
          column-gap: 3.4722222222vw;
  padding: 8.3333333333vw 2.7777777778vw 11.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product {
    border-radius: 5.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product {
    border: 1px solid var(--color-black);
  }
  .p-products .l-main-content .p-product__inner {
    display: block;
    padding: 20vw 5.3333333333vw;
  }
}
.p-products .l-main-content .p-product .c-sect-eyecatch {
  width: 46.1805555556vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-sect-eyecatch {
    width: 100%;
    height: auto;
  }
}
.p-products .l-main-content .p-product .c-product-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-products .l-main-content .p-product .c-sect-title {
  font-size: 4.1666666667vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-sect-title {
    margin-top: 6.9333333333vw;
    font-size: 9.0666666667vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-sect-subtitle {
    margin-top: 11.2vw;
  }
}
.p-products .l-main-content .p-product .c-sect-subtitle .c-en {
  font-size: 2.5vw;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-sect-subtitle .c-en {
    font-size: 6.1333333333vw;
  }
}
.p-products .l-main-content .p-product .c-sect-subtitle .c-ja {
  margin-top: 1em;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-sect-subtitle .c-ja {
    font-size: 3.7333333333vw;
  }
}
.p-products .l-main-content .p-product .c-content {
  font-size: 0.9722222222vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-content {
    margin-top: 26.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-products .l-main-content .p-product .c-btn {
  margin-top: 2.4305555556vw;
}
@media screen and (max-width: 1023px) {
  .p-products .l-main-content .p-product .c-btn {
    margin-top: 8.5333333333vw;
  }
}

.p-search .l-pagehead {
  padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .p-search .l-pagehead {
    padding-top: 10.6666666667vw;
  }
}
.p-search .l-pagehead .p-pagetitle {
  font-size: 2.7777777778vw;
  font-weight: 500;
}
.p-search .l-pagehead .p-pagetitle strong {
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  .p-search .l-pagehead .p-pagetitle {
    font-size: 8vw;
  }
}
.p-search .l-main-content .p-search-result {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5138888889vw 2.2222222222vw;
  margin-top: 2.4305555556vw;
  padding: 6.3888888889vw 2.7777777778vw 0;
}
@media screen and (max-width: 1023px) {
  .p-search .l-main-content .p-search-result {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.7333333333vw;
       -moz-column-gap: 3.7333333333vw;
            column-gap: 3.7333333333vw;
    row-gap: 8vw;
    margin-top: 7.2vw;
    padding: 10.6666666667vw 5.3333333333vw 0;
  }
}
.p-search .l-main-content .p-search-result .p-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "fig fig" "link link" "date category";
  -webkit-column-gap: 1.0416666667vw;
     -moz-column-gap: 1.0416666667vw;
          column-gap: 1.0416666667vw;
  row-gap: 1.25vw;
  max-width: 21.9444444444vw;
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 1023px) {
  .p-search .l-main-content .p-search-result .p-post {
    max-width: unset;
  }
}
.p-search .l-main-content .p-search-result .p-post:hover img {
  -webkit-transform: scale(115%) rotateZ(-5deg);
          transform: scale(115%) rotateZ(-5deg);
}
@media screen and (max-width: 1023px) {
  .p-search .l-main-content .p-search-result .p-post:hover img {
    -webkit-transform: scale(100%) rotateZ(0deg);
            transform: scale(100%) rotateZ(0deg);
  }
}
.p-search .l-main-content .p-search-result .p-post__eyecatch {
  overflow: hidden;
  grid-area: fig;
  aspect-ratio: 316/190;
  border-radius: 0.3472222222vw 0.3472222222vw 0.3472222222vw 0.3472222222vw;
}
@media screen and (max-width: 1023px) {
  .p-search .l-main-content .p-search-result .p-post__eyecatch {
    border-radius: 1.3333333333vw 1.3333333333vw 1.3333333333vw 1.3333333333vw;
  }
}
.p-search .l-main-content .p-search-result .p-post__eyecatch img {
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ);
  transition: transform 0.25s var(--easein-out-circ), -webkit-transform 0.25s var(--easein-out-circ);
  -webkit-transform: scale(100%) rotateZ(0deg);
          transform: scale(100%) rotateZ(0deg);
  -o-object-fit: cover;
     object-fit: cover;
}
.p-search .l-main-content .p-search-result .p-post__link {
  grid-area: link;
  align-self: start;
  font-size: 1.1111111111vw;
  font-weight: 700;
  margin-bottom: 0.6944444444vw;
  text-decoration: underline;
  text-decoration: none;
}
.p-search .l-main-content .p-search-result .p-post__link:link, .p-search .l-main-content .p-search-result .p-post__link:visited {
  color: var(--color-white);
}
.p-search .l-main-content .p-search-result .p-post__link:hover, .p-search .l-main-content .p-search-result .p-post__link:active {
  color: var(--rb25-gray);
}
@media screen and (max-width: 1023px) {
  .p-search .l-main-content .p-search-result .p-post__link {
    font-size: 3.7333333333vw;
  }
}
.p-search .l-main-content .p-search-result .p-post__date {
  grid-area: date;
  color: var(--rb25-gray);
}
.p-search .l-main-content .p-search-result .p-post__category {
  grid-area: category;
  color: var(--rb25-gray);
}
.p-search .l-main-content .p-search-result .p-post__category > *::before {
  content: "#";
  margin-right: 0.2777777778vw;
}
.p-search .l-main-content .p-search-result .p-post__category a {
  color: var(--rb25-gray);
}
.p-search .l-main-content .p-search-result .p-post__category a:hover, .p-search .l-main-content .p-search-result .p-post__category a:active {
  opacity: 1;
  color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-search .l-main-content .p-search-result .p-post {
    grid-template-columns: 1fr;
    grid-template-areas: "fig" "link" "date" "category";
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
    row-gap: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .p-search .l-main-content .p-search-result .p-post__eyecatch {
    overflow: hidden;
    width: 26.1333333333vw;
    height: 26.1333333333vw;
  }
  .p-search .l-main-content .p-search-result .p-post__eyecatch img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-search .l-main-content .p-search-result .p-post__date {
    font-size: 3.4666666667vw;
  }
  .p-search .l-main-content .p-search-result .p-post__category {
    font-size: 3.4666666667vw;
  }
}
.p-search .l-main-content .c-pagination {
  padding: 3.4722222222vw 2.7777777778vw 9.1666666667vw;
}

.p-shoplist {
  padding-bottom: 10.4166666667vw;
}
@media screen and (max-width: 1023px) {
  .p-shoplist {
    padding-bottom: 21.3333333333vw;
  }
}
.p-shoplist .l-pagehead .p-page-head-content {
  margin-top: 5.2083333333vw;
}
.p-shoplist .l-main-content {
  display: flow-root;
  padding: 0 2.7777777778vw;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content {
    padding: 0 5.3333333333vw;
  }
}
.p-shoplist .l-main-content .c-inpage-nav {
  margin: 4.1666666667vw 0;
}
.p-shoplist .l-main-content .p-list-container {
  margin-bottom: 6.9444444444vw;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-container {
    margin-bottom: 8vw;
  }
}
.p-shoplist .l-main-content .p-list-inner {
  width: 70.2777777778vw;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-inner {
    width: auto;
  }
}
.p-shoplist .l-main-content .p-list-head {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-head {
    grid-template-columns: 1fr;
    row-gap: 13.3333333333vw;
    padding: 12vw 0;
  }
}
.p-shoplist .l-main-content .p-list-head .c-shoplogo__delfonics {
  width: 24.1666666667vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-head .c-shoplogo__delfonics {
    width: 54.9333333333vw;
  }
}
.p-shoplist .l-main-content .p-list-head .c-shoplogo__smith {
  width: 24.0972222222vw;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-head .c-shoplogo__smith {
    width: 45.3333333333vw;
  }
}
.p-shoplist .l-main-content .p-list-area {
  padding: 1.25vw;
  background-color: var(--color-gray-50);
  font-size: 1.1805555556vw;
  font-weight: normal;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-area {
    padding: 4.8vw;
    font-size: 4.5333333333vw;
    margin-bottom: 10px;
  }
}
.p-shoplist .l-main-content .p-list-group {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 4.4444444444vw;
     -moz-column-gap: 4.4444444444vw;
          column-gap: 4.4444444444vw;
  margin-bottom: 4.8611111111vw;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-group {
    display: block;
  }
}
.p-shoplist .l-main-content .p-list-group .p-list-item {
  flex: 0 0 calc(50% - 4.4444444444vw);
  margin-top: 4.4444444444vw;
  padding: 0;
  padding-bottom: 4.1666666667vw;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-group .p-list-item {
    margin-top: 14.6666666667vw;
    padding-bottom: 12vw;
  }
  .p-shoplist .l-main-content .p-list-group .p-list-item:not(:last-child) {
    border-bottom: 1px solid var(--color-gray-100);
  }
}
.p-shoplist .l-main-content .p-list-group .p-list-item:nth-last-child(n+3):not(:last-child), .p-shoplist .l-main-content .p-list-group .p-list-item:nth-last-child(n+3) ~ .p-list-item:not(:last-child):not(:nth-last-child(2):nth-child(odd)) {
  border-bottom: 1px solid var(--color-gray-100);
}
.p-shoplist .l-main-content .p-list-item {
  display: flex;
  flex-direction: column;
  gap: 2.0833333333vw;
  min-height: 14.5833333333vw;
  padding-left: 4.5138888889vw;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-item {
    gap: 8vw;
    padding: 0;
  }
}
.p-shoplist .l-main-content .p-list-item--title {
  font-size: 1.3888888889vw;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-item--title {
    font-size: 5.8666666667vw;
  }
}
.p-shoplist .l-main-content .p-list-item--info {
  font-size: 1.0416666667vw;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-item--info {
    font-size: 4vw;
  }
}
.p-shoplist .l-main-content .p-list-item--link {
  display: flex;
  gap: 1.0416666667vw;
  margin: 2.4305555556vw 0 0 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .p-shoplist .l-main-content .p-list-item--link {
    margin-top: 9.3333333333vw;
    gap: 4vw;
  }
}
.p-shoplist .l-main-content .p-list-item--link li {
  list-style: none;
}

.p-sitemap {
  padding-bottom: 6.25vw;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-sitemap {
    padding-bottom: 17.3333333333vw;
  }
}
.p-sitemap .l-main-content {
  padding: 2.7777777778vw;
}
.p-sitemap .l-main-content ul:last-child {
  margin-bottom: 0;
}
.p-sitemap a {
  text-decoration: underline;
  text-decoration: none;
}
.p-sitemap a:link, .p-sitemap a:visited {
  color: var(--color-black);
}
.p-sitemap a:hover, .p-sitemap a:active {
  color: var(--theme-secondary);
}
.p-sitemap .p-sitemap-link--primary, .p-sitemap .p-sitemap-link--secondary {
  padding: 0;
}
.p-sitemap .p-sitemap-link--primary li, .p-sitemap .p-sitemap-link--secondary li {
  list-style: none;
}
.p-sitemap .p-sitemap-link--primary {
  display: flex;
  flex-direction: column;
  gap: 6.1111111111vw;
  font-size: 6.6666666667vw;
}
@media screen and (max-width: 1023px) {
  .p-sitemap .p-sitemap-link--primary {
    gap: 10.9333333333vw;
    font-size: 9.3333333333vw;
  }
}
.p-sitemap .p-sitemap-link--primary li {
  line-height: 1;
}
.p-sitemap .p-sitemap-link--primary .p-sitemap-link__sub-menu {
  display: flex;
  flex-direction: column;
  gap: 2.0138888889vw;
  margin: 3.3333333333vw 0 0 0;
  padding-left: 0;
  font-size: 2.2222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-sitemap .p-sitemap-link--primary .p-sitemap-link__sub-menu {
    gap: 6.4vw;
    margin-top: 10.9333333333vw;
    font-size: 5.0666666667vw;
  }
}
.p-sitemap .p-sitemap-link--primary .p-sitemap-link__sub-menu li a::before {
  content: "#";
}
.p-sitemap .p-sitemap-link--secondary {
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
  margin-top: 6.1111111111vw;
  font-size: 2.2222222222vw;
}
@media screen and (max-width: 1023px) {
  .p-sitemap .p-sitemap-link--secondary {
    gap: 6.4vw;
    font-size: 5.0666666667vw;
  }
}
/*# sourceMappingURL=common.css.map */
