@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.u-small {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-small {
    display: block;
  }
}

.text {
  display: block;
}
.text:not(:first-child) {
  margin-top: 1.25rem;
}

html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

/***************************************
ボタン
****************************************/
.c-btn {
  margin-top: 1.25rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  padding-bottom: 0.625rem;
  position: relative;
}
.c-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn .c-btn__text {
  font-size: 1.0625rem;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-btn .c-btn__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
.c-btn .c-btn__icon {
  position: relative;
  display: inline-block;
  width: 1.5625rem;
  height: 0.0625rem;
  margin-bottom: 0.5rem;
  border-radius: 9999px;
  background-color: #fff;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn .c-btn__icon::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.03125rem);
  right: 0;
  width: 0.5rem;
  height: 0.0625rem;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: calc(100% - 0.03125rem) 50%;
          transform-origin: calc(100% - 0.03125rem) 50%;
}
@media (any-hover: hover) {
  .c-btn:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .c-btn:hover .c-btn__icon {
    -webkit-transform: translateX(0.625rem);
            transform: translateX(0.625rem);
  }
}

.c-cart__btn {
  width: 100%;
  height: 100%;
  background-color: #EC6C00;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.875rem;
  color: #fff;
  border-radius: 0.3125rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.c-cart__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
@media screen and (max-width: 767px) {
  .c-cart__btn {
    align-items: center;
    padding: 0.5625rem 0.625rem;
    gap: 0.3125rem;
  }
}
.c-cart__btn .c-cart__btn-icon {
  width: 1.625rem;
  height: 1.625rem;
  background-image: url(../images/page/cart-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-cart__btn .c-cart__btn-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.c-cart__btn .c-cart__btn-text {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-cart__btn .c-cart__btn-text {
    margin-top: 0.125rem;
    font-size: 1rem;
    line-height: 1;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    padding: 0 0;
    position: fixed;
    top: 0.875rem;
    right: 1.375rem;
    z-index: 21;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0;
  }
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span {
  background-color: #363636;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* アーカイブページのページ送り */
.c-pagenation {
  margin-top: 3rem;
}
.c-pagenation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.c-pagenation .nav-links a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-pagenation .nav-links a:hover {
    opacity: 0.7;
  }
}
.c-pagenation .page-numbers {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}
.c-pagenation .page-numbers.current {
  border: 1px solid currentColor;
  border-radius: 50%;
}
.c-pagenation .page-numbers.dots {
  border: 0;
}
.c-pagenation .page-numbers.prev, .c-pagenation .page-numbers.next {
  display: none;
}

.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    opacity: 0.5;
  }
}

.c-single-pagenation__prev a {
  left: 0;
}
.c-single-pagenation__prev a::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}

.c-single-pagenation__next a {
  right: 0;
}
.c-single-pagenation__next a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  transition: 0.3s;
}
.c-single-pagenation__back a::before {
  content: "(";
  display: block;
}
.c-single-pagenation__back a::after {
  content: ")";
  display: block;
}
@media (any-hover: hover) {
  .c-single-pagenation__back a:hover {
    opacity: 0.5;
  }
}
.c-single-pagenation__back span {
  text-decoration: underline;
}

.c-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    gap: 0.625rem;
  }
}
.c-title .text-en {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  font-family: "Noto Sans JP", sans-serif;
}
.c-title .text-ja {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-title .text-ja {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

.c-page__title {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-page__title {
    gap: 0.9375rem;
  }
}
.c-page__title .en {
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-page__title .en {
    font-size: 2.5rem;
  }
}
.c-page__title .ja {
  font-size: 1.5625rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-page__title .ja {
    font-size: 1rem;
    line-height: 1.2;
  }
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.l-page__heading {
  width: 100%;
  position: relative;
}

.l-page__heading-img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .l-page__heading-img {
    aspect-ratio: 390/248;
  }
}

.l-page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* 念のため、Swiperコンテナ側も縮小許可 */
.p-item__item-swiper,
.p-item__item-thumbnail {
  min-width: 0;
}

/* 画像のはみ出しガード */
.p-item__item-swiper img,
.p-item__item-thumbnail img {
  display: block;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
  aspect-ratio: 584/386;
}

.p-item__item-thumbnail {
  margin-top: 0.625rem;
}

.p-item__item-thumbnail-slide {
  cursor: pointer;
  transition: 0.3s;
  transition-property: opacity, -webkit-transform !important;
  transition-property: transform, opacity !important;
  transition-property: transform, opacity, -webkit-transform !important;
}
@media (any-hover: hover) {
  .p-item__item-thumbnail-slide:hover {
    opacity: 0.7;
  }
}

.p-item__item-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-item__item-btn .button-next,
.p-item__item-btn .button-prev {
  width: 2.375rem;
  height: 2.375rem;
  background-color: #707070;
  border-radius: 0.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-item__item-btn .button-next,
  .p-item__item-btn .button-prev {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
@media (any-hover: hover) {
  .p-item__item-btn .button-next:hover,
  .p-item__item-btn .button-prev:hover {
    background-color: rgba(112, 112, 112, .7);
  }
}
.p-item__item-btn .button-next {
  position: relative;
}
.p-item__item-btn .button-next .icon-arrow-right {
  display: inline-block;
  width: 9.4px;
  height: 13.2px;
}
.p-item__item-btn .button-next .icon-arrow-right::before, .p-item__item-btn .button-next .icon-arrow-right::after {
  content: "";
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0.8125rem;
  width: 11px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 1.5px) 50%;
          transform-origin: calc(100% - 1.5px) 50%;
}
.p-item__item-btn .button-next .icon-arrow-right::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-item__item-btn .button-next .icon-arrow-right::after {
  -webkit-transform: rotate(-43deg);
          transform: rotate(-43deg);
}
.p-item__item-btn .button-prev {
  position: relative;
}
.p-item__item-btn .button-prev .icon-arrow-left {
  display: inline-block;
  width: 9.4px;
  height: 13.2px;
}
.p-item__item-btn .button-prev::before, .p-item__item-btn .button-prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0.8125rem;
  width: 11px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: 1.5px 50%;
          transform-origin: 1.5px 50%;
}
.p-item__item-btn .button-prev::before {
  -webkit-transform: rotate(43deg);
          transform: rotate(43deg);
}
.p-item__item-btn .button-prev::after {
  -webkit-transform: rotate(-43deg);
          transform: rotate(-43deg);
}

/*
gallery
*/
/* 左右のスライド */
.p-item__gallery-swiper.swiper {
  overflow: visible;
}
.p-item__gallery-swiper .swiper-slide {
  height: auto;
}
.p-item__gallery-swiper .swiper-slide img {
  height: 100%;
  border-radius: 0.9375rem;
}

/* 既定：少し小さく */
.p-item__gallery-swiper .swiper-slide {
  -webkit-transform: translateZ(0) scale(0.85) !important;
          transform: translateZ(0) scale(0.85) !important;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

/* 中央だけ等倍 */
.p-item__gallery-swiper .swiper-slide-active {
  -webkit-transform: translateZ(0) scale(1) !important;
          transform: translateZ(0) scale(1) !important;
  z-index: 2;
}

.p-item__gallery-pagination .swiper-pagination-bullet {
  background-color: #6f6f6f;
}
.p-item__gallery-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  background-color: #EFEADC;
  transition: all 0.3s;
}
.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-drawer__wrap {
  height: calc(100vh - 2.5rem);
  overflow-y: scroll;
}

.p-drawer__logo a {
  display: block;
  width: 2.9375rem;
  aspect-ratio: 47/32;
  margin-left: 0.75rem;
  margin-top: 0.5rem;
}
.p-drawer__logo a img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__nav {
  margin-top: 5.8125rem;
}

.p-drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 4.125rem;
  color: #363636;
}

.p-drawer__nav-item {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 600;
}
@media screen and (max-width: 390px) {
  .p-drawer__nav-item {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-drawer__nav-item a {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  position: relative;
}
.p-drawer__nav-item a::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #363636;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-drawer__nav-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-drawer__sns {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 4.125rem;
  margin-top: 3rem;
}

.p-drawer__sns-item {
  display: block;
  width: 1.6875rem;
  height: 1.6875rem;
}
.p-drawer__sns-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
@media (any-hover: hover) {
  .p-drawer__sns-item:hover {
    -webkit-animation: rotate 1s ease-in-out forwards;
            animation: rotate 1s ease-in-out forwards;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-drawer__copy {
  margin-top: 0.8125rem;
  padding-block: 0.3125rem;
  text-align: center;
  border-top: 1px solid #EC6C00;
}

.p-drawer__copy-text {
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 600;
  color: #363636;
  letter-spacing: 0.03em;
}

.p-footer {
  width: 100%;
  min-height: 17.5rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer {
    min-height: auto;
  }
}
.p-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/footer-bg.webp) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-footer::before {
    background: url(../images/footer-bg-sp.webp) no-repeat center center/cover;
  }
}

.p-footer__inner {
  width: 100%;
  max-width: 67.375rem;
  margin-inline: auto;
  padding: 4.625rem 1.25rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    max-width: 100%;
    padding: 3.4375rem 1.25rem 0.8125rem;
  }
}

.p-footer__container {
  display: flex;
  gap: 15%;
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
}

.p-footer__logo {
  width: 12.3125rem;
  aspect-ratio: 197/135;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 9.125rem;
    aspect-ratio: 146/100;
  }
}

