@charset "UTF-8";@import "kiso.css";

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(67.25rem, 100%);
  --inner--small: min(55.25rem, 100%);
  --inner--large: min(79.125rem, 100%);
  --inner-sp: min(37.5rem, 100%);
  --padding-inner: 2.25rem;
  --padding-inner-sp: 1.25rem;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #303b3e;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border-gray: #d1d1d1;
  --color-accent: #408f95;
  --color-primary: #234f5e;
  --color-secondary: #098bb2;
  --color-blue: #0a8bb2;
  --color-orange: #ff601a;
  --color-background: #efe9df;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* font-family */
  --base-font-family: heisei-kaku-gothic-std, sans-serif;
  --montserrat-font-family: montserrat, sans-serif;
  --noto-sans-jp-font-family: noto sans jp, sans-serif;
  --gothic-a1-font-family: gothic-a1, sans-serif;
  --title-font-family: "Lato", sans-serif;
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 5.625rem;
  --header-height-md: 4.375rem;
  --header-height-sp: 4rem;
}
@media screen and (width <= 768px) {
  :root {
    --header-height: 4rem;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (width >= 769px) and (max-width: 1060px) {
  html {
    font-size: 1.5094339623vw;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (width <= 320px) {
  html {
    font-size: 5vw;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

body.is-drawer-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

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

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.page-transition-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: var(--color-orange, #ff601a);
}
.page-transition-curtain.is-entering {
  transform: translateY(100%);
}
.page-transition-curtain.is-active {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
.page-transition-curtain.is-leaving {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-100%);
}

.l-contact {
  margin-block-start: var(--header-height);
}
@media screen and (max-width: 768px) {
  .l-contact {
    margin-block-start: var(--header-height-sp);
  }
}

.l-header {
  position: absolute;
  inset: 0;
  z-index: var(--z-index-header);
}

.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner-sp) + var(--padding-inner-sp) * 2);
    padding-inline: var(--padding-inner-sp);
  }
}

.l-inner.l-inner--large {
  max-width: calc(var(--inner--large) + var(--padding-inner) * 2);
}
@media screen and (max-width: 768px) {
  .l-inner.l-inner--large {
    max-width: calc(var(--inner-sp) + var(--padding-inner-sp) * 2);
  }
}

.l-inner.l-inner--small {
  max-width: calc(var(--inner--small) + var(--padding-inner) * 2);
}
@media screen and (max-width: 768px) {
  .l-inner.l-inner--small {
    max-width: calc(var(--inner-sp) + var(--padding-inner-sp) * 2);
  }
}

.l-top {
  padding-top: var(--header-height);
}
@media screen and (max-width: 768px) {
  .l-top {
    padding-top: var(--header-height-sp);
  }
}

.c-accordion {
  --_text-color: var(--color-text);
  --_background-default: var(--color-white);
  --_background-interactive: var(--color-gray);
  --_background-opened: var(--color-accent);
  --_text-color-opened: var(--color-white);
  --_duration: 0.2s;
}
.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}
.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion__summary {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding-block: 1.25rem;
  padding-inline: 2.1875rem 3.125rem;
  color: var(--_text-color);
  background-color: var(--_background-default);
  transition: background-color var(--_duration) ease, color var(--_duration) ease;
}
@media screen and (max-width: 768px) {
  .c-accordion__summary {
    gap: 0.75rem;
    padding-block: 1rem;
    padding-inline: 1.25rem 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .c-accordion__summary {
    gap: 0.625rem;
    padding-block: 0.75rem;
    padding-inline: 0.75rem 1.5rem;
  }
}
.c-accordion__summary::before, .c-accordion__summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  border-radius: 0.3125rem;
  translate: 0 -50%;
}
@media screen and (max-width: 768px) {
  .c-accordion__summary::before, .c-accordion__summary::after {
    right: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .c-accordion__summary::before, .c-accordion__summary::after {
    right: 0.75rem;
  }
}
.c-accordion__summary::before {
  display: inline-block;
  grid-area: icon;
  width: 1.25rem;
  height: 0.1875rem;
  content: "";
  background-color: var(--color-blue);
}
@media screen and (max-width: 768px) {
  .c-accordion__summary::before {
    width: 1rem;
    height: 0.125rem;
  }
}
@media screen and (max-width: 480px) {
  .c-accordion__summary::before {
    width: 0.75rem;
    height: 0.0625rem;
  }
}
.c-accordion__summary::after {
  display: inline-block;
  grid-area: icon;
  width: 1.25rem;
  height: 0.1875rem;
  content: "";
  background-color: var(--color-blue);
  transition: rotate var(--_duration) ease;
  rotate: 90deg;
}
@media screen and (max-width: 768px) {
  .c-accordion__summary::after {
    width: 1rem;
    height: 0.125rem;
  }
}
@media screen and (max-width: 480px) {
  .c-accordion__summary::after {
    width: 0.75rem;
    height: 0.0625rem;
  }
}
.c-accordion__summary:focus-visible {
  background-color: var(--_background-interactive);
  outline: 2px solid currentcolor;
  outline-offset: -2px;
}

.c-accordion[open] .c-accordion__summary::after {
  rotate: 0deg;
}

.c-accordion__body {
  overflow: hidden;
}

.c-accordion__contents {
  display: flex;
  gap: 1rem;
  padding-block: 1.875rem;
  padding-inline: 2.1875rem 3.125rem;
  background-color: #f8f7f5;
}
@media screen and (max-width: 768px) {
  .c-accordion__contents {
    gap: 0.75rem;
    padding-block: 0.75rem;
    padding-inline: 1.25rem 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .c-accordion__contents {
    gap: 0.625rem;
    padding-block: 0.75rem;
    padding-inline: 0.75rem 1.5rem;
  }
}

.c-button {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-orange);
  text-decoration: none;
  text-transform: uppercase;
}
.c-button__text {
  position: relative;
  font-family: var(--montserrat-font-family);
  color: var(--color-orange);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-button__text {
    font-size: 1rem;
  }
}
.c-button__text::after {
  position: absolute;
  right: 0;
  bottom: -0.375rem;
  left: 0;
  display: block;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-orange);
  border-radius: 0.0625rem;
  transition: transform var(--duration);
  transform: scaleX(1);
  transform-origin: center;
}
.c-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 1.75rem;
  background-color: var(--color-orange);
  border-radius: 0.75rem;
  transition: opacity var(--duration);
}
@media screen and (max-width: 768px) {
  .c-button__icon {
    width: 2rem;
    height: 1.625rem;
  }
}
@media screen and (max-width: 480px) {
  .c-button__icon {
    width: 1.875rem;
    height: 1.4375rem;
  }
}
.c-button__icon img {
  width: 0.75rem;
  height: 0.75rem;
  object-fit: contain;
  transition: transform var(--duration);
}
@media screen and (max-width: 768px) {
  .c-button__icon img {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (any-hover: hover) {
  .c-button:hover .c-button__icon img {
    transform: rotate(90deg);
  }
  .c-button:hover .c-button__text::after {
    transform: scaleX(0);
  }
}

.c-button--white {
  color: var(--color-white);
}
.c-button--white .c-button__text {
  color: var(--color-white);
}
.c-button--white .c-button__text::after {
  background-color: var(--color-white);
}
.c-button--white .c-button__icon {
  background-color: var(--color-white);
}

.c-button--pill {
  gap: 1rem;
  align-items: center;
  justify-content: center;
  min-width: 21.25rem;
  padding-block: 1.5rem;
  padding-inline: 1.75rem;
  background-color: var(--color-blue);
  border-radius: 1.8125rem;
}
@media screen and (max-width: 768px) {
  .c-button--pill {
    min-width: 15rem;
    padding-block: 1rem;
    padding-inline: 1.25rem;
    border-radius: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-button--pill {
    min-width: 12.5rem;
    padding-block: 1rem;
    padding-inline: 2rem;
    border-radius: 1.25rem;
  }
}
.c-button--pill .c-button__text {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-button--pill .c-button__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .c-button--pill .c-button__text {
    font-size: 1rem;
  }
}
.c-button--pill .c-button__text::after {
  bottom: 0rem;
  background-color: var(--color-white);
  transform: scaleX(0);
}
.c-button--pill .c-button__icon {
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-button--pill:hover .c-button__text::after {
    transform: scaleX(1);
  }
}
.c-button--pill.c-button--pill-white {
  background-color: var(--color-white);
}
.c-button--pill.c-button--pill-white .c-button__text {
  color: var(--color-orange);
}
.c-button--pill.c-button--pill-white .c-button__text::after {
  background-color: var(--color-orange);
}
.c-button--pill.c-button--pill-white .c-button__icon {
  background-color: var(--color-orange);
}

.c-card {
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 12px;
  transition: scale 0.3s ease;
  container-type: inline-size;
  container-name: card;
}

.c-card__body {
  display: grid;
  grid-template-columns: minmax(min(25rem, 100%), 1fr) auto;
}
@container card (inline-size <= 700px) {
  .c-card__body {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (any-hover: hover) {
  .c-card:has(.c-button:hover) .c-card__image img {
    scale: 1.1;
  }
}
.c-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.c-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.4s ease;
}

.c-card__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1.5rem;
}

.c-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .c-card__title {
    font-size: 1.5rem;
  }
}

.c-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
@media screen and (max-width: 768px) {
  .c-card__text {
    font-size: 0.875rem;
  }
}

.c-card__button {
  align-self: end;
}

.c-fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.c-fade.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.c-fade--up {
  transform: translateY(1.875rem);
}

.c-fade--down {
  transform: translateY(-1.875rem);
}

.c-fade--left {
  transform: translateX(-1.875rem);
}

.c-fade--right {
  transform: translateX(1.875rem);
}

.c-fade--delay-1 {
  transition-delay: 0.1s;
}

.c-fade--delay-2 {
  transition-delay: 0.2s;
}

.c-fade--delay-3 {
  transition-delay: 0.3s;
}

.c-fade--delay-4 {
  transition-delay: 0.4s;
}

.c-fade--delay-5 {
  transition-delay: 0.5s;
}

.c-image-text {
  display: grid;
  grid-template: "image gutter text margin" auto/41.6666666667% 1rem 1fr max((100% - var(--inner)) / 2, 2rem);
  row-gap: 1.5rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-image-text {
    grid-template: "image" auto "text" auto/1fr;
  }
}

.c-image-text.c-image-text--reverse {
  grid-template: "margin text gutter image" auto/max((100% - var(--inner)) / 2, 2rem) 1fr 1rem 41.6666666667%;
}

.c-image-text.c-image-text--overlap {
  grid-template: "image text margin" auto/41.6666666667% 1fr max((100% - var(--inner)) / 2, 2rem);
}

.c-image-text.c-image-text--overlap.c-image-text--reverse {
  grid-template: "margin text image" auto/max((100% - var(--inner)) / 2, 2rem) 1fr 41.6666666667%;
}

.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
  max-width: none;
  padding-inline: revert;
  margin-inline: 0;
}
@media screen and (max-width: 768px) {
  .c-image-text__text {
    max-width: var(--inner-sp);
    padding: var(--padding-inner);
    margin-inline: auto;
  }
}

.c-image-text.c-image-text--overlap .c-image-text__text {
  padding: 1.25rem 0 1.25rem 1.25rem;
  margin-left: -6.25rem;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .c-image-text.c-image-text--overlap .c-image-text__text {
    padding: var(--padding-inner);
  }
}

.c-image-text.c-image-text--overlap.c-image-text--reverse .c-image-text__text {
  padding: 1.25rem 1.25rem 1.25rem 0;
  margin-right: -6.25rem;
  margin-left: auto;
}

.c-lower-hero {
  position: relative;
  margin-top: var(--header-height);
}
@media screen and (max-width: 768px) {
  .c-lower-hero {
    margin-top: var(--header-height-sp);
  }
}

.c-lower-hero--orange {
  background-color: var(--color-orange);
}

.c-lower-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-lower-hero__inner {
    padding-block: 3.75rem;
  }
}

