:root {
    --primary-color: #e38094;
    --secondary-color: #f06f81;
    --nunito-font-family: nunito, sans-serif;
    --marumaru-font-family: "maru-maru-gothic-asr-stdn","メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
    --text-color: #444444;
    --header: 128px;
    --sp-header: 81px;
}

::selection {
    color: #ffffff;
    background-color: var(--primary-color);
}

html {
    font-size: 100%;
    font-family: var(--marumaru-font-family);
    font-feature-settings: "palt" 1;
    letter-spacing: 0.04rem;
}

html {
    visibility: hidden;
}
html.wf-active {
    visibility: visible;
}

body {
    --inner-padding-sp: 6%;
    color: var(--text-color);
    font-family: var(--marumaru-font-family);
    font-size: 16px;
    line-height: 2;
    background-color: #f4eeee;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
}

a,
button {
    transition: 0.2s ease opacity;
}

:where(a, button):hover,
:where(a, button):focus {
    opacity: 0.8;
}

img {
    user-select: none; /* CSS3 */
    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Safari、Chromeなど */
    -ms-user-select: none; /* IE10かららしい */
}

textarea {
    resize: none;
}

.only-sp {
    display: none;
}

@media screen and (max-width: 1200px) {
    .only-sp {
        display: inherit;
    }
}

@media screen and (max-width: 1200px) {
    .only-pc {
        display: none !important;
    }
}

@media (min-width: 767px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

.auto-break {
    white-space: pre-wrap;
    word-break: keep-all;
}


/*--------------------------------------
  トップ
--------------------------------------*/

.common-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
    width: 100%;
}
@supports (width: 100dvw) {
    .common-header {
        width: 100dvw;
    }
}

.common-header-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    height: 120px;
    padding-left: 40px;
    margin-inline: auto;
    transition: height 0.4s cubic-bezier(0.43, 0.87, 0.53, 0.93);
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .common-header-inner {
        height: 96px;
    }
}

@media screen and (max-width: 767px) {
    .common-header-inner {
        height: 81px;
        padding-left: 24px;
    }
}

.throttle-scroll-down .common-header-inner {
    height: 84px;
    transition: height 0.35s cubic-bezier(0.43, 0.87, 0.53, 0.93) 0.5s;
}

@media screen and (max-width: 1200px) {
    .throttle-scroll-down .common-header-inner {
        height: 96px;
    }
}

@media screen and (max-width: 767px) {
    .throttle-scroll-down .common-header-inner {
        height: 81px;
    }
}

.header-menu-wrapper {
    display: flex;
}

@media screen and (max-width: 1200px) {
    .header-menu-wrapper.active {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding-block: 81px;
        overflow-y: auto;
        z-index: 2;
    }
    @supports (width: 100dvw) {
        .header-menu-wrapper.active {
            width: 100dvw;
            height: 100dvh;
        }
    }
}

.header-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: clamp(1.25rem, 0.75rem + 0.63vw, 1.5rem);
    transition: 0.6s cubic-bezier(0.43, 0.87, 0.53, 0.93) transform 0.2s;
}
@media screen and (max-width: 1200px) {
    .header-menu {
        visibility: hidden;
    }
    .header-menu-wrapper.active .header-menu {
        visibility: visible;
        width: min(83vw, 342px);
        font-size: 24px;
        flex-direction: column;
        align-items: start;
        gap: 27px;
        padding-inline: var(--inner-padding-sp);
        margin-inline: auto;
        margin-bottom: 40px;
        box-sizing: content-box;
    }
    .header-menu-wrapper.active .title-en {
        display: none;
    }
}

.throttle-scroll-down .header-menu {
    transition: 0.6s cubic-bezier(0.43, 0.87, 0.53, 0.93) transform;
}

.header-instagram-banner {
    display: block;
    height: fit-content;
    margin: auto min(1.6vw,32px) auto auto;
    max-width: 13%;
    min-width: 80px;
    transition: 0.6s cubic-bezier(0.43, 0.87, 0.53, 0.93) transform 0.2s;
}
@media screen and (min-width: 1201px) and (max-width:1280px) {
    .header-instagram-banner {
        display: none;
    }
}

@media screen and (max-width:1200px) {
    .header-instagram-banner {
        margin: auto min(1.6vw,32px);
    }
}

@media screen and (max-width:481px) {
    .header-instagram-banner {
        display: block;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        z-index: 1;
        transform: none !important;
    }

    .header-instagram-banner-img {
        display: block;
        width: 100%;
    }
}

.throttle-scroll-down .header-instagram-banner {
    transition: 0.6s cubic-bezier(0.43, 0.87, 0.53, 0.93) transform;
}

.header-menu li {
    margin-right: 40px;
}

@media screen and (max-width:1400px) {   
    .header-menu li {
        margin-right: 20px;
    }
}

.header-menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 16px;
}

.header-menu-link::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    transition: 0.2s ease-out background-color;
}

.header-menu-link:hover::after,
.header-menu-link:focus::after {
    background-color: var(--primary-color);
}

@media screen and (max-width: 1200px) {
    .header-menu-link::after {
        content: none;
    }
    .header-menu-wrapper.active .header-menu-link {
        align-items: start;
    }
    .header-menu-wrapper.active .header-menu-link::after {
        content: "";
        top: auto;
        bottom: -4px;
        left: 0;
        transform: none;
        width: 0;
        height: 4px;
        scale: 1 0.5;
        border-radius: 0;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    .header-menu-wrapper.active .header-menu-link:focus::after,
    .header-menu-wrapper.active .header-menu-link:hover::after {
        width: 100%;
    }
}

.header-menu-title {
    line-height: 1;
    margin-bottom: 4px;
}

.header-menu .title-en {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.375;
}

.header-logo-wrapper {
    display: inline-grid;
    place-content: center;
    margin: auto 0;
    flex-shrink: 0;
}

[lang="en"],
.font-nunito {
    font-family: var(--nunito-font-family);
}

.header-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 30px 0 16px;
    transition: 0.6s cubic-bezier(0.43, 0.87, 0.53, 0.93) transform 0.2s;
    position: relative;
}
@media screen and (max-width: 1200px) {
    .header-contact {
        display: none;
    }
    .header-menu-wrapper.active .header-contact {
        display: flex;
        padding-block: 1em;
    }
}

