@charset "UTF-8";
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(71.25rem, 100%); /* 1140px */
  --padding-inner: 2rem;
  --padding-inner-sp: 1.875rem; /* 30px */
  /* z-index */
  --z-index-fixed: 900;
  --z-index-modal: 1000;
  /* color */
  --color-white: #fff;
  --color-black: #000;
  --color-text: #282828;
  --color-text-sub: #191919;
  --color-gray: #5f5e5e;
  --color-line: #707070;
  --color-accent: #dc643c; /* 橙（装飾・アイコン） */
  --color-red: #b81c22; /* ボタン・帯 */
  --color-band: #d55205; /* KV帯 */
  --color-beige: #f5efe3;
  --color-footer: #1f1b98;
  /* font-weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;
  /* font-family */
  --base-font-family: "Noto Sans JP", "Local Noto Sans JP", sans-serif;
  --title-font-family: "Noto Serif JP", serif;
  --num-font-family: "Saira", sans-serif;
  /* transition duration */
  --duration: 0.3s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (width >= 768px) and (max-width: 1439.98px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (width <= 767.98px) {
  html {
    font-size: min(4.2666666667vw, 25.6px);
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
}

textarea {
  field-sizing: content;
}

body {
  overflow-x: clip;
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-white);
}

body.is-modal-open {
  overflow: hidden;
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: none;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  appearance: button;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-lp {
  position: relative;
  overflow: clip;
}

.l-lp__inner {
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .l-lp__inner {
    max-width: 23.4375rem;
  }
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 20rem;
  height: 4rem;
  padding: 0 1.25rem 0 1.875rem;
  font-size: max(1.125rem, 16px);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.15em;
  background: var(--color-white);
  border: 1px solid var(--color-text);
  border-radius: 999px;
  transition: color var(--duration) ease-out, background-color var(--duration) ease-out, border-color var(--duration) ease-out, box-shadow var(--duration) ease-out;
}
.c-btn:hover {
  color: var(--color-white);
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767.98px) {
  .c-btn {
    width: 19.6875rem;
    height: 3.75rem;
    font-size: 1rem;
  }
}

.c-btn__text {
  margin-right: max(1.5rem, 12px);
}

.c-btn__icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-left: auto;
  background: var(--color-red);
  border: 1px solid var(--color-white);
  border-radius: 50%;
  transition: background-color var(--duration) ease-out;
}
@media screen and (max-width: 767.98px) {
  .c-btn__icon {
    top: 0.125rem;
  }
}
.c-btn__icon::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  content: "";
  background: var(--color-white);
  mask: url("../images/common/icon_arrow_only.svg") center/100% 100% no-repeat;
  transition: background-color var(--duration) ease-out;
}

.c-btn:hover .c-btn__icon {
  background: var(--color-white);
}

.c-btn:hover .c-btn__icon::before {
  background: var(--color-red);
}

.c-btn.c-btn--large {
  justify-content: center;
  width: 50rem;
  height: 8rem;
  padding: 0 4rem;
  font-size: max(1.5rem, 16px);
  border-radius: 999px;
}
@media screen and (max-width: 767.98px) {
  .c-btn.c-btn--large {
    width: 21.75rem;
    height: 5.375rem;
    padding: 0 3.6875rem 0 0.8125rem;
    font-size: 1.125rem;
    letter-spacing: 0;
    border-radius: 999px;
  }
}

.c-btn.c-btn--large .c-btn__icon {
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 4rem;
  height: 4rem;
  margin: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
  .c-btn.c-btn--large .c-btn__icon {
    right: 1.0625rem;
    width: 2.4375rem;
    height: 2.4375rem;
  }
}

.c-heading {
  position: relative;
  font-family: var(--title-font-family);
  color: var(--color-black);
  text-align: center;
}

.c-heading__sub {
  position: relative;
  display: table;
  margin: 0 auto 1.240625rem;
  font-size: max(1.25rem, 20px);
  font-weight: var(--fw-medium);
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .c-heading__sub {
    margin: 0 auto 0.971875rem;
    font-size: max(1rem, 16px);
  }
}

.c-heading__ruby {
  position: absolute;
  top: -0.675625rem;
  left: 0.4375rem;
  font-size: max(0.5rem, 8px);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .c-heading__ruby {
    top: -0.909375rem;
    left: 0.21875rem;
  }
}

.c-heading__title {
  display: block;
  margin-bottom: 1.0625rem;
  font-size: max(2rem, 32px);
  font-weight: var(--fw-bold);
  line-height: 1;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .c-heading__title {
    margin-bottom: 0.709375rem;
    font-size: max(1.5rem, 24px);
  }
}

.c-heading__deco {
  display: flex;
  gap: 0.65625rem;
  align-items: center;
  justify-content: center;
}

.c-heading__deco img {
  width: 1.554375rem;
  height: 1.45875rem;
}

.c-heading__line {
  width: 6.5625rem;
  height: 1px;
  background: var(--color-accent);
}
@media screen and (max-width: 767.98px) {
  .c-heading__line {
    width: 3.25rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-heading.c-heading--product .c-heading__sub {
    margin: 0 auto 0.596875rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-heading.c-heading--product .c-heading__title {
    margin-bottom: 0.721875rem;
  }
}

.c-heading.c-heading--contact {
  color: var(--color-text);
}

@media screen and (max-width: 767.98px) {
  .c-heading.c-heading--contact .c-heading__title {
    margin-bottom: 1.096875rem;
  }
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-modal);
  display: flex;
  width: 100%;
  height: 100%;
  padding: 3.75rem 0.9375rem;
  overflow: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
}

.c-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.c-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.c-modal__body {
  position: relative;
  margin: auto;
}

.c-modal__body--map {
  width: 62.5rem;
  padding: 3.5rem 3.75rem;
  background: var(--color-white);
}
@media screen and (max-width: 767.98px) {
  .c-modal__body--map {
    width: min(21.5625rem, 100%);
    padding: 1.25rem 0.9375rem;
  }
}

.c-modal__map img {
  height: auto;
}

.c-modal__body--contact {
  width: 71.25rem;
}
@media screen and (max-width: 767.98px) {
  .c-modal__body--contact {
    width: 19.6875rem;
  }
}

.c-modal__cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .c-modal__cards {
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__card {
    height: 14.375rem;
    padding-top: 1.125rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__card--mail {
    height: 13.125rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__card-title {
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__card--mail .p-contact__card-title {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__tel {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-modal__cards .p-contact__hours {
    font-size: 0.6875rem;
    line-height: 1.25rem;
  }
}

.c-modal__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  background: none;
  border: 0;
}
.c-modal__close::before, .c-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 1px;
  content: "";
  background: var(--color-white);
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767.98px) {
  .c-modal__close {
    top: -2.5rem;
  }
}

.p-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.p-bg__texture {
  position: absolute;
  top: 206.6875rem;
  left: 50%;
  width: 100vw;
  height: 141.875rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-bg__texture {
    top: 190.5625rem;
    left: 50%;
    width: 100vw;
    height: 46.75rem;
    transform: translateX(-50%);
  }
}

.p-bg__texture picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-bg__grad {
  position: absolute;
  top: 25.0625rem;
  left: 50%;
  width: 100vw;
  height: 210.4375rem;
  clip-path: polygon(0 0, 100% 0, 100% 86.64%, 0 100%);
  background: linear-gradient(180deg, #fff 0%, #f5efe3 26%, #f8f8f8 49%, #f5efe3 75%, #fff 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-bg__grad {
    top: -19.5625rem;
    left: 50%;
    width: 100vw;
    height: 219.8125rem;
    clip-path: polygon(0 0, 100% 0, 100% 96.25%, 0 100%);
    transform: translateX(-50%);
  }
}

.p-bg__beige {
  position: absolute;
  top: 282.25rem;
  left: 50%;
  width: 100vw;
  height: 96.5625rem;
  clip-path: polygon(0 23.52%, 22.81% 23.52%, 100% 0, 100% 100%, 0 100%);
  background: var(--color-beige);
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-bg__beige {
    top: 207.90625rem;
    height: 124.375rem;
    clip-path: polygon(0 23.64%, 100% 17.49%, 100% 100%, 0 100%);
  }
}

.p-bg__deco {
  position: absolute;
}

.p-bg__deco--1 {
  top: 260.1875rem;
  left: 58.8125rem;
  width: 50.75rem;
  height: 50.8125rem;
  opacity: 0.61;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--1 {
    top: 205.5rem;
    left: 18.05rem;
    width: 30.875rem;
    height: 30.9375rem;
  }
}

.p-bg__deco--2 {
  top: 143.9375rem;
  left: -11.25rem;
  width: 37.0625rem;
  height: 37.0625rem;
  opacity: 0.6;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--2 {
    top: 127.8125rem;
    left: -18.375rem;
    width: 29.25rem;
    height: 29.25rem;
  }
}

.p-bg__deco--3 {
  top: 106.6875rem;
  left: 64.1875rem;
  width: 43.5625rem;
  height: 43.625rem;
  opacity: 0.61;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--3 {
    top: 78.0625rem;
    left: 16.4375rem;
    width: 28.125rem;
    height: 28.1875rem;
  }
}

.p-bg__deco--4 {
  top: 47.8125rem;
  left: 68.875rem;
  width: 36.3125rem;
  height: 36.3125rem;
  opacity: 0.4;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--4 {
    top: 33.6875rem;
    left: 14.1875rem;
    width: 20.5rem;
    height: 20.5rem;
  }
}

.p-bg__deco--5 {
  top: 58.1875rem;
  left: -20.125rem;
  width: 40.25rem;
  height: 48.5rem;
  opacity: 0.6;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--5 {
    top: 21.9375rem;
    left: -14.75rem;
    width: 22rem;
    height: 26.5625rem;
  }
}

.p-bg__deco--6 {
  top: 213.875rem;
  left: -21.125rem;
  width: 43.9375rem;
  height: 44rem;
  opacity: 0.61;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--6 {
    display: none;
  }
}

.p-bg__deco--7 {
  top: 204.25rem;
  left: 60.9375rem;
  width: 29.0625rem;
  height: 29.0625rem;
  opacity: 0.6;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--7 {
    top: 186.375rem;
    left: 11.75rem;
    width: 15.5rem;
    height: 15.5rem;
  }
}

.p-bg__deco--8 {
  top: 296.625rem;
  left: -10.125rem;
  width: 37rem;
  height: 37rem;
  opacity: 0.4;
}
@media screen and (max-width: 767.98px) {
  .p-bg__deco--8 {
    top: 231.5rem;
    width: 16.8125rem;
    height: 16.8125rem;
  }
}

@media screen and (width >= 1441px) {
  .p-bg__grad {
    top: 0;
    height: 235.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 88.05%, 0 100%);
    background: linear-gradient(180deg, #fff 0%, #fff 8%, #f7f2e6 22%, #f5efe3 34%, #f8f8f8 54%, #f5efe3 78%, #fff 100%);
  }
}
.p-bg__kv-side {
  display: none;
}
@media screen and (width >= 1441px) {
  .p-bg__kv-side {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 58.76875rem;
  }
}

.p-bg__kv-deco {
  position: absolute;
  opacity: 0.55;
}

.p-bg__kv-deco--left {
  top: 7.75rem;
  left: -13.5rem;
  width: 27rem;
  height: 27rem;
}

.p-bg__kv-deco--right {
  top: -28.5625rem;
  left: 76.875rem;
  width: 45.25rem;
  height: 45.25rem;
}

.p-contact {
  position: relative;
  z-index: 1;
}

.p-contact > .c-heading {
  margin-bottom: 2.76625rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact > .c-heading {
    margin-bottom: 3.89125rem;
  }
}

.p-contact__company {
  margin-bottom: 1.9125rem;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-contact__company {
    margin-bottom: 2.690625rem;
  }
}

.p-contact__name {
  display: flex;
  gap: 1.1875rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.28125rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact__name {
    gap: 0.99375rem;
    margin-bottom: 0.640625rem;
  }
}

.p-contact__logo {
  width: 5.25rem;
  height: 3.4375rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact__logo {
    width: 4.05625rem;
    height: 2.65625rem;
  }
}

.p-contact__name-text {
  font-size: 2.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-black);
  text-indent: 0.05em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-contact__name-text {
    font-size: 1.3125rem;
  }
}

.p-contact__dept {
  font-size: max(1.875rem, 16px);
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-contact__dept {
    font-size: 1.125rem;
  }
}

.p-contact__cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 4.48125rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact__cards {
    flex-direction: column;
    gap: 1.125rem;
    align-items: center;
    margin-bottom: 3.88125rem;
  }
}

.p-contact__card {
  width: 35rem;
  height: 22.4375rem;
  padding-top: 2.25rem;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  .p-contact__card {
    width: 19.6875rem;
    height: 17.9375rem;
    padding-top: 1.9375rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-contact__card--mail {
    height: 16.4375rem;
    padding-top: 2.25rem;
  }
}

.p-contact__icon {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.940625rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact__icon {
    width: 3.125rem;
    height: 3.125rem;
    margin-bottom: 1.484375rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-contact__icon--mail {
    margin-bottom: 1.60625rem;
  }
}

.p-contact__card-title {
  margin-bottom: 2.71875rem;
  font-size: max(2rem, 16px);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-contact__card-title {
    margin-bottom: 0.365625rem;
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
}

.p-contact__card--mail .p-contact__card-title {
  margin-bottom: 3.434375rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-contact__card--mail .p-contact__card-title {
    margin-bottom: 1.528125rem;
  }
}

.p-contact__tel {
  display: block;
  margin-bottom: 2.15625rem;
  font-family: var(--num-font-family);
  font-size: 3rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .p-contact__tel {
    margin-bottom: 1.385625rem;
    font-size: 2rem;
    pointer-events: auto;
  }
}

.p-contact__hours {
  font-size: max(1.125rem, 16px);
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  .p-contact__hours {
    font-size: 0.75rem;
    line-height: 1.65rem;
  }
}

.p-contact__hours-br {
  display: none;
}
@media screen and (width <= 1200px) {
  .p-contact__hours-br {
    display: inline;
  }
}

@media screen and (max-width: 767.98px) {
  .p-contact__btn {
    width: 17.5rem;
    padding: 0 0.58125rem 0 1.25rem;
    letter-spacing: 0.12em;
  }
}

.p-contact__cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 50rem;
  height: 8rem;
  margin: 0 auto 2.31875rem;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 999px;
  transition: color 0.4s ease-out, border-color 0.4s ease-out;
}
.p-contact__cta::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--color-white);
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(-100%, 0, 0);
}
.p-contact__cta:hover::before {
  transform: translate3d(0, 0, 0);
}
.p-contact__cta:hover {
  color: var(--color-red);
  border-color: var(--color-red);
}
@media screen and (max-width: 767.98px) {
  .p-contact__cta {
    width: 19.6875rem;
    height: 6.25rem;
    margin-bottom: 3.6875rem;
    border-radius: 999px;
  }
}

.p-contact__cta-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 16.0625rem;
  height: 8rem;
  margin-left: -0.0625rem;
  overflow: hidden;
  border-radius: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-contact__cta-image {
    width: 6.875rem;
    height: 6.25rem;
    margin-left: 0;
  }
}

.p-contact__cta-text {
  position: relative;
  z-index: 1;
  margin-left: 2.6875rem;
  font-size: max(1.5rem, 16px);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-contact__cta-text {
    margin-left: 1.0625rem;
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    line-height: 1.6;
  }
}

.p-contact__cta-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  margin: 0 1.8375rem 0 auto;
  background: var(--color-red);
  border: 1px solid var(--color-white);
  border-radius: 50%;
}
.p-contact__cta-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color-white);
  mask: url("../images/common/icon_arrow_only.svg") center/100% 100% no-repeat;
}
@media screen and (max-width: 767.98px) {
  .p-contact__cta-icon {
    width: 1.625rem;
    height: 1.625rem;
    margin-right: 0.821875rem;
  }
}

