@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
}

/* 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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  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;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */

a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:focus-visible {
  opacity: 0.8;
}

html {
  scroll-padding-top: 3.75rem;
}

body {
  color: #002B3E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

img {
  height: auto;
  width: 100%;
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(6.25rem);
          transform: translateY(6.25rem);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.js-fadein.is-scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-drawer {
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding-top: 60px;
  padding-top: 3.75rem;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  z-index: 50;
}

.l-drawer[aria-hidden=false] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-header {
  bottom: auto;
  height: 60px;
  height: 3.75rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.l-lower {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.c-menu-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  height: 3.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 66px;
  width: 4.125rem;
}

.c-menu-button span {
  background-color: rgba(0, 43, 62, 0.6);
  display: block;
  height: 1px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 36px;
  width: 2.25rem;
}

.c-menu-button span::before,
.c-menu-button span::after {
  background-color: rgba(0, 43, 62, 0.6);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  -webkit-transform: translateY(-0.6875rem);
          transform: translateY(-0.6875rem);
}

.c-menu-button span::after {
  -webkit-transform: translateY(0.6875rem);
          transform: translateY(0.6875rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.c-no-post {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.c-section-heading1 {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(27.65%, #002B3E), color-stop(73.49%, rgba(0, 43, 62, 0.4)));
  background: linear-gradient(0deg, #002B3E 27.65%, rgba(0, 43, 62, 0.4) 73.49%);
  background-clip: text;
  font-family: "EB Garamond", serif;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 1;
}

.c-section-heading1--white {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(28.78%, #eef5f8), color-stop(72.65%, #67777e));
  background-image: linear-gradient(180deg, #eef5f8 28.78%, #67777e 72.65%);
}

.c-section-heading2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.c-section-heading2[data-english]::before {
  content: attr(data-english);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
  text-transform: uppercase;
}

.c-section-heading2--small {
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0;
}

.c-section-heading2--small[data-english]::before {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}

.c-section-title {
  color: #002B3E;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-section-title--lg {
  font-size: 32px;
  font-size: 2rem;
}

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

.c-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: justify;
}

/************************************************************************
* p-404
************************************************************************/
.p-404 {
  padding: 100px 0;
  padding: 6.25rem 0;
  text-align: center;
}

.p-404__title {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-404__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-404__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-404__link {
  background-color: #002B3E;
  color: #fff;
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-404__link:focus-visible {
  background-color: #A99355;
  opacity: 1;
}

.p-about-company {
  padding: 60px 0 90px;
  padding: 3.75rem 0 5.625rem;
}

.p-about-company__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about-company__item {
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
  padding: 1.25rem 0;
}
.p-about-company__item:first-child {
  padding-top: 0;
}

.p-about-company__dt {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5555555556;
}

.p-about-company__dd {
  -moz-column-gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
       -webkit-column-gap: 0.625rem;
               column-gap: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 10px;
  margin-top: 0.625rem;
  row-gap: 5px;
  row-gap: 0.3125rem;
}

.p-about-company__building {
  display: inline-block;
}

.p-about-company__map {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #002B3E;
  color: #002B3E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  height: 20px;
  height: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 0 5px;
  padding: 0 0.3125rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-about-company__map:focus-visible {
  background-color: #002B3E;
  color: #fff;
  opacity: 1;
}

.p-about-lead {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-about-lead__title::after {
  background: -webkit-gradient(linear, left top, right top, from(#7D7254), color-stop(50%, #EFEADA), to(#7D7254));
  background: linear-gradient(to right, #7D7254, #EFEADA 50%, #7D7254);
  content: "";
  display: block;
  height: 1px;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
  width: 178px;
  width: 11.125rem;
}

.p-about-lead__texts {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-about-lead__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2;
}
.p-about-lead__text + .p-about-lead__text {
  margin-top: 1lh;
}

.p-about-reason {
  background-color: #F2F3F4;
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-about-reason__list {
  counter-reset: reason;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about-reason__item {
  counter-increment: reason;
}
.p-about-reason__item + .p-about-reason__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-about-reason__img {
  aspect-ratio: 335/211;
  position: relative;
}
.p-about-reason__img::after {
  border: 1px solid #7D7254;
  bottom: 5px;
  bottom: 0.3125rem;
  content: "";
  left: 5px;
  left: 0.3125rem;
  position: absolute;
  right: 5px;
  right: 0.3125rem;
  top: 5px;
  top: 0.3125rem;
}
.p-about-reason__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-about-reason__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-about-reason__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}
.p-about-reason__header::before {
  content: counter(reason);
  font-family: "EB Garamond", serif;
  font-size: 76px;
  font-size: 4.75rem;
  font-style: italic;
  font-weight: 400;
  line-height: 0.8;
}

.p-about-reason__title {
  color: #002B3E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 5px;
  padding-top: 0.3125rem;
}

.p-about-reason__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-business {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-business__catch {
  color: #002B3E;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-business__lead {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-business__lead-text {
  color: #002B3E;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2;
}
.p-business__lead-text + .p-business__lead-text {
  margin-top: 1lh;
}

.p-business__block {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.p-business__block + .p-business__block {
  margin-top: 52px;
  margin-top: 3.25rem;
}

.p-business__img {
  aspect-ratio: 375/144;
  overflow: hidden;
}
.p-business__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-business__block-inner {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-business__block-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-business__block-texts {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-business__block-text {
  color: #002B3E;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}
.p-business__block-text + .p-business__block-text {
  margin-top: 1lh;
}

.p-business__service {
  background: -webkit-gradient(linear, left top, right top, from(#7D7254), color-stop(50%, #EFEADA), to(#7D7254));
  background: linear-gradient(to right, #7D7254, #EFEADA 50%, #7D7254);
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 1px;
}

.p-business__service-inner {
  background: #fff;
  padding: 20px 26px 18px;
  padding: 1.25rem 1.625rem 1.125rem;
}

.p-business__service-title {
  color: #002B3E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-business__service-list {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-business__service-item {
  color: #002B3E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  gap: 8px;
  gap: 0.5rem;
  line-height: 2;
}
.p-business__service-item::before {
  background-color: #002B3E;
  border-radius: 50%;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 4px;
  height: 0.25rem;
  margin-top: 0.5lh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  width: 0.25rem;
}

.p-contact {
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}

.p-contact__description-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}

.p-contact__form-wrap {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  max-width: 760px;
  max-width: 47.5rem;
}

.p-contact__confirm {
  display: none;
}

.p-contact__confirm-inner {
  margin: 0 auto;
  max-width: 760px;
  max-width: 47.5rem;
}

.p-contact__confirm-list {
  grid-gap: 1.5rem;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
}

.p-contact__confirm-item {
  grid-gap: 0.5rem;
  display: grid;
  gap: 8px;
  gap: 0.5rem;
}

.p-contact__confirm-label {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
}

.p-contact__confirm-value {
  border-bottom: 1px solid #D9D9D9;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  min-height: 48px;
  min-height: 3rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  white-space: pre-wrap;
}

.p-contact__confirm-buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact__confirm-back {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #002B3E;
  color: #002B3E;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  height: 56px;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  width: 300px;
  width: 18.75rem;
}
.p-contact__confirm-back:focus-visible {
  background-color: #A99355;
  border-color: #A99355;
  color: #fff;
}

.p-contact__confirm-submit {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #002B3E;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  height: 56px;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  width: 300px;
  width: 18.75rem;
}
.p-contact__confirm-submit:focus-visible {
  background-color: #A99355;
}

.p-contact--thanks {
  padding: 80px 0 100px;
  padding: 5rem 0 6.25rem;
}

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

.p-contact__thanks-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
}

.p-contact__thanks-texts {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-contact__thanks-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}
.p-contact__thanks-text span {
  display: inline-block;
}

.p-contact__thanks-btn-wrap {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-contact__thanks-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #002B3E;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  gap: 12px;
  gap: 0.75rem;
  height: 56px;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  width: 300px;
  width: 18.75rem;
}
.p-contact__thanks-btn::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  height: 0.1875rem;
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  width: 36px;
  width: 2.25rem;
}
.p-contact__thanks-btn:focus-visible {
  background-color: #A99355;
  opacity: 1;
}

/* （the_content()で出力したものへのスタイル） */
.p-content h2 {
  font-size: 140%;
  font-weight: 700;
}

.p-content h3 {
  font-size: 130%;
  font-weight: 700;
}

.p-content h4 {
  font-size: 120%;
  font-weight: 700;
}

.p-content h2:nth-of-type(1) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-content h2:nth-of-type(n + 2) {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-content figure:nth-child(n+2) {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.wp-block-file,
.p-content p:nth-child(n+2),
.p-content h3:nth-child(n+2),
.p-content h4:nth-child(n+2),
.p-content h2 + ul:nth-of-type(n + 2),
.p-content h2 + ol:nth-of-type(n + 2),
.p-content ol > li > ol:nth-of-type(n + 2),
.p-content figure {
  margin-top: 22px;
  margin-top: 1.375rem;
  max-width: 100%;
}

.p-content img {
  width: auto;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  margin-left: auto;
}

.p-content > ol {
  counter-reset: number 0;
}

.p-content > ol > li {
  padding-left: 24px;
  padding-left: 1.5rem;
  text-indent: -16px;
  text-indent: -1rem;
}

.p-content > ol > li:nth-child(n+10) {
  text-indent: -24px;
  text-indent: -1.5rem;
}

.p-content > ol > li::before {
  content: counter(number) ". ";
  counter-increment: number 1;
}

.p-content > ol > li > ol {
  counter-reset: number 0;
}

.p-content > ol > li > ol > li {
  padding-left: 24px;
  padding-left: 1.5rem;
  text-indent: -16px;
  text-indent: -1rem;
}

.p-content > ol > li > ol > li::before {
  content: counter(number, lower-alpha) ". ";
  counter-increment: number 1;
}

.p-content > ol > li > ol > li > ol {
  counter-reset: number 0;
}

.p-content > ol > li > ol > li > ol > li {
  padding-left: 22px;
  padding-left: 1.375rem;
}

.p-content > ol > li > ol > li > ol > li:nth-child(1) {
  text-indent: -12px;
  text-indent: -0.75rem;
}

.p-content > ol > li > ol > li > ol > li:nth-child(2) {
  text-indent: -16px;
  text-indent: -1rem;
}

.p-content > ol > li > ol > li > ol > li:nth-child(n+3) {
  text-indent: -20px;
  text-indent: -1.25rem;
}

.p-content > ol > li > ol > li > ol > li::before {
  content: counter(number, lower-roman) ". ";
  counter-increment: number 1;
}

.p-content ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-content ul > li::before {
  content: "・";
}

.p-content ul > li ol {
  counter-reset: number 0;
}

.p-content ul > li ol > li {
  padding-left: 2em;
  text-indent: -2em;
}

.p-content ul > li ol > li::before {
  content: "(" counter(number) ") ";
  counter-increment: number 1;
}

.p-content th {
  border: none;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-align: left;
}

.p-content td {
  border: none;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}

.p-content tr:nth-child(odd) th,
.p-content tr:nth-child(odd) td {
  background-color: #f9f9fb;
}

.p-content tr:nth-child(even) th,
.p-content tr:nth-child(even) td {
  background-color: #e5e8ed;
}

.p-content .wp-block-table thead {
  border-bottom: none;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  float: none;
  margin-left: auto;
}

.p-content a {
  word-wrap: break-word;
  word-wrap: break-word;
  text-decoration: underline;
}

.p-content .wp-block-group {
  background-color: #f7f8f8;
  border-radius: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  padding: 24px;
  padding: 1.5rem;
}

.p-content cite {
  font-style: normal;
}

.wp-block-file:not(.wp-element-button) a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: underline;
}

.wp-block-file:not(.wp-element-button) a::before {
  aspect-ratio: 1/1;
  background: url(../images/common/icon_pdf.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
  width: 24px;
  width: 1.5rem;
}

.p-cta {
  background-color: #002B3E;
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-cta__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  padding: 40px 20px 50px;
  padding: 2.5rem 1.25rem 3.125rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-cta__link:focus-visible {
  background-color: #A99355;
  opacity: 1;
}
.p-cta__link:focus-visible::after {
  background-color: #fff;
}
.p-cta__link:focus-visible .p-cta__heading {
  -webkit-text-fill-color: #fff;
  background: none;
}
.p-cta__link:focus-visible .p-cta__text {
  color: #fff;
}

.p-cta__link::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 62/7;
  background-color: #002B3E;
  content: "";
  margin-top: 10px;
  margin-top: 0.625rem;
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 62px;
  width: 3.875rem;
}

.p-cta__heading {
  font-size: 56px;
  font-size: 3.5rem;
}

.p-cta__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-drawer {
  background-color: #fff;
}

.p-drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 46px 0 39px;
  padding: 2.875rem 0 2.4375rem;
}

.p-drawer__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 309/291;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 34px;
  margin-top: 2.125rem;
  min-height: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 170px;
  width: 10.625rem;
}
.p-drawer__logo a {
  display: block;
  height: 100%;
  width: 100%;
}
.p-drawer__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-drawer__nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  gap: 2.0625rem;
}

.p-drawer__nav-item a {
  color: #002B3E;
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-drawer__nav-item a:focus-visible {
  color: #A99355;
  opacity: 1;
}

.p-drawer__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  background-color: #002B3E;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-top: 36px;
  margin-top: 2.25rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 254px;
  width: 15.875rem;
}
.p-drawer__cta::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 62/7;
  background-color: #fff;
  content: "";
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  width: 34px;
  width: 2.125rem;
}
.p-drawer__cta:focus-visible {
  background-color: #A99355;
  opacity: 1;
}

.p-footer {
  background-color: #fff;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-footer__inner {
  padding-left: 42px;
  padding-left: 2.625rem;
  padding-right: 42px;
  padding-right: 2.625rem;
}

.p-footer__logo {
  width: 289px;
  width: 18.0625rem;
}

.p-footer__logo a {
  aspect-ratio: 289/43;
  display: block;
}
.p-footer__logo a img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-footer__nav {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-footer__nav-link {
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1.225;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-footer__nav-link:focus-visible {
  color: #A99355;
  opacity: 1;
}

.p-footer__copyright {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-footer__copyright small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.4;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #c00;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  margin-top: 4px;
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  border-radius: 0.25rem;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  margin: 16px 0 0;
  margin: 1rem 0 0;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
}

.p-form__items {
  grid-gap: 1.5rem;
  display: grid;
  gap: 24px;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__item {
  grid-gap: 0.5rem;
  display: grid;
  gap: 8px;
  gap: 0.5rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__dt {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  gap: 5px;
  gap: 0.3125rem;
}

.p-form__required {
  color: #7D7254;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
}

.p-form__dd .wpcf7-checkbox {
  grid-gap: 0.4375rem;
  display: grid;
  gap: 7px;
  gap: 0.4375rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__dd label {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
}

.p-form__dd input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]),
.p-form__dd textarea {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 0.25rem;
  display: block;
  font-size: 16px;
  height: 60px;
  height: 3.75rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  width: 100%;
}

.p-form__dd input[type=checkbox] + span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  position: relative;
}

.p-form__dd input[type=checkbox] + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #002B3E;
  border-radius: 0.25rem;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-top: 4px;
  margin-top: 0.25rem;
  width: 26px;
  width: 1.625rem;
}

.p-form__dd input[type=checkbox]:checked + span::after {
  border-bottom: 2px solid #002B3E;
  border-right: 2px solid #002B3E;
  content: "";
  display: inline-block;
  height: 16px;
  height: 1rem;
  left: 8px;
  left: 0.5rem;
  margin: auto;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  width: 0.5rem;
}

.p-form__dd textarea {
  height: 240px;
  height: 15rem;
  resize: vertical;
}

.p-form__acceptance {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-form__acceptance input + span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  gap: 12px;
  gap: 0.75rem;
  line-height: 1.1428571429;
  position: relative;
}

.p-form__acceptance input + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #002B3E;
  border-radius: 0.25rem;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  min-height: 0;
  width: 26px;
  width: 1.625rem;
}

.p-form__acceptance input + span::after {
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  content: "";
  display: inline-block;
  height: 16px;
  height: 1rem;
  left: 10px;
  left: 0.625rem;
  position: absolute;
  top: calc(50% - 0.5625rem);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  width: 0.5rem;
}

.p-form__acceptance input:checked + span::after {
  border-color: #002B3E;
}

.p-form__policy {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-form__policy-label {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
}

.p-form__policy-box {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 0.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  max-height: 380px;
  max-height: 23.75rem;
  overflow-y: auto;
  padding: 20px 18px;
  padding: 1.25rem 1.125rem;
}

.p-form__policy-text + .p-form__policy-text {
  margin-top: 1lh;
}

.p-form__policy-text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.4285714286;
}

.p-form__policy-description {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-form__policy-description a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #002B3E;
  text-decoration: underline;
}

.p-form__send {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  position: relative;
}

.p-form__send input {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #002B3E;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  height: 56px;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  width: 300px;
  width: 18.75rem;
}

.p-form__send:has(input)::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  height: 0.1875rem;
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  pointer-events: none;
  position: absolute;
  right: calc(50% - 8.125rem);
  width: 36px;
  width: 2.25rem;
}
.p-form__send-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #002B3E;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  gap: 12px;
  gap: 0.75rem;
  height: 56px;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  width: 300px;
  width: 18.75rem;
}
.p-form__send-btn::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  height: 0.1875rem;
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  width: 36px;
  width: 2.25rem;
}
.p-form__send-btn:focus-visible {
  background-color: #A99355;
}
.p-form__send-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.p-header {
  background-color: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.p-header--front {
  background-color: transparent;
}
.p-header--front.is-scrolled {
  background-color: #fff;
}

.p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-header__logo {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  visibility: visible;
}
.p-header--front .p-header__logo {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.p-header--front.is-scrolled .p-header__logo {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.is-drawerActive .p-header__logo {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.p-header__logo-link {
  display: block;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 405/60;
     object-fit: contain;
  width: 180px;
  width: 11.25rem;
}

.p-header__contact-btn {
  display: none;
}

.p-header__menu-button {
  margin-left: auto;
  z-index: 101;
}

.p-lower-fv {
  background: url("../images/common/lower_fv_bg_sp.jpg") no-repeat center/cover;
  overflow: hidden;
  position: relative;
}

.p-lower-fv__content {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  position: relative;
  z-index: 1;
}

.p-lower-fv__title-en {
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 400;
}

.p-lower-fv__title-ja {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 3px;
  margin-left: 0.1875rem;
}

.p-message {
  overflow: hidden;
  padding: 60px 0 151px;
  padding: 3.75rem 0 9.4375rem;
  position: relative;
  z-index: 1;
}

.p-message::after {
  aspect-ratio: 264/248;
  background: url("../images/message/union.svg") no-repeat center/contain;
  bottom: 80px;
  bottom: 5rem;
  content: "";
  position: absolute;
  right: 24px;
  right: 1.5rem;
  width: 264px;
  width: 16.5rem;
  z-index: -1;
}

.p-message__title {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.p-message__title::after {
  background: -webkit-gradient(linear, left top, right top, from(#7D7254), color-stop(50%, #EFEADA), to(#7D7254));
  background: linear-gradient(to right, #7D7254, #EFEADA 50%, #7D7254);
  content: "";
  display: block;
  height: 1px;
  margin-top: 12px;
  margin-top: 0.75rem;
  width: 96%;
}

.p-message__texts {
  margin-top: 49px;
  margin-top: 3.0625rem;
}

.p-message__text {
  color: #002B3E;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2;
}
.p-message__text + .p-message__text {
  margin-top: 1lh;
}

.p-message__sign {
  aspect-ratio: 191/120;
  margin-top: 49px;
  margin-top: 3.0625rem;
  width: 191px;
  width: 11.9375rem;
}
.p-message__sign img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-news {
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}

.p-news__item + .p-news__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-news__img {
  aspect-ratio: 335/251;
}
.p-news__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-news__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-news__date {
  color: #002B3E;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
}

.p-news__title {
  color: #002B3E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.44;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-news__text {
  color: #002B3E;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 2.06;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-pagenavi .nav-links,
.p-pagenavi .wp-pagenavi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  gap: 1.0625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  display: inline-block;
}
.p-pagenavi .previouspostslink {
  margin-right: 10px;
  margin-right: 0.625rem;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-pagenavi .nextpostslink {
  margin-left: 10px;
  margin-left: 0.625rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-pavinavi__prev,
.p-pavinavi__next {
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  display: block;
  height: auto;
  width: 18px;
  width: 1.125rem;
}

.p-pavinavi__prev {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-pavinavi__next {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
}

.p-pavinavi__prev.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-pavinavi__next.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-pagination {
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-pagination__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagination__number {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2d2f31;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  height: 30px;
  height: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: 30px;
  width: 1.875rem;
}
.p-pagination__number:not(.is-current):focus-visible {
  color: #A99355;
  opacity: 1;
}
.p-pagination__number.is-current {
  background-color: #002B3E;
  color: #fff;
}

.p-pagination__dots {
  color: #2d2f31;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}

.p-pagination__prev,
.p-pagination__next {
  color: #2d2f31;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-pagination__prev:focus-visible,
.p-pagination__next:focus-visible {
  color: #A99355;
  opacity: 1;
}

.p-top-about {
  padding: 60px 0 70px;
  padding: 3.75rem 0 4.375rem;
}

.p-top-about__body {
  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: 30px;
  margin-top: 1.875rem;
}

.p-top-about__img {
  aspect-ratio: 319/320;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
  margin-top: 2.5rem;
  min-height: 0;
  position: relative;
  width: 319px;
  width: 19.9375rem;
}
.p-top-about__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.p-top-about__img::after {
  border: 1px solid #7D7254;
  content: "";
  height: 100%;
  left: 10px;
  left: 0.625rem;
  pointer-events: none;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  width: 100%;
}

.p-top-about__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2;
}

.p-top-about__text + .p-top-about__text {
  margin-top: 1lh;
}

.p-top-mv {
  height: 667px;
  height: 41.6875rem;
  overflow: hidden;
  position: relative;
}

.p-top-mv__bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-top-mv__bg img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-mv__overlay {
  -webkit-animation: mv-overlay-in 0.6s ease-out 0.3s forwards;
          animation: mv-overlay-in 0.6s ease-out 0.3s forwards;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  height: 300px;
  height: 18.75rem;
  left: 0;
  position: absolute;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;
}

@-webkit-keyframes mv-overlay-in {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes mv-overlay-in {
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-top-mv__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: mv-content-in 1.2s ease-out 1.1s forwards;
          animation: mv-content-in 1.2s ease-out 1.1s forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  opacity: 0;
  padding: 0 20px 30px;
  padding: 0 1.25rem 1.875rem;
  position: relative;
  z-index: 1;
}

.p-top-mv__logo {
  aspect-ratio: 405/60;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 0;
  width: 239px;
  width: 14.9375rem;
}
.p-top-mv__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-top-mv__heading {
  color: #002B3E;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-top-mv__lead {
  color: #002B3E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-top-mv__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #002B3E;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  gap: 16px;
  gap: 1rem;
  height: 48px;
  height: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-top: 32px;
  margin-top: 2rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 254px;
  width: 15.875rem;
}
.p-top-mv__cta:focus-visible {
  background-color: #A99355;
  opacity: 1;
}
.p-top-mv__cta::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 62/7;
  background-color: #fff;
  content: "";
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  width: 34px;
  width: 2.125rem;
}

@-webkit-keyframes mv-content-in {
  to {
    opacity: 1;
  }
}

@keyframes mv-content-in {
  to {
    opacity: 1;
  }
}
.p-top-news {
  padding: 60px 0 78px;
  padding: 3.75rem 0 4.875rem;
}

.p-top-news__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-news__item-link {
  border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-top-news__item-link:focus-visible {
  color: #A99355;
  opacity: 1;
}
.p-top-news__item:first-child .p-top-news__item-link {
  padding-top: 0;
}

.p-top-news__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.p-top-news__title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}

.p-top-news__more {
  margin-top: 28px;
  margin-top: 1.75rem;
  text-align: right;
}

.p-top-news__more-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 15px;
  gap: 0.9375rem;
  line-height: 2.1666666667;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-top-news__more-link::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 62/7;
  background-color: #002B3E;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  min-height: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 60px;
  width: 3.75rem;
}
.p-top-news__more-link:focus-visible {
  color: #A99355;
  opacity: 1;
}
.p-top-news__more-link:focus-visible::after {
  background-color: #A99355;
}

.p-top-service {
  background-color: #002B3E;
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-top-service__lead {
  color: #fff;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-top-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  gap: 3.75rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-top-service__card {
  display: block;
}
.p-top-service__card:focus-visible {
  opacity: 1;
}
.p-top-service__card:focus-visible .p-top-service__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-top-service__card:focus-visible .p-top-service__card-more {
  color: #A99355;
}
.p-top-service__card:focus-visible .p-top-service__card-more::after {
  background-color: #A99355;
}

.p-top-service__img {
  aspect-ratio: 335/220;
  overflow: hidden;
  position: relative;
}
.p-top-service__img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
}
.p-top-service__img::after {
  border: 1px solid #7D7254;
  bottom: 6px;
  bottom: 0.375rem;
  content: "";
  left: 6px;
  left: 0.375rem;
  pointer-events: none;
  position: absolute;
  right: 6px;
  right: 0.375rem;
  top: 6px;
  top: 0.375rem;
}

.p-top-service__card-title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.96;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-service__card-text {
  color: #F8F7F6;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-top-service__card-more {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 2.1666666667;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-top-service__card-more::after {
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 62/7;
  background-color: #fff;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
          -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 60px;
  width: 3.75rem;
}

.p-top-voice {
  padding: 60px 0 40px;
  padding: 3.75rem 0 2.5rem;
}

.p-top-voice__heading {
  color: #002B3E;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-top-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-voice__item {
  background-color: #F2F3F4;
  padding: 30px 25px 30px;
  padding: 1.875rem 1.5625rem 1.875rem;
  position: relative;
}
.p-top-voice__item::after {
  border: 1px solid #7D7254;
  bottom: 8px;
  bottom: 0.5rem;
  content: "";
  left: 8px;
  left: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 8px;
  right: 0.5rem;
  top: 8px;
  top: 0.5rem;
}

.p-top-voice__avatar {
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  width: 100px;
  width: 6.25rem;
}
.p-top-voice__avatar img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-voice__category {
  color: #002B3E;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-voice__profile {
  color: #002B3E;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-top-voice__text {
  color: #002B3E;
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.u-hidden {
  overflow: hidden;
}

.u-pc {
  display: none;
}

.fz10 {
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
}

.fz12 {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
}

.fz14 {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

.fz16 {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.fz18 {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
}

.fz20 {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
}

.u-text-block {
  display: inline-block;
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.2030075188vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    scroll-padding-top: 6.25rem;
  }
  .l-drawer {
    overflow-y: auto;
    padding-top: 0;
  }
  .l-header {
    height: 100px;
    height: 6.25rem;
  }
  .l-inner {
    max-width: 1330px;
    max-width: 83.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .l-inner--lg {
    max-width: 1440px;
    max-width: 90rem;
    padding-left: 0;
    padding-right: 0;
  }
  .l-lower {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .c-menu-button {
    height: 100px;
    height: 6.25rem;
    width: 110px;
    width: 6.875rem;
  }
  .c-menu-button span {
    background-color: #002B3E;
    width: 60px;
    width: 3.75rem;
  }
  .c-menu-button span::before,
  .c-menu-button span::after {
    background-color: #002B3E;
  }
  .c-menu-button span::before {
    -webkit-transform: translateY(-1.25rem);
            transform: translateY(-1.25rem);
  }
  .c-menu-button span::after {
    -webkit-transform: translateY(1.25rem);
            transform: translateY(1.25rem);
  }
  .c-no-post {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .c-section-heading1 {
    font-size: 96px;
    font-size: 6rem;
  }
  .c-section-heading2 {
    font-size: 40px;
    font-size: 2.5rem;
    letter-spacing: 0;
  }
  .c-section-heading2[data-english]::before {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    margin-bottom: 0.25rem;
  }
  .c-section-title {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .c-section-title--lg {
    font-size: 60px;
    font-size: 3.75rem;
  }
  .c-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.875;
  }
  .p-404 {
    padding: 300px 0;
    padding: 18.75rem 0;
  }
  .p-404__title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-404__text {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-404__foot {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-404__link {
    padding: 25px 50px;
    padding: 1.5625rem 3.125rem;
  }
  .p-about-company {
    padding: 100px 0 130px;
    padding: 6.25rem 0 8.125rem;
  }
  .p-about-company__list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-top: 5rem;
    max-width: 954px;
    max-width: 59.625rem;
  }
  .p-about-company__dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 52px;
    gap: 3.25rem;
  }
  .p-about-company__dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 120px;
    width: 7.5rem;
  }
  .p-about-company__dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0;
  }
  .p-about-company__building {
    display: inline;
  }
  .p-about-lead {
    padding: 100px 0 130px;
    padding: 6.25rem 0 8.125rem;
  }
  .p-about-lead__title::after {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-about-lead__texts {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 808px;
    max-width: 50.5rem;
    text-align: center;
  }
  .p-about-reason {
    padding: 100px 0 120px;
    padding: 6.25rem 0 7.5rem;
  }
  .p-about-reason__list {
    margin-top: 82px;
    margin-top: 5.125rem;
  }
  .p-about-reason__item + .p-about-reason__item {
    margin-top: 102px;
    margin-top: 6.375rem;
  }
  .p-about-reason__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
    gap: 4.375rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    max-width: 70rem;
  }
  .p-about-reason__img {
    aspect-ratio: 540/340;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 0;
    width: 540px;
    width: 33.75rem;
  }
  .p-about-reason__img::after {
    bottom: 10px;
    bottom: 0.625rem;
    left: 10px;
    left: 0.625rem;
    right: 10px;
    right: 0.625rem;
    top: 10px;
    top: 0.625rem;
  }
  .p-about-reason__body {
    margin-top: -14px;
    margin-top: -0.875rem;
  }
  .p-about-reason__header::before {
    font-size: 96px;
    font-size: 6rem;
  }
  .p-about-reason__header {
    display: block;
  }
  .p-about-reason__title {
    font-size: 26px;
    font-size: 1.625rem;
    margin-top: 37px;
    margin-top: 2.3125rem;
    padding-top: 0;
  }
  .p-about-reason__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-business {
    padding: 90px 0 150px;
    padding: 5.625rem 0 9.375rem;
  }
  .p-business__intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1170px;
    max-width: 73.125rem;
  }
  .p-business__catch {
    font-size: 54px;
    font-size: 3.375rem;
  }
  .p-business__lead {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    padding-top: 9px;
    padding-top: 0.5625rem;
    width: 567px;
    width: 35.4375rem;
  }
  .p-business__block {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-business__block + .p-business__block {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-business__img {
    aspect-ratio: 1120/430;
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    max-width: 70rem;
  }
  .p-business__block-inner {
    margin-top: 30px;
    margin-top: 1.875rem;
    max-width: 1170px;
    max-width: 73.125rem;
  }
  .p-business__block-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-business__block-title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-business__block-texts {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    width: 640px;
    width: 40rem;
  }
  .p-business__block-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-business__service-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    gap: 0.625rem;
    padding: 37px 60px 51px;
    padding: 2.3125rem 3.75rem 3.1875rem;
  }
  .p-business__service-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 26px;
    font-size: 1.625rem;
    width: 236px;
    width: 14.75rem;
  }
  .p-business__service-list {
    margin-top: 0;
  }
  .p-business__service-item {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-contact {
    padding: 100px 0 150px;
    padding: 6.25rem 0 9.375rem;
  }
  .p-contact__description {
    text-align: center;
  }
  .p-contact__form-wrap {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-contact__confirm-list {
    gap: 30px;
    gap: 1.875rem;
  }
  .p-contact__confirm-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 56px;
    margin-top: 3.5rem;
  }
  .p-contact--thanks {
    padding: 120px 0 160px;
    padding: 7.5rem 0 10rem;
  }
  .p-contact__thanks-title {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-contact__thanks-texts {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-contact__thanks-btn-wrap {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-content h2:nth-of-type(1) {
    margin-top: 34px;
    margin-top: 2.125rem;
  }
  .p-content figure:nth-child(n+2) {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .wp-block-file,
  .p-content p:nth-child(n+2),
  .p-content h3:nth-child(n+2),
  .p-content h4:nth-child(n+2),
  .p-content h2 + ul:nth-of-type(n + 2),
  .p-content h2 + ol:nth-of-type(n + 2),
  .p-content ol > li > ol:nth-of-type(n + 2),
  .p-content figure {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-content .wp-block-group {
    padding: 24px 30px;
    padding: 1.5rem 1.875rem;
  }
  .wp-block-file:not(.wp-element-button) a::before {
    margin-right: 8px;
    margin-right: 0.5rem;
    margin-top: 16px;
    margin-top: 1rem;
    width: 32px;
    width: 2rem;
  }
  .p-cta {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
  .p-cta__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 110px;
    gap: 6.875rem;
    padding: 60px 50px 60px 90px;
    padding: 3.75rem 3.125rem 3.75rem 5.625rem;
  }
  .p-cta__link::after {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
  }
  .p-cta__heading {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 96px;
    font-size: 6rem;
    position: relative;
    top: -10px;
    top: -0.625rem;
  }
  .p-cta__text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: left;
  }
  .p-drawer__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 1440px;
    max-width: 90rem;
    min-height: 700px;
    min-height: 43.75rem;
    padding: 0;
  }
  .p-drawer__logo {
    aspect-ratio: auto;
    justify-self: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    padding: 0;
    width: auto;
  }
  .p-drawer__logo img {
    aspect-ratio: 310/360;
    width: 310px;
    width: 19.375rem;
  }
  .p-drawer__nav-items {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 66px;
    gap: 4.125rem;
    padding-left: 60px;
    padding-left: 3.75rem;
  }
  .p-drawer__nav-item a {
    font-size: 34px;
    font-size: 2.125rem;
  }
  .p-drawer__cta {
    display: none;
  }
  .p-footer {
    background-color: #F2F3F4;
    padding: 77px 0 52px;
    padding: 4.8125rem 0 3.25rem;
  }
  .p-footer__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-footer__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-footer__nav {
    margin-top: 0;
  }
  .p-footer__nav-items {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-footer__nav-link {
    padding: 10px 40px;
    padding: 0.625rem 2.5rem;
  }
  .p-footer__nav-item:last-child .p-footer__nav-link {
    padding-right: 0;
  }
  .p-footer__copyright {
    margin-top: 52px;
    margin-top: 3.25rem;
    text-align: right;
  }
  .p-form__items {
    gap: 30px;
    gap: 1.875rem;
  }
  .p-form__item {
    gap: 10px;
    gap: 0.625rem;
  }
  .p-form__dd input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]),
  .p-form__dd textarea {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 16px 20px;
    padding: 1rem 1.25rem;
  }
  .p-form__dd input[type=checkbox] + span {
    gap: 14px;
    gap: 0.875rem;
  }
  .p-form__acceptance {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-form__acceptance input + span {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    gap: 10px;
    gap: 0.625rem;
    line-height: 1.6;
  }
  .p-form__policy {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-form__policy-label {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-form__policy-box {
    max-height: 240px;
    max-height: 15rem;
    padding: 30px 40px 30px 20px;
    padding: 1.875rem 2.5rem 1.875rem 1.25rem;
  }
  .p-form__policy-description {
    margin-top: 42px;
    margin-top: 2.625rem;
  }
  .p-form__send {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
  .p-header__inner {
    padding: 0;
    position: relative;
  }
  .p-header__logo {
    padding-left: 60px;
    padding-left: 3.75rem;
  }
  .is-drawerActive .p-header__logo {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .p-header__logo-link img {
    height: 40px;
    height: 2.5rem;
    width: auto;
  }
  .p-header__contact-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #002B3E;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    font-weight: 600;
    gap: 10px;
    gap: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1;
    min-width: 250px;
    min-width: 15.625rem;
    opacity: 1;
    padding: 20px;
    padding: 1.25rem;
    pointer-events: auto;
    position: absolute;
    right: 130px;
    right: 8.125rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity 0.5s, visibility 0.5s, background-color 0.3s;
    transition: opacity 0.5s, visibility 0.5s, background-color 0.3s;
    visibility: visible;
  }
  .p-header__contact-btn:focus-visible {
    background-color: #A99355;
    opacity: 1;
  }
  .p-header--front .p-header__contact-btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .p-header--front.is-scrolled .p-header__contact-btn {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .is-drawerActive .p-header__contact-btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .p-header__contact-btn::after {
    -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
    aspect-ratio: 62/7;
    background-color: #fff;
    content: "";
            -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
                    mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
    width: 36px;
    width: 2.25rem;
  }
  .p-lower-fv {
    background-image: url("../images/common/lower_fv_bg.jpg");
  }
  .p-lower-fv__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 157px;
    padding-top: 9.8125rem;
  }
  .p-lower-fv__title-en {
    font-size: 96px;
    font-size: 6rem;
    line-height: 1.8;
  }
  .p-lower-fv__title-ja {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2.5;
    margin-left: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  .p-message {
    padding: 100px 0 310px;
    padding: 6.25rem 0 19.375rem;
  }
  .p-message::after {
    aspect-ratio: 637/601;
    bottom: 78px;
    bottom: 4.875rem;
    left: 49%;
    width: 637px;
    width: 39.8125rem;
  }
  .p-message__inner {
    max-width: 1170px;
    max-width: 73.125rem;
  }
  .p-message__title::after {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-message__texts {
    margin-top: 83px;
    margin-top: 5.1875rem;
    max-width: 870px;
    max-width: 54.375rem;
  }
  .p-message__sign {
    margin-top: 62px;
    margin-top: 3.875rem;
    width: 190px;
    width: 11.875rem;
  }
  .p-news {
    padding: 100px 0 150px;
    padding: 6.25rem 0 9.375rem;
  }
  .p-news__list {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    max-width: 70rem;
  }
  .p-news__item + .p-news__item {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-news__article {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-news__img {
    aspect-ratio: 400/300;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 0;
    width: 400px;
    width: 25rem;
  }
  .p-news__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
  .p-news__text {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-pagenavi .nav-links,
  .p-pagenavi .wp-pagenavi {
    gap: 22px;
    gap: 1.375rem;
  }
  .p-pagenavi .previouspostslink {
    margin-right: 12px;
    margin-right: 0.75rem;
  }
  .p-pagenavi .nextpostslink {
    margin-left: 12px;
    margin-left: 0.75rem;
  }
  .p-pavinavi__prev,
  .p-pavinavi__next {
    width: 24px;
    width: 1.5rem;
  }
  .p-pagination {
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-top-about {
    padding: 95px 0 170px;
    padding: 5.9375rem 0 10.625rem;
  }
  .p-top-about__heading {
    padding-left: 82px;
    padding-left: 5.125rem;
  }
  .p-top-about__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
    padding-right: 80px;
    padding-right: 5rem;
  }
  .p-top-about__img {
    aspect-ratio: 610/612;
    margin-left: 0;
    margin-top: 80px;
    margin-top: 5rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 44.8529411765%;
  }
  .p-top-about__img::after {
    left: 20px;
    left: 1.25rem;
    top: 20px;
    top: 1.25rem;
  }
  .p-top-about__texts {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-top: 68px;
    padding-top: 4.25rem;
    width: 47.0588235294%;
  }
  .p-top-about__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
  .p-top-mv {
    height: 810px;
    height: 50.625rem;
  }
  .p-top-mv__overlay {
    bottom: auto;
    height: 100%;
    top: 0;
    width: 50%;
  }
  .p-top-mv__content {
    display: block;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    padding: 198px 0 0;
    padding: 12.375rem 0 0;
    padding-left: max(40px, (50vw - 560px) / 2);
    padding-left: max(2.5rem, (50vw - 35rem) / 2);
    padding-right: max(40px, (50vw - 560px) / 2);
    padding-right: max(2.5rem, (50vw - 35rem) / 2);
    width: 50%;
  }
  .p-top-mv__logo {
    width: 405px;
    width: 25.3125rem;
  }
  .p-top-mv__heading {
    font-size: 54px;
    font-size: 3.375rem;
    margin-top: 80px;
    margin-top: 5rem;
    text-align: left;
  }
  .p-top-mv__lead {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-top: 1.875rem;
    text-align: left;
  }
  .p-top-mv__cta {
    gap: 10px;
    gap: 0.625rem;
    height: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    min-width: 300px;
    min-width: 18.75rem;
    padding: 20px;
    padding: 1.25rem;
    width: auto;
  }
  .p-top-mv__cta::after {
    width: 36px;
    width: 2.25rem;
  }
  .p-top-news {
    padding: 100px 0 130px;
    padding: 6.25rem 0 8.125rem;
  }
  .p-top-news__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-news__heading {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-top-news__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    padding-top: 30px;
    padding-top: 1.875rem;
    width: 768px;
    width: 48rem;
  }
  .p-top-news__item-link {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 52px;
    gap: 3.25rem;
  }
  .p-top-news__more-link::after {
    width: 62px;
    width: 3.875rem;
  }
  .p-top-service {
    padding: 100px 0 130px;
    padding: 6.25rem 0 8.125rem;
  }
  .p-top-service__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-service__heading {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-top-service__lead {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 0;
    padding-top: 30px;
    padding-top: 1.875rem;
    width: 768px;
    width: 48rem;
  }
  .p-top-service__list {
    grid-column-gap: 7.5rem;
    -moz-column-gap: 7.5rem;
         -webkit-column-gap: 7.5rem;
            column-gap: 7.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-top-service__item {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
  .p-top-service__card {
    grid-gap: 0;
    display: grid;
    gap: 0;
    grid-row: span 4;
    grid-template-rows: subgrid;
  }
  .p-top-service__img {
    aspect-ratio: 580/380;
  }
  .p-top-service__img::after {
    bottom: 10px;
    bottom: 0.625rem;
    left: 10px;
    left: 0.625rem;
    right: 10px;
    right: 0.625rem;
    top: 10px;
    top: 0.625rem;
  }
  .p-top-service__card-title {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.1;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-top-service__card-text {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-top-service__card-more {
    -ms-flex-item-align: end;
        align-self: end;
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .p-top-service__card-more::after {
    width: 62px;
    width: 3.875rem;
  }
  .p-top-voice {
    padding: 149px 0 192px;
    padding: 9.3125rem 0 12rem;
  }
  .p-top-voice__heading {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .p-top-voice__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 51px;
    gap: 3.1875rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-top: 5.625rem;
    max-width: 1122px;
    max-width: 70.125rem;
  }
  .p-top-voice__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 42px 35px 35px;
    padding: 2.625rem 2.1875rem 2.1875rem;
  }
  .p-top-voice__item::after {
    bottom: 10px;
    bottom: 0.625rem;
    left: 10px;
    left: 0.625rem;
    right: 10px;
    right: 0.625rem;
    top: 10px;
    top: 0.625rem;
  }
  .p-top-voice__avatar {
    width: 132px;
    width: 8.25rem;
  }
  .p-top-voice__category {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 27px;
    margin-top: 1.6875rem;
  }
  .p-top-voice__profile {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
  .p-top-voice__text {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    line-height: 1.5;
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}

@media (min-width: 1330px){
  html {
    font-size: 16px;
  }
}

@media (hover: hover){
  a:hover {
    opacity: 0.8;
  }
  .p-404__link:hover {
    background-color: #A99355;
    opacity: 1;
  }
  .p-about-company__map:hover {
    background-color: #002B3E;
    color: #fff;
    opacity: 1;
  }
  .p-contact__confirm-back:hover {
    background-color: #A99355;
    border-color: #A99355;
    color: #fff;
  }
  .p-contact__confirm-submit:hover {
    background-color: #A99355;
  }
  .p-contact__thanks-btn:hover {
    background-color: #A99355;
    opacity: 1;
  }
  .p-cta__link:hover {
    background-color: #A99355;
    opacity: 1;
  }
  .p-cta__link:hover::after {
    background-color: #fff;
  }
  .p-cta__link:hover .p-cta__heading {
    -webkit-text-fill-color: #fff;
    background: none;
  }
  .p-cta__link:hover .p-cta__text {
    color: #fff;
  }
  .p-drawer__nav-item a:hover {
    color: #A99355;
    opacity: 1;
  }
  .p-drawer__cta:hover {
    background-color: #A99355;
    opacity: 1;
  }
  .p-footer__nav-link:hover {
    color: #A99355;
    opacity: 1;
  }
  .p-form__send:hover input {
    background-color: #A99355;
  }
  .p-form__send-btn:hover {
    background-color: #A99355;
  }
  .p-pagination__number:not(.is-current):hover {
    color: #A99355;
    opacity: 1;
  }
  .p-pagination__prev:hover,
  .p-pagination__next:hover {
    color: #A99355;
    opacity: 1;
  }
  .p-top-mv__cta:hover {
    background-color: #A99355;
    opacity: 1;
  }
  .p-top-news__item-link:hover {
    color: #A99355;
    opacity: 1;
  }
  .p-top-news__more-link:hover {
    color: #A99355;
    opacity: 1;
  }
  .p-top-news__more-link:hover::after {
    background-color: #A99355;
  }
  .p-top-service__card:hover {
    opacity: 1;
  }
  .p-top-service__card:hover .p-top-service__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-top-service__card:hover .p-top-service__card-more {
    color: #A99355;
  }
  .p-top-service__card:hover .p-top-service__card-more::after {
    background-color: #A99355;
  }
}

@media (hover: none){
  a:active {
    opacity: 0.8;
  }
  .p-404__link:active {
    background-color: #A99355;
    opacity: 1;
  }
  .p-about-company__map:active {
    background-color: #002B3E;
    color: #fff;
    opacity: 1;
  }
  .p-contact__confirm-back:active {
    background-color: #A99355;
    border-color: #A99355;
    color: #fff;
  }
  .p-contact__confirm-submit:active {
    background-color: #A99355;
  }
  .p-contact__thanks-btn:active {
    background-color: #A99355;
    opacity: 1;
  }
  .p-cta__link:active {
    background-color: #A99355;
    opacity: 1;
  }
  .p-cta__link:active::after {
    background-color: #fff;
  }
  .p-cta__link:active .p-cta__heading {
    -webkit-text-fill-color: #fff;
    background: none;
  }
  .p-cta__link:active .p-cta__text {
    color: #fff;
  }
  .p-drawer__nav-item a:active {
    color: #A99355;
    opacity: 1;
  }
  .p-drawer__cta:active {
    background-color: #A99355;
    opacity: 1;
  }
  .p-footer__nav-link:active {
    color: #A99355;
    opacity: 1;
  }
  .p-form__send:active input {
    background-color: #A99355;
  }
  .p-form__send-btn:active {
    background-color: #A99355;
  }
  .p-pagination__number:not(.is-current):active {
    color: #A99355;
    opacity: 1;
  }
  .p-pagination__prev:active,
  .p-pagination__next:active {
    color: #A99355;
    opacity: 1;
  }
  .p-top-mv__cta:active {
    background-color: #A99355;
    opacity: 1;
  }
  .p-top-news__item-link:active {
    color: #A99355;
    opacity: 1;
  }
  .p-top-news__more-link:active {
    color: #A99355;
    opacity: 1;
  }
  .p-top-news__more-link:active::after {
    background-color: #A99355;
  }
  .p-top-service__card:active {
    opacity: 1;
  }
  .p-top-service__card:active .p-top-service__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-top-service__card:active .p-top-service__card-more {
    color: #A99355;
  }
  .p-top-service__card:active .p-top-service__card-more::after {
    background-color: #A99355;
  }
}

@media screen and (min-width: 768px) and (hover: hover){
  .p-header__contact-btn:hover {
    background-color: #A99355;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) and (hover: none){
  .p-header__contact-btn:active {
    background-color: #A99355;
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */
