@charset "UTF-8";
/* ________定義_______ */
html {
    font-size: 62.5%;
}

.flex,
.voice__header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.sm_only {
    display: none !important;
}
@media screen and (max-width: 768px) {
    .sm_only {
        display: unset !important;
    }
}

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

.pc_flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .pc_flex {
        display: block;
    }
}

img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
.img-center,
.contents .contents_title_img img {
    display: block;
    margin: 0 auto;
}

.HL_text,
#case_pulldown .box .white .text span,
.pat_03 .pat_03_text span,
.timing ul li span,
.merit_back .pat_02 .pat_02_content span,
.info span {
    font-weight: bold;
    background: linear-gradient(transparent 77%, #ffe5ac 77%);
}

.blue_back {
    background-color: #ecf4fd;
    padding: 1px;
}

@font-face {
    font-family: 'NotoSansJP';
    font-weight: 400;
    src: url(../fonts/NotoSansJP-VariableFont_wght.woff) format('woff');
}
/* ________MAIN_______ */
body {
    color: #333;
    background: #fffffd;
    line-height: 2;
    font-family: 'NotoSansJP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, 'Times New Roman', YuMincho, 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
    letter-spacing: 0.05rem;
    font-size: 2rem;
}
@media screen and (max-width: 768px) {
    body {
        letter-spacing: 0.05rem;
        font-size: 1.7rem;
        line-height: 1.8;
    }
}

/* FV */
header {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
header img {
    width: 250px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0px 0;
}
@media screen and (max-width: 768px) {
    header {
        width: 100%;
        display: block;
        margin: 0 auto;
        background: #ffffff;
    }
    header img {
        width: 40%;
        display: block;
        margin: 0 auto;
        height: unset;
    }
}

.header_back {
    background: #eeeae6;
    /* height: 728px; */
    background: no-repeat center center;
    background-size: cover;
    background-image: url(../images/back.webp);
}
.header_back .header_inner {
    width: 1080px;
    margin: 0px auto 0;
    padding: 0px 0 0px 0;
    /* height: 620px; */
}
.header_back .header_inner img {
    width: 100%;
}
.header_back .header_inner small {
    font-size: 1.3rem;
}
.header_back .header_inner .main_bottom {
    background-color: #ffe8c1;
    padding: 30px 0;
}
.header_back .header_inner .main_bottom img {
    width: 1050px;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .header_inner {
        width: 100%;
        padding: 0;
    }
    .header_inner img {
        width: 100%;
    }
}
/* コンテンツ全体 */
.contents {
    width: 1000px;
    padding: 50px 30px;
    margin: 0 auto;
}
.contents .contents_title {
    line-height: 1.5;
    text-align: center;
    font-size: 3.5rem;
    margin: 0px 0 20px;
    color: rgb(255, 255, 255);
    padding: 15px 0;
    background-color: #3682d0;
}
.contents .contents_title_white {
    line-height: 1.5;
    text-align: center;
    font-size: 3.5rem;
    margin: 0px 0 20px;
    background: rgb(255, 255, 255);
    padding: 15px 0;
    color: #3682d0;
}
.contents .contents_subtitle {
    max-width: 90%;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    display: block;
    margin: 55px auto 28px;
    font-size: 1.6rem;
}
.contents .contents_subtitle::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f10d';
    font-size: 30px;
    color: #808080;
    margin: -40px -50px;
}
.contents .contents_title_img img {
    height: 320px;
    width: auto;
    margin-bottom: 70px;
}

.contents_title_shortline {
    position: relative;
    padding: 1.5rem;
    color: #3682d0;
    font-size: 4.5rem;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 50px;
}
.contents_title_shortline::before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #caa69c;
}
.contents_title_shortline_white {
    color: white;
}
.contents_title_shortline_white::before {
    background: rgba(255, 255, 255, 0.822);
}
@media screen and (max-width: 768px) {
    .contents_title_shortline {
        position: relative;
        padding: 1.5rem;
        font-size: 3.2rem;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .contents_title_shortline::before {
        position: absolute;
        bottom: -10px;
        left: calc(50% - 30px);
        width: 60px;
        height: 5px;
        content: '';
        border-radius: 3px;
        background: #caa69c;
    }
    .contents_title_shortline_white {
        color: white;
    }
    .contents_title_shortline_white::before {
        background: rgba(255, 255, 255, 0.822);
    }
}

@media screen and (max-width: 768px) {
    .contents {
        width: 100%;
        padding: 30px 12px;
        margin: 0;
    }
    .contents .contents_title {
        width: 100%;
        font-size: 3.2rem;
        line-height: 1.4;
        padding: 18px 4px;
        font-weight: bold;
        margin-bottom: 0px;
        letter-spacing: 1.2px;
        margin-bottom: 20px;
    }
    .contents .contents_title_white {
        width: 100%;
        font-size: 3.2rem;
        line-height: 1.4;
        padding: 18px 4px;
        font-weight: bold;
        margin-bottom: 0px;
        letter-spacing: 1.2px;
        margin-bottom: 20px;
    }
    .contents .contents_subtitle {
        font-size: 1.6rem;
        position: relative;
        display: block;
        text-align: left;
        margin: 60px 10px 20px 10px;
        max-width: unset;
    }
    .contents .contents_subtitle::before {
        font-size: 22px;
        margin: -42px -9px;
    }
    .contents .contents_title_img img {
        width: 100%;
        height: unset;
        margin-bottom: 30px;
    }
}
/* アクションボタン */
/* 質上げ施策 */
.info {
    background: #fff1f1;
    margin: 15px auto 0px;
    padding: 15px 5%;
    text-align: left;
    font-size: 1.7rem;
    max-width: 1000px;
    border: solid 3px #8b1000;
}
.info .titleinsub {
    text-align: center;
    margin-top: 10px;
    font-size: 1.5rem;
}
.info h3 {
    font-weight: bold;
    text-align: center;
    color: #8b1000;
    font-size: 25px;
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.3;
}
.info p.titlein {
    color: #c00;
    text-align: center;
    font-weight: bold;
}
.info ul.asterisk {
    margin-left: 100px;
    /* width: 900px; */
    /* margin: auto; */
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.info ul.asterisk li {
    list-style-type: none;
    margin-bottom: 5px;
}
.info ul.asterisk li::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f00d';
    font-size: 20px;
    color: #ba1b00;
    margin: -2px -38px;
}
@media screen and (max-width: 768px) {
    .info {
        margin-top: 20px;
        width: 96%;
        padding: 15px 10px;
        font-size: 1.6rem !important;
    }
    .info h3 {
        font-size: 1.6rem;
    }
    .info ul.asterisk {
        margin-left: 35px;
    }
    .info ul.asterisk li {
        list-style-type: none;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    .info ul.asterisk li:before {
        margin: -2px -25px;
    }
    .info .titleinsub {
        text-align: center;
        margin-top: 10px;
        font-size: 1.2rem;
    }
}

/* アピールコンテンツ〜〜縦図なし */
.merit_back .pat_02 {
    padding: 60px 40px;
    background: #fffbf0;
    margin-bottom: 80px;
    padding-top: 45px;
    border: 6px solid #3682d0;
    border-radius: 30px;
}
.merit_back .pat_02 .point_num {
    width: 15%;
    margin: 0 auto;
    display: block;
}
.merit_back .pat_02 .merit_num {
    text-align: center;
    color: #3682d0;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 2px solid;
    line-height: 1.5;
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.merit_back .pat_02 ul {
    margin: 20px 0;
}
.merit_back .pat_02 .pat_img {
    width: 38%;
    margin-left: 40px;
}
.merit_back .pat_02 h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.merit_back .pat_02 .pat_02_title {
    color: #b61d01;
    font-weight: bold;
    /* background: linear-gradient(transparent 65%, #ccd7b6 65%); */
    text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, 0px 3px 0 #fff, 0 -3px 0 #fff, -3px 0 0 #fff, 3px 0 0 #fff;
    font-feature-settings: 'palt';
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 40px;
    position: relative;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .merit_back .pat_02 {
        padding: 20px 10px;
        margin-bottom: 50px;
        border: 3px solid #7bb6d3;
        border-radius: 20px;
    }
    .merit_back .pat_02 .pat_02_content span {
        font-weight: bold;
    }
    .merit_back .pat_02 h1 {
        font-size: 2rem;
    }
    .merit_back .pat_02 .pat_img {
        width: 100%;
        margin: 20px 0 0;
    }
    .merit_back .pat_02 ul {
        margin: 20px 0;
    }
    .merit_back .pat_02 .pat_img_sm2 {
        height: 200px !important;
    }
    .merit_back .pat_02 .point_num {
        width: 30%;
        margin: 0 auto;
        display: block;
    }
    .merit_back .pat_02 .merit_num {
        font-size: 2.5rem;
    }
    .merit_back .pat_02 .pat_02_title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 15px;
    }
}

/* =========対比表=========== */
.sec .position {
    position: relative;
}

.special-table {
    font-weight: 400;
    border-spacing: 0;
    border-collapse: separate;
    margin-top: 90px;
}
.special-table .table-heading {
    border-radius: 10px 0 0 0;
}
.special-table .table-empty {
    height: 3rem;
}
.special-table .table-heading-a {
    font-size: 2.5rem;
    text-align: center;
    padding: 1em 1em;
    line-height: 2.5625rem;
    background-color: #eeeeee;
    border-left: 2px solid #333;
    border-top: 2px solid #333;
}
.special-table .table-heading-b {
    font-size: 2.5rem;
    color: #fff;
    padding: 1.75em 1em;
    background-color: #22589b;
    border: 5px solid #22589b;
    border-radius: 10px 10px 0 0;
    position: relative;
    font-weight: bold;
}
.special-table .table-lawyer {
    position: absolute;
    bottom: -5px;
    right: 2px;
}
.special-table .table-lawyer img {
    width: 145px;
}
.special-table .table-item {
    background-color: #eee;
    padding: 4rem 0;
    width: 10em;
    text-align: center;
    border-left: 2px solid #333;
    border-top: 2px dashed #94a3a9;
}
.special-table .table-item.first {
    border-radius: 10px 0 0 0;
    border-top: 2px solid #333;
}
.special-table .table-item.last {
    border-radius: 0 0 0 10px;
    border-bottom: 2px solid #333;
}
.special-table .table-a,
.special-table .table-b {
    border-top: 2px dashed #94a3a9;
    padding: 2.5rem 1rem;
    width: calc(50% - 5em);
    background-color: white;
}
.special-table .table-a.first,
.special-table .table-b.first {
    border-top: none;
}
.special-table .table-a.last,
.special-table .table-b.last {
    border-bottom: 2px solid #333;
}
.special-table .table-a.first {
    position: relative;
}
.special-table .table-a.first::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 10px 0;
}
.special-table .table-b {
    background-color: #fff9f9;
    border-left: 5px solid #22589b;
    border-right: 5px solid #22589b;
}
.special-table .table-b.last {
    border-radius: 0 0 10px 0;
    border-bottom: 5px solid #22589b;
}

@media screen and (max-width: 480px) {
    .pc-none {
        display: block;
    }
    .second-heading {
        font-size: 1.25em;
    }
    .sec-card {
        position: relative;
        padding: 1em 1em 2em;
    }
    .sec-card + .sec-card {
        margin-top: 1rem;
    }
    .card-img-right {
        margin-left: 0;
    }
    .sec-point-bg {
        width: 50px;
        height: 50px;
        top: -25px;
    }
    .sec-point-bg::before {
        font-size: 1em;
        top: -31px;
        left: auto;
    }
    .sec-point-bg img {
        width: 30px;
        height: auto;
    }
    .sec-point-box {
        font-size: 1.8rem;
        letter-spacing: 0;
        padding: 2em 1em 1.5em;
        margin-top: 5em;
        text-align: center;
    }
    .sec.hikaku .u-margin {
        margin: 2em 0;
    }
    .table-title {
        width: 228px;
        height: auto;
        top: -66px;
    }
    .pc-special-table .table-b,
    .pc-special-table .table-heading-b {
        display: none;
    }
    .special-table {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-top: 0px;
    }
    .special-table .table-a {
        padding: 1.5em 1em;
    }
    .special-table .table-b {
        padding: 1.5em 1em;
        border-left: 3px solid #22589b;
        border-right: 3px solid #22589b;
    }
    .special-table .table-b.last {
        border-bottom: 3px solid #22589b;
    }
    .special-table .table-heading-a {
        font-size: 1.8rem;
        border-radius: 10px 10px 0 0;
        border-right: 2px solid #333;
    }
    .special-table .table-heading-b {
        font-size: 1.25em;
        border: 3px solid #22589b;
        padding: 1.5em 1em 1.5em 0.5em;
        font-weight: bold;
    }
    .special-table .table-a {
        border-right: 2px solid #333;
    }
    .special-table .table-a.last {
        border-radius: 0 0 10px 0;
    }
    .special-table .table-item {
        padding: 0;
        vertical-align: middle;
    }
    .special-table .table-lawyer {
        bottom: -3px;
        right: 0px;
        width: 70px;
    }
    .special-table .table-lawyer img {
        display: none;
    }
    .sp-arrow {
        width: 30px;
        height: 30px;
        background-color: #ff6632;
        margin: 2em auto 4em;
        position: relative;
    }
    .sp-arrow::after {
        content: '';
        position: absolute;
        border: 26px solid transparent;
        border-top: 35px solid #ff6632;
        display: inline-block;
        top: 28px;
        left: 50%;
        margin-left: -26px;
    }
}
#omakase-bengoshi {
    overflow: hidden;
    padding: 0 0 145px;
}
#omakase-bengoshi .inner {
    padding: 50px 0 0;
    position: relative;
    background: #078598;
}
#omakase-bengoshi .inner::before {
    z-index: 2;
    content: '';
    display: block;
    position: absolute;
    left: calc(50% - 1000px);
    bottom: -145px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 145px 1000px 0 1000px;
    border-color: #078598 transparent transparent transparent;
}
#omakase-bengoshi .inner h2 {
    color: #fff;
    font-size: 73px;
    font-weight: 700;
    color: #f63;
    line-height: 1.2;
    letter-spacing: 0.045em;
    white-space: nowrap;
    text-align: center;
}
#omakase-bengoshi .inner h2 .white {
    display: block;
    font-size: 38px;
    color: #fff;
}
#omakase-bengoshi .inner ul {
    display: flex;
    width: 1060px;
    margin: 30px auto 0;
}
#omakase-bengoshi .inner ul li {
    overflow: hidden;
    width: 250px;
    height: 250px;
    border: none 1px #fff;
    border-radius: 50%;
    background: #fff;
}
#omakase-bengoshi .inner ul li + li {
    margin-left: 20px;
}
#omakase-bengoshi .inner ul li img {
    width: 100%;
}
@media screen and (max-width: 769px) {
    #omakase-bengoshi {
        padding-bottom: 75px;
    }
    #omakase-bengoshi .inner {
        padding: 25px 10px 0;
    }
    #omakase-bengoshi .inner::before {
        left: calc(50% - 470px);
        bottom: -74px;
        border-width: 75px 470px 0 470px;
    }
    #omakase-bengoshi .inner h2 {
        font-size: 3rem;
        white-space: normal;
        letter-spacing: -0.075em;
    }
    #omakase-bengoshi .inner h2 .white {
        font-size: 2.5rem;
        letter-spacing: 0;
    }
    #omakase-bengoshi .inner ul {
        flex-wrap: wrap;
        width: 300px;
        margin: 20px auto 0;
        padding: 0 5px;
    }
    #omakase-bengoshi .inner ul li {
        width: calc(50% - 10px);
        height: auto;
        margin: 10px 5px 0;
    }
    #omakase-bengoshi .inner ul li + li {
        margin-left: 5px;
    }
}

