@charset "UTF-8";@import "kiso.css";

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* inner */
  --inner: min(1080px, 100%);
  --inner-sp: min(500px, 100%);
  --padding-inner: 20px;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #0d2936;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-border-gray: #aaaaaf;
  --color-accent: #408f95;
  --color-primary: #234f5e;
  --color-secondary: #00f;
  --color-orange: #de8430;
  --color-threed-dark: #434343;
  --color-threed-dark-deep: #383838;
  --color-threed-text: #575757;
  --color-threed-accent: #3b79e4;
  --color-threed-heading-shadow: rgb(172 172 172 / 10%);
  --color-threed-footer-bg: #eee;
  --color-threed-header-nav-bg: rgb(255 255 255 / 10%);
  --color-threed-header-nav-border: #9b9b9b;
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --base-font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  --title-font-family: "Lato", sans-serif;
  --to-rem: calc(100vw / 1340);
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: rem(80);
}

@media screen and (width >= 1341px) {
  :root {
    --to-rem: 1px;
  }
}
@media screen and (width <= 767px) {
  :root {
    --to-rem: calc(100vw / 375);
  }
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* アンカーリンクのスクロール位置を固定ヘッダー分ずらす */
[id] {
  scroll-margin-top: var(--header-height);
}

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;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

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

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

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

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-contact {
  margin-top: var(--header-height);
}

.l-header {
  position: relative;
  z-index: var(--z-index-header);
}

.l-inner {
  max-width: calc(1400 * var(--to-rem));
  padding-inline: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: calc(680 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.l-top__about {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .l-top__about {
    margin-top: calc(124 * var(--to-rem));
  }
}

.c-accordion {
  --_text-color: var(--color-text);
  --_background-default: var(--color-white);
  --_background-interactive: var(--color-gray);
  --_background-opened: var(--color-accent);
  --_text-color-opened: var(--color-white);
  --_duration: 0.2s;
}
.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}
.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion__summary {
  display: block grid;
  grid-template: ". icon"/1fr max-content;
  gap: calc(16 * var(--to-rem));
  align-items: center;
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
  color: var(--_text-color);
  background-color: var(--_background-default);
  transition: background-color var(--_duration) ease, color var(--_duration) ease;
}
.c-accordion__summary::before {
  display: inline-block;
  grid-area: icon;
  width: calc(18 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  content: "";
  background-color: currentcolor;
}
.c-accordion__summary::after {
  display: inline-block;
  grid-area: icon;
  width: calc(18 * var(--to-rem));
  height: calc(2 * var(--to-rem));
  content: "";
  background-color: currentcolor;
  transition: rotate var(--_duration) ease;
  rotate: 90deg;
}
.c-accordion__summary:focus-visible {
  background-color: var(--_background-interactive);
  outline: 2px solid currentcolor;
  outline-offset: -2px;
}
@media (any-hover: hover) {
  .c-accordion__summary:hover {
    background-color: var(--_background-interactive);
  }
}

.c-accordion[open] .c-accordion__summary {
  color: var(--_text-color-opened);
  background-color: var(--_background-opened);
}
.c-accordion[open] .c-accordion__summary::after {
  rotate: 0deg;
}

.c-accordion__contents {
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(24 * var(--to-rem));
}

/* ===== c-button: 共通ボタン ===== */
.c-button {
  --c-button-bg: var(--color-threed-accent);
  --c-button-text: var(--color-white);
  --c-button-border: var(--color-threed-accent);
  --c-button-circle-bg: var(--color-white);
  --c-button-arrow: var(--color-threed-accent);
  --c-button-hover-bg: var(--color-white);
  --c-button-hover-text: var(--color-threed-accent);
  --c-button-hover-border: var(--color-threed-accent);
  --c-button-hover-circle-bg: var(--color-threed-accent);
  --c-button-hover-arrow: var(--color-white);
  --c-button-min-inline: rem(270);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--c-button-min-inline);
  padding-block: calc(20 * var(--to-rem));
  padding-inline: calc(32 * var(--to-rem)) calc(64 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--c-button-text);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  background-color: var(--c-button-bg);
  border: 1px solid var(--c-button-border);
  border-radius: calc(100 * var(--to-rem));
  transition: color var(--duration), background-color var(--duration), border-color var(--duration), transform var(--duration);
}

.c-button::before {
  position: absolute;
  top: 50%;
  right: calc(16 * var(--to-rem));
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30 * var(--to-rem));
  height: calc(30 * var(--to-rem));
  content: "";
  background-color: var(--c-button-circle-bg);
  border-radius: 50%;
  transition: background-color var(--duration);
  transform: translateY(-50%);
}

.c-button::after {
  position: absolute;
  top: 50%;
  right: calc(16 * var(--to-rem));
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30 * var(--to-rem));
  height: calc(30 * var(--to-rem));
  content: "";
  background-image: url("/assets/images/btn-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(15 * var(--to-rem)) calc(14 * var(--to-rem));
  transition: filter var(--duration);
  transform: translateY(-50%);
}

.c-button:hover {
  color: var(--c-button-hover-text);
  background-color: var(--c-button-hover-bg);
  border-color: var(--c-button-hover-border);
}

.c-button:hover::before {
  background-color: var(--c-button-hover-circle-bg);
}

.c-button:hover::after {
  filter: brightness(0) invert(1);
}

.c-button[data-color=black] {
  --c-button-bg: var(--color-white);
  --c-button-text: var(--color-threed-accent);
  --c-button-border: var(--color-threed-accent);
  --c-button-circle-bg: var(--color-threed-accent);
  --c-button-arrow: var(--color-white);
  --c-button-hover-bg: var(--color-threed-accent);
  --c-button-hover-text: var(--color-white);
  --c-button-hover-border: var(--color-threed-accent);
  --c-button-hover-circle-bg: var(--color-white);
  --c-button-hover-arrow: var(--color-threed-accent);
}

.c-button--header {
  --c-button-min-inline: rem(270);
  font-size: calc(18 * var(--to-rem));
}

.c-button--drawer {
  --c-button-min-inline: rem(343);
}

/* /c-button: 共通ボタン */
.c-card {
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 12px;
  transition: scale 0.3s ease;
  container-type: width;
  container-name: card;
}

.c-card__body {
  display: grid;
  grid-template-columns: minmax(min(400 * var(--to-rem), 100%), 1fr) auto;
}
@container card (width <= 700px) {
  .c-card__body {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (any-hover: hover) {
  .c-card:has(.c-button:hover) .c-card__image img {
    scale: 1.1;
  }
}
.c-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.c-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.4s ease;
}

.c-card__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: calc(16 * var(--to-rem));
  padding: calc(24 * var(--to-rem));
}

.c-card__title {
  margin: 0;
  font-size: calc(20 * var(--to-rem));
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: calc(24 * var(--to-rem));
  }
}
.c-card__text {
  margin: 0;
  font-size: calc(14 * var(--to-rem));
  line-height: 1.8;
  color: var(--color-text-secondary);
}

@media screen and (max-width: 767px) {
  .c-card__text {
    font-size: max(14px, 16 * var(--to-rem));
  }
}
.c-card__button {
  align-self: end;
}

.c-section-title {
  position: relative;
  font-family: var(--title-font-family);
  font-size: calc(40 * var(--to-rem));
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: calc(60 * var(--to-rem));
  }
}

.c-section-title[data-position=center] {
  text-align: center;
}

.c-section-title[data-position=left] {
  text-align: left;
}

.c-section-title[data-position=right] {
  text-align: right;
}

.c-section-title::before {
  position: absolute;
  top: 50%;
  z-index: -1;
  font-size: calc(60 * var(--to-rem));
  color: var(--color-gray);
  content: attr(data-title);
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    font-size: calc(120 * var(--to-rem));
  }
}

.c-section-title[data-position=center]::before {
  left: 50%;
  translate: -50% -50%;
}

.c-section-title[data-position=left]::before {
  left: 0;
  translate: 0 -50%;
}

