@charset "UTF-8";
:root {
  --header-offset: 80px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  width: 78.125rem;
}

.l-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 78.125rem;
  width: 80vw;
}

/*borderのあしらい
-----------------------------------------*/
.main-border {
  border: 1px solid #FF6767;
  border-radius: 5px;
}
.main-border-bold {
  border: 3px solid #FF6767;
  border-radius: 5px;
}

.l-sec {
  padding: 6.25rem 0 6.25rem;
}
.l-sec-wrap {
  padding: 2.5rem;
}
.l-sec-wrap80vw {
  margin: 0 auto;
  max-width: 1240px;
  width: 80vw;
}
.l-sec01 {
  padding: 3.5rem 0 6.875rem;
}

.c-btn {
  background-color: transparent;
  background-image: url("../img/");
  background-position: center right 1.5em;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  border: 1px solid #C3C3C3;
  color: #333;
  line-height: 1.2;
  max-width: 100%;
  min-height: 3.75rem;
  padding: 0 0.625rem;
  transition: 0.3s all;
  width: 13.75rem;
}
.c-btn span {
  display: block;
  font-size: 0.75rem;
}
.c-btn-white {
  border: #FF6767 solid 3px;
  border-radius: 5px;
  color: #FF6767;
  font-weight: 700;
  margin: 0 auto;
  padding: 1.25rem 5.625rem 1.25rem 3.125rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn-white::after {
  background: url("../img/Polygon_pink.webp") center right/contain no-repeat;
  content: "";
  height: 1.875rem;
  position: absolute;
  right: 8%;
  top: 37%;
  width: 1.875rem;
}
.contact-btn {
  -webkit-transform: translateY(20px) scale(0.8);
  /* 画像に直接影を適用 */
  -webkit-filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
  height: 11.25rem;
  /* 初期状態では非表示 */
  opacity: 0;
  position: fixed;
  right: 2%;
  top: 20%;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s ease;
  visibility: hidden;
  width: 11.25rem;
  z-index: 1000;
  /* 画像自体のスタイル調整 */
}
.contact-btn:hover {
  -webkit-transform: translateY(-5px) scale(1.05);
  -webkit-filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
  transform: translateY(-5px) scale(1.05);
}
.contact-btn img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

/* スクロール時に表示される状態 */
.contact-btn.is-visible {
  -webkit-transform: translateY(0) scale(1);
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* フッター領域に近づいた時の非表示状態 */
.contact-btn.is-hidden-footer {
  -webkit-transform: translateY(20px) scale(0.8);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s ease;
  visibility: hidden;
}

.c-cat {
  background-color: #003C8C;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  min-width: 6.25rem;
  padding: 0.25rem 0.625rem;
  text-align: center;
}

.c-column2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.c-column2--gap60 {
  gap: 3.75rem;
}

.c-column3 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.c-column4 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.c-headline1__main {
  border-left: 2px solid #003C8C;
  font-size: 1.875rem;
  padding-left: 1.875rem;
}

.c-headline1__sub {
  font-size: 1rem;
  margin-top: 0.875rem;
}

.c-hoverRun {
  background-image: linear-gradient(90deg, #333, #333);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  color: #333;
  display: inline;
  text-decoration: none;
  transition: background-size 0.5s;
}
.c-hoverUnderline {
  display: inline-block;
  position: relative;
}

.c-hoverUnderline::after {
  background: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
}
.c-hoverUnderline {
  display: inline-block;
  position: relative;
}

.c-hoverUnderline::after {
  background: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}
.c-imgHover {
  position: relative;
}

.c-imgHover img {
  transition: 0.5s opacity;
  width: 2.25rem;
}

.c-imgHover img:nth-of-type(2) {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.5s opacity;
}
.c-imgZoom {
  overflow: hidden;
  position: relative;
}
.c-imgZoom img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}
.c-link {
  line-height: 1;
  position: relative;
}

.c-link::after {
  background: url(../img/common/link.svg) center center/contain no-repeat;
  content: "";
  height: 0.625rem;
  position: absolute;
  right: -0.9375rem;
  top: 0.3em;
  width: 0.625rem;
}

.c-marker {
  background: linear-gradient(transparent 70%, #FCF65F 0%);
  display: inline;
}

.c-tag {
  border: 1px solid #C3C3C3;
  color: #333;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.375rem 0.5rem;
}

.c-underBar {
  display: inline-block;
  position: relative;
}
.c-underBar::before {
  -webkit-transform: translateX(-50%);
  background-color: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 100%;
}
.benefit .sec__ttl-line-long {
  line-height: 2.8125rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.benefit__list {
  list-style: disc;
  padding-left: 2.5rem;
}
.benefit__list li {
  list-style: inherit;
}
.benefit__list li::marker {
  color: #FF6767;
}
.benefit .p-list {
  padding-left: 2.5rem;
}

.p-list__item {
  margin-bottom: 0.625rem;
  position: relative;
}
.p-list__item::before {
  color: #FF6767;
  content: "・";
  font-size: 2.1875rem;
  left: -1.9375rem;
  position: absolute;
  top: -0.9375rem;
}

.p-card {
  border-bottom: 1px solid #C3C3C3;
  padding-bottom: 2.5rem;
  position: relative;
}

.p-card__body {
  align-items: center;
  display: flex;
  margin-bottom: 1.25rem;
  padding-top: 2.5rem;
}

.p-card__date {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-right: 1.875rem;
  text-align: center;
}

.news .sec__ttl-line {
  margin-bottom: 0rem;
  margin-top: 2.5rem;
  padding: 0 2.5rem 0.3125rem;
}

.news > div:first-child {
  padding-bottom: 0rem;
}
.p-card__title {
  background-color: #FADBE1;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.0625rem 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-card__text {
  font-size: 1.125rem;
  font-weight: 300;
  margin-top: 0.625rem;
}

.pagination-wrapper {
  margin-bottom: 6.25rem;
  margin-top: 2.5rem;
}

.custom-pagination {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.custom-pagination a, .custom-pagination span {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 3.125rem;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 3.125rem;
}
.custom-pagination .pagination-number {
  background-color: #fff;
  border: 2px solid #FF6B6B;
  color: #FF6B6B;
  font-family: "Jost", sans-serif;
}
.custom-pagination .pagination-number:hover {
  -webkit-transform: scale(1.1);
  background-color: #FF6B6B;
  color: #fff;
  transform: scale(1.1);
}
.custom-pagination .pagination-current {
  background-color: #FF6B6B;
  border: 2px solid #FF6B6B;
  color: #fff;
  font-family: "Jost", sans-serif;
}
.custom-pagination .pagination-prev,
.custom-pagination .pagination-next {
  background-color: #fff;
  border: 2px solid #FF6B6B;
  color: #FF6B6B;
  font-family: "Jost", sans-serif;
}
.custom-pagination .pagination-prev:hover,
.custom-pagination .pagination-next:hover {
  -webkit-transform: scale(1.1);
  background-color: #FF6B6B;
  color: #fff;
  transform: scale(1.1);
}
.custom-pagination .pagination-dots {
  background-color: transparent;
  border: none;
  color: #FF6B6B;
  font-weight: 700;
}

.company > div:first-child {
  padding-bottom: 0rem;
}
.company .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.company .c-table {
  border-collapse: collapse;
  margin: 0 auto 2.5rem;
}
.company .c-table th {
  background-color: #FDEAEB;
  border: 1px solid #FF6767;
  padding: 0.625rem 1.25rem;
}
.company .c-table td {
  border: 1px solid #FF6767;
  padding: 0.625rem 1.25rem;
}

.p-contact__thanks .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact__thanks .cta {
  background-color: #FF6767;
  border-radius: 5px;
  color: #fff;
  margin: 0 auto;
  padding: 0.3125rem 3.4375rem 0.3125rem 1.25rem;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact__thanks .cta::after {
  background: url(../img/Polygon1.webp) center center/contain no-repeat;
  content: "";
  height: 1.5625rem;
  position: absolute;
  right: 5%;
  top: 32%;
  width: 1.5625rem;
}

/* =========================================================
  Contact / Form
  ---------------------------------------------------------
  - Reset
  - Layout
  - Title block
  - Accordion (details/summary)
  - Inputs (text/textarea/select/date/tel/zip/address)
  - Checkbox / Radio
  - Validation / Messages
  - Submit button
  - Name grid
========================================================= */
/* === Reset === */
.p-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.p-form fieldset legend {
  display: none;
}

/* === Layout === */
.p-contact .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-contact__inner {
  margin-inline: auto;
  max-width: 1000px;
  padding: 0 25px 100px;
  width: 80%;
}
.p-contact__inner .p-contact__link {
  margin-bottom: 0.3125rem;
  text-align: center;
}
.p-contact__inner .accent-main {
  text-decoration: underline;
}
.p-contact__inner .accent-main:visited {
  color: #FF6767;
}

/* 行ブロック */
.p-form__item {
  border: 1px solid #C3C3C3;
  display: flex;
}

/* === Title block (左ラベル列) === */
.p-form__title {
  align-items: center;
  background-color: #FDEAEB;
  display: flex;
  flex-direction: column; /* h3 と span を縦積み */
  font-size: 18px;
  font-weight: 700;
  gap: 0.625rem;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  width: 30%;
  /* 必要行だけ付与 */
}
.p-form__title span {
  background-color: #FF6767;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 0.625rem 1.25rem;
  text-align: center;
  white-space: nowrap;
  width: 5rem;
}
.p-form__title--aiStart {
  align-items: flex-start;
  text-align: left;
}
.p-form__title--type03 {
  flex-direction: column;
}

/* === 右側入力列 === */
.p-form__input {
  align-items: center;
  flex: 1;
  justify-self: center;
  padding: 1.25rem;
  width: 70%;
  /* ラジオ専用：右列コンテンツを中央寄せ */
}
.p-form__input--radio {
  display: flex;
  padding-left: 1.25rem;
  width: 100%;
}

/* =========================================================
   Accordion (details/summary)
========================================================= */
.p-acc {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  /* マイナス */
  /* チェック群をグリッドで並べる（PC3列 / SP1列） */
}
.p-acc + .p-acc {
  margin-top: 1rem;
}
.p-acc summary {
  -webkit-user-select: none;
  -ms-user-select: none;
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  gap: 0.625rem;
  list-style: none;
  outline: none;
  padding: 0.875rem 1.25rem 0;
  position: relative;
  user-select: none;
  width: 100%;
}
.p-acc summary::before {
  background-color: #333;
  border: 1px solid #9CA3AF;
  border-radius: 4px;
  color: #fff;
  content: "+";
  display: inline-grid;
  font-weight: 700;
  height: 1.375rem;
  line-height: 1;
  place-items: center;
  width: 1.375rem;
}
.p-acc[open] summary::before {
  content: "−";
}
.p-acc__body {
  padding: 1.125rem 1.25rem;
}
.p-acc__grid {
  display: grid;
  gap: 0.875rem 1.25rem;
}
.p-acc__grid .wpcf7-checkbox {
  display: grid;
  gap: 0.875rem 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.p-acc__grid .wpcf7-list-item {
  margin: 0;
}

/* =========================================================
   Inputs: text / textarea / select / date / tel / zip / address
========================================================= */
/* placeholder */
.p-formInput input::-webkit-input-placeholder, .p-formTextarea textarea::-webkit-input-placeholder {
  color: lightgray;
  font-size: 16px;
}
.p-formInput input:-ms-input-placeholder, .p-formTextarea textarea:-ms-input-placeholder {
  color: lightgray;
  font-size: 16px;
}
.p-formInput input::-ms-input-placeholder, .p-formTextarea textarea::-ms-input-placeholder {
  color: lightgray;
  font-size: 16px;
}
.p-formInput input::placeholder,
.p-formTextarea textarea::placeholder {
  color: lightgray;
  font-size: 16px;
}

/* text input 共通 */
.p-formInput input {
  border: 1px solid #C3C3C3;
  border-radius: 3px;
  font-size: 16px;
  height: 30px;
  padding-left: 20px;
  width: 100% !important;
}
.p-formInput input:focus {
  outline: 2px solid #B5B5B5;
}

.p-formInput--sm input {
  max-width: 100%;
  width: 350px;
}

/* 郵便番号 */
.p-formInput__post {
  align-items: baseline;
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
  width: 70%;
}
.p-formInput__post input {
  margin-inline: auto;
  width: 320px;
}

/* 住所 */
.p-formInput__address {
  margin-top: 10px;
}
.p-formInput__address input {
  width: 70%;
}

/* 電話番号（3分割など） */
.p-formInput--tel {
  align-items: center;
  display: flex;
  gap: 5px;
}
.p-formInput--tel > * {
  min-width: 0;
}
.p-formInput--tel input {
  max-width: 100%;
  width: 150px;
}

/* select */
.p-formSelect select {
  -webkit-appearance: none;
  appearance: none;
  background: url(../images/common/pulldown.svg) right 10px center/10px no-repeat;
  border: 1px solid #B5B5B5;
  border-radius: 0;
  color: lightgray;
  font-size: 16px;
  height: 1.875rem;
  max-width: 100%;
  padding-left: 20px;
  padding-top: 30px;
  width: 30%;
}
.p-formSelect select:focus {
  outline: 2px solid #B5B5B5;
}

/* option選択後の色 */
.p-formSelect--selected select {
  color: #333;
}

/* 日付（カレンダー） */
.p-formCalendar {
  position: relative;
  /* Firefox: 自前アイコン表示 */
  /* Android 微調整 */
}
.p-formCalendar input {
  -webkit-appearance: none;
  appearance: none;
  background: url(../images/common/calendar.svg) right 8px center/15px no-repeat;
  background-color: #fff;
  border: 1px solid #B5B5B5;
  border-radius: 0;
  color: lightgray;
  font-size: 16px;
  height: 60px;
  padding-left: 20px;
  padding-right: 5px;
  width: 250px;
  /* iPhone 左寄せ */
  /* ピッカーを全面クリックに */
}
.p-formCalendar input:focus {
  outline: 2px solid #B5B5B5;
}
.p-formCalendar input::-webkit-date-and-time-value {
  text-align: left;
}
.p-formCalendar input::-webkit-calendar-picker-indicator {
  background: transparent;
  color: transparent;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@-moz-document url-prefix() {
  .p-formCalendar input {
    background: none;
  }
  .p-formCalendar::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center/contain;
    content: "";
    height: 16px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-55%);
    width: 16px;
  }
}

/* “日付が選択されたら色変更” */
.p-form__dataBlockDate input:not(.p-formDate__default) {
  color: #333;
}

/* 日付関連の並び */
.p-formDate__flex {
  align-items: center;
  display: flex;
  gap: 35px;
}
.p-formDate__flex + .p-formDate__flex {
  margin-top: 20px;
}

.p-form__dataBlockFlex {
  align-items: center;
  display: flex;
}
.p-form__dataBlockFlex + .p-form__dataBlockFlex {
  margin-top: 20px;
}

.p-form__dataBlockLabel {
  font-size: 16px;
  width: 80px;
}

/* 数量などの複合行 */
.p-formNumber__txt {
  font-size: 16px;
}

.p-formNumber__flex {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

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

.p-formNumber__blockLabel01 {
  font-size: 16px;
  margin-right: 30px;
}

.p-formNumber__blockInput {
  margin-right: 10px;
  width: 150px;
}

/* === textarea === */
.p-formTextarea textarea {
  border: 1px solid #B5B5B5;
  border-radius: 3px;
  font-size: 16px;
  min-height: 350px;
  padding-left: 20px;
  padding-top: 10px;
  width: 100%;
}
.p-formTextarea textarea:focus {
  outline: 2px solid #B5B5B5;
}

/* === プライバシー & 同意 === */
.p-form__privacy {
  font-size: 16px;
  margin-top: 30px;
  text-align: center;
}
.p-form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.p-form__acceptance {
  margin-top: 30px;
  text-align: center;
}

/* =========================================================
   Checkbox / Radio (CF7)
========================================================= */
/* checkbox */
.p-formCheckbox {
  /* 横並び・折返し */
}
.p-formCheckbox .wpcf7-checkbox {
  /* display は .p-acc 内で grid 上書きもあり得る */
  flex-wrap: wrap;
  gap: 0.625rem;
  padding-left: 0.625rem;
}
.p-formCheckbox .wpcf7-list-item {
  margin-left: 0;
}
.p-formCheckbox--vertical .wpcf7-checkbox {
  display: block;
  padding: 1.25rem;
}
.p-formCheckbox--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}
.p-formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 0.625rem;
}
.p-formCheckbox input {
  display: none;
}
.p-formCheckbox input + span {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding-left: 35px;
  position: relative;
  width: auto;
}
.p-formCheckbox input + span::before {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #B5B5B5;
  border-radius: 3px;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.p-formCheckbox input + span::after {
  -webkit-transform: rotate(45deg);
  border-bottom: 3px solid #FF6767;
  border-right: 3px solid #FF6767;
  content: "";
  height: 13px;
  left: 6px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.p-formCheckbox input:checked + span::after {
  opacity: 1;
}

/* radio */
.p-formRadio {
  /* クリック範囲の整え（任意） */
}
.p-formRadio .wpcf7-radio {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.p-formRadio--vertical .wpcf7-radio {
  display: block;
}
.p-formRadio .wpcf7-list-item {
  margin: 0;
}
.p-formRadio--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}
.p-formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}
.p-formRadio input[type=radio] {
  display: none;
}
.p-formRadio input + span {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
}
.p-formRadio input + span::before {
  background: #fff;
  border: 1px solid #B5B5B5;
  border-radius: 50%;
  content: "";
  height: 20px;
  margin: 0 0.5em 0 0;
  transition: background-color 0.5s;
  width: 20px;
}
.p-formRadio input:checked + span::before {
  background-color: #FF6767;
  box-shadow: inset 0 0 0 3px #fff;
}
.p-formRadio .wpcf7-list-item label {
  align-items: center;
  display: inline-flex;
}

/* =========================================================
   Validation / Messages
========================================================= */
.wpcf7-not-valid-tip {
  color: red;
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* ラジオ等のバリデーション非表示用 */
.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

/* トリッキーなレイアウト用：まとめて表示 */
.p-formValidation .wpcf7-not-valid-tip {
  display: none;
}
.p-formValidation__error {
  color: red;
  display: none;
  font-size: 16px;
  font-weight: normal;
  margin-top: 10px;
}

/* invalid があればメッセージを表示 */
.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
  display: block;
}

/* 送信後メッセージ */
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 24px;
  padding: 15px 10px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2C94DE;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: red;
}

.wpcf7-spinner {
  display: none;
}

/* =========================================================
   Submit button
========================================================= */
.p-form__submit {
  margin-top: 30px;
  text-align: center;
}

.p-formBtn input {
  /* iOS系の既定外観リセット */
  -webkit-appearance: none;
  appearance: none;
  background-color: #FF6767;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  padding: 20px 0;
  text-align: center;
  transition: opacity 0.5s;
  width: 300px;
}
.p-formBtn input:disabled {
  background-color: #eee;
  border-color: #eee;
  color: #fff;
}

/* =========================================================
   Name grid（氏名：2行×2列）
========================================================= */
.p-nameGrid {
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  align-items: center;
  column-gap: 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(200px, 1fr) auto minmax(200px, 1fr);
  height: 100%;
  row-gap: 0.75rem;
  width: 80%;
}

.p-nameGrid__label {
  font-size: 16px;
  padding-right: 0.375rem;
  white-space: nowrap;
}

.p-formInput .p-nameGrid__input {
  height: 30px;
  padding-left: 10px;
  width: 100%;
}

.p-form__input select {
  align-items: center;
  border: 1px solid #C3C3C3;
  border-radius: 3px;
  display: flex;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  width: 100%;
}

.p-form__privacy {
  background-color: #FDEAEB;
  border-radius: 3px;
  padding: 2.5rem;
  text-align: left;
}
.p-form__privacy .privacy__txt {
  background-color: #fff;
  border-radius: 3px;
  height: 55vh;
  overflow: scroll;
  padding: 0.625rem;
}
.p-form__privacy .privacy__txt ol {
  padding-left: 1.25rem;
}
.p-form__privacy .privacy__txt ul {
  padding-left: 1.25rem;
}

.p-formInput__date-of-birth {
  align-items: baseline;
  display: flex;
  gap: 5px;
  width: 70%;
}
.p-formInput__date-of-birth select {
  color: #333;
}
.p-formInput__date-of-birth select option {
  color: #333;
}

.voice {
  margin-bottom: 3.75rem;
}
.voice > div:first-child {
  padding-bottom: 0rem;
}
.voice div:nth-child(2) {
  padding-top: 1.25rem;
}
.voice .u-flex {
  gap: 1.25rem;
}
.voice .u-flex p {
  text-align: center;
}
.voice-item__body {
  border: 3px solid #FDEAEB;
  border-radius: 5px;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.voice-section__back {
  display: block;
  margin: 0;
  text-align: right;
}

.back-to-top {
  background-color: #FF6767;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  padding: 0.625rem;
}
.sp-break {
  display: none;
}

.category-voice_dual_income {
  position: relative;
  z-index: 9;
}
.category-voice_dual_income::after {
  background: url("../img/category-voice_dual_income.webp") center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -12%;
  top: -20%;
  width: 7.5rem;
  z-index: 10;
}

.category-voice_families_with_small_children {
  position: relative;
  z-index: 9;
}
.category-voice_families_with_small_children::after {
  background: url("../img/category-voice_families_with_small_children.webp") center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -12%;
  top: -20%;
  width: 7.5rem;
  z-index: 10;
}

.category-voice_living_alone {
  position: relative;
  z-index: 9;
}
.category-voice_living_alone::after {
  background: url("../img/category-voice_living_alone.webp") center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -12%;
  top: -20%;
  width: 7.5rem;
  z-index: 10;
}

.category-voice_senior_generation {
  position: relative;
  z-index: 9;
}
.category-voice_senior_generation::after {
  background: url("../img/category-voice_senior_generation.webp") center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -12%;
  top: -20%;
  width: 7.5rem;
  z-index: 10;
}

.category-voice_office_worker {
  position: relative;
  z-index: 9;
}
.category-voice_office_worker::after {
  background: url("../img/category-voice_office_worker.webp") center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -12%;
  top: -20%;
  width: 7.5rem;
  z-index: 10;
}

.faq .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.625rem;
  padding: 0 2.5rem 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.faq-anchor.l-sec-wrap {
  padding-bottom: 0;
  padding-left: 3.125rem;
}
.faq-anchor__list {
  margin-top: 1.875rem;
  padding-left: 1.875rem;
}
.faq-anchor li {
  line-height: 1.5625rem;
  list-style: disc;
}
.faq-anchor li::marker {
  color: #FF6767; /* ドットの色を赤に */
}
.faq-anchor a {
  text-decoration: underline;
}

.faq-list {
  margin: 0 2.5rem;
}
.faq-list li {
  line-height: 1.5625rem;
  list-style: disc;
}
.faq-list li::marker {
  color: #FF6767; /* ドットの色を赤に */
}
.faq-list a {
  text-decoration: underline;
}

.faq-section__back {
  margin-top: 1.875rem;
  text-align: right;
}

.features .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-footer {
  background-image: url("../img/fv_bg02.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.125rem 0 0;
}
.p-footer h2 {
  font-weight: 900;
  letter-spacing: -0.3125rem;
}
.p-footer .l-sec-wrap80vw img {
  margin: 0 auto;
  width: 90%;
}
.p-footer .l-sec-wrap80vw > img {
  margin-top: 1.875rem;
}
.p-footer .cta {
  margin: -3.125rem auto 4.375rem 1.25rem;
  width: 90%;
}
.p-footer .cta-link {
  display: block;
  position: relative;
}
.p-footer .cta-link img {
  height: auto;
  width: 100%;
}
.p-footer .cta-link::before {
  background-image: url("../img/footer_subttl.webp");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 9.375rem;
  left: -1.875rem;
  position: absolute;
  top: -5rem;
  width: 9.375rem;
}
.p-footer-bottom {
  background-color: #fff;
  margin-top: 1.875rem;
  padding: 1.5625rem 0;
  text-align: center;
}
.p-footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.p-footer-bottom ul li:nth-child(n+1) {
  border-right: 1px solid #333333;
  padding: 0.0625rem 0.625rem 0.0625rem 0.0625rem;
  vertical-align: middle;
}
.p-footer-bottom p {
  font-size: 0.875rem;
  line-height: 1;
  margin-top: 0.625rem;
}
.p-footer-bottom small {
  font-size: 0.75rem;
  line-height: 0.8;
}

.for-corporation .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.for-corporation .sec__ttl-mainbg {
  margin-top: 3.125rem !important;
}

.for-corporation .sec__ttl-circle_btmline {
  margin-top: 3.125rem !important;
}

.for-corporation-maintenance {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  overflow: hidden;
  width: 70%;
}
.for-corporation-maintenance th {
  background-color: #FDEAEB;
  border: 1px solid #FF6767;
  padding: 0.625rem 0;
  width: 30%;
}
.for-corporation-maintenance td {
  border: 1px solid #FF6767;
  padding: 0.625rem 0.625rem;
  width: 70%;
}
.for-corporation-maintenance tr:first-child th:first-child {
  background-clip: padding-box;
  border-top-left-radius: 5px;
}
.for-corporation-maintenance tr:first-child td:last-child {
  border-top-right-radius: 5px;
}
.for-corporation-maintenance tr:last-child th:first-child {
  border-bottom-left-radius: 5px;
}
.for-corporation-maintenance tr:last-child td:last-child {
  background-clip: padding-box;
  border-bottom-right-radius: 5px;
}

.for-corporation-example {
  border: 1px solid #FF6767;
  border-collapse: collapse;
  margin: 0 auto;
  width: 70%;
}
.for-corporation-example th {
  background-color: #FF6767;
  color: #fff;
}
.for-corporation-example td {
  border: 1px solid #FF6767;
  padding: 0.625rem 1.25rem;
  text-align: center;
}
.for-corporation-example tr:nth-child(even) td {
  background-color: #FDEAEB;
}

.second-main__bg {
  background-color: #FDEAEB;
  border-radius: 5px;
  padding: 1.25rem;
}
.second-main__bg a {
  color: #FF6767;
  text-decoration: underline;
}
.second-main__bg a:visited {
  color: #FF6767;
}
.second-main__bg .u-flex {
  justify-content: space-around;
}
.second-main__bg .u-flex__tel {
  position: relative;
}
.second-main__bg .u-flex__tel::before {
  background: url(../img/mingcute_phone-fill.webp) center center/contain no-repeat;
  content: "";
  height: 1.125rem;
  left: -1.5625rem;
  position: absolute;
  top: 0.1875rem;
  width: 1.125rem;
}
.second-main__bg .u-flex__mail {
  position: relative;
}
.second-main__bg .u-flex__mail::before {
  background: url(../img/header_icon_mail.webp) center center/contain no-repeat;
  content: "";
  height: 1.125rem;
  left: -1.5625rem;
  position: absolute;
  top: 0.3125rem;
  width: 1.125rem;
}

.fv__box {
  background: url(../img/fv_bg.webp) center center/cover no-repeat;
  height: 39.375rem;
  position: relative;
}
.fv__box-item {
  left: 10%;
  position: absolute;
  top: 35%;
  width: 53vw;
  z-index: 2;
}
.fv__box p {
  color: #fff;
  padding: 0.625rem 0.9375rem;
}
.fv__box-img {
  position: absolute;
  right: 0;
  top: 21%;
  width: 55vw;
  z-index: 1;
}
.fv__box__news {
  bottom: 0;
  margin-bottom: 0.0625rem;
  position: absolute;
  right: 0;
  z-index: 3;
}
.fv__box__news .title {
  align-items: center;
  background-color: #FF6767;
  border: #fff solid 0.0625rem;
  color: #fff;
  display: grid;
  font-weight: 700;
  justify-content: center;
  min-height: 7.5rem;
  padding: 2.5rem 2.5rem;
  place-content: center;
}
.fv__box__news .title__span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 0.8125rem;
  margin: 0;
  padding: 0;
  text-align: center;
}
.fv__box__news-content {
  background-color: #fff;
  padding: 0.625rem 0 0 0.625rem;
  width: 40vw;
}
.fv__box__news-content p:last-child {
  background-color: #FF6767;
  color: #fff;
  margin-left: auto;
  margin-top: 0.625rem;
  text-align: center;
  width: 12.5rem;
}
.fv__box__news-content p:last-child a {
  font-weight: 700;
}

.fv__box__news-content p {
  color: #333;
  padding: 0;
}

.pickup__box {
  gap: 1.25rem;
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
}
.pickup__box-item {
  color: #FF6767;
  font-weight: 400;
  width: 16.6666666667%;
}
.pickup__box-item h2 {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.pickup__box-item span {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.pickup__box-item img {
  margin: 0 auto;
  width: 1.25rem;
}
.pickup__box-banner {
  box-sizing: border-box;
  height: auto;
  width: 16.6666666667%;
}
.pickup__box-banner img {
  height: auto;
  width: 100%;
}

.worries {
  padding-bottom: 1.25rem;
}

.worries-box-top {
  height: 15.625rem;
  justify-content: space-between;
  margin: 2.5rem auto 0.625rem;
  width: 54.375rem;
}

.worries-box-btm {
  height: 15.625rem;
  justify-content: space-between;
  margin: 0.625rem auto 2.5rem;
  width: 70.625rem;
}

.worries-item {
  height: 15.625rem;
  position: relative;
  width: 25rem;
}

.worries-item--large {
  height: 18.75rem;
  width: 34.0625rem;
}

.worries-item__img {
  height: 14.375rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 14.375rem;
}

.worries-item__img--large {
  height: 18.75rem;
  width: 18.75rem;
}

.worries-item__circle {
  align-items: center;
  background-color: #FDEAEB;
  border-radius: 50%;
  display: flex;
  height: 14.375rem;
  justify-content: center;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  white-space: nowrap;
  width: 14.375rem;
}

.worries-item__circle--large {
  height: 18.75rem;
  width: 18.75rem;
}

.worries-text span {
  color: #FF6767;
  font-weight: 700;
}

.worries-text--ikuji {
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.worries-text--ikuji span {
  display: block;
}

.worries-text--full {
  padding: 3.75rem 2.5rem;
}

.worries-text--sick {
  padding: 6.875rem 0.625rem;
}

.worries-text--kitchen {
  padding: 5.3125rem 1.25rem;
}

.suggestion {
  background: url(../img/front_worries_under.webp) center center/contain no-repeat;
  margin-bottom: 3.75rem;
  margin-top: 7.5rem;
}
.suggestion p {
  color: #fff;
  padding: 3.125rem 6.25rem;
  text-align: center;
}
.suggestion .u-font35 {
  font-weight: 500;
  line-height: 3.125rem;
}
.suggestion .second-font {
  font-weight: 700;
}
.suggestion .u-font60 {
  font-weight: 900;
}

.fv-link {
  z-index: 11;
}

.order {
  background: url(../img/illust_bg_daikou.webp) center 50%/contain no-repeat;
}
.order .second-font {
  font-weight: 400;
}
.order .u-font40 {
  font-weight: 900;
  line-height: 2.1875rem;
  text-align: center;
}

.order-box {
  position: relative;
}

.order-sp__box-top {
  display: none;
  position: absolute;
}

.order-sp__box-bottom {
  background-color: transparent;
  display: none;
  position: absolute;
}

.order-item {
  margin: 0 auto 0.625rem;
  width: 70%;
}

.order-contents {
  justify-content: space-between;
  margin: 0.625rem auto 1.25rem;
  width: 95%;
}
.order-contents p {
  flex: 1;
  margin: 0 0.3125rem;
}
.order-contents p:first-child {
  margin-left: 0;
}
.order-contents p:last-child {
  margin-right: 0;
  padding: 0.125rem;
}
.order-contents .main-border {
  background-color: #fff;
}
.order-contents .middle-padding {
  align-items: center;
  font-weight: 500;
  line-height: 1.1875rem;
  padding: 1.75rem 1.875rem;
  text-align: center;
}

.order-contents--left {
  justify-content: left;
  margin: 0.625rem auto;
  width: 95%;
}
.order-contents--left span {
  display: block;
}
.order-contents--left .sec__ttl-mainbg {
  box-sizing: border-box;
  font-weight: 500;
  margin-right: 1.25rem;
  padding: 2.1875rem 0.625rem;
  width: 20%;
}
.order-contents--left .u-flex {
  gap: 0.625rem;
}
.order-contents--left .u-flex p:first-child {
  margin: 0.0625rem;
}
.order-contents--left .u-flex p {
  padding: 0.1875rem;
}
.order-contents--left .u-flex .main-border {
  margin-right: 0.625rem;
}

.order-contents--center {
  padding: 1.5625rem 0.3125rem;
  width: 95%;
}
.order-contents--center .sec__ttl-mainbg {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  font-weight: 500;
  justify-content: center;
  margin-right: 1.25rem;
  padding: 0.625rem;
  width: 20%;
}

.order-contents--center2 {
  box-sizing: border-box;
  padding: 0.8125rem 0.0625rem;
  width: 90%;
}
.order-contents--center2 a {
  color: #FF6767;
  text-decoration: underline;
}
.order-contents--center2 a:visited {
  color: #FF6767;
}
.order-contents--center2 .u-flex .main-border {
  padding: 0.625rem;
  text-align: center;
}
.order-contents--center2 .u-flex .main-border-bold {
  padding: 0.625rem;
  text-align: center;
}

.order-cta {
  border-radius: 5px;
  margin-top: 3.125rem;
  text-align: center;
}
.order-cta p {
  margin: 0 auto;
  width: 60%;
}

.features div {
  position: relative;
}
.features .c-column2 div:nth-child(2) img {
  width: 90%;
}
.features .c-column2 div:first-child::before {
  -webkit-transform: translate(-50%, -50%);
  background: url("../img/01.webp") center center/contain no-repeat;
  content: "";
  height: 6.25rem;
  left: 50%;
  position: absolute;
  position: absolute;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
}
.features .c-column2 div:nth-child(2)::before {
  -webkit-transform: translate(-50%, -50%);
  background: url("../img/02.webp") center center/contain no-repeat;
  content: "";
  height: 6.25rem;
  left: 50%;
  position: absolute;
  position: absolute;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
}
.features .c-column2 div:nth-child(3)::before {
  -webkit-transform: translate(-50%, -50%);
  background: url("../img/03.webp") center center/contain no-repeat;
  content: "";
  height: 6.25rem;
  left: 50%;
  position: absolute;
  position: absolute;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
}
.features .c-column2 div:nth-child(4)::before {
  -webkit-transform: translate(-50%, -50%);
  background: url("../img/04.webp") center center/contain no-repeat;
  content: "";
  height: 6.25rem;
  left: 50%;
  position: absolute;
  position: absolute;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
}
.features .sec__ttl-house {
  margin-bottom: 3.125rem;
  text-align: center;
}
.features__box {
  background-image: url("../img/features_bg.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem 3.125rem 6.25rem;
}
.features__box__item {
  border: 3px solid #FF6767;
  border-radius: 5px;
  margin: 0 auto 2.5rem;
  padding: 3.75rem 3.125rem 1.25rem;
  position: relative;
  text-align: center;
  width: 80%;
}
.features__box__item-img {
  margin: 0 auto;
  width: 50%;
}
.features__box__item h3 {
  color: #FF6767;
  font-weight: 700;
  margin: 0.3125rem auto 0.625rem;
}
.features__box__item h3 .accent-green {
  font-weight: 700;
}
.features__box > p {
  text-align: center;
}
.features__box > p .cta__btn {
  background-color: #FF6767;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  padding: 1.25rem 5rem 1.25rem 2.5rem;
  position: relative;
  text-align: center;
  text-align: center;
  width: 6.25rem;
}
.features__box > p .cta__btn::after {
  background: url(../img/Polygon1.webp) center center/contain no-repeat;
  content: "";
  height: 2.5rem;
  position: absolute;
  right: 5%;
  top: 30%;
  width: 2.5rem;
}

.voice .c-column3 {
  margin-top: 1.25rem;
}
.voice__box {
  background-color: #FF6767;
  border-radius: 5px;
  color: #fff;
  padding: 1.25rem;
  width: 100%;
}
.voice__box p:first-child {
  margin: 0.3125rem 0 2.1875rem;
}
.voice__box p:last-child {
  font-weight: 700;
}
.voice .voice__sa {
  position: relative;
}
.voice .voice__sa::after {
  -webkit-transform: scaleX(-1);
  background: url(../img/fv_voice_sa.webp) center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -15%;
  top: -15%;
  transform: scaleX(-1);
  width: 7.5rem;
}
.voice .voice__hm {
  position: relative;
}
.voice .voice__hm::after {
  -webkit-transform: scaleX(-1);
  background: url(../img/fv_voice_hm.webp) center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -15%;
  top: -15%;
  transform: scaleX(-1);
  width: 7.5rem;
}
.voice .voice__jo {
  position: relative;
}
.voice .voice__jo::after {
  background: url(../img/fv_voice_jo.webp) center center/contain no-repeat;
  content: "";
  height: 7.5rem;
  position: absolute;
  right: -15%;
  top: -15%;
  width: 7.5rem;
}

.p-header {
  background-color: #fff;
  height: 5rem;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 0;
  transition: 0.5s all;
  width: 100%;
  z-index: 100;
}

.p-header__inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: inherit;
  justify-content: space-between;
  position: relative;
  width: 80%;
  z-index: 10;
}

.p-header__inner__box {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  gap: 2.1875rem;
  justify-content: center;
}
.p-header__inner__box .p-header__inner__box-guidance {
  position: relative;
}
.p-header__inner__box .p-header__inner__box-guidance::before {
  background-image: url("../img/header_icon_guidance.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.0625rem;
  left: -1.25rem;
  position: absolute;
  top: 0.125rem;
  width: 1.0625rem;
}
.p-header__inner__box .p-header__inner__box-fee {
  position: relative;
}
.p-header__inner__box .p-header__inner__box-fee::before {
  background-image: url("../img/header_icon_fee.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.0625rem;
  left: -1.25rem;
  position: absolute;
  top: 0.125rem;
  width: 1.0625rem;
}
.p-header__inner__box .p-header__inner__box-voice {
  position: relative;
}
.p-header__inner__box .p-header__inner__box-voice::before {
  background-image: url("../img/codicon_feedback.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.0625rem;
  left: -1.25rem;
  position: absolute;
  top: 0.125rem;
  width: 1.0625rem;
}
.p-header__inner__box .p-header__inner__box-q {
  position: relative;
}
.p-header__inner__box .p-header__inner__box-q::before {
  background-image: url("../img/header_icon_question.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.0625rem;
  left: -1.25rem;
  position: absolute;
  top: 0.125rem;
  width: 1.0625rem;
}
.p-header__inner__box .p-header__inner__box-corporation {
  position: relative;
}
.p-header__inner__box .p-header__inner__box-corporation::before {
  background-image: url("../img/header_icon_corporation.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.0625rem;
  left: -1.25rem;
  position: absolute;
  top: 0.125rem;
  width: 1.0625rem;
}
.p-header__inner__box .p-header__inner__box-contact {
  position: relative;
}
.p-header__inner__box .p-header__inner__box-contact::before {
  background-image: url("../img/header_icon_mail.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.0625rem;
  left: -1.25rem;
  position: absolute;
  top: 0.125rem;
  width: 1.0625rem;
}
.p-header__inner__box-img {
  height: 2.5rem;
}

.p-header__logo {
  background-color: #fff;
  height: 4.375rem;
  max-width: 80%;
}
.p-header__logo a img {
  max-width: 100%;
  width: 12.5rem;
}

.p-header__wrap {
  display: flex;
  height: inherit;
}

.p-header__contact {
  background-color: #003C8C;
  color: #fff;
  max-width: 100%;
  transition: 0.3s background-color;
  width: 15.625rem;
}
.p-header__contact a {
  display: grid;
  height: 5rem;
  place-content: center;
}

.p-header__contactTxt {
  font-size: 1rem;
  font-weight: 300;
  padding-left: 2.1875rem;
  position: relative;
}
.p-header__contactTxt::before {
  -webkit-transform: translateY(-50%);
  background: url(../images/common/mail.svg) center center/contain no-repeat;
  content: "";
  height: 1.0625rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
}

header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100px);
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100px);
    opacity: 0;
    transform: translateY(-100px);
  }
}
header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
  background-color: #fff;
  top: 0px;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100px);
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100px);
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}
.p-pcNav {
  align-items: center;
  display: flex;
  height: inherit;
  margin-left: auto;
}

.p-pcNav__item {
  height: inherit;
  padding: 0 1.25rem;
}

.p-pcNav__item:last-child {
  padding-right: 2.5rem;
}

.p-pcNav__item {
  position: relative;
}
.p-pcNav__item::before {
  -webkit-transform: translateX(-50%);
  background-color: #003C8C;
  content: "";
  height: 1.25rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: 0.3s all;
  visibility: hidden;
  width: 1px;
}

.p-pcNav__item.is-current::before {
  opacity: 1;
  visibility: visible;
}
.p-pcNav__link {
  align-items: center;
  color: #333;
  display: block;
  display: flex;
  font-size: 1rem;
  font-weight: 300;
  height: inherit;
  justify-content: center;
  position: relative;
}
.p-pcNav__link span {
  display: block;
  position: relative;
}
.p-pcNav__link span::after {
  -webkit-transform: translateX(-50%);
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s all;
  width: 100%;
}
.p-pcNav__tel::before {
  content: "";
  display: inline-block;
  height: 0.875rem;
  margin-right: 7px;
  width: 0.875rem;
}

.p-pcNav__contact {
  background-color: #3D4346;
  box-sizing: border-box;
  color: #fff;
  height: 5.1875rem !important;
  padding-top: 0.625rem;
  transition: 0.3s all;
  width: 5.1875rem;
}
.p-pcNav__contact a {
  align-items: center;
  display: flex;
  height: 5.1875rem !important;
  justify-content: center;
}
.p-pcNav__contact img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.375rem;
  width: 1.5625rem;
}
.p-pcNav__contact span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
}
.current-page .hover-line:after {
  opacity: 1;
}

.js-fixed + main > .js-mv {
  margin: 0rem 1.4375rem 0;
  transition: 0.3s all;
}

.c-hamburger-outer {
  display: none;
  /* PCサイズでは非表示 */
}

/* フォールバック：どんな状況でもハンバーガーボタンが表示されるように */
.c-hamburger {
  cursor: pointer !important;
  display: block !important;
  height: 1rem !important;
  position: relative !important;
  transition: 0.3s all !important;
  width: 1.25rem !important;
  z-index: 999999 !important; /* 最高優先度 */
}

.c-hamburger span {
  background-color: #fff !important;
  border-radius: 2px !important; /* より丸い角 */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important; /* 柔らかい影 */
  display: inline-block !important;
  height: 3px !important; /* 少し太くして可愛らしく */
  left: 0 !important;
  margin: 0 auto !important;
  position: absolute !important;
  right: 0 !important;
  top: calc((100% - 3px) / 2) !important;
  transition: ease 0.5s all !important;
  width: 1.125rem !important; /* 少し短めで可愛く */
}

.c-hamburger span:nth-child(1) {
  -webkit-transform: translateY(-6px) !important;
  transform: translateY(-6px) !important;
}

.c-hamburger span:nth-child(3) {
  -webkit-transform: translateY(6px) !important;
  transform: translateY(6px) !important;
}

/*OPEN時の動き*/
body.js-open .c-hamburger-outer {
  /* パルス効果を追加して可愛らしく */
  -webkit-animation: cute-pulse 2s infinite !important;
  align-items: center !important;
  animation: cute-pulse 2s infinite !important;
  background-color: #FF6767 !important; /* メインカラーで統一 */
  border: 3px solid rgb(255, 255, 255) !important; /* 明確な白い境界 */
  border-radius: 50% !important; /* 丸い形 */
  box-shadow: 0 6px 20px rgba(255, 103, 103, 0.4) !important; /* メインカラーに合わせた影 */
  cursor: pointer !important;
  display: flex !important; /* 絶対に表示 */
  height: 3rem !important;
  justify-content: center !important;
  position: fixed !important;
  right: 0.3125rem !important;
  top: 0 !important;
  width: 3rem !important;
  z-index: 999999 !important; /* 絶対に最前面 */
  /* メニューが開いた時のホバー効果 */
}
body.js-open .c-hamburger-outer:hover {
  -webkit-transform: scale(1.15) rotate(-5deg) !important;
  background-color: #ff9a9a !important; /* 明るいメインカラー */
  border-color: rgb(255, 255, 255) !important;
  box-shadow: 0 8px 25px rgba(255, 103, 103, 0.6) !important;
  transform: scale(1.15) rotate(-5deg) !important; /* 少し逆回転で可愛く */
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

@-webkit-keyframes cute-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 103, 103, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 103, 103, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 103, 103, 0);
  }
}

@keyframes cute-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 103, 103, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 103, 103, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 103, 103, 0);
  }
}
body.js-open .c-hamburger {
  display: block !important;
  z-index: 999999 !important;
}

body.js-open .c-hamburger span {
  background-color: #fff !important; /* 白色を強制 */
  border-radius: 3px !important; /* 角を丸くして可愛く */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important; /* 影でくっきりと */
  display: inline-block !important;
  height: 4px !important; /* 太くして見やすく */
  position: absolute !important;
  transition: ease 0.5s all !important;
  width: 1rem !important; /* 幅を調整 */
}

body.js-open .c-hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
}

