@charset "UTF-8";
/* color
***************************************************************/
/* font
***************************************************************/
/*************************************

Page：amimation.scss

***************************************/
/*

fadeIn

***************************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    clip-path: inset(0% 0% 0% 0%);
  }
}
/*

borderScale

***************************************/
@-webkit-keyframes borderScale {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes borderScale {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/*************************************

Component：parts.scss

***************************************/
/*

Component: c-inner

***************************************/
.c-inner {
  max-width: 78.75rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .c-inner {
    max-width: 90%;
  }
}

.c-inner-s {
  max-width: 67.5rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .c-inner-s {
    max-width: 90%;
  }
}

.c-inner-l {
  max-width: 86.25rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .c-inner-l {
    max-width: 90%;
  }
}

/*

Component: c-kunoji

***************************************/
.c-kunoji {
  position: relative;
  padding-left: 0.4375rem;
}
.c-kunoji::before, .c-kunoji::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 1px;
  background-color: #610E16;
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
  z-index: 1;
}
.c-kunoji::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-kunoji::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*

Component: c-section-title

***************************************/
.c-section-title {
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.c-section-title--center {
  text-align: center;
}

.c-section-title__en {
  display: block;
  color: #fff;
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.125;
  margin-top: 1.0625rem;
  text-transform: uppercase;
}

.c-section-title--dark {
  color: #610E16;
}

.c-section-title--dark .c-section-title__en {
  color: #610E16;
}

/*

Component: c-subpage-header

***************************************/
.c-subpage-header {
  padding: 7.875rem 0 5rem;
}
@media (width < 893px) {
  .c-subpage-header {
    padding: 10.5rem 0 3.75rem;
  }
}
@media (width < 576px) {
  .c-subpage-header {
    padding: 6rem 0 2.5rem;
  }
}

.c-subpage-header__text {
  margin-top: 3.75rem;
}

.c-subpage-header__text--center {
  text-align: center;
}

.c-subpage-header__btn--center {
  margin: 3.125rem auto 0;
}
@media (width < 893px) {
  .c-subpage-header__btn--center {
    margin-top: 2.25rem;
  }
}

/*

Component: c-arrow

***************************************/
.c-arrow {
  position: relative;
  display: inline-block;
  width: 0.875rem;
  height: 2px;
  border-radius: 9999px;
  background-color: #610E16;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-arrow::before, .c-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: inherit;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
.c-arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-arrow--white {
  background-color: #fff;
}

/*

Component: c-arrow-bottom

***************************************/
.c-arrow-bottom {
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-left: 1px solid #610E16;
  border-bottom: 1px solid #610E16;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*

Component: c-btn

***************************************/
.c-btn {
  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;
  text-align: center;
  width: 100%;
  max-width: 17.5rem;
  padding: 1.1875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #610E16;
  border-radius: 5px;
  position: relative;
  color: #fff;
}
.c-btn .c-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  background-color: #fff;
}
@media (hover: hover) {
  .c-btn:hover {
    color: #fff;
  }
}

.c-btn__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

/*

Component: c-down-link

***************************************/
.c-down-link {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 2.19375rem;
  padding: 0.96875rem 1.08125rem 1.03125rem;
  background-color: #610E16;
  border-radius: 5px;
  color: #fff;
  max-width: 17.5rem;
}

.c-down-link__text {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/*

Component: c-bg-radius

***************************************/
.c-bg-radius {
  border-radius: 300px 0 0 0;
}
@media (width < 893px) {
  .c-bg-radius {
    border-radius: 150px 0 0 0;
  }
}

/*

Component: c-visually-hidden

***************************************/
.c-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*

Component: c-contact-card

***************************************/
.c-contact-card {
  display: grid;
  grid-template-columns: 12.3125rem auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 31.5rem;
  border-radius: 5px;
  background-color: #C43043;
  width: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .c-contact-card {
    margin: 0 auto;
  }
}
@media (width < 576px) {
  .c-contact-card {
    max-width: 24.25rem;
    grid-template-columns: 1.34fr 2.54fr;
  }
}
@media (hover: hover) {
  .c-contact-card:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .c-contact-card:active {
    opacity: 0.8;
  }
}
.c-contact-card .c-arrow {
  background-color: #fff;
}
@media (width < 576px) {
  .c-contact-card .c-arrow {
    margin-left: 5px;
  }
}

.c-contact-card__img {
  position: relative;
}
.c-contact-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.c-contact-card__img img {
  aspect-ratio: 197/185;
}

.c-contact-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1.875rem;
  padding-left: 2.15625rem;
}
@media (width < 893px) {
  .c-contact-card__body {
    gap: 1.5rem;
  }
}
@media (width < 576px) {
  .c-contact-card__body {
    display: grid;
    grid-template-columns: 1fr 0.9375rem;
    gap: 0;
    padding-right: 1.125rem;
    padding-left: 1.125rem;
  }
}

.c-contact-card__badge {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4583333333;
}
@media (width < 576px) {
  .c-contact-card__badge {
    font-size: 1rem;
  }
}

.c-contact-card__text {
  display: grid;
  grid-template-columns: 1fr;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.03em;
}
@media (width < 576px) {
  .c-contact-card__text {
    font-size: 0.875rem;
  }
}

/*

Component: c-page-mv

***************************************/
.c-page-mv {
  position: relative;
  overflow: hidden;
  background-color: #610E16;
  padding-top: 5.9375rem;
}
@media (width < 576px) {
  .c-page-mv {
    padding-top: 3.75rem;
  }
}
.c-page-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(47, 39, 37, 0.3);
  z-index: 1;
}

.c-page-mv__img img {
  aspect-ratio: 1500/495;
  -o-object-position: center;
     object-position: center;
}
@media (width < 893px) {
  .c-page-mv__img img {
    aspect-ratio: 750/400;
  }
}
@media (width < 576px) {
  .c-page-mv__img img {
    aspect-ratio: 375/280;
  }
}

.c-page-mv__body {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 2;
  -webkit-transform: translateY(2.96875rem);
          transform: translateY(2.96875rem);
}
@media (width < 576px) {
  .c-page-mv__body {
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
  }
}

.c-page-mv__label {
  color: #CBC2C3;
  font-weight: 600;
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.125;
  text-transform: uppercase;
}
@media (width < 576px) {
  .c-page-mv__label {
    font-size: 0.8125rem;
  }
}

.c-page-mv__title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  margin-top: 0.5625rem;
}
@media (width < 893px) {
  .c-page-mv__title {
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }
}
@media (width < 576px) {
  .c-page-mv__title {
    font-size: 1.125rem;
    line-height: 1.4545454545;
  }
}

.c-page-mv__desc {
  color: #fff;
  font-size: 1.4375rem;
  line-height: 1.3913043478;
  margin-top: 0.75rem;
}
@media (width < 893px) {
  .c-page-mv__desc {
    font-size: 1.125rem;
  }
}
@media (width < 576px) {
  .c-page-mv__desc {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.c-page-mv--text-only {
  padding-bottom: 5rem;
}
@media (width < 576px) {
  .c-page-mv--text-only {
    padding-bottom: 3.125rem;
  }
}

/*

Component: c-anchor-nav

***************************************/
.c-anchor-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 59.25rem;
  margin: 1.875rem auto 0;
}
@media (width < 1261px) {
  .c-anchor-nav__list {
    max-width: 90%;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 19.6875rem));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (width < 893px) {
  .c-anchor-nav__list {
    grid-template-columns: repeat(auto-fill, minmax(19.6875rem, 23.75rem));
  }
}
@media (width < 576px) {
  .c-anchor-nav__list {
    gap: 2px;
  }
}

.c-anchor-nav__list--4col {
  grid-template-columns: repeat(4, 1fr);
  max-width: 78.75rem;
}
@media (width < 1261px) {
  .c-anchor-nav__list--4col {
    max-width: 90%;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 19.6875rem));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (width < 893px) {
  .c-anchor-nav__list--4col {
    grid-template-columns: repeat(auto-fill, minmax(19.6875rem, 23.75rem));
  }
}

.c-anchor-nav__list--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (width < 1261px) {
  .c-anchor-nav__list--2col {
    max-width: 90%;
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 19.6875rem));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (width < 893px) {
  .c-anchor-nav__list--2col {
    grid-template-columns: repeat(auto-fill, minmax(19.6875rem, 23.75rem));
  }
}

.c-anchor-nav__item {
  background-color: rgba(47, 39, 37, 0.15);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (hover: hover) {
  .c-anchor-nav__item:hover {
    background-color: #2f2725;
  }
  .c-anchor-nav__item:hover .c-anchor-nav__link {
    color: #fff;
  }
  .c-anchor-nav__item:hover svg {
    fill: #ECE7DB;
  }
}
@media (hover: none) {
  .c-anchor-nav__item:active {
    background-color: #2f2725;
  }
  .c-anchor-nav__item:active .c-anchor-nav__link {
    color: #fff;
  }
}

.c-anchor-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5625rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: #2F2725;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  height: 100%;
  position: relative;
}
@media (width < 1261px) {
  .c-anchor-nav__link {
    padding: 0.75rem 0.75rem;
  }
}
@media (width < 893px) {
  .c-anchor-nav__link {
    padding: 0.875rem 0.75rem;
  }
}
.c-anchor-nav__link svg {
  fill: #2F2725;
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (width < 1261px) {
  .c-anchor-nav__link svg {
    right: 0.75rem;
  }
}

.c-anchor-nav__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
  font-weight: 500;
}

.c-anchor-nav__text--uppercase {
  text-transform: uppercase;
}

/*

Component: c-about

***************************************/
.c-about {
  padding-top: 8.125rem;
}

.c-about__emphasis {
  margin-top: 4.875rem;
}

.c-about__text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 2;
  text-align: center;
  margin-top: 2.0625rem;
}

.c-about__slider .c-slider__slide {
  margin-top: 3.3125rem;
}
.c-about__slider .c-slider__slide img {
  height: 22.6666666667vw;
}
@media (width < 893px) {
  .c-about__slider .c-slider__slide img {
    height: 45.3333333333vw;
  }
}

/*

Component: c-slider

***************************************/
.c-slider {
  overflow: hidden;
}

.c-slider__slide-img {
  padding: 0 6px;
}

.c-slider__slide-img img {
  height: 48vw;
}
@media (width < 893px) {
  .c-slider__slide-img img {
    height: 58vw;
  }
}
@media (width < 576px) {
  .c-slider__slide-img img {
    height: 100vw;
  }
}

.c-slider--news img {
  height: 40vw;
}
@media (width < 893px) {
  .c-slider--news img {
    height: 100vw;
  }
}

/*

Component: c-heading

***************************************/
.c-heading {
  text-align: center;
}

.c-heading--left {
  text-align: left;
}

.c-heading__label {
  display: block;
  color: #CBC2C3;
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.125;
  text-transform: uppercase;
}

.c-heading__title {
  color: #2F2725;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4230769231;
  position: relative;
  margin-top: 0.3125rem;
}
.c-heading__title::before {
  content: "";
  display: block;
  background-color: #000;
  width: 1.25rem;
  height: 1px;
  position: absolute;
  bottom: -1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-heading--left .c-heading__title::before {
  display: none;
}

/*

Component: c-emphasis

***************************************/
.c-emphasis {
  color: #C43043;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5454545455;
  margin-top: 3.75rem;
  text-align: center;
}
@media (width < 1261px) {
  .c-emphasis {
    font-size: 1.25rem;
  }
}

/*

Component: lineup__beef

***************************************/
.lineup__beef {
  background-color: #383838;
  max-width: 51.25rem;
  margin: 0 auto;
}

.lineup__beef-inner {
  display: grid;
  grid-template-columns: 1fr auto;
}
@media (width < 893px) {
  .lineup__beef-inner {
    grid-template-columns: 1fr;
  }
}

.lineup__beef-text {
  padding: 2.5rem 3rem 2.1875rem 3.125rem;
}
@media (width < 893px) {
  .lineup__beef-text {
    padding: 0;
  }
}

.lineup__beef-name {
  font-size: 1.625rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4230769231;
  position: relative;
  margin-left: 4px;
}
@media (width < 893px) {
  .lineup__beef-name {
    font-size: 1.5rem;
    margin: auto 0 auto 1.875rem;
  }
}
@media (width < 576px) {
  .lineup__beef-name {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  }
}
@media (width < 893px) {
  .lineup__beef-name:not(.lineup__head-sp .lineup__beef-name) {
    display: none;
  }
}

.lineup__beef-desc {
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .lineup__beef-desc {
    display: block;
    padding: 0 1.875rem 1rem;
  }
}

.lineup__beef-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  margin-top: 1.25rem;
  margin-left: auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (width < 893px) {
  .lineup__beef-link {
    display: none;
  }
}
.lineup__beef-link:hover {
  opacity: 0.7;
}
.lineup__beef-link--sp {
  display: none;
}
@media (width < 893px) {
  .lineup__beef-link--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 1.25rem 1.875rem 1.4375rem auto;
  }
}

.lineup__beef-link-text {
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.lineup__beef-img {
  max-width: 19.0625rem;
}
@media (width < 893px) {
  .lineup__beef-img:not(.lineup__head-sp .lineup__beef-img) {
    display: none;
  }
}
@media (width < 893px) {
  .lineup__beef-img {
    max-width: 100%;
  }
}
.lineup__beef-img img {
  aspect-ratio: 305/262;
  width: 100%;
  height: auto;
}

.lineup__head-sp {
  display: none;
}
@media (width < 893px) {
  .lineup__head-sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*

Component: c-img-modal

***************************************/
/*************************************

Component：pagenavi.scss

***************************************/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 5rem;
}
.wp-pagenavi a {
  border: none !important;
  color: #7C7C7C;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
}
.wp-pagenavi .current {
  color: #C43043;
  border: none;
}
.wp-pagenavi .first {
  margin-right: 1.5625rem;
}
.wp-pagenavi .last {
  margin-left: 1.5625rem;
}

/********************************

Page：common.scss

********************************/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #382E2C;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("../img/layout/top/bg.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

a {
  text-decoration: none;
  color: #382E2C;
}

a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.sp-block {
  display: none;
}
@media (width < 576px) {
  .sp-block {
    display: block;
  }
}

.xmd-block {
  display: none;
}
@media (width < ) {
  .xmd-block {
    display: block;
  }
}

.md-block {
  display: none;
}
@media (width < 893px) {
  .md-block {
    display: block;
  }
}

.lg-block {
  display: none;
}
@media (width < 1261px) {
  .lg-block {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media (width < 576px) {
  .sp-none {
    display: none;
  }
}

.xmd-none {
  display: block;
}
@media (width < ) {
  .xmd-none {
    display: none;
  }
}

.md-none {
  display: block;
}
@media (width < 893px) {
  .md-none {
    display: none;
  }
}

.lg-none {
  display: block;
}
@media (width < 1261px) {
  .lg-none {
    display: none;
  }
}

.keep-all {
  word-break: keep-all;
}

.highlight {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(80%, #FFF367), to(transparent));
  background-image: linear-gradient(transparent 60%, #FFF367 80%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.white-space-nowrap {
  white-space: nowrap;
}

body.is-drawerActive {
  overflow: hidden;
}

/*

mv

***************************************/
.mv {
  position: relative;
  padding-top: 5.9375rem;
}
@media (width < 576px) {
  .mv {
    padding-top: 3.75rem;
  }
}

/*

mv__copy

***************************************/
.mv__copy {
  position: absolute;
  top: 10.5rem;
  left: 5rem;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (width < 893px) {
  .mv__copy {
    top: 8.4375rem;
    left: 2.5rem;
  }
}
@media (width < 576px) {
  .mv__copy {
    top: 6.25rem;
    left: 1.25rem;
  }
}

.mv__copy-text {
  position: relative;
  font-size: 2.125rem;
  color: #382E2C;
  letter-spacing: 0.06em;
  line-height: 1.5588235294;
  background-color: #fff;
  padding: 0.8125rem 1.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  opacity: 0;
}
@media (width < 576px) {
  .mv__copy-text {
    font-size: 1.125rem;
  }
}
.mv__copy-text:nth-of-type(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.mv__copy-text span {
  letter-spacing: -0.5em;
}

/*

mv__slider

***************************************/
@media (width < 893px) {
  .mv__slider {
    display: none;
  }
}
.mv__slider .slick-dots {
  bottom: 0.9375rem;
  pointer-events: none;
}
.mv__slider .slick-dots li button::before {
  font-size: 0.625rem;
  color: #fff;
  opacity: 1;
}
.mv__slider .slick-dots li.slick-active button::before {
  color: #C43043;
}

.mv__slider--sp {
  display: none;
}
@media (width < 893px) {
  .mv__slider--sp {
    display: block;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.mv__slide-img img {
  aspect-ratio: 1500/685;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 893px) {
  .mv__slide-img img {
    aspect-ratio: 428/675;
  }
}

/*

mv__news

***************************************/
.mv__news-area {
  margin-top: 1.15625rem;
}

.mv__news-area-inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr;
  gap: 1.15625rem;
  max-width: 83.75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0rem 1.25rem;
}
@media (width < 893px) {
  .mv__news-area-inner {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
}

.mv__news-label {
  font-size: 1.0625rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1;
}

.mv__news {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #610E16;
  border-radius: 0.3125rem;
  padding: 1.03125rem 1.54375rem 1.03125rem 2.46875rem;
  max-width: 63.203125rem;
}
@media (width < 893px) {
  .mv__news {
    grid-template-columns: auto;
    grid-template-rows: auto;
    padding: 0.6875rem 0.625rem 0.5rem 0.625rem;
  }
}

.mv__news-item {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 893px) {
  .mv__news-item {
    display: block;
  }
}

.mv__news-tag {
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1666666667;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.mv__news-date {
  color: #610E16;
  position: relative;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  line-height: 1;
  padding-left: 3.875rem;
}
@media (width < 893px) {
  .mv__news-date {
    padding-left: 1.9375rem;
  }
}
.mv__news-date::after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  background-color: #610E16;
  position: absolute;
  top: 50%;
  left: 2.53125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (width < 893px) {
  .mv__news-date::after {
    left: 0.90625rem;
    height: 1.3125rem;
  }
}

.mv__news-text {
  font-size: 1.0625rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1.1333333333;
  padding-left: 1.25rem;
}
@media (width < 893px) {
  .mv__news-text {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.4;
    padding: 0.5rem 0 1.4375rem;
    border-bottom: 1px solid #610E16;
  }
}

.mv__news-more {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 0.625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-left: 1.5rem;
  margin-left: auto;
  position: relative;
}
@media (width < 893px) {
  .mv__news-more {
    padding-left: 0;
    margin: 0.5rem auto;
  }
}
.mv__news-more::after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  background-color: #610E16;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (width < 893px) {
  .mv__news-more::after {
    display: none;
  }
}
@media (hover: hover) {
  .mv__news-more:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .mv__news-more:active {
    opacity: 0.7;
  }
}

.mv__news-more-text {
  font-size: 0.9375rem;
  color: #610E16;
  letter-spacing: 0.03em;
  line-height: 1;
}

/*

g-scroll

***************************************/
.g-scroll {
  overflow: hidden;
  padding: 16.71875rem 0 27.1875rem;
  position: sticky;
  top: 0;
}

.g-scroll__img {
  max-width: 26.25rem;
  margin: 0 auto;
  position: sticky;
  inset: 0;
}
@media (width < 576px) {
  .g-scroll__img {
    max-width: 13.625rem;
  }
}
.g-scroll__img img {
  aspect-ratio: 420/297;
  opacity: 0;
}
@media (width < 576px) {
  .g-scroll__img img {
    aspect-ratio: 218/153;
  }
}

.g-scroll__scale {
  display: block;
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background-color: #C43043;
  position: absolute;
  top: 3.875rem;
  right: 6.6875rem;
  opacity: 0;
}
@media (width < 576px) {
  .g-scroll__scale {
    top: 2rem;
    right: 3.5rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

/*

scroll-container

***************************************/
.scroll-container {
  height: 400vh;
  position: relative;
}
@media (width < 893px) {
  .scroll-container {
    height: 568vh;
  }
}
@media (width < 576px) {
  .scroll-container {
    height: 531vh;
  }
}

.sticky-box {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.sticky-box img {
  aspect-ratio: 259/253;
  max-width: 16.1875rem;
  opacity: 0;
  visibility: hidden;
}
@media (width < 576px) {
  .sticky-box img {
    max-width: 10.5rem;
  }
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #C43043;
  -webkit-transform: translate(calc(-50% + 60px), calc(-50% - 50px));
          transform: translate(calc(-50% + 60px), calc(-50% - 50px));
  will-change: width, height;
}
@media (width < 576px) {
  .circle {
    -webkit-transform: translate(calc(-50% + 40px), calc(-50% - 30px));
            transform: translate(calc(-50% + 40px), calc(-50% - 30px));
  }
}

/*

lineup

***************************************/
.lineup__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 9.375rem;
}

.lineup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 3.75rem;
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .lineup__list {
    grid-template-columns: auto;
    gap: 3.75rem;
  }
}

.lineup__item {
  border-radius: 5px;
  background-color: #fff;
  padding: 4.375rem 3.9375rem;
}
@media (width < 893px) {
  .lineup__item {
    padding: 4.375rem 1.875rem;
  }
}
.lineup__item:nth-of-type(1) {
  grid-column: 1/3;
}
@media (width < 893px) {
  .lineup__item:nth-of-type(1) {
    padding-bottom: 5rem;
    grid-column: auto;
  }
}
.lineup__item:nth-of-type(1) .lineup__item-desc {
  margin-top: 2.8125rem;
}
.lineup__item:nth-of-type(2) .lineup__item-inner, .lineup__item:nth-of-type(3) .lineup__item-inner {
  grid-template-columns: 1fr;
}
.lineup__item:nth-of-type(2) .lineup__item-name {
  letter-spacing: 0.06em;
}

.lineup__item-inner {
  display: grid;
  grid-template-columns: 3.49fr 5.65fr;
  gap: 2.5rem;
}
@media (width < 893px) {
  .lineup__item-inner {
    grid-template-columns: auto;
    gap: 1.75rem;
  }
}

.lineup__item-tag {
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #CBC2C3;
  letter-spacing: 0.01em;
  line-height: 1.125;
  text-transform: uppercase;
}

.lineup__item-name {
  font-size: 1.625rem;
  font-weight: 500;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1.4230769231;
  margin-top: 0.3125rem;
  position: relative;
  text-transform: uppercase;
}
.lineup__item-name::before {
  content: "";
  position: absolute;
  top: 3.40625rem;
  left: 0;
  width: 1.25rem;
  height: 1px;
  background: #000;
}

.lineup__item-desc {
  font-size: 1rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 1.625rem;
}

.lineup__btn {
  margin-top: 3.4375rem;
  max-width: 15rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (width < 893px) {
  .lineup__btn {
    display: none;
    margin-top: 0.625rem;
  }
}
.lineup__btn:hover {
  opacity: 0.7;
}
.lineup__btn--center {
  margin-right: auto;
  margin-left: auto;
}
.lineup__btn--sp {
  display: none;
}
@media (width < 893px) {
  .lineup__btn--sp {
    display: block;
  }
}

.lineup__item-imgs {
  display: grid;
  grid-template-columns: 3.04fr 2.51fr;
  gap: 0.625rem;
}
@media (width < 893px) {
  .lineup__item-imgs {
    gap: 0.3125rem;
  }
}

.lineup__item-img {
  max-width: 24rem;
  margin-top: 3rem;
}
@media (width < 893px) {
  .lineup__item-img {
    max-width: 100%;
  }
}
.lineup__item-img img {
  aspect-ratio: 384/192;
}

.lineup__item-img-sub {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.625rem;
}

.lineup .lineup__beef {
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .lineup .lineup__beef {
    margin-top: 3.75rem;
  }
}

/*

partners

***************************************/
.partners {
  padding: 8.625rem 0 8.1875rem;
}
@media (width < 893px) {
  .partners {
    padding: 5.625rem 0 6.125rem;
  }
}

.partners__inner {
  display: grid;
  grid-template-columns: 6.3fr 6.01fr;
  gap: 1.875rem;
}
@media (width < 893px) {
  .partners__inner {
    grid-template-columns: auto;
  }
}

.partners__title {
  color: #2F2725;
  line-height: 1.4285714286;
}

.partners__title-en {
  color: #2F2725;
  margin-top: 0.8125rem;
}
.partners__title-en span {
  text-transform: none;
}

.partners__desc {
  font-size: 1rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 2.75rem;
}

.partners__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  background-color: #382E2C;
  border-radius: 5px;
  margin-top: 4.5625rem;
  max-width: 34rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .partners__card:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .partners__card:active {
    opacity: 0.7;
  }
}
@media (width < 893px) {
  .partners__card {
    display: none;
  }
}
.partners__card--sp {
  display: none;
}
@media (width < 893px) {
  .partners__card--sp {
    display: grid;
    margin-top: 3rem;
    border-radius: 8px;
    gap: 0.75rem 1.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.partners__card-img {
  max-width: 12.3125rem;
}
.partners__card-img img {
  aspect-ratio: 197/176;
  height: 100%;
  border-radius: 8px 0 0 8px;
}
@media (width < 893px) {
  .partners__card-img img {
    border-radius: 5px 0 0 5px;
  }
}

.partners__card-text {
  padding: 1.5625rem 1.5625rem 1.5625rem 0;
  padding-right: 1.5625rem;
}
@media (width < 893px) {
  .partners__card-text {
    padding-right: 0.5rem;
  }
}

.partners__card-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.45;
}
@media (width < 893px) {
  .partners__card-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.4666666667vw;
    font-size: clamp(1rem, 1.2666666667vw, 1.1875rem);
  }
}

@media (width < 893px) {
  .partners__arrow {
    background-color: #fff;
  }
  .partners__arrow::before, .partners__arrow::after {
    background-color: #fff;
  }
}

.partners__card-desc {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.8571428571;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .partners__card-desc {
    display: none;
  }
}

.partners__card-desc--sp {
  display: none;
}
@media (width < 893px) {
  .partners__card-desc--sp {
    display: block;
    grid-column: 1/3;
    margin-top: 0;
    padding: 0 1.875rem 1.25rem;
  }
}

@media (width < 893px) {
  .partners__right {
    display: none;
  }
}

.partners__right--sp {
  display: none;
}
@media (width < 893px) {
  .partners__right--sp {
    display: block;
  }
}

.partners__map {
  max-width: 37.5625rem;
}
@media (width < 893px) {
  .partners__map {
    margin: 3.125rem auto 0;
  }
}
.partners__map img {
  aspect-ratio: 1/1;
}

.partners__map-note {
  font-size: 0.75rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1.4166666667;
  text-align: right;
}
@media (width < 893px) {
  .partners__map-note {
    padding-right: 1.25rem;
  }
}

/*

top-img-container

***************************************/
.top-img-container {
  padding-top: 8.25rem;
}
@media (width < 893px) {
  .top-img-container {
    padding-top: 3.3125rem;
  }
}

.top-img-container__img {
  max-width: 42.375rem;
  margin: 0 auto;
}
.top-img-container__img img {
  aspect-ratio: 1/1;
}

/*

about

***************************************/
.about {
  padding: 4.25rem 0 3.0625rem;
}
@media (width < 893px) {
  .about {
    padding: 1.875rem 0 6.875rem;
  }
}

.about__inner {
  max-width: 73.75rem;
}
@media (width < 1261px) {
  .about__inner {
    max-width: 90%;
  }
}

.about__container {
  display: grid;
  grid-template-columns: 5.9fr 4.98fr;
  gap: 5.5625rem;
  gap: clamp(1.25rem, 5.9333333333vw, 5.5625rem);
}
@media (width < 893px) {
  .about__container {
    grid-template-columns: auto;
    gap: 3.625rem;
  }
}

.about__left {
  margin-top: 6px;
}

.about__title {
  color: #63A150;
}

.about__title-en {
  color: #63A150;
  margin-top: 1.5rem;
}

.about__desc {
  font-size: 1.25rem;
  color: #63A150;
  letter-spacing: 0.03em;
  line-height: 2.55;
  margin-top: 1.75rem;
}

.about__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
}
@media (width < 893px) {
  .about__right {
    gap: 1.875rem 0.9375rem;
  }
}

.about__link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}
.about__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.about__link:nth-of-type(1) {
  grid-column: 1/3;
}
.about__link:nth-of-type(1) img {
  aspect-ratio: 498/232;
}
@media (width < 1261px) {
  .about__link:nth-of-type(1) img {
    aspect-ratio: 2/3;
  }
}
@media (width < 893px) {
  .about__link:nth-of-type(1) img {
    aspect-ratio: 498/232;
  }
}
.about__link:nth-of-type(2) img, .about__link:nth-of-type(3) img {
  aspect-ratio: 241/354;
}
@media (width < 1261px) {
  .about__link:nth-of-type(2) img, .about__link:nth-of-type(3) img {
    aspect-ratio: 2/3;
  }
}
@media (width < 893px) {
  .about__link:nth-of-type(2) img, .about__link:nth-of-type(3) img {
    aspect-ratio: 241/354;
  }
}
.about__link:nth-of-type(2) .about__link-label, .about__link:nth-of-type(3) .about__link-label {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.75rem;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.about__link .c-arrow {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.about__link:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.about__link:hover .c-arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.about__link:hover .about__link-label-text::before {
  -webkit-animation: borderScale 0.3s ease-in-out forwards;
          animation: borderScale 0.3s ease-in-out forwards;
}

.about__link-label {
  position: absolute;
  bottom: 2.375rem;
  left: 1.875rem;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media (width < 893px) {
  .about__link-label {
    text-align: center;
  }
}
.about__link-label .c-arrow {
  background-color: #fff;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.about__link-label-text {
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  position: relative;
}
@media (width < 1261px) {
  .about__link-label-text {
    font-size: 0.875rem;
  }
}
.about__link-label-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7.5px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.about__img {
  max-width: 68.8125rem;
  padding-top: 2.875rem;
}
@media (width < 893px) {
  .about__img {
    padding-top: 3.125rem;
  }
}
.about__img img {
  aspect-ratio: 1101/420;
}

/*

recruit

***************************************/
.recruit {
  padding-bottom: 10rem;
}
@media (width < 893px) {
  .recruit {
    padding-bottom: 6.5625rem;
  }
}

.recruit__container {
  background-color: #C43043;
  padding: 3.75rem 7.5rem 3.75rem 5rem;
  max-width: 50rem;
  margin-left: auto;
  margin-top: -11.875rem;
  margin-top: -12.66vw;
  position: relative;
  z-index: 1;
}
@media (width < 893px) {
  .recruit__container {
    padding: 3.625rem 1.25rem 5rem;
    margin-top: 0;
    max-width: 100%;
  }
}

.recruit__box-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
}

.recruit__title {
  margin-top: 6px;
}

.recruit__logo {
  max-width: 9.375rem;
}
.recruit__logo img {
  aspect-ratio: 150/47;
}

.recruit__desc {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 1.625rem;
}

.recruit__btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
  margin-top: 3.3125rem;
}
@media (width < 893px) {
  .recruit__btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    margin-top: 3rem;
  }
}

.recruit__btn {
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 1.8125rem 1.475rem;
  max-width: 16.875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .recruit__btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .recruit__btn:active {
    opacity: 0.7;
  }
}
@media (width < 893px) {
  .recruit__btn {
    max-width: 20.5rem;
    margin: 0 auto;
  }
}
.recruit__btn .c-arrow {
  right: 1.475rem;
}

.recruit__btn-text {
  line-height: 1.4;
  -webkit-transform: translateX(-7px);
          transform: translateX(-7px);
}

/*

company

***************************************/
.company__inner {
  padding: 2.53125rem 0 6.24375rem;
  border-top: 1px solid #2F2725;
  border-bottom: 1px solid #2F2725;
}
@media (width < 893px) {
  .company__inner {
    padding-top: 2rem;
  }
}

.company__title {
  color: #2F2725;
}

.company__title-en {
  color: #2F2725;
  margin-top: 1.25rem;
}

.company__name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #610E16;
  letter-spacing: 0.03em;
  line-height: 1.45;
  text-align: center;
  margin-top: 3.34375rem;
  position: relative;
}
@media (width < 576px) {
  .company__name {
    text-align: left;
  }
}
.company__name::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background-color: #610E16;
  position: absolute;
  left: 50%;
  bottom: -1.09375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width < 576px) {
  .company__name::before {
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.company__address {
  font-size: 1rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
  margin-top: 2.875rem;
}
@media (width < 576px) {
  .company__address {
    text-align: left;
  }
}

.company__map-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #610E16;
  color: #610E16;
  padding: 0.53125rem 0.5625rem;
  margin: 1.03125rem auto 0;
  max-width: 7.5rem;
  border-radius: 5px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .company__map-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .company__map-btn:active {
    opacity: 0.7;
  }
}
@media (width < 576px) {
  .company__map-btn {
    margin-left: 0;
  }
}
.company__map-btn svg {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.company__map-btn-text {
  font-size: 0.9375rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.company__tel {
  font-size: 1.125rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  text-align: center;
  margin-top: 1.84375rem;
}
@media (width < 576px) {
  .company__tel {
    text-align: left;
    font-size: clamp(1rem, 4.2056074766vw, 1.125rem);
  }
}

.company__btn {
  max-width: 15rem;
  margin: 3.75rem auto 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .company__btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .company__btn:active {
    opacity: 0.7;
  }
}

/*

news

***************************************/
.news {
  padding: 2.5625rem 0 10rem;
}
@media (width < 893px) {
  .news {
    padding: 2.0625rem 0 7.4375rem;
  }
}

.news__title {
  color: #2F2725;
}

.news__title-en {
  color: #2F2725;
}

.news__list {
  max-width: 51.875rem;
  margin: 2.125rem auto 0;
}
@media (width < 893px) {
  .news__list {
    margin-top: 3rem;
  }
}

.news__item {
  border-bottom: 1px dashed #868686;
}

.news__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.09375rem 0.9375rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .news__link {
    display: block;
    padding: 1.09375rem 0;
  }
}
.news__link:hover {
  opacity: 0.7;
}

.news__tag {
  display: inline-block;
  border: 1px solid #610E16;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  padding: 0.53125rem 0.625rem;
  border-radius: 5px;
  min-width: 6.4375rem;
  text-align: center;
  text-transform: uppercase;
}
@media (width < 893px) {
  .news__tag {
    padding: 0.1875rem 0.625rem;
  }
}

.news__date {
  font-size: 0.8125rem;
  color: #610E16;
  letter-spacing: 0.03em;
  line-height: 1.4615384615;
  white-space: nowrap;
}
@media (width < 893px) {
  .news__date {
    font-size: 0.9375rem;
    padding-left: 0.625rem;
  }
}

.news__text {
  font-size: 1.0625rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1.4705882353;
}
@media (width < 893px) {
  .news__text {
    display: block;
    margin-top: 0.6875rem;
  }
}

.news__btn {
  max-width: 15rem;
  margin: 3.6875rem auto 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news__btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .news__btn:active {
    opacity: 0.7;
  }
}
@media (width < 893px) {
  .news__btn {
    margin-top: 3.125rem;
  }
}

/*

contact

***************************************/
.contact {
  padding: 8rem 0 11.25rem;
}
@media (width < 893px) {
  .contact {
    padding: 6.125rem 0 8.125rem;
  }
}

.contact__title {
  color: #2F2725;
}

.contact__title-en {
  color: #2F2725;
}

.contact__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 66.5625rem;
  margin: 3.875rem auto 0;
}
@media (width < 893px) {
  .contact__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*

bg-img

***************************************/
.bg-img {
  aspect-ratio: 300/115;
}

/*

header

***************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  padding: 0 3.125rem;
}
@media (width < 576px) {
  .header {
    padding: 0 1.25rem;
  }
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/layout/top/bg.jpg");
  background-size: cover;
  background-position: center;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.header--scrolled::before {
  opacity: 0;
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
  z-index: 1;
}
@media (width < 893px) {
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/*

header__logo-area

***************************************/
.header__logo-area {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
  padding: 1.125rem 1rem 1.4375rem 0;
}
@media (width < 1261px) {
  .header__logo-area {
    padding-right: 1rem;
    grid-template-columns: auto;
  }
}
@media (width < 893px) {
  .header__logo-area {
    padding: 1.125rem 1rem 1.4375rem 0;
    grid-template-columns: auto 1fr;
  }
}
@media (width < 576px) {
  .header__logo-area {
    padding: 0.5rem 1rem 0.5rem 0;
    gap: 0.9375rem;
  }
}

.header__logo {
  display: block;
  max-width: 11rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 576px) {
  .header__logo {
    max-width: 8.875rem;
  }
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header__logo:active {
    opacity: 0.8;
  }
}
.header__logo img {
  aspect-ratio: 176/54;
}

.header__company {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
}
@media (width < 1261px) {
  .header__company {
    display: none;
  }
}
@media (width < 893px) {
  .header__company {
    display: block;
  }
}
@media (width < 576px) {
  .header__company {
    font-size: 0.75rem;
    line-height: 1.4285714286;
  }
}

/*

header__right

***************************************/
.header__right {
  display: grid;
  grid-template-rows: auto 1fr;
}
@media (width < 893px) {
  .header__right {
    display: none;
  }
}

/*

header__btn-area

***************************************/
.header__btn-area {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.9375rem;
}

.header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8125rem 1.25rem;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-color: #C43043;
  color: #fff;
}
.header__btn span:last-child {
  position: relative;
  margin-left: 1.875rem;
}
.header__btn span:last-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.29375rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn:hover {
  opacity: 0.8;
}

/*

header__nav

***************************************/
.header__nav {
  display: grid;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  padding-top: 1.33125rem;
}
@media (width < 1261px) {
  .header__nav {
    padding: 1.33125rem 0;
  }
}

.header__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 2.75rem;
}
@media (width < 1261px) {
  .header__nav-list {
    gap: 1.125rem;
  }
}

.header__nav-item {
  position: relative;
  cursor: pointer;
}
.header__nav-item--has-child > .header__nav-link {
  padding-right: 1.15rem;
}
.header__nav-item--has-child > .header__nav-link::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 1px solid #2F2725;
  border-bottom: 1px solid #2F2725;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (hover: hover) {
  .header__nav-item:hover .header__nav-link {
    color: #C43043;
  }
  .header__nav-item:hover .header__nav-link::after {
    border-color: #C43043;
  }
  .header__nav-item:hover .header__nav-sub-list {
    opacity: 1;
    visibility: visible;
  }
}
@media (hover: none) {
  .header__nav-item:active {
    color: #C43043;
  }
  .header__nav-item:active::after {
    border-color: #C43043;
  }
}

.header__nav-link {
  display: block;
  position: relative;
  z-index: 11;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  .header__nav-link:hover {
    color: #C43043;
  }
  .header__nav-link:hover::after {
    border-color: #C43043;
  }
}
@media (hover: none) {
  .header__nav-link:active {
    color: #C43043;
  }
  .header__nav-link:active::after {
    border-color: #C43043;
  }
}

.header__nav-sub-list {
  position: absolute;
  top: 1.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-top: 2px solid #C43043;
  padding: 1.75rem 1.875rem 1.875rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.header__nav-sub-list::before {
  content: "";
  position: absolute;
  top: -2.1875rem;
  left: 0;
  width: 100%;
  height: 2.1875rem;
  background: transparent;
}

.header__nav-sub-item {
  margin-top: 1.5rem;
}
.header__nav-sub-item:first-of-type {
  margin-top: 0;
}

.header__nav-sub-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding-left: 1.1875rem;
}
.header__nav-sub-link::before, .header__nav-sub-link::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #D97C86;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__nav-sub-link::before {
  left: 0;
}
.header__nav-sub-link::after {
  content: "";
  left: 6px;
}
@media (hover: hover) {
  .header__nav-sub-link:hover {
    color: #C43043;
  }
}

/*

hamburger-btn

***************************************/
.hamburger-btn {
  display: none;
}
@media (width < 893px) {
  .hamburger-btn {
    display: block;
    position: relative;
    margin-left: auto;
    width: 1.5625rem;
    height: 1.25rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
}

.hamburger-btn__line {
  display: block;
  background-color: #610E16;
  position: absolute;
  top: 0.625rem;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
  width: 1.5625rem;
  height: 2px;
}
.hamburger-btn__line::before {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  top: -0.5rem;
  width: inherit;
  height: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}
.hamburger-btn__line::after {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  top: 0.5rem;
  width: inherit;
  height: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}

/*

hamburger-btn [aria-expanded="true"]

********************************/
.hamburger-btn[aria-expanded=true] .hamburger-btn__line {
  background-color: transparent;
  width: 2rem;
}
.hamburger-btn[aria-expanded=true] .hamburger-btn__line::before {
  top: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #382E2C;
}
.hamburger-btn[aria-expanded=true] .hamburger-btn__line::after {
  top: 0;
  right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #382E2C;
}

/*

global-menu

***************************************/
.global-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: #fff;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.global-menu[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.global-menu__inner {
  padding: 5.9375rem 1.875rem 3.125rem;
}

.global-menu__item {
  border-bottom: 1px dotted #BCBCBC;
}

.global-menu__link {
  display: block;
  padding: 1.125rem 0;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #2F2725;
}

.global-menu__sub-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 1rem;
  row-gap: 0.75rem;
}

.global-menu__sub-link {
  position: relative;
  padding-left: 1.1875rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #2F2725;
  display: block;
}
.global-menu__sub-link::before, .global-menu__sub-link::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #D97C86;
  position: absolute;
  top: 0.5625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.global-menu__sub-link::before {
  left: 0;
}
.global-menu__sub-link::after {
  left: 6px;
}

.global-menu__contact {
  display: grid;
  gap: 1.125rem;
  margin-top: 3.125rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*

mv__badge

***************************************/
.mv__badge {
  position: fixed;
  bottom: 3.125rem;
  right: 1.875rem;
  max-width: 14.0625rem;
  -webkit-transition: max-width 0.4s ease, opacity 0.3s;
  transition: max-width 0.4s ease, opacity 0.3s;
  z-index: 5;
}
@media (width < 1261px) {
  .mv__badge {
    max-width: 8.75rem;
  }
}
@media (width < 893px) {
  .mv__badge {
    right: 1rem;
    max-width: 7.5rem;
  }
}
.mv__badge img {
  aspect-ratio: 1/1;
}
.mv__badge:hover {
  opacity: 0.8;
}
.mv__badge--scrolled {
  max-width: 10rem;
}
@media (width < 1261px) {
  .mv__badge--scrolled {
    max-width: 7.5rem;
  }
}
@media (width < 893px) {
  .mv__badge--scrolled {
    max-width: 6.25rem;
  }
}

.footer {
  background-color: #C43043;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.75rem;
  padding: 3.125rem 0 3.75rem;
}
@media (width < 893px) {
  .footer__inner {
    grid-template-columns: auto;
  }
}

.footer__logo {
  display: block;
  max-width: 12.1875rem;
}
.footer__logo img {
  aspect-ratio: 195/63;
}

.footer__sns-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1.5625rem;
  margin-top: 3rem;
}

.footer__sns-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.7;
  }
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 5.3125rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (width < 893px) {
  .footer__nav {
    gap: 2.1875rem 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.footer__nav-col {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 893px) {
  .footer__nav-col:nth-child(even) {
    margin-left: 4.0625rem;
  }
}
@media (width < 893px) {
  .footer__nav-col:nth-of-type(3) {
    grid-column: 1/-1;
  }
}

.footer__nav-heading {
  color: #D97C86;
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.125;
  text-transform: uppercase;
  position: relative;
}
.footer__nav-heading::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background-color: #D97C86;
  position: absolute;
  left: 0;
  bottom: -0.75rem;
}

.footer__nav-text {
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.footer__nav-list {
  display: grid;
  gap: 1.125rem;
  margin-top: 1.875rem;
}

.footer__nav-link {
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}

.footer__nav-sub-list {
  display: grid;
  gap: 1.125rem;
  margin-top: 1.125rem;
}

.footer__nav-sub-link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding-left: 1.1875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav-sub-link::before, .footer__nav-sub-link::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #D97C86;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer__nav-sub-link::before {
  left: 0;
}
.footer__nav-sub-link::after {
  content: "";
  left: 6px;
}
@media (hover: hover) {
  .footer__nav-sub-link:hover {
    opacity: 0.7;
  }
}

.footer__credit {
  background-color: #750813;
  padding: 1rem 0;
}
@media (width < 893px) {
  .footer__credit {
    padding: 1rem 1.25rem;
  }
}

.footer__credit-text {
  display: block;
  max-width: 78.75rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  line-height: 1.6666666667;
}
@media (width < 1261px) {
  .footer__credit-text {
    font-size: 0.625rem;
  }
}

/*

about-history

***************************************/
.about-history {
  padding: 8rem 0 14.9375rem;
}

/*

about-history__timeline

***************************************/
.about-history {
  padding: 8.125rem 0 0;
}

.about-history__inner {
  max-width: 90%;
  margin: 0 auto;
}

.about-history__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.375rem;
}
@media (width < 1261px) {
  .about-history__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 30rem;
    margin-inline: auto;
  }
}

.about-history__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(-0.875rem);
  clip-path: polygon(0 0, calc(100% - 0.875rem) 0, 100% 50%, calc(100% - 0.875rem) 100%, 0 100%, 0.875rem 50%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (hover: hover) {
  .about-history__item:hover:nth-of-type(odd) {
    background-color: #D97D24;
  }
  .about-history__item:hover:nth-of-type(even) {
    background-color: #C3531A;
  }
}
@media (hover: none) {
  .about-history__item:active:nth-of-type(odd) {
    background-color: #D97D24;
  }
  .about-history__item:active:nth-of-type(even) {
    background-color: #C3531A;
  }
}
.about-history__item:first-of-type {
  clip-path: polygon(0 0, calc(100% - 0.875rem) 0, 100% 50%, calc(100% - 0.875rem) 100%, 0 100%);
  margin-left: 0;
}
.about-history__item:nth-of-type(odd) {
  background-color: #E8AA4A;
}
.about-history__item:nth-of-type(even) {
  background-color: #E28C50;
}
.about-history__item:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1.25rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0.875rem 50%);
}
.about-history__item:last-of-type .about-history__desc-wrap {
  margin-top: 2.375rem;
  width: 100%;
}
@media (width < 1261px) {
  .about-history__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    clip-path: polygon(0 0, 50% 1.75rem, 100% 0, 100% calc(100% - 1.75rem), 50% 100%, 0 calc(100% - 1.75rem));
    margin-left: 0;
    margin-top: calc(-1.75rem);
    padding-top: 1.5rem;
    padding-bottom: 3.625rem;
    padding-left: 1.3125rem;
  }
  .about-history__item:first-of-type {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.75rem), 50% 100%, 0 calc(100% - 1.75rem));
    margin-top: 0;
  }
  .about-history__item:last-of-type {
    padding-top: 2.5rem;
    padding-right: 1.3125rem;
    padding-bottom: 1.75rem;
    clip-path: polygon(0 0, 50% 1.75rem, 100% 0, 100% 100%, 0 100%);
  }
  .about-history__item:last-of-type .about-history__desc-wrap {
    margin-top: 0;
  }
  .about-history__item:last-of-type .about-history__desc-wrap svg {
    margin-top: 1.25rem;
  }
}