.throttle-scroll-down .header-contact {
    transition: 0.6s cubic-bezier(0.43, 0.87, 0.53, 0.93) transform;
}

.header-contact-tel {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 2px;
    margin-inline: auto;
    font-family: var(--nunito-font-family);
    font-size: clamp(1.5rem, 0.667rem + 1.11vw, 2rem);
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
@media screen and (max-width: 1200px) {
    .header-contact-tel {
        font-size: clamp(2.125rem, 1.678rem + 2.24vw, 2.75rem);
    }
}
.open-hours {
    font-size: clamp(0.875rem, 0.667rem + 0.28vw, 1rem);
    line-height: 1;
    margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
    .open-hours {
        font-size: clamp(1.125rem, 0.857rem + 1.34vw, 1.5rem);
    }
}
.header-contact-tel img {
    margin-top: -4px;
}

.rounded-btn {
    display: flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    border-radius: 999px;
    /* padding: 0.25em 0.35em 0.15em 0.6em;
    border: 1px solid transparent;
    width: fit-content;
    font-size: 23px;
    min-width: 260px; */
    padding: 0.25em 0.35em 0.15em 0.6em;
    border: 1px solid transparent;
    width: fit-content;
    font-size: 23px;
    min-width: 248px;
}
.rounded-btn.large {
    font-size: 20px;
    padding-left: 4.5em;
    padding-right: 5em;
    min-width: unset;
}
@media screen and (max-width:767px) {
    .rounded-btn.large {
        font-size: 16px;
        padding-top: 0.2em;
        padding-right: 3em;
        padding-bottom: 0.15em;
        padding-left: 2.5em;
    }
}
.bg-white {
    background-color: #fff;
}
.rounded-btn.bg-white {
    color: var(--primary-color);
}
.bg-primary {
    background-color: var(--primary-color);
}
.rounded-btn.bg-primary {
    color: #fff;
}
.rounded-btn.btn-bordered {
    border-color: #fff;
}
.rounded-btn.btn-color-bordered {
    border-color: #aaa;
}
.btn-right-arrow {
    position: relative;
    padding-right: 2em;
}
.btn-right-arrow::before,
.btn-right-arrow::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 0.7em;
    transform: translateY(-50%);
}
.btn-right-arrow::before {
    background-color: #fff;
    border-radius: 50%;
    width: 0.9em;
    height: 0.9em;
}
.btn-right-arrow::after {
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    z-index: 0;
    width: 0.35em;
    height: 0.45em;
    transform: translate(-64%, -50%);
}
.header-contact .contact-btn {
    font-size: 14px;
    padding: 0 0.8em;
    min-width: unset;
}
@media screen and (max-width: 1200px) {
    .header-contact .contact-btn {
        font-size: clamp(1rem, 0.687rem + 1.57vw, 1.438rem);
        line-height: 1.5;
    }
}
.drawer-links {
    display: none;
}
@media screen and (max-width: 1200px) {
    .drawer-links {
        display: none;
        padding-inline: var(--inner-padding-sp);
        padding-top: 20px;
    }
    .header-menu-wrapper.active .drawer-links {
        display: block;
    }
    .drawer-icons {
        max-width: 342px;
        margin-inline: auto;
    }
    .drawer-icon {
        display: inline-block;
        margin-bottom: 20px;
    }
    .drawer-icon + .drawer-icon {
        margin-left: 20px;
    }
    .drawer-banner {
        display: block;
        width: fit-content;
        margin-inline: auto;
    }
}
/*=============================
.hamburger-btn
=============================*/
.hamburger-btn {
    --height: 32px;
    --gap: calc(var(--height) / 2 - 2px);
    --gap-negative: calc(-1 * (var(--height) / 2));
    position: absolute;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: margin 0s ease !important;
    right: 32px;
    top: 32px;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .hamburger-btn {
        position: fixed;
        top: 24px;
        right: 24px;
    }
}
.hamburger-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    scale: 1 0.5;
    background-color: var(--text-color);
    border-radius: 4px;
}
.hamburger-btn,
.hamburger-btn span {
    display: none;
    transition: all 0.5s;
    box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
    .hamburger-btn,
    .hamburger-btn span {
        display: inline-block;
    }
}
.hamburger-btn span:nth-of-type(1) {
    top: 0;
}
.hamburger-btn span:nth-of-type(2) {
    top: var(--gap);
}
.hamburger-btn span:nth-of-type(3) {
    bottom: 0;
}
.hamburger-btn.active span {
    scale: 1;
    height: 2px;
}
.hamburger-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(var(--gap)) rotate(-45deg);
    transform: translateY(var(--gap)) rotate(-45deg);
}
.hamburger-btn.active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(var(--gap-negative)) rotate(45deg);
    transform: translateY(var(--gap-negative)) rotate(45deg);
}

.main-section {
    max-width: 1920px;
    margin-inline: auto;
}

.top-mv-inner {
    position: relative;
    margin-top: max(calc(100px - 6%), 14px);
}
@supports (width: 6dvw) {
    .top-mv-inner {
        margin-top: max(calc(100px - 6dvw), 14px);
    }
}
@media screen and (max-width: 767px) {
    .top-mv-inner {
        margin-top: calc(-22% + 80px);
        margin-bottom: calc(22% + 32px);
    }
    @supports (width: -22dvw) {
        .top-mv-inner {
            margin-top: calc(-22dvw + 80px);
        }
    }
}
.top-mv-left {
    font-size: clamp(1.375rem, 0.294rem + 2.25vw, 3rem);
    position: absolute;
    width: 32.2%;
    bottom: 15.4%;
    left: 18.75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: min(2%, 20px);
}
@supports (width: 2dvw) {
    .top-mv-left {
        gap: min(2dvw, 20px);
    }
}
@media screen and (max-width: 767px) {
    .top-mv-left {
        font-size: clamp(1rem, 0.195rem + 4.03vw, 2.125rem);
        width: 56.9%;
        left: 0;
        bottom: -4.6%;
    }
}
.top-mv-left span {
    position: relative;
    z-index: 0;
    color: #fff;
    font-weight: 400;
}
@media screen and (max-width:767px) {
    .top-mv-left span {
        background-color: #fff;
        color: var(--text-color);
        padding-inline: .2em;
    }
}
.top-mv-left span::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 22%;
    background-color: var(--primary-color);
    bottom: 12.5%;
    left: 0;
    z-index: -1;
}
@media screen and (max-width:767px) {
    .top-mv-left span::after {
        content: none;
    }
}
.top-mv-right {
    position: absolute;
    width: 18.3%;
    bottom: 7%;
    right: 13.75%;
}
@media screen and (max-width: 767px) {
    .top-mv-right {
        width: 44.7%;
        right: -4%;
        bottom: -27%;
    }
}

.scroll-arrow {
    position: absolute;
    right: 4.1%;
    bottom: 4dvw;
    animation: fluffy 3s infinite ease-in-out;
}
@keyframes fluffy {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
@media screen and (max-width: 767px) {
    .scroll-arrow {
        display: none;
    }
}

.section-inner {
    width: 62.5%;
    max-width: 1200px;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .section-inner {
        width: auto;
    }
}

.section-title {
    color: var(--primary-color);
    font-size: clamp(4rem, 2.67rem + 2.78vw, 6rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .section-title {
        font-size: 48px;
    }
}

.section-inner [lang="en"] {
    font-family: var(--nunito-font-family);
}

.main-section-subtitle {
    font-size: clamp(1.3rem, 1.167rem + 0.49vw, 2rem);
    color: var(--primary-color);
    line-height: 1.25;
    font-weight: 500;
}

.main-section-hgroup {
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .main-section-hgroup {
        padding-inline: var(--inner-padding-sp);
    }
}
.main-section-hgroup.centered {
    text-align: center;
    margin-inline: auto;
}

.top-mv {
    overflow-x: clip;
    margin-bottom: 104px;
}


.section-img-wrapper {
    position: relative;
    z-index: -1;
    margin-top: -72px;
}
@media screen and (max-width: 767px) {
    .section-img-wrapper {
        margin-top: -32px;
    }
}
.section-description-text-wrapper {
    width: 35.9%;
    margin-top: -120px;
}
@media screen and (max-width: 1200px) {
    .section-description-text-wrapper {
        width: auto;
        margin-top: 0;
        padding: 0 var(--inner-padding-sp);
    }
}
.section-description-text-wrapper .rounded-btn {
    margin-inline: auto;
    margin-top: 1.5em;
}
.block-right {
    margin-left: auto;
}
.section-description-text + .section-description-text { 
    margin-top: 1em;
}

.top-thoughts {
    position: relative;
    overflow-x: clip;
}
.top-thoughts-inner {
    padding-bottom: 72px;
}

.top-thoughts::before {
    content: "";
    background-image: url(../img/common_bg.png);
    position: absolute;
    display: block;
    background-size: cover;
    width: 100%;
    height: 130%;
    top: -30%;
    left: 0;
    aspect-ratio: 3508 / 2480;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .top-thoughts::before {
        content: "";
        background-image: url(../img/common_bg_sp.png);
        height: 140%;
        top: -40%;
        aspect-ratio: 780 / 3968;
    }
}

.top-thoughts-inner .section-description-text-wrapper {
    margin-top: -64px;
}
@media screen and (max-width:1200px) {
    .top-thoughts-inner .section-description-text-wrapper {
        margin-top: 24px;
    }
}

.text-end {
    text-align: end;
}

.top-about-us {
    background-color: #fff;
    position: relative;
    z-index: 0;
}

.top-about-us-inner {
    padding: 80px 0;
}

.top-about-us-inner .main-section-hgroup {
    margin-left: auto;
}

.top-about-us-inner .section-img-wrapper {
    width: 81.3%;
}
@media screen and (max-width: 767px) {
    .top-about-us-inner .section-img-wrapper {
        width: auto;
    }
}
.top-about-us-inner .section-description-text-wrapper {
    margin-top: -17%;
}
@media screen and (max-width: 1200px) {
    .top-about-us-inner .section-description-text-wrapper {
        margin-top: 20px;
    }
}
.top-about-us-inner .section-description-text {
    max-width: 248px;
    margin-left: auto;
    margin-right: 8.1%;
}
@media screen and (max-width: 1200px) {
    .top-about-us-inner .section-description-text {
        max-width: 100%;
        margin-inline: 0;
    }
    .top-about-us-inner .auto-break {
        white-space: normal;
        word-break: normal;
    }
}
.top-about-us-inner .section-description-text-wrapper .rounded-btn {
    margin-left: auto;
    margin-right: 8.1%;
}
@media screen and (max-width:1200px) {
    .top-about-us-inner .section-description-text-wrapper .rounded-btn {
        margin-inline: auto;
    }
}
.flex-glow-expand {
    flex: 1;
    text-align: center;
}
.top-services {
    overflow-x: clip;
    position: relative;
    padding-top: 92px;
    padding-bottom: 128px;
}
@media screen and (max-width:767px) {
    .top-services {
        padding: 64px 0;
    }
}
.top-services::before {
    content: "";
    background-image: url(../img/common_bg.png);
    position: absolute;
    display: block;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 3508 / 2480;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .top-services::before {
        content: "";
        background-image: url(../img/common_bg_sp.png);
        width: 100%;
        aspect-ratio: 780 / 3968;
    }
}

.top-services .main-section-hgroup {
    margin-bottom: 32px;
}
.horizontal-containers {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 4.3%;
    container-name: horizontal;
    container-type: inline-size;
}
@media screen and (max-width: 767px) {
    .horizontal-containers {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-inline: var(--inner-padding-sp);
    }
}
.horizontal-container-head {
    font-size: clamp(1rem, 0.167rem + 1.11vw, 1.5rem);
    font-weight: normal;
    margin-top: 0.7em;
    text-align: center;
}
@media screen and (max-width:767px) {
    .horizontal-container-head {
        font-size: 24px;
        text-align: start;
    }
}
.horizontal-container-text {
    font-size: clamp(0.75rem, 0.333rem + 0.5vw, 1rem);
    margin-top: 0.5em;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width:767px) {
    .horizontal-container-text {
        font-size: 16px;
        text-align: start;
    }
}
.horizontal-container-img-wrapper {
    max-width: 368px;
}
.service-text {
    margin-top: 2.75em;
}
@media screen and (max-width: 767px) {
    .service-text {
        padding-inline: var(--inner-padding-sp);
    }
}
.top-staff {
    background-color: #fff;
    position: relative;
    z-index: 0;
}
.top-staff-inner {
    padding-block: 72px;
}
.top-staff-inner .section-img-wrapper {
    margin-top: -120px;
}
@media screen and (max-width: 1200px) {
    .top-staff-inner {
        padding-block: 64px;
    }
    .top-staff-inner .section-description-text-wrapper {
        margin-top: 24px;
    }
    .top-staff-inner .main-section-hgroup {
        margin-left: auto;
    }
    .top-staff-inner .section-img-wrapper {
        margin-top: -8px;
    }
}
.recruit {
    aspect-ratio: 1920 / 1096;
    position: relative;
    max-width: 1920px;
    margin-inline: auto;
}
@media screen and (max-width: 1200px) {
    .recruit {
        aspect-ratio: unset;
    }
}
.recruit .rounded-btn {
    margin-top: 1em;
}
@media screen and (max-width: 1200px) {
    .recruit .rounded-btn {
        margin-inline: auto;
    }
}

@media screen and (max-width: 1200px) {
    .recruit .section-inner {
        width: auto;
    }
}

.top-recruit-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 1200px) {
    .top-recruit-bg {
        position: relative;
    }
}
picture:has(.top-recruit-bg)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0.2;
}

