@charset "UTF-8";
:root {
  --font-family-ja: "Shippori Mincho", serif;
  --font-family-en: "Bellefair", serif;
  --font-size-base: 0.9375rem;
  --font-size-16: 0.9375rem;
  --font-size-18: 1rem;
  --font-size-20: 1rem;
  --font-size-24: 1.125rem;
  --color-main: #3E3A39;
  --color-link: #0E6A0B;
  --color-grey: #B0B0B0;
  --color-darkGrey: #4F4747;
  --color-grey: #F5F2F2;
  --color-green: #0E6A0B;
  --line-height: 1.8;
  --header-height: 3.125rem;
  --inner: 68.75rem;
  --inner-padding: 15px;
}

@media screen and (min-width: 768px) {
  :root {
    --line-height: 2;
    --inner-padding: 50px;
    --header-height: 8.75rem;
    --font-size-16: 1rem;
    --font-size-18: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-24: 1.5rem;
  }
}
* {
  box-sizing: border-box;
}

a, button, input, select, textarea {
  color: inherit;
  font-size: inherit;
}

a, button {
  cursor: pointer;
  text-decoration: none;
}

address {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

html {
  font-size: 100%;
}

@media screen and (max-width: 374px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}
body {
  font-size: var(--font-size-base);
  font-family: var(--font-family-ja);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-main);
}

p {
  line-height: var(--line-height);
}

/** utilities **/
.u-only-sp {
  display: block;
}

.u-only-pc {
  display: none;
}

.u-ft-decimal {
  list-style: decimal;
}

.u-ft-alpha {
  list-style-type: lower-alpha;
}

.u-ft-roman {
  list-style-type: lower-roman;
}

.u-mt-bottom {
  margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
}
/** layout **/
.l-main {
  margin-top: var(--header-height);
}

.l-container {
  width: min(100% - var(--inner-padding) * 2, var(--inner));
  margin-inline: auto;
}

.l-container-wide {
  width: min(100% - var(--inner-padding) * 2, 1290px);
  margin-inline: auto;
}

.l-container-wide-2 {
  width: min(100% - var(--inner-padding) * 2, 1400px);
  margin-inline: auto;
}

.l-section {
  --_margin-bottom: 60px;
  margin-bottom: var(--_margin-bottom);
}

