@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@500;700&display=swap");

/* A Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
ul[role="list"],
ol[role="list"] {
    list-style: none;
}
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
img,
picture {
    max-width: 100%;
    display: block;
}
input,
button,
textarea,
select {
    font: inherit;
}
label,
button{
    cursor: pointer;
}

:root {
    --body-color: #fbf2f3;
    --color-text: #7d6452;
    --color-link: #7d6452;
    --color-white: #fff;
    --color-base: #e2a3b0;
    --color-base2: #fde1e4;
    --color-accent: #fbf0db;
    --color-gray-light: #d9d9d9;
    --color-gray: #cccccc;
    --color-gray-dark: #888888;
    --font-family-base: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", Meiryo, sans-serif;
    --border-radius: 20px;
    --box-shadow: 0 4px 14px 4px rgba(0, 0, 0, 0.04);
    --max-content-width: 1224px;
    --max-small-content-width: 1024px;
    --cubic-bezier: cubic-bezier(0.23, 1, 0.32, 1);
}
a {
    color: var(--color-link);
    text-decoration: underline;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family-base);
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 2;
    font-size: 1.5rem;
    color: var(--color-text);
    background-color: var(--body-color);
}

.l-header {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
}

.l-header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: min(50%, 180px);
    text-align: center;
    font-size: 10px;
    font-size: 0.66667rem;
    background-color: var(--color-base);
    border-bottom-right-radius: 20px;
}

.l-header__logo picture img {
    width: min(75%, 172px);
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
}

.l-header__nav {
    display: flex;
    z-index: 999;
    position: fixed;
    top: 0;
    /* align-items: center; */
    /* justify-content: center; */
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
    padding-left: 15vw;
    padding-top: 80px;
    /* border-left: 1px solid var(--color-text); */
}

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

.l-header__nav ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.l-header__nav ul li {
    margin-bottom: 1.6rem;
}

.l-header__nav ul li a {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s var(--cubic-bezier);
}
.l-header__nav ul li a:hover {
    color: var(--color-base);
}

.l-header__bar {
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.l-header__bar.is-open span:nth-child(1) {
    -webkit-transform-origin: left top;
    -webkit-transform: rotate(45deg);
    top: 22px;
    right: 20px;
    transform: rotate(45deg);
    transform-origin: left top;
}

.l-header__bar.is-open span:nth-child(2) {
    opacity: 0;
}

.l-header__bar.is-open span:nth-child(3) {
    -webkit-transform-origin: right top;
    -webkit-transform: rotate(-45deg);
    top: 22px;
    right: 28px;
    transform: rotate(-45deg);
    transform-origin: right top;
}

.l-header__bar span {
    display: inline-block;
    position: absolute;
    width: 25px;
    height: 1px;
    outline: none;
    background: var(--color-text);
    transition: 0.2s ease-out;
}

.l-header__bar span:nth-child(1) {
    top: 24px;
    right: 25px;
}

.l-header__bar span:nth-child(2) {
    top: 30px;
    right: 25px;
}

.l-header__bar span:nth-child(3) {
    top: 36px;
    right: 25px;
}

/* footer */
.l-footer {
    margin: 3rem 0 3rem;
}

.l-footer__copyright {
    font-size: 1rem;
    text-align: center;
}

/* container */
.l-main {
    /* margin-top: 90px; */
    padding-bottom: 80px;
}

.l-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    max-width: calc(var(--max-content-width) + 60px);
}
.l-container--small {
    max-width: calc(var(--max-small-content-width) + 60px);
}

/* component */
.c-h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-top: 80px;
    padding-top: 16px;
    margin-bottom: 24px;
    position: relative;
    color: var(--color-base);
}
.c-h2:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-base);
    position: absolute;
    top: 0px;
    left: 0px;
}
.c-h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
}