.about-history__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  min-height: 100%;
  width: 100%;
  padding: 1.875rem 1.3125rem 1.875rem calc(1.25rem + 0.875rem);
}

.about-history__desc {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/*

scroll-container-about

***************************************/
.scroll-container-about {
  position: relative;
}
@media (width < 893px) {
  .scroll-container-about {
    height: 538vh;
  }
}
@media (width < 576px) {
  .scroll-container-about {
    height: 713vh;
  }
}

.sticky-box-about {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.sticky-box-about img {
  aspect-ratio: 82/57;
  max-width: 5.125rem;
  opacity: 0;
  visibility: hidden;
}
@media (width < 576px) {
  .sticky-box-about img {
    max-width: 6.5rem;
  }
}

.circle-about {
  position: absolute;
  top: 48.25%;
  left: 51.35%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #C43043;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  will-change: width, height;
}
@media (width < 576px) {
  .circle-about {
    top: 48.3%;
    left: 54.75%;
  }
}

/*

about-history__entries

***************************************/
.g-scroll-about {
  display: block;
}

.g-scroll__scale-about {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #C43043;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
}
@media (width < 893px) {
  .g-scroll__scale-about {
    left: 1.4375rem;
    -webkit-transform: translate(-0.25rem, 50%);
            transform: translate(-0.25rem, 50%);
  }
}

.history {
  overflow: hidden;
  position: relative;
  padding-top: 11.6875rem;
}

.about-history__entries {
  position: relative;
  padding-top: 0.625rem;
  padding-bottom: 11.6875rem;
  z-index: 1;
}
@media (width < 893px) {
  .about-history__entries {
    margin-top: 0;
  }
}
.about-history__entries::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #C43043;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width < 893px) {
  .about-history__entries::before {
    left: 1.5rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.about-history__entries-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width < 893px) {
  .about-history__entries-inner {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.about-history__logo-img {
  position: absolute;
  top: 7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 5.125rem;
}
.about-history__logo-img img {
  aspect-ratio: 82/57;
}

.about-history__entry {
  padding: 6.375rem 5rem 0;
  position: relative;
  padding-top: 0;
  margin-top: 6.375rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(1) {
    margin-top: 1.25rem;
  }
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(1)::before {
    top: 1.25rem;
  }
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(1)::after {
    top: 1.0625rem;
  }
}
.about-history__entry:nth-of-type(2) {
  padding-top: 0;
  margin-top: 21.6875rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(2) {
    margin-top: 5rem;
  }
}
.about-history__entry:nth-of-type(3) {
  padding-top: 0;
  margin-top: -9.8125rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(3) {
    margin-top: 5rem;
  }
}
.about-history__entry:nth-of-type(3) .about-history__entry-img {
  margin-top: 5.9375rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(3) .about-history__entry-img {
    margin-top: 1.875rem;
  }
}
.about-history__entry:nth-of-type(4) {
  margin-top: 12.5rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(4) {
    margin-top: 5rem;
  }
}
.about-history__entry:nth-of-type(4)::before {
  top: 2.625rem;
}
.about-history__entry:nth-of-type(4)::after {
  top: 2.375rem;
}
.about-history__entry:nth-of-type(4) .about-history__entry-heading {
  margin-top: 1.1875rem;
}
.about-history__entry:nth-of-type(4) .about-history__entry-img {
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(4) .about-history__entry-img {
    margin-top: 1.875rem;
  }
}
.about-history__entry:nth-of-type(5) {
  margin-top: -19.375rem;
}
@media (width < 893px) {
  .about-history__entry:nth-of-type(5) {
    margin-top: 5rem;
  }
}

.about-history__entry--left {
  padding-left: 1.5rem;
}
@media (width < 893px) {
  .about-history__entry--left {
    padding-left: 5rem;
    padding-right: 1.5rem;
  }
}
@media (width < 576px) {
  .about-history__entry--left {
    padding-left: 3.75rem;
  }
}
.about-history__entry--left::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  position: absolute;
  top: 2.1875rem;
  right: 0;
  background-color: #C43043;
}
@media (width < 893px) {
  .about-history__entry--left::before {
    right: auto;
    left: 1.5rem;
    width: 1.875rem;
  }
}
.about-history__entry--left::after {
  content: "";
  position: absolute;
  top: 8.375rem;
  top: 1.9375rem;
  right: -0.375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #C43043;
}
@media (width < 893px) {
  .about-history__entry--left::after {
    left: 1.25rem;
    right: auto;
  }
}
.about-history__entry--left .about-history__entry-year {
  text-align: right;
}
@media (width < 893px) {
  .about-history__entry--left .about-history__entry-year {
    text-align: left;
  }
}
.about-history__entry--left .about-history__entry-heading {
  text-align: right;
}
@media (width < 893px) {
  .about-history__entry--left .about-history__entry-heading {
    text-align: left;
  }
}

.about-history__entry--right {
  padding-right: 1.5rem;
}
@media (width < 576px) {
  .about-history__entry--right {
    padding-left: 3.75rem;
  }
}
.about-history__entry--right::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  position: absolute;
  top: 1.9375rem;
  left: 0;
  background-color: #C43043;
}
@media (width < 893px) {
  .about-history__entry--right::before {
    left: 1.5rem;
    width: 1.875rem;
  }
}
.about-history__entry--right::after {
  content: "";
  position: absolute;
  top: 1.625rem;
  left: -0.375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #C43043;
}
@media (width < 893px) {
  .about-history__entry--right::after {
    left: 1.25rem;
  }
}

.about-history__entry-year {
  font-family: "Baskerville", sans-serif;
  font-style: italic;
  font-size: 4.125rem;
  color: #E6BC7B;
  line-height: 1.1212121212;
}

.about-history__entry-heading {
  font-size: 1.375rem;
  font-weight: 500;
  color: #C43043;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  margin-top: 0.625rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 3px rgba(255, 255, 255, 0.5);
}

.about-history__entry-text {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 1.625rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.5);
}

.about-history__entry-img {
  margin-top: 1.875rem;
}
.about-history__entry-img img {
  aspect-ratio: 549/264;
}

.about-history__entry .c-btn {
  border-radius: 5px;
  margin-top: 1.875rem;
  max-width: 100%;
  padding: 2.0625rem 0;
}
@media (width < 893px) {
  .about-history__entry .c-btn {
    max-width: 33.75rem;
    margin: 2.5rem auto 0;
  }
}
.about-history__entry .c-btn .c-arrow {
  right: 1.5375rem;
}
@media (width < 1261px) {
  .about-history__entry .c-btn .c-arrow {
    right: 0.875rem;
  }
}
@media (width < 576px) {
  .about-history__entry .c-btn .c-arrow {
    right: 0.625rem;
  }
}

.about-history__btn-img {
  max-width: 3.125rem;
}
@media (width < 1261px) {
  .about-history__btn-img {
    max-width: 2.25rem;
  }
}
@media (width < 576px) {
  .about-history__btn-img {
    margin: 0 auto;
  }
}
.about-history__btn-img img {
  aspect-ratio: 50/71;
}

.about-history__entry .about-history__beer-btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 1.3125rem 1.875rem 1.125rem;
  gap: clamp(0.625rem, 1.7333333333vw, 1.625rem);
  margin-top: 2.3125rem;
}
@media (width < 1261px) {
  .about-history__entry .about-history__beer-btn {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 1.3125rem 2rem 1.125rem 1.5rem;
  }
}
@media (width < 576px) {
  .about-history__entry .about-history__beer-btn {
    grid-template-columns: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 1.5rem;
  }
}