.float-container {
    position: absolute;
    background-color: rgba(227, 128, 148, 0.8);
    top: 15%;
    right: 0;
    color: #fff;
    padding: 64px min(360px, 19dvw) 64px 72px;
    max-width: min-content;
}
@media screen and (max-width: 1200px) {
    .float-container {
        position: relative;
        top: 0;
        max-width: 100%;
        padding: 46px 12.5% 64px 12.5%;
    }
}

@media screen and (max-width: 1200px) {
    .recruit .main-section-hgroup {
        text-align: center;
        margin-inline: auto;
    }
}

.text-white {
    color: #fff;
}

.recruit .main-section-subtitle {
    margin-bottom: 1em;
}
.foot-contact-inner {
    padding-block: 130px;
}

@media screen and (max-width: 767px) {
    .foot-contact-inner {
        padding-block: 0;
        padding-inline: var(--inner-padding-sp);
    }
}

.contact-container {
    padding: 68px min(124px, 10%) 40px min(124px, 10%);
    border-radius: 50px;
    background: linear-gradient(
        to right bottom,
        #f06f81 0%,
        rgba(127, 190, 168, 0.53) 100%
    );
    color: #fff;
    width: 80%;
}
@supports (width: 10dvw) {
    .contact-container { 
        padding: 68px min(124px, 10dvw) 40px min(124px, 10dvw);
    }
}
@media screen and (max-width: 767px) {
    .contact-container {
        padding-top: 52px;
        margin-block: 64px;
        border-radius: 10px;
        width: 100%;
    }
}
.contact-container .main-section-hgroup {
    margin-bottom: 40px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    justify-items: center;
    column-gap: 8px;
}
@media screen and (max-width: 1200px) {
    .two-column {
        grid-template-columns: 100%;
        row-gap: 14px;
    }
}
.two-column .column {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    align-items: center;
}
@media screen and (max-width: 1200px) {
    .two-column .column {
        grid-template-rows: none;
    }
}
.tel-big {
    font-family: var(--nunito-font-family);
    font-size: clamp(1.9rem, 0.733rem + 2.22vw, 3rem);
    font-weight: 600;
}
.contact-container .contact-btn {
    font-size: clamp(0.85rem, 0.167rem + 1.11vw, 1.5rem);
    min-width: unset;
    padding-left: calc(0.6em + 7px);
}
.contact-container .contact-btn img {
    width: clamp(1rem, -0.25rem + 1.67vw, 1.75rem);
}
.icon-whiten {
    filter: brightness(0) invert(1);
}
.links {
    background-color: var(--primary-color);
}
.link-buttons {
    width: 62.5%;
    margin-inline: auto;
    padding-block: 104px;
    display: grid;
    justify-items: center;
}
@media screen and (max-width: 767px) {
    .link-buttons {
        width: auto;
        padding-inline: var(--inner-padding-sp);
        padding-block: 48px;
    }
}
.link-buttons > * {
    width: 50%;
}
@media screen and (max-width: 767px) {
    .link-buttons > * {
        width: 100%;
        max-width: 420px;
    }
}
.link-buttons > *:not(:last-child) {
    margin-bottom: 4%;
}
@media screen and (max-width:767px) {
    .link-buttons > *:not(:last-child) {
        margin-bottom: 6%;
    }
}
.access-inner {
    padding-top: 104px;
    text-align: center;
}
@media screen and (max-width:767px) {
    .access-inner {
        padding-top: 64px;
    }
}
.access-inner .main-section-hgroup {
    margin-inline: auto;
    margin-bottom: 28px;
}

.access-map-wrapper {
    max-width: 100%;
}

@media screen and (max-width: 1200px) {
    .access-map-wrapper {
        padding-inline: var(--inner-padding-sp);
        aspect-ratio: 338 / 192;
    }
    .access-map-wrapper iframe {
        height: 100%;
    }
}

.info-office-wrapper {
    width: 62.5%;
    margin-inline: auto;
    margin-top: -82px;
    margin-bottom: max(-4.6%, -90px);
}
@supports (width: -4.6dvw) {
    .info-office-wrapper {
        margin-bottom: max(-4.6dvw, -90px);
    }
}

@media screen and (max-width: 1200px) {
    .info-office-wrapper {
        width: 100%;
        margin-top: 18px;
        margin-bottom: 64px;
        padding-inline: var(--inner-padding-sp);
    }
}

.info-office {
    width: 55.2%;
    margin-left: auto;
    border-radius: 8px;
    background: #fff;
    border: 3px solid var(--primary-color);
    padding: 4px 12px 8px 12px;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .info-office {
        width: 100%;
        margin-inline: auto;
        border: none;
        background: none;
        padding: 0;
    }
}

.definition-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: fit-content;
    text-align: start;
    font-size: clamp(0.75rem, 0.125rem + 0.83vw, 1.125rem);
}
.definition-list dt {
    width: 20.7%;
}
.definition-list dd {
    width: 79.3%;
}
.definition-list :is(dt, dd) {
    border-bottom: 1px solid var(--primary-color);
    padding-block: 12px;
    line-height: 1.5;
}
.info-office .welfware-id {
    font-size: 14px;
    text-align: start;
    line-height: 1.5;
    padding-top: 6px;
}
@media screen and (max-width: 1200px) {
    .info-office .welfware-id {
        font-size: 12px;
    }
}