.c-list--ul {
    list-style: none;
    padding-left: 0;
}
.c-list--ul li {
    position: relative;
    padding-left: 20px;
}
.c-list--ul li:before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: var(--color-text);
    position: absolute;
    top: 1em;
    left: 0;
}
.c-table {
    width: 100%;
    border-spacing: 0;
}
.c-table tbody tr {
    display: block;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    margin-top: 10px;
    padding: 24px;
}
.c-table tbody th {
    display: block;
    font-weight: 500;
    text-align: left;
    position: relative;
    font-size: 1.6rem;
    padding-left: 16px;
    line-height: 1.6;
}
.c-table tbody th:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--color-base);
    position: absolute;
    top: calc(50% - 3px);
    left: 0px;
    border-radius: 3px;
}
.c-table tbody td {
    display: block;
    /* padding: 0 1.2em 1em 1.2em; */
    text-align: right;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-base);
}
.c-table tbody td .c-em--xsmall {
    display: block;
}
.c-table--form {
    width: 100%;
    border-spacing: 0;
    margin-top: 3rem;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    padding-bottom: 24px;
}
.c-table--form tbody tr {
    display: block;
    padding: 24px 24px 0 24px;
}
.c-table--form tbody th {
    display: block;
    font-weight: 500;
    text-align: left;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.c-table--form tbody td {
    display: block;
    width: 100%;
}
.c-table--form input[type="text"],
.c-table--form textarea {
    border: none;
    border-top: 1px solid var(--color-gray-light);
    border-left: 1px solid var(--color-gray-light);
    border-radius: 5px;
    padding: 0.5em 1em;
    width: 100%;
    background-color: #f3f3f3;
}
.c-table--form input::placeholder,
.c-table--form textarea::placeholder{
    color: var(--color-gray);
}

.c-btn--default {
    background-color: var(--color-white);
    border: 2px solid var(--color-base);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 200px;
    text-decoration: none;
    color: var(--color-base);
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
}
.c-btn--default:hover {
    background-color: var(--color-base);
    color: var(--color-white);
}
.c-btn--point {
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
    display: inline-block;
    padding: 16px 28px;
    border-radius: 200px;
    text-decoration: none;
    color: var(--color-base);
    font-weight: 700;
    line-height: 1.6;
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.c-btn--point:hover {
    background-color: var(--color-base);
    color: var(--color-white);
}
.c-btn--point:hover img {
    filter: brightness(2);
}
.c-btn--back {
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-dark);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 200px;
    text-decoration: none;
    color: var(--color-gray-dark);
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
}
.c-btn--back:hover {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
}

.c-em--sub {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--color-gray-dark);
}
.c-em--xsmall {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
}
.c-em--small {
    font-size: 1.3rem;
}
.c-em--large {
    font-size: 1.7rem;
    font-weight: 500;
}
.c-errors{
    background-color: var(--color-base2);
    margin-top: 2rem;
    padding: 1em 1.2em;
    border-radius: 10px;
    border: 1px solid var(--color-base);
}
.c-error{
    
    color: #E53A5E;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-size: 1.4rem;
}
.c-error:before{
    content: "※";
}

.u-mb1 {
    margin-bottom: 1rem;
}
.u-mb2 {
    margin-bottom: 2.5rem;
}
.u-mb5 {
    margin-bottom: 5rem;
}
.u-right {
    text-align: right;
}

.hom-mainVisual {
    position: relative;
    z-index: 5;
}

.hom-mainVisual h1 {
    position: absolute;
    bottom: -24px;
    left: 48px;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: left;
    line-height: 1;
    writing-mode: vertical-rl;
}
.hom-mainVisual h1 b {
    background-color: #fff;
    display: inline-block;
    padding: 0.6em;
    border-radius: 10px;
}
.hom-mainVisual h1 b:first-of-type {
    border-bottom-left-radius: 0;
}
.hom-mainVisual h1 b:last-of-type {
    margin-top: 1em;
    border-top-right-radius: 0;
}
.hom-mainVisual h1 .text-combine {
    -webkit-text-combine: horizontal;
    -ms-text-combine-horizontal: all;
    text-combine-upright: all;
}
.hom-mainVisual__badge{
    color: var(--color-white);
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 80px;
    height: 80px;
    line-height: 1.3;
    font-size: 1.4rem;
    font-weight: 700;
}
.hom-mainVisual__badge a{
    background-color: var(--color-base);
    border-radius: 100%;
    box-shadow: var(--box-shadow);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
    color: var(--color-white);
    text-align: center;
    padding-bottom: 10px;
    transition: .4s var(--cubic-bezier);
}
.hom-mainVisual__badge a:hover{
    filter: brightness(1.06);
    /* background-color: var(--color-white); */
    /* color: var(--color-base); */
    /* border: 2px solid var(--color-base); */
}
.hom-mainVisual__badge a:after{
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../img/icon-arrow-down.svg);
    background-size: cover;
    display: block;
    position: absolute;
    bottom: 10px;
    left: calc(50% - 6px);
}
.hom-about__img img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.hom-about__img__01 {
    width: min(270px, 70%);
    margin-top: 36px;
}
.hom-about__img__02 {
    width: min(200px, 50%);
    margin-left: auto;
    margin-top: 24px;
}
.hom-about__text p {
    margin-bottom: 2rem;
}
.hom-inheritance {
    margin-top: 80px;
}
.hom-inheritance__wrap {
    background-color: var(--color-base2);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.hom-inheritance__text {
    padding: 10px;
}
.hom-inheritance__text h2 {
    margin-top: 0px;
}
.hom-inheritance__text h2 br {
    display: none;
}
.hom-inheritance__list {
    list-style: none;
    padding-left: 0;
}
.hom-inheritance__list li {
    padding-left: 20px;
    background-color: #fff;
    padding: 20px 20px 20px 38px;
    border-radius: 200px 200px 0 200px;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    font-weight: 700;
}
.hom-inheritance__list li:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--color-base);
    position: absolute;
    top: calc(50% - 3px);
    left: 20px;
    border-radius: 3px;
}
.hom-inheritance__list li:last-child {
    margin-bottom: 0;
}
.hom-inheritance__list li br {
    display: none;
}
.hom-inheritance__img {
    margin-left: auto;
    margin-top: 20px;
    width: max(150px, 35%);
}
.hom-member__list {
    padding: 0;
    margin-top: 30px;
    list-style: none;
}
.hom-member__list li {
    position: relative;
    margin-top: 10px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}