.l-section.l-section--last {
  --_margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .l-section {
    --_margin-bottom: 100px;
  }
  .l-section.l-section--last {
    --_margin-bottom: 140px;
  }
}
/** title **/
.c-title-top__en {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.c-title-top__ja {
  letter-spacing: 0.1em;
  font-weight: 400;
}

.c-title-top.c-title-top--center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-title-top__en {
    font-size: 3.75rem;
  }
}
.c-title-page {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.c-title-page--center {
  text-align: center;
}

.c-title-page-2 {
  text-align: center;
}

.c-title-page-2__en {
  font-family: var(--font-family-en);
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.c-title-page-2__ja {
  font-size: 0.875rem;
  font-weight: 400;
}

.c-title-page-3 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
}

.c-title-page-4 {
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .c-title-page {
    font-size: 2rem;
  }
  .c-title-page-3 {
    font-size: 1.5rem;
  }
  .c-title-page-4 {
    font-size: 1.25rem;
  }
}
/** button **/
.c-button-1--white {
  --_animation-color: var(--color-darkGrey);
  --_color: var(--color-darkGrey);
  border: 1px solid var(--_animation-color);
  background-color: #fff;
}

.c-button-1--transparent {
  --_animation-color: #fff;
  --_color: #fff;
  border: 1px solid #fff;
}

.c-button-1 {
  --_width: min(100%, 24.5625rem);
  --_height: 4.375rem;
  --_animation: translateX(-100%);
  --_size: var(--font-size-16);
  overflow: hidden;
  position: relative;
  width: var(--_width);
  height: var(--_height);
  color: var(--_color);
  display: flex;
  align-items: center;
  font-size: var(--_size);
  letter-spacing: 0.2em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}
.c-button-1::before {
  z-index: 2;
  content: "";
  width: 100%;
  border-bottom: var(--_height) solid var(--_animation-color);
  border-right: transparent solid 50px;
  position: absolute;
  top: 0;
  left: 0;
  transform: var(--_animation);
  transition: transform 0.3s ease-out;
}
.c-button-1 * {
  z-index: 2;
}

.c-button-1__text {
  padding-left: 22px;
}

@media screen and (min-width: 768px) {
  .c-button-1__text {
    padding-left: 30px;
  }
}
.c-button-1__icon {
  background-color: var(--_color);
  width: 2.5em;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
}
.c-button-1__icon::before {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 30%;
  height: 1px;
  content: "";
  background-color: var(--_color);
  transform-origin: center right;
  rotate: 40deg;
}

.c-button-1:hover {
  --_animation: translateX(0%);
}

.c-button-1--white:hover {
  --_color: #fff;
}

.c-button-1--transparent:hover {
  --_color: var(--color-darkGrey);
}

.c-button-2 {
  --_animation: translateX(0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.c-button-2__text {
  font-size: var(--font-size-16);
  letter-spacing: 0.2em;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  color: var(--color-darkGrey);
}

.c-button-2__icon {
  width: 2.5em;
  height: 1px;
  background-color: var(--color-darkGrey);
  position: relative;
  transform: var(--_animation);
  transition: transform 0.3s ease-out;
}
.c-button-2__icon::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: var(--color-darkGrey);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  transform-origin: center right;
  rotate: 40deg;
}

.c-button-2:hover {
  --_animation: translateX( 10px);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: var(--header-height);
}

.l-header__logo {
  display: flex;
  gap: 5px;
  align-items: center;
}
.l-header__logo img {
  aspect-ratio: 1;
  display: block;
  width: clamp(20px, 3.6363636364vw, 40px);
  height: auto;
}
.l-header__logo h1 {
  font-weight: 400;
}

.l-header__inner {
  --_height: var(--header-height);
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--_height);
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .l-header {
    height: auto;
  }
  .l-header__inner {
    padding: 0 25px 0 30px;
    --_height: 60px;
  }
  .l-header__logo {
    gap: 10px;
  }
}
.l-header__left-phone {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  background-color: #746F6F;
  height: inherit;
  aspect-ratio: 1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__left-phone span {
  display: none;
}

.l-header__left-phone-en {
  text-transform: uppercase;
  font-size: 0.7272727273em;
}

.l-header__left-phone-icon {
  display: block;
  fill: #fff;
  width: 28%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .l-header__left-phone {
    background-color: transparent;
    height: initial;
    width: initial;
    aspect-ratio: 0;
    display: block;
  }
  .l-header__left-phone span {
    display: inline;
  }
  .l-header__left-phone-icon {
    display: none;
  }
}
.l-header__left {
  display: flex;
  align-items: center;
  height: inherit;
}

.l-header__left-time {
  font-size: 0.75rem;
  margin-left: 13px;
}

.l-header__left-lang,
.l-header__left-private {
  height: inherit;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid #F4F5F7;
}

@media screen and (max-width: 767px) {
  .l-header__left-time,
  .l-header__left-lang,
  .l-header__left-private,
  .l-header__nav {
    display: none;
  }
}
.l-header__left-private--space {
  margin-left: 20px;
}

.l-header__left-lang {
  text-transform: uppercase;
}

.l-header__nav {
  height: 80px;
  background-color: var(--color-darkGrey);
}

.l-header__nav-items {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(7.2727272727vw, 80px);
}

.l-header__nav-item {
  position: relative;
  height: inherit;
}

.l-header__nav-item > a,
.l-header__nav-item > div {
  position: relative;
  cursor: pointer;
  border: none;
  color: #fff;
  background-color: transparent;
  padding: 1em 0;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__nav-item a,
.l-header__nav-item div {
  text-transform: uppercase;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.l-header__nav-item-list {
  --_color: #fff;
  --_bg-color: var(--color-darkGrey);
  --_animation: translatex(0);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 290px;
}
.l-header__nav-item-list li:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.l-header__nav-item-list a {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--_color);
  background-color: var(--_bg-color);
  transition: background-color 0.3s ease-in-out;
}

.l-header__nav-item-icon {
  position: relative;
  background-color: var(--_color);
  width: var(--font-size-base);
  height: 1px;
  display: block;
  transform: var(--_animation);
  transition: transform 0.3s ease-in-out;
}
.l-header__nav-item-icon::before {
  content: "";
  width: 50%;
  background-color: var(--_color);
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  transform: rotate(40deg);
  transform-origin: center right;
}

.l-header__nav-item-list a:hover {
  --_bg-color: #847e7e;
  --_animation: translatex(5px);
}

.l-header__nav-item:hover .l-header__nav-item-list {
  opacity: 1;
  visibility: visible;
}

.l-header__hamberger {
  position: relative;
  width: auto;
  height: inherit;
  aspect-ratio: 1;
  background-color: var(--color-darkGrey);
  border: none;
}
.l-header__hamberger span {
  width: 30%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
}
.l-header__hamberger span:nth-of-type(1) {
  translate: -50% calc(-50% - 5px);
}
.l-header__hamberger span:nth-of-type(2) {
  translate: -50% -50%;
}
.l-header__hamberger span:nth-of-type(3) {
  translate: -50% calc(-50% + 5px);
}

.l-header__hamberger.is-active span:nth-of-type(1) {
  translate: -50% -50%;
  rotate: 45deg;
}
.l-header__hamberger.is-active span:nth-of-type(2) {
  translate: -50% -50%;
  opacity: 0;
}
.l-header__hamberger.is-active span:nth-of-type(3) {
  translate: -50% -50%;
  rotate: -45deg;
}

@media screen and (min-width: 768px) {
  .l-header__hamberger {
    display: none;
  }
}
/** sp用 **/
.l-header__sp-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  background-color: var(--color-darkGrey);
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  overflow-y: scroll;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.l-header__sp-nav.is-active {
  transform: translateX(0);
}

@media screen and (min-width: 700px) {
  .l-header__sp-nav {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .l-header__sp-nav {
    display: none;
  }
}
.l-header__sp-nav-items {
  padding: 30px 40px 20px;
}

.l-header__sp-nav-item {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
}

.l-header__sp-nav-item-title {
  text-transform: uppercase;
}

.l-header__sp-nav-item a,
.l-header__sp-nav-item div {
  --_color: #fff;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__sp-nav-item-list a {
  text-indent: 1.5em;
}

.l-header__sp-nav-links {
  padding: 30px 40px 120px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-header__sp-nav-link {
  --_color: var(--color-darkGrey);
  width: min(100%, 25rem);
  height: 3.125rem;
  border: 1px solid var(--color-darkGrey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0 14px 0 20px;
  color: var(--color-darkGrey);
  text-transform: uppercase;
}
.l-header__sp-nav-link img {
  margin-right: 5px;
}

.l-footer__copy {
  padding-bottom: 55px;
  text-align: center;
  font-size: 0.75rem;
  font-family: var(--font-family-en);
}

.l-footer__contact {
  margin-bottom: 50px;
  overflow-x: clip;
  padding: 60px 0;
  background-color: #625959;
}

.l-footer__contact .l-container {
  position: relative;
}

.l-footer__contact-header {
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}
.l-footer__contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
}

.l-footer__contact-links {
  margin-inline: auto;
  width: min(100%, 790px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}


.c-button-1.l-footer__cotnact-link {
  --_height: 5rem;
  --_width: min(100%, 19.6875rem);
  justify-content: center;
  margin-inline: auto;
}

.l-footer__cotnact-link-phone-inner{
    display: flex;
    align-items: center;
}

.l-footer__cotnact-link--phone{
  display: flex;
  flex-direction: column;
}

.l-footer__contact-link-phone {
  fill: var(--_color);
  margin-right: 5px;
}

.l-footer__cotnact-link-phone-text{
  font-size: calc( 12 / 16 * 1rem);
  line-height: 1;
}

.l-footer__contact-link-mail {
  margin-right: 10px;
  stroke: var(--_color);
}

.l-footer__contact-link-number {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
}

.l-footer__contact-link-text {
  font-size: 1.25rem;
  font-weight: 500;
}

.l-footer__contact-icon,
.l-footer__contact-icon-2 {
  position: absolute;
  height: auto;
}

.l-footer__contact-icon {
  display: none;
}

.l-footer__contact-icon-2 {
  display: block;
  width: min(27.7333333333vw, 310px);
  aspect-ratio: 310.13/392.25;
  top: 0;
  left: 0;
  translate: -40% -55%;
  rotate: 40deg;
}

@media screen and (min-width: 768px) {
  .l-footer__contact {
    margin-bottom: 85px;
    padding: 110px 0;
  }
  .l-footer__contact-header {
    margin-bottom: 45px;
  }
  .l-footer__contact-links {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-button-1.l-footer__cotnact-link {
    --_width: 100%;
    --_height: 5.625rem;
  }
  .l-footer__contact-icon {
    display: block;
    width: min(19.6971428571vw, 450px);
    aspect-ratio: 275.76/352.45;
    bottom: 0;
    right: 0;
    rotate: -46.43deg;
    translate: 80% 30%;
  }
  .l-footer__contact-icon-2 {
    display: block;
    width: min(22.1521428571vw, 500px);
    top: 0;
    left: 0;
    rotate: 35deg;
    translate: -70% -56%;
  }
}
/** info **/
.l-footer__info {
  margin-bottom: 60px;
}

.l-fonter__info-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.l-footer__logo {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.25rem;
}
.l-footer__logo img {
  display: block;
  width: min(100%, 40px);
  aspect-ratio: 1;
  height: auto;
}

.l-footer__info-left-tel {
  font-family: var(--font-family-en);
}

.l-footer__info-left address {
  font-style: normal;
  text-align: center;
}
.l-footer__info-left address p:not(:last-child) {
  margin-bottom: 15px;
}

.l-footer__info-right {
  display: none;
}

.l-footer__info-title {
  margin-bottom: 35px;
  font-weight: 400;
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.l-footer__nav {
  display: none;
}

.l-footer__nav-item {
  font-size: 0.875rem;
  line-height: 2;
}
.l-footer__nav-item h3 {
  font-weight: 500;
}
.l-footer__nav-item li {
  font-weight: 500;
}
.l-footer__nav-item a {
  transition: color 0.3s ease-out;
}

.l-footer__nav-item-list--indent li {
  text-indent: 2.5em;
}

.l-footer__nav-item-private {
  margin-top: 12px;
}
.l-footer__nav-item-private a {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media screen and (min-width: 768px) {
  .l-footer__logo {
    justify-content: flex-start;
  }
  .l-footer__info-left address {
    text-align: left;
  }
  .l-footer__info-left address a {
    transition: color 0.3s ease-out;
  }
  .l-footer__info-right {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-footer__nav {
    display: flex;
    gap: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .l-fonter__info-container {
    grid-template-columns: auto 1fr;
    justify-content: space-between;
  }
  .l-footer__info-right {
    margin-inline-start: auto;
  }
  .l-footer__nav-item a:hover,
  .l-footer__info-left address a:hover {
    color: var(--color-link);
  }
}
.p-top__about,
.p-top__news,
.p-top__lineup,
.p-top__concept {
  margin-bottom: 50px;
}

.p-top__about {
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .p-top__about,
  .p-top__news,
  .p-top__lineup {
    margin-bottom: 120px;
  }
  .p-top__about {
    margin-bottom: 180px;
  }
}
.p-top__hero {
  position: relative;
  margin-bottom: 50px;
}

.p-top__hero-title {
  z-index: 3;
  position: absolute;
  top: 40px;
  left: 40px;
  width: min(100% - var(--inner-padding) * 2, 1200px);
  margin-inline: auto;
}

.p-top__hero-title-main {
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}

.p-top__hero-title-sub {
  font-size: 0.9375rem;
}

.swiper-slide {
  --_height: 500px;
  position: relative;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/700;
  min-height: var(--_height);
  max-height: calc(100vh - var(--header-height) - 85px);
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper__pagination {
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #4F4747;
}

@media screen and (min-width: 768px) {
  .p-top__hero {
    margin-bottom: 80px;
  }
  .p-top__hero-title {
    top: 35%;
    left: 50%;
    translate: -50% -50%;
  }
  .p-top__hero-title-main {
    font-size: 2.625rem;
  }
  .p-top__hero-title-sub {
    font-size: 1.25rem;
  }
  .swiper-slide {
    --_height: 700px;
  }
}
/** about **/
.p-top__about {
  overflow-x: clip;
}

.p-top__about-title {
  margin-bottom: 30px;
}

.p-top__about-title,
.p-top__about-lead {
  text-align: center;
}

.p-top__about-lead {
  margin-bottom: 1em;
  font-size: 1.25rem;
}

.p-top__about-p {
  margin-bottom: 50px;
}

.p-top__about-body {
  position: relative;
}

.p-top__about-button {
  margin-bottom: 50px;
  margin-inline: auto;
}

.p-top__about-img {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-top__about-lead,
  .p-top__about-title {
    text-align: left;
  }
  .p-top__about-title {
    margin-bottom: 70px;
  }
  .p-top__about-lead {
    font-size: 2.25rem;
  }
  .p-top__about-img {
    display: block;
    margin-inline: auto;
    width: min(100%, 500px);
    height: auto;
  }
  .p-top__about-button {
    margin-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__about-body {
    position: relative;
    width: 52.7272727273%;
  }
  .p-top__about-img {
    position: absolute;
    top: 0;
    left: calc(100% + 50px);
    width: min(57.7272727273vw, 635px);
  }
  .p-top__about-button {
    margin-bottom: 0;
  }
}
/** concept **/
.p-top__concept {
  padding-top: 50px;
  position: relative;
}

.p-top__concept-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1400/788.7;
  max-height: 100%;
  height: auto;
  z-index: -1;
}

.p-top__concept-title {
  margin-bottom: 30px;
}

.p-top__concept-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.p-top__concept-item figure {
  --_width: min( 280 / 340 * 100%, 280px);
  margin-bottom: 20px;
  width: var(--_width);
  margin-inline: auto;
}
.p-top__concept-item figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__concept-item {
  margin-inline: auto;
  width: min(100%, 400px);
}
.p-top__concept-item h3, .p-top__concept-item figcaption {
  text-align: center;
  font-weight: 400;
  font-size: 1.375rem;
}
.p-top__concept-item h3 {
  margin-bottom: 15px;
}
.p-top__concept-item figcaption {
  margin-bottom: 30px;
}
.p-top__concept-item p {
  margin-bottom: 15px;
}

.p-top__concept-item .p-top__concept-item-figure {
  --_width: min( 100%, 340px);
}
.p-top__concept-item .p-top__concept-item-figure img {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .p-top__concept {
    padding-top: 140px;
    margin-bottom: 150px;
  }
  .p-top__concept-title {
    margin-bottom: 80px;
  }
  .p-top__concept-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 75px;
  }
  .p-top__concept-item {
    width: 100%;
  }
}
/*** concept ***/
.p-top__lineup-title {
  margin-bottom: 60px;
}

.p-top__lineup-header {
  margin-bottom: 80px;
  text-align: center;
}

.p-top__lineup-header-lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.8em;
}

.p-top__lineup-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-top__lineup-item {
  width: min(100%, 1195px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "catch" "image" "text";
}

.p-top__lineup-item-text {
  position: relative;
  grid-area: text;
  display: contents;
}

.p-top__lineup-item-catch {
  position: relative;
  margin-bottom: 20px;
  font-size: 1.875rem;
  line-height: 1;
  grid-area: catch;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-top__lineup-item-catch span {
  font-size: 1.2em;
}

.p-top__lineup-item-number {
  position: absolute;
  top: -5px;
  left: 0;
  translate: -50% -100%;
  font-size: 1.25rem;
  color: #E8E7E7;
  letter-spacing: 0.1em;
}
.p-top__lineup-item-number::after {
  content: attr(data-label);
  font-size: 3rem;
}

.p-top__lineup-item-text h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.p-top__lineup-item-text p {
  margin-bottom: 30px;
}

.p-top__lineup-item-figure {
  grid-area: image;
  margin-bottom: 30px;
}
.p-top__lineup-item-figure img {
  display: block;
  width: min(100%, 700px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-top__lineup-header-lead {
    font-size: 1.5rem;
  }
  .p-top__lineup-item {
    gap: 60px;
  }
  .p-top__lineup-item:nth-child(odd) {
    margin-inline-start: auto;
    grid-template-columns: 1fr 58.5774058577%;
    grid-template-areas: "text image";
  }
  .p-top__lineup-item:nth-child(even) {
    margin-inline-end: auto;
    grid-template-columns: 58.5774058577% 1fr;
    grid-template-areas: "image text";
  }
  .p-top__lineup-item-text {
    display: block;
  }
  .p-top__lineup-header {
    margin-bottom: 150px;
  }
  .p-top__lineup-items {
    gap: 220px;
  }
  .p-top__lineup-item-catch {
    margin-bottom: 30px;
    font-size: 3.125rem;
    text-align: left;
    margin-inline: 0;
  }
  .p-top__lineup-item-number {
    top: -20px;
    font-size: 2.5rem;
    translate: 0 -100%;
  }
  .p-top__lineup-item-number::after {
    font-size: 6.25rem;
  }
  .p-top__lineup-item-text p {
    margin-bottom: 50px;
  }
  .p-top__lineup-item-figure {
    margin-bottom: 0;
  }
}
/** news **/
.p-top__news-title {
  margin-bottom: 60px;
}

.p-top__news-items {
  display: grid;
  grid-template-columns: 1fr;
}

.p-top__news-items,
.p-archive__none {
  margin-bottom: 40px;
}

.p-archive__items {
  margin-bottom: 60px;
}

.p-archive__none {
  text-align: center;
}

.p-top__news-item {
  width: min(100%, 340px);
  margin-inline: auto;
}

.p-top__news-item a {
  display: block;
}

.c-article a:hover img {
  scale: 1.1;
}

.c-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.c-article {
  margin-inline: auto;
  width: min(100%, 340px);
}

.c-article__figure {
  margin-bottom: 30px;
  overflow: hidden;
}
.c-article__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 340/240;
  background-color: aliceblue;
  transition: scale 0.3s ease-out;
}

.c-article__lists {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.c-article__time {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-family: var(--font-family-en);
}

.c-article__category {
  padding: 0.3333333333em 2.5em;
  background-color: var(--color-grey);
  border-radius: 1.6666666667em;
}

.c-button-2.p-top__news-button {
  justify-content: flex-end;
}

@media screen and (min-width: 600px) {
  .c-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-top__news-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .p-archive__items {
    margin-bottom: 100px;
  }
  .c-articles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-page {
  margin-bottom: 50px;
}

.p-page__inner {
  margin-bottom: 35px;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-page__title {
  text-align: center;
}

.p-page__title-en {
  letter-spacing: 0.1em;
  font-size: 1.625rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.p-page__title-ja {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.p-page__breadcrumb {
  font-size: 0.75rem;
}

.p-page__breadcrumb {
  font-size: 0.75rem;
  line-height: 1.5;
}
.p-page__breadcrumb a {
  color: var(--color-main);
  transition: color 0.3s ease-out;
}
.p-page__breadcrumb > span:first-of-type {
  padding-right: 6px;
  text-transform: uppercase;
}
.p-page__breadcrumb > span:not(:first-of-type) {
  padding: 0 6px;
}

@media screen and (min-width: 768px) {
  .p-page {
    margin-bottom: 60px;
  }
  .p-page__inner {
    margin-bottom: 45px;
    height: 300px;
  }
  .p-page__title-en {
    font-size: 3.125rem;
  }
  .p-page__title-ja {
    font-size: 1rem;
  }
  .p-page__breadcrumb a:hover {
    color: var(--color-pink-3);
  }
}
.p-quality__section {
  overflow-x: clip;
}

.p-quality__title,
.p-natural__title {
  margin-bottom: 25px;
}

.p-natural__inner {
  position: relative;
  padding-bottom: 80px;
  padding-inline: var(--inner-padding);
}
.p-natural__inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 230px);
  bottom: 0;
  left: 0;
  background-color: var(--color-grey);
  z-index: -1;
  display: block;
}

.p-natural__p {
  text-align: center;
}

.p-natural__lead {
  text-align: center;
  margin-bottom: 30px;
}

.p-natural__figure {
  margin-bottom: 40px;
  width: min(100%, 714px);
  margin-inline: auto;
}
.p-natural__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-natural__header {
  margin-bottom: 50px;
}

.p-natural__items {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.p-natural__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.p-natural__item h3 {
  text-align: center;
}
.p-natural__item figure {
  padding-inline: 30px;
}
.p-natural__item figure img {
  display: block;
  width: min(100%, 280px);
  margin-inline: auto;
  height: auto;
}

.p-natural__lists {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-natural__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.p-natural__list h3 {
  margin-bottom: 1em;
}

.p-quality__list-lead {
  margin-bottom: 1.5em;
}

.p-natural__list-figure {
  width: min(100%, 330px);
  margin-inline: auto;
}
.p-natural__list-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-natural__title {
    margin-bottom: 50px;
  }
  .p-natural__figure {
    margin-bottom: 50px;
  }
  .p-natural__header {
    margin-bottom: 80px;
  }
  .p-natural__items {
    gap: 100px;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-natural__list {
    grid-template-columns: 30% 1fr;
    gap: 65px;
  }
}
/** quality **/
.p-quality__header {
  margin-bottom: 60px;
}
.p-quality__header h3, .p-quality__header h2 {
  text-align: center;
}
.p-quality__header p {
  text-align: center;
}

.p-qulaity__body {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.p-qulaity__body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-grey);
  width: 100%;
  height: 90%;
  z-index: -1;
}

.p-quality__image {
  display: block;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}

.p-quality__figure {
  margin-bottom: 40px;
  position: relative;
}
.p-quality__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-quality__figure .p-quality__icon--leaf-3 {
  --_size: min( calc( 302 / 1400 * 100vw), 302px);
  top: 100%;
  right: 0;
  translate: 45% -35%;
}

.p-quality__icon--leaf-1 {
  --_size: min( calc( 400 / 1400 * 100vw), 400px);
  top: 0;
  left: 0;
  translate: -53% -110%;
}

.p-quality__icon--leaf-2 {
  --_size: min( calc( 302 / 1400 * 100vw), 302px);
  bottom: 0;
  right: 0;
  translate: 120% 10%;
}

.p-quality__icon {
  display: block;
  position: absolute;
  height: auto;
  z-index: -2;
  width: var(--_size);
}

.p-quality__title-group {
  margin-top: -60px;
  margin-bottom: 35px;
  padding-top: 25px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px;
}
.p-quality__title-group h2 {
  margin-bottom: 20px;
}

.p-quality__title-group-en {
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-size: 1.25rem;
  color: #B0B0B0;
}

.p-quality__box {
  padding: 50px 25px 30px 45px;
  border-radius: 10px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-quality__ol-lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-quality__ol-list {
  --_size: 1.875rem;
}
.p-quality__ol-list h3 {
  color: var(--color-link);
  margin-bottom: 1.2em;
  position: relative;
}
.p-quality__ol-list h3::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: var(--_size);
  color: #E8E7E7;
  translate: -100% -40%;
}

.p-quality__box-image {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-quality__box-image img {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin-inline: auto;
}

.p-quality__lists {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-quality__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.p-quality__list h3 {
  margin-bottom: 1.25em;
}

.p-quality__list-text ul {
  margin-bottom: 2em;
}
.p-quality__list-text ul li {
  position: relative;
  padding-left: 1.1em;
  line-height: var(--line-height);
}
.p-quality__list-text ul li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  background-color: var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: calc(var(--font-size-base) * var(--line-height) / 2);
  left: 0;
  translate: 50% -50%;
}

.p-quality__list-figure img {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin-inline: auto;
}

.p-quality__text {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  padding: 0 0 45px 0;
}
.p-quality__text h3 {
  margin-bottom: 20px;
}
.p-quality__text::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  background-color: #F5F2F2;
  content: "";
  width: calc(100% + 30px);
  height: calc(100% + 100px);
}

.p-quality__items {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid #E8E7E7;
  border-radius: 10px;
}

.p-quality__item h4 {
  color: var(--color-link);
  margin-bottom: 0.8333333333em;
}

@media screen and (min-width: 768px) {
  .p-qulaity__body {
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
  .p-qulaity__body::before {
    height: 76%;
  }
  .p-quality__header {
    margin-bottom: 100px;
  }
  .p-quality__image {
    height: 300px;
  }
  .p-quality__figure {
    --_size: min(100%, 800px);
    margin-bottom: 80px;
  }
  .p-quality__figure img {
    display: block;
    width: var(--_size);
    margin-inline: auto;
    height: auto;
  }
  .p-quality__figure.p-quality__figure--right {
    --_size: min(100%, 690px);
    position: relative;
  }
  .p-quality__figure.p-quality__figure--right img {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
  .p-quality__icon {
    display: block;
  }
  .p-quality__box {
    padding: 60px 50px 60px 100px;
    grid-template-columns: 1fr 46.8085106383%;
    gap: 40px;
  }
  .p-quality__box-image {
    gap: 50px;
  }
  .p-quality__title-group {
    margin-top: -110px;
    margin-bottom: 60px;
    padding-top: 60px;
  }
  .p-quality__ol-list {
    --_size: 3rem;
  }
  .p-quality__lists {
    gap: 80px;
  }
  .p-quality__ol-lists {
    gap: 55px;
  }
  .p-quality__list {
    grid-template-columns: 1fr 40%;
    gap: 55px;
  }
  .p-quality__text {
    margin-bottom: 80px;
    width: min(100%, 650px);
    padding: 0 0 90px 0;
  }
  .p-quality__text::before {
    width: calc(100% + 300px);
    height: calc(100% + 160px);
  }
  .p-quality__items {
    padding: 60px 65px;
  }
}
.p-esg__section {
  background-color: var(--color-grey);
  padding: 60px 0;
}

.p-esg__header {
  margin-bottom: 50px;
}
.p-esg__header h2 {
  margin-bottom: 30px;
}

.p-esg__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-esg__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.p-esg__item h3 {
  margin-bottom: 1em;
}

.p-esg__lead {
  margin-bottom: 1.25em;
}

.p-esg__item-figure img {
  display: block;
  width: min(100%, 394px);
  margin-inline: auto;
  height: auto;
}

.p-esg__blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-esg__block {
  background-color: #fff;
  padding: 35px 25px;
}

.p-esg__block h3 {
  color: var(--color-link);
  text-align: center;
  margin-bottom: 20px;
}

.p-esg__block h4 {
  margin-bottom: 15px;
}

.p-esg__block-title {
  margin-bottom: 35px;
  text-align: center;
}
.p-esg__block-title span {
  font-family: var(--font-family-en);
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.p-esg__block-title h2 {
  font-weight: 400;
}

.p-esg__block-figure {
  margin-bottom: 40px;
  width: min(100%, 550px);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.p-esg__block-figure picture {
  width: calc(25% - 3.75px);
}
.p-esg__block-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-esg__block-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .p-esg__section {
    padding: 100px 0;
  }
  .p-esg__header {
    margin-bottom: 60px;
  }
  .p-esg__items {
    gap: 80px;
  }
  .p-esg__item {
    display: grid;
    grid-template-columns: 1fr 35.8181818182%;
    gap: 50px;
  }
  .p-esg__blocks {
    gap: 60px;
  }
  .p-esg__block {
    padding: 60px;
  }
  .p-esg__block-title {
    margin-bottom: 50px;
  }
  .p-esg__block-title span {
    font-size: 3rem;
  }
  .p-esg__block-figure {
    margin-bottom: 50px;
  }
}
.p-product__header {
  margin-bottom: 80px;
}
.p-product__header p {
  text-align: center;
}

.p-product__heading-2 {
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .p-product__header {
    margin-bottom: 150px;
  }
  .p-product__heading-2 {
    margin-bottom: 50px;
  }
}
.p-product__section {
  overflow-x: clip;
}

.p-product__head {
  text-align: center;
  margin-bottom: 60px;
}
.p-product__head h3 {
  margin-bottom: 1.3888888889em;
}

.p-product__title {
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.p-product__title h2,
.p-product__title h1 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}
.p-product__title h2 span,
.p-product__title h1 span {
  font-size: 1.2em;
}

.p-product__title-number {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-family: var(--font-family-en);
  color: #E8E7E7;
  line-height: 1;
  transform: translateX(-40%);
  display: block;
}
.p-product__title-number::after {
  display: inline-block;
  content: attr(data-number);
  font-size: 2.5em;
}

.p-product__lead {
  margin-bottom: 0.8333333333em;
}

.p-product__items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-product__items.p-product__items--bottom {
  margin-bottom: 60px;
}

.p-product__item {
  width: min(100%, 1250px);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "text" "image";
}

.p-product__item-figure {
  grid-area: image;
  display: block;
}
.p-product__item-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.p-product__item-text {
  grid-area: text;
  position: relative;
  padding: 50px 0;
}
.p-product__item-text::before {
  content: "";
  width: calc(100% + 30px);
  height: calc(100% + 80px);
  background-color: var(--color-grey);
  position: absolute;
  top: 0;
  left: -15px;
  z-index: -1;
}
.p-product__item-text h4 {
  margin-bottom: 1.25em;
}
.p-product__item-text h5 {
  margin-bottom: 1em;
}
.p-product__item-text p {
  margin-bottom: 2em;
}
.p-product__item-text ul {
  margin-bottom: 50px;
}

.p-product__item-lead {
  font-size: var(--font-size-20);
  margin-bottom: 1em !important;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-product__item {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 75px;
    margin-inline-start: auto;
    grid-template-areas: "text image";
  }
  .p-product__item.p-product__item--reverse {
    margin-inline-end: auto;
    grid-template-areas: "image text";
  }
  .p-product__item-text {
    padding: 80px 0;
  }
  .p-product__item-text::before {
    width: calc(100% + 440px);
    height: 100%;
    top: 50%;
    translate: 0 -50%;
    min-height: 37.5rem;
  }
  .p-product__item:nth-of-type(odd) .p-product__item-text::before {
    left: -150px;
  }
  .p-product__item:nth-of-type(even) .p-product__item-text::before {
    left: -290px;
  }
}
.p-product__item-text li {
  position: relative;
  padding-left: 1em;
  line-height: var(--line-height);
}
.p-product__item-text li::before {
  content: "";
  width: 3px;
  aspect-ratio: 1;
  background-color: var(--color-main);
  border-radius: 50%;
  position: absolute;
  top: calc(var(--font-size-base) * var(--line-height) / 2);
  left: 0;
  translate: 50% -50%;
}

.p-product__button.c-button-1 {
  --_width: min(100%, 550px);
  --_size: 0.75rem;
}

.c-button-1.p-product__button--center {
  margin-inline: auto;
}

.p-product__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 10px;
}

.p-product__gallery-item picture {
  width: min(100%, 340px);
  display: block;
}
.p-product__gallery-item img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 340/300;
  background-color: aliceblue;
  height: auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .p-product__head {
    margin-bottom: 100px;
  }
  .p-product__title {
    margin-bottom: 60px;
  }
  .p-product__title h2,
  .p-product__title h1 {
    font-size: 3.125rem;
  }
  .p-product__title-number {
    font-size: 2.5rem;
  }
  .p-product__items {
    gap: 100px;
  }
  .p-product__items.p-product__items--bottom {
    margin-bottom: 100px;
  }
  .p-product__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
  .p-product__gallery-item img {
    margin-bottom: 30px;
  }
  .p-product__button.c-button-1 {
    --_size: 1rem;
  }
  .c-button-1.p-product__button--center {
    justify-content: center;
  }
}
.p-company__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.p-company__bg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.p-company__title {
  margin-bottom: 35px;
}

.p-company__lead {
  margin-bottom: 2.0833333333em;
}

.p-company__2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-company__2col-text p:not(:last-of-type) {
  margin-bottom: 30px;
}

.p-company__2col-figure {
  width: min(100%, 368px);
  margin-inline: auto;
}
.p-company__2col-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 368/440;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 1.5em 1em;
  border-bottom: 1px solid #E7DFD5;
}
.c-list:first-of-type {
  border-top: 1px solid #E7DFD5;
}
.c-list a {
  transition: color 0.3s ease-out;
}

.p-company__area-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.p-company__area-item-text address {
  margin-bottom: 40px;
}
.p-company__area-item-text address a {
  transition: color 0.3s ease-out;
}

.p-company__area-item-title {
  margin-bottom: 30px;
}

.p-company__area-map {
  width: min(100%, 700px);
  aspect-ratio: 700/420;
}
.p-company__area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-button-1.p-company__area-item-button {
  --_width: min(100%, 17.8125rem);
  --_height: 4.375rem;
}

.c-button-1.p-company__area-item-button .c-button-1__text {
  text-transform: capitalize;
}

@media screen and (min-width: 768px) {
  .p-company__section {
    padding: 100px 0 110px;
  }
  .p-company__title {
    margin-bottom: 50px;
  }
  .p-company__2col {
    grid-template-columns: 1fr 33.4545454545%;
    gap: 50px;
  }
  .c-list {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 2em 0;
  }
  .c-list a:hover {
    color: var(--color-link);
    transition: color 0.3s ease-out;
  }
  .p-company__area-item {
    grid-template-columns: 1fr 63.6363636364%;
    gap: 50px;
    align-items: center;
  }
  .p-company__area-item-text address a:hover {
    color: var(--color-link);
    transition: color 0.3s ease-out;
  }
}
.p-default__section * {
  text-align: center;
}
.p-default__section h2 {
  margin-bottom: 35px;
}
.p-default__section p:not(:last-of-type) {
  margin-bottom: 2em;
}
.p-default__section a {
  display: block;
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-default__section h2 {
    margin-bottom: 50px;
  }
  .p-default__section a:hover {
    color: var(--color-link);
  }
}
/** lists **/
.p-archive__lists {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.p-archive__list {
  width: calc(50% - 5px);
}

.p-archive__list a {
  --background-color: #fff;
  --height: 60px;
  --animation-color: var(--color-grey);
  --animation: translateX(-100%);
  position: relative;
  height: var(--height);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--color-grey);
  background-color: var(--background-color);
  overflow: hidden;
  transition: color 0.3s ease-out;
}
.p-archive__list a span {
  position: relative;
  z-index: 2;
}
.p-archive__list a::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: var(--height) solid var(--animation-color);
  border-right: 50px solid transparent;
  transform: var(--animation);
  transition: transform 0.3s ease-out;
}

.p-archive__list.is-active a {
  --background-color: var(--color-grey);
}

@media screen and (min-width: 600px) {
  .p-archive__lists {
    gap: 20px;
  }
  .p-archive__list {
    width: auto;
  }
  .p-archive__list a {
    min-width: 215px;
  }
  .p-archive__list a:hover {
    --animation: translateX(0%);
    --color: #fff;
  }
}
/** ページネーション **/
.c-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagenation .wp-pagenavi {
  --gap: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
}
.c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
  --size: 2.375rem;
  width: var(--size);
  height: var(--size);
  display: inline-block;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en-2);
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: filter 0.3s ease-out;
  border: 1px solid var(--color-grey);
  border-radius: 50%;
  color: var(--color-main);
}
.c-pagenation .extend, .c-pagenation .first {
  align-self: center;
}
.c-pagenation .current {
  background-color: var(--color-grey);
}

.previouspostslink {
  scale: -1 1;
}

.nextpostslink,
.previouspostslink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-main);
  position: relative;
}
.nextpostslink::before,
.previouspostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  rotate: 45deg;
  width: 25%;
  height: 1px;
  background-color: var(--color-main);
  transform-origin: center right;
}
.nextpostslink::after,
.previouspostslink::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  display: block;
}

@media screen and (min-width: 768px) {
  .c-pagenation .wp-pagenavi {
    --gap: 18px;
  }
  .c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
    --size: 3.125rem;
  }
  .nextpostslink,
  .previouspostslink {
    width: 1.6875rem;
  }
}
.p-single__header {
  margin-bottom: 40px;
}

.p-single__lists {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-single__date {
  font-size: var(--font-size-16);
  letter-spacing: 0.1em;
  font-family: var(--font-family-en-1);
}

.p-single__category {
  font-size: 0.8125rem;
  background-color: var(--color-grey);
  min-width: 120px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.p-single__title {
  font-size: 1.5rem;
  font-weight: 500;
}

.p-single__body {
  margin-bottom: 50px;
}
.p-single__body h2, .p-single__body h3, .p-single__body h4 {
  margin-top: 50px;
}
.p-single__body h2 {
  margin-bottom: 1em;
  font-size: var(--font-size-24);
  font-weight: 400;
}
.p-single__body h3 {
  margin-bottom: 1.1111111111em;
  font-size: var(--font-size-18);
  font-weight: 500;
}
.p-single__body h4 {
  margin-bottom: 1.25em;
  font-size: var(--font-size-16);
  font-weight: 400;
}
.p-single__body p {
  margin-bottom: 2em;
}
.p-single__body p a {
  color: var(--color-link);
}
.p-single__body > .wp-block-image,
.p-single__body .wp-block-columns {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .p-single__header {
    margin-bottom: 50px;
  }
  .p-single__title {
    font-size: 2rem;
  }
  .p-single__body {
    margin-bottom: 80px;
  }
  .p-single__body h2, .p-single__body h3, .p-single__body h4 {
    margin-top: 80px;
  }
  .p-single__body > .wp-block-image,
  .p-single__body .wp-block-columns {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .p-single__body a:hover {
    text-decoration: underline;
  }
}
/** singlepage ページネーション**/
.p-single__page {
  position: relative;
  width: min(100%, 12.5rem);
  margin-inline: auto;
}

.p-single__page-button {
  --height: 3.4375rem;
  --animation: translateX(-100%);
  --_color: var(--color-main);
  border: 1px solid var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--height);
  position: relative;
  overflow: hidden;
}
.p-single__page-button div {
  z-index: 1;
  position: relative;
  color: var(--_color);
}
.p-single__page-button::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: var(--height) solid var(--color-main);
  border-right: 50px solid transparent;
  transform: var(--animation);
  transition: transform 0.3s ease-out;
}

.p-single__page-next,
.p-single__page-prev {
  --space: -15px;
  --gap: 12px;
  --_font-size: rem(12);
  position: absolute;
  top: 50%;
  font-family: var(--font-family-en-2);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  letter-spacing: 0.1em;
  font-size: var(--_font-size);
  color: var(--color-main);
  transition: opacity 0.3s ease-out;
}

.p-single__page-prev {
  left: var(--space);
  translate: -100% -50%;
}

.p-single__page-next {
  right: var(--space);
  translate: 100% -50%;
  flex-direction: row-reverse;
}

.p-single__page-next .p-single__page-icon {
  transform: scale(-1, 1);
}

.p-single__page-icon {
  --_rotate: -40deg;
  --_background: var(--color-main);
  --_size: calc( 30 / 16 * 1em);
  background-color: var(--_background);
  width: var(--_size);
  height: 1px;
  display: inline-block;
}
.p-single__page-icon::before {
  content: "";
  width: 33.33%;
  height: 1px;
  display: block;
  background-color: var(--_background);
  transform-origin: center left;
  rotate: var(--_rotate);
}

.p-single__page-prev-link,
.p-single__page-next-link {
  position: relative;
}
.p-single__page-prev-link::before,
.p-single__page-next-link::before {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.p-single__page-next-link::before {
  left: 0;
  right: auto;
}

@media screen and (max-width: 600px) {
  .p-single__page-icon {
    display: none;
  }
  .p-single__page-prev-link::before,
  .p-single__page-next-link::before {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .p-single__page {
    width: min(100%, 18.75rem);
  }
  .p-single__page-button {
    --height: 4.375rem;
  }
  .p-single__page-button:hover {
    --animation: translateX(0%);
    --_color: #fff;
  }
  .p-single__page-next,
  .p-single__page-prev {
    --space: -30px;
    --_font-size: rem(16);
  }
  .p-single__page-next:hover,
  .p-single__page-prev:hover {
    opacity: 0.7;
  }
  .p-single__page-icon {
    --_size: calc( 40 / 16 * 1em);
  }
}
.p-contact__section {
  padding: 60px 0;
  background-color: var(--color-grey);
}

.p-contact__title {
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid #B0B0B0;
  padding-bottom: 0.8333333333em;
  margin-bottom: 40px;
}

.p-contact__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.p-contact__link {
  background-color: var(--color-grey);
  padding: 40px 30px;
}
.p-contact__link h2 {
  margin-bottom: 25px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  padding-bottom: 0.8333333333em;
  border-bottom: 1px solid #B0B0B0;
}
.p-contact__link h2 span {
  text-transform: uppercase;
}
.p-contact__link p {
  text-align: center;
}

.p-contact__link-phone {
  --_size: 1.75rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--_size);
  font-family: var(--font-family-en);
}

.p-contact__link a {
  --_color: var(--color-main);
  --_icon-size: 1rem;
  color: var(--_color);
  transition: color 0.3s ease-out;
}
.p-contact__link a svg {
  fill: var(--_color);
  width: var(--_icon-size);
  height: auto;
  transition: fill 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-contact__section {
    padding: 100px 0;
  }
  .p-contact__title {
    font-size: 1.875rem;
  }
  .p-contact__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .p-contact__link {
    padding: 50px;
  }
  .p-contact__link h2 {
    margin-bottom: 40px;
    font-size: 1.875rem;
  }
  .p-contact__link-phone {
    --_size: 2.75rem;
    gap: 15px;
  }
  .p-contact__link a {
    --_icon-size: 1.4375rem;
  }
  .p-contact__link a:hover {
    --_color: var(--color-link);
  }
}
.p-contact__head,
.p-contact__privacy-head {
  margin-bottom: 40px;
}

.p-contact__privacy-title {
  margin-bottom: 35px;
}

.p-contact__lists {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-contact__list h3 {
  margin-bottom: 1.25em;
}
.p-contact__list h4 {
  font-weight: 400;
}
.p-contact__list ol {
  margin-left: 1.1em;
  line-height: var(--line-height);
}
.p-contact__list a {
  color: var(--color-link);
}

@media screen and (min-width: 768px) {
  .p-contact__head,
  .p-contact__privacy-head {
    margin-bottom: 50px;
  }
  .p-contact__privacy-title {
    margin-bottom: 50px;
  }
  .p-contact__list a:hover {
    text-decoration: underline;
  }
}
/****フォーム ***/
.form-row {
  --bottom: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: var(--bottom);
}

.form-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .form-row {
    --bottom: 60px;
    gap: 30px;
    grid-template-columns: 230px 1fr;
    align-items: center;
  }
  .form-row.form-row--flex-start {
    align-items: flex-start;
  }
  .form-label {
    justify-content: space-between;
    gap: 20px;
  }
}
/*** 必須・任意ボタン ***/
.form-label .optional,
.form-label .required {
  display: inline-block;
  padding: 5px 12px;
  font-weight: 400;
  font-size: 0.75rem;
}

.form-label .optional {
  background-color: #E7DFD5;
}

.form-label .required {
  background-color: #A41000;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .form-label .optional,
  .form-label .required {
    padding: 7px 16px;
  }
}
/*** input ***/
.form-select select {
  appearance: none; /* 矢印などを消す（Chrome / Firefox）*/
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
  min-width: 250px;
}

.form-select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.form-select::before {
  z-index: 2;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-main);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .form-select select {
    min-width: 400px;
  }
}
.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input textarea {
  position: relative;
  width: 100%;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
}

.form-input input::file-selector-button {
  border: 1px solid #D7DFDF;
  padding: 10px 20px;
  background-color: #ECECEC;
}

.form-input textarea {
  min-height: 150px;
}

.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #C3C3C3;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #C3C3C3;
}

/*** checkbox ***/
.form-checkbox label::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox label:has(input:checked)::before {
  --bg: black;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-blue);
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-checkbox label {
  padding-left: 1.8em;
  margin-right: 1em;
  position: relative;
}

.form-checkbox label::before {
  --bg: #fff;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-color: var(--bg);
}

.form-radio label:has(input:checked)::after,
.form-checkbox label:has(input:checked)::after {
  display: block;
}

/* privacy */
.privacy-privacy {
  text-align: center;
  margin-bottom: 50px;
}
.privacy-privacy p {
  line-height: 3;
}
.privacy-privacy a {
  color: var(--color-link);
}

/*** エラーメッセージ ***/
.wpcf7-form-control-wrap {
  height: inherit;
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 3px);
  font-size: 0.875rem;
}

.form-checkbox .wpcf7-not-valid-tip {
  left: 50%;
  translate: -50% 0;
  width: 100%;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/** ボタン **/
.form-button.c-button-1 {
  cursor: pointer;
  margin-inline: auto;
  justify-content: center;
}

/** 住所 **/
.form-zipcode {
  padding-left: 1.5em;
  position: relative;
}
.form-zipcode input {
  max-width: 150px;
}
.form-zipcode::before {
  content: "〒";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.post-password-form {
  margin-bottom: 80px;
  text-align: center;
}
.post-password-form p {
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .post-password-form {
    margin-bottom: 140px;
  }
  .post-password-form p {
    line-height: 2.5;
  }
}
.p-private__section {
  padding-top: 70px;
  position: relative;
}
.p-private__section::before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 150px;
  top: 0;
  left: 0;
  background-image: url("./images/private/private-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-private__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p-private__title {
  margin-bottom: 1.5625em;
}

.p-private__box {
  border-radius: 10px;
  padding: 30px 25px;
  background-color: #F5F2F2;
}
.p-private__box h2 {
  margin-bottom: 1em;
}
.p-private__box p {
  margin-bottom: 30px;
}

.p-private__header {
  border-radius: 10px;
  padding-top: 40px;
  background-color: #fff;
}

.p-private__header,
.p-private__box {
  text-align: center;
}

.c-button-1.p-private__button {
  --_width: min(100%, 51.875rem);
  --_size: 0.75rem;
  margin-inline: auto;
}

.p-private__movie-item {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-private__movie-item li {
  width: min(100%, 800px);
  aspect-ratio: 800/400;
  background-color: #F5F2F2;
  margin-inline: auto;
}
.p-private__movie-item iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-private__section {
    padding-top: 115px;
  }
  .p-private__section::before {
    height: 300px;
  }
  .p-private__container {
    gap: 100px;
  }
  .p-private__header {
    padding-top: 60px;
  }
  .p-private__box {
    padding: 60px 50px;
  }
  .p-private__box p {
    margin-top: 60px;
  }
  .c-button-1.p-private__button {
    --_width: min(100%, 51.875rem);
    --_size: 1rem;
    margin-inline: auto;
    justify-content: center;
  }
  .p-private__movie-item {
    gap: 100px;
  }
}
.p-recruit__title {
  margin-bottom: 35px;
  text-align: center;
}

.p-recruit__box {
  margin-bottom: 60px;
  padding: 30px 25px;
  border-radius: 10px;
  background-color: #F5F2F2;
}

.p-recruit__box-lists {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-recruit__box-lists li {
  --_line-height: 2;
  padding-left: 1.2em;
  position: relative;
  font-size: var(--font-size-18);
  line-height: var(--_line-height);
}
.p-recruit__box-lists li::before {
  content: "";
  position: absolute;
  top: calc(var(--font-size-18) * var(--_line-height) / 2);
  left: 0;
  translate: 0 -50%;
  width: 4px;
  height: 4px;
  background-color: var(--color-main);
  border-radius: 50%;
}

.p-recruit__lists {
  line-height: 2;
  margin-bottom: 50px;
}

.c-button-1.p-recruit__button {
  --_height: 4.375rem;
  margin-inline: auto;
  justify-content: center;
}
.c-button-1.p-recruit__button .c-button-1__text {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-recruit__title {
    margin-bottom: 50px;
  }
  .p-recruit__box {
    margin-bottom: 100px;
    padding: 60px 50px;
  }
  .p-recruit__box-lists {
    --_line-height: 2.5;
  }
  .p-recruit__lists {
    margin-bottom: 60px;
  }
  .c-button-1.p-recruit__button {
    --_height: 5.625rem;
  }
}/*# sourceMappingURL=style.css.map */