@charset "UTF-8";
/* リキッドレイアウト対応 */

.u-fw-300 {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
}

.u-fw-400 {
  font-weight: 400;
}

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

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

.u-xs {
  display: none;
}
@media only screen and (max-width: 389px) {
  .u-xs {
    display: block;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

body,
html {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Biryani", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.025em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
  color: #4d331b;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

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

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

body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

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

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

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

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

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

button {
  padding: 0;
}

/***************************************
ボタン
***************************************/
.c-btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
  background-color: #d17f05;
  border: 2px solid transparent;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 0.7692307692;
  padding: 0.625rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.c-btn > span {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 0.4615384615;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -320px;
  width: 320px;
  height: 160px;
  background: rgb(255, 255, 255);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0.5;
  z-index: 0;
  transition: all 0.3s ease-out;
}
@media (any-hover: hover) {
  .c-btn:hover::before, .c-btn:focus::before {
    top: 100%;
    left: 100%;
  }
}

.c-btn__primary-wrapper {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
  width: 24.875rem;
  height: 100%;
  aspect-ratio: 398/78;
}
@media screen and (max-width: 767px) {
  .c-btn__primary-wrapper {
    width: 17.6875rem;
    aspect-ratio: 283/58;
  }
}

.c-btn__primary {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: #d17f05;
  border: 2px solid transparent;
  color: #fff;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 0.5609756098;
  padding-inline: 1.25rem;
  -webkit-padding-before: 0.625rem;
          padding-block-start: 0.625rem;
  position: relative;
  visibility: visible;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .15);
  border-radius: 0.3125rem;
  z-index: 1;
  outline: 1px solid;
  outline-color: #d17f05;
  outline-offset: 0px;
}
@media screen and (max-width: 767px) {
  .c-btn__primary {
    padding-inline: 0.625rem;
    -webkit-padding-before: 0.3125rem;
            padding-block-start: 0.3125rem;
    font-size: 1rem;
    line-height: 0.5714285714;
  }
}
.c-btn__primary::after {
  content: "";
  display: block;
  width: 5.25rem;
  height: 0.0625rem;
  background: linear-gradient(to right, #fff 0%, #fff 48%, rgba(209, 127, 5, .3) 50%, #d17f05 52%, #d17f05 100%);
  position: absolute;
  top: 50%;
  right: -2.75rem;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-btn__primary::after {
    width: 3.625rem;
    right: -1.8125rem;
  }
}
@media (any-hover: hover) {
  .c-btn__primary:hover {
    -webkit-animation: light 0.8s infinite;
            animation: light 0.8s infinite;
  }
}
@-webkit-keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}

.c-btn__primary-text {
  display: inline-block;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-btn__primary-icon {
  flex-shrink: 0;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 0.3125rem;
}
.c-btn__primary-icon.--reverse {
  width: 2.1875rem;
  height: 2rem;
  background-image: url(../images/common/reserve-icon.svg);
}
.c-btn__primary-icon.--contact {
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(../images/common/contact-icon.svg);
}

/* ハンバーガーボタン
------------------------------------------------ */
body.is-active {
  pointer-events: none;
  overflow: hidden;
}

.c-hamburger {
  width: 1.6875rem;
  height: 0.6875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.c-hamburger .c-hamburger__line {
  display: block;
  width: 100%;
  height: 0.11875rem;
  background-color: #4d331b;
  border-radius: 0.0625rem;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.c-hamburger .c-hamburger__line:nth-child(2) {
  opacity: 0;
}

/***************************************
タイトル
***************************************/
.c-main-title__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-main-title__wrapper .heading-small {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-main-title__wrapper .heading-small {
    font-size: 0.8125rem;
    line-height: 1.7692307692;
  }
}

.c-main-title {
  position: relative;
  padding-inline: 2.1875rem;
}
.c-main-title::before, .c-main-title::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 0.1875rem;
  background-color: #4d331b;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-main-title::before, .c-main-title::after {
    width: 0.9375rem;
    height: 0.125rem;
  }
}
.c-main-title::before {
  left: 0;
  margin-right: 0.875rem;
}
.c-main-title::after {
  right: 0;
  margin-left: 0.875rem;
}
.c-main-title .heading-big {
  display: block;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7714285714;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-main-title .heading-big {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}

/***************************************
お問い合わせ（共通箇所）
***************************************/
.l-contact {
  width: 100%;
  padding-block: 3.4375rem 3.9375rem;
  position: relative;
}
.l-contact::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  max-height: 21.5rem;
  background-image: url(../images/common/contact-bg.svg);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.6358 0.4614 0.1134 0 0 0.20939999999999998 0.8116000000000001 0.1008 0 0 0.1632 0.3204 0.4786 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.7638999999999999 0.21450000000000002 0.0216 0 0 0.06390000000000001 0.9215 0.0216 0 0 0.06390000000000001 0.21450000000000002 0.7215999999999999 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: sepia(60%) brightness(105%) hue-rotate(-10deg) saturate(70%);
          filter: sepia(60%) brightness(105%) hue-rotate(-10deg) saturate(70%);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-contact::after {
    background-image: url(../images/common/contact-bg-sp.svg);
    background-size: cover;
    background-position: bottom center;
  }
}
.l-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(2px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, .4) 100%);
}
@media screen and (max-width: 767px) {
  .l-contact .l-contact::before {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px);
  }
}

.l-contact__inner {
  width: min(100% - 3.125rem, 43.6875rem);
  margin-inline: auto;
}

.l-contact__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-contact__content {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-contact__content {
    margin-top: 0;
  }
}

.l-inner {
  width: 100%;
  max-width: 1416px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 644px;
    padding-right: 22px;
    padding-left: 22px;
  }
}

.l-section {
  width: min(100% - 3.125rem, 61.375rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-section {
    width: calc(100% - 2.75rem);
  }
}

/***************************************
ページ共通
****************************************/
/*ファーストビュー*/
.l-fv__inner {
  width: 100%;
  height: 100%;
  padding-block: 12.5rem 11.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-fv__inner {
    padding-block: 7.25rem 5.5rem;
  }
}

.l-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.l-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-fv__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, .4);
  pointer-events: none;
}

.l-fv__content {
  width: min(100% - 50px, 1366px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-fv__content {
    width: calc(100% - 2.75rem);
  }
}

.l-fv__title {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .l-fv__title {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}
.l-fv__title > span {
  display: block;
}

/***************************************
l-media-item
****************************************/
.l-media__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .l-media__item {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }
}

.l-media__item-body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-media__item-body {
    gap: 0.9375rem;
  }
}

