@charset "utf-8";
body {
    color: #333;
}

:root {
    --main: #006eba;
    --dark: #005599;
    --sub: #2ea7e0;
    --sub2: #4b8078;
    --sub2-r: #c3fcf1;
    --accent: #f3981f;
    --bg: #eff8f7;
}

img {
image-rendering: -webkit-optimize-contrast;
}

.noto {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-optical-sizing: auto;
    font-style: normal;
}

.noto5 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
}

.osw {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
}

.mt1 {margin-top: 1em}
.mt2 {margin-top: 2em}
.mb1 {margin-bottom: 1em}
.mb2 {margin-bottom: 2em}

#gNavi li a {
    color: #555;
}

.bg_right {
    background-color: var(--bg);
}

.sec_pad {
    padding: 5vw 5%;
}

.bg_img {
    background:
        url("../welfare-support/img/bg_img1.webp") no-repeat left top / 25vw auto,
        url("../welfare-support/img/bg_img2.webp") no-repeat right bottom / 28vw auto;
}

@media all and (max-width: 768px) {
    .sec_pad {
        padding: 10vw 5%;
    }
    
    .bg_img {
        background:
            url("../welfare-support/img/bg_img1.webp") no-repeat left top / 30vw auto,
            url("../welfare-support/img/bg_img2.webp") no-repeat right bottom / 33vw auto;
    }
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

@media all and (max-width: 768px) {
    .pc_only {
        display: none;
    }
    
    .sp_only {
        display: block;
    }
}

/*===========================================
       fade設定
===========================================*/
.fade_up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.fade_up_on {
    opacity: 1;
    transform: translateY(0);
}

/*=========== ファーストビュー ===========*/
.first_view {
	padding-top: 80px;
	height: 28vw;
    background-image: url(../welfare-support/img/fv_back.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    font-feature-settings: "palt";
}

.first_view .txt_box {
    width: 80vw;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1vw;
}

.first_view .txt_box p {
    font-size: clamp(15px,2vw,28px);
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.first_view .txt_box h1 {
    font-size: clamp(24px,4.5vw,70px);
    line-height: 1.3;
    letter-spacing: 0.1em;
    position: relative;
}

.first_view .txt_box .h1_box {
    position: relative;
}

.first_view .txt_box h1 span {
  background: linear-gradient(
    to top,
    #fff 0%,
    #fff 40%,
    transparent 40%,
    transparent 100%
  );

  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;

  padding: 0 0.08em 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;

  animation: markerSlide 0.8s ease-out forwards;
}

.first_view .txt_box h1 span:nth-of-type(1) {
  animation-delay: 0.2s;
}

.first_view .txt_box h1 span:nth-of-type(2) {
  animation-delay: 1.15s;
}

.first_view .btn {
    position: absolute;
    bottom: 0;
    right: -15vw;
    display: block;
    width: 12vw;
    border-radius: 50%;
    transition: all 0.2s;
}

.first_view .btn:hover {
    background-color: var(--sub);
}

.first_view .btn img {
    width: 100%;
}

.first_view .btn:hover img {
    opacity: 0.8;
}

@keyframes markerSlide {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}

@media all and (max-width: 768px) {
    .first_view {
        padding-top: 55px;
        height: 50vw;
    }

    .first_view .txt_box {
        width: 90vw;
        gap: 2vw;
    }
    
    .first_view .txt_box p {
        font-size: clamp(13px,3vw,28px);
        line-height: 1.3;
        letter-spacing: 0.1em;
    }
    
    .first_view .txt_box h1 {
        font-size: clamp(24px,6vw,70px);
        line-height: 1.3;
        letter-spacing: 0.1em;
        position: relative;
    }

    .first_view .btn {
        bottom: -2vw;
        right: -23vw;
        width: 20vw;
    }
}

.ws_nav {
    background-color: var(--accent);
    font-size: clamp(14px,1.5vw,16px);
    padding: 1.5em 1em;
}

.ws_nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5em;
}

.ws_nav ul li a {
    background-color: white;
    padding: 0.2em 1.5em .3em;
    border-radius: 2em;
    transition: all 0.2s;
}

.ws_nav ul li a:hover {
    background-color: var(--main);
    color: white;
}

@media all and (max-width: 768px) {
    .ws_nav {
        font-size: clamp(12px, 2vw, 15px);
        padding: 1em;
    }

    .ws_nav ul {
        display: flex;
        justify-content: center;
        gap: 1em;
        flex-wrap: wrap;
    }
    
    .ws_nav ul li {
        width: calc(50% - 1em);
    }
    
    .ws_nav ul li:nth-child(4),.ws_nav ul li:nth-child(5) {
        width: calc(25% - 1em);
    }

    .ws_nav ul li a {
        display: block;
        text-align: center;
        padding: 0.2em 1em .3em;
    }
}

/*=========== top section ===========*/
.h2_box {
    text-align: center;
    margin-bottom: 5vw;
}

.h2_box p {
    color: var(--accent);
    font-size: clamp(15px,2vw,24px);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.5em;
}

.h2_box h2 {
    font-size: clamp(20px,3vw,40px);
    letter-spacing: 0.1em;
    line-height: 1;
    position: relative;
}

.h2_box h2:after {
    content: "";
    display: block;
    width: 2.5em;
    height: 3px;
    border-radius: 1.5px;
    background-color: var(--accent);
    position: absolute;
    bottom: -0.8em;
    left: 50%;
    transform: translateX(-50%);
}

.h2_lead {
    font-size: clamp(15px,1.5vw,20px);
    line-height: 2;
    text-align: center;
    margin-bottom: 3em;
}

.service_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw 5%;
}

.service_list li {
    width: 30%;
}

.service_list.wide li {
    width: 47.5%;
}

.service_list li a {
    display: flex;
    border: 2px solid var(--main);
    border-radius: 15px;
    height: 4em;
    overflow: hidden;
    font-size: clamp(15px,1.5vw,20px);
}

.service_list li a span:nth-child(1) {
    font-size: clamp(20px,2vw,35px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    background-color: var(--main);
    line-height: 1;
    text-align: center;
    color: white;
}

.service_list li a span:nth-child(2) {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0.5em 1.5em 0.5em 0.5em;
    line-height: 1.2;
    background-color: white;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.2s;
}

.service_list li a span:nth-child(2)::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--main);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    z-index: -1;
}