.c-lower-hero__body {
  text-align: center;
}

.c-lower-hero__en {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .c-lower-hero__en {
    margin-bottom: 0.5rem;
  }
}

.c-lower-hero__en img {
  object-fit: contain;
}

.c-lower-hero__ja {
  margin-bottom: 0.625rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-lower-hero__ja {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.c-lower-hero__breadcrumb {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}

.c-lower-hero__breadcrumb-link {
  font-family: var(--montserrat-font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
}

.c-lower-hero__breadcrumb-sep {
  font-family: var(--montserrat-font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
}

.c-lower-hero__breadcrumb-current {
  color: rgba(255, 255, 255, 0.4);
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.c-marquee {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-marquee {
    gap: 1rem;
  }
}

.c-marquee__wrap {
  display: flex;
  overflow: hidden;
}

.c-marquee__list {
  display: flex;
  gap: 0.5625rem;
  padding: 0;
  padding-right: 0.5625rem;
  margin: 0;
  list-style: none;
}

.c-marquee__list--left {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
@media screen and (max-width: 768px) {
  .c-marquee__list--left {
    animation-duration: 40s;
  }
}

.c-marquee__list--right {
  animation: infinity-scroll-right 100s infinite linear 0.5s both;
}

.c-marquee__list--fast {
  animation-duration: 40s;
}

.c-marquee__list--slow {
  animation-duration: 120s;
}

.c-marquee__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 31.7965023847vw;
}
@media screen and (max-width: 768px) {
  .c-marquee__item {
    width: 50vw;
  }
}

.c-marquee__item img {
  width: 100%;
  object-fit: contain;
}

.c-marquee__list--pause:hover {
  animation-play-state: paused;
}

.c-section-title {
  position: relative;
  font-family: var(--title-font-family);
  font-size: 3.75rem;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 2.5rem;
  }
}

.c-section-title[data-position=center] {
  text-align: center;
}

.c-section-title[data-position=left] {
  text-align: left;
}

.c-section-title[data-position=right] {
  text-align: right;
}

.c-section-title::before {
  position: absolute;
  top: 50%;
  z-index: -1;
  font-size: 7.5rem;
  color: var(--color-gray);
  content: attr(data-title);
}
@media screen and (max-width: 768px) {
  .c-section-title::before {
    font-size: 3.75rem;
  }
}

.c-section-title[data-position=center]::before {
  left: 50%;
  translate: -50% -50%;
}

.c-section-title[data-position=left]::before {
  left: 0;
  translate: 0 -50%;
}

.c-section-title[data-position=right]::before {
  right: 0;
  translate: 0 -50%;
}

.c-triangle {
  display: inline-block;
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}

.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}

.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}

.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}

.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}

.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}

.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}

.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}

.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}

.c-wave {
  overflow: hidden;
}

