@charset "UTF-8";
@font-face {
  font-family: "tw-cen-mt-bold";
  src: url("../fonts/tw-cen-mt-bold.ttf") format("truetype");
}
@font-face {
  font-family: "tw-cen-mt";
  src: url("../fonts/tw-cen-mt.ttf") format("truetype");
}
html {
  font-size: 100%;
}
@media (max-width: 1550px) {
  html {
    font-size: 1.0322580645vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

.p-product-detail__desc-content a {
  border-bottom: 1px solid rgb(229, 61, 61);
  color: #e53d3d;
  transition: color 0.1s, border-color 0.1s, opacity 0.1s;
}

.p-product-detail__desc-content a:hover {
  color: #b61d0f;
}

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1550px;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-breadcrumb__item {
  font-size: max(10px, 0.875rem);
  font-family: "tw-cen-mt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item {
    font-size: max(10px, 0.75rem);
  }
}

.c-breadcrumb__item:not(:first-child)::before {
  content: ">";
  margin-right: 1em;
}

.c-breadcrumb__item:not(:last-child) {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-breadcrumb__item:first-child a {
  padding-left: 0;
}

.c-breadcrumb__item:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:last-child {
    max-width: 300px;
  }
}

.c-btn {
  font-size: max(0.875rem, 10px);
  line-height: 1.2142857143;
  color: #fff;
  background: #65b918;
  padding: 1.0625rem 0.875rem 1rem;
  border-radius: 0.3125rem;
  display: inline-block;
  text-align: center;
}
.c-btn.c-btn--en {
  font-family: "tw-cen-mt";
  font-size: max(1.125rem, 10px);
  line-height: 1.2222222222;
  text-transform: uppercase;
  padding: 0.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.9375rem;
    line-height: 1.2;
    padding: 0.75rem 0.6875rem 0.875rem;
    border-radius: 0.1875rem;
  }
  .c-btn.c-btn--en {
    font-size: 1rem;
    padding: 0.75rem 1.6875rem;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 1;
    background: #fff;
    color: #65b918;
  }
}

.c-scroll-top {
  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;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-scroll-top span {
  font-size: max(0.9375rem, 10px);
  font-family: "tw-cen-mt";
  line-height: 1.2;
  color: #b3b3b3;
  text-transform: uppercase;
}
.c-scroll-top::before {
  content: "";
  width: 2.25rem;
  height: 0.75rem;
  background: url(../images/icon_arrow.svg) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (hover: hover) {
  .c-scroll-top:hover {
    opacity: 0.7;
  }
}

.c-scroll {
  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;
  gap: 0.3125rem;
}
.c-scroll span {
  font-size: max(0.9375rem, 10px);
  font-family: "tw-cen-mt";
  line-height: 1.2;
  color: #b3b3b3;
}
.c-scroll::after {
  content: "";
  width: 2.25rem;
  height: 0.75rem;
  background: url(../images/icon_arrow.svg) no-repeat center center/contain;
}

.c-title {
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  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;
  gap: 1.375rem;
}
.c-title::before {
  content: attr(data-en);
  font-size: 3.9375rem;
  line-height: 1.0952380952;
  font-family: "tw-cen-mt-bold";
  color: #919396;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 0.875rem;
    text-align: left;
    gap: 0.625rem;
  }
  .c-title::before {
    font-size: 1.9375rem;
  }
}

.p-about {
  padding: 10.375rem 0 10.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 3.625rem 0 1.75rem;
  }
}

.p-about__inner {
  max-width: 1380px;
}

.p-about__wrap {
  display: grid;
  grid-template-columns: 27.5rem 1fr;
  gap: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__wrap {
    grid-template-columns: 1fr;
    gap: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about__img {
    width: 67.9487179487vw;
    margin-inline: auto;
  }
}
.p-about__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-about__img-desc {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 8.0625rem 1fr;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__img-desc {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about__logo {
    width: 7.25rem;
    margin-inline: auto;
  }
}
.p-about__logo img {
  aspect-ratio: initial;
}

.p-about__img-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-about__img-text {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
    text-align: center;
  }
}

.p-about__title {
  font-size: 1.6875rem;
  line-height: 1.1851851852;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 0.9375rem;
  }
}

.p-about__text-block {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__text-block {
    margin-top: 1.375rem;
  }
}

.p-about__text {
  font-size: max(1.0625rem, 10px);
  line-height: 1.7647058824;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
.p-about__text:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 0.875rem;
    -webkit-font-feature-settings: "palt" 0;
    font-feature-settings: "palt" 0;
  }
}

.p-about__scroll {
  margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__scroll {
    display: none;
  }
}

.p-breadcrumbs {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumbs {
    display: none;
  }
}

.p-breadcrumbs__inner {
  max-width: 90.625rem;
}

.p-contact {
  padding-top: 4.1875rem;
  padding-bottom: 10.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 2.1875rem;
    padding-bottom: 5.5rem;
  }
}

.p-contact__inner {
  max-width: 1020px;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    width: 100%;
  }
}