.about-history__btn-text {
  display: grid;
  grid-template-columns: auto;
  gap: 0.28125rem;
}

.about-history__text-main {
  color: #E6BC7B;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media (width < 1261px) {
  .about-history__text-main {
    font-size: 0.8125rem;
  }
}

.about-history__text-sub {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.03em;
}
@media (width < 1261px) {
  .about-history__text-sub {
    font-size: 1rem;
  }
}

/*

about-now

***************************************/
.about-now {
  padding: 6.4375rem 0 7.5rem;
  position: relative;
}

.about-now__inner {
  max-width: 37.5rem;
  margin: 0 auto;
}
@media (width < 893px) {
  .about-now__inner {
    max-width: 90%;
  }
}

.about-now__label {
  color: #E6BC7B;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  text-align: center;
}

.about-now__heading {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  margin-top: 1.4375rem;
  text-align: center;
}

.about-now__text {
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 2.25rem;
}

.about-now__img {
  margin-top: 1.875rem;
}
.about-now__img img {
  aspect-ratio: 2/1;
}

/*

about-values

***************************************/
.about-values {
  padding: 7.375rem 0 8.71875rem;
}
@media (width < 893px) {
  .about-values {
    padding-bottom: 6.25rem;
  }
}

.about-values__inner {
  max-width: 63.375rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .about-values__inner {
    max-width: 90%;
  }
}

.about-values__lead {
  text-align: center;
  font-size: 1.25rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.9;
  margin-top: 4.75rem;
}
@media (width < 893px) {
  .about-values__lead {
    font-size: 1rem;
  }
}
@media (width < 576px) {
  .about-values__lead {
    margin-top: 2.5rem;
  }
}

.about-values__cycle {
  max-width: 43.9375rem;
  margin: 3.5rem auto 0;
}
@media (width < 893px) {
  .about-values__cycle {
    margin-top: 5.25rem;
  }
}
@media (width < 576px) {
  .about-values__cycle {
    margin-top: 2.5rem;
  }
}
.about-values__cycle img {
  aspect-ratio: 703/692;
}

.about-values__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .about-values__links {
    grid-template-columns: auto;
    max-width: 80%;
    margin: 7.5rem auto 0;
    gap: 2.5rem;
  }
}
@media (width < 576px) {
  .about-values__links {
    max-width: 100%;
    margin-top: 5rem;
    gap: 1.125rem;
  }
}

.about-values__link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}
.about-values__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
}
@media (hover: hover) {
  .about-values__link:hover::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .about-values__link:hover .about-values__link-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .about-values__link:hover .c-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .about-values__link:hover .about-values__link-text::before {
    -webkit-animation: borderScale 0.3s ease-in-out forwards;
            animation: borderScale 0.3s ease-in-out forwards;
  }
}
@media (hover: none) {
  .about-values__link:active::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .about-values__link:active .about-values__link-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .about-values__link:active .c-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .about-values__link:active .about-values__link-text::before {
    -webkit-animation: borderScale 0.3s ease-in-out forwards;
            animation: borderScale 0.3s ease-in-out forwards;
  }
}

.about-values__link-img {
  overflow: hidden;
}
.about-values__link-img img {
  aspect-ratio: 498/232;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.about-values__link-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #fff;
  position: absolute;
  bottom: 2.375rem;
  left: 1.85625rem;
  z-index: 1;
}
.about-values__link-label .c-arrow {
  background-color: #fff;
}

.about-values__link-label-text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  position: relative;
}
.about-values__link-label-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7.5px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/*

about-logo

***************************************/
.about-logo {
  padding-bottom: 9.0625rem;
}
@media (width < 893px) {
  .about-logo {
    padding-bottom: 6.25rem;
  }
}

.about-logo__inner {
  border-top: 1px solid #2F2725;
}

.about-logo__title {
  color: #2F2725;
  padding-top: 2.53125rem;
}

.about-logo__title-en {
  color: #2F2725;
}

.about-logo__body {
  display: grid;
  grid-template-columns: 1.21fr 1.2fr;
  gap: 3.4375rem;
  margin-top: 6rem;
}
@media (width < 893px) {
  .about-logo__body {
    margin-top: 3.75rem;
    grid-template-columns: auto;
  }
}

.about-logo__img {
  max-width: 37.8125rem;
  margin-top: 4px;
}
.about-logo__img img {
  aspect-ratio: 605/188;
}

.about-logo__text {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
}
.about-logo__text + .about-logo__text {
  margin-top: 2rem;
}

/*

slick-slider-loop

***************************************/
.slick-slider-loop__item img {
  height: 20.9375rem;
  width: 100%;
}
@media (width < 576px) {
  .slick-slider-loop__item img {
    height: 15rem;
  }
}

/*

about-regional

***************************************/
.about-regional {
  padding: 1.8125rem 0 9.375rem;
}
@media (width < 893px) {
  .about-regional {
    padding-bottom: 6.25rem;
  }
}

.about-regional__body {
  display: grid;
  grid-template-columns: 6.3fr 5.74fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
}
@media (width < 893px) {
  .about-regional__body {
    grid-template-columns: auto;
  }
}

.about-regional__title {
  color: #63A150;
  line-height: 1.5;
  margin-top: 0.625rem;
}

.about-regional__title-en {
  color: #63A150;
}

.about-regional__text {
  font-size: 1.25rem;
  color: #63A150;
  letter-spacing: 0.03em;
  line-height: 2.55;
  margin-top: 1.69375rem;
}

.about-regional__img {
  max-width: 35.875rem;
}
@media (width < 893px) {
  .about-regional__img {
    margin: 0 auto;
  }
}
.about-regional__img img {
  aspect-ratio: 1/1;
}

.about-regional__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.125rem, 4vw, 3.75rem);
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .about-regional__cards {
    grid-template-columns: 30rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5.5rem;
    gap: 5rem;
  }
}
@media (width < 576px) {
  .about-regional__cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3.75rem;
  }
}

.about-regional__card {
  display: grid;
  grid-template-rows: 1fr auto;
}
@media (width < 1261px) {
  .about-regional__card {
    grid-template-rows: 3fr 1fr;
  }
}
@media (width < 893px) {
  .about-regional__card {
    grid-template-rows: 1fr auto;
  }
}

.about-regional__card-wrap {
  background-color: rgba(235, 226, 205, 0.5);
  border-radius: 5px;
  padding: 2.1875rem 2.3125rem 1.9375rem;
  position: relative;
}
@media (width < 1261px) {
  .about-regional__card-wrap {
    padding: 1.5rem 1.5rem;
  }
}
@media (width < 893px) {
  .about-regional__card-wrap {
    padding: 2.1875rem 2.3125rem 1.9375rem;
  }
}
.about-regional__card-wrap::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 0.75rem solid #63A150;
}

.about-regional__card-heading {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  text-align: center;
}

.about-regional__card-img {
  max-width: 19.125rem;
  margin-top: 0.875rem;
}
@media (width < 893px) {
  .about-regional__card-img {
    max-width: 27.5rem;
    margin-top: 2.125rem;
  }
}
.about-regional__card-img img {
  aspect-ratio: 306/208;
}

.about-regional__card-text {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8666666667;
  margin-top: 0.875rem;
}
@media (width < 893px) {
  .about-regional__card-text {
    margin-top: 2.125rem;
  }
}