.service_list li a:hover span:nth-child(2) {
    color: white;
}

.service_list li a:hover span:nth-child(2)::before {
    transform: scaleX(1);
}

.service_list li a span:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 0.7em;
    top: 50%;
    width: 0.55em;
    height: 0.55em;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    transform: translateY(-50%) rotate(45deg);
    transition:
        border-color 0.3s ease,
        right 0.3s ease;
}

.service_list li a:hover span:nth-child(2)::after {
    border-color: white;
    right: 0.5em;
}

.content_wrap .wide_img {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.back_btn_wrap {
    text-align: center;
    margin-top: clamp(50px, 8vw, 100px);
}

.back_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 1em 2.5em 1em 3.5em;
    border: 2px solid var(--accent);
    border-radius: 999px;
    background-color: var(--accent);
    color: #fff;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.back_btn::before {
    content: "";
    position: absolute;
    left: 1.4em;
    top: 50%;
    width: 0.55em;
    height: 0.55em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: left 0.3s ease;
}

.back_btn:hover {
    background-color: #fff;
    color: var(--accent);
    transform: translateY(-2px);
}

.back_btn:hover::before {
    left: 1.1em;
}

@media all and (max-width: 768px) {
    .h2_box {
        margin-bottom: 10vw;
    }

    .h2_box p {
        font-size: clamp(14px, 2vw, 24px);
    }

    .h2_box h2 {
        font-size: clamp(18px, 3vw, 40px);
    }

    .h2_box h2:after {
        height: 2px;
    }

    .h2_lead {
        font-size: clamp(13px, 2vw, 18px);
        text-align: justify;
    }

    .service_list {
        gap: 5vw 5%;
    }

    .service_list li {
        width: 100%;
    }

    .service_list.wide li {
        width: 100%;
    }

    .service_list li a {
        border: 1px solid var(--main);
        border-radius: 10px;
        height: 4em;
        font-size: clamp(13px, 2vw, 18px);
    }

    .service_list li a span:nth-child(1) {
        font-size: clamp(18px, 2.4vw, 30px);
    }

    .back_btn_wrap {
        text-align: center;
        margin-top: clamp(50px, 8vw, 100px);
    }

    .back_btn {
        min-width: 220px;
        padding: 0.7em 2.5em 0.7em 3.5em;
        border: 2px solid var(--accent);
        background-color: var(--accent);
        color: #fff;
        font-size: clamp(14px, 2vw, 18px);
    }
}