.common-footer {
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920 / 500;
    margin-inline: auto;
    background-image: url(../img/footer_bg.png);
    background-size: cover;
}
@media screen and (max-width: 1200px) {
    .common-footer {
        background-image: url(../img/footer_bg_sp.png);
        aspect-ratio: unset;
    }
}
.footer-inner {
    padding-top: 6.25%;
}
@media screen and (max-width: 767px) {
    .footer-inner {
        padding-top: 80px;
        padding-bottom: 28px;
        padding-inline: var(--inner-padding-sp);
    }
}
@media screen and (max-width:481px) {
    .footer-inner {
        padding-bottom: calc(100vw / 5.4474 + 28px);
    }
}
.footer-logo {
    display: block;
    width: 29.9%;
}
@media screen and (max-width: 767px) {
    .footer-logo {
        max-width: 280px;
        width: 85%;
    }
}
.footer-nav {
    margin-block: 10%;
}
@media screen and (max-width: 767px) {
    .footer-nav {
        margin-block: 7%;
    }
}
.footer-nav ul {
    display: flex;
    width: fit-content;
    gap: 22px;
    font-size: clamp(0.8rem, 0.458rem + 0.5vw, 1.125rem);
    margin-inline: auto;
    color: #fff;
}
@media screen and (max-width: 1200px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 12px;
        margin-inline-start: 0;
    }
}
.copyright {
    color: #fff;
    font-size: 12px;
    text-align: center;
}