.timing .pc_flex {
    justify-content: flex-start;
}
.timing ul li {
    padding: 70px 50px;
    margin-bottom: 60px;
    background-color: #ffffff;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1019607843);
}
.timing ul li div br {
    display: block;
    content: '';
    margin: 10px 0;
}
.timing ul li img {
    width: 355px;
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    box-shadow: 11px 11px 0 #dbd9d9;
    margin-right: 60px;
}
.timing ul li h1 {
    font-size: 4rem;
    color: #d54b00;
    line-height: 1.3;
    font-weight: bold;
}
.timing ul li h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 20px;
    border-left: 2px solid #d54b00;
    padding: 10px 20px;
    font-weight: bold;
}
.timing ul li .HW_text {
    font-family: 'Dancing Script', cursive;
    font-size: 7rem;
    position: absolute;
    z-index: 2;
    margin-top: -95px;
    color: rgba(213, 75, 0, 0.1490196078);
}
.timing .fuan {
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #707070;
}
@media screen and (max-width: 480px) {
    .timing ul li {
        padding: 35px 15px;
    }
    .timing ul li img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
    .timing ul li h1 {
        margin-top: 80px;
        font-size: 3rem;
    }
    .timing .jirei_text {
        margin-top: 20px;
    }
    .timing .fuan {
        margin-bottom: -65px;
        margin-top: 75px;
    }
}