.c-wave--top__img {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 5.9375rem;
  margin-inline: calc(50% - 50vw);
  margin-top: -2px;
  pointer-events: none;
  transform: scale(-1, -1);
}
@media screen and (max-width: 768px) {
  .c-wave--top__img {
    height: 7.1246819338vw;
  }
}
.c-wave--top__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-wave--bottom__img {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 5.9375rem;
  margin-inline: calc(50% - 50vw);
  margin-bottom: -2px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-wave--bottom__img {
    height: 7.1246819338vw;
  }
}
.c-wave--bottom__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.p-concept-hero__title {
  width: 100%;
  max-width: 21.375rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-concept-hero__title {
    max-width: 18.75rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-hero__title {
    max-width: 13.125rem;
  }
}

.p-concept-hero__title img {
  object-fit: contain;
}
@media screen and (max-width: 480px) {
  .p-concept-hero__title img {
    height: 1.5rem;
  }
}

.p-concept-intro {
  background-color: var(--color-background);
}

.p-concept-intro__inner {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-concept-intro__inner {
    padding-block: 3.75rem;
  }
}

.p-concept-intro__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-concept-intro__wrap {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-intro__wrap {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

.p-concept-intro__content {
  width: 46.9483568075%;
}
@media screen and (max-width: 768px) {
  .p-concept-intro__content {
    width: 100%;
  }
}

.p-concept-intro__lead {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-concept-intro__lead {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-intro__lead {
    font-size: 2rem;
  }
}

.p-concept-intro__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.2222222222;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-concept-intro__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-intro__text {
    font-size: 0.8125rem;
  }
}

.p-concept-intro__image {
  width: 51.9248826291%;
  overflow: hidden;
  border-radius: 13.75rem;
}
@media screen and (max-width: 768px) {
  .p-concept-intro__image {
    width: 100%;
  }
}

.p-concept-card__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-concept-card__list {
    gap: 1.5rem;
  }
}

.p-concept-card__card {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 3.125rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-concept-card__card {
    flex-direction: column-reverse;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-card__card {
    padding: 1.25rem;
  }
}

.p-concept-card__card--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-concept-card__card--reverse {
    flex-direction: column-reverse;
  }
}

.p-concept-card__card-media {
  width: 43.3519553073%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-concept-card__card-media {
    width: 100%;
  }
}

.p-concept-card__card-media img {
  aspect-ratio: 388/284;
  border-radius: 1.25rem;
}

.p-concept-card__card-body {
  width: 52.5139664804%;
}
@media screen and (max-width: 768px) {
  .p-concept-card__card-body {
    width: 100%;
  }
}

.p-concept-card__card-label {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-concept-card__card-label {
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-concept-card__card-title {
  margin-bottom: 1rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-concept-card__card-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-card__card-title {
    font-size: 1.0625rem;
  }
}

.p-concept-card__card-text {
  font-size: 1rem;
  line-height: 1.875;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-concept-card__card-text {
    font-size: 0.875rem;
  }
}

.p-concept-cta {
  position: relative;
  overflow: hidden;
}

.p-concept-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-concept-cta__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(57, 39, 30, 0.36) 100%);
}
.p-concept-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-concept-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 41.5812591508vw;
  min-height: 28.125rem;
  padding-block: 5.625rem;
}

.p-concept-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-concept-cta__content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.p-concept-cta__catch {
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.575;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-concept-cta__catch {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-concept-cta__catch {
    font-size: 1.5rem;
  }
}

.p-concept-cta__button {
  flex-shrink: 0;
}

.p-concept-cta__link {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
  text-decoration: none;
  letter-spacing: 0.08em;
  background-color: var(--color-white);
  border-radius: 62.4375rem;
  transition: opacity var(--duration);
}
.p-concept-cta__link:hover {
  opacity: 0.8;
}

.p-concept-cta__icon {
  width: 0.75rem;
  height: 0.75rem;
}

.p-contact__complete {
  padding-block: 5rem;
  text-align: center;
}

.p-contact__complete-title {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 768px) {
  .p-contact__complete-title {
    font-size: 2rem;
  }
}

.p-contact__complete-text {
  margin-block-start: 1.875rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-contact__complete-text {
    font-size: 1rem;
  }
}

.p-contact__complete-button {
  margin-block-start: 3.125rem;
  margin-inline: auto;
}

.p-contact {
  padding-block: 4.5rem;
}

.p-contact__form {
  margin-top: 4rem;
}

.p-faq-hero__title {
  width: 100%;
  max-width: 8.4375rem;
  margin-inline: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-faq-hero__title {
    max-width: 7.5rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-faq-hero__title {
    max-width: 5rem;
  }
}

.p-faq {
  padding-block: 5.625rem 5rem;
  background-color: var(--color-background);
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding-block: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-faq {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-faq__inner {
  display: flex;
  gap: 3.75rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    flex-direction: column-reverse;
  }
}

.p-faq__sidebar {
  flex-shrink: 0;
  width: 15rem;
}
@media screen and (max-width: 768px) {
  .p-faq__sidebar {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}

.p-faq__category {
  position: sticky;
  top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-faq__category {
    position: static;
  }
}

.p-faq__category-list {
  background-color: var(--color-white);
  border-radius: 1rem;
}

.p-faq__category-label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.875rem;
  font-family: var(--montserrat-font-family);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-orange);
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .p-faq__category-label {
    justify-content: center;
  }
}
.p-faq__category-label::before {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-image: url("/brand/taiyou_no_sachi/assets/images/button_icon_orange.D3UCpVZ3.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-faq__category-label img {
  width: 100%;
  max-width: 9.375rem;
}

.p-faq__category-item {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  transition: color var(--duration);
}
@media screen and (max-width: 768px) {
  .p-faq__category-item {
    font-size: 0.875rem;
    text-align: center;
  }
}
.p-faq__category-item:hover {
  color: var(--color-orange);
}
.p-faq__category-item.is-active {
  color: var(--color-orange);
}
.p-faq__category-item:last-child {
  border-bottom: none;
}

.p-faq__contents {
  width: 100%;
  max-width: 45.625rem;
}

.p-faq__block {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-faq__block {
    margin-bottom: 2.5rem;
  }
}
.p-faq__block:last-child {
  margin-bottom: 0;
}
.p-faq__block:last-child .p-faq__item:last-child {
  margin-bottom: 0;
}

.p-faq__title {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-faq__title {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-faq__title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}

.p-faq__item {
  margin-bottom: 1.25rem;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-faq__item {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-faq__item {
    margin-bottom: 0.75rem;
  }
}

.p-faq__q {
  width: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-faq__q {
    width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-faq__q {
    width: 1.25rem;
  }
}

.p-faq__text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-faq__text {
    font-size: 0.875rem;
  }
}

.p-faq__a {
  width: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-faq__a {
    width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-faq__a {
    width: 1.25rem;
  }
}

.p-faq__answer-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-faq__answer-text {
    font-size: 0.875rem;
  }
}

.p-footer {
  background-color: var(--color-orange);
}

.p-footer__inner {
  padding-block: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-block: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-footer__inner {
    padding-block: 3.125rem;
  }
}

.p-footer__content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-footer__content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-footer__content {
    margin-bottom: 2rem;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 16.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    max-width: 12.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-footer__logo {
    max-width: 11.875rem;
  }
}

.p-footer__logo a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem 1.5rem;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-footer__nav-list {
    flex-direction: column;
    gap: 0.375rem;
    align-items: center;
  }
}

.p-footer__nav-item a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .p-footer__nav-item a {
    font-size: 0.875rem;
  }
}
.p-footer__nav-item a::after {
  position: absolute;
  right: 0;
  bottom: 0rem;
  left: 0;
  display: block;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-white);
  transition: transform var(--duration);
  transform: scaleX(0);
  transform-origin: center;
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover::after {
    transform: scaleX(1);
  }
}
.p-footer__bottom {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__bottom {
    margin-top: 2.5rem;
  }
}

.p-footer__copyright {
  width: 100%;
  max-width: 5.5rem;
  margin-inline: auto;
}

.p-form {
  --_form-color-text: var(--color-text);
  --_form-color-bg: var(--color-white);
  --_form-color-badge-text: var(--color-white);
  --_form-color-badge-bg: var(--color-orange);
  --_form-color-accent: var(--color-accent);
  --_form-color-border: var(--color-border-gray);
  --_form-color-primary: var(--color-primary);
  max-width: 50rem;
  margin-inline: auto;
}
.p-form > * {
  margin-block-start: 2.5rem;
}
.p-form > *:nth-last-child(2) {
  margin-block-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-form > * {
    margin-block-start: 3rem;
  }
  .p-form > *:nth-last-child(2) {
    margin-block-start: 1.5rem;
  }
}

.p-form__item {
  display: grid;
  gap: 0.5rem;
}

.p-form__label {
  display: block;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--_form-color-text);
}

.p-form__label--required {
  position: relative;
  padding-inline-end: 3.125rem;
}

.p-form__label--required::after {
  position: absolute;
  top: 50%;
  right: 0;
  padding-block: 0.5rem;
  padding-inline: 1rem;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--_form-color-badge-text);
  content: "必須";
  background-color: var(--_form-color-badge-bg);
  border-radius: 4px;
  translate: 0 -50%;
}

.p-form__input,
.p-form__select,
.p-form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--_form-color-text);
  background-color: var(--_form-color-bg);
  border: 1px solid var(--_form-color-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-form__input,
  .p-form__select,
  .p-form__textarea {
    padding: 0.875rem 1rem;
  }
}

.p-form__input::placeholder,
.p-form__select::placeholder,
.p-form__textarea::placeholder {
  color: oklch(from var(--_form-color-text) l c h/50%);
}

.p-form__input:focus,
.p-form__select:focus,
.p-form__textarea:focus {
  border-color: var(--_form-color-accent);
  outline: none;
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
}

.p-form__input:hover:not(:focus),
.p-form__select:hover:not(:focus),
.p-form__textarea:hover:not(:focus) {
  border-color: var(--_form-color-accent);
  opacity: 0.7;
}

.p-form__input.is-error,
.p-form__select.is-error,
.p-form__textarea.is-error {
  border-color: var(--_form-color-badge-bg);
}

.p-form__select {
  position: relative;
  padding-inline-end: 3rem;
  appearance: none;
  cursor: pointer;
}

.p-form__select-wrap {
  position: relative;
}

.p-form__select-wrap::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.75rem;
  height: 0.5rem;
  clip-path: var(--clip-triangle-bottom);
  pointer-events: none;
  content: "";
  background-color: var(--_form-color-primary);
  border: none;
  translate: 0 -50%;
}

.p-form__textarea {
  min-height: 10rem;
}

.p-form__radio-group {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-form__radio-group {
    gap: 2rem 2.5rem;
  }
}

.p-form__radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.p-form__radio input[type=radio] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 1rem;
  appearance: none;
  cursor: pointer;
  border: 2px solid var(--_form-color-border);
  border-radius: 50%;
  transition: border-color 0.2s ease;
}

.p-form__radio input[type=radio]:checked {
  background-color: var(--_form-color-accent);
  border-color: var(--_form-color-accent);
}

.p-form__radio input[type=radio]:checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: var(--_form-color-bg);
  border-radius: 50%;
  translate: -50% -50%;
}

.p-form__radio input[type=radio]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__radio input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
}

.p-form__radio-text {
  font-size: 1rem;
  color: var(--_form-color-text);
  user-select: none;
}

.p-form__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.p-form__checkbox input[type=checkbox] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-inline-end: 0.5rem;
  appearance: none;
  cursor: pointer;
  border: 2px solid var(--_form-color-border);
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.p-form__checkbox input[type=checkbox]:checked {
  background-color: var(--_form-color-accent);
  border-color: var(--_form-color-accent);
}

.p-form__checkbox input[type=checkbox]:checked::after {
  position: absolute;
  top: 0.125rem;
  left: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  content: "";
  border: 2px solid var(--_form-color-bg);
  border-top: none;
  border-left: none;
  rotate: 45deg;
}

.p-form__checkbox input[type=checkbox]:hover:not(:checked) {
  border-color: var(--_form-color-accent);
  opacity: 0.5;
}

.p-form__checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px oklch(from var(--_form-color-accent) l c h/10%);
}

.p-form__checkbox-text {
  font-size: 1rem;
  color: var(--_form-color-text);
  user-select: none;
}

.p-form__link {
  color: var(--_form-color-accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-form__link:hover {
    opacity: 0.8;
  }
}

.p-form__button-wrap {
  text-align: center;
}

.p-form__error {
  display: block;
  font-size: 0.875rem;
  color: var(--_form-color-badge-bg);
}

.p-form__success {
  padding: 1.5rem;
  font-size: 1rem;
  color: var(--_form-color-accent);
  text-align: center;
  background-color: rgba(64, 143, 149, 0.1);
  border: 1px solid var(--_form-color-accent);
  border-radius: 0.5rem;
}

.p-header {
  height: var(--header-height);
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 4rem;
  }
}