/*=========== service fv ===========*/
.s_first_view {
	border-top: 80px solid white;
	height: 17vw;
    min-height: 200px;
    background-image: url(../welfare-support/img/service_fv_back.webp);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    font-feature-settings: "palt";
}

.s_first_view .txt_box {
    display: inline-flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
    font-size: clamp(14px, 1.5vw, 18px);
    gap: 0.8em;
}

.s_first_view .txt_box .category {
    display: flex;
    align-items: center;
    line-height: 1;
    background-color: white;
    padding: 0.2em 1.5em;
    border-radius: 1.5em;
    color: var(--accent);
    align-self: flex-start;
}

.s_first_view .txt_box .category p:nth-child(1) {
    display: block;
    padding: 0.2em 0.7em 0.3em 0;
    border-right: 1px solid var(--accent);
}

.s_first_view .txt_box .category p:nth-child(2) {
    display: block;
    padding: 0.2em 0 0.3em 0.7em;
}

.s_first_view .txt_box .h1_box {
    display: flex;
    align-items: center;
    color: white;
    font-size: 280%;
    line-height: 1;
    gap: 0.3em;
}

.s_first_view .txt_box .h1_box p {
    display: flex;
    width: 1em;
    height: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 50%;
    padding: 0.2em;
    font-size: 0.8em
}

.s_first_view .txt_box .h1_box h1 {
    letter-spacing: 0.1em;
    padding-bottom: 0.1em
}

.s_first_view .txt_box .h1_lead {
    color: white;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-size: 120%;
}

@media all and (max-width: 768px) {
    .s_first_view {
        border-top: 55px solid white;
        height: 15vw;
        min-height: 150px;
        background-image: url(../welfare-support/img/service_fv_back_sp.webp);
    }

    .s_first_view .txt_box {
        display: inline-flex;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        padding: 0 17vw 0 3vw;
        font-size: clamp(12px, 2vw, 16px);
        gap: 0.5em;
    }

    .s_first_view .txt_box .h1_box {
        font-size: 190%;
    }

    .s_first_view .txt_box .h1_lead {
        text-align: justify;
        letter-spacing: 0em;
        line-height: 1.3;
        font-size: 100%;
    }
}

/*---- パンくずリスト ----*/
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 1em;
    padding: 0;
    color: #aaa;
    font-size: 12px;
    margin-bottom: 5em;
}

.breadcrumb li + li::before {
    content: "＞";
    margin: 0 1em;
}

.breadcrumb li::before {
    color: #aaa;
}

.breadcrumb li a {
    color: #555;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

@media all and (max-width: 768px) {
    .breadcrumb ol {
        display: none;
    }
}

/*=========== service コンテンツ ===========*/
#pan.sec_pad {
    padding-top: 0.1vw;
}

.nayami_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nayami_box h2 {
    display: inline-block;
    text-align: center;
    line-height: 1;
    font-size: clamp(15px, 2vw, 24px);
    border: 2px solid var(--accent);
    border-radius: 2em;
    padding: 0.4em 3em 0.5em;
    letter-spacing: 0.1em;
    margin-bottom: 1.5em;
    background-color: white;
}

.nayami_box ul {
    position: relative;
    padding-left: 15vw;
}