.reason_text {
    margin-top: 50px;
}

@media screen and (max-width: 480px) {
    .reason ul li {
        padding: 35px 15px;
    }
    .reason ul li div h2 {
        font-size: 2rem;
    }
    .reason ul li img {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .reason ul li div h1 {
        margin-top: 80px;
        font-size: 3rem;
    }
    .reason_text {
        margin-top: 30px;
    }
}
/* アピールコンテンツ〜〜横２ */
.pat_03 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pat_03 li {
    background-color: white;
    width: 48%;
    margin-bottom: 100px;
    color: black(0, 13, 102);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1019607843);
}
.pat_03 img {
    width: 100%;
    height: 215px;
    -o-object-fit: cover;
    object-fit: cover;
}
.pat_03 .pat_03_text {
    padding: 45px;
}
.pat_03 .pat_03_text small {
    line-height: 1.7;
    display: block;
}
.pat_03 .pat_03_text_title {
    color: #b61d01;
    line-height: 1.5;
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .pat_03 li {
        margin-bottom: 30px;
        width: 100%;
    }
    .pat_03 .pat_03_text {
        padding: 30px 20px;
    }
    .pat_03 .pat_03_text_title {
        margin-bottom: 15px;
        font-size: 2.8rem;
    }
}

/* 事例など、プルダウン */
#case_pulldown {
    position: relative;
}
#case_pulldown .box {
    margin: 0 auto 4.8rem;
}
#case_pulldown .box:last-child {
    margin-bottom: 0;
}
#case_pulldown .box .tab {
    padding: 1.1rem 0 0.8rem;
    width: 17.2rem;
}
#case_pulldown .box .tab p {
    text-align: center;
    color: #dcdcdc;
    line-height: 1;
    font-weight: bold;
    font-size: 8.2rem;
    margin-bottom: -40px;
    margin-left: -30px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .tab p {
        font-size: 2.8rem;
    }
}
#case_pulldown .box .tab p span {
    font-size: 6rem;
}
@media screen and (min-width: 769px) {
    #case_pulldown .box .t_center {
        font-size: 1.5rem;
    }
}
#case_pulldown .box .white {
    position: relative;
    background: #fcfaf5;
    overflow: hidden;
    padding: 70px 40px 30px;
    margin: 0 auto;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1019607843);
}
#case_pulldown .box .white .flex,
#case_pulldown .box .white .voice__header {
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .white .flex,
    #case_pulldown .box .white .voice__header {
        justify-content: space-around;
    }
}
#case_pulldown .box .white h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.6;
    border-bottom: 1px solid;
    padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .white h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}
#case_pulldown .box .white .profile li:last-child span:after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 0.8rem);
    width: 1.6rem;
    height: 1.6rem;
    background: #3682d0;
}
#case_pulldown .box .white .initial li:last-child .t3 {
    position: relative;
    color: #3682d0;
    display: inline-block;
    background: #e6e8ec;
    padding: 20px 30px;
    border-radius: 1.2rem;
    line-height: 1;
}
#case_pulldown .box .white .get li:last-child .t2 span.s1 {
    color: #b61d01;
    padding: 0 1rem;
    margin-right: 0.8rem;
    position: relative;
    font-size: 11rem;
}
#case_pulldown .box .white::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 30px 30px 0;
    /* This trick side-steps a webkit bug */
    border-style: solid;
    border-color: #f6f6f6 #f6f6f6 #d7ceb3 #d7ceb3;
    /* A bit more verbose to work with .rounded too */
    background: #d7ceb3;
    /* For Opera when also applying a border-radius */
    display: block;
    width: 0;
    /* Only for Firefox 3.0 damage limitation */
    /* Optional: shadow */
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), -1px 1px 1px rgba(0, 0, 0, 0.2);
}
#case_pulldown .box .white .profile {
    margin-bottom: 3.2rem;
}
#case_pulldown .box .white .profile li:first-child {
    margin-right: 3.2rem;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .white .profile li:first-child {
        margin-right: 0rem;
    }
}
#case_pulldown .box .white .profile li:first-child img {
    max-width: 200px;
}
#case_pulldown .box .white .profile li:last-child {
    padding-top: 2.2rem;
}
#case_pulldown .box .white .profile li:last-child span {
    position: relative;
    display: inline-block;
    color: #393939;
    font-weight: bold;
    line-height: 1;
    padding-left: 2.4rem;
    margin: 0 1.6rem 1.3rem 0;
}
#case_pulldown .box .white .initial {
    display: flex;
    margin-bottom: 3rem;
}
#case_pulldown .box .white .initial li:first-child {
    color: #393939;
    margin-right: 2.2rem;
    align-items: flex-start;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .white .initial li:first-child {
        margin-right: 1.5rem;
    }
}
#case_pulldown .box .white .initial li:first-child .t1 {
    font-weight: 400;
    font-size: 2.3rem;
    line-height: 1.2;
}
#case_pulldown .box .white .initial li:first-child .t2 {
    text-align: center;
    font-weight: bold;
    margin-top: -20px;
}
#case_pulldown .box .white .initial li:first-child .t2 span {
    font-size: 4.5rem;
}
#case_pulldown .box .white .initial li:last-child .t3.sl {
    padding: 2.6rem 1.6rem 2.6rem !important;
}
#case_pulldown .box .white .initial li:last-child .t3 span {
    font-size: 6rem;
    font-weight: bold;
}
#case_pulldown .box .white .initial li:last-child .t3 img {
    position: absolute;
    right: -29px;
    top: -35px;
    width: 70px;
}
#case_pulldown .box .white .initial li:last-child .t3:after {
    position: absolute;
    left: 8.4rem;
    bottom: -5.2rem;
    content: '';
    border-top: 3.6rem solid #e6e8ec;
    border-right: 2.4rem solid transparent;
    border-bottom: 2.4rem solid transparent;
    border-left: 2.4rem solid transparent;
}
#case_pulldown .box .white .initial li.ss:first-child {
    width: 17.4rem;
    margin-right: 0;
}
#case_pulldown .box .white .initial li.ss:first-child .t2 {
    text-align: left;
    letter-spacing: -0.03em;
}
#case_pulldown .box .white .get {
    display: flex;
    justify-content: space-between;
    color: #393939;
    margin-bottom: 3.6rem;
    align-items: flex-end;
    width: 100%;
}
#case_pulldown .box .white .get li:first-child {
    margin-right: 1rem;
}
#case_pulldown .box .white .get li:first-child .t1 {
    text-align: center;
    width: 95px;
    padding: 17px;
    background: #3682d0;
    color: white;
    font-weight: bold;
    line-height: 1.14;
    font-size: 3rem;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .white .get li:first-child .t1 {
        font-size: 2.5rem;
        padding: 10px;
        width: -moz-fit-content;
        width: fit-content;
    }
}
#case_pulldown .box .white .get li:last-child {
    width: calc(100% - 9rem);
}
#case_pulldown .box .white .get li:last-child .t2 {
    line-height: 1.2;
    font-weight: bold;
    text-wrap: nowrap;
}
#case_pulldown .box .white .get li:last-child .t2 span {
    position: relative;
    z-index: 1;
}
#case_pulldown .box .white .get li:last-child .t2 span.s1:after {
    position: absolute;
    left: 0;
    bottom: 1.1rem;
    width: 100%;
    height: 3.6rem;
    background: #ffde67;
    content: '';
    z-index: -1;
}
#case_pulldown .box .white .get li:last-child .t2 span.s1.sl {
    padding: 0.7rem 0.5rem 0;
    margin-right: 0.5rem;
    line-height: 1.45;
}
#case_pulldown .box .white .text {
    font-weight: 400;
    line-height: 2;
    color: #393939;
    letter-spacing: -0.02em;
    display: none;
    padding-top: 20px;
}
#case_pulldown .box .white .text br {
    display: block;
    content: '';
    margin: 10px 0;
}
#case_pulldown .box .white .text .mark1 {
    margin-bottom: 10px;
    background-color: #0d5abf;
    color: white;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 19px;
    padding: 0px 11px;
}
#case_pulldown .box .white .text > div {
    margin-bottom: 25px;
}
#case_pulldown .box .white .answer-btn {
    text-align: center;
    margin-top: 25px;
}
#case_pulldown .box .white .answer-btn img {
    margin: 0 auto;
    display: block;
}
#case_pulldown .box .white .answer-btn img.open {
    width: 10.8rem;
}
#case_pulldown .box .white .answer-btn img.close {
    width: 6rem;
    display: none;
}
#case_pulldown .box .white .answer-btn img:hover {
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    #case_pulldown .box .white {
        padding: 30px 10px 20px;
    }
    #case_pulldown .box .white .profile {
        display: flex;
        flex-flow: column;
        align-items: center;
        margin: 0 auto 20px;
    }
    #case_pulldown .box .white .profile li:first-child img {
        width: 150px;
    }
    #case_pulldown .box .white .profile li:last-child {
        padding-top: 0rem;
    }
    #case_pulldown .box .white .initial {
        align-items: center;
    }
    #case_pulldown .box .white .initial li:first-child .t2 {
        margin-top: 0;
    }
    #case_pulldown .box .white .initial li:first-child .t2 span {
        font-size: 2.5rem;
    }
    #case_pulldown .box .white .initial li:last-child .t3 {
        text-align: center;
    }
    #case_pulldown .box .white .get li:last-child .t2 span.s1 {
        font-size: 6rem;
        margin-right: 0;
    }
    #case_pulldown .box .white .get li:last-child .t2 span.s1:after {
        height: 1.6rem;
        bottom: 0;
    }
}