.p-header__inner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: 2.5rem;
  background-color: rgba(255, 96, 26, 0);
  transition: background-color 0.5s;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    height: 4rem;
    padding-inline: 0;
  }
}
.p-header__inner.is-fixed {
  position: fixed;
}
.p-header__inner.is-drawer-open {
  background-color: rgb(255, 96, 26);
}
.p-header__inner.is-hidden-by-fixed {
  visibility: hidden;
}

.p-header-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 84.1874084919vw;
  max-width: 71.875rem;
  height: var(--header-height-md);
  padding-inline: 2.5rem;
  margin: 1.875rem auto;
  pointer-events: none;
  background-color: var(--color-white);
  border-radius: 3.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity var(--duration), background-color var(--duration), border-radius var(--duration), width var(--duration), margin var(--duration), box-shadow var(--duration);
}
@media screen and (max-width: 768px) {
  .p-header-fixed {
    width: 100%;
    max-width: none;
    height: 4rem;
    padding-inline: 0;
    margin: 0;
    background-color: rgba(255, 96, 26, 0);
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.5s, background-color 0.5s;
  }
}
.p-header-fixed.is-scrolled {
  pointer-events: auto;
  opacity: 1;
}
.p-header-fixed.is-scrolled.is-drawer-open {
  width: 100%;
  max-width: none;
  margin: 0;
  background-color: rgb(255, 96, 26);
  border-radius: 0;
  box-shadow: none;
}
.p-header-fixed .p-header__nav-item > a {
  font-size: 0.875rem;
}

.p-header__logo {
  position: relative;
  z-index: 1000;
  width: 10.0625rem;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 11.25rem;
    height: 100%;
    padding: 0.75rem 1.3125rem;
    padding-left: 1.25rem;
    transition: background-color var(--duration), border-radius var(--duration);
  }
}
@media screen and (max-width: 480px) {
  .p-header__logo {
    width: 10.875rem;
    padding: 0.75rem 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-header-fixed.is-scrolled .p-header__logo {
    height: 100%;
    background-color: var(--color-white);
    border-radius: 0 0 1.875rem 0;
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .p-header-fixed.is-scrolled.is-drawer-open .p-header__logo {
    background-color: transparent;
    border-radius: 0;
  }
}

.p-header__logo {
  display: block;
  color: var(--color-white);
  text-decoration: none;
}

.p-header__logo img {
  object-fit: contain;
}

.p-header__logo-orange {
  display: none;
}

.p-header-fixed.is-scrolled .p-header__logo-white {
  display: none;
}

.p-header-fixed.is-scrolled .p-header__logo-orange {
  display: block;
}

.p-header-fixed.is-scrolled.is-drawer-open .p-header__logo-white {
  display: block;
}

.p-header-fixed.is-scrolled.is-drawer-open .p-header__logo-orange {
  display: none;
}

.p-header__logo-main {
  font-family: var(--title-font-family);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-header__logo-main {
    font-size: 1.125rem;
  }
}

.p-header__logo-sub {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-header__logo-sub {
    font-size: 0.625rem;
  }
}

.p-header__logo-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L8 6H4v4l-4 4 4 4v4h4l4 4 4-4h4v-4l4-4-4-4V6h-4l-4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-header__logo-icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding-inline: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
}
.p-header__nav-item > a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-image: url("/brand/taiyou_no_sachi/assets/images/button_icon_white.BA8cJU2D.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--duration), transform var(--duration);
  translate: -50% calc(-50% - 1.25rem);
}
.p-header__nav-item > a::after {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: calc(100% - 0.75rem * 2);
  height: 1px;
  content: "";
  background-color: var(--color-white);
  transition: transform var(--duration);
  transform: scaleX(0);
  transform-origin: center;
  translate: -50% 1.25rem;
}
.p-header-fixed .p-header__nav-item > a {
  color: var(--color-orange);
}
.p-header-fixed .p-header__nav-item > a::before {
  background-image: url("/brand/taiyou_no_sachi/assets/images/button_icon_orange.D3UCpVZ3.svg");
}
.p-header-fixed .p-header__nav-item > a::after {
  background-color: var(--color-orange);
}

@media (any-hover: hover) {
  .p-header__nav-item > a:hover::before {
    opacity: 1;
    transform: rotate(90deg);
  }
  .p-header__nav-item > a:hover::after {
    transform: scaleX(1);
  }
}
.p-header__nav-item.is-current > a::before {
  opacity: 1;
}

.p-header__nav-item.is-current > a::after {
  transform: scaleX(1);
}

@media screen and (max-width: 768px) {
  .p-header-fixed .p-header__hamburger {
    width: 4rem;
    height: 100%;
    background-color: var(--color-orange);
    border-radius: 0 0 0 1.875rem;
    transition: background-color 0.5s, border-radius 0.5s;
  }
}
@media screen and (max-width: 480px) {
  .p-header-fixed .p-header__hamburger {
    width: 4rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-header-fixed.is-drawer-open .p-header__hamburger {
    background-color: transparent;
    border-radius: 0;
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: 4rem;
  height: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 1.5625rem;
  height: 2px;
  background-color: var(--color-white);
  transition: top calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67), background-color var(--duration);
  translate: -50% 0;
}
.p-header__hamburger span:nth-of-type(1) {
  top: -4px;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 4px;
}
.p-header-fixed .p-header__hamburger span {
  background-color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-header-fixed .p-header__hamburger span {
    background-color: var(--color-white);
  }
}
.p-header-fixed.is-drawer-open .p-header__hamburger span {
  background-color: var(--color-white);
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 1px;
  rotate: 30deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  top: -1px;
  rotate: -30deg;
}

.p-header__drawer {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100lvh - var(--header-height));
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
  background-color: var(--color-background);
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .p-header__drawer {
    top: 4rem;
    height: calc(100lvh - 4rem);
  }
}
.p-header__drawer::-webkit-scrollbar {
  display: none;
}
.p-header__drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.p-header__drawer-body {
  padding-inline: var(--padding-inner);
  padding-top: 2.625rem;
  background-color: var(--color-orange);
}

.p-header__drawer-nav {
  padding-bottom: 3.125rem;
}

.p-header__drawer-item > a {
  display: flex;
  align-items: center;
  padding-block: 0.875rem;
  text-decoration: none;
}

.p-header__drawer-text-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.p-header__drawer-title-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.p-header__drawer-item-en {
  position: relative;
  font-family: var(--montserrat-font-family);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--color-white);
}
.p-header__drawer-item-en::after {
  position: absolute;
  right: 0;
  bottom: 0rem;
  left: 0;
  display: block;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-white);
  transition: transform var(--duration);
  transform: scaleX(0);
  transform-origin: center;
}

.p-header__drawer-item-ja {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
}

.p-header__drawer-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}
.p-header__drawer-item-icon img {
  width: 0.5rem;
  height: 0.5rem;
  transition: transform var(--duration);
}

@media (any-hover: hover) {
  .p-header__drawer-item > a:hover .p-header__drawer-item-icon img {
    transform: rotate(90deg);
  }
  .p-header__drawer-item > a:hover .p-header__drawer-item-en::after {
    transform: scaleX(1);
  }
}

.p-header__drawer-footer {
  width: fit-content;
  padding-block: 1.5rem;
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}