.c-section-title[data-position=right]::before {
  right: 0;
  translate: 0 -50%;
}

.c-triangle {
  display: inline-block;
  width: calc(64 * var(--to-rem));
  aspect-ratio: 1/1;
  background-color: var(--color-black);
}

.c-triangle[data-direction=top] {
  clip-path: var(--clip-triangle-top);
}

.c-triangle[data-direction=bottom] {
  clip-path: var(--clip-triangle-bottom);
}

.c-triangle[data-direction=left] {
  clip-path: var(--clip-triangle-left);
}

.c-triangle[data-direction=right] {
  clip-path: var(--clip-triangle-right);
}

.c-triangle[data-direction=lower-left] {
  clip-path: var(--clip-triangle-lower-left);
}

.c-triangle[data-direction=upper-left] {
  clip-path: var(--clip-triangle-upper-left);
}

.c-triangle[data-direction=lower-right] {
  clip-path: var(--clip-triangle-lower-right);
}

.c-triangle[data-direction=upper-right] {
  clip-path: var(--clip-triangle-upper-right);
}

/* ===== p-about: 私たちについて ===== */
.p-about {
  padding-top: calc(16 * var(--to-rem));
  padding-bottom: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-top: calc(60 * var(--to-rem));
    padding-bottom: calc(50 * var(--to-rem));
  }
}