/* 解決までの流れ */
.flow_box {
    background-color: white;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    margin: 25px 8px;
    padding: 30px;
}

.flow_left {
    position: relative;
    width: 85px;
    margin-top: 29px;
}

.flow_right {
    margin: 10px 20px 18px 15px;
    padding-top: 0px;
    position: relative;
}

.flow_right_h {
    font-size: 5rem;
    font-weight: bold;
    color: #000;
    margin-left: 15px;
}

.flow_left p {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: #ff822d;
    color: #fff;
    font-size: 2.4rem;
    padding: 16px 0px 0px 0px;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
}
.flow_left p span {
    display: block;
    font-size: 1.8rem;
}

.flow_right div p {
    margin: 16px 30px 16px 0px;
    line-height: 1.7;
}
.flow_right img {
    padding: 10px;
    width: 315px;
}
.flow_right .flex,
.flow_right .voice__header {
    flex-wrap: nowrap;
    align-items: center;
}
.flow_right p {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .flow_box {
        background-color: white;
        box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
        margin: 30px 8px;
        padding: 30px 10px;
        display: flex;
        flex-flow: column;
    }
    .flow_right p {
        text-align: center;
    }
    .flow_left {
        position: relative;
        width: 60px;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .flow_right {
        margin: 10px 7px 18px 7px;
        padding-top: 0px;
        position: relative;
    }
    .flow_right div p {
        margin: 0px;
        line-height: 1.7;
        text-align: left;
    }
    .flow_right_h {
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 13px;
        margin-left: 0;
    }
    .import {
        font-weight: bolder;
    }
    .flow_left p {
        width: 60px;
        height: 60px;
        color: #fff;
        font-size: 1.9rem;
        padding: 16px 0px 0px 0px;
        line-height: 1;
        text-align: center;
        font-weight: bold;
    }
    .flow_left p span {
        display: block;
        font-size: 1.5rem;
    }
    .flow_right img {
        padding: 10px 0 0 0;
        width: 100%;
    }
    .flow_right .flex,
    .flow_right .voice__header {
        flex-wrap: wrap;
        align-items: left;
    }
}
/* 費用について */
.cost_table table {
    border: 1px solid #dadada;
    margin-top: 12px;
    display: grid;
}
.cost_table table tr,
.cost_table table th {
    display: grid;
}
.cost_table table th {
    border-bottom: 1px solid #dadada;
    background: #f3f3f3;
    text-align: left;
    font-weight: bold;
}
.cost_table table tr td {
    border-bottom: 1px solid #dadada;
}

.red {
    font-weight: bold;
    color: #b61d01;
}

.cost_table table tr td p {
    margin-bottom: 8px;
}
.cost_table table th,
.cost_table table td {
    padding: 12px;
}
.cost_table table tr:last-of-type td {
    border-bottom: none;
}

.cost_asterisk li {
    list-style-type: none;
    text-indent: -1em;
    margin-top: 5px;
    text-align: left;
}
.cost_asterisk li:before {
    display: inline;
    content: '※';
}

.cost_list li {
    list-style-type: none;
    text-indent: -1em;
    margin-top: 5px;
    margin-left: 15px;
    font-size: 12px;
}
.cost_list li:before {
    display: inline;
    content: '・';
}

.cost_asterisk {
    margin-left: 20px;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .cost_asterisk {
        font-size: 1.4rem;
    }
    .cost_asterisk li {
        margin-left: 0;
    }
}
/* 事務所のご案内 */
.office_subtable .flex,
.office_subtable .voice__header {
    justify-content: flex-start;
    align-items: unset;
    margin: 0 auto;
}
.office_subtable .area_box {
    background: #fff;
    width: 32%;
    margin: 6px;
    border: 1px solid #ccc;
    line-height: 1.2;
    padding: 8px;
}
@media screen and (max-width: 768px) {
    .office_subtable .area_box {
        width: 100%;
    }
}
.office_subtable .area_box a {
    color: #000;
    font-size: 1.4rem;
}
.office_subtable .area_box .shiten_title {
    /* background-color: #051132; */
    text-align: center;
    /* padding: 5px; */
    font-weight: bold;
    color: #000;
}

.office_box img {
    vertical-align: bottom;
}

.office_table {
    padding: 8px;
    margin-top: 8px;
}
.office_table table {
    border: 1px solid #dadada;
    margin-top: 12px;
    display: grid;
}
.office_table table tr,
.office_table table th,
.office_table table td {
    display: grid;
}
.office_table table th {
    border-bottom: 1px solid #dadada;
    background: #f5e8d9;
    text-align: left;
    font-weight: bold;
}
.office_table table tr td {
    border-bottom: 1px solid #dadada;
}
.office_table table tr td p {
    margin-bottom: 8px;
}
.office_table table th,
.office_table table td {
    padding: 12px;
}
.office_table table tr:last-of-type td {
    border-bottom: none;
}

.office_subtabletitle {
    border-bottom: 1px solid #dadada;
    background: #f3f3f3;
    text-align: left;
    font-weight: bold;
    padding: 12px;
}

.office_subtable {
    padding: 8px;
    margin-top: 0;
}
.office_subtable p.txt {
    color: #cab795;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.4;
    margin-top: 40px;
    border-bottom: 2px solid #cab795;
}
.office_subtable table {
    border: none;
    margin-top: 0px;
    display: flex;
}
.office_subtable table.txt {
    width: 70%;
}
.office_subtable table.pic {
    width: 20%;
}
.office_subtable table td.s-text {
    font-size: 13px;
}
.office_subtable table tr,
.office_subtable table th,
.office_subtable table td {
    display: flex;
}
.office_subtable table th {
    border-bottom: 1px solid #ffffff;
    text-align: left;
    font-weight: normal;
    width: 165px;
}
.office_subtable table tr td {
    border-bottom: 1px solid #ffffff;
    display: grid;
}
.office_subtable table tr td.smalla {
    width: 54px;
}
.office_subtable table th,
.office_subtable table td {
    padding: 4px;
}
.office_subtable p {
    margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
    .office_box img {
        vertical-align: bottom;
        width: 100%;
        margin: 10px 0px 45px;
    }
    .office_subtabletitle {
        border-bottom: 1px solid #dadada;
        background: #e8ecef;
        text-align: left;
        font-weight: bold;
        padding: 12px;
    }
    .office_subtable {
        padding: 8px;
        margin-top: 14px;
        font-size: 1.4rem;
    }
    .office_subtable table {
        border: none;
        margin-top: 0px;
        display: flex;
    }
    .office_subtable table tr,
    .office_subtable table th,
    .office_subtable table td {
        display: flex;
    }
    .office_subtable table th {
        border-bottom: 1px solid #ffffff;
        background: #fff;
        text-align: left;
        font-weight: normal;
        width: 74px;
        white-space: nowrap;
    }
    .office_subtable table tr td {
        border-bottom: 1px solid #ffffff;
        display: grid;
        width: 255px;
    }
    .office_subtable table tr td.smalla {
        width: 16px;
    }
    .office_subtable table th,
    .office_subtable table td {
        padding: 4px;
    }
    .office_subtable p {
        margin-bottom: 12px;
        margin: 0px;
    }
    .office_subtable p span {
        font-size: 1.3rem;
    }
    /*office*/
    .chizu_box {
        border: 1px solid #ccc;
        padding: 8px;
        margin: 4px 4px 14px 4px;
    }
    .chizu_title {
        font-weight: bold;
    }
    .chizu_text {
        font-size: 1.3rem;
    }
    .jusyo {
        display: none;
    }
    .chizu_btn {
        text-align: center;
        font-size: 1.3rem;
        color: -webkit-link;
    }
}
/* よくある質問〜〜折りたたみ式 */
.accordion-area {
    list-style: none;
    width: 96%;
    margin: 65px auto;
}
.accordion-area li {
    margin: 10px 0;
}
.accordion-area section {
    box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(128, 128, 128, 0);
    background: white;
    border-radius: 5px;
    margin-bottom: 25px;
}

.title {
    position: relative;
    cursor: pointer;
    font-weight: 700;
    padding: 3% 3% 3% 85px;
    transition: all 0.5s ease;
}
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 27px;
    height: 2px;
    background-color: #333;
}
.title::before {
    top: 48%;
    left: 30px;
    transform: rotate(0deg);
}
.title::after {
    top: 48%;
    left: 30px;
    transform: rotate(90deg);
}
.title.close::before {
    transform: rotate(45deg);
}
.title.close::after {
    transform: rotate(-45deg);
}