/*--------------------------------------
  about-us
--------------------------------------*/
.anchor-links-wrapper {
    position: sticky;
    z-index: 2;
    top: 130px;
    left: 0;
    width: 96dvw;
    max-width: 1920px;
    margin-inline: auto;
    padding-left: min(4dvw, 58px);
    height: 0;
}
@media screen and (max-width:1200px) {
    .anchor-links-wrapper {
        display: none;
    }
}
.anchor-links {
    display: flex;
    flex-direction: column;
    gap: .4em;
    font-size: clamp(1.25rem, 0.833rem + 0.56vw, 1.5rem);
    position: relative;
    line-height: 1.5;
    width: fit-content;
}
.anchor-link {
    position: relative;
}
.anchor-link::before {
    position: absolute;
    left: -0.95em;
    content: "";
    display: block;
    background-color: transparent;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    height: 0.75em;
    width: 0.64em;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: top;
    transition: rotate .8s cubic-bezier(0.5, 0.5, 0, 0.90);
}
.anchor-link.active::before {
    background-color: var(--primary-color);
    rotate: x 540deg;
}
.aboutus-mv {
    background-color: #fff;
    padding-block: 120px;
}
@media screen and (max-width:767px) {
    .aboutus-mv {
        padding-top: 81px;
        padding-bottom: 64px;
    }
}
.aboutus-mv-inner {
    width: 81.25%;
    margin-left: auto;
}
@media screen and (max-width:767px) {
    .aboutus-mv-inner {
        width: 100%;
    }
}
.aboutus-service-inner {
    padding-block: 104px 106px;
}
@media screen and (max-width:767px) {
    .aboutus-service-inner {
        padding-block: 0 106px;
    }
}
.aboutus-service-inner .main-section-hgroup {
    margin-bottom: 64px;
}
@media screen and (max-width:1200px) {
    .aboutus-service-inner .main-section-hgroup {
        padding-top: 1em;
    }
    .aboutus-service-inner .main-section-hgroup .section-title {
        line-height: 1.1;
    }
}
.aboutus-service-contents {
    position: relative;
    overflow: clip;
}
.aboutus-service-contents::before {
    content: "";
    background-image: url(../img/common_bg.png);
    position: absolute;
    display: block;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 3508 / 2480;
    z-index: -1;
}
.service-contents-area {
    display: flex;
    gap: 24px;
    align-items: center;
}
@media screen and (max-width:1200px) {
    .service-contents-area {
        flex-direction: column-reverse;
    }
}
.service-contents-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 40px;
}
@media screen and (max-width:1200px) {
    .service-contents-list {
        grid-template-columns: 1fr;
        padding-inline: var(--inner-padding-sp);
    }
}
.service-contents-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
    position: relative;
}
.service-contents-title {
    font-size: clamp(1rem, -0.042rem + 1.39vw, 1.625rem);
    position: relative;
    margin-left: 1em;
    margin-bottom: 1em;
}
.service-contents-title::before {
    display: block;
    position: absolute;
    content: "";
    top: 1em;
    transform: translateY(-50%);
    left: -1em;
    width: 5.88em;
    height: 3.5em;
    background-image: url(../img/list-decoration.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.44;
}
.service-contents-description {
    font-size: clamp(0.875rem, 0.458rem + 0.56vw, 1.125rem);
    line-height: 1.75;
}
.aboutus-service-area {
    background-color: #fff;
}
.aboutus-service-area-inner {
    padding-block: 104px;
    padding-inline: var(--inner-padding-sp);
}
@media screen and (max-width:767px) {
    .aboutus-service-area-inner {
        padding-block: 64px;
    }
}
.aboutus-service-area-inner .main-section-hgroup {
    margin-bottom: 48px;
}
.service-area-container {
    display: flex;
    gap: 40px;
    background-color: #FFF8E9;
    border-radius: 15px;
    padding: 40px 76px;
}
@media screen and (max-width:1200px) {
    .service-area-container {
        flex-direction: column;
        gap: 24px;
        padding: 30px 24px 40px 24px;
    }
}
.service-area-first {
    display: grid;
    place-content: center;
    text-align: center;
    font-size: clamp(1rem, 0.583rem + 0.56vw, 1.25rem);
}
.service-area-second {
    display: grid;
    place-content: center;
    flex-basis: 40%;
    flex-shrink: 0;
}
.service-area-prefecture {
    font-size: clamp(2rem, 0.333rem + 2.22vw, 3rem);
}
.service-area-description {
    font-size: clamp(1.125rem, -0.333rem + 1.94vw, 2rem);
    line-height: 1.5;
    margin-bottom: .2em;
}
.aboutus-users-voice {
    position: relative;
    overflow: clip;
}
.aboutus-users-voice::before {
    content: "";
    background-image: url(../img/common_bg.png);
    position: absolute;
    display: block;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 3508 / 2480;
    z-index: -1;
}
.aboutus-users-voice-inner {
    padding-block: 104px;
    padding-inline: var(--inner-padding-sp);
}
@media screen and (max-width:1200px) {
    .aboutus-users-voice-inner {
        width: auto;
        padding-bottom: 80px;
    }
}
.users-voices {
    display: flex;
    gap: 72px;
    flex-direction: column;
    counter-reset: users-voice;
    margin-top: 90px;
}
@media screen and (max-width:1200px) {
    .users-voices {
        margin-top: 60px;
    }
}
.users-voice {
    background-color: #fff;
    border-radius: 50px;
    padding: 30px 50px 24px 112px;
    position: relative;
}
@media screen and (max-width:1200px) {
    .users-voice {
        padding: 10px 16px 16px 0;
        border-radius: 16px;
    }
}
.case-number {
    white-space: pre-wrap;
    font-size: 24px;
    line-height: 1;
    font-family: var(--nunito-font-family);
    inline-size: fit-content;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding-inline: 1.2em;
    padding-top: 0.8em;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    position: absolute;
    left: -4%;
    top: -1em;
}
@media screen and (max-width:1200px) {
    .case-number {
        font-size: 20px;
        top: -1em;
        padding-inline: 0.9em;
        padding-top: 0.8em;
    }
}
.case-number::after {
    display: block;
    text-align: center;
    counter-increment: users-voice;
    content: counter(users-voice);
    font-size: 48px;
    line-height: 1.2;
}
@media screen and (max-width:1200px) {
    .case-number::after {
        font-size: 40px;
    }
}
.users-profile {
    color: var(--primary-color);
    margin-bottom: 1em;
}
@media screen and (max-width:1200px) {
    .users-profile {
        padding-left: 88px;
        min-height: 62px;
        display: grid;
        align-items: center;
        margin-bottom: .4em;
        font-size: 20px;
    }
    .users-voice-text {
        padding-left: 24px;
        line-height: 1.8;
    }
}
@media screen and (max-width:767px) {
    .users-profile {
        font-size: 16px;
    }
}
.aboutus-howtouse {
    background-color: #fff;
}
.aboutus-howtouse-inner {
    padding-block: 104px;
    padding-inline: var(--inner-padding-sp);
}
.aboutus-howtouse-inner .main-section-hgroup {
    margin-bottom: 104px;
}
.how-to-use-list {
    display: flex;
    flex-direction: column;
    gap: 96px;
    counter-reset: how-to-use;
}
@media screen and (max-width:1200px) {
    .how-to-use-list {
        max-width: 80%;
        margin-inline: auto;
    }
}
.how-to-use-list li {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}
@media screen and (max-width:1200px) {
    .how-to-use-list li {
        flex-direction: column;
    }
}
.how-to-use-list li + li::before {
    position: absolute;
    content: "";
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    width: 41px;
    height: 21px;
}
.how-to-use-img {
    flex-basis: 39%;
    min-width: 260px;
}
@media screen and (max-width:1200px) {
    .how-to-use-img {
        align-self: center;
        margin-bottom: 8px;
    }
}
.how-to-use-body {
    padding-left: 9%;
}
@media screen and (max-width:1200px) {
    .how-to-use-body {
        padding-left: 0;
    }
}
.how-to-use-title {
    font-size: clamp(2rem, 0.133rem + 2.12vw, 3rem);
    position: relative;
    font-weight: 400;
}
.how-to-use-title::before {
    position: absolute;
    left: -0.85em;
    top: 50%;
    transform: translateY(-50%);
    counter-increment: how-to-use;
    content: counter(how-to-use);
    font-family: var(--nunito-font-family);
    color: var(--primary-color);
    font-size: 78px;
    font-weight: normal;
    margin-right: 12px;
}
@media screen and (max-width:1200px) {
    .how-to-use-title {
        font-size: clamp(1.4rem, 0.333rem + 2.12vw, 3rem);
    }
    .how-to-use-title::before {
        font-size: 72px;
        position: static;
        transform: none;
    }
}
@media screen and (max-width:767px) {
    .how-to-use-title {
        display: flex;
        align-items: center;
    }
    .how-to-use-title::before {
        font-size: 60px;
    }
}
.how-to-use-body {
    display: grid;
    place-content: center;
    gap: 20px;
}
.inline-contact-button {
    border-radius: 4px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: clamp(0.688rem, -0.065rem + 1vw, 1rem);
    line-height: 1.3;
    text-align: center;
    width: fit-content;
}
@media screen and (max-width:1200px) {
    .inline-contact-button {
        width: 100%;
    }
}
.inline-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7em 1.2em 0.6em;
    margin: auto;
    position: relative;
    vertical-align: middle;
}
@media screen and (max-width:1200px) {
    .inline-button {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 4px;
    }
}
.inline-button::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0.5em;
    height: 0.5em;
    aspect-ratio: 1;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
}
@media screen and (max-width:1200px) {
    .inline-button::after {
        display: none;
    }
}
.inline-button + .inline-button::before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 1lh;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
@media screen and (max-width:1200px) {
    .inline-button + .inline-button::before {
        top: 0;
        left: 50%;
        width: 95%;
        height: 2px;
        scale: 1 0.5;
        transform: translateX(-50%);
    }
}
.button-icon {
    max-height: .95em;
    width: auto;
    margin-right: 2px;
}
.button-icon-large {
    max-height: 1.2em;
    width: auto;
}
@media screen and (max-width:1600px) {
    .narrow-hidden {
        display: none;
    }
}
@media screen and (max-width:1200px) {
    .narrow-hidden {
        display: inline;
    }
}
.aboutus-usage-fee {
    position: relative;
    overflow: clip;
}
.aboutus-usage-fee::before {
    content: "";
    background-image: url(../img/common_bg.png);
    position: absolute;
    display: block;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 3508 / 2480;
    z-index: -1;
}
.aboutus-usage-fee-inner {
    padding-block: 104px;
}
.aboutus-usage-fee-inner .main-section-hgroup {
    margin-bottom: 64px;
}
.table-wrapper {
    margin-bottom: 80px;
}
@media screen and (max-width:767px) {
    .table-wrapper {
        width: calc(100% - var(--inner-padding-sp)* 2);
        margin-inline: auto;
    }
}
.first-column-colored-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 20px;
    line-height: 1.5;
}
@media screen and (max-width:767px) {
    .first-column-colored-table {
        font-size: 14px;
    }
}
.first-column-colored-table caption {
    text-align: start;
    font-size: 22px;
    line-height: 2;
}
@media screen and (max-width:767px) {
    .first-column-colored-table caption {
        font-size: 14px;
    }
}
.first-column-colored-table th {
    background-color: #FFF8E9;
    font-weight: 400;
    text-align: center;
    padding-block: 24px;
    width: 50%;
}
.first-column-colored-table th + th {
    border-left: 1px solid var(--primary-color);
}
.first-column-colored-table td {
    text-align: center;
    padding-block: 24px;
    border-top: 1px solid var(--primary-color);
    background-color: #fff;
}
.first-column-colored-table td + td {
    border-left: 1px solid var(--primary-color);
}
.table-bottom-caption {
    font-size: 12px;
}
.text-end {
    text-align: end;
}
/*--------------------------------------
  staff
--------------------------------------*/
.staff-mv {
    background-color: #fff;
    padding-block: 120px;
}
@media screen and (max-width:1200px) {
    .staff-mv {
        padding-top: 81px;
        padding-bottom: 64px;
    }
}
.staff-mv-inner {
    width: 81.25%;
    margin-left: auto;
}
@media screen and (max-width:767px) {
    .staff-mv-inner {
        width: 100%;
    }
}
.staff-interviews {
    position: relative;
    overflow: clip;
}
.staff-interviews::before {
    content: "";
    background-image: url(../img/common_bg.png);
    position: absolute;
    display: block;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 3508 / 2480;
    z-index: -1;
}
.staff-interviews-inner {
    width: 70%;
    max-width: 1350px;
    margin-inline: auto;
    padding-top: 104px;
    padding-bottom: 104px;
}
@media screen and (max-width:1200px) {
    .staff-interviews-inner {
        width: auto;
        padding-bottom: 64px;
    }
}
@media screen and (max-width:1200px) {
    .staff-interviews-inner .main-section-hgroup {
        margin-bottom: 30px;
    }
}
.staff-list {
    display: flex;
    flex-direction: column;
}
.staff-item {
    display: flex;
    justify-content: space-between;
    background-size: contain;
    background-repeat: no-repeat;
    padding-block: 8%;
    position: relative;
}
@media screen and (max-width:1200px) {
    .staff-item {
        flex-direction: column !important;
        padding-block: 0;
        background-image: none !important;
        align-items: center;
    }
    .staff-item:not(:last-child) {
        padding-bottom: 120px;
    }
}
.staff-item + .staff-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-image: url(../img/staff_interview_separator.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 9.6%;
    aspect-ratio: 133 / 13;
    max-width: 133px;
    mix-blend-mode: multiply;
}
@media screen and (max-width:1200px) {
    .staff-item + .staff-item::before {
        top: -60px;
        width: 260px;
    }
}
@media screen and (min-width:1201px) {
    

    .staff-item:nth-child(2n - 1) {
        background-image: url(../img/staff_interview_bg1.png);
        background-position: right top;
        background-size: 80% 103%;
    }
    .staff-item:nth-child(2n) {
        flex-direction: row-reverse;
        background-image: url(../img/staff_interview_bg3.png);
        background-position: left top;
        background-size: 80% 100%;
    }    
}
.staff-item-img-wrapper {
    position: relative;
    height: fit-content;
    flex-shrink: 0;
    max-width: 26%;
}
@media screen and (max-width:1200px) {
    .staff-item-img-wrapper {
        max-width: none;
        padding-inline: var(--inner-padding-sp);
    }
}
.staff-profile {
    position: absolute;
    bottom: 1em;
    right: 0;
    text-align: center;
    font-size: clamp(1.25rem, 1.67vw, 2rem);
    z-index: 0;
}
@media screen and (max-width:1200px) {
    .staff-profile {
        position: static;
        margin-block: 16px;
    }
}
.staff-item:nth-child(2n) .staff-profile {
    left: 0;
    right: auto;
}
.staff-profile::before {
    content: "";
    width: calc(100% + 2.15em);
    aspect-ratio: 136 / 131;
    display: block;
    background-image: url(../img/staff_interview_decoration.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 0;
    opacity: .9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width:1200px) {
    .staff-profile::before {
        content: none;
    }
}
.staff-profile-name {
    font-size: clamp(1.25rem, 1.67vw, 2rem);
    font-weight: normal;
    position: relative;
    z-index: 0;
}
@media screen and (max-width:1200px) {
    .staff-profile-name {
        font-size: 32px;
    }
}
.staff-profile p {
    font-size: clamp(0.75rem, 0.333rem + 0.56vw, 1rem);
    line-height: 1.5;
    position: relative;
    z-index: 0;
}
@media screen and (max-width:1200px) {
    .staff-profile p {
        font-size: 16px;
    }
}
.staff-item-body {
    font-size: 14px;
    padding-right: 5em;
    padding-left: 4em;
    overflow: hidden;
}
@media screen and (max-width:1200px) {
    .staff-item-body {
        padding: 24px !important;
        width: 100%;
        background-color: #fff;
    }
}
.staff-item:nth-child(2n) .staff-item-body {
    padding-left: 7em;
    padding-right: 3em;
}
.staff-item:nth-child(3) .staff-item-body {
    padding-left: 5em;
    padding-right: 6em;
}
.staff-faq-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.staff-faq-list dt {
    color: var(--primary-color);
    font-size: clamp(1.125rem, 0.5rem + 0.83vw, 1.5rem);
    line-height: 1.4;
    margin-top: 0.5em;
    margin-bottom: 0.4em;
}
.staff-faq-list dd {
    font-size: clamp(0.75rem, 0.333rem + 0.56vw, 1rem);
    line-height: 1.5;
}
/*--------------------------------------
  contact
--------------------------------------*/
.contact-top {
    padding-top: 120px;
}
@media screen and (max-width:767px) {
    .contact-top {
        padding-top: 70px;
    }
}

.contact-head-img {
    margin-bottom: 84px;
    margin-inline: auto;
}
@media screen and (max-width:767px) {
    .contact-head-img {
        margin-bottom: 32px;
    }
}

.lh-small {
    line-height: 0.8;
}
.contact-inner {
    padding-inline: var(--inner-padding-sp);
}
@media screen and (max-width:1200px) {
    .contact-inner {
        width: auto;
    }
}
.contact-inner .main-section-hgroup {
    margin-bottom: 180px;
}
@media screen and (max-width:767px) {
    .contact-inner .main-section-hgroup {
        margin-bottom: 80px;
        padding-inline: 0;
    }
}

.confirm-text {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 60px;
}
@media screen and (max-width:767px) {
    .confirm-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

.tab-container {
    width: 100%;
    min-width: 150px;
}

[role="tablist"] {
    display: grid;
    text-align: center;
    grid-template-columns: 1fr 1fr;
}

button[role="tab"] {
    border: none;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    padding: 20px 20px 16px 20px;
    font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.4rem);
    transition: background-color .3s ease, color .3s ease;

}
@media screen and (max-width:1200px) {
    button[role="tab"] {
        padding: 12px 20px 8px 20px;
        font-size: clamp(0.875rem, 0.65rem + 0.63vw, 1.4rem);
    }
}
button[role="tab"][aria-selected="true"] {
    background-color: var(--primary-color);
    color: #fff;
}
button[role="tab"][aria-selected="false"] {
    background-color: #ececec;
    color: var(--text-color);
}
@media screen and (max-width:767px) {
    button[role="tab"] {
        font-size: 16px;
        padding: 10px 10px 8px 10px;
    }
}

[role="tabpanel"] {
    padding-block: 40px;
}
.is-hidden[role="tabpanel"] {
    display: none;
}
.contact-field-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: none;
    margin-bottom: 56px;
}
@media screen and (max-width:767px) {
    .contact-field-area {
        gap: 16px;
        margin-bottom: 24px;
    }
}
.contact-field {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
@media screen and (max-width:767px) {
    .contact-field {
        flex-direction: column;
    }
}
.contact-field-title {
    width: fit-content;
}
.label-required {
    background-color: var(--primary-color);
    border-radius: 100px;
    color: #fff;
    padding: 0px 10px 0px 10px;
    font-size: 12px;
    line-height: 1.6;
    margin-left: 8px;
    display: inline-block;
}
.contact-field-input {
    width: 60%;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 0 6px;
    flex-shrink: 0;
}
@media screen and (max-width:767px) {
    .contact-field-input {
        width: 100%;
    }
}
.contact-field-input.confirm {
    border: 1px solid #aaa;
}
.contact-field-input .contact-field-input {
    width: 100%;
    cursor: pointer;
}
.contact-field-input::placeholder {
    color: #CCCCCC;
}
.contact-field-input:invalid {
    background: #fff8f5;
}
textarea.contact-field-input {
    min-height: 300px;
}
.radio-field {
    width: 60%;
    display: flex;
    gap: 12px;
}
@media screen and (max-width:767px) {
    .radio-field {
        width: 100%;
    }
}
.radio-field label {
    display: inline-flex;
    align-items: center;
}
.radio-field label {
    display: inline-flex;
    align-items: center;
}
.radio-field [type="radio"] {
    scale: 1.5;
    accent-color: #b27682;
    margin-inline: 4px;
}
.contact-field-input::file-selector-button {
    font-weight: bold;
    color: white;
    background: #b27682;
    font-size: 14px;
    border: 0;
    border-radius: 10em;
    padding: 8px 16px;
    text-align: center;
    cursor: pointer;
}
input[type="file"] {
    padding: 6px;
}
  
.contact-bottom {
    margin-block: 80px;
    margin-inline: auto;
}
.contact-btn-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-block: 80px;
    margin-inline: auto;
}

