/* =========================
Service Nav
========================= */
.p-service-nav {
    padding: 40px 0 0;
    background: #fdfbf7;
}

.p-service-nav__list {
    width: min(100%, 1096px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.p-service-nav__button {
    width: 226px;
    height: 57px;
    border: 1px solid #2f5d50;
    border-radius: 50px;
    background: #ffffff;
    color: #2f5d50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.p-service-nav__button.is-active {
    background: #f3f7ee;
}

.p-service-nav__button:hover {
    background: #f3f7ee;
    opacity: 0.9;
    transform: translateY(-2px);
}

/* SP */
@media screen and (max-width: 767px) {
    .p-service-nav {
        padding: 32px 0 0;
    }

    .p-service-nav__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .p-service-nav__button {
        width: 100%;
        height: 50px;
        font-size: 14px;
    }
}

/* =========================
  Service Price
========================= */
.p-service-price {
    padding: 64px 0 80px;
    background: #fdfbf7;
}

.p-service-price__category-title {
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}

.p-service-price__item {
    margin-top: 46px;
}

.p-service-price__item-title {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
}

.p-service-price__content {
    margin-top: 46px;
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.p-service-price__lead {
    width: 370px;
    flex-shrink: 0;
}

.p-service-price__image {
    width: 370px;
    overflow: hidden;
    border-radius: 12px;
}

.p-service-price__image img {
    width: 100%;
    height: 208px;
    object-fit: cover;
}

.p-service-price__text {
    margin-top: 46px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.p-service-price__table-wrap {
    flex: 1;
    overflow-x: auto;
}

.p-service-price__table {
    width: max-content;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: "Noto Sans JP", sans-serif;
}

.p-service-price__table th,
.p-service-price__table td {
    min-width: 120px;
    height: 69px;
    border: 1px solid #2f5d50;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

/* 画像の高さ208pxに合わせたい2行テーブル用 */
.p-service-price__table--2rows th,
.p-service-price__table--2rows td {
    height: 104px;
}

.p-service-price__table thead th,
.p-service-price__table tbody th {
    background: #2f5d50;
    color: #ffffff;
}

/* 緑の見出し部分にも区切り線を見せる */
.p-service-price__table thead th {
    border-color: rgba(255, 255, 255, 0.45);
}

.p-service-price__table thead th:first-child {
    border-left-color: #2f5d50;
}

.p-service-price__table thead th:last-child {
    border-right-color: #2f5d50;
}

/* 緑の行見出しセルにも横線を入れる */
.p-service-price__table tbody tr:not(:last-child) th {
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.45);
}

.p-service-price__table tbody td {
    background: #ffffff;
    color: #2f2f2f;
}

.p-service-price__table tbody th {
    border-color: rgba(255, 255, 255, 0.45);
    border-left-color: #2f5d50;
    border-bottom-color: #2f5d50;
}

.p-service-price__group+.p-service-price__group {
    margin-top: 80px;
}

.p-service-price__category-title+.p-service-price__item {
    margin-top: 46px;
}

.p-service-price__item+.p-service-price__item {
    margin-top: 72px;
}

.p-service-price__table-note {
    margin-top: 24px;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-service-price {
        padding: 48px 0 64px;
    }

    .p-service-price__category-title {
        font-size: 26px;
    }

    .p-service-price__item {
        margin-top: 32px;
    }

    .p-service-price__item-title {
        font-size: 22px;
    }

    .p-service-price__content {
        margin-top: 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .p-service-price__lead {
        width: 100%;
    }

    .p-service-price__image {
        width: 100%;
    }

    .p-service-price__image img {
        height: auto;
        aspect-ratio: 370 / 208;
    }

    .p-service-price__text {
        margin-top: 20px;
        font-size: 15px;
    }

    .p-service-price__text br {
        display: none;
    }

    .p-service-price__table-wrap {
        width: 100%;
        padding-bottom: 8px;
    }

    .p-service-price__table {
        min-width: 720px;
    }

    .p-service-price__table th,
    .p-service-price__table td {
        font-size: 14px;
    }
}

/* =========================
Service Payment
========================= */
.p-service-payment {
    padding: 64px 0;
    background: #fdfbf7;
}

.p-service-payment__box {
    min-height: 183px;
    padding: 41px 41px 28px 27px;
    border: 1px solid #2f5d50;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.p-service-payment__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.p-service-payment__icon-circle {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #2f5d50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-service-payment__icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.p-service-payment__title {
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
}

.p-service-payment__divider {
    width: 0.5px;
    height: 101px;
    margin-left: 24px;
    margin-right: 24px;
    background: #2f5d50;
    flex-shrink: 0;
}

.p-service-payment__text {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    flex: 1;
}

.p-service-payment__cards {
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.p-service-payment__card img {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-service-payment {
        padding: 48px 0;
    }

    .p-service-payment__box {
        padding: 28px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .p-service-payment__heading {
        gap: 12px;
    }

    .p-service-payment__icon-circle {
        width: 48px;
        height: 48px;
    }

    .p-service-payment__icon {
        width: 34px;
        height: 34px;
    }

    .p-service-payment__title {
        font-size: 20px;
    }

    .p-service-payment__divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .p-service-payment__text {
        font-size: 14px;
    }

    .p-service-payment__text br {
        display: none;
    }

    .p-service-payment__cards {
        width: 100%;
        margin-left: 0;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .p-service-payment__card img {
        width: 70px;
        height: auto;
    }
}

/* =========================
Works
========================= */
.p-works {
    padding: 64px 0 80px;
    background: #fdfbf7;
}

.p-works__item+.p-works__item {
    margin-top: 72px;
}

.p-works__title {
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}

.p-works__tag {
    width: fit-content;
    min-width: 132px;
    height: 32px;
    margin-top: 30px;
    padding: 0 20px;
    border-radius: 50px;
    background: #c95b46;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.p-works__lead {
    margin-top: 16px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.p-works__images {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.p-works__image {
    position: relative;
    width: 350px;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
}

.p-works__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-works__image-label {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 28px;
    border-radius: 0 12px 0 12px;
    background: rgba(235, 235, 235, 0.9);
    color: #2f2f2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.p-works__arrow {
    width: 52px;
    height: 50px;
    flex-shrink: 0;
}

.p-works__arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.p-works__result {
    margin-top: 32px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-align: center;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-works {
        padding: 48px 0 64px;
    }

    .p-works__item+.p-works__item {
        margin-top: 56px;
    }

    .p-works__title {
        font-size: 24px;
    }

    .p-works__tag {
        margin-top: 20px;
        min-width: 120px;
        height: 30px;
        font-size: 13px;
    }

    .p-works__lead {
        font-size: 15px;
    }

    .p-works__lead br {
        display: none;
    }

    .p-works__images {
        flex-direction: column;
        gap: 18px;
        margin-top: 28px;
    }

    .p-works__image {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 350 / 240;
    }

    .p-works__arrow {
        width: 42px;
        height: 40px;
        transform: rotate(90deg);
    }

    .p-works__result {
        margin-top: 24px;
        font-size: 15px;
        text-align: left;
    }
}

/* =========================
Flow
========================= */
.p-flow {
    padding: 64px 0 80px;
    background: #fdfbf7;
}

.p-flow__list {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.p-flow__item {
    width: min(100%, 1180px);
    min-height: 292px;
    margin-inline: auto;
    border-radius: 12px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 563px 1fr;
    align-items: center;
    gap: 64px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
}

.p-flow__item--reverse {
    grid-template-columns: 1fr 563px;
}

.p-flow__item--reverse .p-flow__image {
    order: 2;
}

.p-flow__item--reverse .p-flow__body {
    order: 1;
    padding-left: 64px;
    padding-right: 0;
}

.p-flow__image {
    width: 563px;
    height: 292px;
}

.p-flow__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-flow__body {
    padding-right: 48px;
}

.p-flow__step {
    width: 78px;
    height: 32px;
    background: #2f5d50;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.p-flow__title {
    margin-top: 20px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
}

.p-flow__text {
    margin-top: 30px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-flow {
        padding: 48px 0 64px;
    }

    .p-flow__list {
        gap: 32px;
    }

    .p-flow__item,
    .p-flow__item--reverse {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .p-flow__item--reverse .p-flow__image,
    .p-flow__item--reverse .p-flow__body {
        order: initial;
    }

    .p-flow__image {
        width: 100%;
        height: auto;
        aspect-ratio: 563 / 292;
    }

    .p-flow__body,
    .p-flow__item--reverse .p-flow__body {
        padding: 28px 22px 32px;
    }

    .p-flow__step {
        width: 70px;
        height: 28px;
        font-size: 13px;
    }

    .p-flow__title {
        margin-top: 16px;
        font-size: 21px;
    }

    .p-flow__text {
        margin-top: 20px;
        font-size: 15px;
    }

    .p-flow__text br {
        display: none;
    }
}

/* =========================
Flow Note
========================= */
.p-flow-note {
    width: min(100%, 969px);
    min-height: 283px;
    margin: 64px auto 0;
    padding: 48px 40px;
    border: 1px solid #2f5d50;
    border-radius: 12px;
    background: #f3f7ee;
}

.p-flow-note__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
}

.p-flow-note__title {
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.p-flow-note__deco {
    width: 25px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.p-flow-note__deco--right {
    transform: scaleX(-1);
}

.p-flow-note__list {
    width: fit-content;
    margin: 46px auto 0;
}

.p-flow-note__item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.p-flow-note__item+.p-flow-note__item {
    margin-top: 20px;
}

.p-flow-note__check {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* CTAまでの間隔 */
.p-flow {
    padding-bottom: 64px;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-flow-note {
        min-height: auto;
        margin-top: 48px;
        padding: 32px 20px;
    }

    .p-flow-note__heading {
        gap: 12px;
    }

    .p-flow-note__title {
        font-size: 22px;
    }

    .p-flow-note__deco {
        width: 20px;
        height: 32px;
    }

    .p-flow-note__list {
        width: 100%;
        margin-top: 28px;
    }

    .p-flow-note__item {
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
    }

    .p-flow-note__item+.p-flow-note__item {
        margin-top: 16px;
    }

    .p-flow {
        padding-bottom: 48px;
    }
}

/* =========================
FAQ
========================= */
.p-faq {
    padding: 64px 0 80px;
    background: #fdfbf7;
}

.p-faq__group {
    width: min(100%, 960px);
    margin-inline: auto;
}

.p-faq__group+.p-faq__group {
    margin-top: 64px;
}

.p-faq__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.p-faq__heading-icon {
    width: 27px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.p-faq__heading-title {
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
}

.p-faq__heading-line {
    height: 1px;
    background: #2f5d50;
    flex: 1;
}

.p-faq__list {
    margin-top: 64px;
}

.p-faq__item {
    border: 1px solid #b6d38f;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.p-faq__item+.p-faq__item {
    margin-top: 30px;
}

.p-faq__question {
    min-height: 85px;
    padding: 10px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    list-style: none;
}

.p-faq__question::-webkit-details-marker {
    display: none;
}

.p-faq__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.p-faq__icon--q {
    background: #eef6e8;
    color: #5f8f52;
}

.p-faq__icon--a {
    background: #fbe5da;
    color: #c95b46;
}

.p-faq__question-text {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    flex: 1;
}

.p-faq__toggle {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: #2f5d50;
    transform: translate(-50%, -50%);
}

.p-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__item[open] .p-faq__toggle::after {
    opacity: 0;
}

.p-faq__answer {
    min-height: 85px;
    padding: 10px 26px;
    border-top: 1px solid #b6d38f;
    display: flex;
    align-items: center;
    gap: 20px;
}

.p-faq__answer-text {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-faq {
        padding: 48px 0 64px;
    }

    .p-faq__group+.p-faq__group {
        margin-top: 48px;
    }

    .p-faq__heading {
        gap: 10px;
    }

    .p-faq__heading-icon {
        width: 22px;
        height: 23px;
    }

    .p-faq__heading-title {
        font-size: 22px;
    }

    .p-faq__list {
        margin-top: 36px;
    }

    .p-faq__item+.p-faq__item {
        margin-top: 20px;
    }

    .p-faq__question,
    .p-faq__answer {
        min-height: auto;
        padding: 18px 16px;
        gap: 12px;
    }

    .p-faq__icon {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .p-faq__question-text {
        font-size: 16px;
    }

    .p-faq__answer-text {
        font-size: 14px;
    }

    .p-faq__toggle {
        width: 28px;
        height: 28px;
    }

    .p-faq__toggle::before,
    .p-faq__toggle::after {
        width: 22px;
        height: 2px;
    }
}

/* =========================
  Page Company
========================= */

.p-company-page {
    background-color: #FDFBF7;
}

/* =========================
  Company Message
========================= */
.p-company-message {
    margin-bottom: 64px;
}

.p-company-message__inner {
    display: flex;
    align-items: flex-start;
    gap: 72px;
}

.p-company-message__images {
    position: relative;
    width: 553px;
    min-width: 553px;
    padding-bottom: 120px;
}

.p-company-message__image-main {
    width: 421px;
    height: 527px;
    border-radius: 12px;
    overflow: hidden;
}

.p-company-message__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-company-message__image-sub {
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 244px;
    height: 305px;
    border: 11px solid #ffffff;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.p-company-message__image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-company-message__body {
    flex: 1;
    padding-top: 8px;
}

.p-company-message__title {
    margin-bottom: 46px;
    color: #2f5d50;
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
}

.p-company-message__text {
    margin-bottom: 46px;
}

.p-company-message__text p {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
}

.p-company-message__name {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

/* tablet */
@media screen and (max-width: 1024px) {
    .p-company-message__inner {
        gap: 48px;
    }

    .p-company-message__images {
        width: 360px;
        min-width: 360px;
        padding-bottom: 100px;
    }

    .p-company-message__image-main {
        width: 360px;
        height: 450px;
    }

    .p-company-message__image-sub {
        width: 210px;
        height: 262px;
        right: -70px;
        border-width: 8px;
    }

    .p-company-message__title {
        font-size: 30px;
    }

    .p-company-message__text p,
    .p-company-message__name {
        font-size: 16px;
    }
}

/* sp */
@media screen and (max-width: 767px) {
    .p-company-message {
        margin-bottom: 48px;
    }

    .p-company-message__inner {
        display: block;
    }

    .p-company-message__images {
        width: 100%;
        min-width: auto;
        max-width: 320px;
        margin: 0 auto 40px;
        padding-bottom: 76px;
    }

    .p-company-message__image-main {
        width: 100%;
        height: auto;
        aspect-ratio: 421 / 527;
    }

    .p-company-message__image-sub {
        width: 170px;
        height: auto;
        aspect-ratio: 244 / 305;
        right: -12px;
        bottom: 0;
        border-width: 8px;
    }

    .p-company-message__body {
        padding-top: 0;
    }

    .p-company-message__title {
        margin-bottom: 28px;
        font-size: 28px;
        line-height: 1.5;
    }

    .p-company-message__text {
        margin-bottom: 28px;
    }

    .p-company-message__text p,
    .p-company-message__name {
        font-size: 16px;
        line-height: 1.9;
    }
}

/* =========================
Company Overview
========================= */
.p-company-overview {
    margin-bottom: 64px;
}

.p-company-overview__title {
    margin-bottom: 46px;
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.p-company-overview__box {
    width: min(100%, 809px);
    margin-inline: auto;
    padding: 34px 32px 40px;
    border: 1px solid #b6d38f;
    border-radius: 12px;
    background: #ffffff;
}

.p-company-overview__list {
    margin: 0;
}

.p-company-overview__row {
    min-height: 79px;
    padding: 0 0 16px;
    border-bottom: 1px solid #b6d38f;
    display: flex;
    align-items: center;
    gap: 87px;
}

.p-company-overview__row+.p-company-overview__row {
    padding-top: 16px;
}

.p-company-overview__term {
    width: 100px;
    flex-shrink: 0;
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.p-company-overview__desc {
    margin: 0;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.p-company-overview__map {
    width: 477px;
    height: 364px;
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 12px;
}

.p-company-overview__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-company-overview {
        margin-bottom: 48px;
    }

    .p-company-overview__title {
        margin-bottom: 28px;
        font-size: 26px;
    }

    .p-company-overview__box {
        padding: 28px 20px 32px;
    }

    .p-company-overview__row {
        min-height: auto;
        padding-bottom: 14px;
        display: block;
    }

    .p-company-overview__row+.p-company-overview__row {
        padding-top: 14px;
    }

    .p-company-overview__term {
        width: auto;
        margin-bottom: 6px;
        font-size: 15px;
    }

    .p-company-overview__desc {
        font-size: 15px;
    }

    .p-company-overview__map {
        width: 100%;
        height: auto;
        aspect-ratio: 477 / 364;
        margin-top: 24px;
    }
}

/* =========================
Company Area
========================= */
.p-company-area {
    margin-bottom: 64px;
}

.p-company-area__title {
    margin-bottom: 46px;
    color: #2f5d50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.p-company-area__content {
    width: min(100%, 714px);
    margin-inline: auto;
}

.p-company-area__text {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.p-company-area__map {
    position: relative;
    width: 714px;
    margin-top: 46px;
    border-radius: 12px;
    overflow: hidden;
}

.p-company-area__map img {
    width: 100%;
    height: 441px;
    object-fit: cover;
}

.p-company-area__circle {
    position: absolute;
    top: 96px;
    left: 56px;
    width: 196px;
    height: 196px;
    border: 1px solid #2f5d50;
    border-radius: 50%;
    color: #2f5d50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
}

/* SP */
@media screen and (max-width: 767px) {
    .p-company-area {
        margin-bottom: 48px;
    }

    .p-company-area__title {
        margin-bottom: 28px;
        font-size: 26px;
    }

    .p-company-area__content {
        width: 100%;
    }

    .p-company-area__text {
        font-size: 15px;
    }

    .p-company-area__text br {
        display: none;
    }

    .p-company-area__map {
        width: 100%;
        margin-top: 28px;
    }

    .p-company-area__map img {
        height: auto;
        aspect-ratio: 714 / 441;
    }

    .p-company-area__circle {
        top: 12%;
        left: 6%;
        width: 30vw;
        max-width: 150px;
        min-width: 108px;
        height: auto;
        aspect-ratio: 1 / 1;
        font-size: clamp(11px, 3vw, 14px);
        line-height: 1.6;
    }
}

/* =========================
Contact Page Buttons
========================= */
.p-contact-buttons {
    padding: 64px 0;
    background: #f3f7ee;
}

.p-contact-buttons__list {
  justify-content: center;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-contact-buttons {
        padding: 48px 0;
    }
}

/* =========================
Privacy Policy
========================= */
.p-privacy-page {
    background: #fdfbf7;
}

.p-privacy {
    padding: 64px 0 80px;
    background: #fdfbf7;
}

.p-privacy__title {
    margin-bottom: 56px;
    color: #2f5d50;
    font-family: "Noto Serif JP", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.p-privacy__content {
    width: min(100%, 960px);
    margin-inline: auto;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.p-privacy__section {
    margin-top: 36px;
}

.p-privacy__section h3 {
    margin-bottom: 14px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.p-privacy__content p+p {
    margin-top: 12px;
}

.p-privacy__content ul,
.p-privacy__content ol {
    margin-top: 8px;
    padding-left: 1.5em;
}

.p-privacy__content li {
    margin-top: 4px;
}

.p-privacy__content ul {
    list-style: disc;
}

.p-privacy__content ol {
    list-style: decimal;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-privacy {
        padding: 48px 0 64px;
    }

    .p-privacy__title {
        margin-bottom: 36px;
        font-size: 30px;
    }

    .p-privacy__content {
        font-size: 14px;
        line-height: 1.9;
    }

    .p-privacy__section {
        margin-top: 28px;
    }

    .p-privacy__section h3 {
        font-size: 16px;
    }
}

/* =========================
Legal Notice
========================= */
.p-law-page {
    background: #fdfbf7;
}

.p-law {
    padding: 64px 0 80px;
    background: #fdfbf7;
}

.p-law__title {
    margin-bottom: 56px;
    color: #2f5d50;
    font-family: "Noto Serif JP", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.p-law__content {
    width: min(100%, 960px);
    margin-inline: auto;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.p-law__section {
    margin-top: 36px;
}

.p-law__section:first-child {
    margin-top: 0;
}

.p-law__section h3 {
    margin-bottom: 14px;
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.p-law__content p+p {
    margin-top: 12px;
}

.p-law__content ul,
.p-law__content ol {
    margin-top: 8px;
    padding-left: 1.5em;
}

.p-law__content li {
    margin-top: 4px;
}

.p-law__content ul {
    list-style: disc;
}

.p-law__content ol {
    list-style: decimal;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-law {
        padding: 48px 0 64px;
    }

    .p-law__title {
        margin-bottom: 36px;
        font-size: 30px;
    }

    .p-law__content {
        font-size: 14px;
        line-height: 1.9;
    }

    .p-law__section {
        margin-top: 28px;
    }

    .p-law__section h3 {
        font-size: 16px;
    }
}

/* =========================
Thanks
========================= */
.p-thanks-page {
    background: #fdfbf7;
}

.p-thanks {
    padding: 64px 0 80px;
}

.p-thanks__title {
    margin-bottom: 46px;
    color: #2f5d50;
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.p-thanks__box {
    width: min(100%, 969px);
    margin-inline: auto;
    padding: 44px 42px 50px;
    border: 1px solid #b6d38f;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
}

.p-thanks__message {
    padding-bottom: 36px;
    border-bottom: 1px solid #b6d38f;
}

.p-thanks__message p {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.p-thanks__message p+p {
    margin-top: 12px;
}

.p-thanks__flow {
    margin-top: 32px;
}

.p-thanks__flow-title {
    color: #2f5d50;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.p-thanks__flow-title img {
    width: 27px;
    height: 28px;
    object-fit: contain;
}

.p-thanks__flow-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-thanks__flow-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.p-thanks__flow-item span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2f5d50;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.p-thanks__flow-item p {
    color: #2f2f2f;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.p-thanks__buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.p-thanks__button {
    width: 260px;
    height: 60px;
    border: 1px solid #2f5d50;
    border-radius: 50px;
    background: #ffffff;
    color: #2f5d50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-thanks__button:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.p-thanks__button img {
    width: 28px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* SP */
@media screen and (max-width: 767px) {
    .p-thanks {
        padding: 48px 0 64px;
    }

    .p-thanks__title {
        margin-bottom: 32px;
        font-size: 26px;
    }

    .p-thanks__box {
        padding: 32px 20px 36px;
    }

    .p-thanks__message p,
    .p-thanks__flow-item p {
        font-size: 14px;
    }

    .p-thanks__message br {
        display: none;
    }

    .p-thanks__flow-title {
        font-size: 22px;
    }

    .p-thanks__buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .p-thanks__button {
        width: 100%;
        max-width: 290px;
    }
}