.about-regional__card-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #63A150;
  border-radius: 5px;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
  padding: 0.6875rem 2.3125rem;
  margin-top: 1.6875rem;
  text-align: center;
  min-height: 5.625rem;
}

/*

about-local

***************************************/
.about-local {
  padding-bottom: 11.25rem;
}
@media (width < 576px) {
  .about-local {
    padding-bottom: 6.25rem;
  }
}

.about-local__body {
  display: grid;
  grid-template-columns: 6.3fr 5.74fr;
  gap: clamp(1.25rem, 3.7333333333vw, 3.5rem);
  padding-top: 2.0625rem;
  border-top: 1px solid #2F2725;
}
@media (width < 893px) {
  .about-local__body {
    grid-template-columns: auto;
  }
}
.about-local__body:nth-child(3) {
  grid-template-columns: 6.1fr 6.05fr;
  border-top: none;
}

.about-local__title {
  color: #63A150;
  line-height: 1.4285714286;
}

.about-local__title-en {
  color: #63A150;
}

.about-local__text {
  font-size: 1.25rem;
  color: #63A150;
  letter-spacing: 0.03em;
  line-height: 2.55;
  margin-top: 1.69375rem;
}
@media (width < 1261px) {
  .about-local__text {
    font-size: 1rem;
    line-height: 2;
  }
}

.about-local__body02 {
  display: grid;
  grid-template-columns: 6.1fr 6.05fr;
  gap: 2.8125rem;
  padding-top: 3.75rem;
}
@media (width < 893px) {
  .about-local__body02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.about-local__imgs {
  display: grid;
  grid-template-columns: 2.52fr 3.46fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  max-height: 27rem;
}

.about-local__img-item img {
  aspect-ratio: 252/168;
  height: 100%;
}
.about-local__img-item--span {
  grid-column: 2;
  grid-row: 1/3;
}
.about-local__img-item--span img {
  aspect-ratio: 346/432;
}
.about-local__img-item:nth-of-type(3) img {
  aspect-ratio: 1/1;
}

.about-local__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9375rem;
  -ms-flex-line-pack: start;
      align-content: start;
}

.about-local__list-item {
  background-color: rgba(235, 226, 205, 0.5);
  border-radius: 5px;
  padding: 1.375rem 2.3125rem;
}

.about-local__list-heading {
  font-size: 1.125rem;
  font-weight: 500;
  color: #610E16;
  letter-spacing: 0.03em;
  line-height: 1.625;
}

.about-local__list-text {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8666666667;
  margin-top: 0.5rem;
}

/*************************************

Project：company.scss

***************************************/
/*

Section: company-message

***************************************/
.company-message {
  padding-top: 8rem;
}

.company-message__inner {
  max-width: 59.375rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .company-message__inner {
    max-width: 90%;
  }
}

.company-message__body {
  margin-top: 4.5rem;
}

.company-message__text {
  font-size: 1.125rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 2.3333333333;
}
.company-message__text + .company-message__text {
  margin-top: 2.5rem;
}

.company-message__sign {
  text-align: right;
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-top: 2.25rem;
}

/*

Section: company-philosophy

***************************************/
.company-philosophy {
  padding: 14.0625rem 0 7.0625rem;
}
@media (width < 1261px) {
  .company-philosophy {
    padding-top: 10rem;
    padding-bottom: 4.375rem;
  }
}

.company-philosophy__head {
  color: #C43043;
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  margin-top: 4.875rem;
  text-align: center;
}
@media (width < 1261px) {
  .company-philosophy__head {
    margin-top: 4.25rem;
  }
}

.company-philosophy__text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 2.25rem;
  text-align: center;
}

/*

Section: company-mission

***************************************/
.company-mission {
  padding-bottom: 6.25rem;
}

.company-mission__heading {
  padding-top: 2.1875rem;
  border-top: 1px solid #2F2725;
}

.company-mission__list {
  margin: 3.625rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.company-mission__item {
  display: grid;
  grid-template-columns: 1.3125rem 19.75rem 36.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 1261px) {
  .company-mission__item {
    grid-template-columns: 1.3125rem 19.75rem 1fr;
  }
}
.company-mission__item + .company-mission__item {
  margin-top: 2.125rem;
}

.company-mission__num {
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 1.6875rem;
  letter-spacing: 0.01em;
  line-height: 0.8709677419;
}

.company-mission__title {
  color: #610E16;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.45;
  margin-left: 1rem;
}
@media (width < 893px) {
  .company-mission__title {
    margin-left: 0.625rem;
  }
}

.company-mission__desc {
  font-size: 1.125rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  margin-left: 0.625rem;
}
@media (width < 893px) {
  .company-mission__desc {
    margin-left: 0;
    margin-top: 0.5rem;
    grid-column: 1/-1;
  }
}

.company-mission__note {
  margin-top: 3.625rem;
  background-color: rgba(235, 226, 205, 0.5);
  border-radius: 5px;
  padding: 2.375rem 5.9375rem;
}
@media (width < 893px) {
  .company-mission__note {
    margin-top: 2.25rem;
    padding: 1.5rem 2.5rem;
  }
}

.company-mission__note-text {
  font-size: 1.125rem;
  color: #382E2C;
  letter-spacing: 0.03em;
  line-height: 2;
  text-align: center;
}
/*

Section: company-vision

***************************************/
.company-vision {
  padding-bottom: 6.25rem;
}

.company-vision__heading {
  padding-top: 3.1875rem;
  border-top: 1px solid #2F2725;
}

.company-vision__head {
  color: #C43043;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  text-align: center;
  margin-top: 4.25rem;
}

.company-vision__img {
  margin-top: 3.75rem;
}

/*

Section: company-value

***************************************/
.company-value {
  padding-bottom: 7.5rem;
}
@media (width < 576px) {
  .company-value {
    padding-bottom: 5rem;
  }
}

.company-value__heading {
  padding-top: 2.1875rem;
  border-top: 1px solid #2F2725;
}

.company-value__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin: 3.65625rem auto 0;
  max-width: 60.625rem;
}
@media (width < 893px) {
  .company-value__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 576px) {
  .company-value__list {
    grid-template-columns: minmax(0, 19.375rem);
  }
}

.company-value__item {
  background-color: rgba(235, 226, 205, 0.5);
  text-align: center;
  border-radius: 5px;
  padding: 2.125rem 1.125rem 1.75rem;
  max-width: 19.375rem;
}
.company-value__item:nth-child(4) {
  grid-column: 1/3;
  -webkit-transform: translateX(9.375rem);
          transform: translateX(9.375rem);
}
@media (width < 1261px) {
  .company-value__item:nth-child(4) {
    -webkit-transform: translateX(48%);
            transform: translateX(48%);
    max-width: 48%;
  }
}
@media (width < 893px) {
  .company-value__item:nth-child(4) {
    grid-column: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    max-width: none;
  }
}
.company-value__item:nth-child(5) {
  grid-column: 3/4;
  -webkit-transform: translateX(-9.375rem);
          transform: translateX(-9.375rem);
}
@media (width < 1261px) {
  .company-value__item:nth-child(5) {
    -webkit-transform: translateX(-48%);
            transform: translateX(-48%);
  }
}
@media (width < 893px) {
  .company-value__item:nth-child(5) {
    grid-column: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.company-value__title {
  color: #610E16;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
}

.company-value__icon {
  max-width: 7.0625rem;
  margin: 1.125rem auto 0;
}

.company-value__desc {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8666666667;
  margin-top: 1.125rem;
}

/*

Section: company-overview

***************************************/
.company-overview__heading {
  border-top: 1px solid #2F2725;
  padding-top: 8.71875rem;
}
@media (width < 893px) {
  .company-overview__heading {
    padding-top: 6.25rem;
  }
}

.company-overview__table {
  margin: 3.625rem auto 0;
  max-width: 41.5625rem;
}

.company-overview__row {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  gap: 1.5625rem;
  border-bottom: 1px dotted #868686;
  padding: 1.21875rem;
}
@media (width < 893px) {
  .company-overview__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.company-overview__label {
  font-size: 0.9375rem;
  color: #610E16;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.company-overview__value {
  font-size: 0.9375rem;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.company-overview__map-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.625rem;
  color: #610E16;
  margin-left: 2.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: 3px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .company-overview__map-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .company-overview__map-link:active {
    opacity: 0.7;
  }
}
@media (width < 893px) {
  .company-overview__map-link {
    margin-left: 1rem;
  }
}

/*

Section: company-access

***************************************/
.company-access {
  padding-top: 9.375rem;
}
@media (width < 893px) {
  .company-access {
    padding-top: 6.25rem;
  }
}

.company-access__map {
  margin-top: 4.75rem;
}
.company-access__map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (width < 576px) {
  .company-access__map iframe {
    aspect-ratio: 3/2;
  }
}

.company-access__small {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 1.875rem;
}
@media (width < 893px) {
  .company-access__small {
    margin-top: 0.875rem;
  }
}

/*

Section: company-farm

***************************************/
.company-farm {
  padding: 10.5625rem 0 11.25rem;
}
@media (width < 893px) {
  .company-farm {
    padding-top: 6.25rem;
  }
}

.company-farm__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 5vw, 4.125rem);
  margin-top: 6.5rem;
}
@media (width < 576px) {
  .company-farm__list {
    grid-template-columns: minmax(0, 21.25rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.company-farm__item {
  background-color: rgba(235, 226, 205, 0.5);
}
.company-farm__item:nth-of-type(2) .company-farm__body {
  padding-left: 2.875rem;
}
@media (width < 893px) {
  .company-farm__item:nth-of-type(2) .company-farm__body {
    padding-left: 1.25rem;
  }
}

.company-farm__img {
  max-width: 31.625rem;
}
.company-farm__img img {
  aspect-ratio: 506/312;
}

.company-farm__body {
  padding: 1.5625rem 2.3125rem 3.0625rem 2.25rem;
  border-radius: 5px;
}
@media (width < 893px) {
  .company-farm__body {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.company-farm__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.company-farm__name {
  color: #610E16;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
}
@media (width < 893px) {
  .company-farm__name {
    font-size: 1rem;
  }
}

.company-farm__map-link {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1.375rem;
  color: #610E16;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #610E16;
  padding: 0.5625rem 0.625rem;
  min-width: 7.5rem;
  border-radius: 5px;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .company-farm__map-link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .company-farm__map-link:active {
    opacity: 0.8;
  }
}
@media (width < 893px) {
  .company-farm__map-link {
    gap: 0.625rem;
    min-width: 5.5rem;
    padding: 0.5rem;
  }
}

.company-farm__address {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 1.3125rem;
  position: relative;
}
.company-farm__address::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -1.5625rem;
  left: 0;
}

.company-farm__tel {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  margin-top: 2.9375rem;
}

/*************************************

Project：product.scss

***************************************/
/*

Section: product-mv

***************************************/
.product-mv {
  position: relative;
  overflow: hidden;
  background-color: #610E16;
  padding-top: 5.9375rem;
}
.product-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(47, 39, 37, 0.3);
  z-index: 1;
}

.product-mv__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product-mv__img img {
  aspect-ratio: 375/495;
  -o-object-position: center;
     object-position: center;
}

.product-mv__body {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 2;
  -webkit-transform: translateY(2.96875rem);
          transform: translateY(2.96875rem);
}

.product-mv__label {
  color: #CBC2C3;
  font-weight: 600;
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.125;
  text-transform: uppercase;
}

.product-mv__title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  margin-top: 0.5625rem;
}

/*

Section: product-list

***************************************/
.product-list {
  padding: 8.125rem 0;
}
@media (width < 893px) {
  .product-list {
    padding-top: 6.25rem;
  }
}

.product-list__list {
  display: grid;
  gap: 3.75rem;
}
@media (width < 1261px) {
  .product-list__list {
    max-width: 50rem;
    margin: 0 auto;
  }
}
@media (width < 576px) {
  .product-list__list {
    max-width: 100%;
  }
}

.product-list__item {
  display: grid;
  grid-template-columns: 3.49fr 5.65fr;
  gap: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  padding: 4.375rem 3.9375rem;
}
@media (width < 1261px) {
  .product-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (width < 576px) {
  .product-list__item {
    padding: 2.125rem 1.5rem;
  }
}

.product-list__tags {
  display: grid;
  grid-template-columns: repeat(3, -webkit-max-content);
  grid-template-columns: repeat(3, max-content);
  gap: 0.4375rem;
  margin-top: 1.8125rem;
}
@media (width < 576px) {
  .product-list__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.product-list__tag {
  display: inline-block;
  color: #610E16;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.4285714286;
  border: 1px solid #610E16;
  border-radius: 0.9375rem;
  padding: 0.21875rem 1.09375rem 0.21875rem 0.84375rem;
}

.product-list__tag-symbol {
  font-family: "Baskerville", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2142857143;
  margin-right: 0.40625rem;
}

.product-list__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 1.5625rem;
}

.product-list__btn {
  margin: 3.25rem auto 0;
  max-width: 15rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .product-list__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .product-list__btn:active {
    opacity: 0.8;
  }
}
.product-list__btn + .product-list__btn {
  margin-top: 0.9375rem;
}
@media (width < 893px) {
  .product-list__btn + .product-list__btn {
    margin-top: 1.5rem;
  }
}

.product-list__purchase {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  position: relative;
  background-color: #C43043;
  border-radius: 5px;
  padding: 1.1875rem 2.875rem 1.1875rem 1.1875rem;
  margin-top: 0.875rem;
  color: #fff;
}
.product-list__purchase .c-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-list__purchase-text {
  display: inline-block;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.product-list__imgs {
  display: grid;
  grid-template-columns: 3.04fr 2.51fr;
  grid-template-rows: auto auto;
  aspect-ratio: 4/3;
  gap: 0.625rem;
  max-width: 35.3125rem;
}
@media (width < 1261px) {
  .product-list__imgs {
    max-width: 41.5625rem;
  }
}
@media (width < 576px) {
  .product-list__imgs {
    max-width: 100%;
  }
}

.product-list__img {
  overflow: hidden;
}
.product-list__img img {
  height: 100%;
}
.product-list__img--full {
  grid-row: 1/3;
}

.product__lineup-beef {
  margin-top: 6.875rem;
}

/*************************************

Project：tahara-pork.scss

***************************************/
/*

Section: tahara-feature

***************************************/
.tahara-feature {
  padding: 7.5rem 0 9.375rem;
}

.tahara-feature__heading {
  font-size: 1.625rem;
  line-height: 1.4230769231;
  letter-spacing: 0.03em;
  text-align: center;
}

.tahara-feature__wrap {
  background-color: #fff;
  border-radius: 5px;
  padding: 4.375rem 8.75rem;
  margin-top: 3.75rem;
}
@media (width < 1261px) {
  .tahara-feature__wrap {
    padding: 2.375rem 6.25rem;
  }
}
@media (width < 893px) {
  .tahara-feature__wrap {
    padding: 2.5rem;
  }
}

.tahara-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 23.75rem);
  gap: 0.9375rem 2.5rem;
}
@media (width < 1261px) {
  .tahara-feature__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 893px) {
  .tahara-feature__list {
    grid-template-columns: 1fr;
  }
}

.tahara-feature__item {
  position: relative;
  padding: 0 0 0.9375rem 2.65625rem;
  color: #610E16;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  border-bottom: 1px dotted #868686;
}
.tahara-feature__item::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background-color: #D97C86;
  border-radius: 50%;
}

.tahara-feature__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  background-color: #610E16;
  border-radius: 5px;
  padding: 1.625rem 1.5625rem 1.625rem 2.1875rem;
  max-width: 33.125rem;
  margin: 3.125rem auto 0;
  color: #fff;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tahara-feature__cta .c-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (hover: hover) {
  .tahara-feature__cta:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .tahara-feature__cta:active {
    opacity: 0.8;
  }
}

.tahara-feature__cta-text {
  display: grid;
  grid-template-columns: 1fr;
}

.tahara-feature__cta-sub {
  color: #E6BC7B;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.tahara-feature__cta-main {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  margin-top: 0.40625rem;
}

.tahara-feature__name {
  border: 1px solid #2F2725;
  border-radius: 5px;
  padding: 3.71875rem 3.6875rem;
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .tahara-feature__name {
    padding: 2.125rem;
  }
}

.tahara-feature__name-heading {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: center;
}
@media (width < 893px) {
  .tahara-feature__name-heading {
    font-size: 1.125rem;
  }
}

.tahara-feature__heading-large {
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media (width < 893px) {
  .tahara-feature__heading-large {
    font-size: 1.5rem;
  }
}

.tahara-feature__name-body {
  display: grid;
  grid-template-columns: 5.94fr 3.17fr;
  gap: 3.125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 2rem;
}
@media (width < 893px) {
  .tahara-feature__name-body {
    grid-template-columns: 1fr;
  }
}

.tahara-feature__name-text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
}

.tahara-feature__name-imgs {
  display: grid;
  gap: 1.4375rem;
}

.tahara-feature__name-img {
  max-width: 19.8125rem;
}
@media (width < 893px) {
  .tahara-feature__name-img {
    max-width: 100%;
  }
}
.tahara-feature__name-img img {
  aspect-ratio: 317/136;
}
.tahara-feature__name-img:nth-of-type(2) img {
  aspect-ratio: 316/121;
}

/*

Section: tahara-particular

***************************************/
.tahara-particular {
  background-color: rgba(235, 226, 205, 0.5);
  padding: 8.125rem 0;
}

.tahara-particular__heading-title {
  margin-top: -0.25rem;
}

.tahara-particular__title-large {
  font-size: 2.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4411764706;
}

.tahara-particular__list {
  display: grid;
  margin-top: 4.25rem;
}

.tahara-particular__item {
  display: grid;
  grid-template-columns: 0.7fr 4.82fr 5.21fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2F2725;
}
.tahara-particular__item + .tahara-particular__item {
  padding-top: 2.5rem;
}
.tahara-particular__item:nth-of-type(3) {
  grid-template-columns: auto;
  grid-template-rows: auto auto;
}

.tahara-particular__item-wrap {
  display: grid;
  grid-template-columns: 0.7fr 4.82fr 5.21fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tahara-particular__num {
  font-family: "Baskerville", sans-serif;
  font-size: 9.625rem;
  font-style: italic;
  line-height: 1.1298701299;
  letter-spacing: 0.01em;
  color: #FFFAF0;
}
@media (width < 893px) {
  .tahara-particular__num {
    font-size: 7.75rem;
    line-height: 1;
  }
}
@media (width < 576px) {
  .tahara-particular__num {
    font-size: 6.25rem;
  }
}

.tahara-particular__body {
  margin-left: 1.875rem;
}
@media (width < 893px) {
  .tahara-particular__body {
    grid-column: 2/6;
    margin-left: 1rem;
  }
}

.tahara-particular__tag {
  display: inline-block;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  border: 1px solid #610E16;
  border-radius: 0.875rem;
  padding: 0.1875rem 0.875rem;
  text-transform: uppercase;
}

.tahara-particular__title {
  color: #C43043;
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  font-weight: 500;
  margin-top: 0.875rem;
}

.tahara-particular__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 0.9375rem;
}
@media (width < 893px) {
  .tahara-particular__text {
    grid-column: 2/6;
  }
}

.tahara-particular__img-wrap {
  max-width: 29.4375rem;
  margin-left: 3rem;
}
@media (width < 893px) {
  .tahara-particular__img-wrap {
    max-width: 100%;
    margin-top: 2.5rem;
    grid-column: 2/4;
    margin-left: 1rem;
  }
}
.tahara-particular__img-wrap img {
  aspect-ratio: 471/297;
}

.tahara-particular__sub {
  display: grid;
  grid-template-columns: 6.58fr 1.33fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 1.875rem 4.375rem;
  background-color: #fff;
  border-radius: 5px;
  max-width: 90%;
  margin-left: auto;
}
@media (width < 1261px) {
  .tahara-particular__sub {
    padding: 1.875rem 2.5rem;
  }
}
@media (width < 893px) {
  .tahara-particular__sub {
    grid-template-columns: 1fr;
    margin-left: 5rem;
  }
}
@media (width < 576px) {
  .tahara-particular__sub {
    margin-left: 4.125rem;
    padding: 1.5rem;
  }
}

.tahara-particular__sub-heading {
  color: #CB7C00;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  font-weight: 500;
}

.tahara-particular__sub-text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 1.375rem;
}

.tahara-particular__sub-imgs {
  display: grid;
  grid-template-columns: auto;
}
@media (width < 893px) {
  .tahara-particular__sub-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tahara-particular__sub-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 8.3125rem;
  height: 100%;
}
@media (width < 893px) {
  .tahara-particular__sub-img {
    max-width: 100%;
  }
}
.tahara-particular__sub-img img {
  aspect-ratio: 133/100;
}

/*

Section: tahara-pork-bg-img

***************************************/
.tahara-pork-bg-img img {
  aspect-ratio: 1500/495;
}
@media (width < 893px) {
  .tahara-pork-bg-img img {
    aspect-ratio: 3/2;
  }
}

/*

Section: tahara-recipe

***************************************/
.tahara-recipe {
  padding: 5.84375rem 0 12.3125rem;
}

.tahara-recipe__body {
  display: grid;
  grid-template-columns: 3.67fr 3.5fr;
  gap: clamp(1.875rem, 4vw, 3.75rem);
  margin: 4.875rem auto 0;
  max-width: 48.75rem;
}
@media (width < 576px) {
  .tahara-recipe__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.tahara-recipe__left {
  display: grid;
  gap: 2.1875rem;
}

.tahara-recipe__block + .tahara-recipe__block {
  margin-top: 3.75rem;
}
@media (width < 576px) {
  .tahara-recipe__block + .tahara-recipe__block {
    margin-top: 1.25rem;
  }
}

.tahara-recipe__block-heading {
  color: #C43043;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  font-weight: 500;
}

.tahara-recipe__list {
  display: grid;
  margin-top: 1.125rem;
  padding: 0.625rem 0.625rem 0.625rem 1.75rem;
  background-color: rgba(235, 226, 205, 0.5);
  border-radius: 5px;
}
@media (width < 576px) {
  .tahara-recipe__list {
    padding-top: 1.25rem;
    padding-right: 1.5rem;
    padding-bottom: 1.25rem;
  }
}

.tahara-recipe__item {
  position: relative;
  padding-left: 1.375rem;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
}
.tahara-recipe__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  background-color: #D97C86;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
}

.tahara-recipe__item-text {
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-top: 0.9375rem;
}

.tahara-recipe__img-wrap {
  max-width: 21.875rem;
}
@media (width < 576px) {
  .tahara-recipe__img-wrap {
    max-width: 100%;
  }
}
.tahara-recipe__img-wrap img {
  aspect-ratio: 350/353;
}

.tahara-recipe__appeal {
  border: 1px solid #2F2725;
  border-radius: 5px;
  padding: 3.4375rem 3.75rem 3.5625rem;
  margin: 3.75rem auto 0;
  max-width: 55.625rem;
}
@media (width < 893px) {
  .tahara-recipe__appeal {
    padding: 2.5rem;
  }
}
@media (width < 576px) {
  .tahara-recipe__appeal {
    padding: 1.5rem;
  }
}

.tahara-recipe__appeal-heading {
  color: #610E16;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  font-weight: 500;
  text-align: center;
}

.tahara-recipe__restaurant {
  display: grid;
  grid-template-columns: 2.75fr 4.52fr;
  gap: 2.6875rem;
  margin-top: 2.5rem;
}
@media (width < 893px) {
  .tahara-recipe__restaurant {
    grid-template-columns: 1fr;
  }
}

.tahara-recipe__restaurant-img-wrap {
  max-width: 17.1875rem;
}
@media (width < 893px) {
  .tahara-recipe__restaurant-img-wrap {
    max-width: 100%;
  }
}
.tahara-recipe__restaurant-img-wrap img {
  aspect-ratio: 275/185;
}

.tahara-recipe__restaurant-text {
  color: #2F2725;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: -5px;
}

.tahara-recipe__restaurant-accent {
  color: #C43043;
  font-weight: 500;
}

.tahara-recipe__note {
  background-color: #fff;
  border-radius: 5px;
  padding: 2.25rem 2.9375rem 2rem 4.3125rem;
  margin-top: 1.5625rem;
}
@media (width < 893px) {
  .tahara-recipe__note {
    padding: 1.5rem;
  }
}
@media (width < 576px) {
  .tahara-recipe__note {
    padding: 1.125rem;
  }
}

.tahara-recipe__note-heading {
  color: #CB7C00;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  font-weight: 500;
}

.tahara-recipe__note-text {
  color: #2F2725;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 0.5625rem;
}

/*

Section: tahara-restaurant

***************************************/
.tahara-restaurant {
  padding-bottom: 11.25rem;
}

.tahara-restaurant__body {
  display: grid;
  grid-template-columns: 6.3fr 6.01fr;
  gap: 1.8125rem;
  padding-top: 2.5rem;
  border-top: 1px solid #2F2725;
}
@media (width < 1261px) {
  .tahara-restaurant__body {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.tahara-restaurant__heading {
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: 500;
}

.tahara-restaurant__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 2.0625rem;
}

.tahara-restaurant__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 3.4375rem;
  max-width: 29.4375rem;
  gap: 1.25rem;
}
@media (width < 1261px) {
  .tahara-restaurant__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
  }
}
.tahara-restaurant__links .c-contact-card:first-of-type {
  background-color: #261C1A;
}
.tahara-restaurant__links .c-contact-card:first-of-type .c-contact-card__img::after {
  display: none;
}

.tahara-restaurant__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .tahara-restaurant__link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .tahara-restaurant__link:active {
    opacity: 0.8;
  }
}

.tahara-restaurant__links .c-contact-card {
  grid-template-columns: 9.4375rem auto;
}

.tahara-restaurant__links .c-contact-card__img img {
  aspect-ratio: 151/135;
}

.tahara-restaurant__links .c-contact-card__text {
  font-size: 1.25rem;
  line-height: 1.45;
}
@media (width < 576px) {
  .tahara-restaurant__links .c-contact-card__text {
    font-size: 0.875rem;
  }
}

.tahara-restaurant__links .c-contact-card__badge {
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (width < 576px) {
  .tahara-restaurant__links .c-contact-card__badge {
    font-size: 1rem;
  }
}

.tahara-restaurant__map-img img {
  aspect-ratio: 1/1;
}

.tahara-restaurant__map-text {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.4166666667;
  text-align: right;
}

.tahara-restaurant__link {
  display: grid;
  grid-template-columns: 2.69fr 3.49fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #261C1A;
  color: #fff;
  margin: 11.25rem auto 0;
  max-width: 44.8125rem;
  border-radius: 5px;
}
@media (width < 576px) {
  .tahara-restaurant__link {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
}

.tahara-restaurant__link-img-wrap {
  max-width: 16.8125rem;
}
@media (width < 576px) {
  .tahara-restaurant__link-img-wrap {
    grid-column: 1/-1;
    max-width: 100%;
  }
}
.tahara-restaurant__link-img-wrap img {
  aspect-ratio: 475/330;
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}

.tahara-restaurant__link-body {
  padding-left: 1.875rem;
}
@media (width < 576px) {
  .tahara-restaurant__link-body {
    padding: 1rem 0 1rem 1rem;
  }
}

.tahara-restaurant__link-accent {
  color: #E6BC7B;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.5333333333;
}

.tahara-restaurant__link-text {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  margin-top: 0.9375rem;
}

.tahara-restaurant__link .c-arrow {
  margin-left: auto;
  margin-right: 1.875rem;
}
@media (width < 576px) {
  .tahara-restaurant__link .c-arrow {
    margin-right: 1rem;
  }
}

/*************************************

Project：dairoku.scss

***************************************/
/*

Section: dairoku-about

***************************************/
.dairoku-about__emphasis {
  margin-top: 4.75rem;
  line-height: 1.8181818182;
}

.dairoku-about__text {
  margin-top: 1.75rem;
}

/*

Section: dairoku-feature

***************************************/
.dairoku-feature {
  padding: 7.5rem 0 9.375rem;
}

.dairoku-feature__heading {
  font-size: 1.625rem;
  line-height: 1.4230769231;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 500;
}

.dairoku-feature__wrap {
  background-color: #fff;
  border-radius: 5px;
  padding: 4.375rem 8.75rem;
  margin-top: 3.75rem;
}
@media (width < 1261px) {
  .dairoku-feature__wrap {
    padding: 2.375rem 2.5rem;
  }
}
@media (width < 893px) {
  .dairoku-feature__wrap {
    padding: 2.5rem;
  }
}

.dairoku-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 23.75rem);
  gap: 0.9375rem 2.5rem;
}
@media (width < 1261px) {
  .dairoku-feature__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 893px) {
  .dairoku-feature__list {
    grid-template-columns: 1fr;
  }
}

.dairoku-feature__item {
  position: relative;
  padding: 0 0 0.9375rem 2.65625rem;
  color: #610E16;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  border-bottom: 1px dotted #868686;
}
.dairoku-feature__item::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background-color: #D97C86;
  border-radius: 50%;
}

.dairoku-feature__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #610E16;
  border-radius: 5px;
  padding: 1.625rem 1.5625rem 1.625rem 2.1875rem;
  max-width: 27.125rem;
  margin: 3.125rem auto 0;
  color: #fff;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.dairoku-feature__cta .c-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (hover: hover) {
  .dairoku-feature__cta:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .dairoku-feature__cta:active {
    opacity: 0.8;
  }
}

.dairoku-feature__cta-text {
  display: grid;
  grid-template-columns: 1fr;
}

.dairoku-feature__cta-sub {
  color: #E6BC7B;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.dairoku-feature__cta-main {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  margin-top: 0.40625rem;
}

.dairoku-feature__name {
  border: 1px solid #2F2725;
  border-radius: 5px;
  padding: 3.71875rem 3.6875rem;
  margin-top: 6.25rem;
}
@media (width < 1261px) {
  .dairoku-feature__name {
    padding: 2.5rem 2.5rem;
  }
}
@media (width < 893px) {
  .dairoku-feature__name {
    padding: 1.875rem 1.5rem;
  }
}