body.js-open .c-hamburger span:nth-child(2) {
  opacity: 0 !important;
}

body.js-open .c-hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg) !important;
  left: 0 !important;
  right: 0 !important;
  transform: rotate(-45deg) !important;
  width: 1rem !important; /* 幅を他と統一 */
}

body.noscroll {
  overflow: hidden;
}

.c-spNav {
  display: none;
}

body.js-open .c-spNav {
  opacity: 1;
  visibility: visible;
}

.c-spNav__link {
  color: #333;
  display: block;
  font-size: 1rem;
  font-weight: 300;
  padding: 0.9375rem 0;
  position: relative;
  text-align: center;
}
.c-spNav__link::after {
  -webkit-transform: translateX(-50%);
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s all;
  width: 100%;
}
.c-spNav__link span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.c-spNav__banner {
  align-items: center;
  display: flex;
  gap: 1.25rem; /* アイコン間のスペース */
  justify-content: center;
  margin: 1.875rem auto 0; /* マージンを削減 */
  width: 21.25rem;
}
.c-spNav__banner a {
  display: block;
  flex-shrink: 0; /* サイズを固定 */
}
.c-spNav__banner a img,
.c-spNav__banner a .p-header__inner__box-img {
  -o-object-fit: contain;
  border-radius: 8px; /* 少し角を丸く */
  display: block; /* インライン要素の余白を削除 */
  height: 3.125rem !important;
  object-fit: contain; /* 比率を保持しながらフィット */
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* ホバー効果 */
  width: 3.125rem !important; /* 両方のアイコンを同じサイズに */
}
.c-spNav__banner a img:hover,
.c-spNav__banner a .p-header__inner__box-img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1); /* ホバー時に少し拡大 */
}