.p-contact__text {
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    margin-top: 3.125rem;
    font-size: 0.875rem;
  }
}

.p-privacy__no-link {
  display: inline-block;
}
@media (hover: hover) {
  .p-privacy__no-link:hover {
    opacity: 1;
  }
}

.p-contact__link {
  color: #00a0ff;
}

.p-contact__form {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 1.25rem;
  }
}

.p-footer {
  background: #f4f6f8;
  padding: 3rem 0 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 2.375rem 0 1.0625rem;
  }
}

.p-footer__main {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    padding-bottom: 2.9375rem;
  }
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-footer__nav-title {
  font-family: "tw-cen-mt-bold";
  font-size: 1.3125rem;
  line-height: 1.0952380952;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-title {
    font-size: 1.375rem;
  }
}

.p-footer__nav-list {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    margin-top: 1.375rem;
  }
}

.p-footer__nav-item a {
  display: inline-block;
  font-family: "tw-cen-mt";
  font-size: max(1.0625rem, 10px);
  line-height: 1.1176470588;
  color: #333;
  padding: 0.4375rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: 1.25rem;
    line-height: 1.075;
    padding: 0.75rem 0;
  }
}

.p-footer__links {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    margin-top: 3.4375rem;
  }
}

.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-footer__sns-item a {
  display: inline-block;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a {
    padding: 0.625rem 1.1875rem;
  }
}
.p-footer__sns-item a.p-footer__x img {
  width: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a.p-footer__x img {
    width: 1.5625rem;
  }
}
.p-footer__sns-item a.p-footer__youtube img {
  width: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a.p-footer__youtube img {
    width: 1.625rem;
  }
}
.p-footer__sns-item a.p-footer__instagram img {
  width: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a.p-footer__instagram img {
    width: 1.6875rem;
  }
}
.p-footer__sns-item a.p-footer__tiktok img {
  width: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a.p-footer__tiktok img {
    width: 1.375rem;
  }
}

.p-footer__link {
  margin-top: 1.0625rem;
}
.p-footer__link a {
  display: inline-block;
  font-size: max(0.9375rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.p-footer__bottom {
  padding-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding-top: 2.25rem;
  }
}

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

.p-footer__copyright small {
  font-family: "tw-cen-mt";
  font-size: max(1rem, 10px);
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright small {
    font-size: 0.875rem;
  }
}

.p-form {
  border-top: 1px solid rgba(102, 102, 102, 0.5);
}
@media screen and (max-width: 767px) {
  .p-form {
    border: none;
  }
}

.p-form__item {
  padding: 2.9375rem 1.25rem;
  display: grid;
  grid-template-columns: 14.8125rem 28.4375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
@media screen and (max-width: 767px) {
  .p-form__item {
    padding: 1.5625rem 0 0;
    border: none;
    grid-template-columns: 1fr;
  }
}
.p-form__item:has(textarea) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.p-form__item:has(textarea) .p-form__label {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__item:has(textarea) .p-form__label {
    margin-top: 0;
  }
}

.p-form__label {
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    font-size: 0.9375rem;
  }
}

.p-form__required {
  margin-left: 1em;
  display: inline-block;
  color: #ff0000;
}

.p-form__input {
  background: #f2f2f2;
  border: none;
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  padding: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    padding: 0.625rem;
    font-size: 16px;
    margin-top: 0.8125rem;
  }
}

::-webkit-input-placeholder {
  color: #808080;
  font-size: 0.875rem;
}

::-moz-placeholder {
  color: #808080;
  font-size: 0.875rem;
}

::-ms-input-placeholder {
  color: #808080;
  font-size: 0.875rem;
}

::placeholder {
  color: #808080;
  font-size: 0.875rem;
}

.p-form__textarea {
  background: #f2f2f2;
  border: none;
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  padding: 0.8125rem;
  height: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__textarea {
    font-size: 16px;
    height: 22.375rem;
    margin-top: 0.8125rem;
    padding: 0.625rem;
  }
}

.p-form__submit {
  margin-top: 5.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__submit {
    margin-top: 3.5625rem;
  }
}

.p-form__submit input {
  background: #fff;
  color: #666666;
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  letter-spacing: 1em;
  text-indent: 1em;
  padding: 1rem;
  border: 1px solid #808080;
  border-radius: 0.1875rem;
  cursor: pointer;
  width: 18.75rem;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form__submit input {
    width: 13.375rem;
    font-size: 0.9375rem;
    padding: 0.8125rem;
  }
}
@media (hover: hover) {
  .p-form__submit input:hover {
    background: #666666;
    color: #fff;
  }
}

.p-header {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid #d9d9d9;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header {
    border-bottom: none;
  }
}
.p-header.is-active {
  top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-header.is-active {
    top: 0;
  }
}

.p-header__top {
  padding: 0.3125rem 2.3125rem 0.4375rem;
  background: #e53d3d;
}

.p-header__top-sns {
  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;
  gap: 0.3125rem;
}

.p-header__top-item a {
  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: 1.25rem;
  height: 1.25rem;
}
.p-header__top-item a.p-header__x img {
  width: 0.9375rem;
}
.p-header__top-item a.p-header__youtube img {
  width: 0.9375rem;
}
.p-header__top-item a.p-header__instagram img {
  width: 1rem;
}
.p-header__top-item a.p-header__tiktok img {
  width: 0.8125rem;
}

.p-header__wrapper {
  padding: 1.125rem min(2.5vw, 2.5rem) 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.9375rem 0.9375rem 0.75rem;
  }
}

.p-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-header__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15.125rem;
  height: 4.8125rem;
}
.p-header__logo a img {
  width: 81.4049586777%;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    width: 6.125rem;
    height: auto;
  }
  .p-header__logo a img {
    width: 100%;
  }
}

.p-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 半透明の黒 */
  display: none;
  z-index: 50;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.9375rem;
  }
}

.p-header__hamburger span {
  display: block;
  width: 1.125rem;
  height: 1px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger span:nth-child(2) {
  margin: 0.3125rem 0;
}

.p-mv {
  padding: 15.75rem 0 4.125rem;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 5.3125rem 0 2.875rem;
  }
}
.p-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.p-mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.p-mv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__title {
  font-family: "tw-cen-mt-bold";
  font-size: 6.8125rem;
  line-height: 1.1926605505;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2.1875rem;
  }
}

.p-mv__text {
  margin-top: 0.625rem;
  font-size: 1.5625rem;
  font-family: "tw-cen-mt";
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin-top: 0.375rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.p-mv__link {
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__link {
    margin-top: 1.25rem;
  }
}

.p-nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 87.5641025641vw;
    height: 100%;
    background: #fff;
    padding-top: 3.4375rem;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    z-index: 90;
  }
  .p-nav.is-open {
    left: 0;
  }
}

.p-nav__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.1875rem;
    height: 1.1875rem;
  }
}

.p-nav__list {
  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;
}
@media screen and (max-width: 767px) {
  .p-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid #cccccc;
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-nav__item {
    width: 100%;
  }
}
.p-nav__item a {
  display: inline-block;
  padding: 0.6875rem min(1.5625vw, 1.5625rem);
  font-size: max(1.0625rem, 10px);
  font-family: "tw-cen-mt";
  line-height: 1.2352941176;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-nav__item a {
    padding: 0.75rem 1.625rem;
    font-size: 1.375rem;
  }
  .p-nav__item a. {
    color: #b61d0e;
  }
}
@media (hover: hover) {
  .p-nav__item a:hover {
    opacity: 1;
    color: #b61d0e;
  }
}

.p-nav__sns {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-nav__sns {
    margin-left: 0.875rem;
    margin-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-nav__sns-item a {
  display: inline-block;
  padding: 0.625rem 0.9375rem;
}
.p-nav__sns-item a.p-nav__x img {
  width: 1.5625rem;
}
.p-nav__sns-item a.p-nav__youtube img {
  width: 1.625rem;
}
.p-nav__sns-item a.p-nav__instagram img {
  width: 1.6875rem;
}
.p-nav__sns-item a.p-nav__tiktok img {
  width: 1.375rem;
}

.p-nav__link {
  margin-top: 0.9375rem;
}
.p-nav__link a {
  padding: 0.625rem 1.625rem;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.1;
}

.p-news {
  padding-top: 4.1875rem;
  padding-bottom: 8.375rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-top: 2.1875rem;
    padding-bottom: 6.875rem;
  }
}

.p-news__inner {
  max-width: 1020px;
}

.p-news__content {
  margin-top: 7.0625rem;
  padding-bottom: 6.9375rem;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
.p-news__content time {
  font-size: max(0.875rem, 10px);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-news__content {
    margin-top: 3.875rem;
    padding-bottom: 3.75rem;
  }
  .p-news__content time {
    font-size: 0.8125rem;
  }
}

.p-news__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    font-size: 1.0625rem;
  }
}

.p-news__text-wrap {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news__text-wrap {
    margin-top: 1.25rem;
  }
}

.p-news__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-news__text {
    font-size: 0.875rem;
  }
}
.p-news__text + .p-news__text {
  margin-top: 2em;
}

.p-news__btn {
  margin-top: 5.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news__btn {
    margin-top: 1.75rem;
  }
}
.p-news__btn a {
  display: inline-block;
  padding: 1.3125rem 5.1875rem;
  font-size: max(1.0625rem, 10px);
  color: #666666;
  border: 1px solid #808080;
  border-radius: 0.1875rem;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news__btn a {
    padding: 0.625rem 3.125rem;
    font-size: 0.9375rem;
  }
}
@media (hover: hover) {
  .p-news__btn a:hover {
    opacity: 1;
    background: #666666;
    color: #fff;
  }
}

.p-other-products {
  border-top: 1px solid #b3b3b3;
  padding-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-other-products {
    padding-top: 3.4375rem;
    padding-bottom: 5rem;
  }
}

