@charset "utf-8";
:root {
  --beige-color: #f7f5ef;
  --white-color: #fff;
  --black-color: #3c2313;
  --gray-color: #e5e5e5;
}
/* ===================================================
- reset
=================================================== */
*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--black-color);
}

:focus-visible {
  outline-offset: 3px;
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(html) {
  line-height: 1.5;
}

:where(html) {
  scrollbar-gutter: stable;
}

:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}

:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

:where(fieldset) {
  min-inline-size: 0;
}

:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

:where(textarea:not([rows])) {
  min-block-size: 6em;
}

:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

:where([type="search"]) {
  -webkit-appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type="search"]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}

:where([type="tel"], [type="url"], [type="email"], [type="number"]):not(
  :placeholder-shown
) {
  direction: ltr;
}

:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

:where(dialog)::backdrop {
  background: oklch(0% 0 0 / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition:
    opacity 300ms ease-out,
    display 300ms allow-discrete,
    overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}

[hidden]:not([hidden="until-found"]) {
  display: none !important;
}

/* ===================================================
- スムーススクロール
=================================================== */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/* ===================================================
- Layout
=================================================== */
.l-bg {
  margin-top: 120px;
  padding-block: 120px;
  background-color: var(--beige-color);
}

.l-container {
  max-width: 1080px;
  margin: auto;
  padding-inline: 40px;
}

.l-spacer-primary {
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .l-bg {
    margin-top: 56px;
    padding-block: 56px;
  }

  .l-container {
    padding-inline: 20px;
  }

  .l-spacer-primary {
    padding-top: 56px;
  }
}

/* ===================================================
- Common
=================================================== */
.c-heading {
  margin: 0;
  text-align: center;
}

.c-heading-jp {
  margin-block: 8px 48px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
}

.c-heading img {
  width: auto;
  height: 52px;
}

.c-more-block {
  position: relative;
}
.c-more-block input {
  display: none;
}
/*開くためのボタンとテキストを隠すグラデーションの設定*/
.c-more-block label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: 0px;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 70%
  );
}
/* 開いた時にグラデーションを消す */
.c-more-block input:checked + label {
  background: inherit;
}

.c-more-container {
  overflow: hidden;
  height: 200px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
/*続きをよむボタン*/
.c-more-block label:after,
.c-more-block label::before {
  content: "";
  position: absolute;
  line-height: 2.5rem;
}
.c-more-block label:after {
  z-index: 2;
  bottom: 20px;
  width: 130px;
  content: "続きをよむ";
  background: var(--beige-color);
  border-radius: 20px;
  font-weight: 500;
}

/*閉じるボタン*/
.c-more-block input:checked + label:after {
  content: "閉じる";
}

.c-more-block input:checked ~ .c-more-container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .c-heading img {
    height: 28px;
  }

  .c-heading-2line img {
    height: 76px;
  }

  .c-heading-jp {
    margin-block: 4px 40px;
    font-size: 1rem;
  }

  .c-more-container {
    height: 160px;
  }
}