.accordion-area .box {
    opacity: unset;
    display: none;
    background: #def0ff;
    margin: 0 3% 3% 3%;
    padding: 2%;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .accordion-area {
        margin: 30px auto;
    }
    .title {
        position: relative;
        cursor: pointer;
        font-weight: 700;
        padding: 3% 3% 3% 50px;
        transition: all 0.5s ease;
    }
    .title::before,
    .title::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background-color: #333;
    }
    .title::before {
        top: 48%;
        left: 15px;
        transform: rotate(0deg);
    }
    .title::after {
        top: 48%;
        left: 15px;
        transform: rotate(90deg);
    }
}
/*   上に戻るボタン */
.pagetop {
    cursor: pointer;
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.3s;
    color: #00a6c4;
    border: solid 2px #00a6c4;
    background: #fff;
    z-index: 1000;
    /*   デフォルトは非表示 */
    opacity: 0;
}
.pagetop:hover {
    box-shadow: 0 0 10px #00a6c4;
}

.privacy {
    text-decoration: underline;
}

/*404*/
.not_box {
    width: 90%;
    margin: 110px auto;
}

.not_box ol {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 15px;
}

.not_box ol li {
    list-style-type: decimal;
}

#privacy h1 {
    font-weight: bold;
    font-size: 2.3rem;
    text-align: center;
    margin: 20px 0;
}
#privacy .word {
    margin-bottom: 30px;
}
#privacy .word_header_titleh2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 30px;
}
#privacy .word p {
    line-height: 1.5;
}
#privacy .word_header span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    border-radius: 3px;
    background: #08104e;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
#privacy .word_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
#privacy ol {
    position: relative;
    margin: 0;
    padding: 0;
}
#privacy ol li {
    list-style: none;
    list-style-position: outside;
    margin: 0;
    padding-left: 1.25em;
}
#privacy ol li span {
    position: absolute;
    left: 0;
    margin: 0;
}
#privacy .annai {
    width: 1000px;
    margin: 14px auto;
}
#privacy .info {
    background: #fbf8f8;
    width: 945px;
    margin: 10px auto;
    padding: 14px;
    text-align: left;
    border: 1px solid #c00;
}
#privacy .info p.titlein {
    color: #c00;
    /* padding-left: 130px; */
    text-align: center;
}
#privacy ul.asterisk {
    padding-top: 10px;
    display: flex;
    width: 1000px;
    margin: auto;
}
#privacy ul.asterisk li {
    list-style-type: none;
    padding: 0px;
    padding-left: 40px;
}
#privacy ul.asterisk li:before {
    display: inline;
    content: '※';
}

.tel_area {
    position: fixed;
    right: 0;
    z-index: 504;
    top: 15%;
}

.tel_banner {
    background-color: #a72b31;
    padding: 52px 11px 72px;
    border-radius: 63px;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
}