.p-other-products__title {
  font-size: 1.5625rem;
  font-family: "tw-cen-mt-bold";
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-other-products__title {
    font-size: 1.4375rem;
  }
}

.p-other-products__slider {
  margin-top: 1.25rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-other-products__slider {
    margin-top: 1.875rem;
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-other-products__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6875rem 0.125rem;
  }
}
.p-other-products__slider .swiper-slide a {
  display: block;
}
.p-other-products__slider .swiper-button-prev {
  left: 0;
}
.p-other-products__slider .swiper-button-prev::after {
  content: "";
  width: 1.4375rem;
  height: 3.1875rem;
  -webkit-mask-image: url(../images/icon_swiper_arrow.svg);
  mask-image: url(../images/icon_swiper_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  background: #b3b3b3;
}
@media (hover: hover) {
  .p-other-products__slider .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-other-products__slider .swiper-button-prev {
    display: none;
  }
}
.p-other-products__slider .swiper-button-next {
  right: 0;
}
.p-other-products__slider .swiper-button-next::after {
  content: "";
  width: 1.4375rem;
  height: 3.1875rem;
  -webkit-mask-image: url(../images/icon_swiper_arrow.svg);
  mask-image: url(../images/icon_swiper_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  background: #b3b3b3;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (hover: hover) {
  .p-other-products__slider .swiper-button-next:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-other-products__slider .swiper-button-next {
    display: none;
  }
}
.p-other-products__slider .p-other-products__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-other-products__slider .p-other-products__item-img figcaption {
  font-size: max(1rem, 10px);
  font-family: "tw-cen-mt-bold";
  line-height: 1.125;
  text-align: center;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-other-products__slider .p-other-products__item-img figcaption {
    font-size: 0.8125rem;
  }
}

.p-other-products__scroll {
  margin-top: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .p-other-products__scroll {
    display: none;
  }
}

.p-privacy {
  border-top: 1px solid rgba(102, 102, 102, 0.5);
  padding-top: 8.5625rem;
  padding-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-top: 2.8125rem;
    padding-bottom: 6.875rem;
  }
}

.p-privacy__inner {
  max-width: 1020px;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    width: 100%;
  }
}

.p-privacy__content {
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    margin-top: 3.75rem;
  }
}

.p-privacy__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1666666667;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    font-size: 0.875rem;
  }
}

.p-privacy__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.625;
  margin-top: 0.625rem;
}
.p-privacy__text + .p-privacy__text {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__text {
    font-size: 0.875rem;
  }
}

.p-privacy__text-indent {
  margin-left: -0.5em;
}

.p-privacy__item {
  margin-top: 2.1875rem;
}

.p-privacy__sub-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1666666667;
}
@media screen and (max-width: 767px) {
  .p-privacy__sub-title {
    font-size: 0.875rem;
  }
}

.p-privacy__list02 {
  margin-top: 2.1875rem;
  margin-left: -0.5em;
}
@media screen and (max-width: 767px) {
  .p-privacy__list02 {
    margin-left: 0;
  }
}

.p-privacy__list02-item {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-privacy__list02-item {
    font-size: 0.875rem;
    text-indent: -0.5em;
  }
}

.p-privacy__link {
  display: inline-block;
  color: #00a0ff;
}

@media screen and (max-width: 767px) {
  .p-product-content {
    padding-bottom: 4.0625rem;
  }
}

.p-product-content__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 490/316;
}
@media screen and (max-width: 767px) {
  .p-product-content__video iframe {
    aspect-ratio: 677/435;
  }
}

.p-product-content__text {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.7;
  margin: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-product-content__text {
    font-size: 0.875rem;
  }
}

.p-product-content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.5em;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 3.125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-product-content__title {
    margin-top: 3.125rem;
    font-size: 1.0625rem;
  }
}
.p-product-content__title::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #000;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-product-content__title::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.p-product-content__title + .p-product-content__sub-title {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-product-content__title + .p-product-content__sub-title {
    margin-top: 0.8125rem;
  }
}

.p-product-content__list {
  margin-top: 0.625rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-product-content__list {
    margin-top: 0.625rem;
    margin-bottom: 1.875rem;
  }
}

.p-product-content__item {
  position: relative;
  padding-left: 1em;
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.7;
}
.p-product-content__item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-product-content__item {
    font-size: 0.875rem;
  }
}

.p-product-content__sub-title {
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2.5rem;
  text-indent: -0.5em;
}
@media screen and (max-width: 767px) {
  .p-product-content__sub-title {
    margin-top: 2.25rem;
    font-size: 0.875rem;
  }
}
.p-product-content__sub-title + p {
  margin-top: 0.3125rem;
}

.p-product-content__table {
  margin-top: 0.625rem;
}

.p-product-content__term {
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1.25;
  display: inline-block;
}
.p-product-content__term:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-product-content__term {
    font-size: 0.875rem;
  }
}

.p-product-content__desc {
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-product-content__desc {
    font-size: 0.8125rem;
  }
}

