@charset "UTF-8";

/*============================================================================================================
  base
  ============================================================================================================*/
html {
    font-size: 62.5%;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
th,
td,
section,
article,
header,
footer,
main,
nav,
span,
a,
*::before,
*::after {
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
    img {
        width: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
    margin: 0;
    word-wrap: break-word;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: top;
}

ul,
ol,
dl {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

/*------------------------------------------
    root
------------------------------------------*/
@media screen and (min-width: 768px) {
    :root {
        --body-min-width: 1000px;
    }
}
:root {
    --inner-padding: 20px;
    --inner-width: 1280px;
}
@media screen and (min-width: 768px) {
    :root {
        --header-height: calc(var(--header-top-height) + var(--nav-height));
        --header-top-height: 75px;
        --nav-height: 65px;
        --fixedCv-width: 84px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
    :root {
        --fixedCv-width: 60px;
    }
}
@media screen and (max-width: 767px) {
    :root {
        --header-height: 80px;
        --fixedCv-height: 80px;
    }
}
:root {
    --font-size-base: 18px;
    --line-height-base: 2;
    --line-height-head: 1.4;
    --letter-spacing: 0.05em;
    --font-family-base:
        "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3",
        "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック",
        "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    --font-family-en: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
    :root {
        --font-size-base: 14px;
    }
}
:root {
    --color-txt: #3f3625;
    --color-yellow: #e6b322;
    --color-orange: #ea8c06;
    --color-orange-dark: #ed6d03;
    --color-moss: #b0bc80;
    --color-brown: #9d875c;
    --border-radius: 20px;
    --border-bottom: 3px dotted #c6c3be;
}
@media screen and (max-width: 767px) {
    :root {
        --border-radius: 10px;
        --border-bottom: 2px dotted #c6c3be;
    }
}

/*------------------------------------------
    utility
------------------------------------------*/
.u-hidden {
    display: none;
}
@media screen and (min-width: 768px) {
    .u-sp {
        display: none !important;
    }
}
@media screen and (min-width: 1101px) {
    .u-tab {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .u-pc {
        display: none !important;
    }
}
@media screen and (min-width: 375px) {
    .u-sp-small {
        display: none !important;
    }
}
/*------------------------------------------
    font
------------------------------------------*/
body {
    color: var(--color-txt);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-family: var(--font-family-base);
    -webkit-text-size-adjust: 100%;
}

* {
    letter-spacing: var(--letter-spacing);
}

a {
    letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-weight: normal; */
    line-height: var(--line-height-head);
    letter-spacing: 0.08em;
}

.f-en {
    font-family: var(--font-family-en);
    font-weight: 700;
    letter-spacing: 0;
}

/*------------------------------------------
    frame / smooth scroll
------------------------------------------*/
html {
    scroll-behavior: smooth;
}
[id] {
    scroll-margin-top: var(--header-height);
}

@media screen and (min-width: 768px) {
    body {
        min-width: var(--body-min-width);
    }
}

/*------------------------------------------
    hover
------------------------------------------*/
@media (hover: hover) {
    a {
        transition: all 0.3s;
    }
    a:hover {
        opacity: 0.7;
    }
}
/*============================================================================================================
    component
============================================================================================================*/
/*------------------------------------------
    inner
------------------------------------------*/
/* .c-inner01 {
    width: 100%;
    max-width: calc(var(--inner-width) + var(--inner-padding) * 2);
    margin-inline: auto;
    padding-inline: var(--inner-padding);
} */

/*------------------------------------------
  inner
  ------------------------------------------*/
.c-inner01,
.c-inner02,
.c-inner03 {
    width: 100%;
    margin: auto;
    padding-left: 8rem;
    padding-right: 8rem;
}
.c-inner01 {
    /* max-width: 144rem; */
    width: 100%;
    max-width: calc(var(--inner-width) + var(--inner-padding) * 2);
    margin-inline: auto;
    padding-inline: var(--inner-padding);
}
.c-inner02 {
    max-width: 116rem;
}
.c-inner03 {
    max-width: 96rem;
}

@media screen and (max-width: 767px) {
    .c-inner01,
    .c-inner02,
    .c-inner03 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/*------------------------------------------
    tit
------------------------------------------*/
/*  .c-tit01
------------------------------------------*/
.c-tit01 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}
.c-tit01__en {
    color: var(--color-yellow);
    font-size: 20px;
    font-family: var(--font-family-en);
    letter-spacing: 0;
    line-height: 1.4;
}
.c-tit01__sub {
    padding: 3px 18px;
    border: 2px solid;
    background: #fff;
    border-radius: 100px;
    font-weight: 700;
    color: var(--color-brown);
    font-size: 0.5em;
    letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
    .c-tit01.is-vertical-pc {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0;
        writing-mode: vertical-rl;
    }
}
@media screen and (max-width: 767px) {
    .c-tit01 {
        gap: 5px;
        font-size: 32px;
    }
    .c-tit01__en {
        font-size: 13px;
    }
    .c-tit01__sub {
        padding: 2px 12px;
        font-size: 0.47em;
    }
}

/*------------------------------------------
title
------------------------------------------*/

.page__title {
    padding: 8rem 5rem;
    text-align: center;
}
.page__title .page__title__h1 {
    font-size: 3.8rem;
    font-weight: bold;
}
.page__title .page__title__en {
    color: #e6b322;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .page__title {
        padding: 2rem 0;
    }
    .page__title .page__title__h1 {
        font-size: 2.8rem;
    }
}

.c-tit01 {
    margin: 5rem auto;
    text-align: center;
    font-size: 3.8rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .c-tit01 {
        margin: 3rem auto;
        font-size: 2.8rem;
    }
}

/*------------------------------------------
  page-main-visual
  ------------------------------------------*/
.page__main-visual {
    /* position: relative;
    min-height: 600px;
    height: 80vh;
    overflow: hidden; */
}

.page__main-visual__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page__main-visual__title-box__inner {
    max-width: 1280px;
    margin: auto;
}

/*------------------------------------------
    btn
------------------------------------------*/
/*  .c-btn01
------------------------------------------*/
.c-btn01 {
    width: fit-content;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.08em;
}
.c-btn01 a {
    min-height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    border-radius: inherit;
    background: var(--color-orange);
}
.c-btn01 a::after {
    content: "";
    display: block;
    width: 1em;
    aspect-ratio: 1/1;
    -webkit-mask-image: url(../img/common/ico_arrow01.svg);
    mask-image: url(../img/common/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: currentColor;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-btn01 {
        font-size: 14px;
    }
    .c-btn01 a {
        min-height: 46px;
        padding: 11px 20px;
    }
    .c-btn01 a::after {
        width: 1.14em;
    }
}
@media (hover: hover) {
    .c-btn01 a {
        border: 2px solid var(--color-orange);
    }
    .c-btn01 a:hover {
        opacity: 1;
        background: #fff;
        color: var(--color-orange);
    }
}

/* 色反転 */
.c-btn01.is-invert {
    color: var(--color-orange);
}
.c-btn01.is-invert a {
    background: #fff;
    border: 2px solid var(--color-orange);
}
@media (hover: hover) {
    .c-btn01.is-invert a:hover {
        background: var(--color-orange);
        border-color: var(--color-orange);
        color: #fff;
    }
}

/* 外部リンクアイコン */
.c-btn01.is-external a::after {
    -webkit-mask-image: url(../img/common/ico_external01.svg);
    mask-image: url(../img/common/ico_external01.svg);
}

/*------------------------------------------
    bg
------------------------------------------*/
/*  .c-bg01 (灰色ノイズ)
------------------------------------------*/
.c-bg01 {
    background: url(../img/common/bg_noise01.jpg) repeat center top;
}

/*  .c-bg02 (灰色格子柄)
------------------------------------------*/
.c-bg02 {
    background: url(../img/common/bg_check01.png) repeat center top/20px;
}
@media screen and (max-width: 767px) {
    .c-bg02 {
        background-size: 12px;
    }
}
/*  .c-bg03 (灰色ノイズ2)
------------------------------------------*/
.c-bg03 {
    background: url(../img/common/bg_noise02.jpg) repeat center top;
}

/*------------------------------------------
    cv
------------------------------------------*/
/*  .c-cv01
------------------------------------------*/
.c-cv01 {
    padding-block: 120px 100px;
    background:
        url(../img/common/ico_cv01.svg) no-repeat left calc(50% - 362px) top 134px,
        url(../img/common/ico_cv02.svg) no-repeat right calc(50% - 315px) top 86px,
        url(../img/common/bg_noise01.jpg) repeat center top;
}
.c-cv01__secTit {
    margin-bottom: 30px;
    font-size: 40px;
}
@media screen and (max-width: 767px) {
    .c-cv01 {
        padding-block: 175px 60px;
        background-position:
            left calc(50% - 50px) top 96px,
            right calc(50% - 62px) top 58px,
            center top;
        background-size: 180px, 127px, auto;
    }
    .c-cv01__secTit {
        margin-bottom: 15px;
        font-size: 28px;
    }
}

/* ボタン */
.c-cv01-btnBox {
    overflow: clip;
    width: min(100%, 1140px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 220px;
    border-radius: var(--border-radius);
}
.c-cv01-btnBox__item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    padding: 10px;
    background: var(--itemColor);
}
.c-cv01-btnBox__item.is-information {
    --itemColor: var(--color-yellow);
    --btnColor: #856c28;
    --icoColor: #b29137;
    --arrowColor: #856c28;
}
.c-cv01-btnBox__item.is-information .c-cv01-btnBox__btn a::after {
    -webkit-mask-image: url(../img/common/ico_information01.svg);
    mask-image: url(../img/common/ico_information01.svg);
}
.c-cv01-btnBox__item.is-consultation {
    --itemColor: var(--color-moss);
    --btnColor: #6b7151;
    --icoColor: #8f966b;
    --arrowColor: #6b7151;
}
.c-cv01-btnBox__item.is-consultation .c-cv01-btnBox__btn a::after {
    -webkit-mask-image: url(../img/common/ico_human01.svg);
    mask-image: url(../img/common/ico_human01.svg);
}
.c-cv01-btnBox__item.is-experience {
    --itemColor: var(--color-brown);
    --btnColor: #7b6d4e;
    --icoColor: #7b6d4e;
    --arrowColor: #5c513a;
}
.c-cv01-btnBox__item.is-experience .c-cv01-btnBox__btn a::after {
    -webkit-mask-image: url(../img/common/ico_pc01.svg);
    mask-image: url(../img/common/ico_pc01.svg);
}
.c-cv01-btnBox__txt {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
}
.c-cv01-btnBox__btn {
    width: fit-content;
    margin-inline: auto;
    border-radius: 100px;
    color: var(--btnColor);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: center;
}
.c-cv01-btnBox__btn a {
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4em;
    padding-inline: 20px;
    border-radius: inherit;
    background: #fff;
}
.c-cv01-btnBox__btn a::after {
    order: -1;
    content: "";
    display: block;
    width: 1.3em;
    aspect-ratio: 1/1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--icoColor);
    flex-shrink: 0;
    transition: all 0.3s;
}
.c-cv01-btnBox__btn .arrow {
    width: 0.8em;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.1em;
    border-radius: 50%;
    background: var(--arrowColor);
    transition: all 0.3s;
}
.c-cv01-btnBox__btn .arrow::after {
    content: "";
    display: block;
    width: 62%;
    aspect-ratio: 10/6;
    -webkit-mask-image: url(../img/common/ico_arrow03.svg);
    mask-image: url(../img/common/ico_arrow03.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
}
@media screen and (max-width: 767px) {
    .c-cv01-btnBox {
        width: min(100%, 300px);
        grid-template-columns: 1fr;
        grid-gap: 15px;
        height: auto;
        border-radius: 0;
    }
    .c-cv01-btnBox__item {
        gap: 12px;
        padding: 20px 10px 25px;
        border-radius: var(--border-radius);
    }
    .c-cv01-btnBox__txt {
        font-size: 16px;
    }
    .c-cv01-btnBox__btn {
        width: min(100%, 260px);
        font-size: 15px;
    }
    .c-cv01-btnBox__btn a {
        height: 2.74em;
        justify-content: space-between;
        gap: 0.3em;
        padding-inline: 12px;
    }
    .c-cv01-btnBox__btn a::after {
        width: 1.47em;
    }
    .c-cv01-btnBox__btn .arrow {
        width: 0.87em;
    }
}
@media (hover: hover) {
    .c-cv01-btnBox__btn a {
        border: 2px solid #fff;
    }
    .c-cv01-btnBox__btn a:hover {
        opacity: 1;
        background: var(--btnColor);
        color: #fff;
    }
    .c-cv01-btnBox__btn a:hover::after {
        background: #fff;
    }
    .c-cv01-btnBox__btn a:hover .arrow {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* tel */
.c-cv01-telBox {
    width: min(100%, 940px);
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.c-cv01-telBox__txt {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.08em;
}
.c-cv01-telBox__time {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
}
.c-cv01-telBox__btn {
    border-radius: 100px;
    color: var(--color-orange-dark);
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    text-align: center;
}
.c-cv01-telBox__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2em;
    height: 2.1em;
    padding: 15px 35px;
    border-radius: inherit;
    background: #fff;
}
.c-cv01-telBox__btn a::after {
    order: -1;
    content: "";
    display: block;
    width: 0.67em;
    aspect-ratio: 1/1;
    background: url(../img/common/ico_tel02.svg) no-repeat center/contain;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .c-cv01-telBox {
        margin-top: 30px;
        flex-direction: column;
        gap: 10px;
    }
    .c-cv01-telBox__txt {
        margin-bottom: 5px;
        font-size: min(6vw, 24px);
        text-align: center;
    }
    .c-cv01-telBox__time {
        font-size: 13px;
        text-align: center;
    }
    .c-cv01-telBox__btn {
        width: min(100%, 300px);
        margin-inline: auto;
        font-size: min(8.6vw, 36px);
    }
    .c-cv01-telBox__btn a {
        padding-inline: 15px;
    }
}

/*------------------------------------------
    .c-network01
------------------------------------------*/
.c-network01 {
    padding-block: 130px 120px;
}
.c-network01-inner {
    display: grid;
    grid-template-columns: 1fr 620px;
    grid-gap: 30px;
    align-items: center;
}
.c-network01-txtBox {
    width: min(100%, 540px);
}
.c-network01__secTit {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: clamp(28px, 2.8vw, 40px);
}
.c-network01__txt {
    margin-bottom: 35px;
}
.c-network01-btnBox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}
.c-network01-btnBox__btn {
    width: 100%;
}
.c-network01-btnBox__btn a {
    padding-inline: 15px;
}
.c-network01-mapBox img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .c-network01__txt {
        font-size: clamp(14px, 1.4vw, 18px);
    }
    .c-network01-btnBox__btn {
        font-size: clamp(15px, 1.5vw, 20px);
    }
}
@media screen and (max-width: 767px) {
    .c-network01 {
        padding-block: 60px;
    }
    .c-network01-inner {
        grid-template-columns: 1fr;
    }
    .c-network01-txtBox {
        width: 100%;
    }
    .c-network01__secTit {
        margin-bottom: 15px;
        font-size: 28px;
        text-align: center;
    }
    .c-network01__txt {
        margin-bottom: 25px;
    }
    .c-network01-btnBox {
        width: min(100%, 300px);
        margin-inline: auto;
    }
    .c-network01-btnBox__btn a {
        padding-inline: 10px;
    }
    .c-network01-mapBox {
        width: calc(100% - 20px);
        margin-inline: auto;
    }
}

/*============================================================================================================
    .l-header
============================================================================================================*/
.l-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9990;
    width: 100%;
    background: #fff;
}
.l-header-top {
    --gap: clamp(15px, 1.5vw, 30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    padding-inline: clamp(15px, 1.5vw, 40px);
}
.l-header__tit {
    margin-inline: calc(var(--gap) * -0.2) auto;
    font-size: 12px;
	font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}
.l-header__logo a,
.l-header__logo img {
    display: block;
}
@media screen and (min-width: 768px) {
    .l-header-top {
        height: var(--header-top-height);
    }
    .l-header__logo {
        order: -1;
    }
}
@media screen and (max-width: 767px) {
    .l-header {
        --titHeight: 22px;
        height: var(--header-height);
    }
    .l-header-top {
        --gap: 0 5px;
        height: 100%;
        padding: var(--titHeight) 10px 0;
        position: relative;
        z-index: 9992;
    }
    .l-header__tit {
        width: 100%;
        height: var(--titHeight);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-inline: auto;
        background: var(--color-brown);
        color: #fff;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
    }
    .l-header__logo {
        width: min(45%, 162px);
    }
}

/*  .l-header__tel
------------------------------------------*/
.l-header__tel {
    margin-inline: auto 0;
    text-align: center;
    flex-shrink: 0;
}
.l-header__tel a {
    display: block;
}
.l-header__tel .num {
    color: var(--color-orange-dark);
    font-size: clamp(22px, 2.2vw, 26px);
    line-height: 1;
}
.l-header__tel .time {
    display: block;
    font-size: 12px;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .l-header__tel {
        border-radius: 100px;
        color: #fff;
    }
    .l-header__tel a {
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.15em;
        padding: 5px 0.8em;
        border-radius: inherit;
        background: var(--color-orange);
    }
    .l-header__tel .num {
        color: #fff;
        font-size: min(4vw, 16px);
    }
    .l-header__tel .time {
        font-size: 8px;
    }
}

/*  .l-header-nav (PCのみ)
------------------------------------------*/
.l-header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
    flex-shrink: 0;
}
.l-header-nav__item {
    width: 100%;
}
.l-header-nav a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.3em;
}
.l-header-nav a::after {
    order: -1;
    content: "";
    display: block;
    width: 0.84em;
    aspect-ratio: 10/6;
    background: url(../img/common/ico_arrow03.svg) no-repeat center/contain;
    flex-shrink: 0;
}

/*  .l-header-cv (PCのみ)
------------------------------------------*/
.l-header-cv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7em;
    color: #fff;
    font-weight: 700;
    font-size: clamp(12px, 1.2vw, 15px);
    text-align: center;
    line-height: 1.4;
}
.l-header-cv__btn {
    --btnColor: var(--color-orange);
    border-radius: 100px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.l-header-cv__btn.is-dark {
    --btnColor: var(--color-orange-dark);
}
.l-header-cv a {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 15px 15px;
    border-radius: inherit;
    background: var(--btnColor);
    border: 2px solid var(--btnColor);
}
.l-header-cv a::after {
    content: "";
    display: block;
    width: 1.07em;
    aspect-ratio: 1/1;
    -webkit-mask-image: url(../img/common/ico_arrow01.svg);
    mask-image: url(../img/common/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.3s;
}
@media (hover: hover) {
    .l-header-cv__btn a:hover {
        opacity: 1;
        background: #fff;
        color: var(--btnColor);
    }
    .l-header-cv__btn a:hover::after {
        background: var(--btnColor);
    }
}

/*  .l-header-fixed-cv (固定ボタン)
------------------------------------------*/
.l-header-fixed-cv {
    height: fit-content;
    position: fixed;
    z-index: 9990;
    /* right: 0; */
    transition: all 0.3s;
}
.l-header-fixed-cv__btn {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.18em;
}
.l-header-fixed-cv__btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 30px;
    gap: 0.4em;
    border-radius: inherit;
    background: var(--color-orange-dark);
    border: 2px solid var(--color-orange-dark);
}
.l-header-fixed-cv__btn a::after {
    content: "";
    display: block;
    width: 1.1em;
    aspect-ratio: 1/1;
    -webkit-mask-image: url(../img/common/ico_arrow01.svg);
    mask-image: url(../img/common/ico_arrow01.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
    .l-header-fixed-cv {
        right: calc(var(--fixedCv-width) * -1);
        bottom: 100px;
    }
    .l-header-fixed-cv.is-show {
        right: 0;
    }
    .l-header-fixed-cv__btn {
        width: var(--fixedCv-width);
        border-radius: 20px 0 0 20px;
        writing-mode: vertical-rl;
    }
    .l-header-fixed-cv__btn a {
        border-right: none;
    }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
    .l-header-fixed-cv {
        bottom: 50px;
    }
    .l-header-fixed-cv__btn {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    .l-header-fixed-cv {
        width: 100%;
        height: var(--fixedCv-height);
        padding: 13px 20px;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(6px);
        bottom: 0;
        right: 0;
    }
    .l-header-fixed-cv__btn {
        height: 100%;
        border-radius: 100px;
        font-size: 16px;
        letter-spacing: 0.08em;
        text-align: center;
    }
    .l-header-fixed-cv__btn a {
        height: 100%;
        padding-inline: 15px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        border-color: var(--color-orange-dark);
    }
    .l-header-fixed-cv__btn a::after {
        width: 0.82em;
    }
}
@media (hover: hover) {
    .l-header-fixed-cv__btn a:hover {
        opacity: 1;
        background: #fff;
        border-color: var(--color-orange-dark);
        color: var(--color-orange-dark);
    }
    .l-header-fixed-cv__btn a:hover::after {
        background: var(--color-orange-dark);
    }
}

/*============================================================================================================
    .l-nav
============================================================================================================*/
/*  pc
------------------------------------------*/
@media screen and (min-width: 768px) {
    .l-nav {
        display: block !important;
        opacity: 1 !important;
        height: var(--nav-height);
        background: var(--color-brown);
    }
    .l-nav-inner {
        height: 100%;
    }
    .l-nav-list {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
    }
    .l-nav-list__item {
        flex: 1;
        height: 100%;
        position: relative;
    }
    .l-nav-list__item::after,
    .l-nav-list__item:first-of-type::before {
        content: "";
        display: block;
        width: 2px;
        height: calc(100% - 35px);
        border-right: 2px dotted #fff;
        opacity: 0.4;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .l-nav-list__item::after {
        right: 0;
    }
    .l-nav-list__item:first-of-type::before {
        left: 0;
    }
    .l-nav-list__item a {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/*  sp
------------------------------------------*/
@media screen and (max-width: 767px) {
    .l-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100% - (var(--header-height) + 50px));
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        z-index: 9991;
    }
    .l-nav-inner {
        width: 100%;
        height: 100%;
        padding: 10px 15px 60px;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .l-nav-inner::-webkit-scrollbar {
        display: none;
    }
    .l-nav-list {
        width: min(100%, 280px);
        margin: 0 auto 30px;
        display: grid;
        grid-template-columns: 1fr;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.4;
    }
    .l-nav-list__item {
        letter-spacing: 0.08em;
    }
    .l-nav-list__item.has-mb-sp {
        margin-bottom: 1.15em;
    }
    .l-nav-list a {
        display: block;
        padding: 0.55em 0 0.55em 1.5em;
        position: relative;
    }
    .l-nav-list a::after {
        content: "";
        display: block;
        width: 1em;
        aspect-ratio: 1/1;
        background: url(../img/common/ico_arrow02.svg) no-repeat center/contain;
        position: absolute;
        top: 0.8em;
        left: 0;
    }
}

/* .l-nav-link (ナビ上部のボタン) */
@media screen and (max-width: 767px) {
    .l-nav-link {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
        margin: 0 auto 20px;
        padding: 15px;
        background: var(--color-brown);
        border-radius: 10px;
        font-weight: 700;
        font-size: min(3.4vw, 13px);
        line-height: 1.4;
    }
    .l-nav-link__item {
        border-radius: 6px;
        text-align: center;
    }
    .l-nav-link__item a {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3px;
        background: #fff;
        border-radius: inherit;
        box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }
    .l-nav-link__item a::after {
        order: -1;
        content: "";
        display: block;
        width: 25px;
        aspect-ratio: 1/1;
        background: no-repeat center/contain;
    }
    .l-nav-link__item.is-access a::after {
        background-image: url(../img/common/ico_access01.svg);
    }
    .l-nav-link__item.is-map a::after {
        background-image: url(../img/common/ico_pin01.svg);
    }
    .l-nav-link__item.is-tel a::after {
        background-image: url(../img/common/ico_tel01.svg);
    }
}

/* .l-nav__tel (電話リンク) */
@media screen and (max-width: 767px) {
    .l-nav__tel {
        width: min(100%, 280px);
        margin: 0 auto 20px;
    }
    .l-nav__tel a {
        display: block;
    }
    .l-nav__tel .num {
        height: 1.625em;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.1em;
        border-radius: 100px;
        background: #fff;
        border: 2px solid;
        color: var(--color-orange-dark);
        font-weight: 700;
        font-size: 32px;
        line-height: 1;
    }
    .l-nav__tel .num::after {
        order: -1;
        content: "";
        display: block;
        width: 0.625em;
        aspect-ratio: 1/1;
        background: url(../img/common/ico_tel02.svg) no-repeat center/contain;
        flex-shrink: 0;
    }
    .l-nav__tel .time {
        display: block;
        margin-top: 5px;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }
}

/* .l-nav-cv (ナビ下部のCV)*/
@media screen and (max-width: 767px) {
    .l-nav-cv {
        width: min(100%, 280px);
        margin-inline: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 15px;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.4;
    }
    .l-nav-cv__btn {
        border-radius: 100px;
        letter-spacing: 0.08em;
    }
    .l-nav-cv__btn a {
        height: 2.74em;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.3em;
        padding-inline: 15px;
        border-radius: inherit;
        background: var(--btnColor);
    }
    .l-nav-cv__btn a::after {
        order: -1;
        content: "";
        display: block;
        width: 1.47em;
        aspect-ratio: 1/1;
        background: no-repeat center/contain;
        flex-shrink: 0;
    }
    .l-nav-cv__btn .arrow {
        width: 0.87em;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.4);
    }
    .l-nav-cv__btn .arrow::after {
        content: "";
        display: block;
        width: 62%;
        aspect-ratio: 10/6;
        -webkit-mask-image: url(../img/common/ico_arrow03.svg);
        mask-image: url(../img/common/ico_arrow03.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-size: contain;
        mask-size: contain;
        background: #fff;
    }
    .l-nav-cv__btn.is-information {
        --btnColor: var(--color-yellow);
    }
    .l-nav-cv__btn.is-information a::after {
        background-image: url(../img/common/ico_information01.svg);
    }
    .l-nav-cv__btn.is-information .arrow {
        background: rgba(0, 0, 0, 0.2);
    }
    .l-nav-cv__btn.is-consultation {
        --btnColor: var(--color-moss);
    }
    .l-nav-cv__btn.is-consultation a::after {
        background-image: url(../img/common/ico_human01.svg);
    }
    .l-nav-cv__btn.is-experience {
        --btnColor: var(--color-brown);
    }
    .l-nav-cv__btn.is-experience a::after {
        background-image: url(../img/common/ico_pc01.svg);
    }
}

/* .l-navBtn */
.l-navBtn {
    overflow: hidden;
    cursor: pointer;
    width: 36px;
    aspect-ratio: 1/1;
    background: var(--color-txt);
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 9992;
    flex-shrink: 0;
    transition: all 0.5s;
}
.l-navBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 14px;
    height: 1px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
}
.l-navBtn span:nth-of-type(1) {
    top: 9px;
}
.l-navBtn span:nth-of-type(2) {
    top: 13px;
}
.l-navBtn span:nth-of-type(3) {
    top: 17px;
}
.l-navBtn::after {
    content: "MENU";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    margin: auto;
    color: #fff;
    font-weight: 700;
    font-size: 6px;
    font-family: var(--font-family-en);
}
.l-navBtn.is-close span:nth-of-type(1) {
    transform: translateY(4px) rotate(-220deg);
}
.l-navBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
}
.l-navBtn.is-close span:nth-of-type(3) {
    transform: translateY(-4px) rotate(220deg);
}
.l-navBtn.is-close::after {
    content: "CLOSE";
}

/*------------------------------------------
    .homeFlow
------------------------------------------*/
.homeFlow {
    padding-block: 120px;
}
.homeFlow__secTit {
    margin-bottom: 50px;
}
.homeFlow-list {
    --gap: 100px;
    counter-reset: number;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px var(--gap);
}
.homeFlow-list__item {
    width: calc((100% - var(--gap) * 2) / 3);
}
.homeFlow-list-imgBox {
    margin-bottom: 20px;
    position: relative;
}
.homeFlow-list-imgBox img {
    width: 100%;
    border-radius: var(--border-radius);
}
.homeFlow-list-imgBox::after {
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    width: 2.9em;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
    background: var(--color-yellow);
    font-family: var(--font-family-en);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.homeFlow-list__tit {
    margin-bottom: 18px;
    padding-bottom: 17px;
    border-bottom: var(--border-bottom);
    font-weight: 700;
    font-size: 24px;
}
.homeFlow-list__txt {
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
    .homeFlow-list__item:nth-of-type(1) .homeFlow-list-imgBox::before {
        content: none;
    }
    .homeFlow-list-imgBox::before {
        content: "";
        display: block;
        width: 22px;
        aspect-ratio: 22/26;
        -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background: #ccc3b0;
        position: absolute;
        top: calc(50% - 13px);
        left: calc((var(--gap) / 2 + 11px) * -1);
        margin: auto;
    }
}
@media screen and (max-width: 767px) {
    .homeFlow {
        padding-block: 75px 80px;
    }
    .homeFlow__secTit {
        margin-bottom: 25px;
    }
    .homeFlow-list {
        --gap: 20px;
        gap: 30px var(--gap);
    }
    .homeFlow-list__item {
        width: calc((100% - var(--gap)) / 2);
    }
    .homeFlow-list-imgBox {
        margin-bottom: 10px;
    }
    .homeFlow-list-imgBox::after {
        width: 2.6em;
        font-size: 3.6vw;
    }
    .homeFlow-list__tit {
        margin-bottom: 10px;
        padding-bottom: 7px;
        font-size: 18px;
    }
}

/*============================================================================================================
    .l-footer
============================================================================================================*/
.l-footer {
    padding-block: 75px 55px;
    background: url(../img/common/bg_noise02.jpg) repeat center top;
}
.l-footer__logo {
    width: min(100%, 342px);
    margin: 0 auto 40px;
}
.l-footer__logo img {
    width: 100%;
}
.l-footer-navWrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}
.l-footer-nav {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}
.l-footer-nav__item {
    letter-spacing: 0.08em;
}
.l-footer-nav__item a {
    display: block;
    padding: 0.45em 0 0.45em 1.3em;
    position: relative;
}
.l-footer-nav__item a::after {
    content: "";
    display: block;
    width: 1em;
    aspect-ratio: 1/1;
    background: url(../img/common/ico_arrow02.svg) no-repeat center/contain;
    position: absolute;
    top: 0.7em;
    left: 0;
}
@media screen and (max-width: 767px) {
    .l-footer {
        padding-block: 60px calc(var(--fixedCv-height) + 40px);
    }
    .l-footer__logo {
        width: min(76%, 257px);
        margin-bottom: 35px;
    }
    .l-footer-navWrap {
        display: block;
        width: min(100%, 300px);
        margin: 0 auto 30px;
    }
    .l-footer-nav {
        margin-bottom: 1.15em;
        font-size: 14px;
    }
    .l-footer-nav__item a {
        padding: 0.55em 0 0.55em 1.5em;
    }
    .l-footer-nav__item a::after {
        top: 0.8em;
    }
}

/*  .l-footer-cv
------------------------------------------*/
.l-footer-cv {
    width: min(100%, 1100px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: clamp(15px, 1.5vw, 30px);
    margin: 0 auto 30px;
    padding: 40px;
    border-radius: var(--border-radius);
    background: #fff;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}
.l-footer-cv__btn {
    border-radius: 100px;
    letter-spacing: 0.08em;
}
.l-footer-cv__btn a {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    padding-inline: 10px;
    border-radius: inherit;
    background: var(--btnColor);
}
.l-footer-cv__btn a::after {
    order: -1;
    content: "";
    display: block;
    width: 1.2em;
    aspect-ratio: 1/1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: currentColor;
    flex-shrink: 0;
}
.l-footer-cv__btn .arrow {
    width: 0.8em;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}
.l-footer-cv__btn .arrow::after {
    content: "";
    display: block;
    width: 62%;
    aspect-ratio: 10/6;
    -webkit-mask-image: url(../img/common/ico_arrow03.svg);
    mask-image: url(../img/common/ico_arrow03.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
}
.l-footer-cv__btn.is-information {
    --btnColor: var(--color-yellow);
}
.l-footer-cv__btn.is-information a::after {
    -webkit-mask-image: url(../img/common/ico_information01.svg);
    mask-image: url(../img/common/ico_information01.svg);
}
.l-footer-cv__btn.is-information .arrow {
    background: rgba(0, 0, 0, 0.2);
}
.l-footer-cv__btn.is-consultation {
    --btnColor: var(--color-moss);
}
.l-footer-cv__btn.is-consultation a::after {
    -webkit-mask-image: url(../img/common/ico_human01.svg);
    mask-image: url(../img/common/ico_human01.svg);
}
.l-footer-cv__btn.is-experience {
    --btnColor: var(--color-brown);
}
.l-footer-cv__btn.is-experience a::after {
    -webkit-mask-image: url(../img/common/ico_pc01.svg);
    mask-image: url(../img/common/ico_pc01.svg);
}
@media screen and (max-width: 767px) {
    .l-footer-cv {
        width: min(100%, 300px);
        grid-template-columns: 1fr;
        grid-gap: 15px;
        padding: 30px 20px;
        font-size: 15px;
    }
    .l-footer-cv__btn a {
        height: 2.74em;
        justify-content: space-between;
        gap: 0.3em;
        padding-inline: 15px;
    }
    .l-footer-cv__btn a::after {
        width: 1.47em;
    }
    .l-footer-cv__btn .arrow {
        width: 0.87em;
    }
}
@media (hover: hover) {
    .l-footer-cv__btn a {
        border: 2px solid var(--btnColor);
    }
    .l-footer-cv__btn a:hover {
        opacity: 1;
        background: #fff;
        color: var(--btnColor);
    }
    .l-footer-cv__btn a:hover .arrow {
        background: var(--btnColor);
    }
}

/*  .l-footer__copyright
------------------------------------------*/
.l-footer__copyright {
    font-size: 14px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        font-size: 11px;
    }
}

/*============================================================================================================
    .p-member
============================================================================================================*/
.p-member__top .c-inner {
    margin: 0 auto;
    max-width: 1068px;
    padding: 80px 20px 50px;
    width: 100%;
}

.p-member__lead {
    font-size: 18px;
    font-size: 2rem;
    font-weight: 400;
    margin: 1rem 0 3.1rem;
    text-align: center;
    font-feature-settings: "palt";
}

.p-member__index-box {
    border: 22px solid #f7f5f2;
    padding: 5rem;
}

.p-member__index {
    align-items: center;
    border-bottom: 1px dotted #f7f5f2;
    display: flex;
    gap: 2rem;
    padding-bottom: 1.6rem;
}

.p-member__index:nth-child(n + 2) {
    margin-top: 1.6rem;
}

.p-member__index:last-child {
    border-bottom: none;
}

.p-member__index-left {
    min-width: 12.8rem;
}

.p-member__index-left a {
    background: #f17a22;
    border-radius: 1rem;
    color: #fff;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.2rem;
    text-align: center;
}

.p-member__index-right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.p-member__index-right ul li {
    padding: initial;
}

.p-member__index-right ul li::before {
    content: none;
}

.p-member__index-right ul li a {
    background-color: #f7f5f2;
    border-radius: 1rem;
    color: #000;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    min-width: 8.8rem;
    padding: 1.2rem 1rem;
    text-align: center;
}

/*============================================================================================================
    .p-area
============================================================================================================*/
.p-area__wrap .c-inner {
    margin: 0 auto;
    max-width: 1068px;
    padding: 80px 20px 50px;
    width: 100%;
}

h2.p-area__heading {
    font-size: 4rem;
    margin: 20px 0 10px;
    text-align: center;
}

.p-area__title {
    background-color: initial;
    color: #3f3625;
    font-size: 3.4rem;
    font-weight: 700;
    margin: initial;
    padding: initial;
    padding-top: 9.2rem;
}

.p-area__title.p-area__title--mt {
    padding-top: 5.2rem;
}

.p-area__table {
    border: 1px solid #d4d3d3;
    border-collapse: separate;
    border-radius: 2rem;
    border-spacing: 0;
    font-size: 1.6rem;
    margin-top: 3rem;
    overflow: hidden;
    width: 100%;
}

.p-area__table thead tr th {
    border: initial;
    border-bottom: 1px solid #d4d3d3;
    color: #fff;
    padding: 25px 10px;
    font-weight: 700;
    text-align: center;
}

.p-area__table thead tr th.name {
    background-color: #f17a22;
    width: 30%;
}

.p-area__table thead tr th.address {
    background-color: #b0bc80;
    color: #fff;
    width: 70%;
}

.p-area__table tbody tr th {
    background-color: #f4f0ed;
    border: initial;
    border-bottom: 1px solid #d4d3d3;
    border-right: 1px solid #d4d3d3;
    color: #3f3625;
    font-size: 1.8rem;
    padding: 25px 20px;
    vertical-align: middle;
    width: 30%;
}

.p-area__table tbody tr th p {
    color: inherit;
    display: inline;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.7;
}

.p-area__table tbody tr th a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
}

.p-area__table tbody tr th p span {
    font-size: 2.4rem;
}

.p-area__table tbody tr td {
    background-color: #fff;
    border: initial;
    border-bottom: 1px solid #d4d3d3;
    font-weight: 400;
    padding: 2rem;
    width: 70%;
    font-size: 1.8rem;
}

.p-area__table tbody tr:last-child th,
.p-area__table tbody tr:last-child td {
    border-bottom: initial;
}

.p-area__table tbody tr td .p-area__table-tel {
    margin-top: 1.5rem;
}

.p-area__table tbody tr td .p-area__table-tel a {
    background-color: #f7f5f2;
    display: inline-block;
    padding: 1.6rem;
}

.p-area__table tbody tr td .p-area__table-hp {
    font-size: 1.6rem;
    margin-top: 4rem;
    text-align: right;
}

.p-area__table tbody tr td .p-area__table-hp a {
    border-bottom: 1px solid #b0bc80;
    color: #b0bc80;
    font-size: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 5px;
    text-align: right;
}

@media screen and (max-width: 781px) {
    .u-fd--column-reverse {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 767px) {
    .p-member__top .c-inner {
        padding: 20px;
    }
    .p-member__lead {
        font-size: 14px;
        font-size: 16px;
        font-size: 1.6rem;
        text-align: left;
    }
    .p-member__index-box {
        border: 10px solid #f7f5f2;
        padding: 1rem;
    }
    .p-member__index {
        align-items: stretch;
        gap: 1.2rem;
        padding: 0.8rem 0;
    }
    .p-member__index:last-child {
        border-bottom: none;
    }
    .p-member__index:nth-child(n + 2) {
        margin-top: initial;
    }
    .p-member__index-left {
        display: flex;
        min-width: 6.4rem;
    }
    .p-member__index-left a {
        align-items: center;
        display: flex;
        font-size: 1.1rem;
        font-size: 1.6rem;
        justify-content: center;
        padding: 0.8rem;
        width: 100%;
    }
    .p-member__index-right ul {
        align-items: center;
        flex-wrap: wrap;
        gap: 0.375rem;
    }
    .p-member__index-right ul li {
        padding: initial;
    }
    .p-member__index-right ul li::before {
        content: none;
    }
    .p-member__index-right ul li a {
        font-size: 1.1rem;
        font-size: 1.6rem;
        min-width: 6.4rem;
        padding: 0.8rem 0.4rem;
    }
    .p-area__wrap .c-inner {
        padding: 20px;
    }
    h2.p-area__heading {
        font-size: 3.6rem;
        margin: 20px 0 10px;
    }
    .p-area__title {
        font-size: 2.8rem;
        padding-top: 5.2rem;
    }
    .p-area__title.p-area__title--mt {
        padding-top: 0.2rem;
    }
    .p-area__table {
        border: 1px solid #d4d3d3;
        border-collapse: separate;
        border-radius: 2rem;
        border-spacing: 0;
        margin-top: 2.6rem;
        overflow: hidden;
    }
    .p-area__table thead tr {
        display: flex;
    }
    .p-area__table thead tr th {
        border: initial;
        border-bottom: 1px solid #d4d3d3;
    }
    .p-area__table thead tr th.name {
        width: 36%;
    }
    .p-area__table thead tr th.address {
        width: 64%;
    }
    .p-area__table tbody tr {
        display: flex;
    }
    .p-area__table tbody tr th {
        font-size: 1.8rem;
        padding: 10px 5px;
        text-align: left;
        width: 36%;
    }
    .p-area__table tbody tr th p {
        font-size: 1rem;
        padding-bottom: 1px;
    }
    .p-area__table tbody tr th p span {
        font-size: 1.6rem;
    }
    .p-area__table tbody tr td {
        padding: 0.8rem;
        text-align: left;
        width: 64%;
    }
    .p-area__table tbody tr:last-child th,
    .p-area__table tbody tr:last-child td {
        border-bottom: initial;
    }
    .p-area__table tbody tr td .p-area__table-add {
        font-size: 1.2rem;
        font-size: 1.6rem;
    }
    .p-area__table tbody tr td .p-area__table-tel {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
    .p-area__table tbody tr td .p-area__table-tel a {
        padding: 0.8rem;
    }
    .p-area__table tbody tr td .p-area__table-hp {
        margin-top: 4rem;
        text-align: right;
    }
    .p-area__table tbody tr td .p-area__table-hp a {
        font-size: 1.1rem;
        padding-bottom: 3px;
        text-align: right;
    }
}