.p-contact__bnr {
  display: block;
  width: 25rem;
  height: 9.2rem;
  margin: 0 auto;
  transition: opacity 0.3s ease-out;
}
.p-contact__bnr:hover {
  opacity: 0.65;
}
@media screen and (max-width: 767.98px) {
  .p-contact__bnr {
    width: 19.6875rem;
    height: 7.24375rem;
  }
}

.p-cta-bar {
  position: relative;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 767.98px) {
  .p-cta-bar {
    display: block;
    width: 100vw;
    margin-bottom: 2.725rem;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (max-width: 767.98px) {
  .p-cta-bar.p-cta-bar--fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-fixed);
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    margin: 0;
    visibility: hidden;
    background: var(--color-red);
    opacity: 0;
    transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
  }
}

@media screen and (max-width: 767.98px) {
  .p-cta-bar.p-cta-bar--fixed.is-visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-out;
  }
}

.p-cta-bar__button {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.1875rem;
  padding: 0;
  font-family: var(--title-font-family);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.03em;
  background: var(--color-red);
  border: 1px solid transparent;
  transition: color var(--duration) ease-out, background-color var(--duration) ease-out;
}
.p-cta-bar__button:hover {
  color: var(--color-red);
  background: var(--color-white);
  border-color: var(--color-red);
}