.p-product-detail {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-product-detail {
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
}

.p-product-detail__inner {
  max-width: 1270px;
}
@media screen and (max-width: 767px) {
  .p-product-detail__inner {
    padding-inline: 1.25rem;
  }
}

.p-product-detail__wrap {
  display: grid;
  grid-template-columns: 39.625rem 1fr;
  gap: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-product-detail__wrap {
    grid-template-columns: 1fr;
    gap: 2.1875rem;
  }
}

.p-product-detail__slider {
  position: sticky;
  top: 9.375rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: nowrap row;
  flex-flow: nowrap row;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.9375rem;
  width: 100%;
  height: 40.625rem;
  padding-right: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-product-detail__slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.5625rem;
    position: static;
    height: auto;
    overflow: hidden;
    padding: 0;
  }
}
.p-product-detail__slider .p-product-detail__main {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 2.5rem;
}
.p-product-detail__slider .p-product-detail__main .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 368/493;
}
@media screen and (max-width: 767px) {
  .p-product-detail__slider .p-product-detail__main .swiper-slide img {
    aspect-ratio: 520/697;
  }
}
.p-product-detail__slider .p-product-detail__main .swiper-button-next,
.p-product-detail__slider .p-product-detail__main .swiper-button-prev {
  width: 0.5rem;
  height: 1.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-product-detail__slider .p-product-detail__main .swiper-button-next::after,
.p-product-detail__slider .p-product-detail__main .swiper-button-prev::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/icon_swiper_arrow.svg);
  mask-image: url(../images/icon_swiper_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #333;
}
@media (hover: hover) {
  .p-product-detail__slider .p-product-detail__main .swiper-button-next:hover,
  .p-product-detail__slider .p-product-detail__main .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-product-detail__slider .p-product-detail__main .swiper-button-next,
  .p-product-detail__slider .p-product-detail__main .swiper-button-prev {
    display: none;
  }
}
.p-product-detail__slider .p-product-detail__main .swiper-button-prev {
  left: 0;
}
.p-product-detail__slider .p-product-detail__main .swiper-button-next {
  right: 0;
}
.p-product-detail__slider .p-product-detail__main .swiper-button-next::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.p-product-detail__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  height: auto;
}
.p-product-detail__slider .p-product-detail__thumb {
  width: 6.25rem;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-product-detail__slider .p-product-detail__thumb {
    width: 100%;
    height: auto;
    padding-bottom: 0.125rem;
  }
}
.p-product-detail__slider .p-product-detail__thumb .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-product-detail__slider .p-product-detail__thumb .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.p-product-detail__slider .p-product-detail__thumb .swiper-slide {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  cursor: pointer;
  position: relative;
}
.p-product-detail__slider .p-product-detail__thumb .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1875rem;
  background: #000;
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
  opacity: 0;
}
.p-product-detail__slider .p-product-detail__thumb .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-product-detail__slider .p-product-detail__thumb .swiper-slide {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
  }
  .p-product-detail__slider .p-product-detail__thumb .swiper-slide::after {
    bottom: -0.125rem;
    height: 0.125rem;
  }
}
.p-product-detail__slider
  .p-product-detail__thumb
  .swiper-slide.swiper-slide-thumb-active::after {
  opacity: 1;
}

.p-product-detail__content {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-product-detail__content {
    margin-top: 0;
  }
}

.p-product-detail__title {
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid rgba(179, 179, 179, 0.5);
  font-family: "tw-cen-mt-bold";
  font-size: 2.25rem;
  line-height: 1.0833333333;
  color: #262626;
}
.p-product-detail__title span {
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-product-detail__title {
    font-size: 1.875rem;
    line-height: 1.0833333333;
    border: none;
    padding-bottom: 0;
  }
  .p-product-detail__title span {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-product-detail__table {
    margin-top: 2.5rem;
  }
}

.p-product-detail__table-wrap {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  gap: 0.375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(179, 179, 179, 0.5);
}
.p-product-detail__table-wrap:has(.p-product-detail__desc-btn.is-active) {
  border: none;
}
@media screen and (max-width: 767px) {
  .p-product-detail__table-wrap:has(.p-product-detail__desc-btn) {
    border: none;
  }
}

.p-product-detail__term {
  font-family: "tw-cen-mt-bold";
  font-size: 1.25rem;
  line-height: 1.1;
  color: #262626;
}
@media screen and (max-width: 767px) {
  .p-product-detail__term {
    font-size: 1.125rem;
  }
}

.p-product-detail__desc {
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  line-height: 1.0588235294;
  position: relative;
}

.p-product-detail__size-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-left: 0.8125rem;
}

.p-product-detail__size {
  font-family: "tw-cen-mt-bold";
  font-size: 1.125rem;
  line-height: 1.0555555556;
  color: #262626;
  display: inline-block;
  border: 1px solid #b3b3b3;
  padding: 0.875rem 1.0625rem;
  border-radius: 0.125rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
/* @media (hover: hover) {
  .p-product-detail__size:hover {
    opacity: 1;
    border-color: #262626;
  }
} */
.p-product-detail__size. {
  border-color: #262626;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .p-product-detail__size {
    font-size: 1.0625rem;
  }
}

.p-product-detail__download {
  display: inline-block;
  margin-left: 0.8125rem;
}

.p-product-detail__desc-btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: max(0.9375rem, 10px);
  font-family: "tw-cen-mt";
  color: #b3b3b3;
  text-transform: uppercase;
  padding-right: 2.0625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.p-product-detail__desc-btn::before {
  content: "";
  width: 1px;
  height: 1.375rem;
  background: rgba(179, 179, 179, 0.5);
  position: absolute;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-product-detail__desc-btn::after {
  content: "";
  width: 1.375rem;
  height: 1px;
  background: rgba(179, 179, 179, 0.5);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-product-detail__desc-btn.is-active::before {
  opacity: 0;
}
@media (hover: hover) {
  .p-product-detail__desc-btn:hover {
    opacity: 0.7;
  }
}

/* 2025.07.29 追加調整 */
a.p-product-detail__size:hover {
    opacity: 1.0;
    cursor: unset;
}



.p-product-detail__desc-content {
  display: none;
}

.p-product-detail__desc-content.p-product-content ul {
  list-style: none;
  margin: 16px 16px 16px 32px;
}

.p-product-detail__desc-content.p-product-content ol {
  margin: 16px 16px 16px 32px;
  list-style: none; /* デフォルトの番号を消す */
  counter-reset: item; /* 番号カウンターを初期化 */
  padding-left: 0;
}

.p-product-detail__desc-content.p-product-content ul li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6; /* 行の高さを固定してバランスを取る */
}

.p-product-detail__desc-content.p-product-content ol li {
  position: relative;
  padding-left: 1.3em; /* 番号とテキストの距離 */
  line-height: 1.6;
  counter-increment: item; /* 番号を1つ進める */
}

.p-product-detail__desc-content.p-product-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.3em;
  height: 0.3em;
  background-color: black;
  border-radius: 50%;
}

.p-product-detail__desc-content.p-product-content ol li::before {
  content: counter(item) "."; /* 数字とドットを表示 */
  position: absolute;
  left: 0;
  top: 0; /* ← ここで縦位置調整（0.7em〜0.8emなど） */
}

.p-products {
  padding-bottom: 7.3125rem;
}

@media screen and (max-width: 767px) {
  .p-products {
    padding-bottom: 0;
  }
}

.p-products__head {
  padding: 22.9375rem 0 2.5625rem;
  background: url(../images/products_head01.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-products__head {
    padding: 15.875rem 0;
    text-align: center;
    background: url(../images/products_head01_sp.jpg) no-repeat center
      center/cover;
  }
}
.p-products__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  z-index: -1;
}

.p-products__head-title {
  font-size: 5.875rem;
  font-family: "tw-cen-mt-bold";
  line-height: 1.085106383;
}
.p-products__head-title span {
  display: block;
  margin-bottom: 0.625rem;
  font-size: max(1rem, 10px);
  line-height: 1.125;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-products__head-title {
    font-size: 1.9375rem;
    line-height: 1.0806451613;
  }
  .p-products__head-title span {
    font-size: 1.0625rem;
    margin-bottom: 0.3125rem;
  }
}

.p-products__head-text {
  font-size: 1.4375rem;
  font-family: "tw-cen-mt-bold";
  line-height: 1.0869565217;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-products__head-text {
    margin-top: 0.6875rem;
    font-size: 1.3125rem;
  }
}

.p-products__content {
  padding: 4.8125rem 0 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-products__content {
    padding: 3.3125rem 0 3.875rem;
  }
}

.p-products__inner {
  max-width: 98.5rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-products__inner {
    padding-inline: 0.9375rem;
  }
}

.p-products__content-title {
  text-align: center;
  text-transform: uppercase;
  font-family: "tw-cen-mt-bold";
  font-size: 1.5625rem;
  line-height: 1.12;
}
@media screen and (max-width: 767px) {
  .p-products__content-title {
    font-size: 1.4375rem;
  }
}

.p-products__list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6.75rem 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-products__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem 1.0625rem;
  }
}
/*　上段3列
.p-products__item {
  width: 23.3125rem;
}
.p-products__item:nth-child(n + 4) {
  width: calc(25% - 2.20313rem);
}
*/
.p-products__item {
  width: calc(25% - 2.20313rem);
}
@media screen and (max-width: 767px) {
  .p-products__item {
    width: auto;
  }
  .p-products__item:nth-child(n + 4) {
    width: auto;
  }
}

.p-products__item-img {
  width: 100%;
}
.p-products__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
}
.p-products__item-img figcaption {
  font-size: max(1rem, 9px);
  font-family: "tw-cen-mt-bold";
  line-height: 1.125;
  text-align: center;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-products__item-img figcaption {
    font-size: 0.8125rem;
  }
}

.p-products__scroll {
  margin-top: 5.1875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-products__scroll {
    display: none;
  }
}
.p-products--02 {
  padding-bottom: 0;
}
.p-products--02 .p-products__head {
  background: url(../images/products_head02.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-products--02 .p-products__head {
    background: url(../images/products_head02_sp.jpg) no-repeat center
      center/cover;
  }
}
.p-products--02 .p-products__list {
  -webkit-column-gap: 1.3125rem;
  -moz-column-gap: 1.3125rem;
  column-gap: 1.3125rem;
  width: 90%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-products--02 .p-products__list {
    width: 100%;
  }
}

.p-products--02 .p-products__item {
  width: calc(50% - 1.46875rem);
}

.p-products--02 .p-products__item a {
  width: 23.3125rem;
  display: inline-block;
}

.p-products--02 .p-products__item:nth-child(1) {
  text-align: right;
}
.p-products--02 .p-products__item:nth-child(n + 3) {
  width: calc(33.33333% - 1.95833rem);
}
.p-products--02 .p-products__item:nth-child(n + 3) a {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-products--02 .p-products__item {
    width: auto;
  }
  .p-products--02 .p-products__item a {
    width: 100%;
  }
  .p-products--02 .p-products__item:nth-child(n + 3) {
    width: auto;
  }
}

.p-top-news {
  padding: 7.625rem 0 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 3.4375rem 0 2.5rem;
  }
}

.p-top-news__title {
  font-size: 3.375rem;
  font-family: "tw-cen-mt-bold";
  line-height: 1.1111111111;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-news__title {
    font-size: 1.875rem;
  }
}

.p-top-news__list {
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 33.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    max-width: 70.5128205128vw;
    margin-top: 0.625rem;
  }
}

.p-top-news__item a,
.p-top-news__item {
  padding: 0.9375rem 0;
  display: grid;
  grid-template-columns: 7.375rem 1fr;
  gap: 1.125rem;
}

.p-top-news__item {
  align-items: center;
}