.p-lineup-hero__title {
  width: 100%;
  max-width: 28.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-lineup-hero__title {
    max-width: 23.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-lineup-hero__title {
    max-width: 13.125rem;
  }
}

.p-product-list {
  background-color: var(--color-background);
}

.p-product-list__inner {
  padding-block: 3.75rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-product-list__inner {
    padding-block: 3.75rem;
  }
}

.p-product-card {
  display: block;
  width: 100%;
  padding: 3.625rem;
  text-align: left;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 12.5rem;
  transition: transform var(--duration), box-shadow var(--duration);
}
@media screen and (max-width: 768px) {
  .p-product-card {
    padding: 2.25rem 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-card {
    padding: 3.5rem 1.25rem;
  }
}
.p-product-card:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (any-hover: hover) {
  .p-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }
  .p-product-card:hover .c-button__icon img {
    transform: rotate(90deg);
  }
  .p-product-card:hover .c-button__text::after {
    transform: scaleX(0);
  }
}

.p-product-card__inner {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 41.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-product-card__inner {
    flex-direction: column;
  }
}

.p-product-card__media {
  flex-shrink: 0;
  height: 17.1875rem;
  margin-inline: auto;
}

.p-product-card__media img {
  object-fit: contain;
}

.p-product-card__body {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-product-card__body {
    align-items: center;
    width: fit-content;
  }
}

.p-product-card__brand {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .p-product-card__brand {
    text-align: center;
  }
}

.p-product-card__name {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-product-card__name {
    font-size: 1.25rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-product-card__name {
    font-size: 1.125rem;
  }
}

.p-product-card__meta {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-product-card__meta {
    text-align: center;
  }
}

.p-product-card__volume {
  margin-bottom: 0.625rem;
  font-family: var(--montserrat-font-family);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .p-product-card__volume {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-product-card__volume {
    font-size: 0.875rem;
  }
}

.p-product-card__labels {
  display: flex;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-product-card__labels {
    justify-content: center;
  }
}

.p-product-card__label {
  padding: 0.1875rem 0.625rem;
  margin-left: 0.5rem;
  font-family: var(--noto-sans-jp-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-product-card__label {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-card__label {
    font-size: 0.6875rem;
  }
}
.p-product-card__label--blue {
  margin-left: 0;
  color: var(--color-white);
  background-color: var(--color-blue);
}
.p-product-card__label--orange {
  color: var(--color-white);
  background-color: var(--color-orange);
}

.p-product-card__scent {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-product-card__scent {
    font-size: 0.875rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-product-card__scent {
    font-size: 0.75rem;
  }
}

.p-product-card__button {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-product-card__button {
    position: relative;
  }
}

.p-product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  scrollbar-width: none;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.p-product-modal::-webkit-scrollbar {
  display: none;
}
.p-product-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.p-product-modal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-product-modal__container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 66.5625rem;
  margin-block: 5vh;
  background-color: var(--color-white);
  border-radius: 3.125rem;
  transition: transform 0.3s;
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  .p-product-modal__container {
    margin-block: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__container {
    margin-block: 5rem 3.75rem;
    border-radius: 1.25rem;
  }
}
.p-product-modal.is-open .p-product-modal__container {
  transform: translateY(0);
}

.p-product-modal__close {
  position: absolute;
  top: 2.25rem;
  right: 2.25rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 0;
  transition: opacity var(--duration);
}
@media screen and (max-width: 768px) {
  .p-product-modal__close {
    top: 1rem;
    right: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__close {
    top: 0.75rem;
    right: 0.5rem;
  }
}
.p-product-modal__close:hover {
  opacity: 0.8;
}
.p-product-modal__close .p-product-modal__close-line {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  display: block;
  width: 2.5rem;
  height: 1px;
  content: "";
  background: var(--color-black);
  border-radius: 0.0625rem;
  transition: background 0.2s;
}
.p-product-modal__close .p-product-modal__close-line--left {
  transform: translateX(-50%) rotate(35deg);
}
.p-product-modal__close .p-product-modal__close-line--right {
  transform: translateX(-50%) rotate(-35deg);
}
.p-product-modal__close .p-product-modal__close-text {
  position: absolute;
  top: 2.875rem;
  left: 50%;
  padding: 0;
  font-family: var(--montserrat-font-family, sans-serif);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
  background: transparent;
  transform: translateX(-50%);
}

.p-product-modal__content {
  padding: 7.5rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__content {
    padding: 6.25rem 1.5rem 5rem;
  }
}

.p-product-modal__header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 3.125rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .p-product-modal__header {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-product-modal__header-media {
  margin-inline: auto;
}
.p-product-modal__header-media .splide {
  width: 20.6875rem;
  height: 20.6875rem;
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__header-media .splide {
    width: 16rem;
    height: 16rem;
  }
}
.p-product-modal__header-media .splide__track {
  height: 100%;
  margin-bottom: 0.75rem;
}
.p-product-modal__header-media .splide__list {
  height: 100%;
}
.p-product-modal__header-media .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-product-modal__header-media .splide__slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.p-product-modal__header-media .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-product-modal__header-media .splide__pagination {
  position: relative;
  bottom: 0;
}
.p-product-modal__header-media .splide__pagination__page {
  width: 0.75rem;
  height: 0.75rem;
  margin-inline: 0.375rem;
  background-color: #919191;
  border: none;
  opacity: 1;
}
.p-product-modal__header-media .splide__pagination__page.is-active {
  background-color: var(--color-white);
  border: 1px solid #919191;
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .p-product-modal__header-body {
    width: fit-content;
    margin-inline: auto;
  }
}

.p-product-modal__brand {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-main);
}
@media screen and (max-width: 480px) {
  .p-product-modal__brand {
    text-align: center;
  }
}

.p-product-modal__name {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-product-modal__name {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__name {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-product-modal__meta {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-product-modal__meta {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__meta {
    font-size: 0.875rem;
    text-align: center;
  }
}

.p-product-modal__volume {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.2;
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .p-product-modal__volume {
    text-align: center;
  }
}

.p-product-modal__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 480px) {
  .p-product-modal__labels {
    justify-content: center;
  }
}

.p-product-modal__label {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 1.25rem;
}
.p-product-modal__label--blue {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.p-product-modal__label--orange {
  color: var(--color-white);
  background-color: var(--color-orange);
}

.p-product-modal__scent-label {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.p-product-modal__variants {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 480px) {
  .p-product-modal__variants {
    justify-content: center;
  }
}

.p-product-modal__variant {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-product-modal__variant-image {
  width: 6.25rem;
  height: 6.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 0.625rem;
}
.p-product-modal__variant-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-product-modal__variant-text {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.p-product-modal__variant-volume {
  font-size: 0.875rem;
  line-height: 1.2;
  opacity: 0.5;
}

.p-product-modal__section {
  padding-bottom: 3.125rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.p-product-modal__section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-product-modal__section--scent {
  max-width: 51.25rem;
  margin-inline: auto;
}

.p-product-modal__section-title {
  margin-bottom: 2.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__section-title {
    font-size: 1rem;
  }
}

.p-product-modal__section-title-sp {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-title-sp {
    font-size: 0.75rem;
    text-align: center;
  }
}

.p-product-modal__section-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.p-product-modal__section-title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-product-modal__section-text {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-text {
    font-size: 0.75rem;
  }
}

.p-product-modal__scent-content {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-product-modal__scent-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

.p-product-modal__scent-list {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .p-product-modal__scent-list {
    width: 100%;
  }
}
.p-product-modal__scent-list dt {
  margin-bottom: 0.25rem;
  font-family: var(--montserrat-font-family);
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__scent-list dt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__scent-list dt {
    font-size: 0.875rem;
  }
}
.p-product-modal__scent-list dd {
  margin-bottom: 1.375rem;
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  white-space: pre-wrap;
}
.p-product-modal__scent-list dd:last-child {
  margin-bottom: 0;
}

.p-product-modal__scent-pyramid {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-product-modal__scent-pyramid {
    width: 100%;
    max-width: 17.5rem;
    margin-inline: auto;
  }
}

.p-product-modal__ingredients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__ingredients {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__ingredients {
    grid-template-columns: 1fr;
  }
}

.p-product-modal__ingredient {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5625rem;
  border: 1px solid #e5e5e5;
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__ingredient {
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1.875rem;
  }
}

.p-product-modal__ingredient-icon {
  flex-shrink: 0;
  width: 5.125rem;
  height: 5.125rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__ingredient-icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.p-product-modal__ingredient-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-product-modal__ingredient-body {
  flex: 1;
}

.p-product-modal__ingredient-sub {
  margin-bottom: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .p-product-modal__ingredient-sub {
    font-size: 0.875rem;
  }
}

.p-product-modal__ingredient-name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-product-modal__ingredient-name {
    font-size: 1rem;
  }
}

.p-product-modal__ingredient-desc {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
}

.p-product-modal__section-text-box-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.375rem 2rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-text-box-wrap {
    grid-template-columns: 1fr;
    gap: 3.125rem 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__section-text-box-wrap {
    gap: 1.875rem 1rem;
  }
}

.p-product-modal__section-text-wrap {
  grid-column: 1/-1;
}

.p-product-modal__section-items:nth-child(odd):nth-last-child(2) {
  grid-column: 1/-1;
}

.p-product-modal__section-items {
  display: flex;
  flex-direction: column;
}

.p-product-modal__section-items .p-product-modal__section-text-box {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.p-product-modal__section-text-box {
  padding: 2.5rem 2.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-text-box {
    padding: 1.875rem 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__section-text-box {
    padding: 1.25rem 1rem;
  }
}

.p-product-modal__section-text-title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-text-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-product-modal__section-text-title {
    font-size: 0.875rem;
  }
}
.p-product-modal__section-text-title:last-of-type {
  margin-bottom: 0rem;
}

.p-product-modal__section-text-desc {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product-modal__section-text-desc {
    font-size: 0.75rem;
  }
}

.p-shoplist-hero {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.p-shoplist-hero__inner {
  position: relative;
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__inner {
    padding-block: 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-shoplist-hero__inner {
    padding-block: 2.5rem;
  }
}

.p-shoplist-hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__bg {
    display: none;
  }
}

.p-shoplist-hero__col {
  position: absolute;
  top: 0;
  height: 100%;
}

.p-shoplist-hero__col--left {
  left: 5vw;
}

.p-shoplist-hero__col--right {
  right: 5vw;
}

.p-shoplist-hero__marquee {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.p-shoplist-hero__thumbs {
  display: flex;
  flex-direction: column;
  animation: p-shoplist-hero-marquee 18s linear infinite;
}

.p-shoplist-hero__marquee--reverse .p-shoplist-hero__thumbs {
  animation-name: p-shoplist-hero-marquee-reverse;
  animation-duration: 20s;
}

.p-shoplist-hero__thumb {
  width: 17.75rem;
  height: 15.5rem;
  margin-bottom: 1.75rem;
  overflow: hidden;
  border-radius: 5.5625rem;
}

.p-shoplist-hero__thumb-img {
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

.p-shoplist-hero__marquee-horizontal {
  display: none;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__marquee-horizontal {
    display: flex;
    margin-right: 0.75rem;
  }
}

.p-shoplist-hero__thumbs-horizontal {
  display: flex;
  flex-shrink: 0;
  animation: p-shoplist-hero-marquee-horizontal 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__thumbs-horizontal {
    min-width: 100vw;
  }
}

.p-shoplist-hero__thumb-horizontal {
  flex-shrink: 0;
  width: 8.75rem;
  height: 8.75rem;
  margin-right: 0.75rem;
  overflow: hidden;
  border-radius: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__thumb-horizontal {
    width: 43.2569974555vw;
    height: 38.1679389313vw;
  }
}
@media screen and (max-width: 480px) {
  .p-shoplist-hero__thumb-horizontal {
    width: 10.625rem;
    height: 9.375rem;
  }
}
.p-shoplist-hero__thumb-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-shoplist-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__content {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-shoplist-hero__content {
    margin-bottom: 2.75rem;
  }
}

.p-shoplist-hero__title {
  width: 17.75rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__title {
    width: 15rem;
  }
}
@media screen and (max-width: 480px) {
  .p-shoplist-hero__title {
    width: 10rem;
    margin-bottom: 0.5rem;
  }
}

.p-shoplist-hero__lead {
  margin-bottom: 2.5rem;
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6666666667;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-shoplist-hero__lead {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-shoplist-hero__lead {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.p-shoplist-hero__actions {
  display: flex;
  justify-content: center;
}

@keyframes p-shoplist-hero-marquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes p-shoplist-hero-marquee-reverse {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes p-shoplist-hero-marquee-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-top-hero {
  background-color: var(--color-orange);
}

.p-top-hero__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.p-top-hero__logo {
  margin-left: 0rem;
}

@media screen and (max-width: 768px) {
  .p-top-hero__marquee-item {
    width: 50vw;
    aspect-ratio: 249/297;
  }
}
@media screen and (max-width: 480px) {
  .p-top-hero__marquee-item {
    width: 61vw;
  }
}

@media screen and (max-width: 768px) {
  .p-top-hero__marquee-item img {
    aspect-ratio: 249/297;
    border-radius: 36%;
    object-fit: cover;
  }
}

.p-top-hero__nav-list {
  display: flex;
}

.p-top-hero__nav-item {
  margin-left: 1.5rem;
}

.p-top-hero__nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.p-top-hero__main {
  position: relative;
  padding-block: 2rem 5.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-hero__main {
    padding-block: 2rem 3.75rem;
  }
}

.p-top-hero__visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.p-top-hero__copy {
  position: relative;
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
  justify-content: center;
  width: 78vw;
  margin-inline: auto;
  margin-top: -13.5vw;
}
@media screen and (max-width: 768px) {
  .p-top-hero__copy {
    width: 85vw;
    max-width: 37.5rem;
    margin-top: -32vw;
  }
}
@media screen and (max-width: 480px) {
  .p-top-hero__copy {
    width: 100%;
    padding-inline: var(--padding-inner-sp);
  }
}

@media screen and (max-width: 768px) {
  .p-top-hero__copy--pc {
    display: none;
  }
}

.p-top-hero__copy--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-hero__copy--sp {
    display: block;
  }
}

.p-top-hero__copy-text {
  margin-bottom: 1rem;
}

.p-top-hero__title {
  margin-bottom: 1rem;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0.12em;
}

.p-top-hero__lead {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.p-top-hero__brand {
  margin-left: 0rem;
}

.p-top-concept {
  overflow: hidden;
  background-color: var(--color-background);
}

.p-top-concept__inner {
  padding-block: 8.4375rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-concept__inner {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-concept__inner {
    padding-block: 3.125rem 3.75rem;
  }
}

.p-top-concept__wrap {
  position: relative;
  display: flex;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-concept__wrap {
    flex-direction: column;
    margin-bottom: 1.625rem;
  }
}

.p-top-concept__content {
  position: relative;
  z-index: 1;
  width: 51%;
}
@media screen and (max-width: 768px) {
  .p-top-concept__content {
    width: 100%;
  }
}

.p-top-concept__label {
  width: 5.9375rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-concept__label {
    width: 18.5750636132vw;
    margin-bottom: 0.5rem;
  }
}

.p-top-concept__title {
  margin-bottom: 2rem;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.3666666667;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-top-concept__title {
    margin-bottom: 1.5rem;
    font-size: 8.1424936387vw;
  }
}

.p-top-concept__text {
  margin-bottom: 4.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-top-concept__text {
    margin-bottom: 3.125rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-concept__text {
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
  }
}

.p-top-concept__more {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 0.0625rem solid #ff6a1a;
}

.p-top-concept__more-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ff6a1a;
  letter-spacing: 0.1em;
}

.p-top-concept__image {
  position: absolute;
  right: -20.1vw;
  bottom: 3vw;
  width: 49.8125rem;
  pointer-events: none;
}
@media screen and (width <= 1200px) {
  .p-top-concept__image {
    width: 66.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-concept__image {
    position: relative;
    right: -34.5052083333vw;
    bottom: 0;
    width: 87.2395833333vw;
    margin-top: -23vw;
  }
}
@media screen and (max-width: 480px) {
  .p-top-concept__image {
    right: -10.941475827vw;
    width: 136.1323155216vw;
    margin-top: -7.6335877863vw;
  }
}

.p-top-concept__image-caption {
  position: absolute;
  bottom: 0;
  left: 53%;
  font-size: 0.625rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top-concept__image-caption {
    bottom: 3%;
    left: calc(-30px + (100vw - 500px) * 30 / 268);
  }
}
@media screen and (max-width: 480px) {
  .p-top-concept__image-caption {
    bottom: 3%;
    left: -5%;
  }
}

.p-top-concept__slide {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.p-top-concept__slide-list {
  gap: 2.8550512445vw;
  padding-right: 2.8550512445vw;
}

.p-top-concept__slide-item {
  width: 27.8184480234vw;
}
@media screen and (max-width: 768px) {
  .p-top-concept__slide-item {
    width: 52.0833333333vw;
  }
}
@media screen and (max-width: 480px) {
  .p-top-concept__slide-item {
    width: 71.2468193384vw;
  }
}

.p-top-concept__slide-item img {
  border-radius: 1.25rem;
}

.p-top-lineup {
  z-index: 0;
  background-color: var(--color-orange);
}

.p-top-lineup__container {
  overflow: hidden;
}

.p-top-lineup__inner {
  padding-block: 6.875rem 5.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__inner {
    padding-block: 3.75rem 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-lineup__inner {
    padding-block: 2.5rem;
  }
}

.p-top-lineup__head {
  margin-bottom: 2.25rem;
}

.p-top-lineup__title-en {
  width: 100%;
  max-width: 28.125rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__title-en {
    max-width: 18.75rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-lineup__title-en {
    max-width: 13.125rem;
  }
}

.p-top-lineup__title-ja {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5384615385;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__title-ja {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-lineup__title-ja {
    font-size: 1rem;
  }
}

.p-top-lineup__list {
  display: flex;
  justify-content: space-between;
}

.p-top-lineup__more {
  text-align: center;
}

.p-top-lineup__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2.9375rem 1rem;
  background-color: var(--color-white);
  border-radius: 12.5rem;
  transition: scale 0.4s ease-in-out;
}
.p-top-lineup__card:hover {
  scale: 1.03;
}

.p-top-lineup__card-image {
  height: 12.625rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}

.p-top-lineup__card-image img {
  object-fit: contain;
}

.p-top-lineup__card-body {
  text-align: center;
}

.p-top-lineup__card-name {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__card-name {
    font-size: 1.125rem;
  }
}

.p-top-lineup__card-sale {
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
}

.p-top-lineup__card-volume {
  margin-bottom: 0.625rem;
  font-family: var(--montserrat-font-family);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.5;
}

.p-top-lineup__card-tags {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.p-top-lineup__card-tag {
  padding: 0.1875rem 0.625rem;
  margin-left: 0.5rem;
  font-family: var(--noto-sans-jp-font-family);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 1.25rem;
}
.p-top-lineup__card-tag--medical {
  margin-left: 0;
  color: var(--color-white);
  background-color: var(--color-blue);
}
.p-top-lineup__card-tag--limited {
  color: var(--color-white);
  background-color: var(--color-orange);
}

.p-top-lineup__card-scent {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-top-lineup__slider {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__slider {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}
.p-top-lineup__slider .splide__track {
  overflow: visible;
}
.p-top-lineup__slider .splide__list {
  display: flex !important;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__slider .splide__list {
    justify-content: flex-start;
  }
}
.p-top-lineup__slider .splide__pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-lineup__slider .splide__pagination {
    position: static;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    padding: 0;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-lineup__slider .splide__pagination {
    gap: 0.875rem;
  }
}
.p-top-lineup__slider .splide__pagination__page {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0.0625rem solid var(--color-white);
  border-radius: 50%;
  opacity: 1;
  transition: background-color var(--duration);
}
@media screen and (max-width: 768px) {
  .p-top-lineup__slider .splide__pagination__page {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.p-top-lineup__slider .splide__pagination__page.is-active {
  background-color: var(--color-white);
  transform: none;
}

.p-top-lineup__slide {
  display: flex;
  width: calc(25% - 1rem);
}

.p-top-feature {
  background-color: var(--color-background);
}

.p-top-feature__inner {
  padding-block: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__inner {
    padding-block: 0 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__inner {
    padding-block: 0 2.5rem;
  }
}

.p-top-feature__wrap {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-feature__wrap {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-top-feature__sticky {
    display: contents;
  }
}

.p-top-feature__head {
  position: sticky;
  top: 9.375rem;
  margin-bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__head {
    top: 0;
    z-index: 10;
    width: 100vw;
    padding-top: 5.5rem;
    padding-bottom: 1.75rem;
    margin-inline: calc(50% - 50vw);
    background-color: rgba(239, 233, 223, 0.6509803922);
    backdrop-filter: blur(6px);
  }
}

.p-top-feature__title {
  width: 100%;
  max-width: 18.375rem;
  margin-top: 1.25rem;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__title {
    max-width: 12.5rem;
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__title {
    max-width: 9.375rem;
    margin-bottom: 0.25rem;
  }
}

.p-top-feature__lead {
  margin-bottom: 3.125rem;
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.8181818182;
  color: var(--color-orange);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top-feature__lead {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__lead {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.p-top-feature__nav {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__nav {
    justify-content: center;
  }
}

.p-top-feature__nav-item {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.875rem;
  font-family: var(--montserrat-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  cursor: pointer;
  background-color: var(--color-orange);
  border-radius: 1.25rem;
  transition: color var(--duration), background-color var(--duration);
}
@media (any-hover: hover) {
  .p-top-feature__nav-item:hover {
    color: var(--color-orange);
    background-color: var(--color-white);
  }
}

.p-top-feature__nav-item .p-top-feature__nav-num {
  flex-shrink: 0;
}

.p-top-feature__nav-label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.5s ease, margin-left 0.5s ease, opacity 0.35s ease;
}

.p-top-feature__nav-item--current {
  color: var(--color-orange);
  background-color: var(--color-white);
}
.p-top-feature__nav-item--current .p-top-feature__nav-label {
  max-width: 120px;
  opacity: 1;
  transition: max-width 0.7s ease, opacity 0.55s ease;
}

.p-top-feature__contents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 62.0817843866%;
}
@media screen and (max-width: 768px) {
  .p-top-feature__contents {
    width: 100%;
  }
}

.p-top-feature__card {
  padding: 3.25rem 4.125rem;
  background-color: var(--color-white);
  border-radius: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card {
    padding: 1.875rem 2.625rem 3.75rem;
  }
}

.p-top-feature__card-head-wrap {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-head-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-top-feature__card-head-wrap:last-child {
  margin-bottom: 0;
}

.p-top-feature__card-head {
  flex: 1;
}

.p-top-feature__card-title-wrap {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-title-wrap {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
}

.p-top-feature__card-title-note {
  font-size: 0.75rem;
  vertical-align: super;
}

.p-top-feature__card-number {
  height: fit-content;
  padding: 0.125rem 0.625rem;
  margin-top: 0.125rem;
  font-family: var(--montserrat-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-number {
    margin-top: 0;
    font-size: 0.75rem;
  }
}

.p-top-feature__card-body {
  flex: 1;
}

.p-top-feature__card-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__card-title {
    font-size: 1.125rem;
  }
}

.p-top-feature__card-text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8666666667;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-text {
    font-size: 0.875rem;
  }
}

.p-top-feature__card-text-note {
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.8666666667;
  vertical-align: super;
}

.p-top-feature__card-text-small {
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 480px) {
  .p-top-feature__card-text-small {
    font-size: 0.6875rem;
    line-height: 1.8181818182;
  }
}

.p-top-feature__card-image {
  width: 10rem;
  height: 10rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-image {
    width: 8.75rem;
    height: 8.75rem;
  }
}

.p-top-feature__card-image--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-image--pc {
    display: none;
  }
}

.p-top-feature__card-image--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-image--sp {
    display: block;
    margin-inline: auto;
    margin-bottom: 0.75rem;
  }
}

.p-top-feature__card-image img {
  border-radius: 50%;
}

.p-top-feature__card-step {
  max-width: 31.25rem;
  margin-inline: auto;
}

.p-top-feature__card-step-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-item {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__card-step-item {
    gap: 1rem;
  }
}

.p-top-feature__card-step-item:last-child {
  margin-bottom: 0;
}

.p-top-feature__card-step-item:not(:last-child) .p-top-feature__card-step-image::after {
  position: absolute;
  bottom: -1.1875rem;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  border-right: 0.125rem solid #d1d1d1;
  border-bottom: 0.125rem solid #d1d1d1;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-item:not(:last-child) .p-top-feature__card-step-image::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-top-feature__card-step-item:not(:last-child)::after {
    position: absolute;
    bottom: -1.625rem;
    left: 50%;
    z-index: 1;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    border-right: 0.125rem solid #d1d1d1;
    border-bottom: 0.125rem solid #d1d1d1;
    transform: translateX(-50%) rotate(45deg);
  }
}
.p-top-feature__card-step-image {
  position: relative;
  width: 6.375rem;
  height: 6.375rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-image {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__card-step-image {
    width: 4.375rem;
    height: 4.375rem;
  }
}

.p-top-feature__card-step-label {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-label {
    gap: 0.75rem;
  }
}

.p-top-feature__card-step-label-number {
  position: relative;
  padding-bottom: 0.1875rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-label-number {
    font-size: 0.625rem;
  }
}

.p-top-feature__card-step-label-number::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  content: "";
  border-bottom: 1px dashed currentcolor;
}

.p-top-feature__card-step-label-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-label-text {
    font-size: 1rem;
  }
}

.p-top-feature__card-step-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6428571429;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-step-text {
    font-size: 0.8125rem;
  }
}

.p-top-feature__card-ingredient {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-ingredient {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-top-feature__card-ingredient-item {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-ingredient-item {
    gap: 0.75rem;
    padding: 0.625rem 0rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-ingredient-item:not(:last-child) {
    border-bottom: 1px dashed #d1d1d1;
  }
}
.p-top-feature__card-ingredient-item:nth-child(odd) {
  border-right: 1px dashed #d1d1d1;
}
@media screen and (max-width: 768px) {
  .p-top-feature__card-ingredient-item:nth-child(odd) {
    border-right: none;
  }
}

.p-top-feature__card-ingredient-image {
  width: 3.75rem;
  height: 3.75rem;
}
.p-top-feature__card-ingredient-image img {
  border-radius: 0.5rem;
}

.p-top-feature__card-ingredient-text {
  flex: 1;
}

.p-top-feature__card-ingredient-sub {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #888;
}

.p-top-feature__card-ingredient-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-top-problems {
  overflow: hidden;
  background-color: var(--color-background);
}

.p-top-problems__inner {
  padding-block: 8.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-problems__inner {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__inner {
    padding-block: 3.125rem;
  }
}

.p-top-problems__head {
  margin-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-problems__head {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__head {
    margin-bottom: 2.5rem;
  }
}

.p-top-problems__title {
  width: 100%;
  max-width: 24.5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-problems__title {
    max-width: 18.75rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__title {
    max-width: 11.25rem;
  }
}

.p-top-problems__subtitle {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5384615385;
  color: var(--color-secondary);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-problems__subtitle {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__subtitle {
    font-size: 1rem;
  }
}

.p-top-problems__slider {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.p-top-problems__card {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  height: 100%;
  padding: 1.875rem;
  background-color: var(--color-white);
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-problems__card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__card {
    gap: 1rem;
  }
}

.p-top-problems__card-image {
  width: 100%;
  max-width: 18.75rem;
  aspect-ratio: 1/1;
}
.p-top-problems__card-image img {
  border-radius: 1.25rem;
}

.p-top-problems__card-body {
  flex: 1;
}

.p-top-problems__card-title {
  margin-bottom: 1rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .p-top-problems__card-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
}

.p-top-problems__card-text {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.7368421053;
  color: var(--color-text);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-problems__card-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__card-text {
    font-size: 0.875rem;
  }
}

.p-top-problems__slider .splide__pagination {
  position: static;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  padding: 0;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top-problems__slider .splide__pagination {
    gap: 0.875rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-problems__slider .splide__pagination {
    margin-top: 1.5rem;
  }
}
.p-top-problems__slider .splide__pagination__page {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: var(--color-background);
  border: 0.0625rem solid #919191;
  border-radius: 50%;
  opacity: 1;
  transition: background-color var(--duration);
}
@media screen and (max-width: 768px) {
  .p-top-problems__slider .splide__pagination__page {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.p-top-problems__slider .splide__pagination__page.is-active {
  background-color: #919191;
  transform: none;
}

.p-top-odor {
  padding-block: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-odor {
    padding-block: 3.75rem;
  }
}

.p-top-odor__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-odor__inner {
    max-width: calc(37.5rem + var(--padding-inner-sp) * 2);
  }
}

.p-top-odor__card {
  overflow: hidden;
  background-color: var(--color-background);
  border-radius: 1.25rem;
}

.p-top-odor__card-header {
  padding: 1rem 1.5rem;
  background-color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .p-top-odor__card-header {
    padding: 0.75rem 1rem;
  }
}

.p-top-odor__card-title {
  font-size: 1.4375rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-odor__card-title {
    font-size: 1.125rem;
  }
}

.p-top-odor__card-body {
  padding: 1.875rem 2.625rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-odor__card-body {
    padding: 1.5rem 1.25rem 2.625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-odor__card-body {
    padding: 1rem 1.25rem 2rem;
  }
}

.p-top-odor__card-text {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-text);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-odor__card-text {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }
}

.p-top-odor__flow {
  width: 100%;
  max-width: 21.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top-odor__flow {
    width: 90%;
    max-width: 18.75rem;
  }
}
.p-top-odor__flow img {
  width: 100%;
  height: auto;
}

.p-top-odor__type-image {
  width: 100%;
  max-width: 42.1875rem;
  margin-inline: auto;
}
.p-top-odor__type-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-top-odor__type-image {
    max-width: 25rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-top-odor__type-image {
    width: 100%;
  }
}

.p-top-smell {
  padding-block: 5rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 768px) {
  .p-top-smell {
    padding-block: 3.75rem;
  }
}

.p-top-smell__inner {
  max-width: 972px;
}

.p-top-smell__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-top-smell__card {
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 0.5rem;
}

.p-top-smell__card-header {
  padding: 1rem 1.5rem;
  background-color: var(--color-accent);
}

.p-top-smell__card-title {
  font-family: var(--gothic-a1-font-family);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-smell__card-title {
    font-size: 1.125rem;
  }
}

.p-top-smell__card-body {
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-smell__card-body {
    padding: 1.5rem 1.25rem;
  }
}

.p-top-smell__card-text {
  margin-bottom: 2rem;
  font-family: var(--gothic-a1-font-family);
  font-size: 0.875rem;
  line-height: 1.7142857143;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-top-smell__card-text {
    margin-bottom: 1.5rem;
  }
}

.p-top-smell__process {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-top-smell__process {
    gap: 0.5rem;
  }
}

.p-top-smell__process-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.p-top-smell__process-icon {
  width: 3rem;
  height: 3rem;
}
.p-top-smell__process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-top-smell__process-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-top-smell__process-label {
  font-family: var(--gothic-a1-font-family);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
}

.p-top-smell__process-arrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}
@media screen and (max-width: 768px) {
  .p-top-smell__process-arrow {
    font-size: 1rem;
  }
}

.p-top-smell__card-body--types {
  position: relative;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-top-smell__card-body--types {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-top-smell__types {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}

.p-top-smell__type {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 3.125rem;
}

.p-top-smell__type--head {
  align-self: flex-start;
}

.p-top-smell__type--body {
  align-self: flex-start;
}

.p-top-smell__type--armpit {
  align-self: flex-end;
}

.p-top-smell__type--feet {
  align-self: flex-end;
}

.p-top-smell__type-part {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--gothic-a1-font-family);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 50%;
}

.p-top-smell__type-text {
  font-family: var(--gothic-a1-font-family);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text);
}

.p-top-smell__figure {
  flex-shrink: 0;
  width: 10rem;
}
.p-top-smell__figure img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-top-smell__figure {
    width: 8.75rem;
  }
}

.p-top-fragrance {
  background-color: var(--color-orange);
}

.p-top-fragrance__inner {
  max-width: 60.625rem;
  padding-block: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-fragrance__inner {
    padding-block: 3.75rem;
  }
}

.p-top-fragrance__content {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-fragrance__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .p-top-fragrance__content {
    gap: 1.5rem;
  }
}

.p-top-fragrance__text {
  width: 48.4083424808%;
}
@media screen and (max-width: 768px) {
  .p-top-fragrance__text {
    width: 100%;
  }
}

.p-top-fragrance__title {
  margin-bottom: 1.5rem;
  font-family: var(--gothic-a1-font-family);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-top-fragrance__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
  }
}

.p-top-fragrance__description {
  font-family: var(--gothic-a1-font-family);
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-fragrance__description {
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-top-fragrance__description {
    font-size: 0.875rem;
  }
}

.p-top-fragrance__pyramid {
  width: 45.6641053787%;
}
@media screen and (max-width: 768px) {
  .p-top-fragrance__pyramid {
    width: 90%;
    max-width: 25rem;
    margin-inline: auto;
    transform: translateX(4%);
  }
}

.p-top-fragrance__image {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-top-fragrance__image {
    height: 13.75rem;
  }
}

.p-top-commitment__inner {
  padding-block: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__inner {
    padding-block: 3.75rem;
  }
}

.p-top-commitment__head {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__head {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-commitment__head {
    margin-bottom: 1.5rem;
  }
}

.p-top-commitment__title {
  width: 100%;
  max-width: 43.75rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__title {
    max-width: 25rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-commitment__title {
    max-width: 20rem;
  }
}

.p-top-commitment__subtitle {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5384615385;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__subtitle {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-commitment__subtitle {
    font-size: 1rem;
  }
}

.p-top-commitment__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__cards {
    gap: 1.5rem;
  }
}

.p-top-commitment__card {
  padding: 3rem 6rem;
  background-color: var(--color-background);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__card {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-commitment__card {
    padding: 1.25rem;
  }
}

.p-top-commitment__card-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__card-wrap {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

.p-top-commitment__card-media {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__card-media {
    width: 100%;
  }
}

.p-top-commitment__card-media img {
  border-radius: 1.25rem;
}

.p-top-commitment__card-body {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__card-body {
    width: 100%;
  }
}

.p-top-commitment__card-title {
  margin-bottom: 1rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-top-commitment__card-title {
    font-size: 1.25rem;
  }
}

.p-top-commitment__card-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.1428571429;
  color: var(--color-text);
  text-align: justify;
}

.p-top-commitment__quality {
  padding: 3.5rem;
  background-color: var(--color-background);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality {
    padding: 1.5rem;
  }
}

.p-top-commitment__quality-title {
  margin-bottom: 1rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5384615385;
  color: var(--color-orange);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality-title {
    font-size: 1.25rem;
    text-align: left;
  }
}

.p-top-commitment__quality-text {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality-text {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-top-commitment__quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-top-commitment__quality-item {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background-color: var(--color-white);
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality-item {
    padding: 0.875rem;
  }
}

.p-top-commitment__quality-icon {
  width: 1.625rem;
  height: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality-icon {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-top-commitment__quality-label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-top-commitment__quality-label {
    font-size: 0.875rem;
  }
}

.p-top-voice {
  background-color: var(--color-orange);
}

.p-top-voice__inner {
  padding-block: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-voice__inner {
    padding-block: 3.75rem 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-voice__inner {
    padding-block: 3.75rem;
  }
}

.p-top-voice__header {
  margin-bottom: 4rem;
  text-align: center;
}

.p-top-voice__title {
  width: 100%;
  max-width: 13.5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-voice__title {
    max-width: 11.25rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-voice__title {
    max-width: 6.5625rem;
  }
}

.p-top-voice__subtitle {
  font-family: var(--noto-sans-jp-font-family);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5384615385;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-voice__subtitle {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-voice__subtitle {
    font-size: 1rem;
  }
}

.p-top-voice__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-voice__list {
    gap: 1.5rem;
  }
}

.p-top-voice__card {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 4.5rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card {
    flex-direction: column-reverse;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.p-top-voice__card--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card--reverse {
    flex-direction: column-reverse;
  }
}

.p-top-voice__card-media {
  display: grid;
  width: 49%;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card-media {
    width: 100%;
  }
}

.p-top-voice__card-media img {
  border-radius: 1.25rem;
}

.p-top-voice__card-picture {
  display: block;
  grid-area: 1/1;
}
.p-top-voice__card-picture img {
  display: block;
  width: 100%;
}

.p-top-voice__card-picture.p-top-voice__card-picture--b {
  animation: voice-img-flicker 1.6s linear infinite;
}

@keyframes voice-img-flicker {
  0%, 49.9% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.p-top-voice__card-body {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card-body {
    width: 100%;
  }
}

.p-top-voice__card--reverse .p-top-voice__card-body {
  margin-right: 2.5rem;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card--reverse .p-top-voice__card-body {
    margin-right: 0;
  }
}

.p-top-voice__card-label {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card-label {
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-top-voice__card-title {
  margin-bottom: 1rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .p-top-voice__card-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-voice__card-title {
    font-size: 1.125rem;
  }
}

.p-top-voice__card-text {
  font-size: 1rem;
  line-height: 1.875;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-voice__card-text {
    font-size: 0.875rem;
  }
}

.p-top-faq {
  background-color: var(--color-background);
}

.p-top-faq__inner {
  display: flex;
  padding-block: 8.125rem 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__inner {
    flex-direction: column;
    padding-block: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__inner {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-top-faq__head {
  width: 16.875rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__head {
    width: 100%;
    margin-inline: auto;
  }
}

.p-top-faq__title-en {
  width: 8.1875rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__title-en {
    width: 6.25rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__title-en {
    width: 3.75rem;
  }
}

.p-top-faq__title-ja {
  margin-bottom: 5rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-top-faq__title-ja {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__title-ja {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-faq__more {
    margin-inline: auto;
  }
}

.p-top-faq__list {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-top-faq__list {
    margin-bottom: 2.5rem;
  }
}

.p-top-faq__item {
  margin-bottom: 1.25rem;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__item {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__item {
    margin-bottom: 0.75rem;
  }
}

.p-top-faq__q {
  width: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__q {
    width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__q {
    width: 1.25rem;
  }
}

.p-top-faq__q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-top-faq__q-text {
    font-size: 0.875rem;
  }
}

.p-top-faq__toggle {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__toggle {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__toggle {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-top-faq__a {
  width: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-top-faq__a {
    width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-faq__a {
    width: 1.25rem;
  }
}

.p-top-faq__a-text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .p-top-faq__a-text {
    font-size: 0.875rem;
  }
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

@media (width <= 768px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 769px) {
  [data-only-device=sm] {
    display: none;
  }
}

@media (width <= 768px) {
  .u-sp-only {
    display: none;
  }
}

@media (width >= 769px) {
  .u-pc-only {
    display: none;
  }
}

@media (width >= 480px) {
  .u-sm-only {
    display: none;
  }
}

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

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

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

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}