.c-spNav__logo {
  margin: 2.5rem auto 0; /* マージンを削減 */
  width: 20.6875rem;
}

.p-hoge {
  color: blue;
  font-size: 6.25rem;
}

.p-hoge2 {
  color: pink;
  font-size: 1.875rem;
}

.sp-br {
  display: none;
}

.sm-br525 {
  display: none;
}

.instagram-media,
.instagram-media.instagram-media-rendered {
  border-radius: 0.75rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  height: 30vh !important;
  margin: 0 auto !important;
  max-height: 30vh !important;
  max-width: 400px !important; /* 自然な幅に設定 */
  min-height: 30vh !important;
  overflow: visible !important; /* コンテンツ全体を表示 */
  width: auto !important;
}
.instagram-media iframe,
.instagram-media.instagram-media-rendered iframe {
  border-radius: inherit !important;
  height: 100% !important;
  max-width: inherit !important;
  min-height: inherit !important;
  width: 100% !important;
}
.instagram-media div,
.instagram-media article,
.instagram-media.instagram-media-rendered div,
.instagram-media.instagram-media-rendered article {
  border-radius: inherit !important;
  height: inherit !important;
  max-height: inherit !important;
  max-width: inherit !important;
  overflow: visible !important;
}
.instagram-media blockquote,
.instagram-media.instagram-media-rendered blockquote {
  background: transparent !important;
  border: none !important;
  height: inherit !important;
  margin: 0 !important;
  max-width: inherit !important;
  padding: 0 !important;
}