.dairoku-feature__name-heading {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: center;
}
@media (width < 893px) {
  .dairoku-feature__name-heading {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.dairoku-feature__heading-large {
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media (width < 893px) {
  .dairoku-feature__heading-large {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.dairoku-feature__name-body {
  display: grid;
  grid-template-columns: 5.94fr 3.17fr;
  gap: 3.125rem;
  margin-top: 2rem;
}
@media (width < 893px) {
  .dairoku-feature__name-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.dairoku-feature__name-text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
}

.dairoku-feature__name-img-wrap {
  max-width: 19.8125rem;
}
@media (width < 893px) {
  .dairoku-feature__name-img-wrap {
    max-width: 100%;
  }
}
.dairoku-feature__name-img-wrap img {
  aspect-ratio: 317/298;
}

/*

Section: dairoku-particular

***************************************/
.dairoku-particular {
  background-color: rgba(235, 226, 205, 0.5);
  padding: 6.25rem 0 8.75rem;
}
@media (width < 893px) {
  .dairoku-particular {
    padding: 3.75rem 0 5rem;
  }
}

.dairoku-particular__heading-title {
  margin-top: -0.25rem;
}

.dairoku-particular__title-large {
  font-size: 2.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4411764706;
}
@media (width < 893px) {
  .dairoku-particular__title-large {
    font-size: 1.625rem;
    line-height: 1.4615384615;
  }
}

.dairoku-particular__list {
  display: grid;
  margin-top: 4.5rem;
}

.dairoku-particular__item {
  display: grid;
  grid-template-columns: 0.7fr 4.82fr 5.21fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2F2725;
}
.dairoku-particular__item + .dairoku-particular__item {
  padding-top: 2.5rem;
}
.dairoku-particular__item:last-of-type {
  border-bottom: none;
}

.dairoku-particular__num {
  font-family: "Baskerville", sans-serif;
  font-size: 9.625rem;
  font-style: italic;
  line-height: 1.1298701299;
  letter-spacing: 0.01em;
  color: #FFFAF0;
}
@media (width < 893px) {
  .dairoku-particular__num {
    font-size: 7.75rem;
    line-height: 1;
  }
}
@media (width < 576px) {
  .dairoku-particular__num {
    font-size: 6.25rem;
  }
}

.dairoku-particular__body {
  margin-left: 1.875rem;
}
@media (width < 893px) {
  .dairoku-particular__body {
    grid-column: 2/6;
    margin-left: 1rem;
  }
}

.dairoku-particular__tag {
  display: inline-block;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  border: 1px solid #610E16;
  border-radius: 0.875rem;
  padding: 0.1875rem 0.875rem;
  text-transform: uppercase;
}

.dairoku-particular__title {
  color: #C43043;
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  font-weight: 500;
  margin-top: 0.875rem;
}
@media (width < 893px) {
  .dairoku-particular__title {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.dairoku-particular__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 0.9375rem;
}

.dairoku-particular__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-left: 3rem;
  align-self: center;
}
@media (width < 893px) {
  .dairoku-particular__imgs {
    grid-column: 2/4;
    margin-left: 1rem;
    margin-top: 2.5rem;
  }
}
.dairoku-particular__imgs .dairoku-particular__img-wrap {
  margin-left: 0;
  max-width: none;
}
@media (width < 893px) {
  .dairoku-particular__imgs .dairoku-particular__img-wrap {
    margin-top: 0;
    grid-column: auto;
    margin-left: 0;
  }
}

.dairoku-particular__img-wrap {
  max-width: 29.4375rem;
  margin-left: 3rem;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (width < 893px) {
  .dairoku-particular__img-wrap {
    max-width: 100%;
    margin-top: 2.5rem;
    grid-column: 2/4;
    margin-left: 1rem;
  }
}
.dairoku-particular__img-wrap img {
  aspect-ratio: 471/297;
}

/*

Section: dairoku-bg-img

***************************************/
.dairoku-bg-img img {
  aspect-ratio: 1500/520;
}

/*

Section: dairoku-lineup

***************************************/
.dairoku-lineup {
  padding: 6.25rem 0 10rem;
}
@media (width < 893px) {
  .dairoku-lineup {
    padding: 3.75rem 0 6.25rem;
  }
}

.dairoku-lineup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2.8125rem;
  margin-top: 4.6875rem;
}
@media (width < 1261px) {
  .dairoku-lineup__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 893px) {
  .dairoku-lineup__list {
    gap: 1.25rem;
  }
}
@media (width < 576px) {
  .dairoku-lineup__list {
    grid-template-columns: 1fr;
  }
}

.dairoku-lineup__item {
  background-color: rgba(235, 226, 205, 0.5);
  border-radius: 5px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .dairoku-lineup__item:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .dairoku-lineup__item:active {
    opacity: 0.7;
  }
}

.dairoku-lineup__link {
  display: grid;
  grid-template-columns: 1.79fr 1.67fr 0.43fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dairoku-lineup__img-wrap {
  max-width: 11.1875rem;
}
@media (width < 576px) {
  .dairoku-lineup__img-wrap {
    max-width: none;
  }
}
.dairoku-lineup__img-wrap img {
  aspect-ratio: 179/166;
}

.dairoku-lineup__text {
  color: #610E16;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  font-weight: 500;
  padding-left: 1.25rem;
}
@media (width < 893px) {
  .dairoku-lineup__text {
    font-size: 1rem;
    padding-left: 0.875rem;
  }
}
@media (width < 576px) {
  .dairoku-lineup__text {
    font-size: 0.9375rem;
    line-height: 1.4666666667;
  }
}

.dairoku-lineup__item .c-arrow {
  margin-right: 1.875rem;
  margin-left: auto;
}

.dairoku-lineup__cta {
  display: grid;
  grid-template-columns: 18.25rem 4.04fr 0.43fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #261C1A;
  border-radius: 5px;
  margin: 6.875rem auto 0;
  color: #fff;
  max-width: 44.8125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .dairoku-lineup__cta {
    grid-template-columns: auto 1fr auto;
    max-width: 90%;
  }
}
@media (width < 576px) {
  .dairoku-lineup__cta {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
}
@media (hover: hover) {
  .dairoku-lineup__cta:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .dairoku-lineup__cta:active {
    opacity: 0.7;
  }
}

.dairoku-lineup__cta-img-wrap {
  max-width: 16.8125rem;
}
@media (width < 893px) {
  .dairoku-lineup__cta-img-wrap {
    max-width: 11.25rem;
  }
}
@media (width < 576px) {
  .dairoku-lineup__cta-img-wrap {
    grid-column: 1/-1;
    overflow: hidden;
    max-width: 100%;
  }
}
.dairoku-lineup__cta-img-wrap img {
  aspect-ratio: 269/216;
}
@media (width < 576px) {
  .dairoku-lineup__cta-img-wrap img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.dairoku-lineup__cta-text {
  display: grid;
  grid-template-columns: 1fr;
  padding-left: 0.625rem;
}
@media (width < 893px) {
  .dairoku-lineup__cta-text {
    padding-left: 1rem;
  }
}
@media (width < 576px) {
  .dairoku-lineup__cta-text {
    padding: 1.5rem;
  }
}

.dairoku-lineup__cta-sub {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.5333333333;
  color: #E6BC7B;
}

.dairoku-lineup__cta-main {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  margin-top: 1.0625rem;
}
@media (width < 893px) {
  .dairoku-lineup__cta-main {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.dairoku-lineup__cta .c-arrow {
  margin-left: auto;
  margin-right: 1.875rem;
}

/*

Section: dairoku-purchase

***************************************/
.dairoku-purchase {
  padding-bottom: 11.25rem;
}
@media (width < 893px) {
  .dairoku-purchase {
    padding-bottom: 6.25rem;
  }
}

.dairoku-purchase__inner {
  padding-top: 5rem;
  border-top: 1px solid #2F2725;
}
@media (width < 893px) {
  .dairoku-purchase__inner {
    padding-top: 3.125rem;
  }
}

.dairoku-purchase__lead {
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  text-align: center;
  margin-top: 4.875rem;
  color: #C43043;
  font-weight: 500;
}
@media (width < 893px) {
  .dairoku-purchase__lead {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    margin-top: 2.5rem;
  }
}

.dairoku-purchase__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 3.75rem auto 0;
  max-width: 63.25rem;
  background-color: rgba(235, 226, 205, 0.5);
}
@media (width < 893px) {
  .dairoku-purchase__card {
    grid-template-columns: 1fr auto;
  }
}
@media (width < 576px) {
  .dairoku-purchase__card {
    grid-template-columns: 1fr;
  }
}

.dairoku-purchase__img-wrap {
  max-width: 31.625rem;
}
@media (width < 893px) {
  .dairoku-purchase__img-wrap {
    max-width: 100%;
  }
}
.dairoku-purchase__img-wrap img {
  aspect-ratio: 506/312;
}
@media (width < 893px) {
  .dairoku-purchase__img-wrap img {
    aspect-ratio: auto;
    height: 100%;
  }
}
@media (width < 576px) {
  .dairoku-purchase__img-wrap img {
    aspect-ratio: 506/312;
    height: auto;
  }
}

.dairoku-purchase__body {
  padding: 2.15625rem 2.3625rem 1rem 2.25rem;
  border-radius: 5px;
  position: relative;
}
@media (width < 1261px) {
  .dairoku-purchase__body {
    padding: 1.5rem 2.125rem 1.5rem 1rem;
  }
}

.dairoku-purchase__name {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  font-weight: 500;
  color: #610E16;
}
@media (width < 893px) {
  .dairoku-purchase__name {
    font-size: 1rem;
  }
}

.dairoku-purchase__info {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.875;
  margin-top: 1.5625rem;
}
@media (width < 893px) {
  .dairoku-purchase__info {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 0.75rem;
  }
}

.dairoku-purchase__link {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-top: 1.75rem;
  color: #610E16;
}
@media (width < 893px) {
  .dairoku-purchase__link {
    margin-top: 1rem;
    gap: 0.625rem;
  }
}

.dairoku-purchase__map-link {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1.375rem;
  color: #610E16;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #610E16;
  padding: 0.5625rem 0.625rem;
  max-width: 7.5rem;
  border-radius: 5px;
  max-height: 2.4375rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 2.15625rem;
  right: 2.3625rem;
}
@media (width < 1261px) {
  .dairoku-purchase__map-link {
    font-size: 0.875rem;
    max-width: 4.25rem;
    gap: 0.5rem;
  }
}
@media (width < 893px) {
  .dairoku-purchase__map-link {
    top: 1.5rem;
    right: 1rem;
  }
}
@media (hover: hover) {
  .dairoku-purchase__map-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .dairoku-purchase__map-link:active {
    opacity: 0.7;
  }
}

.dairoku-purchase__online {
  margin-top: 6.875rem;
}
@media (width < 893px) {
  .dairoku-purchase__online {
    margin-top: 3.75rem;
  }
}

.dairoku-purchase__online-heading {
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.8181818182;
  font-weight: 500;
  color: #C43043;
  text-align: center;
}
@media (width < 893px) {
  .dairoku-purchase__online-heading {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }
}

.dairoku-purchase__online-link {
  display: grid;
  grid-template-columns: 16.8125rem 4.04fr 0.43fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #E6C992;
  border-radius: 5px;
  max-width: 44.8125rem;
  margin: 3.5rem auto 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .dairoku-purchase__online-link {
    grid-template-columns: 2.69fr 3.49fr 1fr;
  }
}
@media (width < 576px) {
  .dairoku-purchase__online-link {
    grid-template-columns: 0.8fr 1fr 1.5rem;
  }
}
@media (hover: hover) {
  .dairoku-purchase__online-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .dairoku-purchase__online-link:active {
    opacity: 0.7;
  }
}

.dairoku-purchase__online-img-wrap {
  max-width: 16.8125rem;
}
.dairoku-purchase__online-img-wrap img {
  aspect-ratio: 269/216;
}

.dairoku-purchase__online-link-text {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: #2F2725;
  padding-left: 1.875rem;
}
@media (width < 893px) {
  .dairoku-purchase__online-link-text {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (width < 576px) {
  .dairoku-purchase__online-link-text {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.dairoku-purchase__online-link .c-arrow {
  margin-right: 1.875rem;
  margin-left: auto;
}

/*************************************

Project：tahara-pork.scss

***************************************/
/*

Section: others-craft-beer

***************************************/
.others-craft-beer {
  padding-top: 8.125rem;
}

.others-craft-beer__emphasis {
  margin-top: 0;
}

.others-craft-beer__title {
  font-size: 1.625rem;
  letter-spacing: 0.03em;
  line-height: 1.4230769231;
  font-weight: 500;
  text-align: center;
  margin-top: 0.6875rem;
}

/*

Section: others-craft-beer-feature

***************************************/
.others-craft-beer-feature {
  padding-top: 8.6875rem;
}
@media (width < 893px) {
  .others-craft-beer-feature {
    padding-top: 5rem;
  }
}

.others-craft-beer-feature__heading {
  font-size: 1.625rem;
  letter-spacing: 0.03em;
  line-height: 1.4230769231;
  font-weight: 500;
  text-align: center;
}
@media (width < 893px) {
  .others-craft-beer-feature__heading {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.others-craft-beer-feature__list {
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .others-craft-beer-feature__list {
    margin-top: 2.5rem;
  }
}

.others-craft-beer-feature__item {
  display: grid;
  grid-template-columns: 14.375rem 1fr;
  gap: 2.5rem;
  padding: 2.5rem 3.75rem;
  background-color: rgba(235, 226, 205, 0.5);
}
.others-craft-beer-feature__item + .others-craft-beer-feature__item {
  margin-top: 1.875rem;
}
@media (width < 893px) {
  .others-craft-beer-feature__item {
    grid-template-columns: 1fr;
    padding: 1.875rem;
  }
}
@media (width < 576px) {
  .others-craft-beer-feature__item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .others-craft-beer-feature__item + .others-craft-beer-feature__item {
    margin-top: 1.25rem;
  }
}

.others-craft-beer-feature__img-wrap {
  max-width: 14.375rem;
}
.others-craft-beer-feature__img-wrap img {
  aspect-ratio: 1/1;
}
@media (width < 576px) {
  .others-craft-beer-feature__img-wrap {
    margin: 0 auto;
  }
}

.others-craft-beer-feature__emphasis {
  text-align: left;
  margin-top: 0;
}

.others-craft-beer-feature__item:last-of-type .others-craft-beer-feature__emphasis {
  margin-top: 4px;
}

.others-craft-beer-feature__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 0.75rem;
}

.others-craft-beer-feature__sub-img-wrap {
  max-width: 5.875rem;
  margin-top: 1.25rem;
}
.others-craft-beer-feature__sub-img-wrap img {
  aspect-ratio: 1/1;
}

/*

Section: others-craft-beer-story

***************************************/
.others-craft-beer-story {
  background-color: #fff;
  border-radius: 5px;
  padding: 3.75rem;
  margin: 7.5rem auto 0;
  max-width: 67.5625rem;
}
@media (width < 1261px) {
  .others-craft-beer-story {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .others-craft-beer-story {
    padding: 2.5rem;
    margin-top: 5rem;
  }
}
@media (width < 576px) {
  .others-craft-beer-story {
    padding: 1.5rem;
    margin-top: 3.75rem;
  }
}

.others-craft-beer-story__heading {
  font-size: 1.625rem;
  letter-spacing: 0.03em;
  line-height: 1.3846153846;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.others-craft-beer-story__heading::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 50%;
  bottom: -1.0625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width < 893px) {
  .others-craft-beer-story__heading {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.others-craft-beer-story__emphasis {
  text-align: center;
  margin-top: 4.875rem;
}
@media (width < 893px) {
  .others-craft-beer-story__emphasis {
    margin-top: 3.125rem;
  }
}

.others-craft-beer-story__block {
  display: grid;
  grid-template-columns: 5.26fr 3.95fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (width < 1261px) {
  .others-craft-beer-story__block {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.others-craft-beer-story__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
}
@media (width < 576px) {
  .others-craft-beer-story__text {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
  }
}

.others-craft-beer-story__youtube {
  max-width: 24.6875rem;
  aspect-ratio: 395/222;
  margin-top: 4px;
}
.others-craft-beer-story__youtube iframe {
  width: 100%;
  height: 100%;
}
@media (width < 1261px) {
  .others-craft-beer-story__youtube {
    max-width: 100%;
    margin-top: 0;
  }
}

.others-craft-beer-story__link {
  margin-top: 3.375rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .others-craft-beer-story__link {
    margin-top: 2.5rem;
  }
}
@media (hover: hover) {
  .others-craft-beer-story__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .others-craft-beer-story__link:active {
    opacity: 0.7;
  }
}

/*

Component: others-heading

***************************************/
.others-heading__label {
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  color: #C43043;
  font-weight: 500;
}
@media (width < 893px) {
  .others-heading__label {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.others-heading__title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4230769231;
  margin-top: 0.625rem;
  position: relative;
}
.others-heading__title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 1.25rem;
  height: 1px;
  background-color: #000;
}
@media (width < 893px) {
  .others-heading__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

/*

Section: others-curry

***************************************/
.others-curry {
  background-color: #fff;
  border-radius: 5px;
  padding: 3.75rem;
  margin: 8.4375rem auto 0;
  max-width: 67.5625rem;
}
@media (width < 1261px) {
  .others-curry {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .others-curry {
    padding: 2.5rem;
    margin-top: 5rem;
    max-width: 90%;
  }
}
@media (width < 576px) {
  .others-curry {
    padding: 1.5rem;
    margin-top: 3.75rem;
  }
}

.others-curry__inner {
  display: grid;
  grid-template-columns: 1fr 21.125rem;
  gap: 3.3125rem;
}
@media (width < 893px) {
  .others-curry__inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.others-curry__body {
  padding-left: 3px;
}
@media (width < 893px) {
  .others-curry__body {
    padding-left: 0;
  }
}

.others-curry__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 2.3125rem;
}
@media (width < 893px) {
  .others-curry__text {
    margin-top: 1.5rem;
  }
}
@media (width < 576px) {
  .others-curry__text {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
  }
}

.others-curry__link {
  margin-top: 3.25rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .others-curry__link {
    margin-top: 2.5rem;
  }
}
@media (hover: hover) {
  .others-curry__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .others-curry__link:active {
    opacity: 0.7;
  }
}

.others-curry__img-wrap {
  max-width: 21.125rem;
}
.others-curry__img-wrap img {
  aspect-ratio: 1/1;
}
@media (width < 893px) {
  .others-curry__img-wrap {
    max-width: 15rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*

Section: others-hamburger

***************************************/
.others-hamburger {
  background-color: #fff;
  border-radius: 5px;
  padding: 3.75rem 3.75rem 6rem;
  margin: 3.75rem auto 0;
  max-width: 67.5625rem;
}
@media (width < 1261px) {
  .others-hamburger {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .others-hamburger {
    padding: 2.5rem 2.5rem 3.75rem;
    max-width: 90%;
  }
}
@media (width < 576px) {
  .others-hamburger {
    padding: 1.5rem 1.5rem 2.5rem;
  }
}

.others-hamburger__block {
  display: grid;
  grid-template-columns: 1fr 21.0625rem;
  gap: 3.3125rem;
}
@media (width < 893px) {
  .others-hamburger__block {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.others-hamburger__body {
  padding-left: 3px;
}
@media (width < 893px) {
  .others-hamburger__body {
    padding-left: 0;
  }
}

.others-hamburger__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 2.25rem;
}
@media (width < 893px) {
  .others-hamburger__text {
    margin-top: 1.5rem;
  }
}
@media (width < 576px) {
  .others-hamburger__text {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
  }
}

.others-hamburger__img-wrap {
  max-width: 21.0625rem;
}
.others-hamburger__img-wrap img {
  aspect-ratio: 1/1;
}
@media (width < 893px) {
  .others-hamburger__img-wrap {
    max-width: 15rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.others-hamburger-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.875rem, 3.8666666667vw, 3.625rem);
  margin-top: 4.625rem;
}
@media (width < 893px) {
  .others-hamburger-cards {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    margin-top: 3.125rem;
  }
}
@media (width < 576px) {
  .others-hamburger-cards {
    gap: 1.5rem;
  }
}

.others-hamburger-cards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 24.125rem;
}
@media (width < 576px) {
  .others-hamburger-cards__item {
    min-height: auto;
  }
}

.others-hamburger-cards__img-wrap {
  text-align: center;
  position: relative;
}
.others-hamburger-cards__img-wrap img {
  max-width: 10.125rem;
  aspect-ratio: 1/1;
}

.others-hamburger-cards__img-tag {
  display: inline-block;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  border: 1px solid #610E16;
  border-radius: 0.9375rem;
  padding: 0.21875rem 0.875rem 0.1875rem;
  position: absolute;
  top: 0.21875rem;
  left: 0.625rem;
}

.others-hamburger-cards__img-text {
  color: #E6D8D9;
  font-family: "Baskerville", sans-serif;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1052631579;
  width: 2.6875rem;
  text-align: center;
  position: absolute;
  right: 0.3125rem;
  bottom: 0.3125rem;
}

.others-hamburger-cards__item:first-of-type .others-hamburger-cards__img-text {
  line-height: 0.8421052632;
}

.others-hamburger-cards__name {
  color: #610E16;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-top: 0.625rem;
}

.others-hamburger-cards__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-top: 0.8125rem;
}

.others-hamburger-cards__link {
  margin-top: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .others-hamburger-cards__link {
    margin: 1.5rem auto 0;
  }
}
@media (hover: hover) {
  .others-hamburger-cards__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .others-hamburger-cards__link:active {
    opacity: 0.7;
  }
}

.others-hamburger__lineup-beef {
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .others-hamburger__lineup-beef {
    margin-top: 3.75rem;
  }
}

.others-hamburger__beef-text {
  padding: 1.6875rem 1.5rem 2.1875rem 3.125rem;
}
@media (width < 893px) {
  .others-hamburger__beef-text {
    padding: 0;
  }
}

.others-hamburger__beef-desc {
  margin-top: 0;
}

.others-hamburger__beef-link {
  margin-top: 1.1875rem;
}

.others-hamburger__beef-img {
  max-width: 14rem;
}
.others-hamburger__beef-img img {
  aspect-ratio: 224/192;
}

/*

Section: others-ham

***************************************/
.others-ham {
  background-color: #fff;
  border-radius: 5px;
  padding: 3.75rem;
  margin: 3.75rem auto 11.25rem;
  max-width: 67.5625rem;
}
@media (width < 1261px) {
  .others-ham {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .others-ham {
    padding: 2.5rem;
    margin-top: 2.5rem;
  }
}
@media (width < 576px) {
  .others-ham {
    padding: 1.5rem;
    margin-bottom: 5rem;
  }
}

.others-ham__inner {
  display: grid;
  grid-template-columns: 1fr 21.125rem;
  gap: 3.3125rem;
}
@media (width < 893px) {
  .others-ham__inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.others-ham__body {
  padding-left: 3px;
}
@media (width < 893px) {
  .others-ham__body {
    padding-left: 0;
  }
}

.others-ham__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 2.3125rem;
}
@media (width < 893px) {
  .others-ham__text {
    margin-top: 1.5rem;
  }
}
@media (width < 576px) {
  .others-ham__text {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
  }
}

.others-ham__link {
  margin-top: 2.3125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .others-ham__link {
    margin: 1.875rem auto 0;
  }
}
@media (hover: hover) {
  .others-ham__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .others-ham__link:active {
    opacity: 0.7;
  }
}

.others-ham__img-wrap {
  max-width: 21.0625rem;
}
.others-ham__img-wrap img {
  aspect-ratio: 1/1;
}
@media (width < 893px) {
  .others-ham__img-wrap {
    max-width: 15rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*************************************

Project：recruit.scss

***************************************/
/*

Component: recruit-heading

***************************************/
.recruit-heading {
  text-align: center;
  margin-top: 3.125rem;
}

.recruit-heading__title {
  font-size: 3.3125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4339622642;
  color: #2F2725;
  position: relative;
  padding-top: 8.6875rem;
}
.recruit-heading__title::before {
  content: "";
  display: block;
  width: 1px;
  height: 7.4375rem;
  background-color: #C43043;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.recruit-benefits__container:first-of-type .recruit-heading__title {
  padding-top: 0;
}
.recruit-benefits__container:first-of-type .recruit-heading__title::before {
  display: none;
}
.recruit-benefits__container:first-of-type .recruit-heading {
  margin-top: 4.875rem;
}

.recruit-heading__sub {
  color: #C43043;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  margin-top: 0.625rem;
}

/*

Section: recruit-benefits

***************************************/
.recruit-benefits {
  padding: 8.125rem 0 9.375rem;
}

.recruit-benefits__block {
  display: grid;
  grid-template-columns: 6.03fr 6.05fr;
  gap: clamp(1.25rem, 3.4666666667vw, 3.25rem);
  margin-top: 2.5rem;
}

.recruit-benefits__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
}

.recruit-benefits__list-heading {
  color: #C43043;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  margin-top: 1.5rem;
}

.recruit-benefits__list {
  margin-top: 1.1875rem;
}

.recruit-benefits__item {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 0.625rem 1.75rem;
  background-color: rgba(235, 226, 205, 0.5);
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  border-radius: 5px;
}
.recruit-benefits__item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D97C86;
}
.recruit-benefits__item + .recruit-benefits__item {
  margin-top: 0.5625rem;
}

.recruit-benefits__img-wrap {
  max-width: 37.8125rem;
  margin-top: 5px;
}
.recruit-benefits__img-wrap img {
  aspect-ratio: 605/404;
}

@media (width < 893px) {
  .recruit-heading {
    margin-top: 2.5rem;
  }
}

@media (width < 893px) {
  .recruit-heading__title {
    font-size: 2rem;
    line-height: 1.4375;
    padding-top: 5rem;
  }
  .recruit-heading__title::before {
    height: 3.75rem;
  }
}
@media (width < 576px) {
  .recruit-heading__title {
    font-size: 1.625rem;
    line-height: 1.4615384615;
  }
}

@media (width < 893px) {
  .recruit-heading__sub {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (width < 893px) {
  .recruit-benefits {
    padding: 5rem 0 6.25rem;
  }
}
@media (width < 576px) {
  .recruit-benefits {
    padding: 3.75rem 0 5rem;
  }
}

@media (width < 893px) {
  .recruit-benefits__block {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

@media (width < 576px) {
  .recruit-benefits__text {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
  }
}

@media (width < 893px) {
  .recruit-benefits__item {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.625rem 1rem;
  }
}

@media (width < 893px) {
  .recruit-benefits__img-wrap {
    max-width: 30rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*

Section: recruit-work

***************************************/
.recruit-work {
  padding-top: 6.25rem;
  background-color: rgba(235, 226, 205, 0.5);
}

.recruit-work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3.7333333333vw, 3.5rem);
  margin: 4.8125rem auto 0;
  max-width: 75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recruit-work__img-wrap {
  max-width: 22.5rem;
}
@media (width < 893px) {
  .recruit-work__img-wrap {
    max-width: 30rem;
  }
}
.recruit-work__img-wrap img {
  aspect-ratio: 3/2;
}

.recruit-work__name {
  color: #C43043;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  margin-top: 1.25rem;
  text-align: center;
}

.recruit-work__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 0.9375rem;
}

.recruit-work__footer-text {
  color: #610E16;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8181818182;
  margin-top: 5rem;
  text-align: center;
}

@media (width < 893px) {
  .recruit-work {
    padding-top: 5rem;
  }
}
@media (width < 576px) {
  .recruit-work {
    padding-top: 3.75rem;
  }
}

@media (width < 893px) {
  .recruit-work__list {
    grid-template-columns: 30rem;
    gap: 1.875rem;
    margin-top: 3.125rem;
  }
}
@media (width < 576px) {
  .recruit-work__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (width < 893px) {
  .recruit-work__name {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

@media (width < 893px) {
  .recruit-work__footer-text {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    margin-top: 3.125rem;
  }
}
@media (width < 576px) {
  .recruit-work__footer-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/*

Section: recruit-skill

***************************************/
.recruit-skill {
  background-color: rgba(235, 226, 205, 0.5);
  padding: 5.9375rem 0 9.375rem;
}
@media (width < 893px) {
  .recruit-skill {
    padding: 4.375rem 0 6.25rem;
  }
}
@media (width < 576px) {
  .recruit-skill {
    padding: 3.125rem 0 5rem;
  }
}

.recruit-skill__container {
  border-radius: 5px;
  border: 1px solid #2F2725;
  padding: 3.625rem 3.75rem 3.75rem;
  max-width: 67.5rem;
  margin: 0 auto;
}
@media (width < 893px) {
  .recruit-skill__container {
    padding: 2.5rem;
  }
}
@media (width < 576px) {
  .recruit-skill__container {
    padding: 1.5rem;
  }
}

.recruit-skill__block + .recruit-skill__block {
  margin-top: 5.625rem;
}
@media (width < 893px) {
  .recruit-skill__block + .recruit-skill__block {
    margin-top: 3.125rem;
  }
}

.recruit-skill__heading {
  color: #C43043;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  text-align: center;
}
@media (width < 893px) {
  .recruit-skill__heading {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.recruit-skill__ability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media (width < 576px) {
  .recruit-skill__ability-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.recruit-skill__ability-item {
  color: #610E16;
  background-color: #fff;
  padding: 1.125rem 1.875rem;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  text-align: center;
}
@media (width < 893px) {
  .recruit-skill__ability-item {
    font-size: 1.0625rem;
    line-height: 1.5294117647;
    padding: 0.875rem 1.25rem;
  }
}

.recruit-skill__fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5625rem 1.25rem;
  margin-top: 1.875rem;
}
@media (width < 893px) {
  .recruit-skill__fit-list {
    grid-template-columns: 1fr;
    gap: 0.5625rem;
  }
}

.recruit-skill__fit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 0.625rem 0.625rem 0.625rem 1.75rem;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
}
@media (width < 893px) {
  .recruit-skill__fit-item {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0.625rem 0.625rem 0.625rem 1rem;
  }
}
.recruit-skill__fit-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D97C86;
}

/*

Section: recruit-support

***************************************/
.recruit-support {
  padding: 9.375rem 0 9.25rem;
}
@media (width < 893px) {
  .recruit-support {
    padding: 5rem 0 6.25rem;
  }
}
@media (width < 576px) {
  .recruit-support {
    padding: 3.75rem 0 5rem;
  }
}

.recruit-support__text {
  color: #2F2725;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.9;
  text-align: center;
  margin-top: 4.8125rem;
}
@media (width < 893px) {
  .recruit-support__text {
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 3.125rem;
  }
}

.recruit-support__list {
  margin-top: 3.4375rem;
}
@media (width < 893px) {
  .recruit-support__list {
    margin-top: 2.5rem;
  }
}

.recruit-support__item {
  display: grid;
  grid-template-columns: 5.5fr 4.84fr;
  gap: clamp(1.875rem, 3.7333333333vw, 3.5rem);
  padding: 2.5rem 0;
  border-bottom: 1px solid #2F2725;
}
.recruit-support__item:first-of-type {
  padding-top: 0;
}
.recruit-support__item:nth-child(even) {
  grid-template-columns: 4.84fr 5.5fr;
}
.recruit-support__item:nth-child(even) .recruit-support__body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.recruit-support__item:nth-child(even) .recruit-support__img-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (width < 893px) {
  .recruit-support__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.recruit-support__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
@media (width < 893px) {
  .recruit-support__item {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding: 1.875rem 0;
  }
}

.recruit-support__tag {
  display: inline-block;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  border: 1px solid #610E16;
  border-radius: 0.9375rem;
  padding: 0.1875rem 0.875rem 0.125rem;
  text-transform: uppercase;
}

.recruit-support__emphasis {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  color: #C43043;
  margin-top: 1.01875rem;
}
@media (width < 893px) {
  .recruit-support__emphasis {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.recruit-support__desc {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  margin-top: 1.25rem;
}

.recruit-support__img-wrap {
  max-width: 30.25rem;
  margin-top: 5px;
}
.recruit-support__img-wrap img {
  aspect-ratio: 484/297;
}
@media (width < 893px) {
  .recruit-support__img-wrap {
    max-width: 30rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.recruit-support__qualification {
  background-color: #fff;
  padding: 1.9375rem 1.875rem 1.5rem;
  text-align: center;
  margin-top: 3.75rem;
  border-radius: 5px;
}
@media (width < 893px) {
  .recruit-support__qualification {
    padding: 1.5rem;
    margin-top: 2.5rem;
  }
}

.recruit-support__qualification-heading {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  color: #C43043;
}
@media (width < 893px) {
  .recruit-support__qualification-heading {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.recruit-support__qualification-text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .recruit-support__qualification-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.recruit-support__qualification-text span {
  font-size: 0.8125rem;
  line-height: 2.7692307692;
}

/*

Section: recruit-welfare

***************************************/
.recruit-welfare {
  padding-bottom: 9.375rem;
}

.recruit-welfare__heading {
  padding-top: 3.75rem;
  border-top: 1px solid #2F2725;
}

.recruit-welfare__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 4.875rem auto 0;
  max-width: 48.75rem;
}
@media (width < 576px) {
  .recruit-welfare__list {
    grid-template-columns: 1fr;
  }
}

.recruit-welfare__item {
  background-color: rgba(235, 226, 205, 0.5);
  padding: 2.5rem;
  border-radius: 5px;
}
@media (width < 576px) {
  .recruit-welfare__item {
    max-width: 23.125rem;
    margin: 0 auto;
  }
}

.recruit-welfare__name {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  color: #610E16;
  text-align: center;
}

.recruit-welfare__icon {
  max-width: 7.0625rem;
  margin: 1.25rem auto 0;
}
.recruit-welfare__icon img {
  aspect-ratio: 113/89;
}

.recruit-welfare__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.8666666667;
  margin-left: 2px;
  margin-top: 1rem;
}

.recruit-welfare__link {
  margin: 3.625rem auto 0;
}

/*

Section: recruit-interview

***************************************/
.recruit-interview__heading {
  padding-top: 3.75rem;
}

.recruit-interview__list {
  display: grid;
  grid-template-columns: repeat(2, 18.125rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(5rem, 9.8vw, 9.1875rem);
  margin-top: 4.85rem;
}
@media (width < 893px) {
  .recruit-interview__list {
    grid-template-columns: 18.125rem;
    gap: 2.5rem;
  }
}

.recruit-interview__img-wrap {
  position: relative;
  max-width: 18.125rem;
}
.recruit-interview__img-wrap img {
  aspect-ratio: 290/320;
}

.recruit-interview__img-text {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.4166666667;
  padding: 0.3125rem 0.9375rem;
  text-transform: uppercase;
  border-radius: 3px;
  background-color: #C43043;
}

.recruit-interview__name {
  color: #C43043;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 1.0625rem;
}

.recruit-interview__text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  margin-top: 0.4375rem;
}

.recruit-interview__link {
  margin-top: 1.4375rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .recruit-interview__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .recruit-interview__link:active {
    opacity: 0.7;
  }
}

/*

Section: recruit-interview-detail

***************************************/
.recruit-interview-detail {
  padding-bottom: 9.375rem;
}
@media (width < 893px) {
  .recruit-interview-detail {
    padding-bottom: 6.25rem;
  }
}
@media (width < 576px) {
  .recruit-interview-detail {
    padding-bottom: 5rem;
  }
}

.recruit-interview-detail__list {
  margin-top: 7.5rem;
}
@media (width < 893px) {
  .recruit-interview-detail__list {
    margin-top: 3.75rem;
  }
}

.recruit-interview-detail__item {
  max-width: 72.5rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  padding: 5.625rem 6.375rem 5.625rem 6.125rem;
  position: relative;
}
.recruit-interview-detail__item + .recruit-interview-detail__item {
  margin-top: 5rem;
}
@media (width < 893px) {
  .recruit-interview-detail__item + .recruit-interview-detail__item {
    margin-top: 3.125rem;
  }
}
@media (width < 893px) {
  .recruit-interview-detail__item {
    padding: 3.75rem 3.125rem;
  }
}
@media (width < 576px) {
  .recruit-interview-detail__item {
    padding: 2.5rem 1.5rem;
  }
}

.recruit-interview-detail__label {
  display: inline-block;
  background-color: #C43043;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.3125rem 0.9375rem;
  border-radius: 3px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-interview-detail__profile {
  display: grid;
  grid-template-columns: 23.375rem 20rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 2vw, 1.875rem);
}
@media (width < 893px) {
  .recruit-interview-detail__profile {
    grid-template-columns: 23.375rem;
  }
}
@media (width < 576px) {
  .recruit-interview-detail__profile {
    grid-template-columns: 1fr;
  }
}

.recruit-interview-detail__img-wrap {
  max-width: 23.375rem;
}
.recruit-interview-detail__img-wrap img {
  aspect-ratio: 374/320;
}
@media (width < 893px) {
  .recruit-interview-detail__img-wrap {
    margin: 0 auto;
  }
}

.recruit-interview-detail__name {
  color: #C43043;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
}

.recruit-interview-detail__tag {
  display: inline-block;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  border: 1px solid #610E16;
  border-radius: 0.9375rem;
  padding: 0.1875rem 0.875rem 0.125rem;
  text-transform: uppercase;
  margin-top: 1.98125rem;
}

.recruit-interview-detail__career-list {
  display: grid;
  margin-top: 1.2625rem;
  max-width: 20rem;
}

.recruit-interview-detail__career-item {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4666666667;
  display: grid;
  grid-template-columns: 3.125rem 1fr;
  gap: 1rem;
  padding: 0.625rem 0.625rem 0.625rem 1.21875rem;
  border-bottom: 1px dotted #868686;
}
.recruit-interview-detail__career-item:first-of-type {
  padding-top: 0;
}

.recruit-interview-detail__career-item-head {
  color: #610E16;
}

.recruit-interview-detail__career-item-text {
  color: #2F2725;
}

.recruit-interview-detail__qa {
  margin-top: 4.375rem;
}
@media (width < 893px) {
  .recruit-interview-detail__qa {
    margin-top: 2.5rem;
  }
}

.recruit-interview-detail__qa-item + .recruit-interview-detail__qa-item {
  margin-top: 3.375rem;
}

.recruit-interview-detail__question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  color: #C43043;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  border-bottom: 1px dotted #868686;
  padding-bottom: 0.9375rem;
}

.recruit-interview-detail__answer {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 0.625rem;
}

.recruit-interview-detail__answer-box {
  background-color: rgba(235, 226, 205, 0.5);
  padding: 1.875rem 3.75rem 1.875rem;
  margin-top: 1.25rem;
  border-radius: 5px;
}
@media (width < 893px) {
  .recruit-interview-detail__answer-box {
    padding: 1.25rem 1.5rem;
  }
}

.recruit-interview-detail__box-list {
  margin-top: 0.75rem;
}

.recruit-interview-detail__box-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.recruit-interview-detail__box-item + .recruit-interview-detail__box-item {
  margin-top: 0.75rem;
}

.recruit-interview-detail__box-head {
  color: #CB7C00;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}

.recruit-interview-detail__box-num {
  color: #CB7C00;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}

.recruit-interview-detail__qa-item--split {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr;
  gap: clamp(1.25rem, 2.6666666667vw, 2.5rem);
}
@media (width < 893px) {
  .recruit-interview-detail__qa-item--split {
    grid-template-columns: 1fr;
  }
}

.recruit-interview-detail__answer-item {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
}
.recruit-interview-detail__answer-item + .recruit-interview-detail__answer-item {
  margin-top: 0.5rem;
}

.recruit-interview-detail__answer-img-wrap {
  max-width: 27.5rem;
}
.recruit-interview-detail__answer-img-wrap img {
  aspect-ratio: 440/273;
}
@media (width < 893px) {
  .recruit-interview-detail__answer-img-wrap {
    margin: 0 auto;
  }
}

.recruit-interview-detail__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  margin: 9.625rem auto 0;
  max-width: 63.375rem;
}
@media (width < 893px) {
  .recruit-interview-detail__links {
    margin-top: 5rem;
    grid-template-columns: 1fr;
    max-width: 80%;
  }
}
@media (width < 576px) {
  .recruit-interview-detail__links {
    gap: 0.75rem;
    max-width: 100%;
  }
}

.recruit-interview-detail__link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}
.recruit-interview-detail__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
}
@media (hover: hover) {
  .recruit-interview-detail__link:hover::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .recruit-interview-detail__link:hover .recruit-interview-detail__link-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .recruit-interview-detail__link:hover .c-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .recruit-interview-detail__link:hover .recruit-interview-detail__link-label-text::before {
    -webkit-animation: borderScale 0.3s ease-in-out forwards;
            animation: borderScale 0.3s ease-in-out forwards;
  }
}
@media (hover: none) {
  .recruit-interview-detail__link:active::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .recruit-interview-detail__link:active .recruit-interview-detail__link-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .recruit-interview-detail__link:active .c-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .recruit-interview-detail__link:active .recruit-interview-detail__link-label-text::before {
    -webkit-animation: borderScale 0.3s ease-in-out forwards;
            animation: borderScale 0.3s ease-in-out forwards;
  }
}

.recruit-interview-detail__link-img {
  overflow: hidden;
}
.recruit-interview-detail__link-img img {
  aspect-ratio: 498/232;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.recruit-interview-detail__link-label {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #fff;
  position: absolute;
  bottom: 2.375rem;
  left: 1.875rem;
  z-index: 1;
}
@media (width < 576px) {
  .recruit-interview-detail__link-label {
    bottom: 1.5rem;
    left: 1.25rem;
    gap: 0.625rem;
  }
}

.recruit-interview-detail__link-label-text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  position: relative;
}
@media (width < 576px) {
  .recruit-interview-detail__link-label-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.recruit-interview-detail__link-label-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.46875rem;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/*

Section: recruit-overview

***************************************/
.recruit-overview {
  padding: 11rem 0 11.25rem;
}
@media (width < 893px) {
  .recruit-overview {
    padding: 6.25rem 0 7.5rem;
  }
}
@media (width < 576px) {
  .recruit-overview {
    padding: 3.75rem 0 5rem;
  }
}

.recruit-overview__container {
  margin: 8.125rem auto 0;
  max-width: 72.5rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5.3125rem 6.25rem;
}
@media (width < 893px) {
  .recruit-overview__container {
    margin-top: 4.375rem;
    padding: 3.75rem 2rem;
  }
}
@media (width < 576px) {
  .recruit-overview__container {
    margin-top: 3.125rem;
    padding: 1.875rem 1.5rem;
  }
}

.recruit-overview__tab-list {
  display: grid;
  grid-template-columns: repeat(2, 23.25rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.4375rem;
  border-bottom: 2px solid #610E16;
  height: 5.1875rem;
}
@media (width < 1261px) {
  .recruit-overview__tab-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 576px) {
  .recruit-overview__tab-list {
    height: 5.1875rem;
  }
}

.recruit-overview__tab-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  color: #610E16;
  background-color: #fff;
  border: 1px solid #610E16;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.recruit-overview__tab-btn.is-active {
  background-color: #610E16;
  color: #fff;
  border-color: #610E16;
  padding: 1.6875rem 1rem;
}
@media (width < 576px) {
  .recruit-overview__tab-btn.is-active {
    padding: 0.5rem;
    height: 5.0625rem;
  }
}
@media (width < 576px) {
  .recruit-overview__tab-btn {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.5rem;
    min-height: 4.4375rem;
  }
}

.recruit-overview__panels {
  margin-top: 3.84375rem;
}
@media (width < 893px) {
  .recruit-overview__panels {
    margin-top: 2.5rem;
  }
}

.recruit-overview__panel {
  display: none;
}
.recruit-overview__panel.is-active {
  display: block;
}

.recruit-overview__item {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  gap: 1.5625rem;
  padding: 0.9375rem 1.25rem 0.875rem;
  border-bottom: 1px dotted #868686;
}
.recruit-overview__item:first-of-type {
  padding-top: 0;
}
@media (width < 576px) {
  .recruit-overview__item {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }
}

.recruit-overview__term {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  color: #610E16;
}

.recruit-overview__desc {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.1333333333;
  color: #2F2725;
}
.recruit-overview__desc p + p {
  margin-top: 0.34375rem;
}
@media (width < 576px) {
  .recruit-overview__desc {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

.recruit-overview__desc-list {
  margin: 0.625rem 0;
}

.recruit-overview__apply {
  margin: 3.6875rem auto 0;
  max-width: 15rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .recruit-overview__apply {
    margin-top: 2.5rem;
  }
}
@media (hover: hover) {
  .recruit-overview__apply:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .recruit-overview__apply:active {
    opacity: 0.7;
  }
}

/*

Section: interview__mv

***************************************/
.interview__mv-body {
  -webkit-transform: translateY(2.125rem);
          transform: translateY(2.125rem);
}

.interview__mv::after {
  content: "";
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(85, 52, 0, 0.3)), to(rgba(17, 10, 0, 0.3)));
  background-image: linear-gradient(180deg, rgba(85, 52, 0, 0.3) 50%, rgba(17, 10, 0, 0.3) 100%);
}

.interview__mv-img {
  position: relative;
}
.interview__mv-img img {
  aspect-ratio: 1500/706;
}

.interview__mv-title {
  font-size: 2.5rem;
  letter-spacing: 0em;
  line-height: 1.45;
}
@media (width < 893px) {
  .interview__mv-title {
    font-size: 2rem;
  }
}
@media (width < 576px) {
  .interview__mv-title {
    font-size: 1.5rem;
  }
}

.interview__mv-img-text {
  position: absolute;
  top: 5.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 46.4vw;
  z-index: 2;
}
@media (width < 576px) {
  .interview__mv-img-text {
    top: 3.6875rem;
  }
}
.interview__mv-img-text img {
  aspect-ratio: 696/706;
}

/*************************************

Section: interview-list

***************************************/
.interview-list {
  padding: 6.25rem 0 9.375rem;
}
@media (width < 893px) {
  .interview-list {
    padding: 3.75rem 0 5rem;
  }
}

.interview-list__title {
  text-align: center;
  color: #C43043;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
}
@media (width < 893px) {
  .interview-list__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.interview-list__lead {
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 2rem;
}
@media (width < 893px) {
  .interview-list__lead {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    margin-top: 1rem;
  }
}

.interview-list__entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 53.75rem;
  margin: 4.375rem auto 0;
  padding-bottom: 5.5rem;
}
.interview-list__entries::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1.5rem;
  left: 50%;
  width: 1px;
  background-color: #C43043;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width < 893px) {
  .interview-list__entries {
    grid-template-columns: 1fr;
    margin: 3.125rem auto 0;
    max-width: 33.75rem;
    padding-bottom: 3.75rem;
  }
  .interview-list__entries::before {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.interview-list__arrow {
  position: absolute;
  bottom: -1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width < 893px) {
  .interview-list__arrow {
    left: 0;
  }
}

.interview-list__entry {
  padding: 0 2.5rem;
  position: relative;
  margin-top: 1.5rem;
}
@media (width < 893px) {
  .interview-list__entry {
    max-width: 33.75rem;
  }
}
.interview-list__entry::before, .interview-list__entry::after {
  content: "";
  background-color: #C43043;
}
.interview-list__entry::before {
  position: absolute;
  top: 4.1875rem;
  width: 2.5rem;
  height: 1px;
}
.interview-list__entry::after {
  position: absolute;
  top: 3.9375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}
.interview-list__entry:not(:first-of-type)::before {
  top: 3.75rem;
}
.interview-list__entry:not(:first-of-type)::after {
  top: 3.5625rem;
}
.interview-list__entry:nth-of-type(2) {
  margin-top: 7.1875rem;
}
.interview-list__entry:nth-of-type(3) {
  margin-top: -3.125rem;
}
.interview-list__entry:nth-of-type(4) {
  margin-top: 2.5rem;
}
.interview-list__entry:nth-of-type(5) {
  margin-top: -3.125rem;
}
.interview-list__entry:nth-of-type(5)::before {
  top: 4.3125rem;
}
.interview-list__entry:nth-of-type(5)::after {
  top: 4.0625rem;
}
@media (width < 893px) {
  .interview-list__entry {
    padding: 0 0 0 2.5rem;
  }
  .interview-list__entry:nth-of-type(2), .interview-list__entry:nth-of-type(3), .interview-list__entry:nth-of-type(4), .interview-list__entry:nth-of-type(5) {
    margin-top: 2.5rem;
  }
}

.interview-list__entry--left {
  padding-left: 0;
}
.interview-list__entry--left::before {
  right: 0;
}
.interview-list__entry--left::after {
  right: -0.3125rem;
}
@media (width < 893px) {
  .interview-list__entry--left {
    padding-left: 2.5rem;
  }
  .interview-list__entry--left::before {
    right: auto;
    left: 0;
  }
  .interview-list__entry--left::after {
    right: auto;
    left: -0.3125rem;
  }
}

.interview-list__entry--right {
  padding-right: 0;
}
.interview-list__entry--right::before {
  left: 0;
}
.interview-list__entry--right::after {
  left: -0.3125rem;
}

.interview-list__card {
  display: grid;
  grid-template-columns: 11.1875rem 1fr;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 576px) {
  .interview-list__card {
    grid-template-columns: auto 1fr;
  }
}
@media (hover: hover) {
  .interview-list__card:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .interview-list__card:active {
    opacity: 0.7;
  }
}

.interview-list__card-body {
  border-radius: 3px;
}

.interview-list__card-img-wrap {
  max-width: 11.1875rem;
}
.interview-list__card-img-wrap img {
  aspect-ratio: 179/132;
}

.interview-list__card-category {
  display: inline-block;
  color: #fff;
  background-color: #C43043;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.4166666667;
  padding: 0.25rem 0.9375rem;
  vertical-align: bottom;
  text-transform: uppercase;
}

.interview-list__card-name {
  color: #D97C86;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 1.4375rem;
  margin-left: 1.3125rem;
}
@media (width < 576px) {
  .interview-list__card-name {
    margin-left: 1rem;
    margin-top: 1rem;
  }
}

.interview-list__card-text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  color: #2F2725;
  margin-top: 0.3125rem;
  margin-left: 1.3125rem;
}
@media (width < 576px) {
  .interview-list__card-text {
    font-size: 0.9375rem;
    line-height: 1.4666666667;
    margin-left: 1rem;
  }
}

/*************************************

Section: interview-qa

***************************************/
.interview-qa {
  padding-top: 5.1875rem;
}
@media (width < 893px) {
  .interview-qa {
    padding-top: 3.75rem;
  }
}
.interview-qa:nth-of-type(4) .interview__baton-img {
  max-width: 19.625rem;
}
.interview-qa:nth-of-type(4) .interview__baton-img img {
  aspect-ratio: 314/256;
}
.interview-qa:nth-of-type(5) .interview__baton-img {
  max-width: 19.0625rem;
}
.interview-qa:nth-of-type(5) .interview__baton-img img {
  aspect-ratio: 305/256;
}
.interview-qa:nth-of-type(6) .interview__baton-img {
  max-width: 24rem;
}
.interview-qa:nth-of-type(6) .interview__baton-img img {
  aspect-ratio: 384/256;
}

.interview-qa__inner {
  max-width: 72.5rem;
}
@media (width < 1261px) {
  .interview-qa__inner {
    max-width: 90%;
  }
}

.interview-qa__container {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 6.25rem 5.65625rem;
  margin-top: 1.375rem;
}
@media (width < 893px) {
  .interview-qa__container {
    padding: 0 2.5rem 2.5rem;
  }
}
.interview-qa__container:first-of-type {
  margin-top: 0;
}

.interview-qa__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.interview-qa__number {
  display: inline-block;
  color: #fff;
  background-color: #C43043;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.25rem 0.9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 0 0 3px 3px;
}

.interview-qa__start {
  display: block;
  color: #D97C86;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 3.5rem;
}

.interview-qa__name {
  display: block;
  color: #2F2725;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  margin-top: 0.5rem;
}

.interview-qa__list {
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .interview-qa__list {
    margin-top: 2.5rem;
  }
}

.interview-qa__item + .interview-qa__item {
  margin-top: 4.375rem;
}
@media (width < 893px) {
  .interview-qa__item + .interview-qa__item {
    margin-top: 3.125rem;
  }
}

.interview-qa__item--left {
  display: grid;
  grid-template-columns: 1fr 27.625rem;
  gap: clamp(1rem, 2.5333333333vw, 2.375rem);
}
@media (width < 1261px) {
  .interview-qa__item--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

.interview-qa__item--right {
  display: grid;
  grid-template-columns: 27.625rem 1fr;
  gap: clamp(1rem, 2.5333333333vw, 2.375rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (width < 1261px) {
  .interview-qa__item--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

.interview-qa__q-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px dotted #868686;
}

.interview-qa__q-num {
  color: #C43043;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
}

.interview-qa__question {
  color: #C43043;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
}
@media (width < 893px) {
  .interview-qa__question {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.interview-qa__answer {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2.25;
  margin-top: 0.9375rem;
}

.interview-qa__img-wrap img {
  aspect-ratio: 442/310;
}

.interview__baton-img {
  margin: 0.625rem auto 0;
  max-width: 14.5rem;
}
@media (width < 893px) {
  .interview__baton-img {
    margin-top: 1.25rem;
  }
}
.interview__baton-img img {
  aspect-ratio: 232/256;
}

/*

Section: .interview__baton-im

***************************************/
.interview__bg-img {
  margin-top: 9.375rem;
}
@media (width < 893px) {
  .interview__bg-img {
    margin-top: 6.25rem;
  }
}
@media (width < 576px) {
  .interview__bg-img {
    margin-top: 5rem;
  }
}
.interview__bg-img img {
  aspect-ratio: 1500/633;
}
@media (width < 893px) {
  .interview__bg-img img {
    aspect-ratio: 1500/1100;
  }
}

/*************************************

Section: interview__links

***************************************/
.interview__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
  margin: 7.5rem auto 11.25rem;
  max-width: 63.375rem;
}
@media (width < 1261px) {
  .interview__links {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .interview__links {
    grid-template-columns: 1fr;
    width: 33.75rem;
    margin: 7.5rem auto 6.25rem;
  }
}
@media (width < 576px) {
  .interview__links {
    margin-top: 5rem;
  }
}

.interview__link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}
.interview__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
}
@media (hover: hover) {
  .interview__link:hover::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .interview__link:hover .interview__link-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .interview__link:hover .c-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .interview__link:hover .interview__link-label-text::before {
    -webkit-animation: borderScale 0.3s ease-in-out forwards;
            animation: borderScale 0.3s ease-in-out forwards;
  }
}
@media (hover: none) {
  .interview__link:active::before {
    background-color: rgba(0, 0, 0, 0);
  }
  .interview__link:active .interview__link-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .interview__link:active .c-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  .interview__link:active .interview__link-label-text::before {
    -webkit-animation: borderScale 0.3s ease-in-out forwards;
            animation: borderScale 0.3s ease-in-out forwards;
  }
}

.interview__link-img {
  overflow: hidden;
}
.interview__link-img img {
  aspect-ratio: 498/232;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.interview__link-label {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #fff;
  position: absolute;
  bottom: 2.375rem;
  left: 1.875rem;
  z-index: 1;
}

.interview__link-label-text {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  position: relative;
}
.interview__link-label-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.46875rem;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/*************************************

Project：faq.scss

***************************************/
.faq-mv__img img {
  aspect-ratio: 150/38;
}

/*

Section: faq blocks

***************************************/
.faq__block-list {
  margin: 6.25rem auto 0;
  max-width: 72.5rem;
}
@media (width < 1261px) {
  .faq__block-list {
    max-width: 90%;
  }
}
@media (width < 576px) {
  .faq__block-list {
    padding-bottom: 1.5rem;
  }
}

.faq__block {
  background-color: #fff;
  padding: 6.25rem;
  border-radius: 5px;
}
.faq__block + .faq__block {
  margin-top: 9.375rem;
}
@media (width < 893px) {
  .faq__block + .faq__block {
    margin-top: 5rem;
  }
}
@media (width < 893px) {
  .faq__block {
    padding: 3.75rem 1.5rem 5rem;
  }
}
@media (width < 576px) {
  .faq__block {
    padding: 2.5rem 0 3.75rem;
  }
}

/*

Section: faq Q&A

***************************************/
.faq__list {
  margin: 4.875rem auto 0;
}

.faq__item + .faq__item {
  margin-top: 3.125rem;
}
@media (width < 893px) {
  .faq__item + .faq__item {
    margin-top: 2.25rem;
  }
}

.faq__question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3125rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px dotted rgba(97, 14, 22, 0.5);
  padding-bottom: 0.9375rem;
}
@media (width < 893px) {
  .faq__question {
    gap: 0.75rem;
  }
}

.faq__question-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: #C43043;
  letter-spacing: 0.03em;
  line-height: 1.1538461538;
}

.faq__question-text {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6470588235;
  color: #C43043;
}
@media (width < 893px) {
  .faq__question-text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.faq__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 1rem;
}
@media (width < 893px) {
  .faq__answer {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
}

.faq__answer .faq__question-label {
  color: #000;
}

.faq__answer-label {
  font-family: "Baskerville", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #610E16;
  line-height: 1;
}
@media (width < 893px) {
  .faq__answer-label {
    font-size: 1.125rem;
  }
}

.faq__answer-text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.875;
  color: #2F2725;
}
@media (width < 893px) {
  .faq__answer-text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

/*************************************

Project：news.scss

***************************************/
.news-page__category {
  display: inline-block;
  border: 1px solid #610E16;
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  padding: 0.53125rem 0.625rem;
  border-radius: 5px;
  min-width: 6.4375rem;
  text-align: center;
  text-transform: uppercase;
}

/*

Page：news.html（一覧）

***************************************/
.news-page {
  padding: 9.375rem 0 7.5rem;
}
@media (width < 893px) {
  .news-page {
    padding: 4.375rem 0 5.625rem;
  }
}
@media (width < 576px) {
  .news-page {
    padding: 3.125rem 0 4.375rem;
  }
}

.news-page__list {
  list-style: none;
  padding: 0;
  max-width: 56.25rem;
  margin: 5rem auto 0;
}

.news-page__item {
  border-bottom: 1px solid rgba(97, 14, 22, 0.15);
}
.news-page__item:first-child {
  border-top: 1px solid rgba(97, 14, 22, 0.15);
}

.news-page__link {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 0.625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .news-page__link:hover {
    opacity: 0.7;
  }
}
@media (width < 893px) {
  .news-page__link {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 0.875rem;
    padding: 1.125rem 0.5rem;
  }
}

.news-page__date {
  font-family: "Baskerville", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  line-height: 1.4666666667;
  color: #610E16;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-page__category {
  color: #610E16;
  font-family: "Baskerville", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1666666667;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-page__title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.625;
  color: #2F2725;
}
@media (width < 893px) {
  .news-page__title {
    grid-column: 1/-1;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.news-page__pagenavi {
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-page__pagenavi {
    margin-top: 2.5rem;
  }
}

/*

Page：news-single.html（詳細）

***************************************/
.news-single {
  padding: 5rem 0 7.5rem;
}
@media (width < 893px) {
  .news-single {
    padding: 3.75rem 0 5.625rem;
  }
}

.news-single__header {
  max-width: 56.25rem;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(97, 14, 22, 0.15);
}

.news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.news-single__date {
  font-family: "Baskerville", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  line-height: 1.4666666667;
  color: #2F2725;
}

.news-single__category {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #C43043;
  border: 1px solid #C43043;
  padding: 0.125rem 0.625rem;
}

.news-single__title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
  color: #2F2725;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .news-single__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.news-single__body {
  max-width: 56.25rem;
  margin: 3.125rem auto 0;
}
@media (width < 893px) {
  .news-single__body {
    margin-top: 2.25rem;
  }
}
.news-single__body p {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
  margin-top: 1.5rem;
}
.news-single__body p:first-child {
  margin-top: 0;
}
@media (width < 893px) {
  .news-single__body p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.news-single__body h2 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #2F2725;
  border-bottom: 1px solid rgba(97, 14, 22, 0.2);
  padding-bottom: 0.625rem;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-single__body h2 {
    font-size: 1.0625rem;
  }
}

.news-single__pagenavi {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 56.25rem;
  margin: 5rem auto 0;
}
@media (width < 893px) {
  .news-single__pagenavi {
    margin-top: 3.75rem;
  }
}

.news-single__nav-all {
  font-family: "Baskerville", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #610E16;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .news-single__nav-all:hover {
    opacity: 0.7;
  }
}

.news-single__nav-prev,
.news-single__nav-next {
  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: 2.75rem;
  height: 2.75rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .news-single__nav-prev:hover,
  .news-single__nav-next:hover {
    opacity: 0.7;
  }
}

.news-single__nav-arrow {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 1.5px solid #610E16;
  border-top: 1.5px solid #610E16;
}
.news-single__nav-arrow--prev {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.news-single__nav-arrow--next {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*

Page：page-news-single.html（詳細）

***************************************/
.news-single {
  padding: 10rem 0 7.5rem;
}

.news-single__section-title {
  color: #610E16;
}

.news-single__section-title-en {
  color: #610E16;
}

.news-single__header {
  margin-top: 3.75rem;
  padding-bottom: 0.5rem;
}

/*************************************

Page：contact.scss

***************************************/
/*

Section: contact-intro

***************************************/
.contact-intro__faq-link {
  display: grid;
  grid-template-columns: 9.4375rem 4.04fr 0.43fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #261C1A;
  border-radius: 5px;
  max-width: 29.4375rem;
  margin: 5.625rem auto 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 576px) {
  .contact-intro__faq-link {
    padding-right: 0.875rem;
  }
}
@media (hover: hover) {
  .contact-intro__faq-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .contact-intro__faq-link:active {
    opacity: 0.7;
  }
}
.contact-intro__faq-link .c-arrow {
  background-color: #fff;
}
@media (width < 576px) {
  .contact-intro__faq-link .c-arrow {
    margin-left: 0.5rem;
  }
}
.contact-intro__faq-link .c-arrow::before, .contact-intro__faq-link .c-arrow::after {
  background-color: #fff;
}

.contact-intro__faq-link-img {
  max-width: 9.4375rem;
}
.contact-intro__faq-link-img img {
  aspect-ratio: 151/135;
}

.contact-intro__faq-link-text {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #fff;
  padding-left: 2.25rem;
}
@media (width < 576px) {
  .contact-intro__faq-link-text {
    font-size: 1rem;
    padding-left: 1rem;
  }
}

.contact-intro__heading {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8181818182;
  color: #2F2725;
  margin-top: 6.125rem;
  text-align: center;
}
@media (width < 893px) {
  .contact-intro__heading {
    font-size: 1rem;
    line-height: 1.7777777778;
    margin-top: 2.25rem;
  }
}
@media (width < 576px) {
  .contact-intro__heading {
    text-align: left;
  }
}

.contact-intro__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 1.25rem;
  text-align: center;
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}
@media (width < 1261px) {
  .contact-intro__text {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (width < 576px) {
  .contact-intro__text {
    text-align: left;
  }
}

.contact-intro__note {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #C43043;
  max-width: 57.5rem;
  margin: 1.75rem auto 0;
  text-align: center;
  padding: 0.9375rem 0;
  border-top: 1px solid #C43043;
  border-bottom: 1px solid #C43043;
}
.contact-intro__note p + p {
  margin-top: 2rem;
}
@media (width < 576px) {
  .contact-intro__note p + p {
    margin-top: 1.5rem;
  }
}
@media (width < 1261px) {
  .contact-intro__note {
    max-width: 90%;
  }
}
@media (width < 576px) {
  .contact-intro__note {
    max-width: 100%;
    text-align: left;
  }
}

/*

Section: contact

***************************************/
.contact {
  padding: 8.3125rem 0 8.125rem;
}
@media (width < 893px) {
  .contact {
    padding: 4.375rem 0 5.625rem;
  }
}

.contact__inner {
  max-width: 72.5rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .contact__inner {
    max-width: 90%;
  }
}

.contact__container {
  background-color: #fff;
  border-radius: 5px;
  padding: 6.25rem 0 6.25rem;
}

.contact-form__form {
  max-width: 60rem;
  margin: 6.25rem auto 0;
}
@media (width < 576px) {
  .contact-form__form {
    margin-top: 3.75rem;
  }
}

.contact-form__item {
  margin-top: 1.875rem;
}
.contact-form__item:first-of-type {
  margin-top: 0;
  gap: 3.8125rem;
}
@media (width < 576px) {
  .contact-form__item:first-of-type {
    gap: 1.75rem;
  }
}

.contact-form__item--radio {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.5rem;
}
@media (width < 893px) {
  .contact-form__item--radio {
    gap: 0.25rem;
  }
}
@media (width < 576px) {
  .contact-form__item--radio {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4444444444;
  color: #2F2725;
  margin-bottom: 0.75rem;
}
.contact-form__item--radio .contact-form__label {
  margin-bottom: 0;
  padding-top: 0.125rem;
}

.contact-form__label-badge {
  display: inline-block;
  background-color: #C43043;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  padding: 0.1875rem 1rem;
  border-radius: 13px;
  white-space: nowrap;
}

/*

Component: radio buttons

***************************************/
.contact-form__radio-list .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.contact-form__radio-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4666666667;
  color: #2F2725;
  position: relative;
}
.contact-form__radio-list label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.4375rem;
  height: 1.4375rem;
  border: 1px solid #CCC8C2;
  border-radius: 50%;
  background-color: #fff;
}
.contact-form__radio-list label:has(input[type=radio]:checked)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background-color: #C43043;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-form__radio-list input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (width < 1261px) {
  .wpcf7-form-control {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
  }
}
@media (width < 893px) {
  .wpcf7-form-control {
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
/*

Component: text inputs

***************************************/
.contact-form__input,
.contact-form__textarea {
  display: block;
  width: 100%;
  background-color: #F5F2EE;
  border: 1px solid #E0DBD5;
  padding: 0.9375rem 1.25rem;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4666666667;
  color: #2F2725;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: #B8B2A8;
  font-size: 0.875rem;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #B8B2A8;
  font-size: 0.875rem;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #B8B2A8;
  font-size: 0.875rem;
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: #B8B2A8;
  font-size: 0.875rem;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #B8B2A8;
  font-size: 0.875rem;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #610E16;
}

.contact-form__textarea {
  height: 11.25rem;
  resize: vertical;
}

.wpcf7-not-valid {
  border-color: #C43043 !important;
}

.wpcf7-not-valid-tip {
  display: block;
  color: #C43043;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.6666666667;
  margin-top: 0.25rem;
}

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

.wpcf7-spinner {
  display: none !important;
}

/*

Component: acceptance

***************************************/
.contact-form__acceptance-wrap {
  margin-top: 3rem;
  text-align: center;
}
@media (width < 576px) {
  .contact-form__acceptance-wrap {
    text-align: left;
  }
}

.contact-form__acceptance-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.contact-form__acceptance-input:checked + .contact-form__acceptance-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #C43043;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.contact-form__acceptance-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.5714285714;
  color: #2F2725;
  position: relative;
}
.contact-form__acceptance-label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.4375rem;
  height: 1.4375rem;
  border: 1px solid #CCC8C2;
  background-color: #fff;
  border-radius: 50%;
}

.contact-form__acceptance-link {
  color: #C43043;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/*

Component: submit button

***************************************/
.contact-form__submit-wrap {
  max-width: 23.3125rem;
  margin: 2.5rem auto 0;
}

.contact-form__submit {
  display: block;
  width: 100%;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.4666666667;
  padding: 1.25rem;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  border: 1px solid #CBCBCB;
  color: #E5E5E5;
  background-color: transparent;
}
.contact-form__submit.is-active {
  cursor: pointer;
  background-color: #610E16;
  pointer-events: auto;
}
@media (hover: hover) {
  .contact-form__submit:not(.is-inactive):hover {
    opacity: 0.8;
  }
}

/*

Section: confirm phase

***************************************/
.contact-form__confirm-table {
  border-top: 1px solid rgba(97, 14, 22, 0.15);
}

.contact-form__confirm-item {
  display: grid;
  grid-template-columns: 10rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(97, 14, 22, 0.15);
}
@media (width < 576px) {
  .contact-form__confirm-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.contact-form__confirm-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5714285714;
  color: #610E16;
}

.contact-form__confirm-value {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.7333333333;
  color: #2F2725;
  white-space: pre-wrap;
}

.contact-form__confirm-btns {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (width < 576px) {
  .contact-form__confirm-btns {
    grid-template-columns: 6.25rem 1fr;
    gap: 0.75rem;
  }
}

.contact-form__back {
  background-color: #fff;
  border: 1px solid #610E16;
  color: #610E16;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.5714285714;
  padding: 1.125rem;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
  .contact-form__back:hover {
    background-color: #610E16;
    color: #fff;
  }
}

/*

Section: thanks

***************************************/
.thanks {
  padding: 6.25rem 0 8.125rem;
  text-align: center;
}
@media (width < 893px) {
  .thanks {
    padding: 4.375rem 0 5.625rem;
  }
}

.thanks__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
}
@media (width < 893px) {
  .thanks__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

/*************************************

Project：others.scss

***************************************/
/*

Section: others-craft-beer

***************************************/
.others-craft-beer__emphasis {
  margin-top: 0;
  text-align: center;
}

.others-craft-beer__title {
  font-size: 1.875rem;
  letter-spacing: 0.03em;
  line-height: 1.4666666667;
  font-weight: 500;
  text-align: center;
  color: #2F2725;
  margin-top: 1rem;
}

/*

Section: others-craft-beer-feature

***************************************/
.others-craft-beer-feature {
  padding: 5rem 0 6.25rem;
}

.others-craft-beer-feature__heading {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.4583333333;
  font-weight: 500;
  color: #2F2725;
}

.others-craft-beer-feature__list {
  margin-top: 2.5rem;
}

.others-craft-beer-feature__item {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 3.125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 3.125rem 3.75rem;
  border-top: 1px solid #D9D9D9;
}
.others-craft-beer-feature__item:last-child {
  border-bottom: 1px solid #D9D9D9;
}
@media (width < 893px) {
  .others-craft-beer-feature__item {
    grid-template-columns: 1fr;
    padding: 1.875rem;
  }
}
@media (width < 576px) {
  .others-craft-beer-feature__item {
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

.others-craft-beer-feature__img-wrap {
  max-width: 12.5rem;
}
.others-craft-beer-feature__img-wrap img {
  aspect-ratio: 1/1;
}
@media (width < 893px) {
  .others-craft-beer-feature__img-wrap {
    margin: 0 auto;
  }
}

.others-craft-beer-feature__emphasis {
  margin-top: 0;
}

.others-craft-beer-feature__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.7333333333;
  margin-top: 0.75rem;
}

.others-craft-beer-feature__sub-img-wrap {
  max-width: 10rem;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .others-craft-beer-feature__sub-img-wrap {
    margin: 1.25rem auto 0;
  }
}
.others-craft-beer-feature__sub-img-wrap img {
  aspect-ratio: 160/100;
  -o-object-fit: contain;
     object-fit: contain;
}

/*

Section: error404

***************************************/
.error404 {
  padding: 6.25rem 0 8.125rem;
  text-align: center;
}
@media (width < 893px) {
  .error404 {
    padding: 4.375rem 0 5.625rem;
  }
}

.error404__title {
  font-size: 2.125rem;
}

.error404__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
}

.error404__btn {
  margin-top: 3.125rem;
}
@media (width < 893px) {
  .error404__btn {
    margin-top: 2.25rem;
  }
}

/*

Section: privacy-policy

***************************************/
.privacy-policy {
  padding-bottom: 8.125rem;
}
@media (width < 893px) {
  .privacy-policy {
    padding-bottom: 5.625rem;
  }
}

.privacy-policy__intro {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
  margin: 0 auto;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid rgba(97, 14, 22, 0.15);
}
@media (width < 893px) {
  .privacy-policy__intro {
    font-size: 0.875rem;
    line-height: 2;
    padding-bottom: 2.5rem;
  }
}

.privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  counter-reset: privacy-counter;
}

.privacy-policy__item {
  padding: 3.125rem 0;
  border-bottom: 1px solid rgba(97, 14, 22, 0.15);
}
@media (width < 893px) {
  .privacy-policy__item {
    padding: 2.25rem 0;
  }
}

.privacy-policy__heading {
  color: #610E16;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5555555556;
  margin-bottom: 1.25rem;
}
@media (width < 893px) {
  .privacy-policy__heading {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 0.875rem;
  }
}

.privacy-policy__text {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
}
.privacy-policy__text + .privacy-policy__text {
  margin-top: 1rem;
}
@media (width < 893px) {
  .privacy-policy__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.privacy-policy__sub-list {
  margin-top: 1rem;
  padding-left: 1.25rem;
}
.privacy-policy__sub-list li {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
  list-style: disc;
}
.privacy-policy__sub-list li + li {
  margin-top: 0.375rem;
}
@media (width < 893px) {
  .privacy-policy__sub-list li {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.privacy-policy__sub-list li a {
  border-bottom: 1px solid #000;
}

.privacy-policy__address {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #2F2725;
  margin-top: 1rem;
}
@media (width < 893px) {
  .privacy-policy__address {
    font-size: 0.875rem;
    line-height: 2;
  }
}