.nayami_box ul:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 13vw;
    height: 100%;
    background-image: url(../welfare-support/img/nayami_img1.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.nayami_box ul li {
    font-size: clamp(15px, 1.8vw, 22px);
    line-height: 1.5;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.nayami_box ul li:before {
    content: "●";
    margin-right: 0.2em;
    color: var(--accent);
}

.nayami_box ul li:not(:first-child) {
    margin-top: 0.5em;
}

.nayami_txt_box {
    font-size: clamp(15px, 1.6vw, 20px);
    margin-top: 3em;
}

.nayami_txt_box .ttl {
    border: 7px solid #fdecd5;
    text-align: center;
    line-height: 1.5;
    font-size: 130%;
    letter-spacing: 0.1em;
    padding: 1em;
    position: relative;
    margin-bottom: 90px;
}

.nayami_txt_box .ttl:after {
    content: "";
    display: block;
    width: 170px;
    height: 80px;
    background-image: url(../welfare-support/img/nayami_arrow.svg);
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.nayami_txt_box .txt {
    text-align: justify;
    line-height: 2;
}

.service_wrap {
    background-color: white;
    border: 2px solid var(--sub2);
    overflow: hidden;
    border-radius: 1em 1em 0 0;
    font-size: clamp(15px, 1.6vw, 20px);
}

.service_wrap h2 {
    text-align: center;
    background-color: var(--sub2);
    color: white;
    line-height: 1;
    padding: 1em;
    font-size: 120%;
    letter-spacing: 0.1em;
}

.service_box {
    padding: 2em;
    display: flex;
    justify-content: center;
    gap: 5%;
}

.service_box > li {
    width: 30%;
}

.service_box .h3_box {
    background-color: var(--sub2-r);
    text-align: center;
    padding: 1em 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1em;
}

.service_box .h3_box p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 130%;
    width: 2em;
    height: 2em;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 0.3em;
    color: var(--sub2);
}

.service_box .h3_box h3 {
    font-size: 110%;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
}

.service_box .service_list2 li {
    line-height: 1.5;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.service_box .service_list2 li:before {
    content: "●";
    margin-right: 0.2em;
    color: var(--sub2);
}

.service_box .service_list2 li:not(:first-child) {
    border-top: 1px dotted var(--sub2);;
    margin-top: 0.5em;
    padding-top: 0.5em;
}

.merit_wrap {
    background-color: white;
    border: 2px solid var(--sub);
    font-size: clamp(15px, 1.6vw, 20px);
    position: relative;
    padding: 2.5em 1em 2em;
}

.merit_wrap h2 {
    position: absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    background-color: white;
    border: 2px solid var(--sub);
    padding: 0.5em 1em 0.6em;
    color: var(--sub);;
}

.merit_wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 5%;
}

.merit_wrap ul li {
    width: 30%;
    display: flex;
    gap: 0.3em;
    text-align: justify;
}

.merit_wrap ul li:before {
    content: "";
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../welfare-support/img/merit_check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media all and (max-width: 768px) {
    #pan.sec_pad {
        padding-top: 8vw;
    }

    .nayami_box h2 {
        font-size: clamp(14px, 2vw, 20px);
        border: 1px solid var(--accent);
        padding: 0.4em 2em 0.5em;
    }

    .nayami_box ul {
        position: relative;
        padding: 0 0 47vw 0;
    }

    .nayami_box ul:before {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30vw;
        height: 43vw;
        background-position: center bottom;
    }

    .nayami_box ul li {
        font-size: clamp(13px, 2vw, 18px);
    }

    .nayami_txt_box {
        font-size: clamp(13px, 2vw, 18px);
    }

    .nayami_txt_box .ttl {
        border: 5px solid #fdecd5;
        font-size: 120%;
        letter-spacing: 0.05em;
        padding: 1em 0.5em;
        margin-bottom: 17vw;
    }

    .nayami_txt_box .ttl:after {
        width: 30vw;
        height: 15vw;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        bottom: -13vw;
    }

    .service_wrap {
        border: 1px solid var(--sub2);
        font-size: clamp(13px, 2vw, 18px);
    }

    .service_wrap h2 {
        padding: 1em;
        font-size: 120%;
    }

    .service_box {
        padding: 1.5em;
        gap: 6vw 5%;
        flex-wrap: wrap;
    }

    .service_box > li {
        width: 100%;
    }

    .merit_wrap {
        border: 1px solid var(--sub);
        font-size: clamp(13px, 2vw, 18px);
        padding: 2.5em 1em 2em;
    }

    .merit_wrap h2 {
        border: 1px solid var(--sub);
        ;
    }

    .merit_wrap ul {
        gap: 1em 5%;
    }

    .merit_wrap ul li {
        width: 100%;
    }
}

/*=========== case コンテンツ ===========*/
.case:not(:first-of-type) {
    margin-top: 8vw;
}

.case h2 span {
    display: block;
    line-height: 2;
    font-size: 60%;
    font-weight: 500;
}

.case_content {
    border: 10px solid #f3f3f3;
    font-size: clamp(15px, 1.6vw, 20px);
}

.gaiyou_wrap {
    background-color: #f3f3f3;
    padding: 1em;
}

.gaiyou_wrap dl {
    display: flex;
    align-items: center;
}

.gaiyou_wrap dl dt {
    width: 10em;
    text-align: center;
    margin-right: 2em;
    position: relative;
}

.gaiyou_wrap dl dt:after {
    content: "";
    display: block;
    width: 1px;
    height: 4em;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.gaiyou_wrap dl dd {
    flex: 1;
}

.gaiyou_wrap dl dd p {
    text-align: justify;
}

.gaiyou_wrap dl dd p:first-child {
    font-weight: bold;
    font-size: 110%;
    margin-bottom: 0.3em;
}

.case_wrap {
    padding: 2em;
}

.shien {
    display: flex;
    margin-bottom: 2em;
    gap: 1em;
}

.shien dt {
    width: 12em;
    background-color: var(--main);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.shien dd {
    text-align: justify;
    padding: 0.5em 0;
    flex: 1;
}

.kouka {
    display: flex;
    margin-bottom: 2em;
    gap: 1em;
}

.kouka dt {
    width: 12em;
    background-color: var(--accent);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.kouka dd {
    flex: 1;
}

.kouka dd ul {
    padding: 0.5em 0;
}

.kouka dd ul li {
    line-height: 1.5;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.kouka dd ul li span {
    font-weight: bold;
    font-size: 120%;
}

.kouka dd ul li:before {
    content: "●";
    margin-right: 0.2em;
    color: var(--accent);
}

.kouka dd ul li:not(:first-child) {
    margin-top: 0.5em;
}

.voice {
    margin-left: 13em;
    padding: 2em;
    background-color: #fdf3e6;
    border-radius: 1.5em;
    line-height: 2;
    position: relative;
    text-align: justify;
}

.voice:before {
    content: "";
    display: block;
    height: 1px;
    width: 3em;
    background-color: var(--accent);
    position: absolute;
    top: 50%;
    left: -2em;
    transform: translateY(-50%);
    z-index: 2;
}

.voice:after {
    content: "";
    display: block;
    height: 8em;
    width: 8em;
    z-index: 1;
    background-image: url(../welfare-support/img/case_img1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: -9em;
    transform: translateY(-50%);
}

.case:not(:first-of-type) .voice:after {
    background-image: url(../welfare-support/img/case_img2.webp);
}

@media all and (max-width: 768px) {
    .case:not(:first-of-type) {
        margin-top: 14vw;
    }

    .case h2 span {
        font-size: 70%;
    }

    .case_content {
        border: 5px solid #f3f3f3;
        font-size: clamp(13px, 2vw, 18px);
    }

    .gaiyou_wrap dl {
        flex-wrap: wrap;
    }

    .gaiyou_wrap dl dt {
        width: 100%;
        margin-right: 0em;
        margin-bottom: 0.7em;
    }

    .gaiyou_wrap dl dt:after {
        display: none;
    }

    .gaiyou_wrap dl dd p:first-child {
        text-align: center;
    }

    .case_wrap {
        padding: 1.5em 1em;
    }

    .shien {
        flex-wrap: wrap;
        margin-bottom: 2em;
    }

    .shien dt {
        width: 100%;
        padding: 1em;
    }

    .shien dd {
        padding: 0;
    }

    .kouka {
        flex-wrap: wrap;
        margin-bottom: 2em;
    }

    .kouka dt {
        width: 100%;
        padding: 1em;
    }

    .kouka dd {
        flex: 1;
    }

    .kouka dd ul {
        padding: 0;
    }

    .kouka dd ul li span {
        font-size: 110%;
    }

    .voice {
        margin-left: 6em;
        padding: 1em;
        border-radius: 1em;
        line-height: 1.5;
    }

    .voice:before {
        width: 2em;
        left: -1.5em;
    }

    .voice:after {
        height: 5.5em;
        width: 5.5em;
        left: -6.5em;
    }
}

/*=========== price コンテンツ ===========*/
.price_top {
    background:
        url("../welfare-support/img/bg_img1.webp") no-repeat left top / 25vw auto;
}

.price_txt {
    text-align: justify;
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 2;
    letter-spacing: 0.1em;
}

@media all and (max-width: 768px) {
    .price_top {
        background:
            url("../welfare-support/img/bg_img1.webp") no-repeat left top / 30vw auto;
    }

    .price_txt {
        font-size: clamp(13px, 2vw, 18px);
    }
}

.price-section {
  --color-bg: #edf9f7;
  --color-white: #fff;
  --color-text: #2f3337;
  --color-border: #d9d9d9;
  --color-accent: #fff34a;

  --color-light: #72bd59;
  --color-standard: #10b49f;
  --color-premium: #2f88b9;
}

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

.price-section__inner {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.price-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-white);
}

.price-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--color-white);
}

.price-card + .price-card {
  border-left: 1px solid var(--color-border);
}

.price-card__header {
  min-height: 180px;
  padding: 2em 1em;
  text-align: center;
  color: var(--color-white);
}

.price-card--light .price-card__header {
  background: var(--color-light);
}

.price-card--standard .price-card__header {
  background: var(--color-standard);
}

.price-card--premium .price-card__header {
  background: var(--color-premium);
}

.price-card__name {
  position: relative;
  margin: 0;
  padding-bottom: 1.3em;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.price-card__name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.7em;
  width: 2em;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: translateX(-50%);
}

.price-card__catch {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.price-card__catch span {
    font-size: 110%;
}

.price-card__body {
  padding: 1em 1em 2em;
}

.price-card__label {
    margin-bottom: 0.5em;
  text-align: center;
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.5;
}

.price-card__price {
  margin: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  line-height: 1;
  color: currentColor;
  white-space: nowrap;
}

.price-card__price span {
  font-size: clamp(40px, 4vw, 58px);
  letter-spacing: 0.02em;
}

.price-card__price small {
  margin-left: 2px;
  font-size: clamp(22px, 2.4vw, 28px);
}

.price-card--light .price-card__price {
  color: var(--color-light);
}

.price-card--standard .price-card__price {
  color: var(--color-standard);
}

.price-card--premium .price-card__price {
  color: var(--color-premium);
}

.price-card__text {
  margin: 24px 0 0;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.04em;
    text-align: justify;
}

.price-section__note {
  margin: 26px 8px 0;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.06em;
    color: #777;
}

@media (max-width: 980px) {
  .price-plans {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      overflow: visible;
      border-radius: 0;
      background: transparent;
  }

  .price-card {
      overflow: hidden;
      border-radius: 18px;
  }

  .price-card + .price-card {
      border-left: 0;
  }

  .price-card__header {
      min-height: auto;
      padding: 1.5em 1em;
  }

    .price-card__name {
      font-size: clamp(20px, 4vw, 30px);
    }

  .price-card__catch {
      font-size: clamp(15px, 2.4vw, 18px);
  }

  .price-card__label {
      font-size: clamp(16px, 1.9vw, 22px);
  }

  .price-card__price span {
      font-size: clamp(40px, 5vw, 58px);
  }

  .price-card__price small {
      font-size: clamp(22px, 2.4vw, 28px);
  }

  .price-card__text {
      font-size: clamp(13px, 2vw, 18px);
  }
    
    .price-section__note {
      margin: 20px 8px 0;
      font-size: clamp(12px, 1.2vw, 15px);
        color: #777;
    }
}

/*
  極小幅端末用。
  プラン名は2行にせず、文字サイズだけを少し下げます。
*/
@media (max-width: 374px) {
  .price-section {
    padding-inline: 12px;
  }

  .price-card__name {
    font-size: 22px;
    letter-spacing: 0.02em;
  }

  .price-card__catch {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .price-card__price span {
    font-size: 40px;
  }

  .price-card__price small {
    font-size: 20px;
  }
}