/* ===================================================
- Object
=================================================== */
.p-header__logo {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 24px 32px;
  background-color: #fff;
  border-bottom-right-radius: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.p-header__nav {
  position: fixed;
  top: 24px;
  right: 24px;
  width: fit-content;
  padding: 24px 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.p-globalNav {
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.p-globalNav__link {
  color: var(--black-color);
  text-decoration: none;
  font-weight: 700;
}

.p-hamburger {
  display: none;
}

@media screen and (max-width: 1050px) {
  .p-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 67px;
    height: 67px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 10px;
    border: none;
    z-index: 100;
  }

  .p-hamburger__line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    margin: auto;
    border-radius: 4px;
    background-color: var(--black-color);
  }

  .is-open .p-hamburger__line {
    background-color: transparent;
  }

  .p-hamburger__line::before,
  .p-hamburger__line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--black-color);
    transition: transform 0.3s;
  }

  .is-open .p-hamburger__line::before,
  .is-open .p-hamburger__line::after {
    top: 0;
  }

  .p-hamburger__line::before {
    top: -10px;
  }

  .is-open .p-hamburger__line::before {
    transform: rotate(45deg);
  }

  .p-hamburger__line::after {
    top: 10px;
  }

  .is-open .p-hamburger__line::after {
    transform: rotate(-45deg);
  }

  .p-header__nav {
    top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .is-open .p-header__nav {
    opacity: 1;
    pointer-events: all;
  }

  .p-globalNav {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-header__logo {
    padding: 16px 20px;
    border-bottom-right-radius: 20px;
  }

  .p-header__logo img {
    height: 32px;
  }
}

/* -about
------------------------------------------------------ */
.p-about {
  margin-top: 0;
  background:
    url(../img/about-bg-top.svg) no-repeat center top 10% / 90%,
    url(../img/about-bg-bottom.svg) no-repeat center bottom / 90%,
    var(--beige-color);
}

.p-about__block {
  display: flex;
}

.p-about__block:nth-child(odd) {
  flex-direction: row-reverse;
}

.p-about__block + .p-about__block {
  margin-top: 40px;
}

.p-about__image {
  align-self: flex-start;
  width: 32%;
  margin-inline: 7%;
}

.p-about__title {
  margin-block: 0 24px;
  font-size: 1.625rem;
}

.p-about__block .c-more-block label {
  background: linear-gradient(
    to bottom,
    rgba(250, 252, 252, 0) 0%,
    rgba(247, 245, 239, 1) 70%
  );
}

.p-about__block .c-more-block label:after {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .p-about {
    background: var(--beige-color);
  }

  .p-about__block {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .p-about__block:nth-child(odd) {
    flex-direction: column-reverse;
  }

  .p-about__image {
    width: 100%;
    margin: 0;
  }

  .p-about__title {
    margin-bottom: 16px;
    font-size: 1.25rem;
  }
}

/* -policy
------------------------------------------------------ */
.p-policy__list {
  display: flex;
  gap: 32px;
}

.p-policy__image {
  display: block;
  margin: auto;
}

.p-policy__title {
  text-align: center;
  color: var(--black-color);
  font-size: 1.5rem;
  font-weight: 500;
}

.p-policy__title span {
  display: block;
}

@media screen and (max-width: 768px) {
  .p-policy__list {
    flex-direction: column;
  }

  .p-policy__title {
    font-size: 1.25rem;
  }

  .p-policy__title span {
    display: inline-block;
  }
}

/* -purpose
------------------------------------------------------ */
.p-purpose {
  position: relative;
  padding-bottom: calc(80px + 6.44216691vw);
}

.p-purpose::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.44216691vw;
  background: url(../img/wave01.svg) no-repeat center bottom / cover;
}

.p-purpose__list {
  display: flex;
  gap: 40px;
  margin-top: 88px;
}

.p-purpose__item {
  width: 100%;
}

.p-purpose__image {
  position: relative;
}

.p-purpose__number {
  position: absolute;
  top: -40px;
  left: 32px;
  width: 80px;
  height: 80px;
}

.p-purpose__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .p-purpose {
    padding-bottom: calc(80px + 6.44216691vw);
  }

  .p-purpose::after {
    width: 100%;
    height: 6.44216691vw;
    background: url(../img/wave01.svg) no-repeat center bottom / cover;
  }

  .p-purpose__list {
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
  }

  .p-purpose__number {
    top: -27px;
    left: 24px;
    width: 56px;
    height: 56px;
  }

  .p-purpose__title {
    margin-block: 16px;
    font-size: 1.25rem;
  }
}

/* -features
------------------------------------------------------ */
.p-features__item {
  display: flex;
  gap: 48px;
}

.p-features__item + .p-features__item {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-color);
}

.p-features__icon {
  width: 180px;
  height: 180px;
}

.p-features__title {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-features__item {
    flex-direction: column;
    gap: 24px;
  }

  .p-features__item + .p-features__item {
    margin-top: 32px;
    padding-top: 32px;
  }

  .p-features__icon {
    margin: auto;
  }

  .p-features__title {
    margin-top: 0;
    text-align: center;
    font-size: 1.25rem;
  }
}

/* -support
------------------------------------------------------ */
.p-support {
  position: relative;
  padding-top: calc(80px + 6.44216691vw);
}

.p-support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.44216691vw;
  background: url(../img/wave02.svg) no-repeat center top / cover;
}

.p-support__item {
  display: flex;
  gap: 64px;
}

.p-support__item:nth-child(even) {
  flex-direction: row-reverse;
}

.p-support__item + .p-support__item {
  margin-top: 72px;
}

.p-support__item img {
  align-self: flex-start;
  width: 48%;
}

.p-support__title {
  position: relative;
  margin: 0 0 24px;
  padding-left: 40px;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-support__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  background: url(../img/icon-circle.svg) no-repeat center / cover;
}

.p-support__read {
  margin-block: 64px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-support {
    padding-top: calc(80px + 6.44216691vw);
  }

  .p-support::before {
    width: 100%;
    height: 6.44216691vw;
    background: url(../img/wave02.svg) no-repeat center top / cover;
  }

  .p-support__item {
    flex-direction: column;
    gap: 24px;
  }

  .p-support__item:nth-child(even) {
    flex-direction: column;
  }

  .p-support__item + .p-support__item {
    margin-top: 40px;
  }

  .p-support__item img {
    width: 100%;
  }

  .p-support__title {
    margin: 0 0 24px;
    padding-left: 40px;
    font-size: 1.25rem;
  }

  .p-support__read {
    margin-block: 40px 0;
    font-size: 1rem;
  }

  .p-support__read span {
    display: inline-block;
  }
}

/* -voice
------------------------------------------------------ */
.p-voice__list {
  display: flex;
  gap: 40px;
}