.l-media__item-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
}
@media screen and (max-width: 767px) {
  .l-media__item-title {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.l-media__item-text {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.l-media__item-text > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-media__item-text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
    gap: 0.9375rem;
  }
}

.l-media__item-image {
  display: block;
  height: 16.375rem;
  margin: 0;
  flex: 0 0 27.25rem;
  aspect-ratio: 436/262;
}
.l-media__item-image.--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .l-media__item-image {
    flex: 1 1 100%;
    height: auto;
    aspect-ratio: 355/213;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.l-media__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 218/262;
}
@media screen and (max-width: 767px) {
  .l-media__item-image img {
    aspect-ratio: 355/213;
  }
}

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

****************************************/
/***************************************
swiper
****************************************/
.snow-monkey-form ::-webkit-input-placeholder {
  color: #D0D0D0;
  font-size: 1rem;
}
.snow-monkey-form ::-ms-input-placeholder {
  color: #D0D0D0;
  font-size: 1rem;
}
.snow-monkey-form ::placeholder {
  color: #D0D0D0;
  font-size: 1rem;
}

.smf-form--simple-table .smf-item {
  align-items: center;
}
.smf-form--simple-table .smf-item.--align-start {
  align-items: flex-start;
}

.smf-form--simple-table .smf-item__col--label {
  flex: 0 0 12.0625rem;
  max-width: 12.0625rem;
  padding-right: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .smf-form--simple-table .smf-item__col--label {
    max-width: 100%;
    padding-bottom: 0.625rem;
  }
}

.smf-form--simple-table .smf-item__col--controls {
  flex: 1 1 calc(100% - 12.0625rem);
  max-width: calc(100% - 12.0625rem);
}
@media screen and (max-width: 767px) {
  .smf-form--simple-table .smf-item__col--controls {
    max-width: 100%;
  }
}

.smf-form .smf-text-control__control {
  background-color: transparent;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  padding: 0.25rem 1.25rem;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #CDC6B2;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-text-control__control {
    font-size: 1rem;
  }
}

.smf-form .smf-radio-button-control__control {
  -webkit-appearance: none;
          appearance: none;
  background-color: var(--_color-white);
  border-radius: 100%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .035);
  cursor: pointer;
  display: inline-block;
  flex: 0 0 auto;
  height: 1.375rem;
  /* margin: calc(var(--_half-leading) * 1em) 0 0; */
  position: relative;
  width: 1.375rem;
  margin: 0;
  border-color: #4D331B;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-radio-button-control__control {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.smf-radio-button-control__label {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .smf-radio-button-control__label {
    font-size: 1rem;
  }
}

.smf-form .smf-radio-button-control__control:checked {
  background-color: #4D331B;
  border-color: #4D331B;
}

.smf-form .smf-textarea-control__control {
  background-color: var(--_color-white);
  box-shadow: none;
  display: block;
  max-width: 100%;
  padding: 0.9375rem 1.25rem;
  width: 100%;
  height: 15rem;
  border: 1px solid #CDC6B2;
  border-radius: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-textarea-control__control {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .wp-block-snow-monkey-forms-item.smf-item.privacy-policy {
    text-align: center;
  }
}

.smf-form .smf-checkbox-control__control {
  border-radius: 0;
  box-shadow: none;
  height: 1.125rem;
  margin: 0;
  width: 1.125rem;
  border-color: #4D331B;
}

.smf-form .smf-checkbox-control__control:checked {
  background-color: #4D331B;
  border-color: #4D331B;
}

.smf-checkbox-control__label {
  color: #4D331B;
  font-size: 0.875rem;
  font-weight: 400;
}
.smf-checkbox-control__label a {
  color: #35B8F2;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .smf-checkbox-control__label a:hover {
    text-decoration: none;
  }
}

.smf-form--simple-table + .smf-action {
  margin-top: 0;
}

.smf-action .smf-button-control__control {
  background-color: #D17F04;
  background-image: none;
  border-radius: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  max-width: 16.875rem;
  padding: 1.25rem;
  border: 0;
  border-radius: 0;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .smf-action .smf-button-control__control:hover {
    background-color: #dd9f43;
  }
}

.thanks-text {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .thanks-text {
    text-align: left;
  }
}

.top-back {
  margin-top: 2.5rem;
  text-align: center;
}
.top-back a {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  display: inline-block;
  width: 100%;
  max-width: 16.875rem;
  padding: 1.25rem 1.25rem 0.9375rem;
  background-color: #d17f05;
}
@media (any-hover: hover) {
  .top-back a:hover {
    background-color: #dd9f43;
  }
}

/*
about
*/
.p-thought {
  width: 100%;
}

.p-thought__inner {
  width: 100%;
  margin-inline: auto;
  padding-block: 4.25rem 3.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-thought__inner {
    padding-block: 2.5625rem 3.0625rem;
  }
}

.p-thought__content {
  width: 56.0625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-thought__content {
    width: calc(100% - 40px);
  }
}

.p-thought__title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7714285714;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thought__title {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}