.p-media__inner__box .instagram-media,
.p-media__inner__box .instagram-media.instagram-media-rendered {
  margin: 0.625rem auto !important; /* コンテナ内でのマージン調整 */
}

.p-media {
  background-color: #FDEAEB; /* 背景色を追加 */
  max-width: 100%;
  padding: 2.5rem 1.25rem; /* pickupと同じパディング */
}
.p-media__inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 80vw; /* PCで80vw */
}
.p-media__header {
  margin-bottom: 1.875rem; /* pickupに合わせて調整 */
  margin-right: 1.5625rem;
  text-align: center;
}
.p-media__title {
  color: #FF6767;
  font-family: "Jost", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
}
.p-media__subtitle {
  color: #333;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.p-media__link {
  background-color: #FF6767;
  border-radius: 1.5625rem;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-media__link:hover {
  -webkit-transform: translateY(-2px);
  background-color: #ff3434;
  transform: translateY(-2px);
}
.p-media__content {
  align-items: stretch; /* 高さを揃える */
  display: flex;
  gap: 0.9375rem;
  justify-content: center;
  min-height: 18.75rem; /* 最小高さを設定してpickupセクションと揃える */
}
.p-media__inner__box {
  flex: 1;
  max-width: calc(33.333% - 0.625rem);
  min-width: 15.625rem; /* 最小幅を設定 */
}
.p-media__inner__box-item {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%; /* 親要素の高さに合わせる */
  overflow: hidden;
  transition: all 0.3s ease;
}
.p-media__inner__box-item:hover {
  -webkit-transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.p-media__post-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.p-media__image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-media__image {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
}
.p-media__image:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.p-media__video-indicator {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  height: 2rem;
  justify-content: center;
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  width: 2rem;
}
.p-media__caption {
  align-items: flex-start;
  display: flex;
  flex: 1; /* 残りの高さを使用 */
  padding: 0.9375rem;
}
.p-media__caption p {
  line-clamp: 3; /* 標準プロパティも追加 */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #333;
  display: -webkit-box;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
}
.p-media__error {
  color: #333;
  padding: 2.5rem;
  text-align: center;
}
.p-media__error p {
  font-size: 1rem;
  margin-bottom: 0.9375rem;
}
.p-media__error a {
  background-color: #FF6767;
  border-radius: 1.5625rem;
  color: #fff;
  display: inline-block;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.p-media__error a:hover {
  background-color: #ff3434;
}

.p-media__inner {
  margin: 0 auto;
  width: 80vw;
}

.p-modal {
  background: rgba(255, 255, 255, 0.7);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.p-modal__block {
  -webkit-transform: translate(-50%, -50%);
  background-color: #FEAEBB;
  border-radius: 0.625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 27.5rem;
}

.p-modal__wrap {
  padding: 3.75rem 0 2.5rem;
  position: relative;
}

.p-pageTop {
  bottom: 1.875rem;
  cursor: pointer;
  position: fixed;
  right: 1.875rem;
  z-index: 50;
}

.p-pageTop__wrap {
  position: relative;
}

.p-pageTop__wrap img {
  width: 3.125rem;
}

.p-pageTop__wrap img:nth-of-type(2) {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.5s opacity;
}
.price-info a {
  color: #FF6767;
  text-decoration: underline;
}
.price-info a:visited {
  color: #FF6767;
}
.price-info .sec__ttl-line-long {
  margin-top: 0.625rem;
  padding: 0 2.5rem 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.price-info .l-sec-wrap {
  padding-bottom: 1.25rem;
}

.price-table {
  padding: 2.5rem 2.5rem 1.25rem 2.5rem;
  width: 80%;
}
.price-table .price-table__desktop {
  display: block;
}
.price-table .price-table__accordion {
  display: none;
}
.price-table .c-table {
  margin: 1.875rem auto 0.3125rem;
  width: 100%;
}
.price-table .c-table th,
.price-table .c-table td {
  padding: 0.9375rem 0;
  text-align: center;
}
.price-table .c-table td:nth-child(2) {
  padding-left: 1.25rem;
  text-align: left;
}
.price-table .c-table th {
  background-color: #FF6767;
  color: #fff;
}
.price-table .c-table tr:first-child th:first-child {
  border-top-left-radius: 5px;
}
.price-table .c-table tr:first-child th:last-child {
  border-top-right-radius: 5px;
}
.price-table .c-table tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.price-table .c-table tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.price-table .c-table tr {
  background-color: #FDEAEB;
}
.price-table .c-table tr:nth-child(2n) {
  background-color: #FADBE1;
}
.price-table .u-mt30 {
  margin-bottom: 0.9375rem;
}
.price-table .l-sec-wrap {
  margin-bottom: 0;
}
.price-table .l-sec-wrap80vw {
  padding-left: 0rem;
  padding-right: 0rem;
}
.price-table .accordion-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.9375rem;
  overflow: hidden;
}
.price-table .accordion-item:last-child {
  margin-bottom: 0;
}
.price-table .accordion-header {
  align-items: center;
  background-color: #FF6767;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  transition: background-color 0.3s ease;
}
.price-table .accordion-header:hover {
  opacity: 0.9;
}
.price-table .accordion-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.price-table .accordion-icon {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.price-table .accordion-content {
  background-color: #FDEAEB;
  display: none;
  padding: 1.25rem;
}
.price-table .accordion-detail {
  margin: 0;
}
.price-table .accordion-detail__row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 0.75rem 0;
}
.price-table .accordion-detail__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.price-table .accordion-detail__row:first-child {
  padding-top: 0;
}
.price-table .accordion-detail__row dt {
  color: #333;
  flex: 0 0 40%;
  font-size: 0.875rem;
  font-weight: 600;
}
.price-table .accordion-detail__row dd {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 0.9375rem;
}
.price-table .accordion-detail__row dd.price {
  color: #FF6767;
  font-size: 1.125rem;
  font-weight: 600;
}
.price-table .accordion-detail__row dd .note {
  color: #666;
  display: block;
  font-size: 0.75rem;
  margin-top: 0.3125rem;
}
.price-table .accordion-item.is-open .accordion-header {
  background-color: rgb(255, 77.5, 77.5);
}

.price-house .cta, .price-guarantee .cta {
  display: block;
  margin: 1.875rem auto 0;
  text-align: center;
}
.price-house .cta a, .price-guarantee .cta a {
  background-color: #FF6767;
  border-radius: 5px;
  color: #fff;
  padding: 0.9375rem 4.375rem 0.9375rem 2.5rem;
  position: relative;
  text-align: center;
}
.price-house .cta a::after, .price-guarantee .cta a::after {
  -webkit-transform: translateY(-50%);
  background: url(../img/Polygon1.webp) center center/contain no-repeat;
  content: "";
  height: 1.5625rem;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5625rem;
}
.price-house p:nth-child(2) {
  margin-bottom: 1.25rem;
}
.price-house .u-flex {
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto 2.5rem;
}
.price-house .u-flex img {
  height: auto;
  width: 14.2857142857%;
}
.price-guarantee p {
  margin-bottom: 1.25rem;
}
.price-guarantee .cta {
  margin-bottom: 1.25rem;
}

.privacy .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.875rem 0.3125rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.privacy div:nth-child(2) {
  padding-top: 0rem;
}
.privacy .l-sec-wrap80vw {
  padding-bottom: 1.25rem;
}
.privacy .wp-block-heading {
  margin: 1.25rem 0;
}
.privacy p:last-child {
  margin-bottom: 2.5rem;
}

.recruitment .c-table {
  margin-top: 1.25rem;
}
.recruitment .c-table th {
  align-items: center;
  background-color: #FDEAEB;
  text-align: center;
  width: 20%;
}
.recruitment .c-table td {
  align-items: center;
  padding-left: 1.25rem;
  text-align: center;
  text-align: left;
  width: 80%;
}
.recruitment .c-table .p-form__title--aiStart {
  align-items: center;
  text-align: center;
}

.recruitment .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.recruitment > div:nth-child(2) {
  padding-top: 0rem;
}
.sg-flow .sec__ttl-line {
  font-weight: 900;
  margin-top: 0.625rem;
  padding: 0 2.5rem 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sg-flow .step .second-font {
  margin-bottom: 0.3125rem;
}
.sg-flow .step__item img {
  height: 7.8125rem;
  width: 8.75rem;
}
.sg-flow .txt {
  width: 100%;
}
.sg-flow .txt .u-font24 {
  margin-bottom: 0.625rem;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
}
.sg-flow .txt__box {
  background-color: #FDEAEB;
  border-radius: 5px;
  margin: auto 1.25rem;
  padding: 1.25rem;
  width: 100%;
}
.sg-flow .txt a {
  color: #FF6767;
  text-decoration: underline;
}
.sg-flow .txt a:visited {
  color: #FF6767;
}
.sg-flow .c-column2 {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.3125rem;
}
.sg-flow .c-column2 a {
  padding-left: 1.5625rem;
  position: relative;
}
.sg-flow .c-column2 a:first-child:before {
  background-image: url("../img/mingcute_phone-fill.webp");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 10%;
  width: 1.25rem;
}
.sg-flow .c-column2 a:nth-child(2):before {
  background-image: url("../img/header_icon_mail.webp");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 10%;
  width: 1.25rem;
}
.sg-flow .cta {
  background-color: #FF6767;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 3.125rem;
  padding: 0.625rem 4.375rem 0.625rem 2.5rem;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sg-flow .cta a::after {
  -webkit-transform: translate(-50%, -50%);
  background: url("../img/Polygon1.webp") center center/contain no-repeat;
  content: "";
  height: 1.5625rem;
  position: absolute;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5625rem;
}

.service-area .sec__ttl-line-long {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.service-area .sec__ttl-mainbg {
  margin-bottom: 1.25rem;
}
.service-area p {
  padding-left: 25px;
  padding-right: 25px;
}

.service-area div:first-child {
  padding-bottom: 0rem;
}
.single-faq .sec__ttl-line-long {
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.single-faq-list__no {
  background: url(../img/Q.webp) center center/contain no-repeat;
  background-color: #fff;
  border-radius: 50%;
  font-family: #FDEAEB;
  font-weight: 700;
  margin-left: 0.9375rem;
  padding: 1rem 0.4375rem 0.625rem 1.75rem;
  position: relative;
}

.single-faq-list__item {
  background-color: #FDEAEB;
  border-radius: 5px;
  margin-bottom: 1.25rem;
  padding: 2.1875rem 1.25rem 1.25rem;
  scroll-margin-top: var(--header-offset);
}
.single-faq-list__item p {
  border-top: 1px solid #FF6767;
  margin-top: 1.25rem;
  padding-bottom: 0.625rem;
  padding-left: 4.6875rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  position: relative;
}
.single-faq-list__item p::after {
  background: url(../img/A.webp) center center/contain no-repeat;
  content: "";
  height: 3.125rem;
  left: 1.7%;
  position: absolute;
  top: 1.25rem;
  width: 3.125rem;
}

.single-faq-list__title {
  padding-bottom: 1.25rem;
  padding-left: 0.3125rem;
  padding-top: 2.5rem;
}

.single-faq-section__back {
  text-align: right;
}

.p-slider {
  width: 100%;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
.p-slider .swiper-slide-active .p-slider__img,
.p-slider .swiper-slide-duplicate-active .p-slider__img,
.p-slider .swiper-slide-prev .p-slider__img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
}
.p-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.p-slider .swiper-pagination-bullet {
  background: url(../img/) center center/contain no-repeat;
  background-color: transparent;
  border-radius: unset;
  height: 15px;
  opacity: 1;
  width: 15px;
}
.p-slider .swiper-pagination-bullet-active {
  background: url(../img/) center center/contain no-repeat;
  background-color: transparent;
  border-radius: unset;
  height: 15px;
  opacity: 1;
  width: 15px;
}

.p-slider__img {
  height: 100%;
}
.p-slider__img img {
  -o-object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.p-slider__slide {
  overflow: hidden;
}

.p-slider__btn {
  height: 60px;
  width: 60px;
}

.p-slider__pagination {
  bottom: 30px !important;
  left: auto;
  position: absolute;
  right: auto;
  width: auto;
}

.u-base1 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.u-base2 {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.u-flex {
  display: flex;
}

.u-font14 {
  font-size: 0.875rem;
}

.u-font16 {
  font-size: 1rem;
}

.u-font18 {
  font-size: 1.125rem;
}

.u-font20 {
  font-size: 1.25rem;
}

.u-font22 {
  font-size: 1.375rem;
}

.u-font24 {
  font-size: 1.5rem;
}

.u-font28 {
  font-size: 1.75rem;
}

.u-font32 {
  font-size: 2rem;
}

.u-font35 {
  font-size: 2.1875rem;
}

.u-font40 {
  font-size: 2.5rem;
}

.u-font45 {
  font-size: 2.8125rem;
}

.u-font60 {
  font-size: 3.75rem;
}

.u-font70 {
  font-size: 4.375rem;
}

/*ttl
-----------------------------------------*/
.sec__ttl-slash {
  font-weight: 700;
  text-align: center;
}
.sec__ttl-slash span {
  color: #90B752;
}
.sec__ttl-house {
  background: url(../img/top_ttl.webp) center center/contain no-repeat;
  padding: 4.6875rem 5rem 0.625rem;
}
.sec__ttl-mainbg {
  background-color: #FF6767;
  border-radius: 0.3125rem;
  color: #fff;
  padding: 0.625rem;
  text-align: center;
}
.sec__ttl-bg {
  background-color: #FF6767;
  color: #fff;
  display: inline-block;
  padding: 0.125rem 1.25rem;
}
.sec__ttl-line {
  background: url(../img/ttl-circleline.webp) center bottom/contain no-repeat;
  font-weight: 700;
  margin: 0 auto;
  padding: 0.3125rem 0.625rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec__ttl-line-long {
  background: url(../img/ttl-circleline-long.webp) center bottom/contain no-repeat;
  font-weight: 700;
  margin: 0 auto;
  padding: 0.3125rem 0.625rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec__ttl-circle_btmline {
  border-bottom: 1px solid #333;
  display: inline-block;
  margin-bottom: 1.875rem;
  padding: 0 1.875rem;
  position: relative;
}
.sec__ttl-circle_btmline::before {
  color: #FF6767;
  content: "●";
  left: 0;
  position: absolute;
  top: 0;
}

.underpage-ttl__box {
  z-index: 15;
}

.underpage-ttl {
  background-image: url("../img/under_top.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  height: 21.25rem;
  margin: 0 auto;
  max-width: 81.25rem;
}
.underpage-ttl .u-flex {
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 5rem;
  width: 85%;
}
.underpage-ttl .l-inner {
  padding-left: 0;
  padding-right: 0;
  padding-top: 3.75rem;
}
.underpage-ttl__illust {
  -o-object-fit: contain;
  aspect-ratio: 1288/708;
  height: 15rem;
  margin-top: 1.25rem;
  object-fit: contain;
  width: auto;
  z-index: 9;
}
.underpage-ttl__box {
  margin-top: 2.8125rem;
}
.underpage-ttl__box .u-font70 {
  color: #fff;
  font-weight: 900;
  text-shadow: 3px 3px 0 #E0403C, -3px -3px 0 #E0403C, -3px 3px 0 #E0403C, 3px -3px 0 #E0403C, 3px 0 0 #E0403C, -3px 0 0 #E0403C, 0 3px 0 #E0403C, 0 -3px 0 #E0403C; /* 右上方向に影 */
}
.underpage-ttl__box .u-font40 {
  color: #fff;
  line-height: 1.5625rem;
  text-shadow: 3px 3px 0 #E0403C, -3px -3px 0 #E0403C, -3px 3px 0 #E0403C, 3px -3px 0 #E0403C, 3px 0 0 #E0403C, -3px 0 0 #E0403C, 0 3px 0 #E0403C, 0 -3px 0 #E0403C; /* 右上方向に影 */
}
.underpage-ttl > p {
  margin: 0 auto;
  width: 80%;
}
.underpage-ttl > p a {
  color: #FF6767;
  text-decoration: underline;
}
.underpage-ttl > p a:visited {
  color: #FF6767;
}

/*font-family
-----------------------------------------*/
.main-font {
  font-family: #FF6767;
}

.second-font {
  font-family: "Jost", sans-serif;
}

/*color
-----------------------------------------*/
.accent-green {
  color: #90B752;
}
.accent-blue {
  color: #7CA6CF;
}
.accent-main {
  color: #FF6767;
}

.u-hover {
  transition: opacity 0.5s;
}

.u-hover:hover {
  opacity: 0.6;
  transition: opacity 0.5s;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

.u-ls05 {
  letter-spacing: -0.08em;
}

.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

.u-shadow {
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.16);
}

.u-sp {
  display: none;
}

.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}
.u-w300 {
  font-weight: 300;
}

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

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

.u-w700 {
  font-weight: 700;
}

.u-w900 {
  font-weight: 900;
}

@media (min-width: 768px) {
  .p-formBtn input:disabled:hover {
    cursor: not-allowed;
  }
  .p-formBtn input:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .c-btn:hover {
    color: #fff;
    transition: 0.3s all;
  }
  .c-hoverRun:hover {
    background-size: 100% 1px;
  }
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
  .c-underBar:hover:before {
    opacity: 0;
    transition: 0.5s all;
  }
  .p-pageTop__wrap:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .p-pageTop__wrap:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}

@media screen and (min-width: 769px) {
  .c-imgHover:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .c-imgHover:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
  .c-imgZoom:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
  }
  .p-card:hover > a > figure > img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
  }
  .p-pcNav__item:hover::before {
    opacity: 1;
    transition: 0.3s all;
    visibility: visible;
  }
}

@media screen and (min-width: 980px) {
  .p-header__contact:hover {
    background-color: #0B4FAA;
    transition: 0.3s background-color;
  }
  .p-pcNav__link:hover span:after {
    opacity: 1;
    transition: 0.3s all;
  }
  .c-spNav__link:hover:after {
    opacity: 1;
    transition: 0.3s all;
  }
}

@media (min-width: 1024px) {
  .c-hamburger-outer {
    display: none !important;
  }
}

@media screen and (min-width: 1281px) {
  .p-pcNav__contact:hover {
    background-color: #B79F77;
    transition: 0.3s all;
  }
  .p-header__link:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

@media screen and (max-width: 1350px) {
  .p-pcNav__item {
    padding: 0 1.25rem;
  }
  .p-pcNav__link {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}

@media screen and (max-width: 1200px) {
  .p-header__logo a img {
    width: 9.375rem;
  }
  .p-header__contact {
    width: 11.25rem;
  }
  .p-header__contactTxt {
    font-size: 0.75rem;
    padding-left: 1.25rem;
  }
  .p-header__contactTxt::before {
    height: 0.6875rem;
    width: 1.125rem;
  }
  .p-pcNav__item:last-child {
    padding-right: 1.25rem;
  }
}

@media screen and (max-width: 1100px) {
  .p-pcNav__item {
    padding: 0 0.625rem;
  }
}

@media (max-width: 768px) {
  .js-hamburger {
    align-items: center !important;
    background-color: #FF6767 !important; /* 可愛らしいメインカラー */
    border: 3px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important; /* 丸い形 */
    box-shadow: 0 4px 15px rgba(255, 103, 103, 0.3) !important;
    display: flex !important;
    height: 3rem !important;
    justify-content: center !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    width: 3rem !important;
    z-index: 999999 !important;
  }
  .js-hamburger .c-hamburger {
    display: block !important;
  }
  .js-hamburger .c-hamburger span {
    background-color: #fff !important;
    border-radius: 2px !important; /* 角を丸く */
    display: inline-block !important;
    height: 3px !important; /* 少し太くして可愛らしく */
    position: absolute !important;
    width: 1rem !important;
  }
  .js-hamburger .c-hamburger span:nth-child(1) {
    -webkit-transform: translateY(-4px) !important;
    transform: translateY(-4px) !important;
  }
  .js-hamburger .c-hamburger span:nth-child(3) {
    -webkit-transform: translateY(4px) !important;
    transform: translateY(4px) !important;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-wrap {
    width: 90vw;
  }
  .l-sec {
    padding: 3.125rem 0 3.125rem;
  }
  .l-sec-wrap {
    padding: 2.5rem 0.625rem;
  }
  .l-sec-wrap80vw {
    width: 95vw;
  }
  .l-sec01 {
    padding: 4.5rem 0 5.75rem;
  }
  .c-btn-white {
    padding: 0.625rem 2.8125rem 0.625rem 1.25rem;
  }
  .c-btn-white::after {
    -webkit-transform: translate(-50%, -50%);
    height: 1.0625rem;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1.0625rem;
  }
  .contact-btn {
    bottom: 10%;
    height: 7.5rem;
    right: 3%;
    top: auto;
    width: 7.5rem;
  }
  .c-column2 {
    gap: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .c-column2--gap60 {
    gap: 2.5rem;
  }
  .c-column2--gapSp20 {
    gap: 1.25rem;
  }
  .c-column3 {
    gap: 3.125rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .c-column3 .voice-list {
    align-items: center;
    gap: 0.625rem;
  }
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-headline1__main {
    font-size: 1.25rem;
    padding-left: 1.375rem;
  }
  .c-headline1__sub {
    margin-top: 1.625rem;
    padding-left: 1.375rem;
  }
  .benefit .sec__ttl-line-long {
    line-height: 1.875rem;
    margin-top: 1.875rem;
  }
  .benefit__list {
    padding-left: 1.25rem;
  }
  .benefit .p-list {
    padding-left: 1.25rem;
  }
  .custom-pagination {
    gap: 0.5rem;
  }
  .custom-pagination a, .custom-pagination span {
    font-size: 0.875rem;
    height: 2.5rem;
    width: 2.5rem;
  }
  .company .underpage-ttl__box .u-font70 {
    font-size: 1.25rem;
  }
  .company .sec__ttl-line-long {
    text-wrap: nowrap;
    margin-top: 1.875rem;
  }
  .company .c-table th {
    text-wrap: nowrap;
    padding: 0.625rem 0.625rem;
  }
  .p-contact__thanks .sec__ttl-line-long {
    margin-top: 1.875rem;
  }
  .p-contact .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .p-contact__inner {
    max-width: 550px;
    padding-inline: 15px;
    width: 100%;
  }
  .p-form__item {
    align-items: flex-start;
    flex-direction: column;
    margin-inline: auto;
  }
  .p-form__title {
    align-items: flex-start;
    align-items: center;
    flex-direction: row;
    padding: 1.25rem;
    text-align: center; /* SPでの読みやすさ優先 */
    width: 100%;
  }
  .p-form__input {
    justify-content: center;
    margin-top: 10px;
    padding: 0 10px 10px;
    width: 100%;
  }
  .p-acc__grid {
    grid-template-columns: 1fr;
  }
  .p-acc__grid .wpcf7-checkbox {
    grid-template-columns: 1fr;
  }
  .p-formInput input {
    height: 1.875rem;
    padding-left: 15px;
    width: 100%;
  }
  .p-formInput--sm input {
    width: 100%;
  }
  .p-formInput__post input {
    width: 100%;
  }
  .p-formInput__address input {
    width: 100%;
  }
  .p-formSelect select {
    align-items: center;
    height: 1.875rem;
    width: 5rem;
  }
  .p-formCalendar input {
    height: 50px;
    width: 100%;
  }
  .Android .p-formCalendar input {
    padding-left: 15px;
  }
  .p-formDate__flex {
    align-items: flex-start;
    gap: 20px;
  }
  .p-form__dataBlock {
    flex: 1;
  }
  .p-form__dataBlockLabel {
    display: none;
  }
  .p-form__dataBlockSelect {
    width: 100%;
  }
  .p-form__dataBlockDate {
    width: 100%;
  }
  .p-formNumber__flex {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .p-formNumber__blockLabel01 {
    width: 55px;
  }
  .p-formNumber__blockInput {
    flex: 1;
    margin-right: 20px;
  }
  .p-formTextarea textarea {
    min-height: 300px;
    padding-left: 15px;
  }
  .p-form__privacy {
    text-align: left;
  }
  .p-form__acceptance {
    text-align: left;
  }
  .p-formRadio .wpcf7-radio {
    gap: 10px;
  }
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 16px;
  }
  .p-form__submit {
    margin-top: 30px;
  }
  .p-nameGrid {
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
    grid-template-columns: auto 1fr auto 1fr;
    row-gap: 0.625rem;
    width: 100%;
  }
  .p-nameGrid__label {
    padding-right: 0rem;
    text-align: left;
  }
  .p-nameGrid__label:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .p-nameGrid__label:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .p-nameGrid__label:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
  }
  .p-nameGrid__label:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
  }
  .p-formInput .p-nameGrid__input:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .p-formInput .p-nameGrid__input:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
  }
  .p-formInput .p-nameGrid__input:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
  }
  .p-formInput .p-nameGrid__input:nth-child(8) {
    grid-column: 4;
    grid-row: 2;
  }
  .p-form__privacy {
    padding: 1.25rem;
  }
  .p-form__privacy .privacy__txt {
    padding: 1.875rem 0.9375rem;
  }
  .voice .sec__ttl-line {
    margin-top: 2.5rem;
    padding: 0 2.5rem 0.3125rem;
  }
  .voice .u-flex {
    gap: 0.625rem;
  }
  .voice-category-links {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
  }
  .voice-list {
    gap: 0.9375rem;
  }
  .voice-list.c-column3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .voice-category-links__item {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 7.5rem;
    width: calc((100% - 1.25rem) / 3);
  }
  .voice-category-links__item img {
    flex-shrink: 0;
  }
  .voice-category-links__item p {
    display: block;
    line-height: 1.4;
    margin-top: 0.5rem;
    text-align: center;
  }
  .voice-item {
    margin-bottom: 1.25rem;
  }
  .voice-item__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .voice-item__eyecatch {
    margin-bottom: 0.9375rem;
  }
  .voice-item__eyecatch img {
    border-radius: 5px;
    height: auto;
    width: 100%;
  }
  .voice-item__body {
    flex-grow: 1;
    padding: 0.9375rem;
  }
  .voice-item__title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .voice-item__content {
    line-height: 1.6;
  }
  .voice-item__content p {
    margin-bottom: 0.5rem;
  }
  .voice-item__content p:last-child {
    margin-bottom: 0;
  }
  .voice-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    padding-top: 1.875rem;
  }
  .voice-section__title {
    margin-bottom: 1.5625rem;
    padding: 0 0.9375rem 0 1.875rem;
  }
  .voice-section__back {
    margin-bottom: 1.25rem;
    margin-top: 1.875rem;
    padding: 0 0.9375rem;
  }
  .sp-break {
    display: inline;
  }
  .category-voice_dual_income::after {
    right: 0%;
    top: -15%;
  }
  .category-voice_families_with_small_children::after {
    right: 0%;
    top: -15%;
  }
  .category-voice_living_alone::after {
    right: 0%;
    top: -15%;
  }
  .category-voice_senior_generation::after {
    right: 0%;
    top: -15%;
  }
  .category-voice_office_worker::after {
    right: 0%;
    top: -20%;
  }
  .faq .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .features .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .features > h3:nth-child(2) {
    margin-top: 0rem !important;
  }
  .p-footer {
    background-image: url("../img/footer-bgsp.webp");
    padding: 1.875rem 0 0;
  }
  .p-footer h2 {
    letter-spacing: -0.125rem;
    line-height: 1.2;
    text-align: center;
  }
  .p-footer .u-font70 {
    font-size: 1.875rem;
  }
  .p-footer .u-font60 {
    font-size: 1.5625rem;
  }
  .p-footer .l-sec-wrap80vw img {
    width: 100%;
  }
  .p-footer .l-sec-wrap80vw > img {
    margin-top: 0.9375rem;
    width: 100%;
  }
  .p-footer .cta {
    margin: -1.875rem auto 2.5rem auto;
    width: 95%;
  }
  .p-footer .cta-link::before {
    height: 5rem;
    left: -1.25rem;
    top: -3.75rem;
    width: 5rem;
  }
  .p-footer-bottom {
    padding: 1.25rem 0.9375rem;
  }
  .p-footer-bottom ul {
    gap: 0.3125rem;
  }
  .p-footer-bottom ul li:nth-child(n+1) {
    font-size: 0.75rem;
    padding: 0.0625rem 0.3125rem 0.0625rem 0.0625rem;
  }
  .p-footer-bottom p {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .p-footer-bottom small {
    font-size: 0.6875rem;
  }
  .for-corporation .sec__ttl-line-long {
    margin: 0 auto;
    padding: 0 1.25rem 0.3125rem;
  }
  .for-corporation {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .for-corporation-maintenance {
    width: 100%;
  }
  .for-corporation-example {
    width: 100%;
  }
  .fv__box {
    background: url(../img/fv-spbg.png) center center/cover no-repeat;
    max-height: 31.25rem;
  }
  .fv__box-item {
    left: 3%;
    top: 10%;
    width: 80vw;
  }
  .fv__box p {
    font-size: 0.6875rem !important;
  }
  .fv__box-img {
    height: 47%;
    top: 38%;
    width: auto;
  }
  .fv__box__news {
    width: 100vw;
  }
  .fv__box__news .title {
    min-height: 4.375rem;
    padding: 1.25rem;
    white-space: nowrap;
  }
  .fv__box__news-content {
    width: 100vw;
  }
  .fv__box__news-content h3 {
    font-size: 0.875rem;
  }
  .fv__box__news-content p:last-child a {
    font-size: 0.875rem;
  }
  .pickup__box {
    flex-wrap: wrap;
    gap: 0.9375rem;
    margin: 0 auto;
    max-width: 500px;
  }
  .pickup__box-item {
    margin-bottom: 1.25rem;
    order: -1;
    text-align: center;
    width: 100%;
  }
  .pickup__box-item h2 {
    white-space: normal;
  }
  .pickup__box-banner {
    width: calc(50% - 0.46875rem);
  }
  .worries-box-top {
    display: block;
    height: auto;
    overflow: hidden;
    width: 100%;
  }
  .worries-box-btm {
    display: block;
    height: auto;
    margin: 0.625rem auto 0;
    overflow: hidden;
    width: 100%;
  }
  .worries-item {
    height: 16.875rem;
    margin: 0 auto;
    max-width: 320px;
    width: 95%;
  }
  .worries-item.worries-item--reverse .worries-item__img {
    -webkit-transform: translateX(50%);
    left: auto;
    right: 20%;
    transform: translateX(50%);
  }
  .worries-item.worries-item--reverse .worries-item__circle {
    -webkit-transform: translateX(-50%);
    left: 20%;
    right: auto;
    transform: translateX(-50%);
  }
  .worries-item--large {
    height: 270px;
    margin: 0 auto;
    max-width: 320px;
    width: 95%;
  }
  .worries-item--large.worries-item--reverse-large .worries-item__img--large {
    -webkit-transform: translateX(50%);
    left: auto;
    right: 20%;
    transform: translateX(50%);
  }
  .worries-item--large.worries-item--reverse-large .worries-item__circle--large {
    -webkit-transform: translateX(-50%);
    left: 20%;
    right: auto;
    transform: translateX(-50%);
  }
  .worries-item__img {
    -webkit-transform: translateX(-50%);
    height: 15.625rem;
    left: 20%;
    transform: translateX(-50%);
    width: 15.625rem;
  }
  .worries-item__img--large {
    -webkit-transform: translateX(-50%);
    height: 15.625rem;
    left: 20%;
    transform: translateX(-50%);
    width: 15.625rem;
  }
  .worries-item__circle {
    -webkit-transform: translateX(50%);
    height: 15.625rem;
    right: 20%;
    transform: translateX(50%);
    width: 15.625rem;
  }
  .worries-item__circle--large {
    -webkit-transform: translateX(50%);
    height: 15.625rem;
    right: 20%;
    transform: translateX(50%);
    width: 15.625rem;
  }
  .worries-text--full {
    padding: 1.25rem 1.5625rem;
  }
  .worries-text--sick {
    padding: 1.875rem 0.9375rem;
  }
  .worries-text--kitchen {
    padding: 1.5625rem 0.9375rem;
  }
  .suggestion {
    background-size: cover;
    margin-bottom: 0.625rem;
    margin-top: 0.625rem;
    padding-bottom: 1.5625rem;
    padding-top: 1.875rem;
  }
  .suggestion p {
    padding: 1.25rem 0.625rem;
  }
  .suggestion .u-font35 {
    line-height: 2.5rem;
  }
  .order {
    background: none;
  }
  .order .u-font40 {
    line-height: 1.5625rem;
  }
  .order-sp__box-top {
    display: block;
    left: 2%;
    top: 7%;
    width: 38%;
  }
  .order-sp__box-bottom {
    background-color: transparent;
    bottom: -2%;
    display: block;
    right: 0;
    width: 40%;
  }
  .order-item {
    margin: 0 auto 2.5rem;
    width: 100%;
  }
  .order-contents {
    margin: 1.25rem 0 1.875rem;
    margin-left: auto;
  }
  .order-contents p {
    font-size: 0.875rem;
  }
  .order-contents .main-border {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.625rem 0.9375rem;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .order-contents .middle-padding {
    line-height: 1.2;
    padding: 1.6875rem 0.625rem;
    padding: 1.0625rem 0;
    white-space: nowrap;
  }
  .order-contents--left .sec__ttl-mainbg {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 30%;
  }
  .order-contents--left .u-flex {
    flex-direction: column;
    gap: 0.3125rem;
  }
  .order-contents--left .u-flex p {
    padding: 0.3125rem;
    text-align: center;
  }
  .order-contents--left .u-flex .main-border {
    margin-bottom: 0.3125rem;
    margin-right: 0;
    order: -1;
  }
  .order-contents--left .u-flex p:not(.main-border) {
    order: 1;
  }
  .order-cta p {
    width: 95%;
  }
  .features .l-wrap {
    width: 100%;
  }
  .features__box {
    padding: 1.25rem 0.625rem 2.5rem;
  }
  .features__box__item {
    padding: 3.75rem 0.625rem 2.5rem;
  }
  .features__box > p .cta__btn {
    margin-left: auto;
    margin-right: auto;
    padding: 0.625rem 3.125rem 0.625rem 1.875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .features__box > p .cta__btn::after {
    height: 1.25rem;
    top: 33%;
    width: 1.25rem;
  }
  .voice .voice__sa::after {
    -webkit-transform: scaleX(1);
    left: 0;
    top: -25%;
    transform: scaleX(1);
  }
  .voice .voice__sa p:first-child {
    padding-left: 6.875rem;
  }
  .voice .voice__hm::after {
    -webkit-transform: scaleX(-1);
    right: 0.5%;
    top: -20%;
    transform: scaleX(-1);
  }
  .voice .voice__jo::after {
    -webkit-transform: scaleX(-1);
    left: 0;
    top: -20%;
    transform: scaleX(-1);
  }
  .voice .voice__jo p:first-child {
    padding-left: 6.875rem;
  }
  .p-header {
    height: 3rem;
    justify-content: inherit;
    padding: 0 0.625rem;
    width: 100%;
  }
  .p-header__inner {
    padding-left: 0;
  }
  .js-pc-nav {
    display: none;
  }
  .p-header__logo {
    -webkit-transform: none;
    height: auto; /* 高さを自動調整 */
    left: auto; /* absoluteを解除 */
    max-width: 10.625rem; /* ロゴの幅を調整 */
    position: static; /* absoluteを解除 */
    top: auto; /* absoluteを解除 */
    transform: none; /* absoluteを解除 */
    width: 60%;
  }
  .p-header__logo a img {
    width: 100%;
  }
  .p-header__contact {
    display: none;
  }
  .p-pcNav {
    display: none;
  }
  .c-hamburger-outer {
    align-items: center !important;
    background-color: #FF6767 !important; /* 可愛らしいメインカラー */
    border: 3px solid rgba(255, 255, 255, 0.8) !important; /* 白い境界線 */
    border-radius: 50% !important; /* 丸い形で可愛らしく */
    box-shadow: 0 4px 15px rgba(255, 103, 103, 0.3) !important; /* 柔らかいピンクの影 */
    cursor: pointer !important;
    display: flex !important; /* 強制的に表示 */
    height: 3rem !important;
    justify-content: center !important;
    margin: 0 !important;
    position: fixed !important; /* 絶対に固定位置 */
    right: 0.3125rem !important;
    top: 0 !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important; /* バウンス効果 */
    width: 3rem !important;
    z-index: 999999 !important; /* 最高優先度 */
    /* ホバー効果 */
  }
  .c-hamburger-outer:hover {
    -webkit-transform: scale(1.1) rotate(5deg) !important;
    background-color: rgb(255, 143.8, 143.8) !important; /* 明るいピンク */
    border-color: rgb(255, 255, 255) !important;
    box-shadow: 0 6px 20px rgba(255, 103, 103, 0.4) !important;
    transform: scale(1.1) rotate(5deg) !important; /* 少し回転して可愛く */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  }
  .c-spNav {
    -webkit-overflow-scrolling: touch;
    background: #fff;
    box-sizing: border-box; /* パディングを含めて100vhに収める */
    color: #232323;
    color: #fff;
    display: flex; /* Flexboxで配置 */
    flex-direction: column; /* 縦方向に配置 */
    height: 100vh;
    justify-content: flex-start; /* 上詰めで配置 */
    left: 0;
    opacity: 0;
    overflow-y: auto; /* 必要に応じてスクロール */
    padding: 2.8125rem 1.25rem 1.25rem 1.25rem; /* 上下左右のパディングを調整 */
    position: fixed;
    top: 0;
    transition: ease 0.5s;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
    width: 100%;
    z-index: 35;
  }
  .c-spNav__items {
    display: flex;
    flex-direction: column;
    height: auto; /* 自動で高さを調整 */
    margin-top: 0; /* マージンを削除してパディングで調整済み */
    width: 100%;
  }
  .c-spNav__link span {
    line-height: 1.2;
  }
  .c-spNav__banner {
    gap: 0.9375rem; /* モバイルでは少し狭く */
    margin: 1.25rem auto 0;
    width: 280px; /* モバイルでサイズ調整 */
  }
  .c-spNav__banner a img,
  .c-spNav__banner a .p-header__inner__box-img {
    height: 3.4375rem !important;
    width: 3.4375rem !important; /* モバイルでは少し小さく */
  }
  .c-spNav__logo {
    margin: 1.25rem auto 0;
    width: 180px;
  }
  .sp-br {
    display: block;
  }
  .instagram-media,
  .instagram-media.instagram-media-rendered {
    height: 35vh !important; /* タブレットでは少し大きめに */
    max-height: 35vh !important;
    max-width: 350px !important;
    min-height: 35vh !important;
  }
  .p-media__inner__box .instagram-media,
  .p-media__inner__box .instagram-media.instagram-media-rendered {
    margin: 0.5rem auto !important;
  }
  .p-media {
    padding: 1.875rem 1.25rem;
  }
  .p-media__inner {
    display: block;
    width: 95vw; /* SPで95vw */
  }
  .p-media__header {
    margin-bottom: 1.25rem;
  }
  .p-media__title {
    font-size: 1.75rem;
    white-space: nowrap;
  }
  .p-media__subtitle {
    font-size: 1rem;
  }
  .p-media__link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  .p-media__content {
    -webkit-overflow-scrolling: touch;
    gap: 0.625rem; /* モバイルでも横一列を保持 */
    min-height: 15.625rem; /* モバイルでの最小高さ */
    overflow-x: auto; /* 必要に応じて横スクロール */
    padding-bottom: 0.625rem; /* スクロール時の余白 */
  }
  .p-media__inner__box {
    flex: 0 0 auto; /* flex-shrinkを0にして幅を維持 */
    max-width: none;
    min-width: 12.5rem; /* モバイルでの最小幅 */
  }
  .p-media__caption {
    padding: 0.75rem;
  }
  .p-media__caption p {
    -webkit-line-clamp: 2; /* モバイルでは2行に制限 */
    font-size: 0.8125rem;
  }
  .p-media__inner {
    width: 100%;
  }
  .p-modal__block {
    width: 80%;
  }
  .p-modal__wrap {
    padding: 2.5rem 0 1.875rem;
  }
  .p-pageTop {
    bottom: 1.25rem;
    right: 1.5625rem;
  }
  .price-info .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .price-table {
    padding: 2.5rem 0rem 1.25rem 0rem;
  }
  .price-table .price-table__desktop {
    display: none;
  }
  .price-table .price-table__accordion {
    display: block;
    margin: 1.25rem 0;
    width: 100%;
  }
  .price-table .c-table {
    min-width: 50rem;
  }
  .price-table .c-table td:nth-child(2) {
    padding: 0.625rem;
  }
  .price-table th:first-child {
    width: 20%;
  }
  .price-table th:nth-child(2) {
    width: 40%;
  }
  .price-table th:nth-child(3) {
    width: 20%;
  }
  .price-table th:nth-child(4) {
    width: 20%;
  }
  .price-house .cta a, .price-guarantee .cta a {
    margin-left: auto;
    margin-right: auto;
    padding: 0.625rem 2.5rem 0.625rem 1.5625rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .price-house .cta a::after, .price-guarantee .cta a::after {
    height: 2.5vw;
    right: 3%;
    width: 2.5vw;
  }
  .price-house .u-font35, .price-guarantee .u-font35 {
    font-size: 3.5vw;
  }
  .price-house .u-flex {
    gap: 0.625rem;
  }
  .price-guarantee .u-font35 {
    font-size: 3.2vw;
  }
  .privacy .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .recruitment .c-table th {
    width: 30%;
  }
  .recruitment .c-table td {
    width: 70%;
  }
  .recruitment .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .sg-flow .sec__ttl-line {
    margin-top: 0;
  }
  .sg-flow .step__item img {
    height: 4.375rem;
    width: 4.375rem;
  }
  .sg-flow .l-sec-wrap, .sg-flow .l-inner {
    margin-top: 3.125rem;
  }
  .sg-flow div:nth-child(3) {
    padding-top: 0rem;
  }
  .sg-flow .txt__box {
    margin: 0;
    margin-left: 0.625rem;
    width: 95%;
  }
  .sg-flow .c-column2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg-flow .cta {
    padding: 0.625rem 2.5rem 0.625rem 1.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .sg-flow .cta a::after {
    height: 2.5vw;
    right: 1.3%;
    width: 2.5vw;
  }
  .sg-flow .u-font35 {
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
  .sg-flow .cta .u-font35 {
    font-size: 3.5vw;
  }
  .service-area .sec__ttl-line-long {
    margin-top: 2.5rem;
  }
  .faq-lead {
    margin-top: 2.5rem;
  }
  .single-faq-list__no {
    display: inline-block;
    margin-left: 0.4375rem;
    padding: 1.125rem 0.3125rem 0.125rem 1.4375rem;
  }
  .single-faq-list__item p {
    padding-left: 4.375rem;
    padding-right: 0rem;
  }
  .single-faq-list__item p::after {
    height: 2.8125rem;
    left: 0.625rem;
    top: 0.9375rem;
    width: 2.8125rem;
  }
  .p-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    text-align: center;
  }
  .u-font18 {
    font-size: 1rem;
  }
  .u-font20 {
    font-size: 1rem;
  }
  .u-font22 {
    font-size: 1.125rem;
  }
  .u-font24 {
    font-size: 1.125rem;
  }
  .u-font35 {
    font-size: 1.4375rem;
  }
  .u-font40 {
    font-size: 1.5625rem;
    letter-spacing: 0.01em;
  }
  .u-font45 {
    font-size: 1.875rem;
  }
  .u-font60 {
    font-size: 2.1875rem;
  }
  .u-font70 {
    font-size: 2.5rem;
  }
  .sec__ttl-house {
    padding: 3.125rem 1.25rem 0.9375rem;
  }
  .sec__ttl-line .u-font40 {
    font-size: 1.5625rem;
  }
  .underpage-ttl__box .u-font70 {
    font-size: 2.1875rem;
  }
  .underpage-ttl {
    background-position: 65% center;
    background-size: cover;
    box-sizing: border-box;
    height: 19.375rem;
  }
  .underpage-ttl .u-flex {
    flex-direction: column;
    margin-top: 0;
  }
  .underpage-ttl .l-inner {
    padding-top: 1.25rem;
  }
  .underpage-ttl__illust {
    height: 15rem;
    margin-left: auto;
    margin-top: -3.75rem;
    padding-left: 2.5rem;
  }
  .underpage-ttl > p {
    width: 90%;
  }
  .u-mt100 {
    margin-top: 1.875rem;
  }
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 0.625rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 1.25rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 1.875rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 2.5rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 3.125rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 3.75rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 4.375rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 5.625rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 6.875rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 7.5rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 8.125rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 8.75rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 9.375rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 10.625rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 11.25rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 11.875rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 12.5rem !important;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-textMdLeft {
    text-align: Left !important;
  }
  .u-textMdCenter {
    text-align: Center !important;
  }
  .u-textMdRight {
    text-align: Right !important;
  }
  .u-textMdJustify {
    text-align: Justify !important;
  }
}

@media screen and (max-width: 550px) {
  .underpage-ttl__illust {
    height: 13.75rem;
    margin-top: -2.5rem;
  }
}

@media screen and (max-width: 525px) {
  .fv__box-item {
    top: 15%;
    width: 85%;
  }
  .fv__box p {
    padding-bottom: 0;
  }
  .fv__box-img {
    height: 37%;
  }
  .order .u-font40 {
    font-size: 1.25rem;
  }
  .sm-br525 {
    display: block;
  }
  .sg-flow .c-column2 {
    gap: 0.3125rem;
    grid-template-columns: auto;
  }
  .sg-flow .cta a::after {
    height: 3.5vw;
    width: 3.5vw;
  }
}

@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
  .l-wrap {
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
    width: 96vw;
  }
  .p-footer {
    padding: 1.25rem 0 0;
  }
  .p-footer .l-sec-wrap80vw img {
    width: 100%;
  }
  .p-footer .l-sec-wrap80vw > img {
    margin-top: 0.625rem;
  }
  .p-footer .cta {
    margin: -1.25rem auto 1.875rem auto;
    width: 100%;
  }
  .p-footer .cta-link::before {
    height: 3.75rem;
    left: -0.9375rem;
    top: -2.5rem;
    width: 3.75rem;
  }
  .p-footer-bottom {
    padding: 0.9375rem 0.625rem;
  }
  .p-footer-bottom ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .p-footer-bottom ul li:nth-child(n+1) {
    border-bottom: 1px solid rgba(209, 209, 209, 0.8941176471);
    border-right: none;
    font-size: 0.875rem;
    margin: 0 auto;
    max-width: 15.625rem;
    padding: 0.3125rem 1.5625rem;
  }
  .p-footer-bottom ul li:nth-child(n+1):last-child {
    margin-bottom: 0.625rem;
  }
  .p-footer-bottom p {
    font-size: 0.6875rem;
    line-height: 1.2;
  }
  .p-footer-bottom small {
    font-size: 0.625rem;
  }
  .fv__box {
    max-height: 26.875rem;
  }
  .worries-box-top {
    margin: 1.25rem auto 0.625rem;
  }
  .worries-box-btm {
    margin: 0.625rem auto 1.25rem;
  }
  .worries-item {
    height: 13.125rem;
    max-width: 280px;
  }
  .worries-item--large {
    height: 210px;
    max-width: 280px;
  }
  .worries-item__img {
    height: 12.5rem;
    width: 12.5rem;
  }
  .worries-item__img--large {
    height: 12.5rem;
    width: 12.5rem;
  }
  .worries-item__circle {
    height: 12.5rem;
    width: 12.5rem;
  }
  .worries-item__circle--large {
    height: 12.5rem;
    width: 12.5rem;
  }
  .worries-text--full {
    font-size: 0.875rem;
    padding: 0.9375rem 1.25rem;
  }
  .worries-text--sick {
    font-size: 0.875rem;
    padding: 1.25rem 0.625rem;
  }
  .worries-text--kitchen {
    font-size: 0.875rem;
    padding: 1.25rem 0.625rem;
  }
  .instagram-media,
  .instagram-media.instagram-media-rendered {
    height: 40vh !important; /* スマートフォンでは更に大きめに */
    max-height: 40vh !important;
    max-width: 320px !important; /* スマートフォン幅に合わせて調整 */
    min-height: 40vh !important;
  }
  .price-table .accordion-title {
    font-size: 0.875rem;
  }
  .price-table .accordion-detail__row dt {
    flex: 0 0 35%;
    font-size: 0.8125rem;
  }
  .price-table .accordion-detail__row dd {
    font-size: 0.8125rem;
    padding-left: 0.625rem;
  }
  .price-table .accordion-detail__row dd.price {
    font-size: 1rem;
  }
  .price-table .accordion-detail__row dd .note {
    font-size: 0.6875rem;
  }
  .price-house .cta a::after, .price-guarantee .cta a::after {
    right: 5%;
  }
  .sg-flow .cta {
    padding: 0.3125rem 1.875rem 0.3125rem 0.625rem;
  }
  .u-font24 {
    font-size: 1rem;
  }
  .u-font35 {
    font-size: 1.1875rem;
  }
  .u-font40 {
    font-size: 1.25rem;
  }
  .u-font60 {
    font-size: 1.875rem;
  }
  .u-font70 {
    font-size: 2rem;
  }
  .underpage-ttl {
    height: 17.5rem;
  }
  .underpage-ttl__illust {
    height: 12.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */