@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

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

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

* {
  padding: 0;
  margin: 0;
}

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

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

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

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

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

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

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

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

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

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

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

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

button, select {
  text-transform: none;
}

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

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

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

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

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

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

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

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

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

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

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

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

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

body {
  min-width: 0;
  position: relative;
  overflow-x: hidden;
  background-color: #fffdea;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
body.is-fixed {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 1660px) {
  html {
    font-size: 0.6024096386vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
  body {
    font-size: 1.4rem;
  }
}
* {
  color: var(--text-color, #583c32);
  letter-spacing: 0.05em;
}

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

p {
  line-height: 1.875;
}

em,
address {
  font-style: normal;
}

a {
  color: var(--text-color, inherit);
  text-decoration: none;
}
a:hover img {
  opacity: 1;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.js-fade-up {
  opacity: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-transition: opacity 0.7s ease-out, -webkit-filter 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-filter 0.7s ease-out;
  transition: filter 0.7s ease-out, opacity 0.7s ease-out;
  transition: filter 0.7s ease-out, opacity 0.7s ease-out, -webkit-filter 0.7s ease-out;
  will-change: filter;
}
.js-fade-up.is-visible {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.js-text-svg-01 path {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  -webkit-transform: translateY(3.2rem);
          transform: translateY(3.2rem);
}
.js-text-svg-01 path.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .u-tab-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}
.u-mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-5 {
  margin-top: 0.5em;
}
.u-mt-10 {
  margin-top: 1em;
}
.u-mt-15 {
  margin-top: 1.5em;
}
.u-mt-20 {
  margin-top: 2em;
}
.u-mt-sm {
  margin-top: 3.2rem !important;
}
.u-mt-md {
  margin-top: 4rem;
}
.u-mt-lg {
  margin-top: 7.2rem !important;
}
.u-mt-xlg {
  margin-top: 12rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 1em;
}
.mb-15 {
  margin-bottom: 1.5em;
}
.mb-20 {
  margin-bottom: 2em;
}
.mb-sm {
  margin-bottom: 3rem !important;
}
.mb-md {
  margin-bottom: 3.6rem !important;
}
.mb-lg {
  margin-bottom: 7.2rem !important;
}

.ms-auto {
  margin-left: auto;
}

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

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

.u-width-100 {
  width: 100%;
}

.u-height-100 {
  height: 100%;
}

.bg-01 {
  background-color: #f7f7f7;
}
.bg-02 {
  background-color: #61b6f2;
}
.bg-dark {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bg-dark.is-active {
  background-color: #798389;
  --text-color: #fff;
}
.bg-gray {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bg-gray.is-active {
  background-color: #eff1f4;
}
.bg-white {
  background-color: #fff;
}

.w-100 {
  width: 100%;
}
.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.w-auto {
  width: auto;
}
.w-sm {
  max-width: 62rem;
}
.w-md {
  max-width: 100rem;
}

.hr-01 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: none;
  border-top: 1px solid #ccc;
}

.u-text-serif {
  font-weight: 900;
}
.u-text-en {
  font-family: "Cormorant Garamond", serif;
}
.u-text-unset {
  font-family: initial;
}
.u-text-center {
  text-align: center;
}
.u-text-start {
  text-align: left;
}
.u-text-end {
  text-align: right;
}
.u-text-primary {
  --text-color: #61b6f2;
}
.u-text-secondary {
  --text-color: #fa8500;
}
.u-text-white {
  --text-color: #fff;
}
.u-text-black {
  --text-color: #020202;
}
.u-text-gray {
  --text-color: #bebebe;
}
.u-text-yellow {
  --text-color: #f6dc64;
}
.u-text-blue {
  --text-color: #61b6f2;
}
.u-text-xs {
  font-size: 1rem;
}
.u-text-sm {
  font-size: 1.2rem;
}
.u-text-lg {
  font-size: 2rem;
}
.u-text-xl {
  font-size: 2.4rem;
}
.u-text-xxl {
  font-size: 3.2rem;
}
.u-text-light {
  font-weight: 300;
}
.u-text-normal {
  font-weight: 400;
}
.u-text-medium {
  font-weight: 500;
}
.u-text-semibold {
  font-weight: 600;
}
.u-text-bold {
  font-weight: 700;
}
.u-text-extrabold {
  font-weight: 800;
}
.u-text-black {
  font-weight: 900;
}
.u-text-ls-0 {
  letter-spacing: 0;
}

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

.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-grid {
  display: grid !important;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.u-position-absolute {
  position: absolute;
}
.u-position-relative {
  position: relative;
}

.u-img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.u-img-fluid {
  width: var(--width-pc, inherit) !important;
  height: auto;
}

@media screen and (max-width: 767px) {
  .u-img-fluid {
    width: var(--width-sp) !important;
  }
}
.u-link-image {
  overflow: hidden;
}
.u-link-image img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.u-link-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.u-link-disable {
  pointer-events: none;
}

.c-breadcrumbs {
  margin-top: 7rem;
  margin-bottom: 12rem;
  font-size: 1.2rem;
}
.c-breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25em 0.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-breadcrumbs__inner > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumbs__inner > span:not(:last-child)::after {
  content: "";
  width: 0.6rem;
  height: 0.9rem;
  margin-top: 2px;
  display: inline-block;
  background-image: url("../../images/common/breadcrumbs-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.c-breadcrumbs__inner * {
  letter-spacing: 0;
}

.c-navi__01 {
  margin-top: 7rem;
}
.c-navi__01--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-navi__01--item {
  width: 21rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.c-navi__01 a {
  width: 100%;
  max-width: 100%;
  height: 6rem;
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--theme-color, #61b6f2);
  border-radius: 3rem;
  background-color: #fff;
  font-weight: 700;
}
.c-navi__01 a.is-active {
  background-color: var(--theme-color, #61b6f2);
  color: #fff;
  pointer-events: none;
}

.c-pager__archive {
  margin-top: 12rem;
}
.c-pager__archive--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-pager__archive .page-numbers {
  width: 1.25em;
  text-align: center;
  letter-spacing: 0;
  font-weight: 700;
}
.c-pager__archive .page-numbers.current {
  color: var(--theme-color, #61b6f2);
  text-decoration: underline;
  pointer-events: none;
}

.c-agree {
  margin-top: 4.8rem;
  text-align: center;
}

.c-agree__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 1.3rem;
}

.c-agree__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  color: #333;
}
.c-agree__check input[type=checkbox] {
  width: 1.3rem;
  height: 1.3rem;
  accent-color: #109078;
  cursor: pointer;
}

.c-agree__link {
  color: #109078;
  text-decoration: underline;
}
.c-agree__link:hover {
  text-decoration: underline;
}

.c-agree__linkIcon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.4rem;
  color: #333;
}
.c-agree__linkIcon:hover {
  opacity: 0.7;
}

.c-agree__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  vertical-align: middle;
}

.c-formSubmit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 3.2rem auto 0;
  padding: 1.56rem 2.3rem 1.56rem 3.16rem;
  border: none;
  border-radius: 1rem;
  background-color: #109078;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-formSubmit span {
  color: #fff;
}
.c-formSubmit:hover:not(:disabled) {
  opacity: 0.85;
}
.c-formSubmit:disabled {
  background-color: #999;
  cursor: not-allowed;
  opacity: 0.7;
}
.c-formSubmit--arrow {
  font-size: 1.4rem;
}

.c-btn__01 {
  width: 42rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 100%;
  height: 8rem;
  padding: 0 7.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--btn-border-color, #583c32);
  border-radius: 4rem;
  background-color: var(--btn-bg-color);
}
.c-btn__01--text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-weight: 700;
}
.c-btn__01--arrow {
  width: 1.2em;
  position: absolute;
  top: calc(50% - 0.6em);
  right: 1.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--btn-arrow-bg-color, #583c32);
  color: var(--btn-arrow-color);
  line-height: 1;
  aspect-ratio: 1;
}
.c-btn__01--arrow-icon {
  width: 37.5%;
  margin-left: 10%;
  font-size: 0;
  line-height: 0;
}
.c-btn__01--arrow-icon * {
  color: var(--btn-arrow-color, #fff);
}
.c-btn__01--arrow-icon svg {
  width: 100%;
}
.c-btn__01--ver3 {
  --btn-arrow-bg-color: #fff;
  --btn-arrow-color: #583c32;
  --btn-border-color: #fff;
}
.c-btn__01--anchor .c-btn__01--arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-btn__02 {
  width: 28rem;
  margin-top: 8rem;
  padding-bottom: 1.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  font-size: 1.6rem;
}
.c-btn__02::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--text-color, #583c32);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-btn__02--arrow {
  width: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--text-color, #583c32);
  line-height: 1;
  aspect-ratio: 1;
}
.c-btn__02--arrow-icon {
  width: 37.5%;
  margin-left: 10%;
  font-size: 0;
  line-height: 0;
}
.c-btn__02--arrow-icon svg {
  width: 100%;
}

.c-arrow__01 {
  width: 2.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: var(--text-color, #583c32);
  line-height: 1;
  aspect-ratio: 1;
}
.c-arrow__01--icon {
  width: 37.5%;
  margin-left: 10%;
  font-size: 0;
  line-height: 0;
}
.c-arrow__01--icon svg {
  width: 100%;
}

.c-link[target=_blank] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-link[target=_blank]::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'><path fill='%23333333' d='M12 6.615C11.8011 6.615 11.6103 6.69402 11.4697 6.83467C11.329 6.97532 11.25 7.16609 11.25 7.365V12.75C11.25 12.9489 11.171 13.1397 11.0303 13.2803C10.8897 13.421 10.6989 13.5 10.5 13.5H2.25C2.05109 13.5 1.86032 13.421 1.71967 13.2803C1.57902 13.1397 1.5 12.9489 1.5 12.75V4.5C1.5 4.30109 1.57902 4.11032 1.71967 3.96967C1.86032 3.82902 2.05109 3.75 2.25 3.75H7.635C7.83391 3.75 8.02468 3.67098 8.16533 3.53033C8.30598 3.38968 8.385 3.19891 8.385 3C8.385 2.80109 8.30598 2.61032 8.16533 2.46967C8.02468 2.32902 7.83391 2.25 7.635 2.25H2.25C1.65326 2.25 1.08097 2.48705 0.65901 2.90901C0.237053 3.33097 0 3.90326 0 4.5V12.75C0 13.3467 0.237053 13.919 0.65901 14.341C1.08097 14.7629 1.65326 15 2.25 15H10.5C11.0967 15 11.669 14.7629 12.091 14.341C12.5129 13.919 12.75 13.3467 12.75 12.75V7.365C12.75 7.16609 12.671 6.97532 12.5303 6.83467C12.3897 6.69402 12.1989 6.615 12 6.615ZM14.94 0.465C14.8639 0.281738 14.7183 0.136106 14.535 0.0599999C14.4448 0.0215692 14.348 0.00118499 14.25 0H9.75C9.55109 0 9.36032 0.0790176 9.21967 0.21967C9.07902 0.360322 9 0.551088 9 0.75C9 0.948912 9.07902 1.13968 9.21967 1.28033C9.36032 1.42098 9.55109 1.5 9.75 1.5H12.4425L4.7175 9.2175C4.6472 9.28722 4.59141 9.37017 4.55333 9.46157C4.51525 9.55296 4.49565 9.65099 4.49565 9.75C4.49565 9.84901 4.51525 9.94704 4.55333 10.0384C4.59141 10.1298 4.6472 10.2128 4.7175 10.2825C4.78722 10.3528 4.87017 10.4086 4.96157 10.4467C5.05296 10.4847 5.15099 10.5043 5.25 10.5043C5.34901 10.5043 5.44704 10.4847 5.53843 10.4467C5.62983 10.4086 5.71278 10.3528 5.7825 10.2825L13.5 2.5575V5.25C13.5 5.44891 13.579 5.63968 13.7197 5.78033C13.8603 5.92098 14.0511 6 14.25 6C14.4489 6 14.6397 5.92098 14.7803 5.78033C14.921 5.63968 15 5.44891 15 5.25V0.75C14.9988 0.651992 14.9784 0.555167 14.94 0.465Z'/></svg>");
}

@-webkit-keyframes arrow-slide {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  49% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes arrow-slide {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  49% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes line-slide {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@keyframes line-slide {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@media screen and (min-width: 768px) {
  .c-btn__01 {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out, background-color 0.3s;
  }
  .c-btn__01--ver1:hover {
    --btn-arrow-bg-color: #fff;
    --btn-arrow-color: #583c32;
    --btn-bg-color: #583c32;
    --text-color: #fff;
  }
  .c-btn__01--ver3:hover {
    --btn-arrow-bg-color: #583c32;
    --btn-arrow-color: #fff;
    --btn-bg-color: #fff;
    --btn-border-color: #fff;
    --text-color: #583c32;
  }
  .c-btn__02 {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    gap: 1.5rem;
  }
  .c-btn__02--inner {
    position: relative;
    overflow: hidden;
  }
  .c-btn__02--inner::after {
    content: attr(data-text);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
  }
  .c-btn__02--text {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .c-btn__02:hover::after {
    -webkit-animation: line-slide 0.6s ease-in-out forwards;
            animation: line-slide 0.6s ease-in-out forwards;
  }
  .c-btn__02:hover .c-btn__02--inner[data-text]::after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .c-btn__02:hover .c-btn__02--inner[data-text] .c-btn__02--text {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  a:hover .c-btn__02--arrow-icon {
    -webkit-animation: arrow-slide 0.6s ease-in-out forwards;
            animation: arrow-slide 0.6s ease-in-out forwards;
  }
  a:hover .c-arrow__01--icon {
    -webkit-animation: arrow-slide 0.6s ease-in-out forwards;
            animation: arrow-slide 0.6s ease-in-out forwards;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__01 {
    height: 5.8rem;
    padding: 0 3.2rem;
  }
  .c-btn__01--text {
    font-size: 1.5rem;
  }
  .c-btn__01.sp-dark {
    background-color: #583c32;
    --btn-arrow-bg-color: #fffdea;
    --btn-arrow-color: #583c32;
    --text-color: #fff;
  }
  .c-btn__02 {
    font-size: 1.4rem;
  }
  .c-btn__02--arrow {
    width: 2.4rem;
  }
}
input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.c-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  margin-bottom: 8.65rem;
}
.c-steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10rem;
  height: 4rem;
  border: 2px solid #F7F7F7;
  background-color: #F7F7F7;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #109078;
}
.c-steps__item.is-active {
  border-color: #109078;
  background-color: #109078;
  color: #fff;
}
.c-steps__arrow {
  width: 0.6rem;
  height: 0.9rem;
  display: inline-block;
  background-image: url("../../images/common/breadcrumbs-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .c-steps__item {
    width: 8rem;
    height: 3.6rem;
    font-size: 1.4rem;
  }
}
.c-heading__01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-heading__01--label {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
}
.c-heading__01--title {
  font-weight: 700;
  font-size: 2.4rem;
}
.c-heading__02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-heading__02.u-text-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-heading__02--label {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 6rem;
  line-height: 1;
}
.c-heading__02--title {
  font-weight: 700;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .c-heading__02-v2 .c-heading__02--label {
    font-size: 7rem;
  }
  .c-heading__02-v2 .c-heading__02--title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading__01--label {
    font-size: 4.2rem;
  }
  .c-heading__01--title {
    font-size: 1.4rem;
  }
  .c-heading__02--label {
    font-size: 4.2rem;
  }
  .c-heading__02--title {
    font-size: 1.4rem;
  }
}
.c-headerWave {
  display: block;
  width: 100%;
  height: 28rem;
  background-image: url("../../images/common/block-wave-bottom.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}
.c-headerWave::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #109078;
}

.c-innerHero--heading img, .c-innerHero--headingImg {
  display: block;
  max-width: 100%;
  height: auto;
}
.c-innerHero .c-heading__01 {
  margin-top: 4rem;
  height: 11.5rem;
}
.c-innerHero .c-breadcrumbs {
  margin-bottom: 0;
}

.c-recruitNavi {
  margin-bottom: 10rem;
}

.c-recruitNavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 85.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-recruitNavi__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  width: 24.5rem;
  padding: 1.4rem 1.7rem;
  border-radius: 50em;
  background-color: #fff;
  border: 1px solid #109078;
  color: #109078;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.c-recruitNavi__item .c-recruitNavi__label {
  color: inherit;
}
.c-recruitNavi__item:hover {
  border-color: #109078;
  color: #109078;
}
.c-recruitNavi__item:hover .c-recruitNavi__label {
  color: #109078;
}
.c-recruitNavi__item.is-active {
  background-color: #109078;
  border-color: #109078;
  color: #fff;
}
.c-recruitNavi__item.is-active .c-recruitNavi__label {
  color: #fff;
}
.c-recruitNavi__item.is-active .c-recruitNavi__icon {
  background-color: #fff;
}

.c-recruitNavi__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: #109078;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-recruitNavi__icon--01 {
  -webkit-mask-image: url("../../images/recruit/icon_wwlf01.svg");
          mask-image: url("../../images/recruit/icon_wwlf01.svg");
}
.c-recruitNavi__icon--02 {
  -webkit-mask-image: url("../../images/recruit/icon_wwlf02.svg");
          mask-image: url("../../images/recruit/icon_wwlf02.svg");
}
.c-recruitNavi__icon--03 {
  -webkit-mask-image: url("../../images/recruit/icon_wwlf03.svg");
          mask-image: url("../../images/recruit/icon_wwlf03.svg");
}
.c-recruitNavi__icon--04 {
  -webkit-mask-image: url("../../images/recruit/icon_wwlf04.svg");
          mask-image: url("../../images/recruit/icon_wwlf04.svg");
}
.c-recruitNavi__icon--05 {
  -webkit-mask-image: url("../../images/recruit/icon_wwlf05.svg");
          mask-image: url("../../images/recruit/icon_wwlf05.svg");
}
.c-recruitNavi__icon--06 {
  -webkit-mask-image: url("../../images/recruit/icon_wwlf06.svg");
          mask-image: url("../../images/recruit/icon_wwlf06.svg");
}

.c-recruitCta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #109078;
}

.c-recruitCta__inner {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-recruitCta__text {
  margin: 0 0 1.6rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
}

.c-recruitCta__btn {
  background-color: #fff;
  color: #109078;
  --text-color: #109078;
  border: 1px solid #fff;
  margin-top: 0;
}
.c-recruitCta__btn .c-btn__01--arrow {
  border-color: #109078;
}
.c-recruitCta__btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #109078;
}

@media screen and (max-width: 767px) {
  .c-recruitNavi__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-recruitNavi__item {
    min-width: 100%;
  }
}
.c-pill {
  display: inline-block;
  padding: 0rem 3.2rem;
  border-radius: 10rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.c-pill--tealFill {
  background-color: #109078;
  color: #fff;
}
.c-pill--tealOutline {
  padding: 0.8rem 3.2rem;
  background-color: #fff;
  color: #109078;
}
.c-pill--lg {
  font-size: 3rem;
}

.c-sectionTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
.c-sectionTitle .c-pill {
  margin: 0;
}
.c-sectionTitle--overlap {
  margin-bottom: -2rem;
}

.c-tag {
  display: inline-block;
  padding: 0.2rem 1.4rem;
  border-radius: 2rem;
  background-color: #d9d9d9;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.c-tag--news {
  background-color: #ffcd58;
  color: #fff;
}
.c-tag--exhibition {
  background-color: #8decb5;
}
.c-tag--other {
  background-color: #999;
  color: #fff;
}
.c-tag--required {
  padding: 0.2rem 0.8rem;
  background-color: #ffcd58;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 0.3rem;
}
.c-tag__icon {
  width: 3.2rem;
  position: absolute;
  top: -1.6rem;
  left: -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #ff9d00;
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 0.8rem;
  aspect-ratio: 1;
}

.c-archive {
  background-color: #f0f0f0;
  padding: 2.4rem;
  border-radius: 1rem;
}

.c-archive__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 1.6rem;
  padding-left: 1.8rem;
  position: relative;
}
.c-archive__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #61b6f2;
}

.c-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-archive__item {
  font-size: 1.8rem;
  line-height: 1.8;
}
.c-archive__item a {
  text-decoration: none;
  color: inherit;
}
.c-archive__item a:hover {
  text-decoration: underline;
}

.c-sectionLinks--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}
.c-sectionLinks--list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 28rem;
}

.c-sectionRecruit--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-sectionRecruit--visual {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  min-width: 30rem;
  margin: 0;
  margin-right: -1px;
}
.c-sectionRecruit--visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.c-sectionRecruit--text {
  min-width: 30rem;
  background-color: rgba(97, 182, 242, 0.6);
  color: #fff;
  padding: 4rem 4rem 4rem 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.c-sectionRecruit--message {
  margin: 0;
}
.c-sectionRecruit--message p {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: #fff;
}
.c-sectionRecruit--message p:last-child {
  margin-bottom: 0;
}
.c-sectionRecruit--btn {
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 0;
  background-color: var(--theme-color, #61b6f2);
  color: #fff;
  --text-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.c-sectionRecruit--btn .c-btn__01--arrow {
  border-color: #fff;
}

.c-sectionContact {
  background-color: #e7e7e7;
  padding: 5.1rem;
}
.c-sectionContact--text {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.875;
}
.c-sectionContact--text::first-line {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-sectionRecruit--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-sectionRecruit--visual {
    min-width: 100%;
  }
  .c-sectionRecruit--visual img {
    height: 100%;
  }
  .c-sectionRecruit--text {
    min-width: 100%;
    padding: 3rem 2rem;
  }
  .c-sectionRecruit--message p {
    font-size: 1.6rem;
  }
  .c-sectionLinks--list > li {
    min-width: 100%;
  }
}
.c-sectionWave {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  aspect-ratio: 480/457;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.c-sectionWave img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.c-sectionWave--company {
  aspect-ratio: 1440/403;
}
.c-sectionWave--company img {
  top: 0;
  bottom: auto;
  -o-object-position: center top;
     object-position: center top;
}
.c-sectionWave--companyBottom {
  top: auto;
  bottom: -20rem;
  aspect-ratio: 1440/329;
}
.c-sectionWave--companyBottom img {
  bottom: 0;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.c-table__01--content {
  display: grid;
  grid-template-columns: 25rem 1fr;
}
.c-table__01--head, .c-table__01--detail {
  padding: 2.5rem;
}
.c-table__01--head {
  margin-bottom: -0.1rem;
  border-bottom: 2px solid var(--theme-color, #61b6f2);
  text-align: center;
  font-weight: 600;
}
.c-table__01--detail {
  border-bottom: 1px solid #ccc;
}

.c-modal__content {
  width: 100rem;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  border-radius: 0.8rem;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.c-modal__content--inner {
  max-height: calc(100vh - 10rem);
  padding: 5.6rem;
  overflow-y: auto;
}
.c-modal__close {
  width: 4.8rem;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: block;
  border-radius: 0.8rem;
  background-color: #e60012;
  aspect-ratio: 1;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  width: 50%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.js-modal__trigger:hover {
  cursor: pointer;
}
.js-bg__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-bg__layer.is-show {
  opacity: 1;
  visibility: visible;
}

body.is-modal-open #header {
  z-index: 997;
}

@media screen and (max-width: 767px) {
  .c-modal__content--inner {
    padding: 2rem 2rem 4rem;
  }
}
.c-slider__01--card .pic {
  margin-bottom: 1.6rem;
  display: block;
  overflow: hidden;
  aspect-ratio: 296/400;
}
.c-slider__01--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slider__01--card .pic.asp-auto {
  aspect-ratio: auto;
}
.c-slider__01--card .tag {
  padding: 0 0.8rem;
  display: inline-block;
  border-radius: 0.3rem;
  background-color: var(--theme-color, #61b6f2);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}
.c-slider__01--card .tag + .name {
  margin-top: 0.8rem;
}
.c-slider__01--card .name {
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: wrap;
  -webkit-line-clamp: 2;
}
.c-slider__01 .swiper {
  overflow: visible !important;
}
.c-slider__01 .swiper-wrapper {
  height: auto;
}
.c-slider__01 .swiper-slide {
  width: 29.6rem;
}
.c-slider__01--control {
  margin-top: 8rem;
  padding: 2rem 0;
}
.c-slider__02--card .pic {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/0.5;
}
.c-slider__02--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slider__02 .swiper {
  overflow: visible !important;
}
.c-slider__02 .swiper-wrapper {
  height: auto;
}
.c-slider__02 .swiper-slide {
  width: 83.2rem;
}
.c-slider__02--control {
  margin-top: 4rem;
}
.c-slider__03--card .pic {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/0.68;
}
.c-slider__03--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slider__03--card .pic + p {
  margin-top: 2.4rem;
}
.c-slider__03 .swiper {
  overflow: visible !important;
}
.c-slider__03 .swiper-wrapper {
  height: auto;
}
.c-slider__03 .swiper-slide {
  width: 36rem;
}
.c-slider__03--control {
  margin-top: 10rem;
}

/* Swiperページネーション進捗バー */
.swiper-pagination-progress {
  width: 10rem;
  height: 2px;
  position: relative;
  display: inline-block;
  background-color: #fff;
  vertical-align: middle;
}

.swiper-pagination-progress::after {
  content: "";
  width: var(--swiper-progress, 0%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--theme-color, #61b6f2);
  -webkit-transition: width linear;
  transition: width linear;
}

@-webkit-keyframes swiper-progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes swiper-progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-slider__01 {
    position: relative;
  }
  .c-slider__01 .btn__01 {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-slider__01--control {
    margin-top: 2.5rem;
    padding: 0;
  }
  .c-slider__01 .btn__01 {
    margin-top: 4rem;
  }
  .c-slider__02 .swiper-slide {
    width: 100%;
  }
  .c-slider__02--control {
    margin-top: 3.5rem;
  }
}
.c-loading {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.c-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.c-loading__text {
  width: 36.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-loading__layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #263e4c;
}
.c-loading__counter {
  position: absolute;
  right: 6rem;
  bottom: 6rem;
  font-weight: 600;
  font-size: 2rem;
}

.c-card__01--image {
  display: block;
  overflow: hidden;
  border-radius: 2.4rem;
}
.c-card__01--image img {
  width: 100%;
}
.c-card__01--body {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-card__01--date {
  width: 100%;
  display: block;
  letter-spacing: 0;
  font-size: 2rem;
  line-height: 1;
}
.c-card__01--tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-card__01--tag {
  margin-top: 0.4em;
  padding: 0.25em 0.75em;
  border-radius: 3em;
  background-color: var(--category-color, #d9d9d9);
  font-weight: 600;
  font-size: 1.4rem;
  --text-color: #fff;
}
.c-card__01--title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
}
.c-card__01[href] img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-card__01[href]:hover {
  opacity: 1;
}
.c-card__01[href]:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.l-header {
  width: 100%;
  min-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: none;
}
.l-header.is-open .l-header__link .svg-color-main {
  fill: #fffdea;
}
.l-header__inner {
  padding: 3rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__title {
  width: 16.4rem;
  margin: 0;
  position: absolute;
  top: 0;
  left: 3rem;
  font-size: 1rem;
  line-height: 1;
}
.l-header__title img {
  width: 100%;
  display: block;
}
.l-header__link {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__link--item {
  width: 4.2rem;
}
.l-header__link--item img {
  width: 100%;
}
.l-header__hamburger {
  width: 4.2rem;
  height: 4.2rem;
  padding: 0;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.l-header__hamburger--bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.l-header__hamburger--bg img {
  width: 100%;
}
.l-header__hamburger--inner {
  width: 1.8rem;
  height: 1.6rem;
  position: relative;
}
.l-header__hamburger--inner > span {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 2px;
  background-color: #f5e5d5;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.l-header__hamburger--inner > span:nth-child(1) {
  top: 0;
}
.l-header__hamburger--inner > span:nth-child(2) {
  top: calc(50% - 1px);
}
.l-header__hamburger--inner > span:nth-child(3) {
  top: calc(100% - 2px);
}
.l-header__hamburger.is-open .l-header__hamburger--inner > span {
  background-color: #fffcd6;
}
.l-header__hamburger.is-open .l-header__hamburger--inner > span:nth-child(1) {
  width: 100%;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__hamburger.is-open .l-header__hamburger--inner > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.l-header__hamburger.is-open .l-header__hamburger--inner > span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header__menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: #fffcd6;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.l-header__menu.is-open {
  opacity: 1;
  visibility: visible;
}
.l-header__menu--container {
  height: 100%;
}
.l-header__menu--inner {
  height: 100%;
  padding-top: clamp(5rem, 5.208vw, 10rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-header__menu--top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__menu--brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3rem, 3.125vw, 6rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-header__menu--logo {
  width: clamp(21rem, 21.875vw, 42rem);
  display: block;
}
.l-header__menu--logo img {
  width: 100%;
}
.l-header__menu--sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.8rem, 0.833vw, 1.6rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.l-header__menu--sns-item {
  width: clamp(3.4rem, 2.188vw, 4.2rem);
}
.l-header__menu--sns img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__menu--nav-list {
  display: grid;
  gap: clamp(3.6rem, 3.75vw, 7.2rem) clamp(8.7rem, 9.062vw, 17.4rem);
  grid-template-columns: repeat(3, auto);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.979vw, 3.8rem);
}
.l-header__menu--nav-item {
  position: relative;
  letter-spacing: 0;
  line-height: 1;
}
.l-header__menu--nav-item::before {
  content: "/";
  position: absolute;
  top: 0;
  left: calc(-1 * clamp(4.7rem, 4.895vw, 9.4rem));
}
.l-header__menu--nav-item:first-child::before, .l-header__menu--nav-item:nth-child(3n+1)::before {
  content: none;
}
.l-header__menu--nav-link {
  padding: 0.2rem 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.l-header__menu--nav-link-inner {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__menu--nav-link::after {
  content: attr(data-text);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
}
.l-header__menu--nav-link:hover .l-header__menu--nav-link-inner {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.l-header__menu--nav-link:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header__menu--nav .c-btn__02 {
  width: 100%;
  margin-top: clamp(5.5rem, 5.729vw, 11rem);
  padding-bottom: clamp(1.2rem, 1.25vw, 2.4rem);
  font-size: clamp(1.9rem, 1.979vw, 3.8rem);
  -webkit-column-gap: clamp(2.4rem, 2.5vw, 4.8rem);
     -moz-column-gap: clamp(2.4rem, 2.5vw, 4.8rem);
          column-gap: clamp(2.4rem, 2.5vw, 4.8rem);
}
.l-header__menu--nav .c-btn__02--icon {
  width: clamp(2.6rem, 2.708vw, 5.2rem);
}
.l-header__menu--nav .c-btn__02--text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-header__menu--nav .c-btn__02--arrow {
  width: clamp(1.3rem, 1.354vw, 2.6rem);
}
.l-header__menu--bottom {
  padding: clamp(1.6rem, 1.667vw, 3.2rem) 0;
}
.l-header__menu--bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 1.562vw, 3rem);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.25vw, 2.4rem);
}

@media screen and (min-width: 768px) {
  .l-header {
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .l-header__inner {
    -webkit-transition: padding 0.3s;
    transition: padding 0.3s;
  }
  .l-header.is-scrolled {
    background: #fffdea;
  }
  .l-header.is-scrolled .l-header__inner {
    padding-top: 1.8rem;
    padding-bottom: 1.2rem;
  }
  .l-header.is-scrolled .l-header__link .svg-color-main {
    fill: #fffdea;
  }
  .l-header__linkShop {
    width: 21.4rem;
    height: 5rem;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid;
    border-radius: 2.5rem;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .l-header__linkShop--icon {
    width: 3.2rem;
  }
  .l-header__linkShop--text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .l-header__linkShop svg {
    aspect-ratio: 1;
  }
  .l-header__linkShop svg * {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
  .l-header__linkShop:hover {
    background-color: #583c32;
  }
  .l-header__linkShop:hover .l-header__linkShop--text {
    --text-color: #fff;
  }
  .l-header__linkShop:hover .svg-color-bg {
    fill: #fffdea;
  }
  .l-header__linkShop:hover .svg-color-main {
    fill: #583c32 !important;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 2rem 2rem 0;
    gap: 0 1.8rem;
  }
  .l-header__title {
    width: 7rem;
    left: 1rem;
  }
  .l-header__link {
    gap: 1.4rem;
  }
  .l-header__link--item {
    width: 3.2rem;
  }
  .l-header__linkShop {
    width: 3.2rem;
  }
  .l-header__linkShop--text {
    display: none;
  }
  .l-header__linkShop img {
    width: 100%;
  }
  .l-header__menu--inner {
    padding: 10rem 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__menu--top {
    gap: 4.6rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-header__menu--brand {
    gap: 2.4rem;
  }
  .l-header__menu--logo {
    width: 16.2rem;
  }
  .l-header__menu--sns img {
    width: 3.4rem;
    height: 3.4rem;
  }
  .l-header__menu--nav-list {
    gap: 5.6rem 5.8rem;
    font-size: 1.8rem;
  }
  .l-header__menu--nav-item {
    text-align: center;
  }
  .l-header__menu--nav-item::before {
    left: -3.6rem;
    font-size: 2.1rem;
  }
  .l-header__menu--nav-link {
    display: block;
    height: 100%;
    letter-spacing: 0;
  }
  .l-header__menu--nav .c-btn__02 {
    margin-top: 6rem;
    padding-bottom: 1.2rem;
    font-size: 2.4rem;
    -webkit-column-gap: 1.4rem;
       -moz-column-gap: 1.4rem;
            column-gap: 1.4rem;
  }
  .l-header__menu--nav .c-btn__02--icon {
    width: 3.2rem;
  }
  .l-header__menu--nav .c-btn__02--arrow {
    width: 2.4rem;
  }
  .l-header__menu--bottom {
    padding: 4.6rem 0;
  }
  .l-header__menu--bottom-links {
    gap: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.8rem;
  }
}
.l-main__block[class*=bg-] {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.l-main__block--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-main__block--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-main__container {
  width: 100%;
  max-width: 178rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5rem;
  padding-left: 5rem;
}
.l-main__container + .l-main__container {
  margin-top: 14rem;
}
.l-main__container.is-full {
  max-width: 100%;
  padding-right: 3rem;
  padding-left: 3rem;
}
.l-main__container.c-innerHero {
  margin-bottom: 1rem;
}
.l-main__container--medium {
  max-width: 130rem;
}
.l-main__mask {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}
.l-main__mask img {
  width: 100%;
}
.l-main__mask--parent {
  position: relative;
  z-index: 2;
}
.l-main__mask--parent .l-main__container {
  position: relative;
  z-index: 3;
}
.l-main__maskTop {
  top: 0;
}
.l-main__maskBottom {
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .l-main__block[class*=bg-] {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
  .l-main__container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .l-main__container + .l-main__container {
    margin-top: 5.4rem;
  }
}
.l-common__headline {
  margin-bottom: 16rem;
  padding-top: 16rem;
  padding-bottom: 6rem;
  position: relative;
}
.l-common__headline--inner {
  height: 100%;
}
.l-common__headline--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-common__headline--text p {
  font-size: 2.4rem;
}
.l-common__headline--title {
  font-weight: 500;
  font-size: clamp(6rem, 8.33vw, 16rem);
  line-height: 1;
}
.l-common__headline--title.u-text-en {
  letter-spacing: 0;
  line-height: 0.9;
}
.l-common__headline--title-v2 {
  font-size: clamp(6rem, 6.875vw, 13.2rem);
}
.l-common__headline--image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1/0.683;
}
.l-common__headline--image.has-layer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.l-common__page-navi {
  margin-top: 22rem;
}
.l-common__page-navi--inner {
  padding: 5rem 0;
  position: relative;
}
.l-common__page-navi--inner::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-top: 2px solid;
  border-bottom: 1px solid;
}
.l-common__page-navi--inner::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-top: 1px solid;
  border-bottom: 2px solid;
}
.l-common__page-navi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14rem;
}
.l-common__page-navi__list > * {
  width: 100%;
}
.l-common__page-navi__item {
  padding: 2.8rem 0;
  position: relative;
}
.l-common__page-navi__item--title {
  margin-bottom: 6.4rem;
}
.l-common__page-navi__item--image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 770/479;
}
.l-common__page-navi__item--image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
}
.l-common__page-navi__item:hover img {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.l-common__page-navi__item:hover:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 768px) {
  .l-common__headline {
    height: clamp(36.25rem, 47.3vw, 90.8rem);
  }
  .l-common__headline--container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .l-common__headline--image {
    width: clamp(31.25rem, 52.08vw, 100rem);
    position: absolute;
    right: 6rem;
    bottom: 6rem;
  }
  .l-common__page-navi__list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-common__page-navi__list > * {
    width: calc((100% - 14rem) / 2);
  }
  .l-common__page-navi__item:nth-child(2n)::before {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -7rem;
    background-color: #583c32;
  }
}
@media screen and (max-width: 767px) {
  .l-common__headline {
    margin-bottom: 5rem;
    padding-top: 13.2rem;
    padding-bottom: 0;
  }
  .l-common__headline--inner {
    padding: 0 2rem;
  }
  .l-common__headline--container {
    padding: 0;
  }
  .l-common__headline--text {
    gap: 1rem;
  }
  .l-common__headline--text p {
    font-size: 1.4rem;
  }
  .l-common__headline--image {
    margin-top: 3rem;
  }
  .l-common__page-navi {
    margin-top: 8rem;
  }
  .l-common__page-navi--inner {
    padding: 1.6rem 0;
  }
  .l-common__page-navi--inner::before {
    height: 8px;
    border-top-width: 3px;
  }
  .l-common__page-navi--inner::after {
    height: 8px;
    border-bottom-width: 3px;
    background: none;
  }
  .l-common__page-navi__list {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-common__page-navi__item {
    padding: 2.4rem 0;
  }
  .l-common__page-navi__item + .l-common__page-navi__item {
    border-top: 1px solid;
  }
  .l-common__page-navi__item--title {
    margin-bottom: 2rem;
  }
}
.l-footer {
  padding-top: 12rem;
  background-color: #fffdea;
  color: #583c32;
}
.l-footer a {
  color: inherit;
  text-decoration: none;
}
.l-footer__top {
  margin-bottom: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-footer__logo {
  width: 27rem;
  display: block;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.l-footer__sns img {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__nav-list {
  display: grid;
  gap: 5.6rem 8rem;
  grid-template-columns: repeat(3, auto);
  font-weight: 700;
  font-size: 2rem;
}
.l-footer__nav-item {
  line-height: 1;
}
.l-footer__nav-link {
  padding: 0.2rem 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.l-footer__nav-link-inner {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-footer__nav-link::after {
  content: attr(data-text);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #583c32;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
}
.l-footer__nav-link:hover .l-footer__nav-link-inner {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.l-footer__nav-link:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-footer__nav .c-btn__02 {
  width: 100%;
  margin-top: 11rem;
  padding-bottom: 2.4rem;
  font-size: 2rem;
}
.l-footer__nav .c-btn__02--arrow {
  width: 2.6rem;
}
.l-footer__bottom {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #583c32;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
.l-footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__bottom-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.l-footer__bottom-link-inner {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-footer__bottom-link::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(120%);
          transform: translateY(120%);
}
.l-footer__bottom-link:hover .l-footer__bottom-link-inner {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.l-footer__bottom-link:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-footer__copy {
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 5rem;
  }
  .l-footer__top {
    margin-bottom: 5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer__brand {
    gap: 3.2rem;
  }
  .l-footer__logo {
    width: 18.2rem;
  }
  .l-footer__nav-list {
    gap: 3.2rem 4rem;
    font-size: 1.6rem;
  }
  .l-footer__nav .c-btn__02 {
    margin-top: 7.2rem;
  }
  .l-footer__sns-item {
    width: 3.4rem;
  }
  .l-footer__bottom {
    margin: 0 -2rem 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: none;
    text-align: center;
    font-size: 1.6rem;
  }
  .l-footer__copy {
    width: 100%;
    margin-top: 1.2rem;
    padding: 1.2rem 0;
    border-top: 1px solid #583c32;
    font-size: 1.2rem;
  }
}
.p-home__hero-scroll-wrap {
  padding-top: 50vh;
  position: relative;
  contain: layout style;
}
.p-home__hero {
  width: 100%;
  height: calc(100vh + var(--height));
  --height: 41px;
  margin-bottom: calc(-1 * var(--height));
  padding-bottom: var(--height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-mask-image: url(../images/home/mask_wave.svg), -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(#000), color-stop(transparent), to(transparent));
  -webkit-mask-image: url(../images/home/mask_wave.svg), linear-gradient(to bottom, #000 0%, #000 calc(100% - var(--height)), transparent calc(100% - var(--height)), transparent 100%);
          mask-image: url(../images/home/mask_wave.svg), -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(#000), color-stop(transparent), to(transparent));
          mask-image: url(../images/home/mask_wave.svg), linear-gradient(to bottom, #000 0%, #000 calc(100% - var(--height)), transparent calc(100% - var(--height)), transparent 100%);
  -webkit-mask-position: bottom, 0 0;
          mask-position: bottom, 0 0;
  -webkit-mask-size: 188px;
          mask-size: 188px;
  will-change: transform;
}
.p-home__hero--inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home__hero--logo {
  width: 82rem;
  height: 90vh;
}
.p-home__hero--logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-home__hero--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-home__hero--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home__concept {
  width: 100%;
  padding: 20rem 0 30rem;
  position: relative;
  z-index: 2;
}
.p-home__concept--title {
  margin-bottom: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-home__concept--title span {
  font-size: 4.8rem;
}
.p-home__concept--description p:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-home__feature {
  padding-bottom: 16rem;
  position: relative;
  z-index: 2;
}
.p-home__feature::before {
  content: "";
  width: 100%;
  height: 4rem;
  position: absolute;
  top: 20rem;
  left: 0;
  display: block;
  background: url(../images/home/feature_frame.png) repeat-x center top/11.2rem auto;
}
.p-home__feature--obj {
  width: 100rem;
  margin: -20rem auto 6.8rem;
  position: relative;
  left: -6.4rem;
  z-index: 9;
}
.p-home__feature--title {
  margin-bottom: 4.8rem;
  font-size: 6.4rem;
  line-height: 1.5;
}
.p-home__feature--lead {
  margin-bottom: 16rem;
}
.p-home__feature--lead p {
  font-weight: 700;
  font-size: 2.2rem;
}
.p-home__feature--list {
  background: url(/assets/images/home/feature_bg.png) no-repeat center center/108rem auto;
}
.p-home__feature--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13rem;
}
.p-home__feature--item.item01 .img02 {
  right: 0;
  bottom: -4.6rem;
}
.p-home__feature--item.item02 .img01 {
  margin-left: auto;
}
.p-home__feature--item.item02 .img02 {
  bottom: -4.6rem;
  left: 0;
}
.p-home__feature--item + .p-home__feature--item {
  margin-top: 23rem;
}
.p-home__feature--item-visual {
  width: 58%;
  position: relative;
}
.p-home__feature--item-visual-img {
  padding: 0.8rem;
  border: 1px solid;
  border-radius: 1rem;
}
.p-home__feature--item-visual-img.img01 {
  width: 74rem;
  aspect-ratio: 725/720;
}
.p-home__feature--item-visual-img.img02 {
  width: 39rem;
  position: absolute;
  background-color: #f9f6f1;
  aspect-ratio: 372/396;
}
.p-home__feature--item-visual-img img,
.p-home__feature--item-visual-img video {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home__feature--item-visual-decoration {
  position: absolute;
}
.p-home__feature--item-visual .decoration01-1 {
  width: 12rem;
  bottom: 15rem;
  left: 9rem;
}
.p-home__feature--item-visual .decoration01-2 {
  width: 12rem;
  right: -8rem;
  bottom: -4.6rem;
  z-index: -1;
}
.p-home__feature--item-visual .decoration02-1 {
  width: 15rem;
  bottom: 26rem;
  left: 35rem;
}
.p-home__feature--item-visual .decoration02-2 {
  width: 12rem;
  top: 12rem;
  right: 12rem;
}
.p-home__feature--item-visual-text {
  position: absolute;
}
.p-home__feature--item-visual .text01 {
  width: 74.6rem;
  top: 3.6rem;
  left: 16.6rem;
}
.p-home__feature--item-visual .text02 {
  width: 72rem;
  top: 3.2rem;
  right: 12.8rem;
}
.p-home__feature--item-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
}
.p-home__feature--item-text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-home__feature--item-title {
  margin-bottom: 0.75em;
  font-size: 4.8rem;
  line-height: 2;
}
.p-home__products {
  padding-top: 1px;
  border-radius: 2rem 2rem 0 0;
  background-color: #fffcd6;
}
.p-home__products--title {
  max-width: 144rem;
  margin: -2.6rem auto 0;
  padding-bottom: 5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
}
.p-home__products--title::after {
  content: "";
  width: 100vw;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  display: block;
  border-top: 3px solid;
  border-bottom: 1px solid;
}
.p-home__products--title-text {
  padding-bottom: 0.5em;
  display: inline-block;
}
.p-home__products--list {
  counter-reset: count;
}
.p-home__products--item {
  padding: 12rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home__products--item::after {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  display: block;
  background-color: #583c32;
}
.p-home__products--item-img {
  width: 54.8rem;
  padding: 0.8rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: 2px solid;
  border-radius: 1rem;
  aspect-ratio: 548/500;
}
.p-home__products--item-img img {
  border-radius: 1rem;
}
.p-home__products--item-text {
  position: relative;
}
.p-home__products--item-count {
  margin-bottom: 0.5em;
  display: inline-block;
  font-size: 3.4rem;
}
.p-home__products--item-count::before {
  content: "(" counter(count, decimal-leading-zero) ")";
  counter-increment: count;
  font-family: "Cormorant Garamond", serif;
}
.p-home__products--item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-home__products--item-title-en {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1;
}
.p-home__products--item-title-jp {
  margin-top: 0.5em;
  font-size: 4.8rem;
}
.p-home__products--item-title-jp span {
  font-size: 2.4rem;
}
.p-home__products--item-decoration {
  position: absolute;
  z-index: -1;
  will-change: transform;
}
.p-home__products--item .decoration01 {
  width: 28.5rem;
  bottom: -8.8rem;
  left: calc(100% + 2.6rem);
}
@media (max-width: 1800px) and (min-width: 768px) {
  .p-home__products--item .decoration01 {
    width: clamp(20rem, 13.3vw, 24rem);
    left: 100%;
  }
}
.p-home__products--item .decoration02 {
  width: 31rem;
  bottom: 8rem;
  left: -7.8rem;
}
.p-home__products--item .decoration03 {
  width: 26.7rem;
  bottom: -15rem;
  left: 100%;
}
.p-home__products--item .decoration04 {
  width: 24.5rem;
  bottom: -1.6rem;
  left: -14rem;
}
.p-home__products--item .decoration05 {
  width: 28.8em;
  bottom: 4.8rem;
  left: 100%;
}
.p-home__products--item .decoration06 {
  width: 28.6rem;
  bottom: -5.8rem;
  left: -19.6rem;
}
.p-home__products--itemChild {
  width: 100%;
  max-width: 112rem;
  margin: 0 auto;
  display: grid;
  gap: 8rem;
  grid-template-columns: 1fr 1fr;
}
.p-home__products--itemChild-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home__products--itemChild-img {
  width: 19.6rem;
  padding: 0.8rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: 2px solid;
  border-radius: 1rem;
  aspect-ratio: 548/500;
}
.p-home__products--itemChild-img img {
  border-radius: 1rem;
}
.p-home__products--itemChild-title {
  font-size: 2.8rem;
}
.p-home__products--itemChild-more {
  margin-top: 3rem;
}
.p-home__products--all {
  height: 28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home__products--all-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home__products--all-text {
  font-weight: 700;
  font-size: 4rem;
}
.p-home__products--all-arrow {
  width: 6.8rem;
}
.p-home__onlneshop {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.p-home__onlneshop--bg {
  overflow: hidden;
}
.p-home__onlneshop--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), color-stop(42.74%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 42.74%, rgba(0, 0, 0, 0.3) 100%);
}
.p-home__onlneshop--bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), color-stop(42.74%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 42.74%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-home__onlneshop--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home__onlneshop--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-home__onlneshop--title-en {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 8rem;
  line-height: 0.9;
}
.p-home__onlneshop--title-jp {
  font-size: 3.2rem;
}
.p-home__onlneshop--title-jp span {
  font-size: 2.4rem;
}
.p-home__onlneshop--visual {
  margin-right: 15.2rem;
  position: relative;
}
.p-home__onlneshop--visual .img01 {
  width: 40.6rem;
  overflow: hidden;
  border-radius: 1rem;
}
.p-home__onlneshop--visual .img02 {
  width: 25.8rem;
  position: absolute;
  right: -18rem;
  bottom: -7rem;
}
.p-home__message {
  padding-top: 18rem;
  padding-bottom: 17.2rem;
}
.p-home__message--visual {
  width: 93.8rem;
  margin: 0 auto 8rem;
  overflow: hidden;
  border-radius: 2rem;
}
.p-home__message--title {
  margin-bottom: 1em;
  font-size: 4.8rem;
}
.p-home__message--title span {
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-home__message--catch {
  width: 60.8rem;
  margin: 7rem auto 0;
}
.p-home__news--block {
  padding: 13rem 0 20rem;
  position: relative;
  display: grid;
  gap: 0 13rem;
  grid-template-columns: 24rem 1fr;
}
.p-home__news--block::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-top: 3px solid;
  border-bottom: 1px solid;
}
.p-home__news--info .c-btn__02 {
  width: 21.2rem;
}
.p-home__news--item {
  padding-bottom: 6rem;
  position: relative;
}
.p-home__news--item::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #583c32;
}
.p-home__news--item:not(:last-child) {
  margin-bottom: 6rem;
}
.p-home__news--item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-home__news--item-date {
  font-weight: 700;
  font-size: 1.6rem;
}
.p-home__news--item-tag {
  padding: 0 0.5em;
  border-radius: 0.4rem;
  background-color: #faa74a;
  font-weight: 700;
  font-size: 1.4rem;
}
.p-home__news--item-title {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  font-weight: 700;
  font-size: 2.4rem;
  -webkit-line-clamp: 1;
}
.p-home__shop {
  padding: 10rem 0 35.8rem;
  border-radius: 2rem 2rem;
  background-color: #fffcd6;
}
.p-home__shop .c-heading__01 {
  margin-bottom: 10rem;
  padding-bottom: 6rem;
  position: relative;
}
.p-home__shop .c-heading__01::before {
  content: "";
  width: 100vw;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  display: block;
  border-top: 1px solid;
  border-bottom: 3px solid;
}
.p-home__shop--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home__shop--list > * {
  width: calc((100% - 13.5rem) / 4);
}
.p-home__shop--item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 386/362;
}
.p-home__shop--item-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-home__shop--item-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(86.88%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 86.88%);
}
.p-home__shop--item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home__shop--item-text {
  width: 100%;
  padding: 1.4rem 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --text-color: #fff;
}
.p-home__shop--item .c-arrow__01 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.p-home__recruit {
  position: relative;
  z-index: 2;
}
.p-home__recruit--item {
  height: 50rem;
  margin-top: -21.8rem;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
}
.p-home__recruit--inner {
  max-width: 124rem;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-home__recruit--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-home__recruit--title-en {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 8rem;
  line-height: 0.9;
}
.p-home__recruit--title-jp {
  font-size: 3.2rem;
}
.p-home__recruit--title-jp span {
  font-size: 2.4rem;
}
.p-home__recruit--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

@media screen and (min-width: 768px) {
  .p-home__feature--item.is-reverse {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-home__feature--item.item01 {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-home__feature--item.item02 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-home__products--item {
    position: relative;
    z-index: 2;
  }
  .p-home__products--item::before {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
    background-color: #fffab7;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .p-home__products--item.is-hover::before {
    opacity: 1;
    visibility: visible;
  }
  .p-home__products--item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-home__products--item:nth-of-type(even) .p-home__products--item-more {
    margin-left: auto;
  }
  .p-home__products--item:nth-of-type(even) .p-home__products--item-title-jp {
    text-align: right;
  }
  .p-home__products--all {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .p-home__products--all:hover {
    background-color: #fffab7;
  }
  .p-home__onlneshop .p-home__onlneshop--bg img {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
  }
  .p-home__onlneshop.is-hover .p-home__onlneshop--bg::after {
    opacity: 1;
  }
  .p-home__onlneshop.is-hover .p-home__onlneshop--bg img {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  .p-home__news--item-date {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .p-home__news--item-title {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .p-home__news--item-title:hover {
    --text-color: #faa74a;
  }
  .p-home__news--item.is-hover::after {
    background-color: #faa74a;
    -webkit-animation: line-slide 0.6s ease-in-out forwards;
            animation: line-slide 0.6s ease-in-out forwards;
  }
  .p-home__news--item.is-hover .p-home__news--item-date {
    color: #faa74a;
  }
  .p-home__recruit--item:hover .c-btn__02::after {
    -webkit-animation: line-slide 0.6s ease-in-out forwards;
            animation: line-slide 0.6s ease-in-out forwards;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .p-home__hero {
    --height: 29px;
    -webkit-mask-size: 132px;
            mask-size: 132px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__hero {
    --height: 20px;
    -webkit-mask-size: 94px;
            mask-size: 94px;
  }
  .p-home__hero--logo {
    width: 36.8rem;
  }
  .p-home__concept {
    padding: 15rem 0 12rem;
  }
  .p-home__concept--title {
    margin-bottom: 3.2rem;
  }
  .p-home__concept--title span {
    font-size: 2.4rem;
  }
  .p-home__concept--description p {
    font-size: 1.6rem;
  }
  .p-home__concept--description p:not(:last-child) {
    margin-bottom: 1.2em;
  }
  .p-home__concept--description-adjuster {
    height: 1.2em;
    display: block;
  }
  .p-home__feature {
    padding-bottom: 7.2rem;
  }
  .p-home__feature::before {
    height: 1.3rem;
    top: 6rem;
    background-size: auto 100%;
  }
  .p-home__feature--obj {
    width: 28.2rem;
    margin: -6rem auto 4.8rem;
    left: 0;
  }
  .p-home__feature--title {
    margin-bottom: 1em;
    font-size: 2.4rem;
  }
  .p-home__feature--lead {
    margin-bottom: 5.4rem;
  }
  .p-home__feature--lead p {
    font-size: 1.4rem;
  }
  .p-home__feature--list {
    background-size: 100% auto;
  }
  .p-home__feature--item {
    gap: 11rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__feature--item + .p-home__feature--item {
    margin-top: 5.4rem;
  }
  .p-home__feature--item.item01 .img02 {
    right: 2rem;
    bottom: -8.8rem;
  }
  .p-home__feature--item.item02 .img02 {
    bottom: -8.8rem;
    left: 2rem;
  }
  .p-home__feature--item-visual {
    width: 100%;
  }
  .p-home__feature--item-visual-img {
    padding: 0.2rem;
  }
  .p-home__feature--item-visual-img.img01 {
    width: 29.6rem;
  }
  .p-home__feature--item-visual-img.img02 {
    width: 16rem;
  }
  .p-home__feature--item-visual .decoration01-1 {
    width: 5.4rem;
    bottom: -3rem;
    left: 4rem;
  }
  .p-home__feature--item-visual .decoration01-2 {
    width: 5.4rem;
    right: -2rem;
    bottom: -8.6rem;
  }
  .p-home__feature--item-visual .decoration02-1 {
    width: 7.2rem;
    bottom: 11rem;
    left: 7rem;
  }
  .p-home__feature--item-visual .decoration02-2 {
    width: 5.8rem;
    top: 5rem;
    right: 7rem;
  }
  .p-home__feature--item-visual-text {
    position: absolute;
  }
  .p-home__feature--item-visual .text01 {
    width: 31.4rem;
    top: 1.4rem;
    left: 3.2rem;
  }
  .p-home__feature--item-visual .text02 {
    width: 32.4rem;
    top: 1.2rem;
    right: 2rem;
  }
  .p-home__feature--item-title {
    margin-bottom: 0.5em;
    font-size: 2rem;
  }
  .p-home__feature .c-btn__01 {
    margin-top: 4rem;
  }
  .p-home__products {
    border-radius: 1rem 1rem 0 0;
  }
  .p-home__products--title {
    margin: -1.6rem auto 0;
    padding-bottom: 2.4rem;
    gap: 0.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__products--title-text {
    padding-left: 1em;
  }
  .p-home__products--item {
    padding: 3.6rem 2.8rem;
    gap: 1.6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__products--item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-home__products--item:nth-of-type(even) .p-home__products--item-more {
    margin-left: 0;
  }
  .p-home__products--item:nth-of-type(even) .p-home__products--item-title-jp {
    text-align: left;
  }
  .p-home__products--item-img {
    width: 100%;
    padding: 0.2rem;
  }
  .p-home__products--item-text {
    width: 100%;
  }
  .p-home__products--item-count {
    font-size: 1.4rem;
  }
  .p-home__products--item-title-jp {
    font-size: 2rem;
  }
  .p-home__products--item-title-jp span {
    font-size: 1.4rem;
  }
  .p-home__products--item-more {
    width: 100%;
    margin-top: 2rem;
  }
  .p-home__products--item .decoration01 {
    width: 11.2rem;
    top: -7rem;
    right: -2.8rem;
    bottom: auto;
    left: auto;
  }
  .p-home__products--item .decoration02 {
    width: 10.4rem;
    top: -6rem;
    right: -2.8rem;
    bottom: auto;
    left: auto;
  }
  .p-home__products--item .decoration03 {
    width: 12.5rem;
    top: -5rem;
    right: -2rem;
    bottom: auto;
    left: auto;
  }
  .p-home__products--item .decoration04 {
    width: 11.5rem;
    top: -4rem;
    right: -1rem;
    bottom: auto;
    left: auto;
  }
  .p-home__products--item .decoration05 {
    width: 13.8rem;
    top: -4rem;
    right: -1rem;
    bottom: auto;
    left: auto;
  }
  .p-home__products--item .decoration06 {
    width: 13.8rem;
    top: -5rem;
    right: -2rem;
    bottom: auto;
    left: auto;
  }
  .p-home__products--itemChild {
    max-width: 100%;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .p-home__products--itemChild-item {
    gap: 3.6rem;
  }
  .p-home__products--itemChild-img {
    width: 11.4rem;
    padding: 0.2rem;
  }
  .p-home__products--itemChild-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-home__products--itemChild-title {
    font-size: 1.6rem;
  }
  .p-home__products--all {
    height: 9rem;
  }
  .p-home__products--all-text {
    font-size: 2rem;
  }
  .p-home__products--all-arrow {
    width: 2.4rem;
  }
  .p-home__onlneshop {
    padding-top: 11rem;
    padding-bottom: 8rem;
  }
  .p-home__onlneshop--inner {
    display: block;
  }
  .p-home__onlneshop--content {
    max-width: 29.6rem;
  }
  .p-home__onlneshop--content a {
    margin-top: 5rem;
  }
  .p-home__onlneshop--title {
    margin-bottom: 2.4rem;
  }
  .p-home__onlneshop--title-en {
    font-size: 4.2rem;
  }
  .p-home__onlneshop--title-jp {
    margin-top: 0.5em;
    font-size: 1.4rem;
  }
  .p-home__onlneshop--visual {
    margin-right: 0;
    position: absolute;
    top: 3rem;
    right: 2rem;
  }
  .p-home__onlneshop--visual .img01 {
    width: 11.6rem;
  }
  .p-home__onlneshop--visual .img02 {
    width: 8rem;
    right: -4rem;
    bottom: -4rem;
  }
  .p-home__message {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .p-home__message--visual {
    width: 100%;
    margin-bottom: 2.8rem;
  }
  .p-home__message--title {
    font-size: 2.4rem;
  }
  .p-home__message--catch {
    width: 31.4rem;
    margin-top: 3rem;
  }
  .p-home__news--block {
    padding: 4rem 0 8rem;
    display: block;
  }
  .p-home__news--block::before {
    height: 10px;
  }
  .p-home__news--info {
    margin-bottom: 5rem;
  }
  .p-home__news--info .c-btn__02 {
    width: 100%;
    margin-top: 2rem;
  }
  .p-home__news--item {
    padding-bottom: 2rem;
  }
  .p-home__news--item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
  .p-home__news--item-link {
    gap: 1rem 1.4rem;
  }
  .p-home__news--item-date {
    font-size: 1.2rem;
  }
  .p-home__news--item-tag {
    font-size: 1.2rem;
  }
  .p-home__news--item-title {
    font-size: 1.4rem;
    -webkit-line-clamp: 2;
  }
  .p-home__shop {
    padding: 3.2rem 0 11rem;
    border-radius: 1rem 1rem;
  }
  .p-home__shop .c-heading__01 {
    margin-bottom: 4.8rem;
    padding-bottom: 2.8rem;
  }
  .p-home__shop .c-heading__01::before {
    height: 10px;
    border-top-width: 3px;
    border-bottom-width: 1px;
  }
  .p-home__shop--list {
    gap: 1.6rem 2.2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-home__shop--list > * {
    width: calc((100% - 2.2rem) / 2);
  }
  .p-home__shop--item {
    border-radius: 0.6rem;
  }
  .p-home__shop--item-text {
    padding: 1rem 1rem;
  }
  .p-home__shop--item-title {
    font-size: 1.2rem;
  }
  .p-home__shop--item .c-arrow__01 {
    width: 1.6rem;
  }
  .p-home__recruit--item {
    height: 18rem;
    margin-top: -6.4rem;
    padding: 0 2.4rem;
    border-radius: 0.6rem;
  }
  .p-home__recruit--inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-home__recruit--title-en {
    font-size: 4.2rem;
  }
  .p-home__recruit--title-jp {
    margin-top: 0.5em;
    font-size: 1.4rem;
  }
  .p-home .c-btn__01 {
    width: 35rem;
    height: 5.8rem;
    padding: 0 4rem;
  }
}
.p-product-list__navi {
  margin-bottom: 17.8rem;
}
.p-product-list__navi--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-product-list__navi--item {
  width: 100%;
}
.p-product-list__navi--link {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 553/400;
}
.p-product-list__navi--link-inner {
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-product-list__navi--link-text {
  font-weight: 700;
  font-size: 2rem;
}
.p-product-list__navi--link-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-product-list__navi--link-image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
.p-product-list__navi--link-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-list__section + .p-product-list__section {
  margin-top: 27rem;
}
.p-product-list__headline {
  margin-bottom: 6.8rem;
  padding-bottom: 4.2rem;
  position: relative;
}
.p-product-list__headline::after {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-top: 3px solid;
  border-bottom: 1px solid;
}
.p-product-list__headline--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  row-gap: 1rem;
}
.p-product-list__headline--title-en {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
}
.p-product-list__headline--title-jp {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}
.p-product-list__pickup {
  margin-bottom: 12rem;
}
.p-product-list__pickup--title {
  width: 22.3rem;
  margin: 0 auto 2.8rem;
}
.p-product-list__pickup .p-product-list__card {
  padding: 3.8rem 3.8rem 5rem;
  border-radius: 1rem;
  background-color: #fffcd6;
}
.p-product-list__pickup .p-product-list__card--tag {
  width: 15.8rem;
  top: -4rem;
  right: -6.4rem;
  font-size: 4rem;
}
.p-product-list__pickup .p-product-list__card--info {
  margin-top: 3.2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-product-list__pickup .p-product-list__card--title {
  font-size: 2.8rem;
}
.p-product-list__pickup .p-product-list__card--price {
  font-size: 2.8rem;
}
.p-product-list__list {
  display: grid;
  gap: 11.8rem 4.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-product-list__card {
  position: relative;
}
.p-product-list__card--tag {
  width: 8.8rem;
  position: absolute;
  top: -3rem;
  right: -2rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../images/product-list/tag_bg.svg) no-repeat center center/cover;
  font-weight: 700;
  font-size: 2.2rem;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  aspect-ratio: 1;
  --text-color: #fff;
}
.p-product-list__card--tag p {
  letter-spacing: 0;
}
.p-product-list__card--tag span {
  font-size: 50%;
}
.p-product-list__card--tag span.xsm {
  font-size: 36%;
}
.p-product-list__card--image {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 578/356;
}
.p-product-list__card--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-list__card--info {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem 1em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
}
.p-product-list__card--title {
  font-size: 2.4rem;
}
.p-product-list__card--price {
  font-size: 2rem;
}
.p-product-list__card--more {
  margin-top: 2.8rem;
}

@media screen and (min-width: 768px) {
  .p-product-list__navi--list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-product-list__navi--item {
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-product-list__navi {
    margin-bottom: 6rem;
  }
  .p-product-list__navi--list {
    gap: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-product-list__navi--link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    aspect-ratio: 350/115;
  }
  .p-product-list__navi--link-inner {
    height: auto;
    padding: 1rem 1.6rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-product-list__navi--link-text {
    font-size: 1.4rem;
  }
  .p-product-list__navi--link-image::before {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .p-product-list__section + .p-product-list__section {
    margin-top: 6rem;
  }
  .p-product-list__headline {
    margin-bottom: 3.4rem;
  }
  .p-product-list__headline::after {
    height: 8px;
  }
  .p-product-list__headline--title-en {
    font-size: 4.2rem;
  }
  .p-product-list__headline--title-jp {
    font-size: 1.4rem;
  }
  .p-product-list__pickup {
    margin-bottom: 5rem;
  }
  .p-product-list__pickup--title {
    width: 12.7rem;
    margin-bottom: 1rem;
  }
  .p-product-list__pickup .p-product-list__card {
    padding: 3rem 2.4rem 2.4rem;
  }
  .p-product-list__pickup .p-product-list__card--tag {
    width: 8rem;
    top: -0.6rem;
    right: -0.4rem;
    font-size: 1.8rem;
  }
  .p-product-list__pickup .p-product-list__card--info {
    margin-top: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-product-list__pickup .p-product-list__card--title {
    font-size: 1.4rem;
  }
  .p-product-list__pickup .p-product-list__card--price {
    font-size: 1.4rem;
  }
  .p-product-list__list {
    gap: 3.6rem 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .p-product-list__card {
    padding: 0 2.4rem;
  }
  .p-product-list__card--tag {
    width: 8rem;
    top: -3.6rem;
    right: 0.4rem;
    font-size: 1.8rem;
  }
  .p-product-list__card--info {
    margin-top: 1.6rem;
  }
  .p-product-list__card--title {
    font-size: 1.4rem;
  }
  .p-product-list__card--price {
    font-size: 1.4rem;
  }
  .p-product-list__card--more {
    width: 100%;
    margin-top: 2rem;
  }
}
@-webkit-keyframes scenes-swing {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  15% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  20% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes scenes-swing {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  15% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  20% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-story__lead {
  margin-bottom: 20rem;
}
.p-story__lead--title {
  font-size: 3.8rem;
  line-height: 2;
}
.p-story__lead--sentence {
  margin-top: 5.6rem;
  font-size: 2rem;
}
.p-story__scenes--item {
  position: relative;
}
.p-story__scenes--item + .p-story__scenes--item {
  margin-top: 20rem;
}
.p-story__scenes--image-picture {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
}
.p-story__scenes--title {
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: 500;
  font-size: 10rem;
  line-height: 1;
}
.p-story__scenes--title-en {
  letter-spacing: 0;
  font-size: 12rem;
}
.p-story__scenes--sentence {
  font-weight: 700;
  font-size: 2.4rem;
}
.p-story__scenes--sentence p:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-story__scenes--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-story__scenes--link dt {
  font-weight: 700;
  font-size: 2.4rem;
}
.p-story__scenes--link .c-btn__02 {
  margin-top: 0;
}
.p-story__voice {
  min-height: 78.7rem;
  margin-top: 23rem;
  padding-top: 11.5rem;
  position: relative;
  z-index: 2;
}
.p-story__voice-card {
  width: 72.4rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #fffcd6;
  --card-offset: 1rem;
}
.p-story__voice-card--inner {
  padding: 4.5rem 3.6rem 4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.p-story__voice-card--inner::before {
  content: "";
  width: calc(100% - var(--card-offset) * 2);
  height: calc(100% - var(--card-offset) * 2);
  position: absolute;
  top: var(--card-offset);
  left: var(--card-offset);
  z-index: -1;
  outline: 1px solid #583c32;
  outline-offset: -7px;
  border: 2px solid #583c32;
}
.p-story__voice-card--frame {
  width: 5.6rem;
  position: absolute;
  top: -1.4rem;
  z-index: 3;
  aspect-ratio: 1;
}
.p-story__voice-card--frame .circle01 {
  width: 4.8rem;
  position: absolute;
  bottom: 0.8rem;
  z-index: 2;
  border: 2px solid #583c32;
  border-radius: 50%;
  background-color: #fffcd6;
  aspect-ratio: 1;
}
.p-story__voice-card--frame .circle02 {
  width: 5.6rem;
  position: absolute;
  bottom: 0.2rem;
  z-index: 1;
  border: 1px solid #583c32;
  border-radius: 50%;
  background-color: #fffcd6;
  aspect-ratio: 1;
}
.p-story__voice-card--frame-left {
  left: -1.4rem;
}
.p-story__voice-card--frame-left .circle01 {
  right: 0.8rem;
  clip-path: inset(50% 0 0 50%);
}
.p-story__voice-card--frame-left .circle02 {
  right: 0.2rem;
  clip-path: inset(calc(50% + 0.4rem) 0 0 calc(50% + 0.4rem));
}
.p-story__voice-card--frame-right {
  right: -1.4rem;
}
.p-story__voice-card--frame-right .circle01 {
  left: 0.8rem;
  clip-path: inset(50% 50% 0 0);
}
.p-story__voice-card--frame-right .circle02 {
  left: 0.2rem;
  clip-path: inset(calc(50% + 0.4rem) calc(50% + 0.4rem) 0 0);
}
.p-story__voice-card--deco-top {
  width: 26.4rem;
  margin: 0 auto 3.2rem;
}
.p-story__voice-card--deco-bottom {
  width: 39.2rem;
  margin: 2.4rem auto 0;
}
.p-story__voice-card--title {
  margin-bottom: 0.5em;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 6rem;
  line-height: 1;
}
.p-story__voice-card .c-btn__01 {
  margin-top: 5rem;
}
.p-story__voice-card--character {
  position: absolute;
  bottom: -3.8rem;
  z-index: 2;
  pointer-events: none;
}
.p-story__voice-card--character-01 {
  width: 9.5rem;
  left: -3.4rem;
}
.p-story__voice-card--character-02 {
  width: 8.9rem;
  right: 0;
}
.p-story__voice--bg {
  width: 100%;
  height: 78.7rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
}
.p-story__voice--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-story__voice--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-story__scenes--item:nth-of-type(odd) .p-story__scenes--image-picture {
    left: 0;
  }
  .p-story__scenes--item:nth-of-type(odd) .p-story__scenes--image-character {
    right: 0;
  }
  .p-story__scenes--item:nth-of-type(odd) .p-story__scenes--link {
    margin-left: auto;
  }
  .p-story__scenes--item:nth-of-type(even) .p-story__scenes--image-picture {
    right: 0;
  }
  .p-story__scenes--item:nth-of-type(even) .p-story__scenes--image-character {
    left: 0;
  }
  .p-story__scenes--item:nth-of-type(even) .p-story__scenes--link {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-story__scenes--container {
    position: relative;
  }
  .p-story__scenes--image-picture {
    width: min(48.4rem, 26.8vw);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-story__scenes--image-character {
    position: absolute;
    bottom: 0;
  }
  .p-story__scenes--image-character.is-hover {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation: scenes-swing 5s ease-in-out infinite;
            animation: scenes-swing 5s ease-in-out infinite;
  }
  .p-story__scenes--text {
    width: 43rem;
    margin: 0 auto;
  }
  .p-story__scenes--sentence p {
    white-space: nowrap;
  }
  .p-story__scenes--link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 6.6rem;
  }
  .p-story__scenes-01 .p-story__scenes--image-character {
    width: min(31.9rem, 17.7vw);
    margin-right: 14rem;
  }
  .p-story__scenes-02 .p-story__scenes--image-character {
    width: min(38.9rem, 21.6vw);
    margin-left: 4.6rem;
  }
  .p-story__scenes-03 .p-story__scenes--image-character {
    width: min(31.9rem, 17.7vw);
    margin-right: 8.2rem;
  }
  .p-story__scenes-04 .p-story__scenes--image-character {
    width: min(38.6rem, 21.4vw);
    margin-left: 4.6rem;
  }
  .p-story__scenes-05 .p-story__scenes--image-character {
    width: min(33.4rem, 18.6vw);
    margin-right: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-story__lead {
    margin-bottom: 6.4rem;
  }
  .p-story__lead--title {
    font-size: 1.8rem;
  }
  .p-story__lead--sentence {
    margin-top: 2.8rem;
    font-size: 1.4rem;
  }
  .p-story__scenes--item + .p-story__scenes--item {
    margin-top: 8.6rem;
  }
  .p-story__scenes--item:nth-of-type(odd) {
    padding-right: 6.2rem;
  }
  .p-story__scenes--item:nth-of-type(even) {
    padding-left: 6.2rem;
  }
  .p-story__scenes--image {
    margin-bottom: 2.4rem;
    position: relative;
  }
  .p-story__scenes--image-character {
    position: absolute;
  }
  .p-story__scenes--title {
    font-size: 4.5rem;
  }
  .p-story__scenes--title-en {
    font-size: 5.4rem;
  }
  .p-story__scenes--sentence {
    font-size: 1.4rem;
  }
  .p-story__scenes--link {
    width: 100%;
    margin-top: 5rem;
    gap: 0.8rem;
  }
  .p-story__scenes--link dt {
    font-size: 1.4rem;
  }
  .p-story__scenes--link .c-btn__02 {
    width: 100%;
  }
  .p-story__scenes-01 .p-story__scenes--image-character {
    width: 12.7rem;
    right: -7.2rem;
    bottom: -3.8rem;
  }
  .p-story__scenes-02 .p-story__scenes--image-character {
    width: 14.3rem;
    bottom: -1.6rem;
    left: -6.2rem;
  }
  .p-story__scenes-03 .p-story__scenes--image-character {
    width: 11.9rem;
    right: -6rem;
    bottom: -1.6rem;
  }
  .p-story__scenes-04 .p-story__scenes--image-character {
    width: 12.2rem;
    bottom: -2.4rem;
    left: -6.2rem;
  }
  .p-story__scenes-05 .p-story__scenes--image-character {
    width: 11.9rem;
    right: -6.5rem;
    bottom: -2.4rem;
  }
  .p-story__voice {
    min-height: 40.8rem;
    margin-top: 9rem;
    padding-top: 6.2rem;
  }
  .p-story__voice-card--inner {
    padding-top: 3.2rem;
    padding-bottom: 2.6rem;
  }
  .p-story__voice-card--frame {
    width: 2.8rem;
    top: -2px;
  }
  .p-story__voice-card--frame .circle01 {
    width: 2.4rem;
    bottom: 0.4rem;
  }
  .p-story__voice-card--frame .circle02 {
    width: 2.8rem;
    bottom: -0.1rem;
  }
  .p-story__voice-card--frame-left {
    left: -0.2rem;
  }
  .p-story__voice-card--frame-left .circle01 {
    right: 0.4rem;
  }
  .p-story__voice-card--frame-left .circle02 {
    right: -0.1rem;
    clip-path: inset(calc(50% + 0.3rem) 0 0 calc(50% + 0.3rem));
  }
  .p-story__voice-card--frame-right {
    right: -2px;
  }
  .p-story__voice-card--frame-right .circle01 {
    left: 0.4rem;
  }
  .p-story__voice-card--frame-right .circle02 {
    left: -0.1rem;
    clip-path: inset(calc(50% + 0.3rem) calc(50% + 0.3rem) 0 0);
  }
  .p-story__voice-card--deco-top {
    width: 11.2rem;
    margin-bottom: 1.8rem;
  }
  .p-story__voice-card--deco-bottom {
    width: 16.8rem;
    margin-top: 1.5rem;
  }
  .p-story__voice-card--title {
    font-size: 2.4rem;
  }
  .p-story__voice-card--content {
    font-size: 1.3rem;
  }
  .p-story__voice-card .c-btn__01 {
    margin-top: 2rem;
  }
  .p-story__voice-card--character {
    bottom: -3.5rem;
  }
  .p-story__voice-card--character-01 {
    width: 6.3rem;
    left: -1rem;
  }
  .p-story__voice-card--character-02 {
    width: 6.1rem;
  }
  .p-story__voice--bg {
    height: 40.8rem;
  }
}
.p-products__navi {
  margin-bottom: 16.6rem;
}
.p-products__navi--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-products__lead {
  margin-bottom: 20rem;
}
.p-products__lead--title {
  margin-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-products__lead--title-label {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
}
.p-products__lead--title-main {
  font-weight: 700;
  font-size: 2.8rem;
}
.p-products__lead--sentence {
  margin-top: 5.6rem;
  font-size: 2rem;
}
.p-products__point {
  margin-bottom: 18rem;
}
.p-products__point--image {
  width: min(107.5rem, 60vw);
  position: relative;
}
.p-products__point--image-character {
  width: 20.2rem;
  position: absolute;
  right: 7.6rem;
  bottom: 0;
}
.p-products__point--image-arrow {
  position: absolute;
}
.p-products__point--image-arrow-01 {
  width: min(34.1rem, 18.9vw);
  top: 18rem;
  left: -10rem;
}
.p-products__point--image-arrow-02 {
  width: min(38.2rem, 21.2vw);
  top: 30rem;
  left: -10rem;
}
.p-products__point--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-products__point--item {
  display: grid;
  grid-template-columns: 9.2rem 1fr;
}
.p-products__point--item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  font-size: 5.8rem;
  line-height: 1;
}
.p-products__point--item-label-text {
  letter-spacing: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.4rem;
}
.p-products__point--item-detail {
  font-size: 1.6rem;
}
.p-products__point--catch {
  margin-top: 2em;
  font-size: 2.4rem;
}
.p-products__information {
  margin-bottom: 20rem;
  padding-top: 16rem;
  padding-bottom: 16rem;
  border-radius: 1rem;
  background-color: #fffcd6;
}
.p-products__information--image {
  width: min(89.2rem, 49.5vw);
  overflow: hidden;
  border-radius: 1rem;
}
.p-products__information--content-title {
  margin-bottom: 5.4rem;
}
.p-products__information--size-title {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2.8rem;
}
.p-products__information--size-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-products__information--size-item {
  padding: 4rem;
  display: grid;
  gap: 2.6rem;
  grid-template-columns: 6.4rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.p-products__information--size-item-text {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-products__information--detail {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-products__information--detail-item {
  padding-bottom: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid;
}
.p-products__information--detail dt::after {
  content: "/";
}
.p-products__commitment {
  margin-bottom: 27rem;
}
.p-products__commitment--title {
  margin-bottom: 12rem;
}
.p-products__commitment--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13rem;
}
.p-products__commitment--item.item01 .img02, .p-products__commitment--item.item03 .img02 {
  right: 0;
  bottom: -4.6rem;
}
.p-products__commitment--item.item02 .img01 {
  margin-left: auto;
}
.p-products__commitment--item.item02 .img02 {
  bottom: -4.6rem;
  left: 0;
}
.p-products__commitment--item + .p-products__commitment--item {
  margin-top: 23rem;
}
.p-products__commitment--item-visual {
  width: 58%;
  position: relative;
}
.p-products__commitment--item-visual-img {
  padding: 0.8rem;
  border: 1px solid;
  border-radius: 1rem;
}
.p-products__commitment--item-visual-img.img01 {
  width: 74%;
  aspect-ratio: 725/720;
}
.p-products__commitment--item-visual-img.img02 {
  width: 39%;
  position: absolute;
  background-color: #f9f6f1;
  aspect-ratio: 372/396;
}
.p-products__commitment--item-visual-img img,
.p-products__commitment--item-visual-img video {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-products__commitment--item-text {
  font-weight: 700;
}
.p-products__commitment--item-text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-products__commitment--item-title {
  margin-bottom: 0.75em;
  font-size: 4.8rem;
  line-height: 2;
}
.p-products__shop {
  padding-bottom: 16rem;
}
.p-products__items {
  margin-top: 12rem;
}
.p-products__items--title {
  margin-bottom: 5rem;
}
.p-products__items--list {
  display: grid;
  gap: 5rem 4.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-products__items--item {
  padding-bottom: 3rem;
  border-bottom: 2px solid;
}
.p-products__items--link {
  display: grid;
  gap: 0 4rem;
  grid-template-columns: 23.5rem 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 700;
  font-size: 2.4rem;
}
.p-products__items--thumb {
  padding: 0.3rem;
  border: 1px solid;
  border-radius: 0.6rem;
}

@media screen and (min-width: 768px) {
  .p-products__point--inner {
    position: relative;
    z-index: 2;
  }
  .p-products__point--inner::before, .p-products__point--inner::after {
    content: "";
    width: 100%;
    height: 10px;
    position: absolute;
    left: 0;
    z-index: -1;
    display: block;
  }
  .p-products__point--inner::before {
    top: 0;
    border-top: 3px solid;
    border-bottom: 1px solid;
  }
  .p-products__point--inner::after {
    bottom: 0;
    border-top: 1px solid;
    border-bottom: 3px solid;
  }
  .p-products__point--image {
    margin-right: -2rem;
    margin-left: auto;
    top: -2rem;
  }
  .p-products__point--content {
    width: 47rem;
    position: absolute;
    top: 13rem;
    left: 0;
  }
  .p-products__point--item {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid;
  }
  .p-products__point--item-label {
    border-right: 1px solid;
  }
  .p-products__point--item-detail {
    padding-left: 2rem;
  }
  .p-products__information--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-products__commitment--item {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-products__commitment--item:nth-of-type(odd) {
    padding-right: 10rem;
  }
  .p-products__commitment--item:nth-of-type(odd) .p-products__commitment--item-sentence {
    max-width: 45.2rem;
  }
  .p-products__commitment--item:nth-of-type(even) {
    padding-left: 10rem;
  }
  .p-products__commitment--item:nth-of-type(even) .p-products__commitment--item-sentence {
    max-width: 42rem;
  }
  .p-products__commitment--item.is-reverse {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-products__commitment--item-title {
    white-space: nowrap;
  }
  .p-products__commitment--item.item03 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-products__navi {
    margin-bottom: 7.2rem;
  }
  .p-products__navi--list {
    gap: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-products__lead {
    margin-bottom: 5rem;
  }
  .p-products__lead--title {
    margin-bottom: 2.8rem;
    gap: 1rem;
  }
  .p-products__lead--title-label {
    font-size: 4.2rem;
  }
  .p-products__lead--title-main {
    font-size: 1.4rem;
  }
  .p-products__lead--sentence {
    margin-top: 2.8rem;
    font-size: 1.4rem;
  }
  .p-products__point {
    margin-bottom: 5rem;
  }
  .p-products__point--image {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-products__point--image-character {
    width: 6.6rem;
    right: 1.8rem;
    bottom: 0;
  }
  .p-products__point--image-arrow {
    position: absolute;
  }
  .p-products__point--image-arrow-01 {
    width: 9.8rem;
    top: -2.5rem;
    left: 2.5rem;
  }
  .p-products__point--image-arrow-02 {
    width: 5.4rem;
    top: 11rem;
    left: 5.4rem;
  }
  .p-products__point--content {
    padding-bottom: 2.4rem;
    gap: 2.4rem;
    border-bottom: 1px solid;
  }
  .p-products__point--item {
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }
  .p-products__point--item-label {
    gap: 0.4rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2.4rem;
  }
  .p-products__point--item-label::after {
    content: "";
    height: 1px;
    margin: auto 0 0.8rem 2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: #583c32;
  }
  .p-products__point--item-label-text {
    font-size: 1.8rem;
  }
  .p-products__point--item-detail {
    font-size: 1.4rem;
  }
  .p-products__point--catch {
    margin-top: 2em;
    font-size: 1.4rem;
  }
  .p-products__information {
    margin-bottom: 6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .p-products__information--image {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-products__information--content-title {
    margin-bottom: 2.4rem;
    gap: 1.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .p-products__information--size-title {
    font-size: 1.6rem;
  }
  .p-products__information--size-list {
    gap: 0.6rem;
  }
  .p-products__information--size-item {
    padding: 2rem;
    gap: 2rem;
    grid-template-columns: 6.4rem 1fr;
  }
  .p-products__information--size-item-text {
    font-size: 1.4rem;
  }
  .p-products__commitment {
    margin-bottom: 5rem;
  }
  .p-products__commitment--title {
    margin-bottom: 6rem;
  }
  .p-products__commitment--item {
    gap: 11rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-products__commitment--item + .p-products__commitment--item {
    margin-top: 5.4rem;
  }
  .p-products__commitment--item.item01 .img02, .p-products__commitment--item.item03 .img02 {
    bottom: -8.4rem;
  }
  .p-products__commitment--item.item02 .img02 {
    bottom: -8.4rem;
  }
  .p-products__commitment--item-visual {
    width: 92%;
  }
  .p-products__commitment--item-visual-img {
    padding: 0.2rem;
  }
  .p-products__commitment--item-visual-img.img01 {
    width: 84%;
  }
  .p-products__commitment--item-visual-img.img02 {
    width: 45%;
    bottom: -8.4rem;
  }
  .p-products__commitment--item-title {
    margin-bottom: 0.5em;
    font-size: 2rem;
  }
  .p-products__shop {
    padding-bottom: 5rem;
  }
  .p-products__items {
    margin-top: 5rem;
  }
  .p-products__items--title {
    margin-bottom: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-products__items--list {
    gap: 1rem 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .p-products__items--item {
    padding-bottom: 1rem;
    border-bottom-width: 1px;
  }
  .p-products__items--link {
    gap: 0 1.8rem;
    grid-template-columns: 8.4rem minmax(0, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
  }
  .p-products__items--thumb {
    padding: 0.1rem;
    border: 1px solid;
    border-radius: 0.2rem;
  }
}
.contents {
  font-size: 16px;
  background: #fff;
  padding-bottom: 100px;
}

.shop_p_slider_wrap {
  overflow: hidden;
  width: 100%;
}

.shop_p_slider.slick-slider .slick-list {
  height: auto !important;
}

.shop_p_slider.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.shop_p_slider.slick-slider .slick-track .slick-slide {
  height: auto !important;
}
.shop_p_slider.slick-slider .slick-track .slick-slide img {
  display: block;
}

@media screen and (min-width: 768px) {
  .category_list01 .inner > ul li.half.baked {
    padding-bottom: 260px;
  }
}
.shop_list ul li a .text dl dt {
  font-size: 16px;
  min-width: unset;
  width: 30%;
}
.shop_list ul li a .text dl dd {
  font-size: 16px;
  min-width: unset;
  width: 70%;
}

@media screen and (max-width: 767px) {
  .contents {
    font-size: 14px;
    padding-bottom: 50px;
  }
  .shop_list ul li a .text dl dt {
    font-size: 14px;
  }
  .shop_list ul li a .text dl dd {
    font-size: 14px;
  }
}