.p-cta-bar__icon {
  width: 1.56875rem;
  height: 1.06875rem;
  background: currentcolor;
  mask: url("../images/common/icon_mail_line.svg") center/contain no-repeat;
}

.p-cta-fixed {
  position: fixed;
  top: min(44.875rem, 100dvh - 15.875rem);
  right: 0;
  z-index: var(--z-index-fixed);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4rem;
  height: 14.375rem;
  padding: 1.65625rem 0 0;
  font-family: var(--title-font-family);
  font-size: 1.3125rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.143em;
  background: var(--color-red);
  border: 1px solid transparent;
  transition: color var(--duration) ease-out, background-color var(--duration) ease-out;
}
.p-cta-fixed:hover {
  color: var(--color-red);
  background: var(--color-white);
  border-color: var(--color-red);
}
@media screen and (max-width: 767.98px) {
  .p-cta-fixed {
    display: none;
  }
}

.p-cta-fixed__icon {
  width: 1.56875rem;
  height: 1.06875rem;
  margin-bottom: 0.9625rem;
  background: currentcolor;
  mask: url("../images/common/icon_mail_line.svg") center/contain no-repeat;
}

.p-cta-fixed__text {
  writing-mode: vertical-rl;
}

.p-footer {
  padding: max(3.625rem, 58px) 0 max(1.973125rem, 32px);
  background: var(--color-beige);
}
@media screen and (max-width: 767.98px) {
  .p-footer {
    padding: 4.36875rem 0 4.404375rem;
  }
}

.p-footer__nav {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  height: max(3.125rem, 50px);
  margin-bottom: max(2.001875rem, 32px);
  background: var(--color-footer);
}
@media screen and (max-width: 767.98px) {
  .p-footer__nav {
    flex-wrap: wrap;
    gap: 0.71875rem 1.6875rem;
    place-content: flex-start flex-start;
    height: 6.13125rem;
    padding: 0.970625rem 1.875rem 0 2.5rem;
    margin-bottom: 2.29375rem;
  }
}