.p-footer__logo img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 5.6875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-list {
    -webkit-margin-before: 2.875rem;
            margin-block-start: 2.875rem;
    gap: 1.125rem 3.375rem;
  }
}

.p-footer__menu-item a {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  line-height: 1.7222222222;
  letter-spacing: 0.02em;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-item a {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-footer__menu-item a::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__menu-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-footer__sns {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: auto;
          margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-before: 1.1875rem;
            margin-block-start: 1.1875rem;
  }
}

.p-footer__sns-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.p-footer__sns-item a {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__sns-item:hover {
    -webkit-animation: rotate 1s ease-in-out forwards;
            animation: rotate 1s ease-in-out forwards;
  }
}
.p-footer__sns-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-footer__copy {
  border-top: 1px solid #fff;
  text-align: center;
  padding: 0.375rem 0;
}

.p-footer__copy-text {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-text {
    font-size: 0.625rem;
    line-height: 1.8;
  }
}

/***************************************
MV
****************************************/
.p-mv {
  width: 100%;
  height: 100%;
}

.p-mv__top {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__content {
  position: absolute;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  padding-right: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    padding-right: 0;
    top: 17%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    right: auto;
    width: 100%;
    padding-inline: 1.875rem;
  }
}

.p-mv__title {
  font-size: 3.25rem;
  font-weight: bold;
  line-height: 1.3461538462;
  letter-spacing: 0.05em;
  text-shadow: 0 0.0625rem 0.75rem rgba(54, 54, 54, .3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2rem;
    line-height: 1.46875;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 390px) {
  .p-mv__title {
    font-size: 1.5rem;
  }
}
.p-mv__title > span {
  display: block;
}
.p-mv__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #070707;
  opacity: 0.16;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="12.2910003662" /></filter></svg>#filter');
  -webkit-filter: blur(12.2910003662px);
          filter: blur(12.2910003662px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-mv__text {
  font-size: 1.5625rem;
  line-height: 2.2;
  letter-spacing: 0.03em;
  text-shadow: 0 0.0625rem 0.75rem rgba(54, 54, 54, .3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 1rem;
    line-height: 2.1875;
    margin-top: 0.3125rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 390px) {
  .p-mv__text {
    font-size: 0.875rem;
    line-height: 2.5;
    white-space: normal;
  }
}
.p-mv__text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #070707;
  opacity: 0.16;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="12.2910003662" /></filter></svg>#filter');
  -webkit-filter: blur(12.2910003662px);
          filter: blur(12.2910003662px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-mv__bottom {
  -webkit-margin-before: -0.125rem;
          margin-block-start: -0.125rem;
  position: relative;
}

.p-mv__bottom-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(100% - 2.5rem, 59rem);
  margin-inline: auto;
}

.p-mv__media {
  display: flex;
  align-items: center;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .p-mv__media {
    flex-direction: column;
    gap: 2.3125rem;
  }
}

.p-mv__media-item-logo {
  width: 12.3125rem;
  aspect-ratio: 197/135;
  flex-shrink: 0;
}

.p-mv__media-item-text {
  flex: 1;
  color: #fff;
  position: relative;
}
.p-mv__media-item-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #242424;
  opacity: 0.15;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="18.378900528" /></filter></svg>#filter');
  -webkit-filter: blur(18.378900528px);
          filter: blur(18.378900528px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-mv__media-heading {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-mv__media-heading {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    text-align: center;
  }
}

.p-mv__media-text {
  margin-top: 1.5625rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-mv__media-text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
    text-align: center;
  }
}

/***************************************
item
****************************************/
.p-front-item {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block: 5rem 6.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front-item {
    padding-block: 2.8125rem 3.75rem;
  }
}
.p-front-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top-section-bg01.webp) no-repeat center center/cover;
  z-index: -1;
}

.p-front-item__inner {
  width: 100%;
  max-width: 70.625rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}

.p-front-item__title {
  text-align: center;
}

.p-front-item__content {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.1875rem, 1fr));
  grid-template-rows: subgrid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-item__content {
    margin-top: 1.4375rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-front-item__content-item {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-front-item__content-item {
    width: 80%;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 480px) {
  .p-front-item__content-item {
    width: 100%;
  }
}

.p-front-item__content-item-img {
  aspect-ratio: 3/2;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-front-item__content-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0.1875rem 1.625rem rgba(54, 54, 54, .2);
}

.p-front-item__content-item-body {
  margin-top: 1.625rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-front-item__content-item-body {
    margin-top: 1.0625rem;
  }
}

.p-front-item__content-item-name {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-front-item__content-item-name {
    font-size: 0.9375rem;
  }
}

.p-front-item__content-item-more {
  width: -webkit-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin-top: auto;
  padding-bottom: 0.3125rem;
  display: flex;
  gap: 0.625rem;
  color: #363636;
  align-items: flex-start;
  position: relative;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-front-item__content-item-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #363636;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-front-item__content-item-more .text {
  color: #363636;
  font-size: 0.8125rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-front-item__content-item-more .text {
    font-size: 0.8125rem;
  }
}
.p-front-item__content-item-more .icon {
  position: relative;
  display: inline-block;
  width: 1.3125rem;
  height: 0.0625rem;
  margin-top: 0.625rem;
  border-radius: 9999px;
  background-color: #363636;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-front-item__content-item-more .icon::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.03125rem);
  right: 0;
  width: 0.5rem;
  height: 0.0625rem;
  border-radius: 9999px;
  background-color: #363636;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: calc(100% - 0.03125rem) 50%;
          transform-origin: calc(100% - 0.03125rem) 50%;
}

@media (any-hover: hover) {
  .p-front-item__content-item:hover {
    /* ▼ここを修正 */
  }
  .p-front-item__content-item:hover .p-front-item__content-item-more::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .p-front-item__content-item:hover .p-front-item__content-item-more .icon {
    -webkit-transform: translateX(0.625rem);
            transform: translateX(0.625rem);
  }
}

.p-front-item__more {
  margin-top: 3rem;
  text-align: center;
}
.p-front-item__more .c-btn {
  display: inline-flex;
  margin-left: 0;
}
.p-front-item__more .c-btn::after {
  background-color: #000;
}
.p-front-item__more .c-btn__icon {
  background-color: #000;
}
.p-front-item__more .c-btn__icon::before {
  background-color: #000;
}

/***************************************
concept
****************************************/
.p-concept {
  width: 100%;
  height: 100%;
}

.p-concept__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-concept__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-concept__text-content {
  background-color: #EC6C00;
  color: #fff;
  padding: 6.25rem 4.4375rem 8rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__text-content {
    padding: 2.75rem 2.1875rem;
  }
}

.p-concept__catch {
  font-size: 1.375rem;
  line-height: 3.9545454545;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-concept__catch {
    font-size: 0.875rem;
    line-height: 3.9285714286;
  }
}
.p-concept__catch > span {
  display: block;
}
.p-concept__catch::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.p-concept__title {
  font-size: 1.875rem;
  line-height: 1.3666666667;
  letter-spacing: 0.03em;
  font-weight: 550;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__title {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-concept__text {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 2.1875;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-concept__text {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    line-height: 1.9230769231;
  }
}

.p-concept__img-content {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-concept__img-content {
    aspect-ratio: 390/260;
  }
}
.p-concept__img-content img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/***************************************
news
****************************************/
.p-front-news {
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  padding-block: 3.3125rem 4.5625rem;
}
@media screen and (max-width: 767px) {
  .p-front-news {
    padding-block: 2.1875rem 3.75rem;
  }
}
.p-front-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top-item09.webp) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-front-news::before {
    background: url(../images/top-item09-sp.webp) no-repeat center center/cover;
  }
}

.p-front-news__inner {
  width: 100%;
  max-width: 75.6875rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}

.p-front-news__title {
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  padding-bottom: 1.875rem;
  position: relative;
  text-shadow: 0 0 0.625rem rgba(54, 54, 54, .25);
}
@media screen and (max-width: 767px) {
  .p-front-news__title {
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.25rem;
  }
}
.p-front-news__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 21.4375rem;
  height: 4.75rem;
  background-color: rgba(54, 54, 54, .25);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="18" /></filter></svg>#filter');
  -webkit-filter: blur(1.125rem);
          filter: blur(1.125rem);
  border-radius: 3.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-front-news__title::before {
    width: 13.25rem;
    height: 4.9375rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.p-front-news__title .text-en {
  font-size: 3.75rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-front-news__title .text-ja {
  font-size: 1.25rem;
  line-height: 3;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-front-news__title .text-ja {
    font-size: 0.9375rem;
    line-height: 1.2;
    margin-top: -0.625rem;
  }
}

.p-front-news__list {
  margin-top: 3.5rem;
  width: 78%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front-news__list {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.p-front-news__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 5rem);
  height: calc(100% + 5rem);
  background-color: rgba(54, 54, 54, .25);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="18" /></filter></svg>#filter');
  -webkit-filter: blur(1.125rem);
          filter: blur(1.125rem);
  border-radius: 3.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-front-news__list::before {
    width: calc(100% + 1.875rem);
    height: calc(100% + 1.875rem);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="30" /></filter></svg>#filter');
    -webkit-filter: blur(1.875rem);
            filter: blur(1.875rem);
    border-radius: 1.875rem;
  }
}

.p-front-news__link {
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .p-front-news__link {
    flex-direction: column;
    gap: 0;
  }
}
@media (any-hover: hover) {
  .p-front-news__link:hover {
    color: #EC6C00;
  }
}

.p-front-news__date {
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-front-news__text {
  font-size: 0.875rem;
  line-height: 1.8;
}

.p-front-news__btn {
  margin-top: 3rem;
}

/***************************************
pickup
****************************************/
.p-pickup {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block: 5.125rem 5.9375rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-pickup {
    padding-block: 5.9375rem 2.625rem;
  }
}
.p-pickup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EC6C00;
  z-index: -1;
}
.p-pickup::after {
  content: "PICK UP!";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding-left: 1.625rem;
  padding-top: 1.75rem;
  font-size: 5.3125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, .34);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-pickup::after {
    font-size: 3.125rem;
    padding-top: 1.25rem;
    padding-left: 1.0625rem;
  }
}

.p-pickup__inner {
  width: 100%;
  max-width: 73.125rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}

.p-pickup__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .p-pickup__content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.25rem;
  }
}

.p-pickup__content-body {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-pickup__content-body {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .p-pickup__content-body {
    width: 100%;
  }
}

.p-pickup__title {
  font-size: 2.1875rem;
  line-height: 2.2;
  letter-spacing: 0.03em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-pickup__title {
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-pickup__text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-pickup__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-pickup__content-item {
  flex: 0 0 33.75rem;
}
@media screen and (max-width: 767px) {
  .p-pickup__content-item {
    flex: 0 0 100%;
  }
}
.p-pickup__content-item img {
  border-radius: 1.25rem;
}

/***************************************
instagram
****************************************/
.p-instagram {
  width: 100%;
  min-height: 52.25rem;
  position: relative;
  padding-block: 5.125rem 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-instagram {
    min-height: 26.25rem;
    padding-block: 2.625rem;
  }
}
.p-instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top-section-bg03.webp) no-repeat center center/cover;
  z-index: -1;
}

.p-instagram__inner {
  width: 100%;
  max-width: 54.75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}

.p-instagram__title {
  font-size: 2.8125rem;
  line-height: 1.9333333333;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-instagram__title {
    font-size: 2.5rem;
    line-height: 1.375;
  }
}

.p-header {
  width: 100%;
  height: 4.75rem;
  position: fixed;
  top: 0;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: rgba(54, 54, 54, .46);
  color: #fff;
  padding-inline: 1.25rem 3.5625rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 0.75rem 1.25rem;
  }
}

/* フロントだけ透過 */
body.home .p-header__inner {
  background-color: rgba(54, 54, 54, .46);
}

/* アイテムページだけ不透明 */
body.is-item-page .p-header__inner {
  background-color: #363636;
}

/* ハンバーガーメニューopen時は常に透過 */
.p-header__inner.open {
  background-color: transparent;
}

.p-header__logo {
  width: 4.1875rem;
  aspect-ratio: 67/46;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    margin-top: 0;
    width: 2.9375rem;
    aspect-ratio: 47/32;
    display: grid;
    place-items: center;
  }
}

.p-header__logo a {
  width: 100%;
  display: block;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.5;
  }
}

.p-header__logo a img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

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

.p-header__nav-item {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-header__nav-item a {
  display: flex;
  place-items: center;
  height: 100%;
  padding-block: 1.25rem;
  position: relative;
  white-space: nowrap;
  position: relative;
}
.p-header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0.8125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-item-list {
  width: 100%;
  padding-block: 7.5rem 6.5625rem;
}
@media screen and (max-width: 767px) {
  .p-item-list {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-item-list__inner {
  width: 100%;
  max-width: 72.5rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-item-list__inner {
    padding-inline: 1.25rem;
  }
}

.p-item-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.9375rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-item-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.8125rem;
  }
}

.p-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-card {
    gap: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-card:hover .p-card__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-card__img {
  display: block;
  width: 100%;
  box-shadow: 0 0.1875rem 1.875rem rgba(54, 54, 54, .3);
  overflow: hidden;
  border-radius: 0.625rem;
}
.p-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 323/252;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  border-radius: 0.625rem;
}

.p-card__title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #363636;
}
@media screen and (max-width: 767px) {
  .p-card__title {
    font-size: 0.9375rem;
  }
}

.p-card__price {
  display: flex;
  align-items: flex-end;
  gap: 0.3125rem;
}
.p-card__price .p-card__price-price {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: #363636;
}
@media screen and (max-width: 767px) {
  .p-card__price .p-card__price-price {
    font-size: 0.875rem;
  }
}
.p-card__price .p-card__price-tax {
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-card__price .p-card__price-tax {
    font-size: 0.5rem;
  }
}