/*--------------------------------------
  regulations
--------------------------------------*/

.regulations-inner {
    margin-top: 280px;
    margin-bottom: 120px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
}
@media screen and (max-width:767px) {
    .regulations-inner {
        padding-inline: var(--inner-padding-sp);
    }
}
.regulations-first-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 96px;
}
@media screen and (max-width:767px) {
    .regulations-first-title {
        font-size: 20px;
        line-height: 1.6;;
    }
}
.regulations-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.regulation-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}
.regulation-body {
    display: flex;
    gap: 40px;
}
@media screen and (max-width:767px) {
    .regulation-body {
        gap: 10px;
    }
}
.regulation-numbering {
    font-size: 16px;
    flex-shrink: 0;
}
.regulation-text {
    font-size: 16px;
    flex-grow: 1;
}
.regulation-text-detail-list {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: regulation-details;
}
.regulation-text-detail-list .numbering {
    display: flex;
    gap: 0.75em;
}
.regulation-text-detail-list .numbering::before {
    counter-increment: regulation-details;
    width: 1.4em;
    text-align: center;
    flex-shrink: 0;
}
.regulation-text-detail-list .numbering-plain::before {
    content: counter(regulation-details);
}
.regulation-text-detail-list .numbering-parenthesized::before {
    content: "(" counter(regulation-details) ")";
}