.p-thought__text {
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.1428571429;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.p-thought__text > * {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-thought__text .text {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-thought__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-thought__thought {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 2.15625rem;
  width: 1.0625rem;
  height: 16.8125rem;
}
.p-thought__thought-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-thought__thought {
    display: none;
  }
}

/***************************************
ストーリー
***************************************/
.p-story {
  width: 100%;
  background-image: url("../../assets/images/page/about-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-story {
    width: 100%;
    background-image: url("../../assets/images/page/about-bg-sp.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

.p-story__inner {
  width: min(100% - 50px, 1366px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-story__inner {
    width: calc(100% - 2.75rem);
  }
}

.p-story__content {
  width: 57.25rem;
  margin-left: 7.375rem;
  color: #fff;
  padding-block: 8.625rem 8.1875rem;
}
@media screen and (max-width: 767px) {
  .p-story__content {
    width: 100%;
    margin-left: 0;
    padding-block: 3.4375rem;
  }
}

.p-story__title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7714285714;
}
@media screen and (max-width: 767px) {
  .p-story__title {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.p-story__text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8571428571;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  -webkit-margin-before: 1.375rem;
          margin-block-start: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-story__text {
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.9230769231;
    -webkit-margin-before: 1.0625rem;
            margin-block-start: 1.0625rem;
    gap: 1.25rem;
  }
}
.p-story__text > * {
  display: block;
}

.p-story__image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 2.1875rem;
  margin-right: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-story__image-wrapper {
    display: none;
  }
}

.p-story__image {
  display: block;
  width: 7.125rem;
  height: 7.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
スタッフ
***************************************/
.p-staff {
  width: 100%;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.25rem 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-staff {
    padding-block: 2.75rem;
  }
}

.p-staff__inner {
  width: min(100% - 3.125rem, 68.4375rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-staff__inner {
    width: calc(100% - 2.75rem);
  }
}

.p-staff__content-wrapper {
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
  display: flex;
  flex-direction: column;
  gap: 3.5625rem;
}

.p-staff__item {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-staff__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
  }
}

.p-staff__image-wrapper {
  flex: 0 0 19.125rem;
  aspect-ratio: 306/302;
}
@media screen and (max-width: 767px) {
  .p-staff__image-wrapper {
    width: 17.125rem;
    aspect-ratio: 274/270;
  }
}

.p-staff__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff__body {
  flex: 1 1 auto;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-staff__body {
    width: 17.125rem;
  }
}

.p-staff__name {
  display: flex;
  align-items: center;
  gap: 1.0625rem;
}
.p-staff__name-ja {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.7666666667;
}
@media screen and (max-width: 767px) {
  .p-staff__name-ja {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}
.p-staff__name-en {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  font-family: "Biryani", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-staff__name-en {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-staff__job {
  -webkit-margin-before: -0.3125rem;
          margin-block-start: -0.3125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-staff__job {
    font-size: 0.8125rem;
  }
}

.p-staff__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4285714286;
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-staff__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
    -webkit-margin-before: 1.125rem;
            margin-block-start: 1.125rem;
  }
}
.p-staff__text .text {
  display: block;
}
.p-staff__text .text:not(:first-child) {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

/***************************************
brand
***************************************/
.p-brand {
  width: 100%;
  padding-block: 3.625rem 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-brand {
    padding-block: 3.25rem;
  }
}

.p-brand__inner {
  width: min(100% - 3.125rem, 44.125rem);
  margin-inline: auto;
}

.p-brand__content-wrapper {
  -webkit-margin-before: 2.5625rem;
          margin-block-start: 2.5625rem;
}

.p-fabric__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .p-fabric__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-fabric__item {
  display: block;
  aspect-ratio: 141/117;
}
.p-fabric__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
order
****************************************/
.p-order {
  width: 100%;
  background-image: url("../../assets/images/page/page-pattern-brown-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.625rem 4.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-order {
    padding-block: 1.9375rem 3.4375rem;
  }
}
.p-order::before, .p-order::after {
  content: "";
  display: block;
  width: 4px; /* ドットの直径 */
  height: 89.5%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .48) 2px, transparent 2px);
  background-size: 4px 12px; /* 横幅 = 4px, 縦の感覚 = 行間12px */
  background-repeat: repeat-y;
}
@media screen and (max-width: 767px) {
  .p-order::before, .p-order::after {
    display: none;
  }
}
.p-order::before {
  position: absolute;
  top: 50%;
  left: 3.75rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-order::after {
  position: absolute;
  top: 50%;
  right: 3.75rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-order__inner {
  width: min(100% - 3.125rem, 54.1875rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-order__inner {
    width: calc(100% - 5rem);
  }
}

.p-order__heading.c-main-title__wrapper {
  color: #fff;
}
.p-order__heading.c-main-title__wrapper .p-order__title::before, .p-order__heading.c-main-title__wrapper .p-order__title::after {
  background-color: #fff;
}

.p-order__content-list {
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-order__content-item {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 1.375rem;
  padding: 1.4375rem 1.4375rem 1.4375rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-order__content-item {
    padding: 0.8125rem 0.8125rem 0.8125rem 0.46875rem;
    gap: 1rem;
  }
}

.p-order__content-number {
  flex: 0 0 4.25rem;
  height: 4.25rem;
  aspect-ratio: 68/68;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
  color: #fff;
  background-color: #cdc6b2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  -webkit-padding-before: 0.3125rem;
          padding-block-start: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-order__content-number {
    flex: 0 0 3.1875rem;
    height: 3.1875rem;
    aspect-ratio: 51/51;
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.p-order__content-body {
  flex: 1 1 auto;
}

.p-order__content-heading {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
}
@media screen and (max-width: 767px) {
  .p-order__content-heading {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-order__content-text {
  font-size: 0.8625rem;
  font-weight: 300;
  line-height: 1.8115942029;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-order__content-text {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

/*
会社概要
*/
.p-company {
  margin-block: 3.375rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    margin-block: 1.875rem 2.5rem;
  }
}

.p-company__inner {
  width: min(100% - 3.4375rem, 77.9375rem);
  margin-inline: auto;
  padding: 3.25rem 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    width: calc(100% - 2.75rem);
    flex-direction: column;
    gap: 3.125rem;
    padding: 1.25rem 0;
  }
}

.p-company__images-item {
  aspect-ratio: 118/152;
  width: 7.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__images-item {
    width: 5.625rem;
  }
}

.p-company__content {
  flex: 0 0 29.375rem;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company__content {
    width: 100%;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-company__content {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    flex: 1 1 100%;
  }
}

.p-company__content-item {
  display: flex;
  gap: 1.5625rem;
}

.p-company__content-item-label {
  flex: 1 1 19%;
}
@media screen and (max-width: 767px) {
  .p-company__content-item-label {
    flex: 1 1 30%;
  }
}
@media screen and (max-width: 480px) {
  .p-company__content-item-label {
    flex: 1 1 34%;
  }
}

.p-company__content-item-value {
  flex: 1 1 80%;
}
.p-company__content-item-value > span {
  display: block;
}
.p-company__content-item-value .sm {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-company__content-item-value .sm {
    display: block;
  }
}

/*
お問い合わせ
*/
.p-contact__content {
  padding-block: 4.8125rem 7.5rem;
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-drawer {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    background-color: #e6dbc8;
    display: block;
  }
}

.p-drawer__header {
  width: calc(100% - 2.75rem);
  min-height: 3.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  gap: 1rem;
}

.p-drawer__logo {
  width: 15rem;
}
@media screen and (max-width: 480px) {
  .p-drawer__logo {
    width: 10.6875rem;
  }
}

.p-drawer__logo a {
  display: block;
  width: 15rem;
  aspect-ratio: 240/46;
}
@media screen and (max-width: 480px) {
  .p-drawer__logo a {
    width: 10.6875rem;
    aspect-ratio: 171/33;
  }
}
.p-drawer__logo a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__close {
  width: 1.6875rem;
  height: 1.6875rem;
  position: relative;
  cursor: pointer;
}
.p-drawer__close .p-drawer__close-line {
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #4d331b;
  border-radius: 0.0625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform-origin: center;
          transform-origin: center;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.p-drawer__close .p-drawer__close-line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-drawer__close .p-drawer__close-line:nth-child(2) {
  opacity: 0;
}
.p-drawer__close .p-drawer__close-line:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-drawer.is-active {
  visibility: visible;
  opacity: 1;
}

.p-drawer__inner {
  -webkit-margin-before: 3.8125rem;
          margin-block-start: 3.8125rem;
  padding-bottom: 15%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-drawer__content {
  width: min(100% - 3.125rem, 19.125rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.p-drawer__nav-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.p-drawer__nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-drawer__nav-link .text-en {
  display: block;
  font-size: 1.25rem;
  line-height: 0.7692307692;
  font-weight: 800;
}
.p-drawer__nav-link .text-ja {
  display: block;
  font-size: 0.8125rem;
  line-height: 0.5;
  font-weight: 600;
}

.p-drawer__btn-inner {
  -webkit-margin-before: 3.25rem;
          margin-block-start: 3.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.p-drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.75rem;
  background-color: #fff;
  font-size: 1rem;
  line-height: 0.8421052632;
  font-weight: 700;
}
.p-drawer__btn--reserve {
  gap: 0.4rem;
  height: 4.25rem;
}
.p-drawer__btn--contact {
  height: 3.0625rem;
}
.p-drawer__btn .text {
  display: block;
  -webkit-margin-before: 0.4375rem;
          margin-block-start: 0.4375rem;
}

.p-drawer__btn-icon {
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(../../assets/images/common/btn-logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.p-drawer__sns-inner {
  -webkit-margin-before: 5.0625rem;
          margin-block-start: 5.0625rem;
  justify-self: flex-end;
  width: 5.875rem;
  margin-left: auto;
}

.p-drawer__sns-list {
  display: flex;
  gap: 0.875rem;
}

.p-drawer__sns-link {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.p-drawer__sns-icon {
  display: block;
  width: 100%;
  height: 100%;
}

/*
フッター
*/
.p-footer {
  width: 100%;
  background-image: url(../images/common/footer-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1.25rem 0;
  color: #fff;
}

.p-footer__nav-inner {
  width: min(100% - 3.125rem, 76.5625rem);
  margin-inline: auto;
  -webkit-margin-before: 5.5625rem;
          margin-block-start: 5.5625rem;
  display: flex;
  align-items: center;
  gap: 11.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-inner {
    width: calc(100% - 3.125rem);
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
    flex-direction: column;
    gap: 3.125rem;
  }
}

.p-footer__logo {
  width: 17.1875rem;
  height: 3.375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .p-footer__logo a:hover {
    opacity: 0.7;
  }
}

.p-footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
  }
}

.p-footer__nav-link {
  width: -webkit-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-footer__nav-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.625rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link::after {
    bottom: -0.3125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-footer__nav-link .text-en {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 0.6923076923;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link .text-en {
    font-size: 1rem;
    line-height: 1.125;
  }
}
.p-footer__nav-link .text-ja {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link .text-ja {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}

.p-footer__item-inner {
  width: calc(100% - 6rem);
  margin-inline: auto;
  -webkit-margin-before: 3.21875rem;
          margin-block-start: 3.21875rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__item-inner {
    -webkit-margin-before: 3.1875rem;
            margin-block-start: 3.1875rem;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 2.325rem;
  }
}

.p-footer__sns-list {
  display: flex;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-list {
    gap: 1.6875rem;
  }
}

.p-footer__sns-item a {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-item a {
    display: block;
    width: 2.4375rem;
    height: 2.5rem;
  }
}
.p-footer__sns-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .p-footer__sns-item a:hover {
    opacity: 0.7;
  }
}

.p-footer__item-copy {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 0.6666666667;
}

/*
フロントページ
*/
.p-front__mv {
  position: relative;
}

/***************************************
spのみbtn
****************************************/
.p-contactBtn__wrapper {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-contactBtn__wrapper {
    display: block;
    width: 96.1538461538%;
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
}

.p-front__movie {
  aspect-ratio: 1366/770;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-front__movie {
    aspect-ratio: initial;
    height: 100vh;
  }
}
.p-front__movie video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contactBtn__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  width: 100%;
  min-height: 3.4375rem;
  gap: 0.3125rem;
}

.p-contactBtn__link {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e6dbc8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  padding: 0.625rem;
}
.p-contactBtn__link--reserve {
  gap: 0.625rem;
}

.p-contactBtn__icon {
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url("../../assets/images/common/logo-medium.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-contactBtn__text {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.9333333333;
  color: #fff;
  -webkit-margin-before: 0.375rem;
          margin-block-start: 0.375rem;
}

/***************************************
フロントページmain
****************************************/
.p-front__image-section {
  position: relative;
}
.p-front__title {
  position: sticky;
  top: calc(50vh + 10vw);
  width: 100%;
  text-indent: -9999px;
  pointer-events: none;
  z-index: 1;
  background-color: transparent;
}
.p-front__title::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100%);
          transform: translateX(-50%) translateY(-100%);
  width: 44.0625rem;
  height: 18.125rem;
  background-image: url("../images/front/icon-big-column.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
@media only screen and (min-width: 1550px) {
  .p-front__title {
    top: calc(42vh + 10vw);
  }
}
@media (max-width: 1023px) {
  .p-front__title {
    top: calc(26vh + 10vw);
  }
}
@media (max-width: 830px) {
  .p-front__title {
    top: calc(22vh + 10vw);
  }
}
@media screen and (max-width: 767px) {
  .p-front__title {
    top: calc(45vh + 10vw);
  }
  .p-front__title::after {
    width: 25rem;
    height: 5rem;
    background-image: url("../images/front/icon-big-column-sp.png");
  }
}
@media screen and (max-width: 480px) {
  .p-front__title {
    top: 38vh;
  }
  .p-front__title::after {
    width: 20.9375rem;
    height: 4.0625rem;
  }
}
@media screen and (max-width: 390px) {
  .p-front__title {
    top: 35vh;
  }
  .p-front__title::after {
    width: 20.9375rem;
    height: 4.0625rem;
  }
}

.p-front__image-wrapper {
  width: 100%;
  height: 100%;
}

.p-front__image-wrapper-item {
  display: block;
  width: 100%;
}
.p-front__image-wrapper-item .p-front__image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-front__image-wrapper-item .p-front__image {
    width: 100%;
    height: 100%;
  }
}

.p-front__image-item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-front__image-item-wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-front__image-item-wrapper.--desktop {
    display: none;
  }
}

.p-front__image-item {
  display: block;
}

.p-front__image {
  width: 100%;
}
/***************************************
INTRODUCTION
****************************************/
.p-introduction {
  width: 100%;
  position: relative;
  -webkit-padding-before: 5.875rem;
          padding-block-start: 5.875rem;
  -webkit-margin-after: 11.125rem;
          margin-block-end: 11.125rem;
  padding-bottom: 6.5rem;
}
.p-introduction::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 84.92%;
  height: 100%;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-introduction {
    -webkit-padding-before: 2.8125rem;
            padding-block-start: 2.8125rem;
    -webkit-margin-after: 5.4375rem;
            margin-block-end: 5.4375rem;
    padding-bottom: 0;
  }
}

.p-introduction__inner .first-item {
  width: 77.7452415813%;
  aspect-ratio: 1062/582;
  position: relative;
}
@media screen and (max-width: 480px) {
  .p-introduction__inner .first-item {
    width: 93%;
    aspect-ratio: 335/235;
  }
}
.p-introduction__inner .first-item__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (any-hover: hover) {
  .p-introduction__inner .first-item__link:hover .first-item__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-introduction__inner .first-item__image-wrapper {
  aspect-ratio: 1062/582;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .first-item__image-wrapper {
    aspect-ratio: 335/235;
  }
}
.p-introduction__inner .first-item__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  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;
}
.p-introduction__inner .first-item__body {
  position: absolute;
  top: 26.98%;
  left: 10.83%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .first-item__body {
    top: 26.98%;
    left: 5.83%;
  }
}
.p-introduction__inner .first-item__title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.p-introduction__inner .first-item__title .en {
  display: block;
  font-size: 2.5rem;
  line-height: 1.75;
}
@media screen and (max-width: 480px) {
  .p-introduction__inner .first-item__title .en {
    font-size: 1.5625rem;
    line-height: 1.4;
  }
}
.p-introduction__inner .first-item__title .ja {
  display: block;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  -webkit-margin-before: -0.3125rem;
          margin-block-start: -0.3125rem;
}
@media screen and (max-width: 480px) {
  .p-introduction__inner .first-item__title .ja {
    font-size: 0.75rem;
    line-height: 1.75;
  }
}
.p-introduction__inner .first-item__text-wrapper {
  display: flex;
  flex-direction: column;
  -webkit-margin-before: 2.375rem;
          margin-block-start: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .first-item__text-wrapper {
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}
.p-introduction__inner .first-item__text {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .first-item__text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}
.p-introduction__inner .first-item__more-wrapper {
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 10.3125rem;
  z-index: 1;
  color: #fff;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .first-item__more-wrapper {
    bottom: 0.625rem;
    right: 0;
    width: 5.5625rem;
    margin-right: 0.875rem;
    aspect-ratio: 89/21;
  }
}
.p-introduction__inner .first-item__more-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-introduction__inner .second-item {
  width: 94.4363103953%;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: flex;
  justify-content: flex-end;
  -webkit-margin-start: 4.75rem;
          margin-inline-start: 4.75rem;
  gap: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    width: 100%;
    flex-direction: column-reverse;
    gap: 1.25rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.p-introduction__inner .second-item__manufacture-item {
  width: 49.6899224806%;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__manufacture-item {
    width: 79.2%;
    -webkit-padding-before: 0;
            padding-block-start: 0;
    align-self: flex-start;
  }
}
.p-introduction__inner .second-item__manufacture-link {
  display: block;
  aspect-ratio: 641/443;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__manufacture-link {
    aspect-ratio: auto;
    height: 18.75rem;
    -webkit-margin-after: -2.5625rem;
            margin-block-end: -2.5625rem;
  }
}
@media only screen and (max-width: 550px) {
  .p-introduction__inner .second-item__manufacture-link {
    height: 11.8125rem;
  }
}
@media (any-hover: hover) {
  .p-introduction__inner .second-item__manufacture-link:hover .second-item__manufacture-image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-introduction__inner .second-item__manufacture-image-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 641/443;
  overflow: hidden;
}
.p-introduction__inner .second-item__manufacture-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  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;
}
.p-introduction__inner .second-item__manufacture-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.p-introduction__inner .second-item__manufacture-title .en {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__manufacture-title .en {
    font-size: 1.5625rem;
    line-height: 1.76;
  }
}
.p-introduction__inner .second-item__manufacture-title .ja {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2222222222;
  -webkit-margin-before: -0.3125rem;
          margin-block-start: -0.3125rem;
}
@media screen and (max-width: 480px) {
  .p-introduction__inner .second-item__manufacture-title .ja {
    font-size: 0.75rem;
    line-height: 1.75;
  }
}
.p-introduction__inner .second-item__more-wrapper {
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 10.3125rem;
  z-index: 1;
  color: #fff;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__more-wrapper {
    bottom: 0.625rem;
    right: 0;
    margin-right: 0.875rem;
    width: 5.5625rem;
    aspect-ratio: 89/21;
  }
}
.p-introduction__inner .second-item__more-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-introduction__inner .second-item__inner-item-wrapper {
  width: 50.3100775194%;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__inner-item-wrapper {
    width: 27.5rem;
    height: 18.125rem;
    align-self: flex-end;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__inner-item-wrapper {
    width: 79.2%;
    height: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .p-introduction__inner .second-item__inner-item-wrapper {
    height: 11.8125rem;
  }
}
.p-introduction__inner .second-item__inner-item-link {
  display: block;
  width: 100%;
  aspect-ratio: 649/443;
  color: #fff;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__inner-item-link {
    width: 100%;
    height: 18.125rem;
    aspect-ratio: auto;
  }
}
@media only screen and (max-width: 550px) {
  .p-introduction__inner .second-item__inner-item-link {
    height: 11.8125rem;
  }
}
@media (any-hover: hover) {
  .p-introduction__inner .second-item__inner-item-link:hover .second-item__inner-item-image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-introduction__inner .second-item__inner-item-image-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 649/443;
  overflow: hidden;
}
.p-introduction__inner .second-item__inner-item-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  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;
}
@media only screen and (max-width: 550px) {
  .p-introduction__inner .second-item__inner-item-image-wrapper {
    aspect-ratio: auto;
  }
}
.p-introduction__inner .second-item__inner-item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-introduction__inner .second-item__inner-item-title .en {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__inner-item-title .en {
    font-size: 1.5625rem;
    line-height: 1.76;
  }
}
.p-introduction__inner .second-item__inner-item-title .ja {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2222222222;
  -webkit-margin-before: -0.3125rem;
          margin-block-start: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__inner-item-title .ja {
    font-size: 0.75rem;
    line-height: 1.75;
  }
}
.p-introduction__inner .second-item__inner-item-title__inner-item-more-wrapper {
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 10.3125rem;
  z-index: 1;
  color: #fff;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__inner .second-item__inner-item-title__inner-item-more-wrapper {
    bottom: 0.625rem;
    right: 0;
    width: 5.5625rem;
    margin-right: 0.875rem;
    aspect-ratio: 89/21;
  }
}
.p-introduction__inner .second-item__inner-item-title__inner-item-more-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
NEWS
****************************************/
.p-news {
  width: 100%;
  min-height: 35.6875rem;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
  padding-block: 4.6875rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-news {
    min-height: auto;
    padding: 3.125rem 1.25rem;
  }
}
.p-news::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/front/news-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-news__item {
  max-width: 28.125rem;
}
.p-news__date {
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
.p-news__date .year {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7857142857;
  color: #fff;
}
.p-news__date .month-day {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
  color: #fff;
}

.p-news__link {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-news__link:hover .p-news__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-news__image-wrapper {
  flex: 0 0 14.125rem;
  width: 14.125rem;
  height: 14.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news__image-wrapper {
    flex: 1 1 9.375rem;
    width: 9.375rem;
    height: 9.375rem;
    aspect-ratio: 1/1;
  }
}
.p-news__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-news__body {
  flex: 1 1 14.125rem;
  padding: 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news__body {
    flex: 1 1 9.375rem;
    padding: 0.625rem;
  }
}

.p-news__content {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  color: #4d331b;
}

.p-news__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-news__button-link {
  display: block;
  width: 17rem;
  padding: 1.25rem 0.625rem 0.75rem;
  background-color: transparent;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news__button-link {
    padding: 1.25rem 0.625rem 0.9375rem;
  }
}
.p-news__button-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #4d331b;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news__button-link {
    width: 13.75rem;
    border-width: 1px;
  }
}
@media (any-hover: hover) {
  .p-news__button-link:hover {
    border-color: #4d331b;
  }
  .p-news__button-link:hover::before {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-news__button-text {
  font-size: 1.25rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-news__button-text {
    font-size: 0.875rem;
  }
}

/***************************************
INSTAGRAM
****************************************/
.p-instagram {
  width: 100%;
  height: 100%;
  -webkit-margin-before: 6.375rem;
          margin-block-start: 6.375rem;
}

.p-instagram__title {
  -webkit-margin-after: 0.8125rem;
          margin-block-end: 0.8125rem;
}

.p-instagram__inner {
  width: 100%;
  height: 100%;
}

/***************************************
  GREET
  ****************************************/
.p-greet {
  width: 100%;
  height: 100%;
  -webkit-margin-before: 7.875rem;
          margin-block-start: 7.875rem;
  position: relative;
}
.p-greet::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-greet::before {
    top: 3.125rem;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-greet {
    margin-top: 5rem;
  }
}

.p-greet__inner {
  width: 78.8433382138%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-greet__inner {
    width: calc(100% - 3.75rem);
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}

.p-greet__image-wrapper {
  display: block;
  flex-shrink: 0;
  width: 28.75rem;
  aspect-ratio: 460/473;
}
.p-greet__image-wrapper__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-greet__image-wrapper {
    width: 13.5rem;
    aspect-ratio: 216/197;
  }
}

.p-greet__body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-greet__body {
    -webkit-margin-before: -3.75rem;
            margin-block-start: -3.75rem;
    align-self: flex-start;
    gap: 1.0625rem;
    -webkit-padding-after: 2.125rem;
            padding-block-end: 2.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-greet__body {
    -webkit-margin-before: -2.5rem;
            margin-block-start: -2.5rem;
  }
}

.p-greet__title {
  display: flex;
  flex-direction: column;
}
.p-greet__title .en {
  display: block;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.0857142857;
}
@media screen and (max-width: 767px) {
  .p-greet__title .en {
    font-size: 1.4375rem;
    line-height: 1.1304347826;
  }
}
.p-greet__title .ja {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .p-greet__title .ja {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}

.p-greet__text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2.1428571429;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.p-greet__text span {
  display: block;
}
@media screen and (max-width: 480px) {
  .p-greet__text {
    font-size: 0.8125rem;
    line-height: 2.0769230769;
  }
}

/***************************************
CONTACT
****************************************/
.p-front-contact {
  width: 100%;
  height: 100%;
  -webkit-margin-before: 5.125rem;
          margin-block-start: 5.125rem;
}

.p-front-contact__inner {
  width: min(100% - 3.125rem, 43.6875rem);
  margin-inline: auto;
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header {
    position: absolute;
    top: 0;
    left: 0;
    height: 3.875rem;
  }
}

.p-header__inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.125rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    display: none;
  }
}

.p-header__pc-menu {
  width: calc(100% - 2.75rem);
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  gap: 1.875rem;
}

.p-header__logo {
  width: 14.75rem;
  flex-shrink: 0;
  margin-left: 0.8125rem;
}

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

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

.p-header__nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.25rem;
}

.p-header__nav-item {
  height: 100%;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 0.6538461538;
}
.p-header__nav-item a {
  display: flex;
  place-items: center;
  height: 100%;
  position: relative;
  white-space: nowrap;
}
.p-header__nav-item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.625rem;
  width: 100%;
  height: 1px;
  background-color: #4d331b;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.p-header__nav-button {
  width: 12.25rem;
  height: 3.875rem;
  aspect-ratio: 196/62;
}

.p-header__sp-menu {
  display: none;
}
@media (max-width: 767px) {
  .p-header__sp-menu {
    display: block;
  }
}

.p-header__sp-menu-inner {
  width: calc(100% - 2.75rem);
  margin-inline: auto;
  height: 100%;
  min-height: 3.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.p-header__sp-logo {
  width: 15rem;
  position: relative;
  z-index: 5;
}

.p-header__sp-logo a {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-header__sp-logo a {
    width: 15rem;
    aspect-ratio: 240/40;
  }
}
@media screen and (max-width: 480px) {
  .p-header__sp-logo a {
    width: 10.6875rem;
    aspect-ratio: 171/33;
  }
}

.p-header__sp-logo a img {
  width: 100%;
  height: auto;
}

.p-header__logo a img {
  width: 100%;
  height: auto;
}

.p-header__sp-menu-item {
  position: fixed;
  top: 1.25rem;
  right: 1.375rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-header__sp-menu-item-link {
  display: block;
  width: 1.6875rem;
  height: 1.5625rem;
  background-color: #4d331b;
  -webkit-mask-image: url(../../assets/images/common/reserve-icon.svg);
          mask-image: url(../../assets/images/common/reserve-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (any-hover: hover) {
  .p-header__sp-menu-item-link:hover {
    opacity: 0.7;
  }
}

.p-instagram__inner {
  width: 100%;
  max-width: 1030px;
  padding-inline: 25px;
  margin-inline: auto;
}

#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a, .et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a {
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  padding: 0.75rem 1.25rem 0.625rem 1.25rem;
  margin: 5px auto 0;
  background: #d17f05;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 0;
}

/*
itemcost
*/
.p-itemCost__heading {
  width: 100%;
  -webkit-margin-before: 3.375rem;
          margin-block-start: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-itemCost__heading {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-itemCost__heading-inner {
  width: min(100% - 3.125rem, 40.625rem);
  margin-inline: auto;
  padding-block: 5.625rem;
  position: relative;
}
.p-itemCost__heading-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/page/logo-bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -1.875rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-itemCost__heading-inner {
    padding-block: 1.875rem;
    width: calc(100% - 2.75rem);
  }
}

.p-itemCost__heading-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.125;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-itemCost__heading-title {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}
@media screen and (max-width: 480px) {
  .p-itemCost__heading-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-itemCost__heading-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.1428571429;
  text-align: center;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-itemCost__heading-text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

/***************************************
  アイテムポイント
  ****************************************/
.p-item__point {
  width: 100%;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-item__point-inner {
  display: flex;
  align-items: center;
  gap: 4.9125rem;
}
@media screen and (max-width: 767px) {
  .p-item__point-inner {
    width: calc(100% - 2.75rem);
    margin-inline: auto;
    flex-direction: column;
    gap: 1.875rem;
    padding-block: 3.125rem;
  }
}

.p-item__point-item-image {
  display: block;
  flex: 0 0 24.5625rem;
  aspect-ratio: 393/625;
}
.p-item__point-item-image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-item__point-item-image {
    flex: 1 1 auto;
    width: 17.75rem;
    aspect-ratio: 284/332;
  }
}

.p-item__point-item {
  flex: 1 1 auto;
  -webkit-padding-end: 3.125rem;
          padding-inline-end: 3.125rem;
  padding-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-item__point-item {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    padding-block: 0;
  }
}

.p-item__point-item-heading {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.2571428571;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-item__point-item-heading {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}
.p-item__point-item-heading::before {
  content: "";
  display: block;
  -webkit-margin-after: 0.375rem;
          margin-block-end: 0.375rem;
  flex-grow: 1;
  height: 4px;
  background-image: radial-gradient(circle, #fff 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: center;
}
.p-item__point-item-heading > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-item__point-item-heading {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}

.p-item__point-item-body {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.p-item__point-item-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-item__point-item-title {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}
.p-item__point-item-title:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.p-item__point-item-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
  .p-item__point-item-text {
    -webkit-margin-before: 0.3125rem;
            margin-block-start: 0.3125rem;
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

/***************************************
  アイテム
  ****************************************/
.p-items {
  width: 100%;
  padding-block: 5.5625rem 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-items {
    padding-block: 3.4375rem;
  }
}

.p-items__wrapper {
  width: min(100% - 3.125rem, 70.9375rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-items__wrapper {
    width: calc(100% - 2.75rem);
  }
}

.p-items__item {
  padding-block: 4.375rem;
  border-bottom: 1px solid #d17f05;
}
.p-items__item:last-child {
  -webkit-padding-after: 0;
          padding-block-end: 0;
  border-bottom: none;
}
.p-items__item:first-child {
  -webkit-padding-before: 0;
          padding-block-start: 0;
}
@media screen and (max-width: 767px) {
  .p-items__item {
    padding-block: 2.1875rem;
  }
}

.p-items__item-heading {
  display: flex;
  align-items: flex-end;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-items__item-heading {
    align-items: center;
    gap: 1.25rem;
  }
}

.p-items__item-title {
  width: -webkit-fit-content;
  width: fit-content;
}
.p-items__item-title .title-en {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .p-items__item-title .title-en {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}
.p-items__item-title .title-ja {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767px) {
  .p-items__item-title .title-ja {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-items__item-price {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-items__item-price {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.p-items__item-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8571428571;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-items__item-text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-items__item-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5375rem;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-items__item-images {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
    gap: 0.3125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-items__item-images {
    gap: 0.1875rem;
  }
}
.p-items__item-images picture {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 369/427;
}
@media screen and (max-width: 767px) {
  .p-items__item-images picture {
    aspect-ratio: 284/332;
  }
}
.p-items__item-images img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 369/427;
}
@media screen and (max-width: 767px) {
  .p-items__item-images img {
    aspect-ratio: 284/332;
  }
}

/***************************************
  料金表
  ****************************************/
.p-items__price {
  width: 100%;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-items__price {
    padding-block: 3.4375rem;
  }
}

.p-items__price-inner {
  width: min(100% - 3.125rem, 70.9375rem);
  margin-inline: auto;
  background-color: #fff;
  padding: 2.5rem 6.25rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-items__price-inner {
    width: calc(100% - 2.75rem);
    padding: 1.875rem 3.125rem 3.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-items__price-inner {
    padding: 1.875rem 1.25rem 3.125rem;
  }
}

.p-items__price-item-wrapper {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-items__price-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.p-items__price-item-title {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
.p-items__price-item-title > span {
  display: inline-block;
}
.p-items__price-item-title .dot-line {
  flex-grow: 1;
  height: 0.1875rem;
  background-image: radial-gradient(circle, #4d331b 1.5px, transparent 1.5px);
  background-size: 6px 3px;
  background-repeat: repeat-x;
  background-position: center;
  margin: 0 0.6875rem 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-items__price-item-title {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.p-items__price-item-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8571428571;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-items__price-item-text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

/*
モノづくりについて
*/
.p-manufacture-about {
  width: 100%;
  padding-block: 2.4375rem 4.4375rem;
}
@media screen and (max-width: 767px) {
  .p-manufacture-about {
    padding-block: 1.5625rem 3.4375rem;
  }
}

.p-manufacture-about__inner {
  width: min(100% - 3.125rem, 69.9375rem);
  margin-inline: auto;
}

.p-manufacture-about__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}

.p-manufacture-about__image {
  display: block;
  width: 12.125rem;
  height: 12.125rem;
}
.p-manufacture-about__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-manufacture-about__image {
    width: 8.75rem;
    height: 8.75rem;
  }
}

.p-manufacture-about__title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7714285714;
}
@media screen and (max-width: 767px) {
  .p-manufacture-about__title {
    font-size: 1.4375rem;
    line-height: 1.7826086957;
  }
}

.p-manufacture-about__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}
.p-manufacture-about__text > * {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-manufacture-about__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

/***************************************
  モノづくり一覧
  ****************************************/
.p-manufacture-list {
  width: 100%;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 5.5625rem 9rem;
}
@media screen and (max-width: 767px) {
  .p-manufacture-list {
    padding-block: 3.4375rem;
  }
}

.p-manufacture-list__inner {
  width: min(100% - 3.125rem, 67.5rem);
  margin-inline: auto;
}

.p-manufacture-list__content {
  display: flex;
  flex-direction: column;
  gap: 6.09375rem;
}
@media screen and (max-width: 767px) {
  .p-manufacture-list__content {
    gap: 3.4375rem;
  }
}

.p-manufacture-list__content-item:first-child {
  -webkit-margin-before: 5.4375rem;
          margin-block-start: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .p-manufacture-list__content-item:first-child {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

/***************************************
  協力会社
  ****************************************/
.p-manufacture__businessCompany {
  width: 100%;
}

.p-manufacture__businessCompany-heading {
  width: min(100% - 3.125rem, 60rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8125rem;
  -webkit-margin-after: 4.8125rem;
          margin-block-end: 4.8125rem;
  -webkit-padding-before: 5.3125rem;
          padding-block-start: 5.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-manufacture__businessCompany-heading {
    width: calc(100% - 2.75rem);
    -webkit-margin-after: 3.4375rem;
            margin-block-end: 3.4375rem;
    -webkit-padding-before: 3.4375rem;
            padding-block-start: 3.4375rem;
  }
}
.p-manufacture__businessCompany-heading::before {
  content: "";
  display: block;
  width: 12.6875rem;
  height: 10.25rem;
  background-image: url("../../assets/images/page/logo-bg.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-manufacture__businessCompany-heading::before {
    width: 9.375rem;
    height: 7.5rem;
    top: 40%;
  }
}

.p-manufacture__businessCompany-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8571428571;
  text-align: center;
}

.p-manufacture__businessCompany-content {
  width: 100%;
  background-image: url("../../assets/images/page/page-pattern-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.625rem 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-manufacture__businessCompany-content {
    padding-block: 3.4375rem;
  }
}

.p-manufacture__businessCompany-content-item-wrapper {
  width: min(100% - 3.125rem, 60rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-manufacture__businessCompany-content-item-wrapper {
    width: calc(100% - 2.75rem);
  }
}

.p-store {
  display: flex;
  justify-content: space-between;
  gap: 3.5625rem;
  -webkit-margin-before: 4.8125rem;
          margin-block-start: 4.8125rem;
  -webkit-padding-after: 4.8125rem;
          padding-block-end: 4.8125rem;
  position: relative;
}
.p-store:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -75.5px;
  width: calc(100% + 151px);
  height: 0.0625rem;
  background-color: #d17f05;
}
.p-store:last-child {
  -webkit-padding-after: 0;
          padding-block-end: 0;
  border-bottom: none;
}
.p-store:last-child:after {
  display: none;
}
.p-store:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media screen and (max-width: 767px) {
  .p-store {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
  .p-store:after {
    left: 0;
    width: 100%;
  }
}

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

.p-store__title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
}
@media screen and (max-width: 767px) {
  .p-store__title {
    text-align: center;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-store__text {
  -webkit-margin-before: 1.0625rem;
          margin-block-start: 1.0625rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.1428571429;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.p-store__text > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-store__text {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

.p-store__image {
  flex: 0 0 21.625rem;
  display: block;
  aspect-ratio: 346/211;
}
@media screen and (max-width: 767px) {
  .p-store__image {
    flex: 1 1 auto;
    width: 18.75rem;
    aspect-ratio: 300/187;
  }
}
.p-store__image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-archive {
  padding-block: 6.875rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive {
    padding-block: 3.4375rem 4.6875rem;
  }
}

.p-news-archive__inner {
  max-width: 81.875rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.p-news-archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__list {
    display: block;
  }
}

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

.p-news-archive__date {
  color: #4d331b;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
.p-news-archive__date .year {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
  .p-news-archive__date .year {
    font-size: 0.875rem;
  }
}
.p-news-archive__date .month-day {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.76;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__date .month-day {
    font-size: 1.25rem;
  }
}

.p-news-archive__link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  background-color: #fff;
  border: 2px solid #4d331b;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-news-archive__link:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-news-archive__image-wrapper {
  height: 19.6875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-archive__image-wrapper {
    height: 12.5rem;
  }
}
.p-news-archive__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-news-archive__body {
  flex: 1 1 14.125rem;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news-archive__body {
    flex: 1 0 50%;
    padding: 0.625rem;
  }
}

.p-news-archive__content {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
  color: #4d331b;
}
@media screen and (max-width: 767px) {
  .p-news-archive__content {
    font-size: 1rem;
  }
}

.p-news-archive__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__button-wrapper {
    flex: 1 1 50%;
  }
}

.p-news-archive__no-post {
  font-size: 1.25rem;
  text-align: center;
  padding-block: 6.25rem;
}

.p-news-single {
  padding-block: 5rem;
}

.p-news-single__wrap {
  max-width: 58.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.p-news-single__content article {
  color: #4d331b;
}

.p-news-single__box {
  border: 2px solid #4d331b;
  padding: 2.875rem 4.125rem 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__box {
    padding: 1.25rem 1.875rem 1.875rem;
  }
}

.p-news-single__date {
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
.p-news-single__date .year {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
  .p-news-single__date .year {
    font-size: 0.875rem;
  }
}
.p-news-single__date .month-day {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.76;
  margin-top: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__date .month-day {
    font-size: 1.375rem;
    margin-top: -0.5rem;
  }
}

.p-news-single__thumbnail {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__thumbnail {
    margin-top: 0.9375rem;
  }
}
.p-news-single__thumbnail img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-single__title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.5rem;
  }
}

.p-news-single__block-editor {
  margin-top: 2.5rem;
}
.p-news-single__block-editor p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8571428571;
}
.p-news-single__block-editor p + p {
  margin-top: 1.5em;
}
.p-news-single__block-editor a {
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-news-single__block-editor a:hover {
    opacity: 0.7;
  }
}
.p-news-single__block-editor .wp-block-image {
  width: 50%;
  margin-top: 1.875rem;
}

.p-news-single__pager {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__pager {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-news-single__pager-item + .p-news-single__pager-item {
    margin-top: 2.5rem;
  }
}
.p-news-single__pager-item.--prev .p-news-single__pager-title::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 1.1875rem;
  margin-bottom: 0.25rem;
  background: url(../images/common/pager_arrow.png) no-repeat center/contain;
  flex-shrink: 0;
}
.p-news-single__pager-item.--next .p-news-single__pager-title::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 1.1875rem;
  margin-bottom: 0.25rem;
  background: url(../images/common/pager_arrow.png) no-repeat center/contain;
  flex-shrink: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-news-single__pager-item a {
  display: block;
  padding: 2.5rem;
  border: 2px solid #d17f05;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news-single__pager-item a {
    padding: 1.5625rem 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-news-single__pager-item a:hover {
    opacity: 0.7;
  }
}

.p-news-single__pager-title {
  color: #4d331b;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5294117647;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 2rem;
}
/*# sourceMappingURL=style.css.map */