.p-card__button-wrapper {
  width: 100%;
  height: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-card__button-wrapper {
    height: 1.9375rem;
  }
}
.p-card__button-wrapper .c-cart__btn {
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-card__button-wrapper .c-cart__btn {
    padding: 0.3125rem 0.9375rem;
  }
}
.p-card__button-wrapper .c-cart__btn-text {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-card__button-wrapper .c-cart__btn-text {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

/***************************************
p-item
****************************************/
.p-item {
  padding-block: 10.375rem 7.5rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-item {
    padding-block: 5.875rem 4.0625rem;
  }
}
.p-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/page/page-bg01.webp) no-repeat center 100%/100% 100%;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-item::before {
    height: 100%;
    aspect-ratio: 390/638;
    background: url(../images/page/page-bg-sp01.webp) no-repeat center 100%/100% 100%;
  }
}
.p-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 2.4375rem;
  width: 35.6%;
  aspect-ratio: 487/65;
  background: url(../images/page/page-bg-item.webp) no-repeat center center/contain;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-item::after {
    right: 0;
    width: 17.25rem;
    height: 2.75rem;
    background: url(../images/page/page-bg-item-sp.webp) no-repeat center center/contain;
  }
}

.p-item__content {
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7%;
}
@media screen and (max-width: 767px) {
  .p-item__content {
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-item__item {
  flex: 0 0 60%;
  padding-inline: 3.4375rem;
  min-width: 0;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-item__item {
    flex: 1 1 auto;
    padding-inline: 2.5rem;
    width: 100%;
  }
}

.p-item__body {
  width: 100%;
  max-width: 22.8125rem;
}
@media screen and (max-width: 767px) {
  .p-item__body {
    max-width: 100%;
  }
}

.p-item__body-title {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1666666667;
}
@media screen and (max-width: 767px) {
  .p-item__body-title {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}

.p-item__body-price {
  display: flex;
  align-items: flex-end;
  gap: 0.3125rem;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-item__body-price {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.p-item__body-price .price {
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.16;
}
@media screen and (max-width: 767px) {
  .p-item__body-price .price {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.p-item__body-price .tax {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-item__body-price .tax {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}

.p-item__body-text {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.p-item__btn-wrap {
  -webkit-margin-before: 1.6875rem;
          margin-block-start: 1.6875rem;
  width: min(100%, 22.8125rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-item__btn-wrap {
    -webkit-margin-before: 1.75rem;
            margin-block-start: 1.75rem;
    width: 100%;
    height: 3.4375rem;
  }
}
@media (any-hover: hover) {
  .p-item__btn-wrap .c-cart__btn:hover {
    background-color: rgba(236, 108, 0, .7);
  }
}

/***************************************
info
****************************************/
.p-item__info {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block: 6.875rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-item__info {
    padding-block: 4.375rem 3.75rem;
  }
}
.p-item__info::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/page/page-bg02.webp) no-repeat center 100%/100% 100%;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-item__info::before {
    background: url(../images/page/page-bg-sp02.webp) no-repeat center 100%/100% 100%;
  }
}

.p-item__info-content {
  width: 100%;
  max-width: 43.75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-item__info-content {
    max-width: 100%;
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-item__info-title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-item__info-title {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }
}

.p-item__info-text {
  margin-top: 2.3125rem;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-item__info-text {
    margin-top: 1.4375rem;
    text-align: left;
  }
}

/***************************************
p-item__feature
****************************************/
.p-item__feature {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block: 5rem;
}
.p-item__feature::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/page/page-bg03.webp) no-repeat center 100%/100% 100%;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-item__feature::before {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-item__feature {
    padding-block: 3.75rem;
  }
}

.p-item__feature-inner {
  width: 100%;
  max-width: 63.75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-item__feature-inner {
    max-width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-item__feature-content {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26.9375rem, 1fr));
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-item__feature-content {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-item__feature-item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.p-item__feature-item-img {
  display: block;
  width: 100%;
  aspect-ratio: 431/267;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 1.625rem rgba(54, 54, 54, .2);
}

.p-item__feature-item-body {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-item__feature-item-body {
    margin-top: 1.5625rem;
  }
}

.p-item__feature-item-title {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-item__feature-item-title {
    font-size: 1rem;
  }
}

.p-item__feature-item-text {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-item__feature-item-text {
    margin-top: 0.9375rem;
  }
}

/***************************************
gallery
****************************************/
.p-item__gallery {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block: 4.125rem 4.75rem;
  color: #fff;
  overflow: hidden;
}
.p-item__gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/page/page-bg04.webp) no-repeat center 100%/100% 100%;
  z-index: -1;
  pointer-events: none;
}

.p-item__gallery-content {
  max-width: 645px;
  margin-inline: auto;
  margin-top: 3.5rem;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-item__gallery-content {
    width: 79.4871794872%;
    margin-top: 1.875rem;
  }
}

/***************************************
spec
****************************************/
.p-item__spec {
  width: 100%;
  padding-block: 8.75rem 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-item__spec {
    padding-block: 3.125rem 2.5rem;
  }
}

.p-item__spec-inner {
  width: 100%;
  max-width: 71.25rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 13.2%;
}
@media screen and (max-width: 767px) {
  .p-item__spec-inner {
    display: block;
    max-width: 100%;
    width: 100%;
    padding-inline: 0;
  }
}

.p-item__spec-content {
  width: 100%;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-item__spec-content {
    margin-top: 0.9375rem;
  }
}

.p-item__spec-row {
  border-top: 2px solid rgba(149, 149, 149, .26);
  padding: 1.875rem 4.0625rem;
  display: flex;
  gap: 5rem;
}
.p-item__spec-row:last-child {
  border-bottom: 2px solid rgba(149, 149, 149, .26);
}
@media screen and (max-width: 767px) {
  .p-item__spec-row {
    padding: 0.9375rem 1.25rem;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-item__spec-label {
  flex: 0 0 28%;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-item__spec-label {
    flex: 1 1 auto;
    font-size: 1rem;
  }
}

.p-item__spec-value {
  flex: 1 1 auto;
}
.p-item__spec-value li,
.p-item__spec-value p {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-item__spec-value li,
  .p-item__spec-value p {
    font-size: 0.78125rem;
  }
}
.p-item__spec-value p:not(:first-child) {
  margin-top: 0.625rem;
}
.p-item__spec-value li {
  text-indent: -1em;
  padding-left: 1em;
}

.p-item-manual {
  padding-block: 1rem 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-item-manual {
    padding-block: 1rem 4rem;
  }
}
.p-item-manual a {
  width: 100%;
  max-width: 22.8125rem;
  height: 100%;
  background-color: rgba(149, 149, 149, .26);
  padding: 1.125rem 1.25rem;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.875rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-item-manual a:hover {
    opacity: 0.7;
  }
}

.p-manual {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-manual {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-manual__inner {
  width: 100%;
  max-width: 950px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-manual__inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.p-manual__title {
  font-size: 1.875rem;
  line-height: 2.2;
  border-bottom: 3px solid #dedede;
}
@media screen and (max-width: 767px) {
  .p-manual__title {
    font-size: 1.5rem;
    line-height: 1.875;
  }
}

.p-manual__content {
  margin-top: 1.5625rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-manual__content {
    margin-top: 0.9375rem;
    padding-inline: 0;
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
.p-manual__content h2 {
  margin-top: 2rem;
}
.p-manual__content h3 {
  margin-top: 1.5rem;
}
.p-manual__content p {
  margin-top: 1rem;
}
.p-manual__content ul {
  margin-top: 1rem;
  margin-left: 1em;
  list-style: disc;
}
.p-manual__content figure {
  margin-top: 1rem;
}

.p-news-list {
  width: 100%;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-news-list__inner {
  width: 100%;
  max-width: 60.875rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__inner {
    max-width: 100%;
    padding-inline: 0;
  }
}

.p-news-list__list {
  border-top: 0.0625rem solid #dedede;
}
@media screen and (max-width: 767px) {
  .p-news-list__list {
    border-top: 0.125rem solid rgba(149, 149, 149, .26);
  }
}

.p-news-list__content-item {
  display: block;
  border-bottom: 0.0625rem solid #dedede;
  padding-block: 0.8125rem;
  padding-inline: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__content-item {
    padding-inline: 2.5rem;
    border-bottom: 0.125rem solid rgba(149, 149, 149, .26);
  }
}
@media (any-hover: hover) {
  .p-news-list__content-item:hover {
    color: #EC6C00;
  }
}

.p-news-list__content-date {
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news-list__content-date {
    font-size: 0.75rem;
    line-height: 2.1666666667;
  }
}

.p-news-list__content-title {
  font-size: 1.25rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news-list__content-title {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.p-news {
  width: 100%;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-news__inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    max-width: 100%;
    padding-inline: 0;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-news__content {
  flex: 1 1 auto;
}

.p-news__content-heading {
  padding-inline: 1.5625rem;
  padding-bottom: 0.3125rem;
  border-bottom: 3px solid #dedede;
}
@media screen and (max-width: 767px) {
  .p-news__content-heading {
    padding-inline: 1.25rem;
    padding-bottom: 0.625rem;
  }
}

.p-news__content-date {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news__content-date {
    font-size: 0.8125rem;
  }
}

.p-news__content-title {
  font-size: 1.875rem;
  line-height: 2.2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news__content-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-pageNews__content-text {
  margin-top: 1.5625rem;
  padding-inline: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-pageNews__content-text {
    margin-top: 0.9375rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}
.p-pageNews__content-text h2 {
  margin-top: 2rem;
}
.p-pageNews__content-text h3 {
  margin-top: 1.5rem;
}
.p-pageNews__content-text p {
  margin-top: 1rem;
}
.p-pageNews__content-text ul {
  margin-top: 1rem;
  margin-left: 1em;
  list-style: disc;
}
.p-pageNews__content-text figure {
  margin-top: 1rem;
}

.p-news__aside {
  flex: 0 0 32%;
}
@media screen and (max-width: 767px) {
  .p-news__aside {
    flex: 1 1 auto;
    width: 100%;
    padding-inline: 1.25rem;
  }
}

.p-news__aside-inner {
  position: sticky;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news__aside-inner {
    position: relative;
    top: 0;
  }
}

.p-news__aside-list {
  margin-top: 1rem;
}

.p-news__aside-label {
  aspect-ratio: 356/50;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  background-color: #EC6C00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news__aside-label .text {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-news__aside-label .text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-news__aside-link {
  display: flex;
  flex-direction: column;
  padding-inline: 0.9375rem;
  padding-block: 0.8125rem;
  border-bottom: 1px solid #dedede;
}
@media (any-hover: hover) {
  .p-news__aside-link:hover .text {
    color: #EC6C00;
  }
}
@media screen and (max-width: 767px) {
  .p-news__aside-link {
    padding-block: 0.625rem;
  }
}
.p-news__aside-link .p-news__aside-date {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #959595;
}
@media screen and (max-width: 767px) {
  .p-news__aside-link .p-news__aside-date {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
.p-news__aside-link .text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-news__aside-link .text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-news-back {
  margin-top: 4rem;
  text-align: center;
}
.p-news-back a {
  width: 100%;
  max-width: 22.8125rem;
  height: 100%;
  background-color: rgba(149, 149, 149, .26);
  padding: 1.125rem 1.25rem;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.875rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-news-back a:hover {
    opacity: 0.7;
  }
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=style.css.map */
