@charset "UTF-8";

/**** 遺品整理 ****/

/*-----------------------------------
共通スタイル
-----------------------------------*/
:root{
    --color-yellow-title-line: #ffef37;
    --color-yellow-text: #ffec6a;
    --color-gray: #edf0f7;
    --color-orange-bg: #fc720d;
    --color-orange: #dd4f02;
    --color-navy: #151e47;
    --color-light-orange: #fde0b6;
    --color-light-orange-b: #f4ede5;
    --color-green: #4bbebf;
}

.inner--wide{
    max-width: 1300px;
}

.inner--middle{
    max-width: 1200px;
}

h1,h2,h3{
    font-weight: normal;
    margin: 0;
}

dl,dd{
    margin: 0;
}

img{
    vertical-align: middle;
}

.text-block{
    display: block;
}

.text-orange{
    color: var(--color-orange) !important;
}

.text-red{
    color: var(--red);
}

.text-yellow{
    color: var(--color-yellow-text);
}

.text-white{
    color: #fff;
}

.text-navy{
    color: var(--color-navy);
}

.text-line{
    position: relative;
    z-index: 0;
}

.text-line::before{
    content: "";
    display: block;
    height: 0.6em;
    width: 105%;
    background-color: var(--color-yellow-title-line);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.text-line--white::before{
    background-color: #fff;
}

.bg-dots {
    background-position: 0 0;
    background-size: 38px 26px;
    background-repeat: repeat;
    background-color: #fff;
    background-image: radial-gradient(circle, #e0dfdf 2px, transparent 2px);
}

.bg-yellow {
    display: inline-block;
    background-color: var(--color-yellow-title-line);
    line-height: 1;
    margin-left: 0.2em;
    padding: 0.1em 0.25em 0.15em;
}

.bg-orange {
    display: inline-block;
    background-color: var(--color-orange);
    line-height: 1;
    margin-left: 0.2em;
    padding: 0.1em 0.25em 0.15em;
}

.bg-white {
    display: inline-block;
    background-color: #fff;
    line-height: 1;
    margin-left: 0.2em;
    padding: 0.1em 0.25em 0.15em;
    border-radius: 5px;
}

.section{
    padding-block: 100px;
}

.section-title{
    font-size: 52px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

.section-title .text-dot {
    display: inline-block;
    margin-inline: -0.2em;
}

@media screen and (max-width: 1194px){
    .section-title{
        font-size: max(36px, 4.35vw);
    }
}

@media screen and (max-width: 767px){
    .section {
        padding-block: 80px;
    }

    .section-title{
        font-size: max(26px, 4.68vw);
    }
}

@media screen and (max-width: 599px){
    .section {
        padding-block: 60px;
    }
}

@media screen and (max-width: 399px){
    .section-title {
        font-size: max(24px, 6.5vw);
    }
}

/*-----------------------------------
CV
-----------------------------------*/
.top-page-cv.--ihinseiri_{
    background-color: var(--color-orange-bg);
    padding: 105px 0 70px;
}

.cv-inner {
    border-radius: 0;
    max-width: 1000px;
    padding: 40px 30px 30px;
}

.cv-title-bg {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    position: absolute;
    display: block;
    width: 100%;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
}

.cv-inner .cv-pr {
    background-color: var(--color-navy);
    color: #fff;
    top: -55px;
    left: -40px;
}

.cv-pr-inner{
    text-align: center;
    position: relative;
}

.cv-inner .cv-pr .big {
    color: #fdee06;
}

.top-page-cv-flex {
    align-items: center;
    gap: 10px;
}

.top-page-cv-list li {
    font-weight: bold;
    text-shadow: none;
    background-color: var(--color-gray);
    color: var(--base-color);
}

.top-page-cv-list li .red {
    color: var(--red);
}

.top-page-cv-flex .tel {
    font-size: 16px;
    flex: 1;
}

@media screen and (max-width: 1194px){
    .top-page-cv-flex {
        gap: 15px;
    }

    .cv-inner .cv-pr {
        left: -20px;
        top: -65px;
    }

    .cv-title-bg {
        left: 55%;
    }
}

@media screen and (max-width: 1023px){
    .top-page-cv.--ihinseiri_ {
        padding: 160px 0 70px;
    }

    .cv-inner {
        width: 90%;
        padding-top: 40px;
    }

    .top-page-cv-flex, .top-page-cv-list {
        width: 95%;
    }

    .cv-title {
        width: 85%;
        max-width: none;
        min-width: 410px;
    }

    .cv-title-bg {
        left: 50%;
    }

    .top-page-cv-list{
        margin-top: 20px;
    }

    .top-page-cv-flex {
        margin-left: 0;
    }

    .top-page-cv-flex, .top-page-cv-list {
        margin-inline: auto;
    }

    .cv-inner .cv-pr {
        top: -105px;
        left: 50%;
    }

    .cv-pr-inner::before {
        content: "";
        display: block;
        background-color: var(--color-navy);
        width: 1.2em;
        height: 0.7em;
        position: absolute;
        bottom: -0.8em;
        left: 50%;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px){
    .top-page-cv.--ihinseiri_ {
        padding-top: 150px;
    }

    .cv-inner {
        padding-inline: 5vw;
        padding-top: 30px;
    }

    .cv-inner .cv-pr {
        top: -15vw;
        padding-bottom: 0.2em;
    }

    .top-page-cv-flex, .top-page-cv-list {
        width: 100%;
    }
}

@media screen and (max-width: 599px){
    .top-page-cv.--ihinseiri_ {
        padding-top: 23vw !important;
    }
}

@media screen and (max-width: 499px){
    .top-page-cv.--ihinseiri_ {
        padding-top: max(100px, 30vw) !important;
        padding-bottom: 60px;
    }

    .cv-inner .cv-pr {
        top: -18vw;
    }

    .cv-title {
        width: 100%;
        min-width: auto;
    }

    .cv-inner {
        padding-top: 20px;
    }
}

/*-----------------------------------
FV
-----------------------------------*/
.fv{
    color: var(--color-navy);
    padding-top: 100px;
    position: relative;
    background-image: url(../images/ihinseiri_/fv-bottom-img.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-bottom: 170px;
}

.webp .fv{
    background-image: url(../images/ihinseiri_/fv-bottom-img.png.webp);
}

.fv::before{
    content: "";
    display: block;
    background-color: var(--color-light-orange-b);
    width: calc(((100vw - 1300px) / 2) + 490px);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.fv::after{
    content: "";
    display: block;
    background-image: url(../images/ihinseiri_/fv-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 571px;
    aspect-ratio: 571/547;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: -1;
}

.webp .fv::after{
    background-image: url(../images/ihinseiri_/fv-bg.png.webp);
}

.fv__body{
    display: flex;
    justify-content: space-between;
    position: relative;
}

.fv__text{
    flex: 1;
    letter-spacing: 0.05em;
}

.fv__title-top {
    display: block;
    background-color: var(--color-orange);
    border-radius: 0.24em;
    color: #fff;
    font-size: 33px;
    font-weight: bold;
    width: fit-content;
    padding: 0.3em 1.3em 0.39em 0.9em;
    position: relative;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-left: 1em;
}

.fv__title-top::after {
    content: "";
    display: block;
    background-image: url(../images/ihinseiri_/fv-map.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.7878em;
    aspect-ratio: 125/124;
    position: absolute;
    right: -2.9em;
    top: 15%;
    transform: translateY(-50%);
    z-index: 1;
}

.webp .fv__title-top::after {
    background-image: url(../images/ihinseiri_/fv-map.png.webp);
}

.fv__title-middle{
    display: block;
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-left: 0.1em;
    margin-top: -3px;
}

.fv__title-middle .--large{
    font-size: 1.205em;
}

.fv__title-bottom {
    /*font-size: 35px;*/
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
    margin-left: 2em;
    letter-spacing: 0.07em;
    position: relative;
}

.fv__title-bottom::before {
    content: "";
    display: inline-block;
    background-image: url(../images/ihinseiri_/fv-prayer-beads.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.285em;
    aspect-ratio: 45/59;
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    left: -1.8em;
}

.webp .fv__title-bottom::before {
    background-image: url(../images/ihinseiri_/fv-prayer-beads.png.webp);
}

.fv__title-bottom::after {
    content: "";
    display: block;
    background-color: var(--color-yellow-title-line);
    border-radius: calc(1px / 0);
    height: 0.5em;
    width: 103%;
    position: absolute;
    bottom: 0em;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.fv__point {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 50px;
    margin-top: 22px;
}

.fv__point-appeal{
    width: 162px;
}

.fv__point-items{
    margin-top: 15px;
    width: 335px;
}

.fv__point-items > *+*{
    margin-top: 14px;
}

.fv__point-item{
    border: 0.25em solid var(--color-navy);
    border-radius: calc(1px / 0);
    font-weight: bold;
    line-height: 1;
    padding: 0.28em 0.5em 0.34em 2.8em;
    max-width: 335px;
    overflow: hidden;
    position: relative;
}

.fv__point-item:nth-of-type(1){
    background-color: #fff;
    font-size: 25px;
    letter-spacing: 0.05em;
}

.fv__point-item:nth-of-type(2){
    background-color: var(--color-navy);
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.09em;
}

.fv__point-item::before{
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.fv__point-item:nth-of-type(1)::before {
    background-image: url(../images/ihinseiri_/fv-icon01.png);
    width: 1.2em;
    aspect-ratio: 1/1;
    top: 50%;
    left: 0.8em;
    position: absolute;
    transform: translateY(-50%);
}

.webp .fv__point-item:nth-of-type(1)::before {
    background-image: url(../images/ihinseiri_/fv-icon01.png.webp);
}

.fv__point-item:nth-of-type(2)::before {
    background-image: url(../images/ihinseiri_/fv-icon02.png);
    width: 1.625em;
    aspect-ratio: 39/28;
    top: 50%;
    transform: translateY(-50%);
    left: 0.7em;
    position: absolute;
}

.webp .fv__point-item:nth-of-type(2)::before {
    background-image: url(../images/ihinseiri_/fv-icon02.png.webp);
}

.fv__img{
    flex-basis: 47%;
    margin-right: -10px;
}

@media screen and (min-width: 1921px){
    .fv {
        background-repeat: repeat-x;
        background-size: auto;
    }
}

@media (min-width: 1024px) and (max-width: 1449px) {

    .fv__title-top {
        font-size: 2.275vw;
    }

    .fv__title-middle {
        font-size: 6.896vw;
    }

    .fv__title-bottom {
        /*font-size: 2.413vw;*/
        font-size: 2.213vw;
    }

    .fv__point {
        gap: 2.06vw;
        padding-left: 3.45vw;
        margin-top: 1.51vw;
    }

    .fv__point-items {
        margin-top: 1.03vw;
        width: 23.1vw;
    }

    .fv__point-item:nth-of-type(1) {
        font-size: 1.724vw;
    }

    .fv__point-item:nth-of-type(2) {
        font-size: 1.655vw;
    }

    .fv__point-appeal {
        width: 11.17vw;
    }
}

@media screen and (max-width: 1194px){
    .fv {
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .top-page-cv-flex {
        gap: 15px;
    }
}

@media screen and (max-width: 1023px){
    .fv {
        background-size: 130%;
        padding-top: min(12.769vw, 84px);
    }

    .fv__body {
        flex-direction: column;
    }

    .fv::before {
        /* height: 52.5vw; */
        height: min(52.5vw, 418px);
        width: 100%;
        bottom: 0;
        left: 0;
        top: auto;
    }

    .fv::after {
        left: min(-7.7vw, -60px);
        width: min(61.5vw, 480px);
    }

    .fv__title {
        width: fit-content;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
    }

    .fv__title-top {
        font-size: min(5.128vw, 40px);
        margin-inline: auto;
        margin-left: 1vw;
        padding: 0.25em 1.4em 0.3em 0.9em;
    }

    .fv__title-top::after {
        width: min(16vw, 125px);
        right: -13vw;
        top: 40%;
    }

    .fv__title-middle {
        font-size: min(10.769vw, 84px);
        margin-top: -6px;
    }

    .fv__title-middle .--large {
        font-size: 1.726em;
    }

    .fv__title-bottom {
        /*font-size: min(4.8717vw, 38px);*/
        font-size: min(4.0717vw, 34px);
        margin-left: min(9.615vw, 75px);
        letter-spacing: 0.06em;
    }

    .fv__point-appeal {
        width: min(22.56vw, 176px);
    }

    .fv__point {
        width: fit-content;
        margin-inline: auto;
        padding-left: 0;
        /* margin-top: 40px; */
        margin-top: min(4.1vw, 32px);
        gap: min(3.8vw, 30px);
    }

    .fv__img {
        margin-top: min(6.41vw, 50px);
        width: 86%;
        margin-inline: auto;
        max-width: 600px;
    }

    .fv__point-items {
        margin-top: 0;
        width: min(49.358vw, 385px);
    }

    .fv__point-item {
        max-width: min(49.358vw, 385px);
        padding: 0.4em 0.5em 0.46em 2.8em;
    }

    .fv__point-item:nth-of-type(1) {
        font-size: min(3.589vw, 28px);
    }

    .fv__point-item:nth-of-type(2) {
        font-size: min(3.589vw, 28px);
    }
}

@media screen and (max-width: 767px){
    .fv{
        background-image: url(../images/ihinseiri_/fv-bottom-img_sp.png);
        background-size: contain;
        padding-top: 5.2vw;
        padding-bottom: 18.23vw;
    }

    .webp .fv{
        background-image: url(../images/ihinseiri_/fv-bottom-img_sp.png.webp);
    }

    .fv__point-items > *+* {
        margin-top: 1.8vw;
    }
}

/*-----------------------------------
service
-----------------------------------*/
.service {
    padding-bottom: 0;
    overflow: hidden;
    padding-top: 80px;
}

.service__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.5;
    z-index: 0;
}

.service__title-top {
    display: block;
}

.service__title-bottom {
    display: block;
    font-size: 1.53em;
}

.service__body{
    padding-bottom: 100px;
    position: relative;
}

.service__body::before,
.service__body::after{
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -1px;
    z-index: 1;
}

.service__body::before {
    background-image: url(../images/ihinseiri_/service-bottom-img-left.png);
    width: 181px;
    aspect-ratio: 181/242;
    left: -119px;
}

.webp .service__body::before {
    background-image: url(../images/ihinseiri_/service-bottom-img-left.png.webp);
}

.service__body::after {
    background-image: url(../images/ihinseiri_/service-bottom-img-right.png);
    width: 215px;
    aspect-ratio: 215/251;
    right: -120px;
}

.webp .service__body::after {
    background-image: url(../images/ihinseiri_/service-bottom-img-right.png.webp);
}

.service__contents {
    background-color: #e7e7e5;
    border-radius: 15px;
    margin-top: 50px;
    padding-block: 50px;
}

.service__items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    max-width: 1000px;
    margin-inline: auto;
}

.service__item {
    background-color: #fff;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.75;
    padding: 1.1em 1.3em 1.1em 3.5em;
    letter-spacing: 0;
    position: relative;
}

.service__item::before{
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/ihinseiri_/service-icon.png);
    width: 1.4166em;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 0.9em;
    transform: translateY(-50%);
}

.webp .service__item::before{
    background-image: url(../images/ihinseiri_/service-icon.png.webp);
}

.service__item > .inbl{
    display: block;
}

.service__arrow{
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/gomiyashiki_katazuke/service-arrow-down.png);
    width: 88px;
    aspect-ratio: 88/83;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.webp .service__arrow{
    background-image: url(../images/gomiyashiki_katazuke/service-arrow-down.png.webp);
}

.service__solution {
    background-color: var(--color-light-orange);
    padding-block: 50px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.service__solution::after{
    content: "";
    display: block;
    background-color: #fff;
    width: 800px;
    aspect-ratio: 1/1;
    clip-path: circle(50% at 50% 50%);
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.service__solution-body{
    position: relative;
}

.service__solution-body::after {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/ihinseiri_/service-solution-img.png);
    width: 157px;
    aspect-ratio: 157/168;
    position: absolute;
    top: 75%;
    left: 25px;
    transform: translateY(-50%);
}

.webp .service__solution-body::after {
    background-image: url(../images/ihinseiri_/service-solution-img.png.webp);
}

.service__solution-text {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.7;
    text-align: center;
    padding-left: 0.3em;
    letter-spacing: 0.01em;
    max-width: 800px;
    margin-inline: auto;
}

.service__solution-text .text-line{
    margin-left: 0.1em;
}

.service__solution .text-line::before {
    left: 0;
    transform: none;
    width: 99%;
}

@media screen and (max-width: 1194px){
    .service__title {
        font-size: max(26px, 2.85vw);
    }

    .service__items {
        gap: 30px 4.18vw;
        max-width: none;
        padding-inline: 4vw;
    }

    .service__item {
        font-size: 2vw;
        position: relative;
    }

    .service__body {
        padding-bottom: max(100px, 10vw);
    }

    .service__body::after {
        /* width: 14vw; */
        width: max(125px, 14vw);
        right: -5vw;
    }

    .service__body::before {
        /* width: 12vw; */
        width: max(110px, 12vw);
        left: -5vw;
    }

    .service__solution-text {
        font-size: max(28px, 3.35vw);
    }

    .service__solution-body::after {
        width: max(100px, 13vw);
    }

    .service__solution::after {
        width: 67vw;
    }

    .service__solution-text {
        max-width: 67vw;
    }

    .service__solution-body::after {
        left: 2vw;
    }
}

@media screen and (max-width: 1023px){
    .service__items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service__item {
        font-size: max(18px, 2.2vw);
    }

    .service__item > .inbl {
        display: inline-block;
    }
}

@media screen and (max-width: 767px){
    .service__title {
        font-size: max(24px, 3.4vw);
    }

    .service__contents {
        padding-top: max(30px, 6vw);
        margin-top: 40px;
    }

    .service__body {
        padding-bottom: 80px;
    }

    .service__item {
        font-size: 20px;
        /* text-align: center; */
    }

    .service__body::after {
        width: 130px;
    }

    .service__body::before {
        width: 110px;
        /* left: -7vw; */
    }

    .service__solution {
        padding-block: 34px;
    }

    .service__solution-text {
        font-size: max(22px, 3.65vw);
    }

    .service__arrow {
        width: max(40px, 8.6vw);
        /* bottom: min(-5.8vw, -30px); */
        bottom: -10px;
    }

    .service__solution-body::after {
        /* left: -3%; */
        width: max(50px, 13vw);
    }

    .service__solution::after {
        width: 400px;
    }

    .service__solution-text {
        max-width: 400px;
    }
}

@media screen and (max-width: 599px){
    .service {
        padding-top: 60px;
    }

    .service__item {
        font-size: 18px;
        padding-left: 3em;
    }

    .service__body {
        padding-bottom: 60px;
    }

    .service__body::after {
        width: 100px;
    }

    .service__body::before {
        width: 85px;
    }
}

@media screen and (max-width: 499px){
    /* .service__solution-text .text-line{
        display: block;
    } */

    .service__solution-body::after {
        left: -3%;
        width: 17vw;
        /* top: 30%; */
    }
}

@media screen and (max-width: 399px){
    .service__item {
        font-size: 4.5vw;
    }

    .service__item .inbl{
        display: inline;
    }

    .service__title {
        font-size: 20px;
    }

    .service__title-bottom {
        font-size: 1.4em;
    }

    .service__body::after {
        width: 23vw;
    }

    .service__body::before {
        width: 20vw;
    }

    .service__contents {
        padding-bottom: 12.5vw;
    }

    .service__solution-body::after {
        /* left: -3%; */
        /* top: 30%; */
        width: 16vw;
    }

    .service__solution-text {
        font-size: 19px
    }

    .service__solution::after {
        width: max(300px, 87.5vw);
    }
}

/*-----------------------------------
staff
-----------------------------------*/
.staff{
    background-image: url(../images/ihinseiri_/staff-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.webp .staff{
    background-image: url(../images/ihinseiri_/staff-bg.jpg.webp);
}

.staff__title{
    margin-left: 0.5em;
}

.staff__title .text-line--white::before{
    width: 100%;
    left: 49%;
}

.staff__title .text-line--white{
    display: inline-block;
    margin-right: 0.1em;
}

.staff__contents{
    margin-top: 50px;
}

.staff__items{
    width: 100%;
    max-width: 570px;
}

.staff__item:not(:first-of-type){
    padding-top: 45px;
    position: relative;
    z-index: 0;
}

.staff__item:not(:first-of-type)::before{
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -25px;
}

.staff__item:not(:last-of-type){
    padding-bottom: 45px;
}

.staff__item-term{
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.4;
    padding-left: 1.9em;
    position: relative;
}

.staff__item-term::before{
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.staff__item-term.--01::before{
    background-image: url(../images/gomiyashiki_katazuke/staff-icon01.png);
    width: 1.066em;
    aspect-ratio: 32/43;
    left: 0.36em;
}

.webp .staff__item-term.--01::before{
    background-image: url(../images/gomiyashiki_katazuke/staff-icon01.png.webp);
}

.staff__item-term.--02::before{
    background-image: url(../images/gomiyashiki_katazuke/staff-icon02.png);
    width: 1.433em;
    aspect-ratio: 43/42;
    left: 0.1em;
}

.webp .staff__item-term.--02::before{
    background-image: url(../images/gomiyashiki_katazuke/staff-icon02.png.webp);
}

.staff__item-term.--03::before{
    background-image: url(../images/gomiyashiki_katazuke/staff-icon03.png);
    width: 1.4em;
    aspect-ratio: 42/41;
    left: 1px;
}

.webp .staff__item-term.--03::before{
    background-image: url(../images/gomiyashiki_katazuke/staff-icon03.png.webp);
}

.staff__item-desc{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.9;
    margin-top: 0.9em;
}

@media screen and (max-width: 1499px){
    .staff {
        background-position: right calc(50% - -140px) center;
    }
}

@media screen and (max-width: 1194px){
    .staff__item-term {
        font-size: 26px;
    }

    .staff__item:not(:first-of-type) {
        padding-top: 34px;
    }
}

@media screen and (max-width: 1023px){
    .staff__items {
        max-width: 60%;
    }

    .staff {
        background-image: url(../images/ihinseiri_/staff-bg_tab.jpg);
        background-position: right;
    }

    .webp .staff {
        background-image: url(../images/ihinseiri_/staff-bg_tab.jpg.webp);
    }

    .staff__item:not(:last-of-type) {
        padding-bottom: 34px;
    }

    .staff__item-term {
        font-size: max(22px, 2.55vw);
    }

    .staff__item-desc {
        font-size: max(16px, 1.757vw);
    }
}

@media screen and (max-width: 767px){
    .staff {
        background-color: #f4ede6;
        background-image: url(../images/ihinseiri_/staff-bg_sp.jpg);
        background-position: bottom;
        background-size: contain;
        padding-bottom: 65vw;
    }

    .webp .staff {
        background-image: url(../images/ihinseiri_/staff-bg_sp.jpg.webp);
    }

    .staff__items {
        max-width: 95%;
        margin-inline: auto;
    }

    .staff__item:not(:first-of-type)::before {
        left: 0;
    }

    .staff__item-term {
        width: fit-content;
        margin-inline: auto;
    }

    .staff__item:not(:first-of-type) {
        padding-top: 40px;
    }

    .staff__item-desc {
        margin-top: 1.2em;
        font-weight: 600;
    }
}

@media screen and (max-width: 599px){
    .staff__item-term {
        font-size: 20px;
    }
}

@media screen and (max-width: 399px){
    .staff__item-term {
        font-size: 18px;
    }
}

/*-----------------------------------
equipment
-----------------------------------*/
.equipment-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px 3.5%;
}
.equipment-list li{
    background-color: var(--color-orange-bg);
    color: #fff;
    max-width: 310px;
    flex-basis: 31%;
    border-radius: 20px;
    padding: 25px 20px;
}
.equipment-list li .img-box{
    width: 201px;
    height: 200px;
    display: block;
    margin: 0 auto;
}
.equipment-list li .title{
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
}
.equipment-list li .txt{
    font-size: 16px;
    display: block;
    line-height: 1.6;
}

.equipment__text{
    font-size: 16px;
    margin-top: 40px;
    line-height: 2.125;
}

@media screen and (max-width: 1023px){
    .equipment-list li .title {
        font-size: 2.8vw;
    }
}

@media screen and (max-width: 899px){
    .equipment-list li {
        flex-basis: calc((100% - 7%) / 2);
    }
}

@media screen and (max-width: 767px){
    .equipment-list{
        gap: 25px 4%;
    }
    .equipment-list li{
        flex-basis:48%
    }
    .equipment-list li .title {
        font-size: 20px;
    }
    .equipment-list li .img-box{
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 499px){
    .equipment-list li{
        flex-basis: 100%;
    }
}

/*-----------------------------------
chiiki-b-section08
-----------------------------------*/
.monk__title{
    text-align-last: left;
    margin: 0;
}

.monk__title-top{
    display: block;
    width: 642px;
    aspect-ratio: 642/36;
    font-size: 28px;
    position: relative;
    -webkit-text-stroke: 8px #fff;
}
.monk__title-top::before{
    content: attr(data-text);
    position: absolute;
    color: #000;
    top: 0;
    left: 0;
    -webkit-text-stroke-width: 0;
    z-index: 8;
}


.monk__title-bottom{
    display: block;
    /*width: 433px;
    aspect-ratio: 433/60;*/
    position: relative;
    -webkit-text-stroke: 8px #fff;
}

.monk__title-bottom-title-red,
.monk__title-bottom-title-txt{
    position: relative;
    -webkit-text-stroke: 8px #fff;
}
.monk__title-bottom-title-red::before{
    content: attr(data-text);
    position: absolute;
    color: var(--color-orange);
    left: 0;
    -webkit-text-stroke-width: 0;
    z-index: 8;
}
.monk__title-bottom-title-txt::before{
    content: attr(data-text);
    position: absolute;
    color: #000;
    left: 0;
    -webkit-text-stroke-width: 0;
    z-index: 8;
}




.chiiki-b-section08{
    background-color: var(--color-light-orange);
    padding: 0;
    overflow: hidden;
}
.chiiki-b-section08 .inner{
    background-image: url(../images/ihinseiri_/monk-bg-icon.png);
    background-position: top 120px right;
    background-repeat: no-repeat;
    position: relative;
}
.webp .chiiki-b-section08 .inner{
    background-image: url(../images/ihinseiri_/monk-bg-icon.png.webp);
}
.chiiki-b-section08 .chiiki-b-section08-content{
    padding: 105px 0 100px;
    position: relative;
    text-align: left;
    max-width: 640px;
}
.chiiki-b-section08 .chiiki-b-section08-content::after{
    content: "";
    background-image: url(../images/ihinseiri_/monk-bg.png);
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    width: 857px;
    height: 100%;
    position: absolute;
    top:0;
    right: -837px;
}

.webp .chiiki-b-section08 .chiiki-b-section08-content::after{
    background-image: url(../images/ihinseiri_/monk-bg.png.webp);
}

.chiiki-b-section08 .txt-box {
    font-size: 18px;
    line-height: 2.5;
    -webkit-text-stroke: 4px #fff;
    margin-top: 50px;
}
.chiiki-b-section08 .txt-box p{
    position: relative;
}
.chiiki-b-section08 .txt-box p::after{
    content: attr(data-text);
    position: absolute;
    color: #000;
    top: 0;
    left: 0;
    -webkit-text-stroke-width: 0;
    z-index: 8;
}

@media screen and (max-width: 1023px){
    .chiiki-b-section08 .chiiki-b-section08-content {
        /* padding: 100px 0 110px; */
        max-width: 480px;
    }

}
@media screen and (max-width: 767px){
    .chiiki-b-section08 .chiiki-b-section08-content {
        padding: 70px 0 240px;
        max-width: none;
    }
    .chiiki-b-section08 .chiiki-b-section08-content::after{
        content: "";
        background-image: url(../images/ihinseiri_/monk-bg_sp.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 200px;
        position: absolute;
        top:unset;
        bottom: 0;
        right: unset;
        left: 0;
    }
    .webp .chiiki-b-section08 .chiiki-b-section08-content::after{
        background-image: url(../images/ihinseiri_/monk-bg_sp.png.webp);
    }
    .chiiki-b-section08 .chiiki-b-section08-h2{
        margin-bottom: 40px;
    }
    .chiiki-b-section08 .txt-box{
        font-size: 16px;
    }
    .monk__title-top {
        width: 83.9vw;
        font-size: 3.5vw;
    }
    .monk__title-bottom {
        /*width: max(250px, 56.3vw);*/
    }
}

@media screen and (max-width: 599px){
    .chiiki-b-section08 .chiiki-b-section08-content {
        padding-top: 45px;
    }

    .chiiki-b-section08 .txt-box {
        line-height: 2.4;
        margin-top: 30px;
    }
}

@media screen and (max-width: 499px){
    .chiiki-b-section08 .chiiki-b-section08-content {
        padding-bottom: 200px;
    }
    .chiiki-b-section08 .chiiki-b-section08-h2{
        height: 30vw;
        margin-bottom: 30px;
    }
    .chiiki-b-section08 .chiiki-b-section08-content::after{
        height: 160px;
    }

    .monk__title-top {
        /*width: clamp(210px, 62vw, 280px);
        aspect-ratio: 725/142;*/
        margin-bottom: 8px;
    }

    .monk__title-bottom {
        /*width: clamp(250px, 70vw, 330px);*/
    }
}

/*-----------------------------------
acquisition
-----------------------------------*/
.acquisition{
    padding: 0;
    position: relative;
}

.acquisition::before,
.acquisition::after{
    content: "";
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: calc((100vw - 850px) / 2);
    position: absolute;
    top: 0;
}

.acquisition::before{
    background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_left.jpg);
    left: 0;
}

.webp .acquisition::before{
    background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_left.jpg.webp);
}

.acquisition::after{
    background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_right.jpg);
    right: 0;
}

.webp .acquisition::after{
    background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_right.jpg.webp);
}

.acquisition__body{
    background-color: var(--color-orange);
    background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_bottom.png);
    background-repeat: no-repeat;
    background-position: bottom;
    max-width: 850px;
    margin-inline: auto;
    padding: 70px 0 210px;
    position: relative;
}

.webp .acquisition__body{
    background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_bottom.png.webp);
}

.acquisition__body .inner{
    display: contents;
}

.acquisition__heading-top{
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.01em;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 1.2em;
    text-align: center;
    position: relative;
    z-index: 0;
}

.acquisition__heading-top::before,
.acquisition__heading-top::after{
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 0.714em;
    aspect-ratio: 20/39;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.acquisition__heading-top::before{
    background-image: url(../images/gomiyashiki_katazuke/title-deco-left_white.png);
    left: 0;
}

.webp .acquisition__heading-top::before{
    background-image: url(../images/gomiyashiki_katazuke/title-deco-left_white.png.webp);
}

.acquisition__heading-top::after{
    background-image: url(../images/gomiyashiki_katazuke/title-deco-right_white.png);
    right: 0;
}

.webp .acquisition__heading-top::after{
    background-image: url(../images/gomiyashiki_katazuke/title-deco-right_white.png.webp);
}

.acquisition__title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 48px;
    font-weight: 900;
    margin-top: 35px;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.acquisition__title span {
    display: inline-block;
    background-color: #fff;
    border-radius: 5px;
    line-height: 1;
    padding: 0.14em 0.16em 0.22em;
}

.acquisition__text-box{
    margin-top: 55px;
}

.acquisition__text-box > *+*{
    margin-top: 2em;
}

.acquisition__text{
    max-width: 750px;
    margin-inline: auto;
    padding-inline: 30px;
}


.acquisition__text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.94;
    -webkit-text-stroke: 4px #fff;
}

.acquisition__text p{
    position: relative;
}

.acquisition__text p::after {
    content: attr(data-text);
    position: absolute;
    color: #000;
    top: 0;
    left: 0;
    -webkit-text-stroke-width: 0;
    z-index: 8;
}

@media screen and (max-width: 1299px){
    .acquisition__body {
        max-width: 65.4vw;
    }

    .acquisition::before, .acquisition::after {
        width: calc((100vw - 65.4vw) / 2);
    }
}

@media screen and (max-width: 1023px){
    .acquisition{
        padding-block: 250px;
        background-color: var(--color-orange);
    }

    .acquisition::before, .acquisition::after {
        width: 100%;
        height: 250px;
    }

    .acquisition::before {
        background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_top-sp.jpg);
        top: 0;
    }

    .webp .acquisition::before {
        background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_top-sp.jpg.webp);
    }

    .acquisition::after {
        background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_bottom-sp.jpg);
        top: auto;
        bottom: 0;
    }

    .webp .acquisition::after {
        background-image: url(../images/gomiyashiki_katazuke/acquisition-bg_bottom-sp.jpg.webp);
    }

    .acquisition__body {
        max-width: none;
    }

    .acquisition__body .inner{
        display: block;
    }

    .acquisition__title {
        font-size: max(36px, 4.35vw);
        margin-top: 22px;
    }

    .acquisition__text {
        padding-inline: 0;
    }
}

@media screen and (max-width: 767px){
    .acquisition {
        padding-block: max(110px, 26vw);
    }

    .acquisition::before, .acquisition::after {
        height: max(110px, 26vw);
    }

    .acquisition__body {
        padding-bottom: 24vw;
        background-size: 110%;
        padding-top: max(30px, 9.1vw);
    }

    .acquisition__title {
        font-size: max(32px, 4.68vw);
    }

    .acquisition__heading-top {
        font-size: 24px;
    }

    .acquisition__text {
        font-size: 16px;
        line-height: 2.2;
    }
}

@media screen and (max-width: 599px){
    .acquisition__text-box {
        margin-top: 40px;
    }
}

@media screen and (max-width: 499px){
    .acquisition__heading-top{
        line-height: 1.2;
        padding-left: 1.3em;
    }

    .acquisition__heading-top .inbl{
        display: block;
    }

    .acquisition__title {
        font-size: max(26px, 6vw);
    }

    .acquisition__heading-top {
        font-size: 20px;
    }
}

/*-----------------------------------
commitment
-----------------------------------*/
.commitment{
    overflow: hidden;
    padding-top: 0;
}

.commitment__heading{
    background-color: var(--color-orange);
    color: #fff;
    padding: 32px 0 40px;
    position: relative;
}

.commitment__heading::before{
    content: "";
    display: block;
    background-color: var(--color-orange);
    /* width: 64px; */
    height: 34px;
    aspect-ratio: 64/34;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -33px;
}

.commitment__heading-top{
    font-size: 28px;
    font-weight: 900;
    line-height: 1.82;
    letter-spacing: 0.01em;
    text-align: center;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 2em;
    position: relative;
}

.commitment__heading-top::before,.commitment__heading-top::after{
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.535em;
    aspect-ratio: 43/109;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.commitment__heading-top::before{
    background-image: url(../images/gomiyashiki_katazuke/gekkeizyu-left.png);
    left: 0;
}

.webp .commitment__heading-top::before{
    background-image: url(../images/gomiyashiki_katazuke/gekkeizyu-left.png.webp);
}

.commitment__heading-top::after{
    background-image: url(../images/gomiyashiki_katazuke/gekkeizyu-right.png);
    right: 0;
}

.webp .commitment__heading-top::after{
    background-image: url(../images/gomiyashiki_katazuke/gekkeizyu-right.png.webp);
}

.commitment__heading-top span:not(.text-red):not(.inbl){
    display: block;
}

.commitment__title{
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 0;
}

.commitment__title .--text-large{
    font-size: 1.3em;
}

.commitment__title .bg-white {
    padding: 0.08em 0.15em 0.15em;
    border-radius: 9px;
    margin-inline: 0.15em;
}

.commitment__title .text-line::before{
    width: 115%;
    height: 0.5em;
}

.commitment__body{
    margin-top: 75px;
}

.commitment__item{
    padding-top: 38px;
    padding-bottom: 65px;
    position: relative;
}

.commitment__item:nth-of-type(odd){
    background-color: var(--color-light-orange-b);
}

.commitment__item:nth-of-type(1){
    border-radius: 0 20px 20px 0;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
}

.commitment__item:nth-of-type(3){
    border-radius: 20px 0 0 20px;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
}

.commitment__content{
    display: flex;
    gap: 80px;
    max-width: 1050px;
    padding-inline: 25px;
    margin-inline: auto;
}

.commitment__item:nth-of-type(even) .commitment__content{
    flex-direction: row-reverse;
    align-items: center;
}

.commitment__item-body{
    flex: 1;
}

.commitment__item:nth-of-type(2) .commitment__item-body {
    margin-top: 10px;
}

.commitment__item:nth-of-type(3) .commitment__item-body{
    margin-top: 25px;
}

.commitment__item-heading{
    text-align: center;
}

.commitment__item-logo img{
    width: 85px;
    height: 27px;
}

.commitment__item-title{
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-top: 0.3em;
}

.commitment__item-title .title-block{
    display: block;
}

.commitment__item-title .--first{
    position: relative;
    z-index: 0;
}

.commitment__item-title .--first::before {
    content: "";
    display: block;
    /* background-color: #ffeb00; */
    width: 2em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: absolute;
    top: -0.5em;
    left: -0.9em;
    z-index: -1;
}

.commitment__item:nth-of-type(odd) .commitment__item-title .--first::before {
    background-color: #fff;
}

.commitment__item:nth-of-type(even) .commitment__item-title .--first::before {
    background-color: var(--color-light-orange-b);
}

.commitment__item-text{
    font-weight: 500;
    line-height: 2.125;
    letter-spacing: 0.025em;
    margin-top: 10px;
}

.commitment__item:nth-of-type(2) .commitment__item-text{
    margin-top: 30px;
}

.commitment__item:nth-of-type(3) .commitment__item-text{
    margin-top: 20px;
}

.commitment__item:nth-of-type(4) .commitment__item-text{
    margin-top: 20px;
}

.commitment__item-text-caution{
    font-size: 12px;
    margin-top: 0.5em;
    letter-spacing: 0.02em;
}

.commitment__item-img {
    flex-basis: 45%;
    margin: 0;
    margin-top: 30px;
}

.commitment__item:nth-of-type(odd) .commitment__item-img{
    padding-right: 50px;
}

.commitment__item:nth-of-type(even) .commitment__item-img{
    padding-left: 50px;
}

.commitment__item:last-of-type .commitment__content{
    align-items: flex-start;
}
.commitment__item:last-of-type .commitment__content .commitment__item-body{
    padding-top: 30px;
    max-width: 470px;
}
.commitment__item:last-of-type .commitment__item-img{
    max-width: 290px;
    padding-left: 0;
}

.commitment__item-btn{
    background-color: #151e47;
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    padding: 4px 30px 6px;
    display: inline-block;
    position: relative;
    width: fit-content;
    margin-top: 25px;
}
.commitment__item-btn::before{
    content: "";
    background-image: url(../images/common/arw-next-wh.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 7px;
    height: 10px;
    position: absolute;
    top:50%;
    right: 8px;
    transform: translateY(-50%);
}




@media screen and (max-width: 1194px){
    .commitment__item:nth-of-type(odd) .commitment__item-img {
        padding-right: 4vw;
    }

    .commitment__item-title {
        font-size: max(22px, 2.5vw);
    }

    .commitment__content {
        gap: 5vw;
    }
}

@media screen and (max-width: 1023px){
    .commitment__heading-top {
        font-size: 2.7vw;
        line-height: 1.6;
    }

    .commitment__title {
        font-size: max(30px, 3.9vw);
    }

    .commitment__item:nth-of-type(odd) .commitment__item-img {
        padding-right: 2vw;
    }

    .commitment__content {
        align-items: center;
    }

    .commitment__item-img img{
        aspect-ratio: 400/280;
        object-fit: cover;
        height: 100%;
    }

    .commitment__heading::before{
        height: 28px;
        bottom: -27px;
    }

    .commitment__item:last-of-type .commitment__item-img{
        max-width: 253px;
    }
    .commitment__item:last-of-type .commitment__item-img img{
        aspect-ratio:auto
    }
}

@media screen and (max-width: 767px){
    .commitment__title {
        font-size: max(32px, 4.68vw);
        margin-top: 16px;
        line-height: 1.6;
    }

    .commitment__heading {
        padding-bottom: 35px;
    }

    .commitment__heading::before {
        height: 22px;
        bottom: -21px;
    }

    .commitment__heading-top {
        font-size: 18px;
    }

    .commitment__body {
        margin-top: 50px;
    }

    .commitment__content {
        flex-direction: column !important;
        gap: 40px;
    }

    .commitment__item-title {
        font-size: 26px;
    }

    .commitment__item-img img {
        aspect-ratio: auto;
    }

    .commitment__item-img {
        margin-top: 0;
    }

    .commitment__item:nth-of-type(odd) .commitment__item-img {
        padding-right: 0;
    }

    .commitment__item:nth-of-type(even) .commitment__item-img {
        padding-left: 0;
    }

    .commitment__item:last-of-type .commitment__item-img{
        margin: 0 auto;
    }
    .commitment__item-btn{
        margin: 20px auto 0;
        display: block;
    }

    .commitment__item:last-of-type .commitment__content .commitment__item-body{
        max-width: none;
    }
}

@media screen and (max-width: 499px){
    .commitment {
        padding-bottom: 0;
    }

    .commitment__title {
        font-size: max(24px, 6vw);
    }

    .commitment__heading-top {
        font-size: 16px;
    }

    .commitment__item-title {
        font-size: max(20px, 5.2vw);
    }

    .commitment__item {
        border-radius: 0 !important;
        margin-left: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        margin-right: calc(50% - 50vw);
        padding-right: calc(50vw - 50%);
    }

    .commitment__content {
        padding-inline: 0;
    }
}

@media screen and (max-width: 399px){
    .commitment__heading-top {
        font-size: 15px;
    }
}

/*-----------------------------------
example
-----------------------------------*/
.example{
    background-color: var(--color-light-orange-b);
}

.example .section-title{
    position: relative;
}

.example__subtitle {
    color: #fff;
    font-size: 36px;
    width: fit-content;
    margin-inline: auto;
    font-weight: 900;
    letter-spacing: 0.05em;
    background-color: var(--color-orange);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
    padding: 0.1em 1.4em 0.15em;
}

.example-section01-h2-hukidashi {
    background-color: #fff;
    border: 0.25em solid var(--color-green);
    border-radius: 50%;
    background-image: none;
    width: 6.875em;
    height: auto;
    aspect-ratio: 1 / 1;
    padding-right: 0;
    bottom: 16px;
    left: -9.4em;
}

.example__fukidashi-body{
    display: flex;
    flex-direction: column;
    position: relative;
}

.example__fukidashi-body::before {
    content: "";
    display: block;
    background-color: var(--color-green);
    width: 1em;
    height: 1.2em;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    right: -0.5em;
    bottom: -16%;
    transform: rotate(38deg);
}

.case__slide-item-fee-flex .fee-flex-box .work {
    text-align: center;
}

.example-section01 .case__slide-item {
    margin-top: 60px;
    padding: 60px 40px 40px;
}

.case__slide-item-fee {
    margin-bottom: 25px;
}

.case__slide-item-fee-flex .fee-flex-box .work {
    padding: 8px 18px;
    min-width: 90px;
}

.case__slide-item-fee-flex {
    gap: 0 25px;
}

.case__slide-item-img {
    flex-basis: 46%;
}

.case__slide-item-content {
    flex: 1;
    max-width: none;
}

.case__slide-item-flex {
    gap: 30px;
}

.example-section01 .slick-dots li button,
.service-list .slick-dots li button {
    background-color: #bdbdbd;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.example-section01 .slick-dots li.slick-active button:before,
.service-list .slick-dots li.slick-active button::before {
    background-color: var(--color-orange);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    opacity: 1;
}

.example .slick-dots li,
.service-list .slick-dots li {
    margin: 0 11px;
}

.example__link{
    margin-top: 85px;
}

.example__link a{
    display: inline-block;
    background-color: #ffeb00;
    border-radius: calc(1px / 0);
    border: 5px solid #fff ;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.025em;
    line-height: 1;
    text-align: center;
    width: 100%;
    max-width: 19.166em;
    /* height: 90px; */
    padding: 1.1em 0.2em 1.2em;
    position: relative;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.example__link a::before{
    content: "";
    display: block;
    background-image: url(../images/gomiyashiki_katazuke/icon-arrow_white.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 0.625em;
    aspect-ratio: 15/20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.8em;
}

.webp .example__link a::before{
    background-image: url(../images/gomiyashiki_katazuke/icon-arrow_white.png.webp);
}

@media screen and (max-width: 1194px){
    .example__subtitle {
        font-size: 32px;
        padding: 0.1em 0.6em 0.15em;
    }
}

@media screen and (max-width: 1023px){
    .example__link a {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px){
    .example {
        padding-top: 140px;
    }

    .example-section01 .case__slide-item {
        margin-top: 50px;
        padding-top: 40px;
    }

    .example-section01-h2{
        font-size: max(24px, 6.5vw);
    }

    .example__subtitle {
        font-size: max(20px, 3.645vw);
    }

    .example-section01-h2-hukidashi {
        position: absolute;
        font-size: max(16px, 2.4vw);
        line-height: 1.2;
        width: 16em;
        height: 2.6em;
        border-radius: calc(1px / 0);
        aspect-ratio: auto;
        top: -130px;
        left: 50%;
        transform: translateX(-50%);
    }

    .example-section01-h2-hukidashi .big {
        font-size: 4vw;
    }

    .example-section01-h2-hukidashi::before,
    .example-section01-h2-hukidashi::after {
        content: none;
    }

    .example__fukidashi-body {
        flex-direction: row;
        align-items: center;
    }

    .example__fukidashi-body::before {
        width: 1em;
        height: 0.6em;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
    }

    .example-section01 .slick-dots li button,
    .service-list .slick-dots li button {
        width: 18px;
        height: 18px;
    }

    .example-section01 .slick-dots li.slick-active button:before,
    .service-list .slick-dots li.slick-active button::before {
        background-color: var(--color-orange);
        width: 18px;
        height: 18px;
    }

    .example .slick-dots li {
        margin: 0 8px;
    }

    .case__slide-item-fee .work,
    .case__slide-item-fee-flex .fee-flex-box .work {
        font-size: 16px;
        padding: 0.4em 0.7em 0.5em;
        min-width: 4em;
    }

    .case__slide-item-fee .text-orange {
        font-size: 28px;
    }

    .fee.text-orange{
        color: var(--color-orange) !important;
    }

    .case__slide-item-fee-flex .fee-flex-box .fee {
        font-size: 20px;
    }

    .example__link {
        margin-top: 60px;
    }

    .example__link a {
        font-size: 20px;
    }
}

@media screen and (max-width: 599px){
    .example {
        padding-top: 110px;
    }

    .example-section01 .case__slide-item {
        padding-inline: 5vw;
    }

    .example-section01-h2-hukidashi .bottom-line {
        font-size: 4vw;
        padding-bottom: 0;
    }

    .example-section01-h2-hukidashi {
        top: -120px;
    }

    .example__fukidashi-body::before {
        bottom: -1.1em;
    }
}

@media screen and (max-width: 499px){
    .example-section01-h2-hukidashi .bottom-line,
    .example-section01-h2-hukidashi .big {
        font-size: 1.1em;
    }

    .example-section01-h2-hukidashi {
        top: -110px;
    }

    .case__slide-item-fee .work, .case__slide-item-fee-flex .fee-flex-box .work {
        font-size: 15px;
    }

    .slick-dots li,
    .example-section01 .slick-dots li button,
    .example-section01 .slick-dots li.slick-active button:before,
    .service-list .slick-dots li button,
    .service-list .slick-dots li.slick-active button::before,
    .slick-dots li button:before {
        width: 15px;
        height: 15px;
    }

    .example__link a {
        font-size: max(16px, 4vw);
    }

    .example__link a::before {
        right: 0.5em;
    }
}

@media screen and (max-width: 399px){
    .example-section01-h2 .h2-txt {
        font-size: max(30px, 6.5vw) !important;
    }

    .example-section01 .case__slide-item {
        margin-top: 30px;
    }
}

/*-----------------------------------
case-study
-----------------------------------*/
.case-study__info{
    display: flex;
    align-items: center;
}

.case-study__body{
    flex: 1;
    padding-right: 50px;
}

.case-study__info-title{
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-align: left;
    margin-bottom: 35px;
}

.case-study__info-title .bg-orange{
    margin-left: 0;
    margin-right: 0.2em;
    border-radius: 5px;
    letter-spacing: 0.05em;
    padding: 0.1em 0.25em 0.2em;
}

.case-study__info-text{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 2.38;
    text-align: justify;
}

.case-study__info-graph {
    flex-basis: 43.5%;
    padding-right: 40px;
    /* margin-top: 20px; */
}

.case-study__example{
    background-color: var(--color-light-orange-b);
    border-radius: 16px;
    margin-top: 90px;
}

.case-study__example-heading {
    background-image: repeating-linear-gradient(135deg, #fc720d, #fc720d 30px, #f26e0c 30px, #f26e0c 60px);
    border-radius: 16px 16px 0 0;
    padding: 1.5em;
}

.case-study__example-title{
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1;
    padding-left: 0.5em;
    width: fit-content;
    margin-inline: auto;
    position: relative;
}

.case-study__example-title::before{
    content: "";
    display: block;
    background-image: url(../images/ihinseiri_/case-study-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.857em;
    aspect-ratio: 52/61;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2em;
}

.webp .case-study__example-title::before{
    background-image: url(../images/ihinseiri_/case-study-icon.png.webp);
}

.case-study__items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px 30px;
    padding: 44px 32px 48px;
    line-height: 1;
}

.case-study__item-img{
    margin: 0;
}

.case-study__item-img img{
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}

.case-study__item-dlist{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 0.6em;
}

.case-study__item-desc{
    font-size: 1.1818em;
    margin-top: 0.5em;
}

.case-study__caution-items{
    font-size: 14px;
    line-height: 2.42;
    margin-top: 30px;
}

@media screen and (max-width: 1023px){
    .case-study__body {
        padding-right: 40px;
    }

    .case-study__info-title {
        font-size: max(32px, 3.9vw);
    }

    .case-study__info-text {
        font-size: 16px;
    }

    .case-study__item-desc {
        margin-top: 0.4em;
    }

    .case-study__example-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 899px){
    .case-study__items {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-study__item-dlist {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px){
    .case-study__info-title {
        text-align: center;
    }

    .case-study__info {
        flex-direction: column;
        gap: 30px;
    }

    .case-study__body {
        padding-right: 0;
    }

    .case-study__caution-items {
        line-height: 2.2;
        margin-top: 20px;
    }

    .case-study__info-graph {
        padding-right: 0;
        width: 60%;
    }

    .case-study__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study__items {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-inline: auto;
        gap: 42px 40px;
    }

    .case-study__example {
        margin-top: 70px;
    }
}

@media screen and (max-width: 599px){
    .case-study__example-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 499px){
    .case-study__info-graph {
        width: 75%;
    }

    .case-study__example-title {
        font-size: 20px;
    }

    .case-study__items {
        gap: 30px;
    }

    .case-study__item-dlist {
        font-size: 18px;
    }

    .case-study__example {
        margin-top: 50px;
    }

    .case-study__info {
        gap: 20px;
    }

    .case-study__items {
        padding: 30px 24px 34px;
    }
}

@media screen and (max-width: 399px){
    .case-study__info-graph {
        width: 90%;
    }

    .case-study__items {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .case-study__example-title {
        padding-left: 1em;
    }

    .case-study__example-title::before {
        width: 1.7em;
        left: -1.1em;
    }

    .case-study__example-heading {
        padding: 1.3em;
    }
}

/*-----------------------------------
area
-----------------------------------*/
.area {
    background-image: url(../images/ihinseiri_/area-bg.jpg);
    /* background-position: top -110px right calc(50% + 120px); */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f7f3ed;
    background-position: right;
    overflow: hidden;
}

.webp .area {
    background-image: url(../images/ihinseiri_/area-bg.jpg.webp);
}

.area__title{
    text-align: left;
}

.area__title-top{
    display: block;
    width: 510px;
    height: auto;
    line-height: 1;
}

.area__title-bottom {
    display: inline-block;
    background-color: #fff;
    border-radius: 5px;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 0.14em 0.4em 0.22em;
    margin-top: 0.4em;
}

.area__text{
    margin-top: 35px;
}

.area .txt-box p span,
.area-section08-box h3 span {
    position: relative;
    display: inline-block;
}

.area .txt-box p span,
.area-section08-box h3 span {
    -webkit-text-stroke: 4px #fff;
}

.area .txt-box p span::before,
.area-section08-box h3 span::before {
    content: attr(data-text);
    position: absolute;
    color: #000;
    top: 0;
    left: 0;
    -webkit-text-stroke-width: 0;
    z-index: 8;
}

.area-section08-box h3 {
    background-color: var(--color-orange-bg);
    font-weight: bold;
}

.area-section08-box ul {
    padding: 15px 20px 20px;
}

@media screen and (max-width: 1194px){
    .area {
        background-position: top -120px right -170px;
        background-size: 130%;
    }
}

@media screen and (max-width: 1023px){
    .area {
        background-size: 150%;
    }

    .area__title{
        font-size: max(40px, 4.35vw);
    }
}

@media screen and (max-width: 767px){
    .area {
        /* background-position: top -340px right -30vw; */
        background-position: top -130px right -30vw;
        background-size: 200%;
    }

    .area__title-bottom {
        font-size: 48px;
    }
}

@media screen and (max-width: 599px){
    .area {
        background-position: top -140px right -30vw;
        background-size: 240%;
    }

    .area__title{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .area__title-top {
        width: 85vw;
    }

    .area__title-bottom {
        font-size: clamp(30px, 8.5vw, 48px);
    }
}

@media screen and (max-width: 499px){
    .area {
        background-position: top -70px right -30vw;
    }

    .area__title-top {
        width: max(290px, 84vw);
    }

    .area__title-bottom {
        font-size: max(28px, 6.4vw);
    }
}

/*-----------------------------------
service-list
-----------------------------------*/
.service-list{
    padding-bottom: 155px;
}

.service-list__title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service-list__title-top{
    /* font-size: 34px; */
    font-size: max(20px, 0.65em);
    font-weight: 900;
    letter-spacing: 0.01em;
    position: relative;
    padding-inline: 0.8em;
}

.service-list__title-top::before,
.service-list__title-top::after{
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.4117em;
    aspect-ratio: 14/41;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.service-list__title-top::before{
    background-image: url(../images/ihinseiri_/service-list-title-deco-left.png);
    left: 0;
}

.webp .service-list__title-top::before{
    background-image: url(../images/ihinseiri_/service-list-title-deco-left.png.webp);
}

.service-list__title-top::after{
    background-image: url(../images/ihinseiri_/service-list-title-deco-right.png);
    right: 0;
}

.webp .service-list__title-top::after{
    background-image: url(../images/ihinseiri_/service-list-title-deco-right.png.webp);
}

.service-list__title-bottom{
    display: inline-block;
    position: relative;
}

.service-list__title-bottom::before {
    content: "";
    display: block;
    background-image: url(../images/ihinseiri_/service-list-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 535px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: -6em;
    z-index: -1;
}

.webp .service-list__title-bottom::before {
    background-image: url(../images/ihinseiri_/service-list-bg.png.webp);
}

.service-list__title-bottom .bg-orange{
    margin-left: 0;
    margin-right: 0.2em;
    border-radius: 5px;
}

.service-list .slick-track {
    /* gap: 0 50px; */
    margin-left: -235px;
    padding-top: 100px;
}

.service-list__slide-item{
    width: 420px;
    height: auto;
    margin-inline: 25px;
}

.service-list__img {
    margin: 0;
    filter: drop-shadow(0px 0px 20px rgb(172 184 196 / 40%));
}

.service-list .case-slide-arrow-next {
    border: 4px solid #fff;
    border-radius: 50%;
}

.service-list .case-slide-arrow-prev{
    border: 4px solid #fff;
    border-radius: 50%;
}

.service-list__slide-item .content .txt{
    position: relative;
}

.service-list__slide-item .content .txt::before {
    content: "";
    display: block;
    width: 0.85em;
    aspect-ratio: 1/1;
    background-image: url(../images/gomiyashiki_katazuke/service-list-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: -1.2em;
}

.webp .service-list__slide-item .content .txt::before {
    background-image: url(../images/gomiyashiki_katazuke/service-list-arrow.png.webp);
}

.service-list__img img{
    aspect-ratio: 420/260;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.service-list .case-slide-arrow-next {
    left: calc(50% + 495px);
}

.service-list .case-slide-arrow-prev {
    left: calc(50% - 495px);
}

.service-list .slick-dots li button:before {
    content: '';
}

/* .service-list .slick-dots li button::before, */
.service-list .slick-dots li button {
    background-color: transparent;
}

.service-list .slick-dots li button::before{
    background-color: #bdbdbd;
    border-radius: 50%;
    opacity: 1;
}

.service-list .slick-dots {
    bottom: -75px;
}

.case-slide-arrow-next, .case-slide-arrow-prev {
    transform: translateX(-50%);
    top: 210px;
}

.example .case-slide-arrow-next, .example .case-slide-arrow-prev {
    transform: translate(-50%, -50%);
    top: 50%;
}

.service-list__item-title{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.025em;
    margin-top: 28px;
}

.service-list__item-text{
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 2.125;
    margin-top: 15px;
}

@media screen and (max-width: 1194px){
    .service-list .slick-track {
        padding-top: 80px;
    }

    .service-list__item-title {
        font-size: 26px;
        margin-top: 1em;
    }

    .service-list__title-bottom::before {
        left: -4em;
        max-width: 7em;
        width: 100%;
    }

    .case-slide-arrow-next, .case-slide-arrow-prev {
        top: 190px;
    }
}

@media screen and (max-width: 1023px){
    .service-list .service-list__slide-item {
        max-width: 360px !important;
        width: 100% !important;
        margin-inline: 20px;
    }

    .case-slide-arrow-next, .case-slide-arrow-prev {
        top: 180px;
    }

    .service-list .case-slide-arrow-next {
        left: auto;
        /* left: calc(50% + 415px); */
        right: 0;
    }

    .service-list .case-slide-arrow-prev {
        left: 50px;
        /* left: calc(50% - 425px); */
    }

    .service-list__slide-item .content {
        font-size: 26px;
        min-height: 70px;
    }

    .service-list .slick-track {
        /* gap: 0 40px; */
        margin-left: -200px;
    }
}

@media screen and (max-width: 799px){
    .service-list .slick-track {
        margin-left: 0;
    }
}

@media screen and (max-width: 767px){
    .service-list {
        padding-bottom: 110px;
    }

    .service-list .case-slide-arrow-next {
        left: calc(50% + 180px);
        right: auto;
    }

    .service-list .case-slide-arrow-prev {
        left: calc(50% - 180px);
    }

    /* .service-list__slide-item .content {
        font-size: 28px;
    } */
}

@media screen and (max-width: 598px){
    .service-list .case-slide-arrow-next {
        left: auto;
        right: -20px;
    }

    .service-list .case-slide-arrow-prev {
        left: 30px;
    }

    .case-slide-arrow-next, .case-slide-arrow-prev {
        top: 165px;
    }
}

@media screen and (max-width: 499px){
    .service-list .service-list__slide-item {
        max-width: 320px !important;
        width: 90vw !important;
        margin-inline: 15px;
    }

    .service-list {
        padding-bottom: 90px;
    }

    .service-list .case-slide-arrow-next,
    .service-list .case-slide-arrow-prev {
        border: 2px solid #fff;
    }

    .service-list .case-slide-arrow-next {
        right: 0;
    }

    .service-list .case-slide-arrow-prev {
        left: 35px;
    }

    .service-list .slick-dots {
        bottom: -55px;
    }

    .service-list__title-top {
        font-size: max(21px, 0.65em);
        display: grid;
        padding-inline: 1.5em;
    }

    .service-list__title-top::before, .service-list__title-top::after {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .service-list__item-title {
        font-size: max(20px, 4.8vw);
    }

}
@media screen and (max-width: 399px){

    /* .case-slide-arrow-next, .case-slide-arrow-prev {
        top: 45vw;
    } */

    .service-list__title-top {
        font-size: max(16px, 0.65em);
    }
}

@media screen and (max-width: 350px){
    .case-slide-arrow-next, .case-slide-arrow-prev {
        top: calc(80px + 23vw);
    }
}

/*-----------------------------------
chiiki-section02
-----------------------------------*/

/* 片付け業者ジークリーンにおまかせください！ */
.chiiki-section02{
    /* background-image: url(../images/chiiki/chiiki-section02-bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat; */
    display: flex;
    /* padding: 0; */
    padding: 55px 0 40px;
    max-width: 1920px;
    margin: 0 auto;
}
.chiiki-section02-inner-img{
    max-width: 518px;
    flex-basis: 26.9%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.chiiki-section02-inner-img img{
    /* width: 518px; */
    height: 100%;
    max-inline-size:none;
    aspect-ratio: 518 / 828;
    height: 100%;
    object-fit: cover;
}

.chiiki-section02-inner-img.--left img{
    object-position: right;
}

.chiiki-section02-inner-img.--right img{
    object-position: left;
}
.chiiki-section02 .inner{
    padding: 58px 3% 40px;
    max-width: 880px;
}
.chiiki-section02__title{
    width: 308px;
    aspect-ratio: 308/171;
    margin-inline: auto;
    margin-bottom: 60px;
    position: relative;
}

.chiiki-section02__title::before {
    content: "";
    display: block;
    width: 479px;
    aspect-ratio: 479/582;
    background-image: url(../images/ihinseiri_/chiiki-section02-circle.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -100%;
    right: 10%;
    z-index: -1;
}

.webp .chiiki-section02__title::before {
    background-image: url(../images/ihinseiri_/chiiki-section02-circle.png.webp);
}

.chiiki-section02 .txt-box {
    letter-spacing: 0.01em;
    font-size: 16px;
    max-width: 678px;
    margin: 0 auto;
    line-height: 2.8;
    font-weight: 500;
}
.chiiki-section02 .txt-box p + p{
    margin-top: 1.8em;
}
.chiiki-section02-inner-img-sp{
    display: none;
}

@media screen and (max-width: 1194px){
    .chiiki-section02__title {
        width: 260px;
    }

    .chiiki-section02__title::before {
        width: max(250px, 40vw);
    }
}

@media screen and (max-width: 1023px){
    .chiiki-section02-inner-img-pc{
        display: none;
    }
    img.chiiki-section02-inner-img-sp{
        display: block;
        width: 100%;
        height: auto;
        max-inline-size: 100%;
        object-fit: contain;
        aspect-ratio: auto;
    }
    .chiiki-section02{
        display: block;
        padding-block: 30px;
    }
    .chiiki-section02-inner-img{
        max-width: none;
    }
    .chiiki-section02 .inner{
        padding: 70px 0 60px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-top{
        font-size: 42px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-top-img{
        max-width: 442px;
        height: 48px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-bottom{
        max-width: 502px;
        height: 106px;
    }
    .chiiki-section02__title img{
        display: block;
    }

    .chiiki-section02__title {
        width: 250px;
    }

    .chiiki-section02 .txt-box {
        line-height: 2.5;
        max-width: none;
    }
}
@media screen and (max-width: 767px){
    .chiiki-section02 .inner {
        padding: 54px 0 40px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-top{
        font-size: 5.4vw;
        margin-top: 6px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-top-img {
        max-width: 54.2vw;
        height: 6vw;
        margin-top: 6px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-bottom {
        height: 14vw;
    }
    .chiiki-section02 .txt-box{
        font-size: 16px;
    }
    .chiiki-section02__title {
        width: 200px;
    }
    .chiiki-section02__title {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 499px){
    .chiiki-section02-h2 {
        margin-bottom: 30px;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-top{
        font-size: 6.2vw;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-top-img {
        max-width: 64.2vw;
        height: 7.2vw;
    }
    .chiiki-section02-h2 .chiiki-section02-h2-bottom {
        height: 16vw;
    }

    .chiiki-section02 .txt-box {
        line-height: 2.2;
    }

    .chiiki-section02 .txt-box > *+*{
        margin-top: 1.5em !important;
    }

    .chiiki-section02 .txt-box {
        line-height: 2;
    }

    .chiiki-section02__title {
        width: 160px;
    }
}