.p-footer__link {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: max(1rem, 16px);
  line-height: 1.5rem;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
.p-footer__link:hover {
  opacity: 0.65;
}
.p-footer__link:hover .p-footer__link-text::after {
  transform: scaleX(1);
}
@media screen and (max-width: 767.98px) {
  .p-footer__link {
    gap: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-footer__link-text {
  position: relative;
  display: inline-block;
}
.p-footer__link-text::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentcolor;
  transition: transform 0.3s ease-out;
  transform: scaleX(0);
  transform-origin: left center;
}

.p-footer__link:nth-child(3) {
  gap: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-footer__link:nth-child(3) {
    gap: 0.625rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-footer__link:nth-child(4) {
    margin-left: 0.25rem;
  }
}

.p-footer__link img {
  width: 0.75rem;
  height: 0.53125rem;
}

.p-footer__copyright {
  padding-left: 2.875rem;
  font-size: max(1rem, 16px);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-footer__copyright {
    padding-left: 0;
    font-size: 0.75rem;
  }
}

.p-kv {
  position: relative;
  z-index: 1;
  height: 58.76875rem;
  margin-bottom: 4.546875rem;
}
@media screen and (max-width: 767.98px) {
  .p-kv {
    height: 30.34375rem;
    margin-bottom: 3.96875rem;
  }
  .p-kv::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 7.4375rem;
    content: "";
    background: var(--color-beige);
    transform: translateX(-50%);
  }
  .p-kv::after {
    position: absolute;
    top: -15.3125rem;
    left: 13.58125rem;
    width: 22.4625rem;
    height: 26.94375rem;
    content: "";
    background: url("../images/common/deco_pattern_04.png") center/contain no-repeat;
    opacity: 0.6;
  }
}

.p-kv__image {
  position: absolute;
  top: -3.3125rem;
  left: 50%;
  width: min(100vw, 1440px);
  height: min(50rem, 800px);
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-kv__image {
    top: 5.125rem;
    z-index: 1;
    height: 13rem;
  }
}

.p-kv__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-kv__band {
  position: absolute;
  top: 3.5rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-kv__band {
    top: 1.6375rem;
    left: 0.63125rem;
  }
}

.p-kv__band-inner {
  width: 38.25625rem;
  height: 4rem;
  padding: 0.66875rem 0 0 0.75rem;
  font-family: var(--title-font-family);
  font-size: 2.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.05em;
  background: var(--color-band);
  box-shadow: 0.2875rem 0.33125rem 0 #979797;
}
@media screen and (max-width: 767.98px) {
  .p-kv__band-inner {
    width: 12.21875rem;
    height: 1.9375rem;
    padding: 0.3rem 0 0 1.24375rem;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    box-shadow: 0.125rem 0.125rem 0 #979797;
  }
}

.p-kv__band-inner--2 {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .p-kv__band-inner--2 {
    position: absolute;
    top: 2.31875rem;
    left: 4.0375rem;
    display: block;
    width: 9.54375rem;
    padding-left: 1.13125rem;
  }
}

.p-kv__band-text {
  display: inline-block;
}

@media screen and (max-width: 767.98px) {
  .p-kv__band-text--pc {
    display: none;
  }
}

.p-kv__body {
  position: absolute;
  top: 42.596875rem;
  left: 50%;
  z-index: 2;
  width: 50rem;
  text-align: center;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-kv__body {
    top: 21.353125rem;
    left: 1.875rem;
    width: 19.6875rem;
    text-align: left;
    transform: none;
  }
}

.p-kv__title {
  position: relative;
  margin-bottom: 0.940625rem;
  font-family: var(--title-font-family);
  font-size: 6.25rem;
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-kv__title {
    margin-bottom: 0.834375rem;
    font-size: 2.45rem;
    font-weight: var(--fw-bold);
  }
}

.p-kv__ruby {
  position: absolute;
  top: -1.571875rem;
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .p-kv__ruby {
    top: -0.93625rem;
    font-size: 0.625rem;
  }
}

.p-kv__ruby--1 {
  left: 2.40625rem;
}
@media screen and (max-width: 767.98px) {
  .p-kv__ruby--1 {
    left: 0.60625rem;
  }
}

.p-kv__ruby--2 {
  top: -1.509375rem;
  left: 8.84375rem;
}
@media screen and (max-width: 767.98px) {
  .p-kv__ruby--2 {
    top: -0.93625rem;
    left: 3.35625rem;
  }
}

.p-kv__sub {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
  height: 2.375rem;
  margin-bottom: 0.98125rem;
  font-family: var(--title-font-family);
  font-size: 1.25rem;
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .p-kv__sub {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 0.70625rem;
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
  }
}

.p-kv__sub-line {
  flex: 1;
  height: 1px;
  background: var(--color-line);
}
@media screen and (max-width: 767.98px) {
  .p-kv__sub-line {
    flex: none;
    width: 1.96875rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-kv__sub-text {
    flex: 1;
    text-align: center;
  }
}

.p-kv__sub-small {
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--fw-regular);
}
@media screen and (max-width: 767.98px) {
  .p-kv__sub-small {
    font-size: 0.875rem;
  }
}

.p-kv__start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49.875rem;
  height: 5.625rem;
  padding-left: 0.3125rem;
  margin: 0 auto;
  color: var(--color-red);
  background: var(--color-white);
  border: 2px solid var(--color-red);
}
@media screen and (max-width: 767.98px) {
  .p-kv__start {
    width: 19.59375rem;
    height: 2.625rem;
    margin: 0 0 0 0.03125rem;
  }
}

.p-kv__date {
  position: relative;
  top: -0.125rem;
  font-size: 3rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-kv__date {
    top: -0.03125rem;
    font-size: 1.3125rem;
  }
}

.p-kv__day {
  position: relative;
  top: 0.125rem;
  display: grid;
  place-items: center;
  width: 3.125rem;
  height: 3.125rem;
  padding-bottom: 0.3275rem;
  padding-left: 0.15625rem;
  margin-left: 0.8125rem;
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: #f5f5f5;
  letter-spacing: 0.05em;
  background: var(--color-red);
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .p-kv__day {
    top: 0.03125rem;
    width: 1.25rem;
    height: 1.25rem;
    padding-bottom: 0.04375rem;
    padding-left: 0.03125rem;
    margin-left: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-kv__start-line {
  width: 2px;
  height: 3.625rem;
  margin: 0 1.96875rem;
  background: var(--color-red);
}
@media screen and (max-width: 767.98px) {
  .p-kv__start-line {
    height: 1.7rem;
    margin: 0 0.9375rem;
  }
}

.p-kv__start-text {
  position: relative;
  top: -0.09375rem;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767.98px) {
  .p-kv__start-text {
    font-size: 1.125rem;
  }
}

.p-product {
  position: relative;
  z-index: 1;
  margin-bottom: 14.48125rem;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-product {
    margin-bottom: 9.103125rem;
  }
}

.p-product > .c-heading {
  margin-bottom: 3.27875rem;
}
@media screen and (max-width: 767.98px) {
  .p-product > .c-heading {
    margin-bottom: 2.40375rem;
  }
}

.p-product__btn {
  margin-bottom: 6.3125rem;
  text-align: left;
}
@media screen and (max-width: 767.98px) {
  .p-product__btn {
    margin-bottom: 3.125rem;
  }
}

.p-product__video {
  width: min(64rem, 1000px, 100%);
  aspect-ratio: 16/9;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .p-product__video {
    width: 19.6875rem;
  }
}

.p-product__video-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-product__video-thumb {
  position: relative;
  height: 36rem;
  background: var(--color-white);
}
@media screen and (max-width: 767.98px) {
  .p-product__video-thumb {
    height: 11.0625rem;
  }
}

.p-product__video-icon {
  position: absolute;
  top: 16.3125rem;
  left: 50%;
  width: 9rem;
  height: 5rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-product__video-icon {
    top: 5rem;
    width: 2.8125rem;
    height: 1.5625rem;
  }
}

.p-reasons {
  position: relative;
  z-index: 1;
  margin-bottom: 20.653125rem;
}
@media screen and (max-width: 767.98px) {
  .p-reasons {
    margin-bottom: 10.48125rem;
  }
}

.p-reasons > .c-heading {
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .p-reasons > .c-heading {
    margin-bottom: 0.20625rem;
  }
}

.p-reason {
  position: relative;
}

.p-reason__head {
  position: absolute;
  top: 0;
  z-index: 2;
}

.p-reason__num {
  position: relative;
  width: 6.8125rem;
  height: 4.3375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason__num {
    width: 3.50625rem;
    height: 2.23125rem;
  }
}

.p-reason__num-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--num-font-family);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767.98px) {
  .p-reason__num-text {
    font-size: 0.5rem;
  }
}

.p-reason__cols {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 767.98px) {
  .p-reason__cols {
    gap: 0.38125rem;
  }
}

.p-reason__col {
  position: relative;
  width: 3.3125rem;
  margin: 0;
  background: var(--color-white);
}
@media screen and (max-width: 767.98px) {
  .p-reason__col {
    width: 1.70625rem;
  }
}

.p-reason__col-text {
  position: absolute;
  left: 50%;
  display: block;
  font-family: var(--title-font-family);
  font-size: 2.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.25em;
  white-space: nowrap;
  text-orientation: upright;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}
@media screen and (max-width: 767.98px) {
  .p-reason__col-text {
    font-size: 1.25rem;
  }
}

.p-reason__col-text--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  writing-mode: horizontal-tb;
}

.p-reason__col-vert {
  display: block;
  text-orientation: upright;
  writing-mode: vertical-rl;
}

.p-reason__dash {
  font-family: var(--base-font-family);
  font-weight: var(--fw-regular);
}

.p-reason__bracket {
  position: relative;
  text-orientation: sideways;
  -webkit-text-stroke: 0.375rem var(--color-white);
  paint-order: stroke fill;
}

.p-reason__bracket--open {
  top: 0.9em;
  left: 0.875rem;
  margin-bottom: 1.65625rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason__bracket--open {
    top: 0.9em;
    left: 0.4rem;
    margin-bottom: 0.85625rem;
  }
}

.p-reason__bracket--close {
  top: -0.2em;
  left: -0.6rem;
  margin-bottom: -2.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason__bracket--close {
    top: -0.1rem;
    left: -0.3rem;
    margin-bottom: -0.75rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-reason__col-sm {
    font-size: 1.125rem;
    letter-spacing: 0.15em;
  }
}

.p-reason__num-big {
  display: block;
  margin: 0.35625rem 0;
  font-size: 3.25rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-reason__num-big {
    margin: 0.265625rem 0;
    font-size: 1.625rem;
    transform: none;
  }
}

.p-reason__num-big-inner {
  -webkit-text-stroke: 0.375rem var(--color-white);
  paint-order: stroke fill;
}

.p-reason__num-mid {
  display: block;
  margin-bottom: 0.625rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-reason__num-mid {
    margin-bottom: 0.38125rem;
  }
}

.p-reason__photo {
  overflow: hidden;
}

.p-reason__text {
  font-size: max(1.125rem, 16px);
  font-weight: var(--fw-medium);
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-reason__text {
    font-size: 1rem;
  }
}

.p-reason__strong {
  font-weight: var(--fw-bold);
}

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

.p-reason__annotation {
  font-size: max(0.875rem, 12px);
  font-weight: var(--fw-regular);
  line-height: 2.475rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .p-reason__annotation {
    line-height: 2.2;
  }
}

.p-reason__annotation.p-reason__annotation--hanging {
  padding-left: 2.6em;
}
@media screen and (max-width: 767.98px) {
  .p-reason__annotation.p-reason__annotation--hanging {
    padding-left: 0;
  }
}

.p-reason__annotation-label {
  display: inline-block;
  width: 2.6em;
  margin-left: -2.6em;
}
@media screen and (max-width: 767.98px) {
  .p-reason__annotation-label {
    display: inline;
    width: auto;
    margin-left: 0;
  }
}

.p-reason__nobr {
  display: inline-block;
}

@media screen and (min-width: 768px) and (max-width: 1439.98px) {
  .p-reason__annotation-break {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .p-reason__annotation-break {
    display: none;
  }
}

.p-reason__annotation-space {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1439.98px) {
  .p-reason__annotation-space {
    display: inline;
  }
}
@media screen and (max-width: 767.98px) {
  .p-reason__annotation-space {
    display: inline;
  }
}

.p-reason__map-button {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0.66875rem;
  background: none;
  border: 0;
  transition: opacity 0.3s ease-out;
}
.p-reason__map-button:hover {
  opacity: 0.65;
}
@media screen and (max-width: 767.98px) {
  .p-reason__map-button {
    margin-bottom: 0.5125rem;
  }
}

.p-reason__map-note {
  display: flex;
  gap: 0;
  align-items: center;
  height: 1.46875rem;
  margin-left: 6.5rem;
  font-size: max(0.875rem, 12px);
  font-weight: var(--fw-medium);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-reason__map-note {
    margin-left: 5.3125rem;
  }
}

.p-reason__map-note img {
  width: 1.3125rem;
  height: 1.3125rem;
  margin: 0 0.375rem 0 -0.125rem;
}

.p-reason__note {
  font-size: max(0.875rem, 12px);
  font-weight: var(--fw-medium);
  line-height: 1.46;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .p-reason__note {
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.98px) {
  .p-reason__note {
    line-height: 2.2;
  }
}

.p-reason--01 {
  display: grid;
  grid-template-columns: 8.5rem 31.9375rem 2.46875rem 35.625rem 1fr;
  padding-top: 6.31875rem;
  margin-bottom: 5.30625rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 {
    display: block;
    padding-top: 4.8rem;
    margin-bottom: 3.85625rem;
  }
}

.p-reason--01 .p-reason__head {
  right: 7.425rem;
  width: 8.325rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__head {
    right: 0.95625rem;
    width: 3.79375rem;
  }
}

.p-reason--01 .p-reason__num {
  margin-bottom: 1.01875rem;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__num {
    margin-bottom: 0.525rem;
    margin-left: 0.225rem;
  }
}

.p-reason--01 .p-reason__col--main {
  height: 43.6875rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__col--main {
    height: 19.96875rem;
  }
}

.p-reason--01 .p-reason__cols {
  margin-right: 0.95rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__cols {
    margin-right: 0;
  }
}

.p-reason--01 .p-reason__col--main .p-reason__col-text {
  top: -2.39375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__col--main .p-reason__col-text {
    top: -1.2rem;
  }
}

.p-reason--01 .p-reason__col--sub {
  top: 4.125rem;
  height: 24.625rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__col--sub {
    top: 1.09375rem;
    height: 11.8625rem;
  }
}

.p-reason--01 .p-reason__col--sub .p-reason__col-text {
  top: 1.55rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__col--sub .p-reason__col-text {
    top: 0.3375rem;
  }
}

.p-reason--01 .p-reason__photo {
  grid-row: 1/span 4;
  grid-column: 4;
  width: 35.625rem;
  height: 26.71875rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__photo {
    width: 21.5625rem;
    height: 16.175rem;
    margin-bottom: 2.53125rem;
  }
}

.p-reason--01 .p-reason__body {
  position: relative;
  top: -0.421875rem;
  grid-row: 1;
  grid-column: 2;
  align-self: start;
  margin-bottom: 2.3625rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__body {
    top: -0.375rem;
    width: 19.6875rem;
    margin: 0 1.875rem 0.43125rem;
  }
}

.p-reason--01 .p-reason__map {
  grid-row: 2;
  grid-column: 2;
  width: 21.25rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__map {
    width: 19.6875rem;
    margin: 0 1.875rem 1.63125rem;
  }
}

.p-reason--01 .p-reason__map-button img {
  height: 14.89375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__map-button img {
    height: 13.8rem;
  }
}

.p-reason--01 .p-reason__note {
  grid-row: 3;
  grid-column: 2;
  margin-bottom: 0.83125rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__note {
    position: relative;
    top: -0.33125rem;
    margin: 0 1.875rem 1.2125rem;
  }
}

.p-reason--01 .p-reason__btn {
  grid-row: 4;
  grid-column: 2;
  justify-self: start;
}
@media screen and (max-width: 767.98px) {
  .p-reason--01 .p-reason__btn {
    margin-left: 1.875rem;
  }
}

.p-reason--02 {
  display: grid;
  grid-template-columns: 11.875rem 35.625rem 3.375rem 30.625rem 1fr;
  min-height: 40.60625rem;
  padding-top: 6.61875rem;
  margin-bottom: 1.9375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 {
    display: block;
    min-height: 0;
    padding-top: 3.5625rem;
    margin-bottom: 1.68125rem;
  }
}

.p-reason--02 .p-reason__head {
  left: 6.4375rem;
  width: 6.75rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__head {
    left: 0.5875rem;
    width: 3.48125rem;
  }
}

.p-reason--02 .p-reason__num {
  width: 6.75rem;
  margin-bottom: 1.01875rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__num {
    width: 3.48125rem;
    margin-bottom: 0.525rem;
  }
}

.p-reason--02 .p-reason__cols {
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 1.59375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__cols {
    margin-right: 0.81875rem;
  }
}

.p-reason--02 .p-reason__col--main {
  height: 35.25rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__col--main {
    height: 18.16875rem;
  }
}

.p-reason--02 .p-reason__col--main .p-reason__col-text {
  top: 1.05rem;
  font-size: 2rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__col--main .p-reason__col-text {
    top: 0.4375rem;
    font-size: 1rem;
  }
}

.p-reason--02 .p-reason__photo {
  grid-row: 1;
  grid-column: 2;
  align-self: start;
  width: 35.625rem;
  height: 26.71875rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__photo {
    width: 21.5625rem;
    height: 16.175rem;
    margin: 0 0 1.88125rem 1.875rem;
  }
}

.p-reason--02 .p-reason__body {
  position: relative;
  top: -0.421875rem;
  grid-row: 1;
  grid-column: 4;
  padding-top: 7.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__body {
    top: -0.375rem;
    width: 19.6875rem;
    padding-top: 0;
    margin: 0 1.875rem;
  }
}

.p-reason--02 .p-reason__text {
  margin-bottom: 2.475rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--02 .p-reason__text {
    margin-bottom: 0.94375rem;
  }
}

.p-reason--03 {
  min-height: 40.8875rem;
  padding-top: 6.3625rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 {
    min-height: 0;
    padding-top: 4.38125rem;
  }
}

.p-reason--03 .p-reason__head {
  right: 8.5rem;
  width: 7.125rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__head {
    right: 0.5625rem;
    width: 3.725rem;
  }
}

.p-reason--03 .p-reason__num {
  margin-bottom: 1.01875rem;
  margin-left: 0.1875rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__num {
    width: 3.5625rem;
    height: 2.26875rem;
    margin-bottom: 0.5375rem;
    margin-left: 0.1rem;
  }
}

.p-reason--03 .p-reason__cols {
  gap: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__cols {
    gap: 0.2625rem;
  }
}

.p-reason--03 .p-reason__col--main {
  height: 21rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__col--main {
    width: 1.73125rem;
    height: 10.48125rem;
  }
}

.p-reason--03 .p-reason__col--main .p-reason__col-text {
  top: 0.675rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__col--main .p-reason__col-text {
    top: 0.3375rem;
  }
}

.p-reason--03 .p-reason__col--sub {
  top: 3.03125rem;
  height: 32.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__col--sub {
    top: 0.93125rem;
    width: 1.73125rem;
    height: 16.3125rem;
  }
}

.p-reason--03 .p-reason__col--sub .p-reason__col-text {
  top: 0.675rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__col--sub .p-reason__col-text {
    top: 0.3375rem;
  }
}

.p-reason--03 .p-reason__photo {
  width: 44.6375rem;
  height: 24.8125rem;
  margin-bottom: -1.83125rem;
  margin-left: 30.8375rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__photo {
    width: 19.875rem;
    height: 15.1375rem;
    margin: 0 0 1.275rem;
  }
}

.p-reason--03 .p-reason__body {
  position: relative;
  top: -0.421875rem;
  width: 43.125rem;
  margin-left: 12.03125rem;
}
@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__body {
    top: -0.375rem;
    width: 19.5rem;
    margin-left: 1.96875rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-reason--03 .p-reason__text {
    margin-bottom: 0.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-contact__cta {
    width: 96%;
    max-width: 550px;
    height: auto;
    min-height: 5.4em;
    padding: 0;
  }
  .p-contact__cta-image {
    align-self: stretch;
    width: 32%;
    max-width: 16.0625rem;
    height: auto;
  }
  .p-contact__cta-image img {
    height: 100%;
  }
  .p-contact__cta-text {
    margin-left: 1.6em;
  }
  .p-reason__head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-reason__num {
    margin-right: 0;
    margin-left: 0;
  }
  .p-bg__beige {
    bottom: 0;
    height: auto;
  }
  .p-reason--01 .p-reason__map {
    width: clamp(240px, 100%, 340px);
  }
  .p-reason--01 .p-reason__map-button img {
    height: auto;
    aspect-ratio: 340/238.3;
  }
  .p-reason__map-note {
    justify-content: center;
    height: auto;
    margin: 0 auto;
  }
  .c-heading__title {
    font-size: max(2rem, 28px);
  }
  .c-heading__sub {
    font-size: max(1.25rem, 17px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1439.98px) {
  .c-btn {
    width: auto;
    min-width: 14.4em;
    height: auto;
    min-height: 3.6em;
    padding: 0.9em 1.4em;
  }
  .c-btn.c-btn--large {
    width: min(50rem, 92%);
    height: auto;
    min-height: 4.4em;
    padding: 1em 3.4em 1em 2em;
  }
  .c-btn.c-btn--large .c-btn__icon {
    right: 1.2em;
    width: 2.2em;
    height: 2.2em;
  }
  .c-btn__icon {
    width: 1.9em;
    height: 1.9em;
  }
  .p-contact__card {
    height: auto;
    padding: 2.2em 1.2em 2.4em;
  }
  .p-contact__card--mail {
    height: auto;
  }
  .p-contact__cta {
    width: min(96%, 800px);
  }
}
:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-pc {
    display: block;
  }
}

.u-hidden-pc--inline {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-pc--inline {
    display: inline;
  }
}

.u-hidden-pc--flex {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-pc--flex {
    display: flex;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hidden-sp--inline {
  display: inline;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-sp--inline {
    display: none;
  }
}

.u-hidden-sp--flex {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-sp--flex {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .u-hidden-sm {
    display: none;
  }
}

.u-hidden-sm-block {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-hidden-sm-block {
    display: block;
  }
}

.u-hidden-sm--inline {
  display: inline;
}
@media screen and (max-width: 480px) {
  .u-hidden-sm--inline {
    display: none;
  }
}

.u-hidden-sm--flex {
  display: flex;
}
@media screen and (max-width: 480px) {
  .u-hidden-sm--flex {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-md {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .u-hidden-md {
    display: block;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-md--inline {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .u-hidden-md--inline {
    display: inline;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-md--flex {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .u-hidden-md--flex {
    display: flex;
  }
}

@media screen and (max-width: 767.98px) {
  .u-only-pc {
    display: none;
  }
}

.u-only-sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-only-sp {
    display: inline;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}