.tel_ban_num {
    font-family: 'Oswald', sans-serif;
    font-weight: bolder;
    font-size: 40px;
    margin: 0 auto;
    writing-mode: vertical-rl;
    text-wrap: nowrap;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    max-height: 300px;
    line-height: 1.2;
    margin-top: 27px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.saitama {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-align: initial;
    -webkit-writing-mode: vertical-rl;
    font-size: 18px;
    text-align: center;
}

.saitama span {
    color: #f8ff09;
    font-weight: bold;
    padding: 6px 0;
    font-size: 2.4rem;
    letter-spacing: 0.2em;
}

.tel_ban_text {
    font-size: 14px;
    line-height: 1.2;
}

.action_top_text {
    text-align: center;
    font-weight: bold;
    color: #597622;
    padding: 10px 0 5px;
    width: 80%;
    margin: 0 auto -22px;
    line-height: 1.5;
}

.action_top_text.senyo {
    background: #c32c00;
    color: white;
    padding: 5px 30px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 34px;
    margin-bottom: 0;
}

.action_top_text span {
    font-weight: bold;
    font-size: 1.6rem;
}

span.dot_text {
    display: inline-block;
    position: relative;
}

span.dot_text::before {
    position: absolute;
    top: -0.7em;
    left: 50%;
    transform: translate(-50%, 0);
    color: #597622;
    font-size: 1em;
    content: '・';
}

@media screen and (max-width: 768px) {
    .action_top_text {
        margin: 0;
        width: auto;
        text-align: left;
        display: block;
        font-size: 1.4rem;
        border-radius: 34px;
        margin-left: 8px;
    }
    .action_top_text.senyo {
        padding: 5px 15px;
        border-radius: 12px;
        margin: 0 auto;
        margin-bottom: -3px;
    }
    .sp_left {
        text-align: center;
        display: inline-block;
    }
    .sm_only {
        display: block !important;
    }
}
.tel {
    position: relative;
    z-index: 10;
}

.tel img {
    position: relative;
    z-index: 10;
}

.bigpoint_box {
    background-color: #f3f1e5;
    padding: 100px 0;
}
@media screen and (max-width: 768px) {
    .bigpoint_box {
        padding: 15px 0 50px;
    }
}
.bigpoint_box img {
    width: 1200px;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width: 768px) {
    .bigpoint_box img {
        width: 95%;
    }
}

.contents01 {
    background-color: #ffffff;
    padding-bottom: 0;
}
@media screen and (min-width: 769px) {
    .contents01 img {
        width: 1080px;
    }
}

@media screen and (min-width: 769px) {
    .contents02 {
        padding: 0px;
        padding-bottom: 40px;
    }
    .contents02 img {
        width: 1080px;
    }
}

.contents02_middle_img {
    margin-top: -30px;
}
@media screen and (min-width: 769px) {
    .contents02_middle_img {
        margin-top: 0;
        margin-bottom: -30px;
    }
}

.contents02_ {
    background: white;
    background-image: url(../images/back_img01_sp.svg);
    background-size: 100% auto;
    background-repeat: repeat;
    background-position: center top;
    padding-top: 40px;
    margin-top: -31px;
}
@media screen and (min-width: 769px) {
    .contents02_ {
        background: white;
        background-image: url(../images/back_img01.svg);
        background-size: cover;
        background-repeat: repeat;
        background-position: center top;
    }
}

.contents03 {
    background: #ecf4fd;
}
.contents03 .contents03_title {
    margin-bottom: 0px;
}

.case {
    background-color: #00aec8;
}
.case .contents_title {
    background-color: white;
    color: #3682d0;
}
.case .contents_subtitle {
    color: white;
}
.case .contents_subtitle:before {
    color: white;
}
.case__container {
    margin-bottom: 30px;
}
.case__box {
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1019607843);
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
    .case__box {
        padding: 50px 60px 15px;
    }
}
.case__box:last-child {
    margin-bottom: 0;
}
.case__content {
    width: 100%;
}
.case__title {
    font-weight: bold;
    font-size: 2.6rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Profile Block */
.profile__wrapper {
    margin-bottom: 0px;
}
.profile__header {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    flex-flow: column;
}
.profile__personal {
    width: 100%;
}
@media screen and (min-width: 769px) {
    .profile__personal .flex,
    .profile__personal .voice__header {
        width: 460px;
        margin: 0 auto;
    }
}
.profile__image-wrapper {
    text-align: center;
}
.profile__image_lawyer {
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #fff9b5;
    width: 120px;
    margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
    .profile__image_lawyer {
        width: 180px;
    }
}
.profile__image_lawyer img {
    width: 153px;
    display: block;
    margin-left: -15px;
    margin-top: -7px;
}
@media screen and (min-width: 769px) {
    .profile__image_lawyer img {
        width: 213px;
    }
}
.profile__image_lawyer img.profile__image2 {
    width: 123px;
    display: block;
    margin-left: 0px;
    margin-top: 3px;
}
@media screen and (min-width: 769px) {
    .profile__image_lawyer img.profile__image2 {
        width: 189px;
    }
}
.profile__image {
    width: 180px;
    margin-bottom: 20px;
}
.profile__text {
    text-align: center;
    font-size: 1.3rem;
    color: gray;
    line-height: 1.2;
}
@media screen and (min-width: 769px) {
    .profile__text {
        font-size: 1.6rem;
    }
}

/* Consultation Block */
.consultation {
    margin: 35px 0 0;
}
.consultation__status {
    margin-bottom: 10px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.3rem;
    font-weight: bold;
    padding: 0 11px;
    border-radius: 8px;
}
.consultation__status--before {
    border: 1px solid #5f5f5f;
    color: #5f5f5f;
}
.consultation__status--after {
    background-color: #00aec8;
    color: white;
}
.consultation__text {
    line-height: 2;
    font-size: 1.6rem;
    color: #393939;
}
.consultation__details--hidden {
    display: none;
}

/* Toggle Block */
.toggle {
    text-align: center;
}
.toggle__button {
    background: none;
    border: none;
    cursor: pointer;
    color: #838383;
}
.toggle__icon {
    height: 25px;
    width: auto;
    margin: 10px auto 0;
    display: block;
}
.toggle__icon--close {
    display: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .case__box {
        padding: 20px 10px;
    }
    .case__title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .profile__header {
        flex-direction: column;
    }
    .profile__personal {
        width: 100%;
    }
    .profile__image {
        width: 120px;
        height: auto;
        margin-bottom: 20px;
    }
    .consultation {
        margin: 25px 0 0 0;
        font-size: 1.5rem;
    }
    .consultation__status {
        font-size: 1.6rem;
    }
    .consultation__text {
        font-size: 1.6rem;
        text-align: justify;
    }
}
.page-case__datelist {
    border-radius: 5px;
    border: 2px solid #d2d2d2;
    overflow: hidden;
    color: rgb(46, 46, 46);
    width: 100%;
}
@media screen and (max-width: 768px) {
    .page-case__datelist {
        font-size: 1.4rem;
    }
}
.page-case__datelist dt,
.page-case__datelist dd {
    padding: 8px;
}
.page-case__datelist dt {
    font-weight: bold;
    width: 45%;
    background-color: #f5f5f5;
}
.page-case__datelist div {
    display: flex;
}
.page-case__datelist div + div {
    border-top: 1px dashed #d2d2d2;
}
.page-case__datelist.-min dt,
.page-case__datelist.-min dd {
    padding: 8px;
}
.page-case__datelist.-min dt span,
.page-case__datelist.-min dd span {
    color: #e07a00;
    font-weight: bold;
}
.page-case__datelist.-min dt span.heigh,
.page-case__datelist.-min dd span.heigh {
    background: linear-gradient(transparent 37%, #ffeb3b 37%);
}
.page-case__datelist.-min dt span b,
.page-case__datelist.-min dd span b {
    font-size: 3rem;
}
.page-case__datelist.-min dt {
    width: 47%;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: benefits-counter;
}
.benefits__item {
    background-color: white;
    width: 48%;
    margin-bottom: 50px;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    counter-increment: benefits-counter;
}
@media screen and (min-width: 768px) {
    .benefits__item--wide {
        width: 100%;
        display: flex;
    }
    .benefits__item--wide .benefits__image {
        width: 300px;
        margin-left: 20px;
    }
}
@media screen and (max-width: 768px) {
    .benefits__item {
        margin-bottom: 30px;
        width: 100%;
    }
}
.benefits__image {
    width: 100%;
    height: 215px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .benefits__image {
        height: 155px;
    }
}
.benefits__content {
    text-align: justify;
    padding: 0px 20px 45px;
    position: relative;
}
@media screen and (max-width: 768px) {
    .benefits__content {
        padding: 0px 20px 30px;
    }
}
.benefits__description {
    font-size: 2.2rem;
}
.benefits__title {
    color: #3682d0;
    line-height: 1.5;
    font-size: 2.8rem;
    margin: 30px 0;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .benefits__title {
        font-size: 3.4rem;
        margin-bottom: 15px;
    }
}
.benefits span {
    color: #e07a00;
    font-weight: bold;
}

/* よくある質問❶ */
.faq__title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.faq__accordion {
    list-style: none;
    margin: 65px auto;
}

@media screen and (max-width: 768px) {
    .faq__accordion {
        margin: 30px auto;
        width: 100%;
    }
}
.faq__item {
    margin: 10px 0;
}

.faq__section {
    box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background: white;
    border-radius: 5px;
    margin-bottom: 25px;
}

.faq__question {
    position: relative;
    cursor: pointer;
    font-weight: 700;
    padding: 3% 3% 3% 85px;
    transition: all 0.5s ease;
}
.faq__question::before,
.faq__question::after {
    position: absolute;
    content: '';
    width: 27px;
    height: 2px;
    background-color: #333;
}
.faq__question::before {
    top: 48%;
    left: 30px;
    transform: rotate(0deg);
}
.faq__question::after {
    top: 48%;
    left: 30px;
    transform: rotate(90deg);
}

.faq__question--closed::before {
    transform: rotate(45deg);
}
.faq__question--closed::after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .faq__question {
        padding: 3% 3% 3% 50px;
    }
    .faq__question::before,
    .faq__question::after {
        width: 15px;
    }
    .faq__question::before,
    .faq__question::after {
        left: 15px;
    }
}
.faq__answer {
    opacity: unset;
    display: none;
    background: #f1f1f1;
    margin: 0 3% 3% 3%;
    padding: 4% 5%;
    border-radius: 8px;
}
.faq__answer b {
    font-weight: 600;
    color: #ab6274;
}

@media screen and (min-width: 768px) {
    .faq__answer {
        padding: 2%;
    }
}
/* CSSのコード */
.flow__box {
    background-color: white;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    margin: 25px 8px;
    padding: 30px;
    counter-increment: number;
}
@media screen and (max-width: 768px) {
    .flow__box {
        padding: 30px 10px;
        margin: 30px 8px;
    }
}
.flow__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
@media screen and (min-width: 769px) {
    .flow__container .flow__step {
        display: flex;
    }
}
@media screen and (max-width: 768px) {
    .flow__container {
        flex-direction: column;
    }
}
.flow__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #3682d0;
    color: #fff;
    text-align: center;
    margin-top: 18px;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .flow__number {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
}
.flow__number-text {
    font-size: 2.4rem;
    font-weight: bold;
    padding-top: 16px;
    line-height: 1.3;
}
.flow__number-text::after {
    content: counter(number);
    display: block;
}
@media screen and (max-width: 768px) {
    .flow__number-text {
        font-size: 1.9rem;
        padding-top: 13px;
    }
}
.flow__number-label {
    display: block;
    font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
    .flow__number-label {
        font-size: 1.5rem;
    }
}
.flow__content {
    margin: 10px 0px 18px 15px;
}
@media screen and (max-width: 768px) {
    .flow__content {
        margin: 10px 7px 18px;
    }
}
.flow__title {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .flow__title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 13px;
        color: #3682d0;
    }
}
.flow__description {
    margin: 16px 10px 16px 0;
    line-height: 1.7;
}
@media screen and (max-width: 768px) {
    .flow__description {
        margin: 0;
    }
}
.flow__image {
    width: 315px;
    padding: 10px;
}
@media screen and (max-width: 768px) {
    .flow__image {
        width: 100%;
        padding: 10px 0 0;
    }
}
.flow__actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    margin-left: -40px;
}
@media screen and (max-width: 768px) {
    .flow__actions {
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 15px;
    }
}
.flow__actions-image {
    width: 100%;
}