/*--------------------------------------
  animate
--------------------------------------*/
.animate-opacity {
    opacity: 0;
    transition: 1s ease opacity;
}
.animate-opacity.started{
    opacity: 1;
}

/*--------------------------------------
  Instagram偽アカウント注意喚起及びその他注意喚起
--------------------------------------*/

.attention-instagram{
    line-height: 1.75;
}

.attention-instagram .section-inner{
    max-width: 900px;
}

.attention-instagram h2{
    line-height: 1.75;
    margin-block-start: 2em;
    margin-block-end: 1em;
}

.attention-instagram p{
    margin-bottom: 1em;
}

@media screen and (max-width:767px) {
    .attention-instagram p{
        margin-bottom: 1.5em;
    }
}

.attention-instagram .numbering strong{
    display: contents;
}

.attention-instagram .regulation-text-detail-list{
    gap: 12px;
}

.attention-area{
    text-align: center;
    margin-bottom: 3em;
}

@media screen and (max-width:767px) {
    .attention-area{
        text-align: left;
        padding: 0 var(--inner-padding-sp);
    }
}


.attention-area a{
    text-decoration: underline;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.attention-area span{
    flex-shrink: 0;
}

.attention-area__icon img{
    width: 15px;
    height: auto;
    color: var(--primary-color);;
}