.p-top-news__item a time,
.p-top-news__item time {
  font-size: max(1.0625rem, 10px);
  font-weight: 400;
  line-height: 1.1764705882;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .p-top-news__item a,
  .p-top-news__item {
    grid-template-columns: auto;
    gap: 0.625rem;
  }
  .p-top-news__item a time,
  .p-top-news__item time {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .p-top-news__item a.p-top-news__no-link:hover {
    opacity: 1;
  }
}

.p-top-news__text {
  font-size: max(1.1875rem, 10px);
  font-weight: 400;
  line-height: 1.2105263158;
  text-overflow: unset;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-news__text {
    font-size: 0.875rem;
  }
}

.p-top-news__scroll {
  margin-top: 7.6875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-news__scroll {
    display: none;
  }
}

.p-top-product {
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-product {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-product__slider {
    width: calc(100% - 1.25rem);
    margin-inline: auto;
  }
}
.p-top-product__slider .swiper {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__slider .swiper {
    padding-bottom: 1.5rem;
    padding-inline: 1.5625rem;
  }
}
.p-top-product__slider .swiper-slide {
  position: relative;
  padding: 6.25rem 0 1.875rem;
}
.p-top-product__slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1335/381;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-product__slider .swiper-slide {
    padding: 9.0625rem 0 1rem;
  }
  .p-top-product__slider .swiper-slide img {
    aspect-ratio: 641/700;
  }
}
.p-top-product__slider .swiper-pagination-bullet {
  background: #6d6d6d;
  opacity: 1;
  width: 0.6875rem;
  height: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__slider .swiper-pagination-bullet {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.p-top-product__slider
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.p-top-product__slider
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__slider
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet,
  .p-top-product__slider
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 0.5rem;
  }
}
.p-top-product__slider .swiper-horizontal > .swiper-pagination-bullets,
.p-top-product__slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-top-product__slider .swiper-pagination-custom,
.p-top-product__slider .swiper-pagination-fraction {
  bottom: 0;
}
.p-top-product__slider .swiper-pagination-bullet-active {
  background: #e40018;
}
.p-top-product__slider .swiper-button-prev {
  left: 9.75vw;
  width: 1.4375rem;
  height: 3.1875rem;
}
.p-top-product__slider .swiper-button-prev::after {
  content: "";
  width: 1.4375rem;
  height: 3.1875rem;
  -webkit-mask-image: url(../images/icon_swiper_arrow.svg);
  mask-image: url(../images/icon_swiper_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #fff;
}
@media (hover: hover) {
  .p-top-product__slider .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-top-product__slider .swiper-button-prev {
    left: 0;
    width: 0.75rem;
    height: 1.625rem;
  }
  .p-top-product__slider .swiper-button-prev::after {
    width: 0.75rem;
    height: 1.625rem;
    background: #333;
  }
}
.p-top-product__slider .swiper-button-next {
  right: 9.75vw;
  width: 1.4375rem;
  height: 3.1875rem;
}
.p-top-product__slider .swiper-button-next::after {
  content: "";
  width: 1.4375rem;
  height: 3.1875rem;
  -webkit-mask-image: url(../images/icon_swiper_arrow.svg);
  mask-image: url(../images/icon_swiper_arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #fff;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (hover: hover) {
  .p-top-product__slider .swiper-button-next:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-top-product__slider .swiper-button-next {
    right: 0;
    width: 0.75rem;
    height: 1.625rem;
  }
  .p-top-product__slider .swiper-button-next::after {
    width: 0.75rem;
    height: 1.625rem;
    background: #333;
  }
}

.p-top-product__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.p-top-product__head {
  font-size: max(1.0625rem, 10px);
  font-family: "tw-cen-mt";
  line-height: 1.2352941176;
}
@media screen and (max-width: 767px) {
  .p-top-product__head {
    font-size: 1.25rem;
  }
}

.p-top-product__title {
  font-size: 5.5rem;
  font-family: "tw-cen-mt-bold";
  line-height: 1.1931818182;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__title {
    font-size: 2.1875rem;
    margin-top: 0.375rem;
  }
}

.p-top-product__text {
  font-size: 1.5rem;
  font-family: "tw-cen-mt";
  line-height: 1.2083333333;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__text {
    font-size: 1.25rem;
    margin-top: 0.8125rem;
  }
}

.p-top-product__btn {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-product__btn {
    margin-top: 2.8125rem;
  }
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */

/* 2025.06.22 Contact Form7で出力されたフォームの調整 */

@media (max-width: 768px) {
  /* ラベルと入力欄を縦並びに戻す */
  .p-form__item p {
    display: block !important;
  }

  /* ラベルは100%幅 */
  .p-form__item p .p-form__label {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
  }

  /* 入力欄とテキストエリアは100%幅で固定 */
  .p-form__item p .wpcf7-form-control-wrap,
  .p-form__input,
  .p-form__textarea {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
}

/* PC／Tablet 用 */
@media (min-width: 769px) {
  .p-form__item p {
    display: flex;
    align-items: center;
  }
  .p-form__item p .p-form__label {
    flex: 0 0 20%;
    margin: 0;
  }
  .p-form__item p .wpcf7-form-control-wrap {
    flex: 1;
    margin: 0;
  }
  .p-form__input,
  .p-form__textarea {
    width: 100%;
    box-sizing: border-box;
  }
}

/*
**** Placeholderのフォントサイズと色を調整****
*/

/* Chrome, Safari, Opera, Edge */
.p-form__input::placeholder,
.p-form__textarea::placeholder {
  font-size: 0.9rem; /* お好みのサイズに */
  color: #999; /* 必要なら色も調整 */
}

/* Firefox */
.p-form__input::-moz-placeholder,
.p-form__textarea::-moz-placeholder {
  font-size: 0.9rem;
  color: #999;
}

/* Internet Explorer 10-11 */
.p-form__input:-ms-input-placeholder,
.p-form__textarea:-ms-input-placeholder {
  font-size: 0.9rem;
  color: #999;
}

/* Edge Legacy */
.p-form__input::-ms-input-placeholder,
.p-form__textarea::-ms-input-placeholder {
  font-size: 0.9rem;
  color: #999;
}

/* Contact formのエラー表示 */
/* エラー時の枠線を赤に */
.p-form__input.wpcf7-not-valid,
.p-form__textarea.wpcf7-not-valid {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.5);
  margin-bottom: 5px;
}

/* ラップ部分に薄い背景を */
.p-form__item .wpcf7-form-control-wrap.invalid {
  background-color: rgba(231, 76, 60, 0.1);
  padding: 0.5em;
  border-radius: 4px;
}

/* エラーメッセージ全体 */
.wpcf7-response-output {
  display: block !important;
  margin: 1em 0;
  padding: 1em;
  border: 1px solid #e74c3c;
  background-color: #fdecea;
  color: #c0392b;
  border-radius: 4px;
}

span.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-weight: 500;
  padding-top: 10px;
}

.screen-reader-response p {
  color: #e74c3c;
  margin-top: 10px;
}

li#wpcf7-f45-o1-ve-company,
li#wpcf7-f45-o1-ve-your-name,
li#wpcf7-f45-o1-ve-tel,
li#wpcf7-f45-o1-ve-email,
li#wpcf7-f45-o1-ve-contact-detail {
  display: none;
}

/* 送信成功メッセージ */
.wpcf7-mail-sent-ok {
  border-color: #2ecc71;
  background-color: #eafaf1;
  color: #27ae60;
}

/* 2025.06.24 最終追加 */

.wpcf7-response-output {
  display: none !important;
}

/* 2025.07.29 スライダーバナーの追加、高さ調整 */
/* Swiperのラッパー要素に対して、子の高さを揃える設定 */
.swiper-wrapper {
  align-items: stretch;
}

/* 各スライドをFlexコンテナに設定 */
.swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto; /* 高さを自動に設定 */
}

/* スライド内のコンテンツエリアが残りのスペースを埋めるように設定 */
.p-top-product__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* コンテンツを垂直方向に中央揃えにする */
}