.action_area {
    background: #fff url(../images/action_back.webp);
    background-size: contain;
    margin: 0 auto;
    padding: 30px 0px;
}
@media screen and (min-width: 769px) {
    .action_area {
        padding: 50px 8px;
    }
}
@media screen and (min-width: 769px) {
    .action_area .action_top {
        width: 1000px;
    }
}
@media screen and (min-width: 769px) {
    .action_area .action_btn_top {
        width: 900px;
    }
}
.action_area .cta_area {
    padding: 0 8px;
    margin-top: -30px;
}
@media screen and (min-width: 769px) {
    .action_area .cta_area {
        width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .action_area .cta_area .box_tel,
    .action_area .cta_area .box_mail {
        width: 48%;
    }
}
.action_area .cta_area img {
    margin-bottom: 10px;
}

.problem-appeal {
    position: relative;
    z-index: 10;
    margin-top: -48px;
    background-image: linear-gradient(#fff2d1, #f3da9e, #dcbc78);
}
@media screen and (max-width: 768px) {
    .problem-appeal {
        margin-top: -30px;
    }
}
.problem-appeal::before {
    content: '';
    display: block;
    width: 100%;
    background: #00aec8;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: relative;
    z-index: 2;
    height: 50px;
}
@media screen and (max-width: 768px) {
    .problem-appeal::before {
        height: 40px;
    }
}
.problem-appeal::after {
    content: '';
    display: block;
    width: 100%;
    background-color: #fffef3;
    clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 50% 100%, 0 100%);
    position: relative;
    z-index: 3;
    height: 50px;
    transform: translateY(1px);
}
@media screen and (max-width: 768px) {
    .problem-appeal::after {
        height: 40px;
    }
}

.problem-appeal-inner img {
    width: 900px;
    display: block;
}
.problem-appeal-inner h1 {
    text-align: center;
    font-size: 3.5rem;
    margin: 30px auto -43px;
    font-family: 'Noto Serif JP';
    font-weight: 700;
    line-height: 1.7;
}
@media screen and (max-width: 768px) {
    .problem-appeal-inner h1 {
        margin: 20px auto 0px;
        font-size: 2.3rem;
    }
}

.contact_flow {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #fff3cf;
}

.toggle-switch {
    position: relative;
    cursor: pointer;
    padding: 14px 0px;
    background-color: #fffaea;
    font-size: 1.5rem;
    font-weight: bold;
}

.toggle-contents p {
    text-align: left;
    padding: 10px 45px;
    font-size: 1.6rem;
}

.toggle-switch::after {
    content: '';
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(../images/arrow_down.webp) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 34%;
    right: 28%;
    transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
    .toggle-switch::after {
        right: 3%;
    }
}

.toggle-switch--open::after {
    transform: rotateZ(180deg);
    top: 34%;
}

.toggle-witch::after {
    right: 3%;
}

.toggle-contents {
    display: none;
    padding: 18px 10px;
    background: #ffffff;
    width: 100%;
    margin: 0px auto;
}

#footer_CTA {
    position: fixed;
    background-color: rgba(67, 67, 67, 0.79);
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 22;
    /*はじめは非表示*/
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 6px 0;
}
#footer_CTA small {
    display: unset;
}

.footer_CTA_call {
    display: flex;
    align-items: center;
    width: 48%;
    background: #f05e0f;
    color: white;
    font-size: 80%;
    padding: 8px 13px;
    font-weight: 500;
    border-radius: 4px;
    border-bottom: 5px solid #b64000;
    justify-content: center;
}
.footer_CTA_call p {
    text-align: center;
    line-height: 1.3;
    font-size: 1.4rem;
    margin-left: 5px;
    font-weight: bold;
}
.footer_CTA_call p span {
    font-weight: normal;
    font-size: 1.2rem;
}
.footer_CTA_call img {
    width: 23px;
    margin: 0 10px 0px 0;
}

.footer_CTA_mail {
    display: flex;
    align-items: center;
    width: 48%;
    background: #009719;
    color: #fff;
    font-size: 80%;
    padding: 8px 10px 8px 18px;
    font-weight: 500;
    border-radius: 4px;
    border-bottom: 5px solid #004c0d;
    justify-content: center;
    position: relative;
    font-weight: bold;
}
.footer_CTA_mail::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0e0';
    font-size: 21px;
    color: #ffffff;
    left: 17px;
    top: 53%;
    rotate: initial;
    transform: translateY(-50%);
}
.footer_CTA_mail p {
    text-align: center;
    line-height: 1.3;
    font-size: 1.4rem;
    margin-left: 30px;
    font-weight: bold;
}
.footer_CTA_mail p span {
    font-weight: normal;
    font-size: 1.2rem;
}