.hom-member__img img {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.hom-member__illust {
    position: absolute;
    right: 20px;
    top: 20px;
    width: min(100px, 20%);
}
.hom-member__affiliation {
    color: var(--color-base);
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
.hom-member__name {
    font-size: 2rem;
    font-weight: 700;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 12px;
}
.hom-member__text {
    font-size: 1.3rem;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    color: var(--color-gray-dark);
}
.hom-service {
    background-color: var(--color-accent);
    margin-top: 80px;
    padding-top: 0.1px;
    padding-bottom: 80px;
}
.hom-service__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.hom-service__list li {
    flex-basis: 100%;
    background-color: #fff;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 24px 24px;
    margin-top: 10px;
    line-height: 1.8;
}
.hom-service__list h4 {
    font-weight: 500;
    font-size: 1.6rem;
}
.hom-service__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.hom-faq__wrap {
    background-color: var(--color-base2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 24px;
}
.hom-faq {
    margin-top: 80px;
}
.hom-faq__text {
    padding: 10px 10px 0 10px;
}
.hom-faq h2 {
    margin-top: 0px;
    margin-bottom: 0;
}
.hom-faq__list {
    list-style: none;
    padding-left: 0;
}
.hom-faq__list li {
    counter-increment: number;
}
.hom-faq__list li dl dt {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-radius: 200px 200px 0 200px;
    padding: 20px 32px 20px 50px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}
.hom-faq__list li dl dt:before {
    content: "Q" counter(number) ".";
    color: var(--color-base);
    font-weight: 700;
    position: absolute;
    top: calc(50%);
    left: 20px;
    transform: translateY(-50%);
}
.hom-faq__list li dl dt:after {
    content: "＋";
    position: absolute;
    top: calc(50%);
    right: 20px;
    transform: translateY(-50%);
    color: var(--color-base);
    font-size: 1.2rem;
}
.hom-faq__list li dl dt.is-open:after {
    content: "－";
}
.hom-faq__list li dl dd {
    padding: 0 0 0 32px;
    height: 0;
    overflow: hidden;
    position: relative;
    transition: 0.4s var(--cubic-bezier);
}
.hom-faq__list li dl dd:before {
    content: "A.";
    color: var(--color-base);
    font-weight: 700;
    position: absolute;
    top: calc(1em + 10px);
    left: 10px;
    transform: translateY(-50%);
}
.hom-faq__list li dl dd.is-open {
    height: auto;
    padding: 10px 0 24px 32px;
}
.hom-access__button {
    margin-top: 24px;
}
.hom-cta {
    margin-top: 80px;
}
.hom-cta__wrap {
    background-color: var(--color-base);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--color-white);
    padding: 36px;
}
.hom-cta h2 {
    font-size: 2.2rem;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.hom-cta__free {
    display: inline-block;
    border: 2px solid var(--color-white);
    border-radius: 200px;
    padding: 0 24px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}
.hom-cta__contact {
    margin-top: 24px;
    text-align: center;
}
.hom-cta__contact dl {
    margin-top: 24px;
}
.hom-cta__contact dt {
    font-weight: 700;
    margin-bottom: 10px;
}
.hom-cta__contact img {
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    margin-bottom: 0.1em;
}
.hom-access__gmap iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
}

.con-form{
    margin-top: 12rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.con-form__button{
    text-align: center;
    margin-top: 3rem;
}
.con-form__button form{
    display: inline-block;
}
.c-table--form--confirm tbody th{
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--color-gray-dark);
}
.c-table--form--confirm tbody td{
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }

    .l-container {
        max-width: 1200px;
        padding-right: 40px;
        padding-left: 40px;
        margin: 0 auto;
    }
    .l-header__logo {
        width: min(25%, 280px);
    }
    .c-h2 {
        font-size: 2.4rem;
        margin-top: 100px;
        text-align: center;
    }

    .c-h2:before {
        font-size: 1.4rem;
    }

    .c-h2:after {
        width: 60px;
        left: 50%;
        transform: translateX(-50%);
    }

    .c-h3 {
        font-size: 2.1rem;
        text-align: center;
        margin-bottom: 16px;
    }

    .c-em--sub {
        font-size: 1.4rem;
    }

    .c-em--xsmall {
        font-size: 1.3rem;
    }

    .c-em--small {
        font-size: 1.4rem;
    }

    .c-em--large {
        font-size: 1.8rem;
    }
    .c-btn--default {
        padding: 16px 32px;
        font-size: 1.6rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .c-btn--back {
        padding: 16px 32px;
        font-size: 1.6rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .c-btn--point {
        width: 240px;
        padding: 20px 40px;
        font-size: 1.8rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .hom-mainVisual h1 {
        bottom: 60px;
        right: 30px;
        font-size: 3rem;
        writing-mode: horizontal-tb;
    }
    .hom-mainVisual h1 b:first-of-type {
        border-radius: var(--border-radius) var(--border-radius) 0
            var(--border-radius);
    }
    .hom-mainVisual h1 b:last-of-type {
        margin-top: -0.5em;
        margin-left: 1em;
        border-radius: 0 var(--border-radius) var(--border-radius)
            var(--border-radius);
    }
    .hom-about__wrap {
        display: flex;
    }
    .hom-about__text {
        flex-basis: 60%;
        margin-right: 30px;
    }
    .hom-about__img {
        flex-basis: 40%;
        margin-top: 120px;
    }
    .hom-about__img__01 {
        margin-top: 0;
        width: min(362px, 100%);
    }
    .hom-about__img__02 {
        width: min(299px, 70%);
    }
    .hom-about__text h2 {
        text-align: left;
    }
    .hom-about__text h2:after {
        left: 0;
        transform: none;
    }
    .hom-inheritance__text h2 {
        text-align-last: left;
    }
    .hom-inheritance__text h2:after {
        left: 0;
        transform: none;
    }
    .hom-inheritance__wrap {
        padding: 36px;
    }
    .hom-member__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        list-style: none;
        padding: 0;
    }
    .hom-member__list--sub {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hom-member__list li {
        margin-top: 0;
        background-color: #fff;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        overflow: hidden;
    }
    .hom-member__wrap p {
        text-align: center;
    }
    .hom-service__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        place-items: center;
        gap: 20px;
        list-style: none;
        padding: 0;
    }

    .hom-service__list li {
        flex-basis: auto;
        margin-top: 0;
        padding: 30px 20px;
        background-color: #fff;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
        width: 100%;
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 2;
    }
    .hom-service__list h4 {
        grid-template-rows: subgrid;
        grid-row: span 2;
    }
    .hom-service__text {
        text-align: center;
    }

    .hom-faq__wrap {
        padding: 36px;
        background-color: var(--color-base2);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    .hom-faq__list li dl dt {
        padding: 24px 24px 24px 60px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        background-color: #fff;
        border-radius: 200px 200px 0 200px;
        position: relative;
    }
    .hom-faq__list li dl dt:before {
        left: 30px;
    }

    .hom-access__gmap iframe {
        height: 525px;
        margin-bottom: 30px;
    }
    .hom-access__wrap {
        display: flex;
        justify-content: space-between;
    }
    .hom-access__button {
        margin-top: 0;
    }

    .hom-cta__wrap {
        padding: 60px;
        text-align: center;
        background-color: var(--color-base);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        color: var(--color-white);
    }

    .hom-cta h2 {
        font-size: 2.4rem;
        margin-bottom: 20px;
        color: var(--color-white);
    }

    .hom-cta__contact {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 40px;
    }

    .hom-cta__contact dl {
        margin-top: 0;
    }

    /* テーブル */
    .c-table tbody tr {
        display: flex;
        align-items: center;
        padding: 0;
        position: relative;
    }

    .c-table tbody th {
        flex-basis: 100%;
        padding: 20px 20px 20px 36px;
        text-align: left;
    }
    .c-table tbody th:before {
        content: none;
    }

    .c-table tbody tr:before {
        content: "";
        width: 6px;
        height: 6px;
        background-color: var(--color-base);
        position: absolute;
        top: calc(50% - 3px);
        left: 20px;
        border-radius: 3px;
    }

    .c-table tbody td {
        flex-basis: 30%;
        padding: 20px;
        text-align: right;
        font-size: 1.6rem;
    }

    .c-table tbody td .c-em--xsmall {
        white-space: nowrap;
    }
    .c-table--form{
        padding-bottom: 36px;
    }
    .c-table--form tbody tr{
        padding: 36px 36px 0 36px;
    }
    .c-table--form--confirm tbody th{
        font-size: 1.5rem;
    }
    .c-table--form--confirm tbody td{
        font-size: 1.8rem;
    }

    .u-mb1 {
        margin-bottom: 1.5rem;
    }

    .u-mb2 {
        margin-bottom: 3rem;
    }

    .u-mb5 {
        margin-bottom: 6rem;
    }
}

@media (min-width: 1024px) {
    .l-container {
        padding-right: 40px;
        padding-left: 40px;
        max-width: calc(var(--max-content-width) + 80px);
    }
    .l-container--small {
        max-width: calc(var(--max-small-content-width) + 80px);
    }
    .l-header {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px 0 0;
    }
    .l-headerWrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .l-header__logo {
        height: 100px;
        width: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: 10px;
        border-bottom-right-radius: 40px;
    }
    .l-header__logo a {
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 10px;
    }
    .l-header__logo picture {
        width: 100%;
    }

    .l-header__nav {
        position: relative;
        width: auto;
        height: auto;
        background: transparent;
        opacity: 1;
        pointer-events: all;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        flex: 1;
    }

    .l-header__nav ul {
        display: flex;
        gap: 20px;
        margin: 0;
        align-items: center;
    }

    .l-header__nav ul li {
        margin-bottom: 0;
    }

    .l-header__nav ul li a {
        font-size: 1.4rem;
        padding: 10px 0;
        position: relative;
        text-decoration: none;
        color: var(--color-text);
        letter-spacing: 0;
    }

    .l-header__bar {
        display: none;
    }
    .l-footer__copyright {
        font-size: 1.2rem;
    }
    .c-h2 {
        font-size: 3rem;
        margin-top: 150px;
    }

    .c-h3 {
        font-size: 2.1rem;
    }
    .c-table tbody th {
        padding: 26px 0 26px 50px;
        font-size: 1.8rem;
    }
    .c-table tbody td {
        padding: 26px 26px 26px 0;
        font-size: 1.8rem;
    }
    .c-table tbody {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .c-table tbody tr {
        margin-top: 0;
    }
    .c-table tbody tr:before {
        left: 30px;
    }
    .c-btn--default {
        padding: 18px 36px;
        font-size: 1.7rem;
    }
    .c-btn--back {
        padding: 18px 36px;
        font-size: 1.7rem;
    }
    .c-btn--point {
        width: 360px;
        padding: 24px 48px;
        font-size: 2rem;
    }
    .hom-mainVisual h1 {
        bottom: 100px;
        left: auto;
        right: 80px;
        font-size: 3.6rem;
    }
    .hom-mainVisual h1 b {
        padding: 0.7em;
    }

    .hom-mainVisual__bg {
        width: 100%;
        height: 750px;
        overflow: hidden;
    }
    .hom-mainVisual__bg img {
        width: 100%;
        height: 750px;
        object-fit: cover;
        object-position: 50% 36%;
    }
    .hom-mainVisual__badge{
        width: 108px;
        height: 108px;
        font-size: 1.6rem;
        bottom: -48px;
        right: 48px;
    }
    .hom-mainVisual__badge a{
        width: 108px;
        height: 108px;
    }
    .hom-mainVisual__badge a:after{
        width: 16px;
        height: 16px;
        bottom: 15px;
    }
    .hom-about__wrap {
        display: flex;
        justify-content: space-between;
    }
    .hom-about__text {
        margin-right: 70px;
    }
    .hom-about__img {
        margin-top: 160px;
    }
    .hom-about__img__02 {
        margin-top: 48px;
        position: relative;
        right: -20px;
    }
    .hom-inheritance {
        margin-top: 150px;
    }
    .hom-inheritance__wrap {
        display: flex;
        gap: 80px;
        padding: 80px;
        background-color: var(--color-base2);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        position: relative;
    }

    .hom-inheritance__text {
        flex: 1;
        padding: 0;
    }

    .hom-inheritance__text h2 {
        text-align: left;
        margin-top: 0;
    }
    .hom-inheritance__text h2:after {
        left: 0;
        transform: none;
    }
    .hom-inheritance__text h2 br {
        display: block;
    }

    .hom-inheritance__list {
        flex: 1;
        margin-top: 0;
    }

    .hom-inheritance__list li {
        padding-left: 50px;
        background-color: #fff;
        position: relative;
    }
    .hom-inheritance__list li:before {
        left: 32px;
    }

    .hom-inheritance__list li br {
        display: block;
    }
    .hom-inheritance__img {
        position: absolute;
        left: 80px;
        bottom: 80px;
    }
    .hom-member__list {
        gap: 20px;
    }
    .hom-member__name {
        font-size: 2.4rem;
        padding: 0 30px 12px 30px;
    }
    .hom-member__affiliation {
        padding: 30px 30px 0 30px;
    }
    .hom-member__text {
        padding: 0 30px 30px 30px;
        font-size: 1.4rem;
    }
    .hom-member__illust {
        right: 30px;
        top: 20px;
        width: min(100px, 29%);
    }
    .hom-member__list--sub {
        grid-template-columns: repeat(4, 1fr);
    }
    .hom-service {
        margin-top: 150px;
        padding-bottom: 150px;
    }
    .hom-service__text {
        margin-bottom: 36px;
    }
    .hom-service__list {
        gap: 20px;
        grid-template-columns: repeat(4, 1fr);
    }

    .hom-service__list li {
        padding: 36px;
    }
    .hom-service__list h4 {
        font-size: 1.8rem;
    }
    .hom-faq {
        margin-top: 150px;
    }
    .hom-faq__wrap {
        padding: 150px;
    }
    .hom-faq__list {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .hom-faq__list li dl dt {
        padding: 30px 30px 30px 70px;
    }
    .hom-faq__list li dl dt:after {
        right: 30px;
        font-size: 1.4rem;
    }
    .hom-cta {
        margin-top: 150px;
    }
    .hom-cta__wrap {
        padding: 120px;
    }

    .hom-cta h2 {
        font-size: 3rem;
    }

    .hom-cta__contact {
        gap: 30px;
        margin-top: 50px;
    }
    .hom-cta__contact dt {
        font-size: 1.8rem;
    }
}
@media (min-width: 1140px) {
}

.u-disp--sm,
.u-disp--md,
.u-disp--lg {
    display: none !important;
}
@media (min-width: 0) and (max-width: 767px) {
    .u-disp--sm {
        display: inherit !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .u-disp--md {
        display: inherit !important;
    }
}
@media (min-width: 992px) {
    .u-disp--lg {
        display: inherit !important;
    }
}