.p-about__inner {
  max-width: calc(1440 * var(--to-rem));
  padding-left: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-left: calc(0 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-about__head {
  display: flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
}

.p-about__headLine {
  display: block;
  width: calc(80 * var(--to-rem));
  height: calc(3 * var(--to-rem));
  background-color: #5fbaa6;
}

.p-about__headLabel {
  font-family: "Inter", sans-serif;
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #5fbaa6;
  letter-spacing: 0.1em;
}

.p-about__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: calc(80 * var(--to-rem));
  gap: calc(19 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__content {
    flex-direction: column;
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-about__titleWrap {
  padding-top: calc(0 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__titleWrap {
    padding-top: 0;
  }
}

.p-about__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(42 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: calc(1.2 * var(--to-rem));
  margin-top: calc(36 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-about__imageWrap {
  width: calc(915 * var(--to-rem));
  margin-left: calc(40 * var(--to-rem));
  overflow: hidden;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__imageWrap {
    width: 100%;
    margin-top: calc(20 * var(--to-rem));
    margin-left: 0;
    border-radius: calc(12 * var(--to-rem));
  }
}

.p-about__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-about__features {
  display: flex;
  justify-content: center;
  gap: calc(40 * var(--to-rem));
  max-width: calc(1100 * var(--to-rem));
  margin-top: calc(50 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__features {
    flex-direction: column;
    align-items: center;
    gap: calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(40 * var(--to-rem));
  }
}

.p-about__featureItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-about__featureCircle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(285 * var(--to-rem));
  height: calc(285 * var(--to-rem));
  padding: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid #2ca288;
  border-radius: 50%;
  padding-top: calc(44 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__featureCircle {
    width: calc(200 * var(--to-rem));
    height: calc(200 * var(--to-rem));
    padding: calc(14 * var(--to-rem));
    padding-top: calc(20 * var(--to-rem));
  }
}

.p-about__featureIconWrap {
  width: calc(72 * var(--to-rem));
  margin-inline: auto;
}

.p-about__featureIconWrap3 {
  width: calc(53 * var(--to-rem));
}

.p-about__featureIcon {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-about__featureIcon {
    width: 100%;
    height: auto;
  }
}

.p-about__featureText {
  margin-top: calc(-1 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(22 * var(--to-rem));
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding-top: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__featureText {
    margin-top: calc(6 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.5714285714;
    padding-top: calc(6 * var(--to-rem));
  }
}
.p-about__featureText span {
  color: #2ca288;
}
.p-about__featureText .p-about__featureTextAccent {
  color: #2ca288;
  font-size: calc(33 * var(--to-rem));
}

.p-about__featureText3 {
  padding-top: calc(0 * var(--to-rem));
}

.p-about__bottom {
  margin-top: calc(71 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__bottom {
    margin-top: calc(50 * var(--to-rem));
  }
}

.p-about__message {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7777777778;
  color: #444;
  text-align: center;
  letter-spacing: calc(2 * var(--to-rem));
  margin-top: calc(52 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-about__message {
    font-size: calc(20 * var(--to-rem));
    line-height: 1.8181818182;
  }
}

.p-about__bottomContent {
  display: flex;
  align-items: flex-start;
  max-width: calc(1440 * var(--to-rem));
  padding-right: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-about__bottomContent {
    padding-right: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-about__bottomContent {
    flex-direction: column;
    padding-right: 0;
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-about__bottomImageWrap {
  width: calc(721 * var(--to-rem));
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 calc(20 * var(--to-rem)) calc(20 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-about__bottomImageWrap {
    width: 100%;
    border-radius: calc(12 * var(--to-rem));
  }
}

.p-about__bottomImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-about__description {
  margin-left: calc(85 * var(--to-rem));
  padding-top: calc(52 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 2.0555555556;
  color: #444;
  letter-spacing: calc(-0.2 * var(--to-rem));
  max-width: calc(482 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-about__description {
    margin-left: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-about__description {
    margin-top: calc(20 * var(--to-rem));
    margin-left: 0;
    padding-top: 0;
    font-size: calc(16 * var(--to-rem));
    line-height: 2;
  }
}

/* /p-about: 私たちについて */
/* ===== p-business: その他の事業内容 ===== */
.p-business {
  padding-top: calc(110 * var(--to-rem));
  padding-bottom: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-top: calc(60 * var(--to-rem));
    padding-bottom: calc(120 * var(--to-rem));
  }
}

.p-business__inner {
  max-width: calc(1184 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-business__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-business__head {
  display: flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-business__head {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-business__head {
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-business__headLine {
  display: block;
  width: calc(80 * var(--to-rem));
  height: calc(3 * var(--to-rem));
  background-color: #5fbaa6;
}

.p-business__headLabel {
  font-family: "Inter", sans-serif;
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #5fbaa6;
  letter-spacing: 0.1em;
}

.p-business__title {
  margin-top: calc(44 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(42 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .p-business__title {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-business__title {
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(30 * var(--to-rem));
    font-size: calc(28 * var(--to-rem));
  }
}

.p-business__menu {
  display: grid;
  grid-template-columns: repeat(4, calc(260 * var(--to-rem)));
  gap: calc(17 * var(--to-rem));
  margin-top: calc(60 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-business__menu {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-business__menu {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: calc(0 * var(--to-rem));
    margin-top: calc(30 * var(--to-rem));
    gap: calc(10 * var(--to-rem));
  }
}

.p-business__menuItem {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(70 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  text-decoration: none;
  letter-spacing: 0.1em;
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid #42ab94;
  border-top-left-radius: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-business__menuItem {
    height: calc(50 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
  }
}

.p-business__company {
  display: flex;
  gap: calc(46 * var(--to-rem));
  max-width: calc(784 * var(--to-rem));
  margin-left: auto;
  margin-top: calc(58 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-business__company {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-business__company {
    flex-direction: column;
    align-items: center;
    gap: calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(50 * var(--to-rem));
  }
}

.p-business__companyLogo {
  width: calc(153 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-business__companyLogo {
    width: calc(100 * var(--to-rem));
  }
}

.p-business__companyLogoImage {
  width: 100%;
  height: auto;
}

.p-business__companyBody {
  flex: 1;
}

.p-business__companySlogan {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-business__companySlogan {
    font-size: calc(20 * var(--to-rem));
    text-align: center;
    line-height: 1.5;
  }
}

.p-business__companyText {
  margin-top: calc(25 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 2.3125;
  color: #444;
  letter-spacing: calc(0.9 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-business__companyText {
    margin-top: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 2.1428571429;
  }
}

.p-business__companyAddress {
  margin-top: calc(32 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6875;
  color: #444;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-business__companyAddress {
    margin-top: calc(14 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.7142857143;
  }
}

/* /p-business: その他の事業内容 */
/* ===== p-confirmPage: 確認ページ ===== */
.p-confirmPage__kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(295 * var(--to-rem));
  background-image: url("../images/contact-kv.Cnaiaujm.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-confirmPage__kv {
    height: calc(180 * var(--to-rem));
  }
}

.p-confirmPage__kvTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-confirmPage__kvTitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-confirmPage__contentArea {
  padding-block: calc(100 * var(--to-rem));
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-confirmPage__contentArea {
    padding-block: calc(50 * var(--to-rem));
  }
}

.p-confirmPage__contentWrap {
  max-width: calc(850 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(80 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-confirmPage__contentWrap {
    margin-inline: calc(20 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-confirmPage__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-confirmPage__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-confirmPage__desc {
  margin-top: calc(20 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.7142857143;
  color: #666;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-confirmPage__desc {
    font-size: calc(13 * var(--to-rem));
  }
}

.p-confirmPage__list {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-confirmPage__list {
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-confirmPage__item {
  padding-block: calc(24 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .p-confirmPage__item {
    padding-block: calc(18 * var(--to-rem));
  }
}

.p-confirmPage__item:first-child {
  border-top: calc(1 * var(--to-rem)) solid #e0e0e0;
}

.p-confirmPage__label {
  font-family: "Inter", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #71bfae;
  letter-spacing: 0.1em;
}

.p-confirmPage__value {
  margin-top: calc(10 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1.625;
  color: #444;
  letter-spacing: 0.05em;
}

.p-confirmPage__value--message {
  white-space: pre-wrap;
}

.p-confirmPage__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
  margin-top: calc(50 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-confirmPage__buttons {
    flex-direction: column-reverse;
    gap: calc(14 * var(--to-rem));
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-confirmPage__buttonBack {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(270 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #71bfae;
  cursor: pointer;
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid #71bfae;
  border-radius: calc(6 * var(--to-rem));
  letter-spacing: 0.1em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-confirmPage__buttonBack {
    width: 100%;
  }
}

.p-confirmPage__buttonBack:hover {
  opacity: 0.8;
}

.p-confirmPage__buttonSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(270 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  cursor: pointer;
  background-color: #71bfae;
  border: none;
  border-radius: calc(6 * var(--to-rem));
  letter-spacing: 0.1em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-confirmPage__buttonSubmit {
    width: 100%;
  }
}

.p-confirmPage__buttonSubmit:hover {
  opacity: 0.8;
}

.p-confirmPage__buttonSubmit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* /p-confirmPage: 確認ページ */
/* ===== p-contact: お問い合わせ ===== */
.p-contact {
  position: relative;
  overflow: hidden;
  padding-top: calc(86 * var(--to-rem));
  padding-bottom: calc(130 * var(--to-rem));
}
.p-contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-contact__bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-inline: calc(20 * var(--to-rem));
}

.p-contact__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1.8;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: calc(20 * var(--to-rem));
    line-height: 1.6;
  }
}

.p-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 * var(--to-rem));
  width: calc(480 * var(--to-rem));
  height: calc(90 * var(--to-rem));
  margin-top: calc(18 * var(--to-rem));
  text-decoration: none;
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid #42ab94;
  border-radius: calc(16 * var(--to-rem));
  transition: background-color var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-contact__button {
    width: 100%;
    max-width: calc(360 * var(--to-rem));
    height: calc(60 * var(--to-rem));
    margin-top: calc(24 * var(--to-rem));
  }
}

.p-contact__button:hover {
  background-color: #42ab94;
}

.p-contact__button:hover .p-contact__buttonLabel {
  color: var(--color-white);
}

.p-contact__button:hover .p-contact__buttonArrow::before {
  border-color: var(--color-white);
}

.p-contact__button:hover .p-contact__buttonIcon rect,
.p-contact__button:hover .p-contact__buttonIcon path {
  stroke: var(--color-white);
}

.p-contact__buttonIcon {
  width: calc(33 * var(--to-rem));
  height: calc(25 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contact__buttonIcon {
    width: calc(24 * var(--to-rem));
    height: calc(18 * var(--to-rem));
  }
}

.p-contact__buttonIcon rect,
.p-contact__buttonIcon path {
  transition: stroke var(--duration);
}

.p-contact__buttonLabel {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-contact__buttonLabel {
    font-size: calc(18 * var(--to-rem));
  }
}

.p-contact__buttonArrow {
  position: relative;
  width: calc(8 * var(--to-rem));
  height: calc(14 * var(--to-rem));
}

.p-contact__buttonArrow::before {
  position: absolute;
  top: 60%;
  right: calc(-30 * var(--to-rem));
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  content: "";
  border-top: calc(2 * var(--to-rem)) solid #2ca288;
  border-right: calc(2 * var(--to-rem)) solid #2ca288;
  transition: border-color var(--duration);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-contact__buttonArrow::before {
    right: calc(-20 * var(--to-rem));
  }
}

/* /p-contact: お問い合わせ */
/* ===== p-contactPage: お問い合わせページ ===== */
.p-contactPage__kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(295 * var(--to-rem));
  background-image: url("../images/contact-kv.Cnaiaujm.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-contactPage__kv {
    height: calc(180 * var(--to-rem));
  }
}

.p-contactPage__kvTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-contactPage__kvTitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-contactPage__formArea {
  padding-block: calc(100 * var(--to-rem));
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-contactPage__formArea {
    padding-block: calc(50 * var(--to-rem));
  }
}

.p-contactPage__formWrap {
  max-width: calc(850 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(80 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactPage__formWrap {
    margin-inline: calc(20 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-contactPage__formTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}

.p-contactPage__form {
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactPage__form {
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-contactPage__formItem {
  margin-top: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactPage__formItem {
    margin-top: calc(20 * var(--to-rem));
  }
}

.p-contactPage__formItem:first-child {
  margin-top: 0;
}

.p-contactPage__formLabel {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}

.p-contactPage__formRequired {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(10 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(12 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: #71bfae;
  border-radius: calc(3 * var(--to-rem));
}

.p-contactPage__formInput {
  display: block;
  width: calc(320 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  margin-top: calc(10 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  color: #444;
  background-color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid #b0b0b0;
  border-radius: calc(6 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactPage__formInput {
    width: 100%;
  }
}

.p-contactPage__formInput:focus {
  border-color: #5fbaa6;
  outline: none;
}

.p-contactPage__formCheckboxes {
  display: flex;
  gap: calc(24 * var(--to-rem));
  margin-top: calc(14 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactPage__formCheckboxes {
    flex-direction: column;
    gap: calc(12 * var(--to-rem));
  }
}

.p-contactPage__formCheckboxLabel {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--to-rem));
  cursor: pointer;
}

.p-contactPage__formCheckbox {
  width: calc(26 * var(--to-rem));
  height: calc(26 * var(--to-rem));
  cursor: pointer;
  border: calc(1 * var(--to-rem)) solid #b0b0b0;
  border-radius: 50%;
  appearance: none;
  background-color: var(--color-white);
}

.p-contactPage__formCheckbox:checked {
  border-color: #71bfae;
  position: relative;
}

.p-contactPage__formCheckbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(6 * var(--to-rem));
  height: calc(12 * var(--to-rem));
  border: solid #71bfae;
  border-width: 0 calc(2 * var(--to-rem)) calc(2 * var(--to-rem)) 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.p-contactPage__formCheckboxText {
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}

.p-contactPage__formTextarea {
  display: block;
  width: 100%;
  height: calc(200 * var(--to-rem));
  margin-top: calc(10 * var(--to-rem));
  padding-block: calc(16 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  color: #444;
  resize: vertical;
  background-color: var(--color-white);
  border: calc(1 * var(--to-rem)) solid #b0b0b0;
  border-radius: calc(6 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contactPage__formTextarea {
    height: calc(150 * var(--to-rem));
  }
}

.p-contactPage__formTextarea:focus {
  border-color: #5fbaa6;
  outline: none;
}

.p-contactPage__formPrivacy {
  margin-top: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contactPage__formPrivacy {
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-contactPage__formPrivacyText {
  font-family: "Inter", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.7142857143;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-contactPage__formPrivacyText {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-contactPage__formPrivacyLabel {
  display: inline-flex;
  align-items: center;
  gap: calc(10 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
  cursor: pointer;
}

.p-contactPage__formPrivacyCheckbox {
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  cursor: pointer;
  border: calc(1 * var(--to-rem)) solid #b0b0b0;
  border-radius: calc(3 * var(--to-rem));
  appearance: none;
  background-color: var(--color-white);
}

.p-contactPage__formPrivacyCheckbox:checked {
  border-color: #71bfae;
  position: relative;
}

.p-contactPage__formPrivacyCheckbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(5 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  border: solid #71bfae;
  border-width: 0 calc(2 * var(--to-rem)) calc(2 * var(--to-rem)) 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.p-contactPage__formPrivacyCheckboxText {
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}

.p-contactPage__formSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(270 * var(--to-rem));
  height: calc(50 * var(--to-rem));
  margin-inline: auto;
  margin-top: calc(23 * var(--to-rem));
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  cursor: pointer;
  background-color: #71BFAE;
  border: none;
  border-radius: calc(6 * var(--to-rem));
  letter-spacing: 0.1em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-contactPage__formSubmit {
    height: calc(50 * var(--to-rem));
  }
}

.p-contactPage__formSubmit:hover:not(:disabled) {
  opacity: 0.8;
}

.p-contactPage__formSubmit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* /p-contactPage: お問い合わせページ */
/* ===== p-ctaBanner: 資料ダウンロードCTA ===== */
.p-ctaBanner {
  padding-block: calc(60 * var(--to-rem));
  background: linear-gradient(135deg, #1a8a6e 0%, #2ca288 40%, #42ab94 100%);
}
@media screen and (max-width: 767px) {
  .p-ctaBanner {
    padding-block: calc(40 * var(--to-rem));
  }
}

.p-ctaBanner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(40 * var(--to-rem));
  max-width: calc(1080 * var(--to-rem));
  margin-inline: auto;
  padding-inline: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__inner {
    flex-direction: column;
    gap: calc(24 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-ctaBanner__content {
  display: flex;
  align-items: center;
  gap: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__content {
    flex-direction: column;
    gap: calc(16 * var(--to-rem));
    text-align: center;
  }
}

.p-ctaBanner__iconWrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: calc(72 * var(--to-rem));
  height: calc(72 * var(--to-rem));
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__iconWrap {
    width: calc(56 * var(--to-rem));
    height: calc(56 * var(--to-rem));
  }
}

.p-ctaBanner__icon {
  width: calc(36 * var(--to-rem));
  height: calc(36 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__icon {
    width: calc(28 * var(--to-rem));
    height: calc(28 * var(--to-rem));
  }
}

.p-ctaBanner__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(28 * var(--to-rem));
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__label {
    font-size: calc(22 * var(--to-rem));
  }
}

.p-ctaBanner__description {
  margin-top: calc(8 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(15 * var(--to-rem));
  font-weight: 500;
  line-height: 1.7333333333;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__description {
    margin-top: calc(6 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
    line-height: 1.6923076923;
  }
}

.p-ctaBanner__button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--to-rem));
  width: calc(340 * var(--to-rem));
  height: calc(70 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(20 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  text-decoration: none;
  letter-spacing: 0.05em;
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid transparent;
  border-radius: calc(100 * var(--to-rem));
  box-shadow: 0 calc(4 * var(--to-rem)) calc(16 * var(--to-rem)) rgba(0, 0, 0, 0.15);
  transition: color var(--duration), background-color var(--duration), border-color var(--duration), transform var(--duration), box-shadow var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ctaBanner__button {
    width: 100%;
    max-width: calc(320 * var(--to-rem));
    height: calc(56 * var(--to-rem));
    font-size: calc(17 * var(--to-rem));
  }
}

.p-ctaBanner__button:hover {
  color: var(--color-white);
  background-color: #2ca288;
  border: calc(2 * var(--to-rem)) solid var(--color-white);
  box-shadow: 0 calc(6 * var(--to-rem)) calc(24 * var(--to-rem)) rgba(0, 0, 0, 0.2);
  transform: translateY(calc(-2 * var(--to-rem)));
}

.p-ctaBanner__button:hover .p-ctaBanner__buttonArrow::before {
  border-color: var(--color-white);
}

.p-ctaBanner__buttonArrow {
  position: relative;
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
}

.p-ctaBanner__buttonArrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(8 * var(--to-rem));
  height: calc(8 * var(--to-rem));
  content: "";
  border-top: calc(2 * var(--to-rem)) solid #2ca288;
  border-right: calc(2 * var(--to-rem)) solid #2ca288;
  transition: border-color var(--duration);
  transform: translateY(-50%) rotate(45deg);
}

/* /p-ctaBanner: 資料ダウンロードCTA */
/* ===== p-ctaDownload: サンクスページ 資料DLボタン ===== */
.p-ctaDownload {
  margin-top: calc(40 * var(--to-rem));
  padding-top: calc(40 * var(--to-rem));
  border-top: calc(1 * var(--to-rem)) solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .p-ctaDownload {
    margin-top: calc(30 * var(--to-rem));
    padding-top: calc(30 * var(--to-rem));
  }
}

.p-ctaDownload__heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(20 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-ctaDownload__heading {
    font-size: calc(17 * var(--to-rem));
  }
}

.p-ctaDownload__text {
  margin-top: calc(16 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.7142857143;
  color: #666;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-ctaDownload__text {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}

.p-ctaDownload__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--to-rem));
  width: calc(360 * var(--to-rem));
  height: calc(64 * var(--to-rem));
  margin-top: calc(24 * var(--to-rem));
  margin-inline: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #1a8a6e 0%, #2ca288 50%, #42ab94 100%);
  border-radius: calc(100 * var(--to-rem));
  box-shadow: 0 calc(4 * var(--to-rem)) calc(12 * var(--to-rem)) rgba(44, 162, 136, 0.3);
  transition: transform var(--duration), box-shadow var(--duration), opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .p-ctaDownload__button {
    width: 100%;
    max-width: calc(320 * var(--to-rem));
    height: calc(56 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
    margin-top: calc(20 * var(--to-rem));
  }
}

.p-ctaDownload__button:hover {
  opacity: 0.85;
  box-shadow: 0 calc(6 * var(--to-rem)) calc(20 * var(--to-rem)) rgba(44, 162, 136, 0.4);
  transform: translateY(calc(-2 * var(--to-rem)));
}

.p-ctaDownload__buttonIcon {
  width: calc(24 * var(--to-rem));
  height: calc(24 * var(--to-rem));
  flex-shrink: 0;
}

.p-ctaDownload__note {
  margin-top: calc(12 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(12 * var(--to-rem));
  font-weight: 400;
  line-height: 1;
  color: #999;
  text-align: center;
  letter-spacing: 0.05em;
}

/* /p-ctaDownload: サンクスページ 資料DLボタン */
/* ===== p-downloadPage: 資料ダウンロードページ ===== */
.p-downloadPage__kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(295 * var(--to-rem));
  background-image: url("../images/contact-kv.Cnaiaujm.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__kv {
    height: calc(180 * var(--to-rem));
  }
}

.p-downloadPage__kvTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__kvTitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-downloadPage__formArea {
  padding-block: calc(80 * var(--to-rem));
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formArea {
    padding-block: calc(40 * var(--to-rem));
  }
}

.p-downloadPage__formWrap {
  max-width: calc(700 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(80 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formWrap {
    margin-inline: calc(20 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-downloadPage__formLead {
  margin-bottom: calc(40 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formLead {
    margin-bottom: calc(24 * var(--to-rem));
  }
}

.p-downloadPage__formLeadText {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7777777778;
  color: #444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formLeadText {
    font-size: calc(15 * var(--to-rem));
    line-height: 1.7333333333;
  }
}

.p-downloadPage__formLeadNote {
  margin-top: calc(12 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.6;
  color: #888;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formLeadNote {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}

.p-downloadPage__formItem {
  margin-top: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formItem {
    margin-top: calc(20 * var(--to-rem));
  }
}

.p-downloadPage__formLabel {
  display: block;
  margin-bottom: calc(8 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formLabel {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-downloadPage__formRequired {
  display: inline-block;
  margin-left: calc(8 * var(--to-rem));
  padding-block: calc(4 * var(--to-rem));
  padding-inline: calc(8 * var(--to-rem));
  font-size: calc(11 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background-color: #e05555;
  border-radius: calc(3 * var(--to-rem));
}

.p-downloadPage__formInput {
  width: 100%;
  height: calc(50 * var(--to-rem));
  padding-inline: calc(16 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 400;
  line-height: 1;
  color: #444;
  background-color: #f8f8f8;
  border: calc(1 * var(--to-rem)) solid #ddd;
  border-radius: calc(8 * var(--to-rem));
  transition: border-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formInput {
    height: calc(44 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}

.p-downloadPage__formInput:focus {
  border-color: #2ca288;
  outline: none;
}

.p-downloadPage__formInput.is-error {
  border-color: #e05555;
}

.p-downloadPage__formPrivacy {
  margin-top: calc(32 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formPrivacy {
    margin-top: calc(24 * var(--to-rem));
  }
}

.p-downloadPage__formPrivacyText {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(13 * var(--to-rem));
  font-weight: 500;
  line-height: 1.6923076923;
  color: #666;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formPrivacyText {
    font-size: calc(12 * var(--to-rem));
  }
}

.p-downloadPage__formPrivacyLabel {
  display: inline-flex;
  gap: calc(8 * var(--to-rem));
  align-items: center;
  margin-top: calc(12 * var(--to-rem));
  cursor: pointer;
}

.p-downloadPage__formPrivacyCheckbox {
  width: calc(20 * var(--to-rem));
  height: calc(20 * var(--to-rem));
  cursor: pointer;
  border: calc(1 * var(--to-rem)) solid #b0b0b0;
  border-radius: calc(3 * var(--to-rem));
  appearance: none;
  background-color: var(--color-white);
}

.p-downloadPage__formPrivacyCheckbox:checked {
  border-color: #71bfae;
  position: relative;
}

.p-downloadPage__formPrivacyCheckbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(5 * var(--to-rem));
  height: calc(10 * var(--to-rem));
  border: solid #71bfae;
  border-width: 0 calc(2 * var(--to-rem)) calc(2 * var(--to-rem)) 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.p-downloadPage__formPrivacyCheckboxText {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  letter-spacing: 0.05em;
}

.p-downloadPage__formSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(360 * var(--to-rem));
  height: calc(64 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
  margin-inline: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.1em;
  cursor: pointer;
  background: linear-gradient(135deg, #1a8a6e 0%, #2ca288 50%, #42ab94 100%);
  border: none;
  border-radius: calc(100 * var(--to-rem));
  box-shadow: 0 calc(4 * var(--to-rem)) calc(12 * var(--to-rem)) rgba(44, 162, 136, 0.3);
  transition: opacity var(--duration), transform var(--duration);
}
@media screen and (max-width: 767px) {
  .p-downloadPage__formSubmit {
    width: 100%;
    max-width: calc(320 * var(--to-rem));
    height: calc(56 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
    margin-top: calc(24 * var(--to-rem));
  }
}

.p-downloadPage__formSubmit:hover:not(:disabled) {
  opacity: 0.85;
  transform: translateY(calc(-2 * var(--to-rem)));
}

.p-downloadPage__formSubmit:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

/* エラーメッセージ */
.p-downloadPage__formItem .p-form__error {
  display: block;
  margin-top: calc(6 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(13 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #e05555;
}

/* ===== p-downloadThanks: サンクスページ ===== */
.p-downloadThanks__kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(295 * var(--to-rem));
  background-image: url("../images/contact-kv.Cnaiaujm.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__kv {
    height: calc(180 * var(--to-rem));
  }
}

.p-downloadThanks__kvTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__kvTitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-downloadThanks__contentArea {
  padding-block: calc(100 * var(--to-rem));
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__contentArea {
    padding-block: calc(50 * var(--to-rem));
  }
}

.p-downloadThanks__contentWrap {
  max-width: calc(700 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(80 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__contentWrap {
    margin-inline: calc(20 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-downloadThanks__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-downloadThanks__text {
  margin-top: calc(24 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1.875;
  color: #444;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__text {
    margin-top: calc(16 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8571428571;
    text-align: left;
  }
}

.p-downloadThanks__contact {
  margin-top: calc(40 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.7142857143;
  color: #666;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-downloadThanks__contact {
    margin-top: calc(30 * var(--to-rem));
    font-size: calc(13 * var(--to-rem));
  }
}

.p-downloadThanks__contactLink {
  color: #2ca288;
  text-decoration: underline;
  transition: opacity var(--duration);
}

.p-downloadThanks__contactLink:hover {
  opacity: 0.7;
}

/* /p-downloadPage: 資料ダウンロードページ */
/* ===== p-facility: 施設紹介 ===== */
.p-facility {
  padding-top: calc(60 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility {
    padding-top: calc(60 * var(--to-rem));
    padding-bottom: calc(50 * var(--to-rem));
  }
}

.p-facility__inner {
  max-width: calc(1440 * var(--to-rem));
  padding-left: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-facility__inner {
    padding-left: calc(0 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-facility__head {
  display: flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
}

.p-facility__headLine {
  display: block;
  width: calc(80 * var(--to-rem));
  height: calc(3 * var(--to-rem));
  background-color: #5fbaa6;
}

.p-facility__headLabel {
  font-family: "Inter", sans-serif;
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #5fbaa6;
  letter-spacing: 0.1em;
}

.p-facility__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: calc(44 * var(--to-rem));
  gap: calc(65 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__top {
    flex-direction: column;
    margin-top: calc(30 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-facility__titleWrap {
    padding-top: calc(0 * var(--to-rem));
  }
}

.p-facility__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(42 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__title {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-facility__mainImageWrap {
  width: calc(915 * var(--to-rem));
  margin-left: calc(40 * var(--to-rem));
  overflow: hidden;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__mainImageWrap {
    width: 100%;
    margin-top: calc(20 * var(--to-rem));
    margin-left: 0;
    border-radius: calc(12 * var(--to-rem));
  }
}

.p-facility__mainImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== ポイント一覧 ===== */
.p-facility__points {
  max-width: calc(890 * var(--to-rem));
  margin-top: calc(75 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-facility__points {
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(40 * var(--to-rem));
  }
}

.p-facility__pointItem {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--to-rem));
  padding-block: calc(35 * var(--to-rem));
  padding-inline: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border: calc(2 * var(--to-rem)) solid rgb(95, 186, 166);
}
@media screen and (max-width: 767px) {
  .p-facility__pointItem {
    flex-wrap: wrap;
    gap: calc(12 * var(--to-rem));
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-facility__pointItem + .p-facility__pointItem {
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__pointItem + .p-facility__pointItem {
    margin-top: calc(12 * var(--to-rem));
  }
}

.p-facility__pointMark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(60 * var(--to-rem));
  height: calc(58 * var(--to-rem));
  background-color: #2ca288;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-facility__pointLabel {
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.005em;
}

.p-facility__pointNumber {
  font-family: "Inter", sans-serif;
  font-size: calc(26 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #fffd57;
}

.p-facility__pointTitle-wrap {
  display: flex;
  align-items: center;
  gap: calc(26 * var(--to-rem));
}
.p-facility__pointTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(18 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  letter-spacing: 0.1em;
  white-space: nowrap;
  width: calc(236 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__pointTitle {
    font-size: calc(16 * var(--to-rem));
    white-space: normal;
    width: 100%;
  }
}

.p-facility__pointDesc {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-facility__pointDesc {
    font-size: calc(14 * var(--to-rem));
    line-height: 1.5;
  }
}

/* ===== ショートステイ ===== */
.p-facility__shortstay {
  max-width: calc(576 * var(--to-rem));
  margin-top: calc(62 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(40 * var(--to-rem));
  text-align: center;
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
  background: #bfe8df;
}
@media screen and (max-width: 767px) {
  .p-facility__shortstay {
    margin-inline: calc(20 * var(--to-rem));
    margin-top: calc(40 * var(--to-rem));
    padding-block: calc(40 * var(--to-rem)) calc(45 * var(--to-rem));
  }
}

.p-facility__shortstayTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-facility__shortstayTitle {
    font-size: calc(18 * var(--to-rem));
  }
}

.p-facility__shortstayTags {
  display: flex;
  justify-content: center;
  gap: calc(20 * var(--to-rem));
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__shortstayTags {
    gap: calc(12 * var(--to-rem));
    margin-top: calc(14 * var(--to-rem));
  }
}

.p-facility__shortstayTag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(18 * var(--to-rem));
  padding-inline: calc(50 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(22 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-facility__shortstayTag {
    padding-block: calc(12 * var(--to-rem));
    padding-inline: calc(30 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}

.p-facility__shortstayNote {
  margin-top: calc(8 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-facility__shortstayNote {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
  }
}

/* ===== メッセージ ===== */
.p-facility__message {
  margin-top: calc(73 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7777777778;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-facility__message {
    margin-top: calc(50 * var(--to-rem));
    font-size: calc(22 * var(--to-rem));
    line-height: 1.8181818182;
  }
}

/* ===== 施設カード一覧 ===== */
.p-facility__list-wrap {
  background: #f6f6f6;
  margin-top: calc(80 * var(--to-rem));
  padding-top: calc(110 * var(--to-rem));
  padding-bottom: calc(80 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__list-wrap {
    margin-top: calc(40 * var(--to-rem));
    padding-top: calc(60 * var(--to-rem));
  }
}

.p-facility__list {
  max-width: calc(1100 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-facility__list {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-facility__list {
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(40 * var(--to-rem));
  }
}

.p-facility__card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: calc(40 * var(--to-rem));
  padding-block: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  border-bottom: calc(1 * var(--to-rem)) solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-facility__card {
    flex-direction: column;
    gap: calc(20 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
  }
}

.p-facility__card:first-child {
  border-top: calc(1 * var(--to-rem)) solid #ccc;
}

.p-facility__cardImageWrap {
  width: calc(550 * var(--to-rem));
  flex-shrink: 0;
  overflow: hidden;
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__cardImageWrap {
    width: 100%;
  }
}

.p-facility__cardImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-facility__cardBody {
  flex: 1;
}

.p-facility__cardHeader {
  display: flex;
  align-items: center;
  gap: calc(6 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__cardHeader {
    flex-direction: column;
    gap: calc(10 * var(--to-rem));
  }
}

.p-facility__cardName {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-facility__cardName {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-facility__cardType {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}

.p-facility__cardInfo {
  margin-top: calc(29 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.075em;
}

.p-facility__cardText {
  margin-top: calc(20 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.075em;
}

.p-facility__cardAddress {
  margin-top: calc(30 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.075em;
}

.p-facility__cardRecommend {
  margin-top: calc(20 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(8 * var(--to-rem));
  padding: calc(20 * var(--to-rem)) calc(16 * var(--to-rem)) calc(32 * var(--to-rem));
  color: #fff;
  width: calc(466 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-facility__cardRecommend {
    width: 100%;
    padding: calc(14 * var(--to-rem));
  }
}

.p-facility__cardRecommendTitle {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  letter-spacing: 0.1em;
}

.p-facility__cardRecommendText {
  margin-top: calc(10 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 1.8;
  color: #2ca288;
  letter-spacing: 0.075em;
}

/* /p-facility: 施設紹介 */
/* ===== p-feature: 選ばれる理由 ===== */
.p-feature {
  padding-top: calc(80 * var(--to-rem));
  padding-bottom: calc(63 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-top: calc(60 * var(--to-rem));
    padding-bottom: calc(50 * var(--to-rem));
  }
}

.p-feature__inner {
  max-width: calc(1440 * var(--to-rem));
  padding-left: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    padding-left: calc(0 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-feature__head {
  display: flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
}

.p-feature__headLine {
  display: block;
  width: calc(80 * var(--to-rem));
  height: calc(3 * var(--to-rem));
  background-color: #5fbaa6;
}

.p-feature__headLabel {
  font-family: "Inter", sans-serif;
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #5fbaa6;
  letter-spacing: 0.1em;
}

.p-feature__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: calc(44 * var(--to-rem));
  gap: calc(46 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-feature__top {
    flex-direction: column;
    margin-top: calc(30 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-feature__titleWrap {
    padding-top: 0;
  }
}

.p-feature__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(42 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
  margin-top: calc(33 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: calc(28 * var(--to-rem));
  }
}

.p-feature__mainImageWrap {
  width: calc(915 * var(--to-rem));
  margin-left: calc(40 * var(--to-rem));
  overflow: hidden;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-feature__mainImageWrap {
    width: 100%;
    margin-top: calc(20 * var(--to-rem));
    margin-left: 0;
    border-radius: calc(12 * var(--to-rem));
  }
}

.p-feature__mainImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-feature__list {
  max-width: calc(1140 * var(--to-rem));
  margin-top: calc(68 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-feature__list {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(50 * var(--to-rem));
  }
}

.p-feature__item {
  display: flex;
  align-items: center;
  gap: calc(38 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-feature__item {
    flex-direction: column;
    gap: calc(20 * var(--to-rem));
  }
}

.p-feature__item2 {
  margin-top: calc(0 * var(--to-rem));
}

.p-feature__item + .p-feature__item {
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-feature__item + .p-feature__item {
    margin-top: calc(40 * var(--to-rem));
  }
}

.p-feature__itemImageWrap {
  width: calc(550 * var(--to-rem));
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-feature__itemImageWrap {
    width: 100%;
  }
}

.p-feature__itemImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-feature__itemBody {
  padding-top: calc(0 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-feature__itemBody {
    padding-top: calc(20 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-feature__itemBody {
    padding-top: 0;
  }
}

.p-feature__itemTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-feature__itemTitle {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-feature__itemText {
  margin-top: calc(14 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 2;
  color: #444;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-feature__itemText {
    margin-top: calc(10 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8;
  }
}

.p-feature__message {
  margin-top: calc(50 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7777777778;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-feature__message {
    margin-top: calc(50 * var(--to-rem));
    font-size: calc(22 * var(--to-rem));
    line-height: 1.8181818182;
  }
}

/* /p-feature: 選ばれる理由 */
/* ===== p-fixedCta: 追従CTAボタン ===== */
.p-fixedCta {
  position: fixed;
  right: calc(30 * var(--to-rem));
  bottom: calc(30 * var(--to-rem));
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(287 * var(--to-rem));
  height: calc(287 * var(--to-rem));
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 calc(4 * var(--to-rem)) calc(20 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  padding-top: calc(54 * var(--to-rem));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-fixedCta.is-visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .p-fixedCta {
    right: calc(15 * var(--to-rem));
    bottom: calc(15 * var(--to-rem));
    width: calc(170 * var(--to-rem));
    height: calc(170 * var(--to-rem));
    padding-top: calc(24 * var(--to-rem));
  }
}

.p-fixedCta:hover {
  opacity: 0.7;
}

.p-fixedCta::before {
  position: absolute;
  inset: calc(6.5 * var(--to-rem));
  content: "";
  border: calc(1 * var(--to-rem)) solid #2ca288;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-fixedCta::before {
    inset: calc(4 * var(--to-rem));
  }
}

.p-fixedCta__icon {
  width: calc(33 * var(--to-rem));
  height: calc(25 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-fixedCta__icon {
    width: calc(22 * var(--to-rem));
    height: calc(17 * var(--to-rem));
  }
}

.p-fixedCta__description {
  margin-top: calc(12 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(23 * var(--to-rem));
  font-weight: 700;
  line-height: 1.4782608696;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-fixedCta__description {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.5714285714;
  }
}

.p-fixedCta__label {
  margin-top: calc(14 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(28 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  letter-spacing: calc(2.1 * var(--to-rem));
  padding-top: calc(5 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-fixedCta__label {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}

/* /p-fixedCta: 追従CTAボタン */
/* ===== p-footer: フッター ===== */
.p-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #42ab94;
  padding-block: calc(27 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: calc(14 * var(--to-rem));
  }
}

.p-footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(12 * var(--to-rem));
  }
}

/* /p-footer: フッター */
/* ===== p-header: ヘッダー ===== */
.p-header {
  height: calc(100 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-header {
    height: initial;
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: calc(170 * var(--to-rem));
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-inline: calc(40 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-header__logo {
  display: flex;
  align-items: center;
}

.p-header__logoLink {
  display: block;
  width: calc(389 * var(--to-rem));
  height: calc(34 * var(--to-rem));
}
@media screen and (max-width: 1023px) {
  .p-header__logoLink {
    width: calc(250 * var(--to-rem));
    height: calc(22 * var(--to-rem));
  }
}
@media screen and (max-width: 767px) {
  .p-header__logoLink {
    width: calc(150 * var(--to-rem));
    height: calc(13 * var(--to-rem));
  }
}

.p-header__logoImage {
  width: calc(389 * var(--to-rem));
  height: calc(34 * var(--to-rem));
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-header__logoImage {
    width: calc(180 * var(--to-rem));
    height: calc(16 * var(--to-rem));
  }
}

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

.p-header__navList {
  display: flex;
  gap: calc(34 * var(--to-rem));
  align-items: center;
}

.p-header__navItem {
  position: relative;
}

.p-header__navLink {
  position: relative;
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.p-header__navLink::after {
  position: absolute;
  bottom: calc(-6 * var(--to-rem));
  left: 0;
  width: 100%;
  height: calc(1 * var(--to-rem));
  content: "";
  background-color: #5fbaa6;
  opacity: 0;
  transition: opacity var(--duration);
}

.p-header__navLink:hover::after {
  opacity: 1;
}

/* ===== ハンバーガーメニュー ===== */
.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: relative;
    z-index: 999;
    display: block;
    width: calc(46 * var(--to-rem));
    height: calc(46 * var(--to-rem));
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: calc(41 * var(--to-rem));
  }
}

.p-header__hamburgerLine {
  position: absolute;
  left: 50%;
  width: calc(23 * var(--to-rem));
  height: calc(1 * var(--to-rem));
  background-color: #575757;
  transition: transform var(--duration), opacity var(--duration), top var(--duration);
  transform: translateX(-50%);
}

.p-header__hamburgerLine--top {
  top: calc(16 * var(--to-rem));
}

.p-header__hamburgerLine--middle {
  top: calc(23 * var(--to-rem));
}

.p-header__hamburgerLine--bottom {
  top: calc(30 * var(--to-rem));
}

.p-header__hamburger.is-open .p-header__hamburgerLine--top {
  top: calc(23 * var(--to-rem));
  transform: translateX(-50%) rotate(33deg);
}

.p-header__hamburger.is-open .p-header__hamburgerLine--middle {
  opacity: 0;
}

.p-header__hamburger.is-open .p-header__hamburgerLine--bottom {
  top: calc(23 * var(--to-rem));
  transform: translateX(-50%) rotate(-33deg);
}

.p-header__hamburger.is-open {
  background-color: rgba(255, 255, 255, 0.65);
}

/* ===== ドロワーメニュー ===== */
.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100%;
    height: 100svh;
    padding-inline: calc(24 * var(--to-rem));
    padding-top: calc(116 * var(--to-rem));
    overflow-y: auto;
    background-color: #2ca288;
    opacity: 0;
  }
}

.p-header__drawerList {
  margin-top: calc(0 * var(--to-rem));
}

.p-header__drawerItem {
  border-bottom: calc(1 * var(--to-rem)) solid #fff;
}

.p-header__drawerLink {
  position: relative;
  display: block;
  padding-right: calc(28 * var(--to-rem));
  font-size: calc(18 * var(--to-rem));
  font-weight: var(--fw-medium);
  line-height: 3.5;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.p-header__drawerLink::after {
  display: none;
}

.p-header__drawerArrow {
  position: absolute;
  top: 50%;
  right: calc(11 * var(--to-rem));
  width: calc(9 * var(--to-rem));
  height: calc(9 * var(--to-rem));
  transform: translateY(-50%);
}

/* /p-header: ヘッダー */
/* ===== p-issue: お悩みセクション ===== */
.p-issue {
  padding-top: calc(32 * var(--to-rem));
  padding-bottom: calc(80 * var(--to-rem));
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-issue {
    padding-top: calc(32 * var(--to-rem));
    padding-bottom: calc(80 * var(--to-rem));
  }
}

.p-issue__inner {
  max-width: calc(1440 * var(--to-rem));
  padding-left: calc(40 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-issue__inner {
    padding-left: calc(20 * var(--to-rem));
  }
}

.p-issue__head {
  display: flex;
  gap: calc(14 * var(--to-rem));
  align-items: center;
}

.p-issue__headLine {
  display: block;
  width: calc(80 * var(--to-rem));
  height: calc(3 * var(--to-rem));
  background-color: #5fbaa6;
}

.p-issue__headLabel {
  font-family: "Inter", sans-serif;
  font-size: calc(30 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #5fbaa6;
  letter-spacing: 0.1em;
}

.p-issue__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: calc(44 * var(--to-rem));
  gap: calc(54 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-issue__content {
    flex-direction: column;
    margin-top: calc(30 * var(--to-rem));
  }
}

.p-issue__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(46 * var(--to-rem));
  font-weight: 700;
  line-height: 1.3913043478;
  color: #444;
  letter-spacing: calc(0.4 * var(--to-rem));
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-issue__title {
    font-size: calc(30 * var(--to-rem));
    line-height: 1.4666666667;
  }
}

.p-issue__imageWrap {
  width: calc(915 * var(--to-rem));
  margin-left: calc(0 * var(--to-rem));
  overflow: hidden;
  border-radius: calc(20 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-issue__imageWrap {
    width: 100%;
    margin-top: calc(20 * var(--to-rem));
    margin-left: 0;
    border-radius: calc(12 * var(--to-rem));
  }
}

.p-issue__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-issue__list {
  max-width: calc(846 * var(--to-rem));
  margin-top: calc(-150 * var(--to-rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-issue__list {
    margin-inline: auto;
    padding-inline: calc(20 * var(--to-rem));
    max-width: calc(570 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
    margin-top: calc(-80 * var(--to-rem));
  }
}

.p-issue__item {
  background-color: #fff;
  border-radius: calc(10 * var(--to-rem));
  padding-block: calc(35 * var(--to-rem));
  padding-inline: calc(70 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .p-issue__item {
    padding-block: calc(20 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-issue__item + .p-issue__item {
  margin-top: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-issue__item + .p-issue__item {
    margin-top: calc(12 * var(--to-rem));
  }
}

.p-issue__itemText {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(20 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(0.4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-issue__itemText {
    font-size: calc(14 * var(--to-rem));
    line-height: 1.5;
  }
}
.p-issue__itemText span {
  color: #5fbaa6;
}

.p-issue__message {
  margin-top: calc(62 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1.7777777778;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-issue__message {
    margin-top: calc(40 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
    line-height: 1.8181818182;
  }
}

/* /p-issue: お悩みセクション */
/* ===== p-mv: メインビジュアル ===== */
.p-mv {
  position: relative;
  height: calc(590 * var(--to-rem));
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: calc(564 * var(--to-rem));
  }
}

.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-mv__bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv__bgImage2 {
  width: 100%;
  height: auto;
}

.p-mv__inner {
  position: relative;
  z-index: 1;
  max-width: calc(1440 * var(--to-rem));
  padding-inline: calc(25 * var(--to-rem));
  padding-top: calc(191 * var(--to-rem));
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-top: calc(0 * var(--to-rem));
    padding-bottom: 0;
    margin-top: calc(-24 * var(--to-rem));
  }
}

.p-mv__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: calc(60 * var(--to-rem));
  color: #444444;
  letter-spacing: calc(-0.79 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    position: absolute;
    top: calc(60 * var(--to-rem));
    left: 50%;
    transform: translateX(-50%);
    width: calc(284 * var(--to-rem));
    font-size: calc(21 * var(--to-rem));
    line-height: calc(40 * var(--to-rem));
  }
}

.p-mv__titleAccent {
  color: #2ca288;
}

.p-mv__subTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 700;
  line-height: 1.6666666667;
  color: #444;
  letter-spacing: 0.05em;
  margin-top: calc(17 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__subTitle {
    position: absolute;
    top: calc(150 * var(--to-rem));
    left: 50%;
    transform: translateX(-50%);
    width: calc(284 * var(--to-rem));
    margin-top: 0;
    font-size: calc(16 * var(--to-rem));
    line-height: 1.75;
  }
}

.p-mv__subTitleAccent {
  color: #2ca288;
}

/* ===== CTA ボタン ===== */
.p-mv__cta {
  position: fixed;
  right: calc(170 * var(--to-rem));
  top: calc(365 * var(--to-rem));
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(287 * var(--to-rem));
  height: calc(287 * var(--to-rem));
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 calc(4 * var(--to-rem)) calc(20 * var(--to-rem)) rgba(0, 0, 0, 0.1);
  padding-top: calc(54 * var(--to-rem));
  transition: top 0.4s ease, right 0.4s ease, opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    display: none;
    right: calc(20 * var(--to-rem));
    top: calc(310 * var(--to-rem));
    width: calc(170 * var(--to-rem));
    height: calc(170 * var(--to-rem));
    padding-top: calc(24 * var(--to-rem));
  }
}

.p-mv__cta:hover {
  opacity: 0.7;
}

.p-mv__cta.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.p-mv__cta--moved {
  top: calc(100vh - 287 * var(--to-rem) - 85 * var(--to-rem));
  right: calc(30 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__cta--moved {
    top: calc(100vh - 170 * var(--to-rem) - 70 * var(--to-rem));
    right: calc(15 * var(--to-rem));
  }
}

.p-mv__cta::before {
  position: absolute;
  inset: calc(6.5 * var(--to-rem));
  content: "";
  border: calc(1 * var(--to-rem)) solid #2ca288;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-mv__cta::before {
    inset: calc(4 * var(--to-rem));
  }
}

.p-mv__cta:hover {
  opacity: 0.7;
}

.p-mv__ctaIcon {
  width: calc(33 * var(--to-rem));
  height: calc(25 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__ctaIcon {
    width: calc(22 * var(--to-rem));
    height: calc(17 * var(--to-rem));
  }
}

.p-mv__ctaDescription {
  margin-top: calc(12 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(23 * var(--to-rem));
  font-weight: 700;
  line-height: 1.4782608696;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-mv__ctaDescription {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.5714285714;
  }
}

.p-mv__ctaLabel {
  margin-top: calc(14 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(28 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #2ca288;
  letter-spacing: calc(2.1 * var(--to-rem));
  padding-top: calc(5 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-mv__ctaLabel {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(18 * var(--to-rem));
  }
}

/* /p-mv: メインビジュアル */
/* ===== p-scroll-top: トップへ戻るボタン ===== */
.p-scrollTop {
  position: fixed;
  right: calc(100 * var(--to-rem));
  bottom: calc(0 * var(--to-rem));
  z-index: 100;
  width: calc(70 * var(--to-rem));
  height: calc(70 * var(--to-rem));
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-scrollTop.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-scrollTop.is-visible:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-scrollTop {
    right: calc(10 * var(--to-rem));
    bottom: calc(65 * var(--to-rem));
    width: calc(40 * var(--to-rem));
    height: calc(40 * var(--to-rem));
  }
}

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

/* /p-scroll-top: トップへ戻るボタン */
/* ===== p-spBar: SP固定ボトムバー ===== */
.p-spBar {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-spBar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(10 * var(--to-rem));
    width: 100%;
    height: calc(60 * var(--to-rem));
    background-color: #fff;
    text-decoration: none;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .p-spBar::after {
    position: absolute;
    inset: calc(6 * var(--to-rem));
    content: "";
    border: calc(1 * var(--to-rem)) solid #2ca288;
    pointer-events: none;
  }
  .p-spBar.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

.p-spBar__icon {
  width: calc(17 * var(--to-rem));
  min-width: calc(17 * var(--to-rem));
  height: calc(32.5 * var(--to-rem));
  flex-shrink: 0;
  object-fit: contain;
  align-self: center;
  margin-top: calc(1 * var(--to-rem));
}

.p-spBar__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(11.5 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}

.p-spBar__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(15 * var(--to-rem));
  font-weight: 700;
  line-height: calc(23 * var(--to-rem));
  color: #2ca288;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-spBar__label {
    margin-top: calc(1 * var(--to-rem));
  }
}

/* /p-spBar: SP固定ボトムバー */
/* ===== p-thanksPage: サンクスページ ===== */
.p-thanksPage__kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(295 * var(--to-rem));
  background-image: url("../images/contact-kv.Cnaiaujm.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-thanksPage__kv {
    height: calc(180 * var(--to-rem));
  }
}

.p-thanksPage__kvTitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(36 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  color: #444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-thanksPage__kvTitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-thanksPage__contentArea {
  padding-block: calc(100 * var(--to-rem));
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-thanksPage__contentArea {
    padding-block: calc(50 * var(--to-rem));
  }
}

.p-thanksPage__contentWrap {
  max-width: calc(836 * var(--to-rem));
  margin-inline: auto;
  padding-block: calc(60 * var(--to-rem));
  padding-inline: calc(80 * var(--to-rem));
  background-color: var(--color-white);
  border-radius: calc(10 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-thanksPage__contentWrap {
    margin-inline: calc(20 * var(--to-rem));
    padding-block: calc(30 * var(--to-rem));
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-thanksPage__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(24 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  color: #444;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-thanksPage__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-thanksPage__text {
  margin-top: calc(30 * var(--to-rem));
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1.875;
  color: #444;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-thanksPage__text {
    margin-top: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    line-height: 1.8571428571;
    text-align: left;
  }
}

/* /p-thanksPage: サンクスページ */
: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%);
}

/* ===== フェードインアニメーション ===== */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(calc(30 * var(--to-rem)));
}

.js-fadeIn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeIn--stagger:nth-child(2) {
  transition-delay: 0.15s;
}

.js-fadeIn--stagger:nth-child(3) {
  transition-delay: 0.3s;
}

.js-fadeIn--stagger:nth-child(4) {
  transition-delay: 0.45s;
}

.js-fadeIn--stagger:nth-child(5) {
  transition-delay: 0.6s;
}

/* ===== ページロード時フェードイン ===== */
@keyframes loadFadeIn {
  from {
    opacity: 0;
    transform: translateY(calc(20 * var(--to-rem)));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-loadFadeIn {
  opacity: 0;
  animation: loadFadeIn 0.8s ease forwards;
}

.u-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

.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;
}

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

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

.u-text__indent {
  padding-left: 1em;
  text-indent: -1em;
}