.footer_CTA_mail_night {
    width: 100%;
    font-size: 100%;
    font-weight: bold;
    border-radius: 69px;
    padding: 10px 0 12px;
    text-decoration: underline;
}
.footer_CTA_mail_night p {
    margin-left: 20px;
}
.footer_CTA_mail_night::before {
    left: 77px;
}

#footer_CTA .attention {
    text-align: center;
    padding: 0px 0 5px;
}
#footer_CTA .attention img {
    width: 77%;
    display: block;
    margin: 0px auto;
}

.voice {
    background-color: #3682d0;
}
.voice__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: case-counter;
}
.voice__item {
    border: 2px solid #1064b8;
    padding: 20px 10px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: white;
}
@media screen and (min-width: 768px) {
    .voice__item {
        padding: 30px 50px 30px;
        margin-bottom: 40px;
    }
}
.voice__label {
    background-color: #ddefc6;
    color: #3682d0;
    font-weight: bold;
    text-align: center;
    padding: 4px 0;
    margin-bottom: 20px;
    border-radius: 10px;
}
.voice__label span::before {
    content: counter(case-counter);
    counter-increment: case-counter;
}
.voice__header {
    margin-bottom: 20px;
}
.voice__icon {
    width: 100px;
}
@media screen and (min-width: 768px) {
    .voice__icon {
        width: 150px;
    }
}
.voice__title {
    margin-left: 20px;
    font-weight: bold;
    color: #3682d0;
    font-size: 2rem;
    line-height: 1.6;
}
@media screen and (min-width: 768px) {
    .voice__title {
        font-size: 3rem;
    }
}
.voice__content {
    background: #f7f7f7;
    border: 1px solid #dbdbdb;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}
.voice__content .case_img {
    margin-top: 10px;
}
@media screen and (min-width: 768px) {
    .voice__content .case_img {
        width: 80%;
    }
}
.voice__disclaimer {
    display: block;
    margin-top: 10px;
    line-height: 1.5;
    color: gray;
    font-size: smaller;
}

.greeting {
    background: no-repeat center center;
    background-size: cover;
    background-image: url(../images/greet_back.webp);
    padding: 50px 0 0;
}
.greeting img {
    width: 940px;
}

.hidden {
    display: none !important;
}

.box_mail_night {
    width: 100%;
}

.aisatu .flex,
.aisatu .voice__header {
    align-items: center;
    flex-wrap: nowrap;
}

.aisatu .casetitle {
    font-weight: bold;
    font-size: 3rem;
}
@media screen and (min-width: 769px) {
    .aisatu .casetitle {
        width: 65%;
    }
}

.bengoshi_img {
    width: 250px;
}

@media screen and (max-width: 768px) {
    .bengoshi_img {
        width: 150px;
        margin-bottom: 20px;
    }
    .aisatu .flex,
    .aisatu .voice__header {
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    .aisatu .flex .img,
    .aisatu .voice__header .img {
        display: flex;
        flex-flow: column;
        align-items: center;
    }
    .aisatu .casetitle {
        font-weight: bold;
        font-size: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .poyoyon3 {
        animation: poyopoyo 2s ease-out infinite;
        opacity: 1;
    }
}
@keyframes poyopoyo {
    0%,
    40%,
    60%,
    80% {
        transform: scale(1);
    }
    50%,
    70% {
        transform: scale(0.95);
    }
}
/* リンクボタン群のスタイル */
.link-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.link-buttons .link-btn {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
}
.link-buttons .link-btn.active {
    transform: translateY(4px);
    opacity: 0.7;
}
.link-buttons .link-btn img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 768px) {
    .link-buttons {
        flex-direction: row;
        gap: 10px;
        margin-top: 5px;
    }
    .link-buttons .link-btn {
        flex: 1;
    }
}
@media screen and (min-width: 769px) {
    .link-buttons {
        flex-direction: row;
        gap: 20px;
        margin-top: 10px;
        max-width: 700px;
    }
    .link-buttons .link-btn {
        flex: 1;
    }
}

.accordion-content {
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.accordion-content .accordion-inner {
    padding: 20px;
}
.accordion-content .accordion-inner h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.accordion-content .accordion-inner .accordion-divider {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.accordion-content .accordion-inner .recommendation {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
}
.accordion-content .accordion-inner .recommendation strong {
    color: #007bff;
}
.accordion-content .accordion-inner .description {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}
.accordion-content .accordion-inner .merits-demerits {
    display: flex;
    gap: 20px;
}
.accordion-content .accordion-inner .merits-demerits .merits,
.accordion-content .accordion-inner .merits-demerits .demerits {
    flex: 1;
    padding: 15px;
    border-radius: 5px;
}
.accordion-content .accordion-inner .merits-demerits .merits strong,
.accordion-content .accordion-inner .merits-demerits .demerits strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.accordion-content .accordion-inner .merits-demerits .merits {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
}
.accordion-content .accordion-inner .merits-demerits .merits strong {
    color: #28a745;
}
.accordion-content .accordion-inner .merits-demerits .demerits {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}
.accordion-content .accordion-inner .merits-demerits .demerits strong {
    color: #856404;
}
.accordion-content .accordion-inner .merits-demerits .demerits small {
    color: #856404;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .accordion-content {
        margin-top: 15px;
    }
    .accordion-content .accordion-inner {
        padding: 15px;
    }
    .accordion-content .accordion-inner h3 {
        font-size: 1.6rem;
    }
    .accordion-content .accordion-inner .merits-demerits {
        flex-direction: column;
        gap: 15px;
    }
}
.method_contents {
    background-color: white;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    padding: 25px 15px;
    position: relative;
    margin-top: 20px;
    border-radius: 8px;
}
@media (min-width: 769px) {
    .method_contents {
        padding: 35px 25px;
    }
}
.method_contents .num_title {
    padding-bottom: 10px;
    border-bottom: 2px solid #00a3e4;
    width: 100%;
    margin-bottom: 15px;
}
.method_contents .num_title .flex,
.method_contents .num_title .voice__header {
    align-items: center;
    gap: 15px;
}
.method_contents .num_title .one {
    text-align: center;
    margin: auto;
}
.method_contents .num_title .one .num {
    color: white;
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #00a3e4;
    padding-left: 14.5px;
    margin: 0px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.method_contents .num_title .method_title {
    text-align: center;
    margin: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.3;
}
.method_contents .num_title .method_title span {
    font-size: 2.8rem;
    color: #0071be;
}
.method_contents .num_title .method_title.kojin {
    font-size: 1.2rem;
}
.method_contents .method_subtext {
    padding: 20px 0;
    text-align: justify;
    line-height: 1.8;
}
.method_contents .method_subtext span {
    color: #0071be;
    font-weight: bold;
}
.method_contents .method_info {
    margin: 15px auto 0px;
    padding: 15px 5%;
    text-align: left;
    font-size: 1.7rem;
    max-width: 1000px;
    background: #f4f4f4;
}
.method_contents .method_info small {
    font-size: 1.3rem;
    display: block;
}
.method_contents .method_info h4 {
    padding: 0 10px;
    margin: 8px 0;
    border-radius: 4px;
    font-weight: 600;
    position: relative;
    background: #ffffff;
    font-size: 1.6rem;
}
.method_contents .method_info h4 ul {
    border: dotted #1e366a 1px;
}
.method_contents .method_info .merits ul,
.method_contents .method_info .demerits ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}
.method_contents .method_info .merits ul li,
.method_contents .method_info .demerits ul li {
    margin-bottom: 5px;
    line-height: 1.6;
    color: #333;
}

.aka {
    color: #c00;
    border-left: 5px solid #c00;
    font-weight: bold;
}

.ao {
    color: #0196c8;
    border-left: 5px solid #0196c8;
    font-weight: bold;
}

@media screen and (min-width: 769px) {
    .powerword_img {
        width: 1080px;
    }
} /*# sourceMappingURL=custom.css.map */