.p-voice__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.p-voice__item img {
  display: block;
  width: 36.5%;
  min-width: 100px;
  margin: auto;
}

.p-voice__textBlock {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background-color: var(--beige-color);
  border-radius: 10px;
}

.p-voice__text {
  margin-top: 0;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-voice__user {
  margin: auto 0 0;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-voice__list {
    flex-direction: column;
    gap: 24px;
  }

  .p-voice__item {
    display: flex;
    flex-direction: column;
  }

  .p-voice__item img {
    width: 130px;
  }

  .p-voice__textBlock {
    width: 90%;
    margin: auto;
    padding: 24px;
  }

  .p-voice__text {
    font-size: 0.875rem;
  }

  .p-voice__user {
    font-size: 0.875rem;
  }
}

/* -faq
------------------------------------------------------ */
.p-faq {
  position: relative;
  padding-bottom: calc(80px + 6.44216691vw);
}

.p-faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.44216691vw;
  background: url(../img/wave01.svg) no-repeat center bottom / cover;
}

.p-faq__list {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.p-faq__item {
  padding: 24px 40px;
  background-color: var(--white-color);
  border-radius: 20px;
}

.p-faq__question {
  position: relative;
  margin: 0 auto 16px;
  padding: 0 0 16px 40px;
  border-bottom: 1px solid var(--gray-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-faq__question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon-question.svg) no-repeat center / cover;
}

.p-faq__answer {
  position: relative;
  margin: 0;
  padding-left: 40px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-faq__answer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon-answer.svg) no-repeat center / cover;
}

@media screen and (max-width: 768px) {
  .p-faq {
    padding-bottom: calc(80px + 6.44216691vw);
  }

  .p-faq::after {
    height: 6.44216691vw;
    background: url(../img/wave01.svg) no-repeat center bottom / cover;
  }

  .p-faq__item {
    padding: 16px 24px;
    border-radius: 10px;
  }

  .p-faq__question {
    margin: 0 auto 16px;
    padding: 0 0 16px 40px;
  }

  .p-faq__answer {
    font-size: 0.875rem;
  }
}

/* -space
------------------------------------------------------ */
.p-space__list {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.p-space__item {
  display: flex;
  gap: 40px;
  padding: 32px 40px;
  background-color: var(--beige-color);
  border-radius: 20px;
}

.p-space__item img {
  align-self: flex-start;
  width: 37%;
}

.p-space__subTitle {
  margin: 0;
  font-size: 14px;
}

.p-space__title {
  margin-block: 8px 16px;
  font-size: 24px;
  font-weight: 500;
}

.p-space__info {
  display: grid;
  gap: 4px;
}

.p-space__infoItem {
  display: flex;
  font-size: 0.875rem;
}

.p-space__infoItem dd {
  margin: 0;
}

.p-space__read {
  margin-block: 24px 0;
  padding: 16px 24px;
  background-color: var(--white-color);
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-space__item {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .p-space__item img {
    width: 100%;
  }

  .p-space__subTitle {
    font-size: 0.75rem;
  }

  .p-space__title {
    margin-block: 0 16px;
    font-size: 1.25rem;
  }

  .p-space__info {
    display: grid;
    gap: 4px;
  }

  .p-space__infoItem {
    font-size: 0.75rem;
  }

  .p-space__read {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* -form
------------------------------------------------------ */
.p-form__read {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-form__read span {
  display: inline-block;
}

.p-form__list {
  display: grid;
  gap: 40px;
  margin-top: 64px;
}

.p-form__item {
  margin: 0;
  padding: 0;
  border: none;
}

.p-form__item p {
  margin: 0;
}

.p-form__label {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-form__eq {
  display: inline-block;
  padding: 2px 16px;
  background-color: #e72929;
  color: #fff;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.p-form__send {
  display: block;
  width: 200px;
  padding: 16px;
  margin: auto;
  background-color: #f4771c;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: #b20606;
  font-size: 14px;
}

.wpcf7-response-output {
  margin-top: 24px;
  color: #b20606;
  text-align: center;
  font-size: 14px;
}

.wpcf7 p {
  margin: 0;
}

/* -footer
------------------------------------------------------ */
.p-footer {
  padding: 48px 80px;
  background-color: var(--black-color);
  color: #fff;
}

.p-footer__inner {
  display: flex;
  justify-content: space-between;
}

.p-footer__logo {
  align-self: center;
  margin: 0;
}

.p-footer__right {
  text-align: right;
}

.p-footer__link {
  display: inline-block;
  margin: 0;
}

.p-footer__link a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.p-footer__link a img {
  width: 32px;
  height: 32px;
}

.p-footer__copy {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-footer {
    padding: 56px 20px 32px;
  }

  .p-footer__inner {
    flex-direction: column;
    gap: 32px;
  }

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

  .p-footer__copy {
    text-align: center;
    font-size: 10px;
  }
}

.u-text {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .u-text {
    font-size: 0.875rem;
  }
}
