@charset "utf-8";

body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
}

header {
    width: 100%;
    margin: auto;
    transition: all 0.5s;
    background-color: #FFF;
}

.header_wrapper {
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    transition: all 0.5s;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.logo a {
    display: block;
    width: 35vw;
    max-width: 200px;
    transition: all 0.5s;
}

.logo p {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.header_contact {
    width: 330px;
    background: #575C76;
    color: #FFF;
    text-align: center;
    padding: 10px 0;
}

.header_contact a {
    text-decoration: none;
    color: #FFF;
}

.header_contact p {
    font-size: 13px;
}

.header_contact_tel {
    font-size: 26px;
    font-weight: bold;
    padding-left: 30px;
    position: relative;
}

.header_contact_tel:hover {
    opacity: 0.7;
}

.header_contact_tel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 27px;
    height: 27px;
    background-image: url(img/tel.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.header_contact_inquiry {
    background-color: #FFF;
    color: #575C76 !important;
    border: 1px solid #FFF;
    padding: 2px 30px;
    font-size: 12px;
    font-weight: 600;
}

.header_contact_inquiry:hover {
    background-color: #575C76;
    color: #FFF !important;
}

.header_nav {
    background: rgba(0, 0, 0, 0.4);
}

.header_nav nav {
    margin: 0 auto;
    max-width: 1100px;
}

.header_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 10px 0;
}

.header_nav_list {
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    transition: all 0.5s;
    padding: 3px 0;
}

.header_nav ul .header_contact {
    border: none;
    transition: all 0.5s;
}

@media screen and (max-width: 1100px) {
    .logo {
        padding-left: 20px;
    }

    .header_nav nav {
        padding: 0 20px;
    }
}

@media screen and (max-width: 910px) {
    .logo {
        flex-direction: column;
        align-items: baseline;
        gap: 0;
    }
}

/* スクロールしたら */

header.scroll_header {
    background-color: #FFF;
    transition: all 0.5s;
    justify-content: center;
    gap: 55px;
}

header.scroll_header::before {
    position: absolute;
    content: "";
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #00B900;
    transition: all 0.5s;
}

.scroll_header .logo {
    transition: all 0.5s;
}

.logo .green {
    display: none;
    transition: all 0.5s;
}

.scroll_header .logo .green {
    display: block;
    transition: all 0.5s;
}

.scroll_header .logo .white {
    display: none;
    transition: all 0.5s;
}

.scroll_header .header_nav_list {
    color: #00B900;
    transition: all 0.5s;
}

.scroll_header .header_contact a {
    color: #FFF;
    transition: all 0.5s;
}

.scroll_header .header_nav ul li {
    padding-left: 0;
    padding-left: 22px;
    margin-left: 23px;
    text-shadow: none;
    transition: all 0.5s;
}

.hamburger_menu {
    display: none;
}

@media screen and (max-width: 768px) {

    .logo p,
    .header_contact {
        display: none;
    }

    .header_nav {
        display: none;
    }

    .hamburger_menu {
        display: block;
        width: 60px;
        height: 60px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10001;
        background-color: #575c76;
    }

    .menu_btn {
        display: block;
        width: 30px;
        height: 32px;
        z-index: 10001;
        top: 14px;
        left: 0;
        right: 0;
        margin: auto;
        position: relative;
    }

    .menu_btn span,
    .menu_btn span:before,
    .menu_btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 30px;
        background-color: #FFF;
        position: absolute;
        margin: auto;
        z-index: 81;
        top: 3px;
        /* box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.5); */
    }

    .menu_btn span:before {
        top: 12px;
    }

    .menu_btn span::after {
        top: 24px;
    }

    #menu_btn_check:checked~.menu_btn span::after {
        background-color: rgba(255, 255, 255, 0);
        /*メニューオープン時は真ん中の線を透明にする*/
    }

    #menu_btn_check:checked~.menu_btn span {
        bottom: 1vw;
        transform: rotate(45deg);
    }

    #menu_btn_check:checked~.menu_btn span::before {
        top: 0;
        transform: rotate(-90deg);
    }

    #menu_btn_check {
        display: none;
    }

    .menu_content {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 10000;
        background-color: #575c76;
        transition: all 0.5s;
    }

    .menu_content ul {
        margin-top: 15%;
    }

    .menu_content ul li {
        list-style: none;
        margin-bottom: 30px;
    }

    .menu_content ul li>a {
        display: block;
        width: 70%;
        margin: 0 auto;
        font-size: 16px;
        box-sizing: border-box;
        color: #FFF;
        text-decoration: none;
        font-weight: 600;
        padding: 0;
    }

    #menu_btn_check:checked~.menu_content {
        left: 0;
    }
}

.wrapper {
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
    padding: 50px 0;
}

h2,
h3,
p {
    margin: 0;
    line-height: 2;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
}

p {
    font-weight: 500;
}

img,
span {
    display: inline-block;
    width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    transition: all 0.5s;
}

.l-breadcrumbs span {
    display: inline-block;
    width: auto;
}

.fb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h2 {
    color: #575c76;
    font-weight: bold;
    text-align: center;
}

.post h2 {
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid #575C76;
}

.h2_sub {
    display: block;
    text-align: center;
    color: #e0a5a5;
    font-weight: bold;
    margin-bottom: 20px;
}

.concept_txt {
    color: #575c76;
    padding: 30px 10px;
    background-color: #F8EEDB;
    font-weight: bold;
    text-align: center;
}


.message_box {
    margin-top: 30px;
}

.message_box h3 {
    padding-left: 30px;
    position: relative;
}

.message_box h3::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background-color: #E0A5A5;
}

.message_box_txt {
    width: 50%;
}

.message_box_img {
    width: 45%;
}

.concept_btn {
    text-align: center;
    margin-top: 30px;
}

.concept_btn a {
    border: 1px solid #575C76;
    color: #575C76;
    font-weight: bold;
    padding: 15px 20px;
    width: 80%;
}

.concept_btn a:hover {
    background-color: #575C76;
    color: #FFF;
}

.feature h2 {
    padding: 20px 0;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

ol {
    align-items: initial;
    counter-reset: listnum;
}

.feature_item {
    width: 32%;
    position: relative;
}

.feature_item::before {
    counter-increment: listnum;
    content: counter(listnum, decimal-leading-zero);
    position: absolute;
    top: 14vw;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 70px;
    color: #E0A5A5;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-style: italic;
}

@media screen and (min-width: 1100px) {
    .feature_item::before {
        top: 190px;
    }
}

.feature_box {
    align-items: baseline;
}

.feature_box_img {
    margin-bottom: 50px;
}

.feature_item h3 {
    text-align: center;
    margin-bottom: 30px;
}

.feature_box_txt {
    font-size: 14px;
}




.menu {
    background-color: #f2f2f2;
}

.menu_box {
    flex-wrap: wrap;
    gap: 20px 0;
}

.menu_item {
    width: 48%;
    background-color: #FFF;
}

.menu_item a {
    display: block;
}

.menu_item a:hover {
    opacity: 0.7;
}

.menu_item h3 {
    text-align: center;
    margin-top: 20px;
    color: #575C76;
}

.menu_box_txt {
    padding: 20px;
    text-align: center;
    color: #000 !important;
}




.reason h2 {
    padding: 20px 0;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.reason_item {
    position: relative;
    padding-top: 90px;
    margin-bottom: 30px;
    min-height: 250px;
}

.reason_box_txt {
    background-color: #f2f2f2;
    width: 80%;
    max-width: 860px;
    position: relative;
    padding: 30px;
    z-index: 2;
}

.reverse .reason_box_txt {
    margin-left: auto;
}

.reason_box_img {
    position: absolute;
    top: 60px;
    max-width: 500px;
    width: 100%;
    right: 0;
}

.reason_box_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.reverse .reason_box_img {
    left: 0;
}

.reason_item::before {
    counter-increment: listnum;
    content: counter(listnum, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    font-size: 70px;
    color: #E0A5A5;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-style: italic;
}

.reverse::before {
    left: initial;
    right: 0;
}

.clients .wrapper {
    width: 100%;
    max-width: initial;
    padding-bottom: 0;
}

.clients_slider {
    margin: 30px 0;
}

.clients_slider a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 0 30px;
}

.clients_slider a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fv {
    width: 100%;
    height: 700px;
    background-image: url(img/fv_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.fv_title {
    max-width: 605px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10vw;
    margin: auto;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    .fv_title {
        left: 5vw;
    }
}

footer {
    background-image: url(img/footer_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer_box {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 5vw;
    padding: 30px 0;
}

.footer_box a {
    color: #FFF !important;
}

.footer_box a:hover {
    opacity: 0.7;
}

.footer_contact {
    display: block;
    background: #f60;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.copyright {
    background: #222;
    color: #999;
    text-align: center;
}

.footer_menu {
    width: 25%;
    max-width: 440px;
    /* display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px; */
}

.footer_menu li {
    padding-left: 25px;
    position: relative;
    margin: 15px 0;
}

.footer_menu li::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
    width: 5px;
    height: 5px;
    border-right: 1px solid #034296;
    border-bottom: 1px solid #034296;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 2;
}

.footer_menu li::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 100%;
}



@media screen and (max-width: 768px) {
    .pc_br {
        display: none;
    }

    header {
        top: 0;
        position: fixed;
        z-index: 100;
    }

    .header_wrapper {
        height: 60px;
    }

    .logo a {
        display: flex;
        justify-content: center;
    }

    .wrapper {
        padding: 30px 0;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        margin-bottom: 20px;
    }

    .fv {
        height: initial;
        background-image: none;
    }

    .fv_title {
        position: initial;
        width: 100%;
        max-width: initial;
        margin-top: 60px;
    }

    .fv_title img {
        background: rgba(255, 255, 255, 0.4);
    }

    .clients_slider a {
        margin: 0 15px;
    }

    .fb {
        flex-direction: column;
        gap: 20px;
    }

    .fb>div {
        width: 100%;
    }

    .message_box .fb {
        flex-direction: column-reverse;
    }

    .concept_btn a {
        width: 100%;
        padding: 15px 0;
    }

    .feature h2 {
        padding: 15px 0;
    }

    .feature_box {
        gap: 40px;
    }

    .feature_item {
        width: 100%;
    }

    .feature_item::before {
        top: 50vw;
        font-size: 15vw;
    }

    .feature_box_img {
        margin-bottom: 30px;
    }

    .menu_box {
        margin: 0 20px;
    }

    .slick-prev:before,
    .slick-next:before {
        color: #000;
    }

    .reason_item {
        display: flex;
        flex-direction: column-reverse;
    }

    .reverse::before {
        right: initial;
        left: 0;
    }

    .reason_box_img {
        position: initial;
        top: 0;
        max-width: initial;
        height: 50vw;
    }

    .reason_box_img img {
        height: 50vw;
        object-fit: cover;
    }

    .reason_box_txt {
        width: initial;
        padding: 15px;
    }

    .copyright {
        font-size: 12px;
    }

    .menu_item {
        margin: 0 5px;
    }
}

@media screen and (max-width: 850px) {
    .footer_box {
        flex-direction: column;
        gap: 0;
    }

    .footer_left,
    .footer_menu {
        width: 100%;
    }

    .footer_left {
        margin-bottom: 30px;
    }

    .footer_menu {
        max-width: initial;
        justify-content: space-between;
        gap: 20px 0;
        margin: 0;
    }

    .footer_menu li {
        width: 43%;
        padding-left: 20px;
        font-size: 14px;
    }

    .footer_mid li:last-child {
        margin-bottom: 0;
    }
}

.pagetop {
    text-align: right;
}

.pagetop a {
    position: relative;
    font-weight: bold;
    margin: 0 10px 20px 10px;
    padding: 25px 0 0 0;
    text-decoration: none;
    color: #030303;
}

.pagetop a::before {
    display: block;
    content: "";
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: -15px auto 0 auto;
    position: absolute;
    border-right: 5px solid #030303;
    border-top: 5px solid #030303;
}


/* 下層ページ */

.post h1 {
    font-size: 24px;
    text-align: center;
    padding: 20px 0;
    border-top: 4px double #CCCCCC;
    border-bottom: 4px double #CCCCCC;
}

.qa_ul li {
    position: relative;
    padding-left: 25px;
    line-height: 1.8;
    font-weight: bold;
}

.qa_ul li::before {
    content: "";
    top: 4px;
    left: -5px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    position: absolute;
    border: 3px solid;
    border-color: #575C76 #575C76 transparent transparent;
}

.qa_ul li a {
    color: #030303;
}

.qa_box {
    margin-bottom: 30px;
}

.qa_box h2 {
    font-size: 15px;
    padding: 5px 5px 5px 45px;
    background-color: #F6F4E3;
    text-align: left;
    position: relative;
    color: #030303;
}

.qa_box h2::before {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    height: 10px;
    width: 20px;
    background-color: #575C76;
}

.qa_item {
    margin: 20px 0 40px 0;
}

.qa_item p {
    position: relative;
    padding-left: 40px;
}

.qa_item p::before {
    position: absolute;
    top: 3px;
    left: 0;
    margin: auto;
    width: 26px;
    height: 26px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-family: sans-serif;
    font-weight: bold;
}

.qa_question {
    margin-bottom: 20px;
}

.qa_question::before {
    content: "Q";
    background-color: #575C76;
}

.qa_answer {
    font-weight: 400;
}

.qa_answer::before {
    content: "A";
    background-color: #E0A4A5;
}

.qa_question {
    font-weight: bold;
}

.post .h1_sub {
    display: block;
    width: initial;
    background: #FBF4E8;
    color: #030303;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.worry_box {
    border: 5px solid #EFEFEF;
    padding: 30px;
}

.worry_box h2 {
    padding-bottom: 15px;
    border-bottom: 2px solid #575C76;
    text-align: center;
}

.worry_box ul li {
    padding-left: 20px;
    line-height: 2;
    position: relative;
}

.worry_box ul li::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 8px;
    height: 5px;
    border: 3px solid #E0477E;
    border-right: 0;
    border-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.worry_bottom {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
}

.worry_bottom_txt {
    width: 50%;
}

.worry_bottom_txt p span {
    color: #e91e63;
}

.worry_bottom_img {
    width: 45%;
}

.reason_3 h2 {
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid #575C76;
}

.reason_3_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.reason_3_item {
    width: 32%;
    border: 1px solid #CCCCCC;
}

.reason_3_item>div {
    padding: 5%;
}

.reason_3_point {
    font-size: 20px;
    padding: 20px 0;
    color: #e0a4a5;
    text-align: center;
    background-color: #FBF4E8;
    margin-bottom: 20px;
    font-style: italic;
}

.reason_3_point span {
    font-size: 70px;
    line-height: 1;
}

.reason_3_item h3 {
    text-align: center;
}

.price h2 {
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid #575C76;
    margin-bottom: 20px;
}

.price_box h3 {
    border-left: 5px solid #575C76;
    padding-left: 10px;
    margin: 15px;
}

.price_box table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.price_box table th,
.price_box table td {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #D9D9D9;
    text-align: left;
}

.price_box table th {
    background: #F7F7F7;
}

.price_box ul li {
    padding-left: 20px;
    line-height: 2;
    position: relative;
}

.price_box ul li::before {
    position: absolute;
    content: "⚫︎";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    font-size: 16px;
    color: #575C76;
}

.post .contents {
    padding: 30px 0;
}

.price_box {
    margin-top: 50px;
}

.worry .contents {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .post .contents {
        padding: 0;
    }

    .post .h1_sub {
        font-size: 18px;
    }

    .worry_box {
        padding: 20px;
    }

    .worry_bottom {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .worry_bottom>div {
        width: 100%;
    }

    .reason_3_box {
        flex-direction: column;
        gap: 20px;
    }

    .reason_3_box>li {
        width: 100%;
    }

    .reason_3_point {
        font-size: 30px;
    }

    .price_box h3 {
        margin: 15px 0;
    }
}

/* お客様の声 */

.voice_box {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 2%;
}

.voice_box li {
    width: 32%;
}

.voice_box li a {
    display: block;
}

.voice_box li a:hover {
    opacity: 0.7;
}

.voice_box h2 {
    border-top: 2px solid #575C76;
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
}

.voice_client {
    color: #000;
    padding: 10px;
    background-color: #FBF4E8;
    margin: 10px 0;
}

@media screen and (max-width: 1000px) {
    .voice_box {
        gap: 50px 4%;
    }

    .voice_box li {
        width: 48%;
    }
}

@media screen and (max-width: 600px) {
    .voice_box {
        gap: 30px 0;
    }

    .voice_box li {
        width: 100%;
    }

    .voice_client {
        padding: 5px;
        font-size: 14px;
    }
}

/* お客様の声 single */

.voice_single .contents {
    padding-top: 0;
}

.voice_single_img {
    width: 70%;
    margin: 20px auto;
}

.voice_qa {
    margin-top: 40px;
}

.voice_qa h2 {
    color: #030303;
    text-align: left;
    border-bottom: 2px solid #575C76;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: 20px;
}

.voice_single p {
    font-weight: 400;
}

.voice_client_link {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px dashed #CCCCCC;
}

.voice_client_link a {
    word-break: break-all;
}

.voice_ceo {
    border: 4px double #D6CCB7;
    padding: 25px;
    margin-top: 20px;
}

.voice_ceo h2 {
    color: #030303;
    padding-left: 40px;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
    border-bottom: 0;
}

.voice_ceo h2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 5px;
    background-color: #E0A5A5;
}

@media screen and (max-width: 768px) {
    .voice_single_img {
        width: 100%;
    }

    .voice_qa h2 {
        font-size: 18px;
    }

    .voice_ceo h2 {
        font-size: 18px;
        line-height: 1.8;
    }
}


.contact {
    padding: 10px 0 40px 0;
    background-image: url(http://chiryouin-consulting.net/wp-content/uploads/2024/10/contact_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.contact::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: rgba(157, 157, 157, 0.9);
    z-index: -1;
}

.contact .wrapper {
    padding: 30px 0;
}

.contact h2 {
    color: #FFF;
    font-size: 48px;
    line-height: 1.8;
}

.contact>p {
    color: #FFF;
    text-align: center;
}

.contact_btn {
    display: flex;
    justify-content: space-between;
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

.contact_btn a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    max-width: 470px;
    width: 100%;
    padding: 20px 0;
    line-height: 1;
}

.contact_btn a:hover {
    opacity: 0.7;
}

.contact_tel {
    gap: 20px;
    background-color: #FFF;
    color: #000 !important;
    font-size: 30px;
}

.contact_tel span {
    font-size: 16px;
}

.tel_icon {
    width: 30px;
}

.contact_form {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    background-image: linear-gradient(270deg, rgb(247, 147, 28) 0%, rgb(255, 199, 27) 100%);
}

.contact_form::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translate(0, -50%);
    background-color: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 40px 0 10px 0;
    }

    .contact h2 {
        font-size: 35px;
    }

    .contact_btn {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact_btn a {
        max-width: initial;
        padding: 10px 0;
    }

    .contact_form {
        font-size: 20px;
        padding: 20px 0 !important;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    footer {
        margin-bottom: 53px;
    }
}

#slidemenu {
    width: 100%;
    height: auto;
    margin: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

#slidemenu ul {
    display: flex;
    margin: 0;
}

#slidemenu ul li {
    width: 50%;
    text-align: center;
}

#slidemenu ul li a {
    display: block;
    position: relative;
    padding: 15px 0;
    color: #FFF;
    font-weight: 500;
}

.slidemenu_tel {
    background-color: #575c76;
}

.slidemenu_tel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 5vw;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background-image: url(http://chiryouin-consulting.net/wp-content/uploads/2024/10/tel_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert();
}

.slidemenu_contact {
    background-image: linear-gradient(270deg, rgb(247, 147, 28) 0%, rgb(255, 199, 27) 100%);
}

/* 追記ここから HONDA 2025.4.13 */
@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }

    .service {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 60px 0 80px 0;
        background-color: #f5f5f5;
    }

    .service .cover {
        width: 1180px;
        height: auto;
        margin: 0 auto;
        padding: 0;
    }

    .service .cover strong {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        line-height: 2.0em;
        color: #333333;
        display: block;
    }

    .service .cover strong span {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 44px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0em;
        color: #39649c;
        display: block;
    }

    .service .cover p {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        line-height: 2.0em;
        color: #000000;
        margin: 40px 0;
    }

    .service .cover .inner {
        width: 91.525423728%;
        height: auto;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        row-gap: 6px;
    }

    .service .cover .inner a:hover ul {
        border: 2px solid #39649c;
        transform: scale(0.999);
    }

    .service .cover .inner ul {
        width: 356px;
        height: auto;
        margin: 0;
        padding: 50px 0;
        border: 2px solid #ffffff;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        position: relative;
        display: inline-block;
    }

    .service .cover .inner ul::after {
        width: 11px;
        height: 11px;
        margin: auto;
        content: '';
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        border: 0;
        border-top: 3px solid #39649c;
        border-right: 3px solid #39649c;
        transform: rotate(45deg);
    }

    .service .cover .inner ul li {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .service .cover .inner ul li:first-child {
        margin-bottom: 15px;
    }

    .service .cover .inner ul li strong {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0em;
        color: #000000;
        display: block;
    }

    .service .cover .inner ul li span {
        font-family: "arial", sans-serif;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        line-height: 1.0em;
        color: #666666;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .service {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 7.8125% 2.604166666% 10.41666666% 2.604166666%;
        background-color: #f5f5f5;
    }

    .service .cover {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .service .cover strong {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 4.5vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.4em;
        color: #333333;
        display: block;
    }

    .service .cover strong span {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 6.5vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.2em;
        color: #39649c;
        margin-top: 2.604166666%;
        display: block;
    }

    .service .cover p {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 3.5vw;
        font-weight: 400;
        text-align: justify;
        line-height: 1.8em;
        color: #000000;
        margin-top: 5.208333333%;
    }

    .service .cover .inner {
        width: 100%;
        height: auto;
        margin-top: 7.8125%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        row-gap: 1.5vw;
    }

    .service .cover .inner a {
        width: 49.175824175%;
    }

    .service .cover .inner a:nth-child(9) {
        margin: 0 auto;
    }

    .service .cover .inner a:hover ul {
        border: 2px solid #39649c;
        transform: scale(0.999);
    }

    .service .cover .inner ul {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 13.020833333% 0;
        border: 2px solid #ffffff;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
        position: relative;
        display: inline-block;
    }

    .service .cover .inner ul::after {
        width: 8px;
        height: 8px;
        margin: auto;
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        bottom: 2.0vw;
        border: 0;
        border-bottom: 2px solid #39649c;
        border-right: 2px solid #39649c;
        transform: rotate(45deg);
    }

    .service .cover .inner ul li {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .service .cover .inner ul li:first-child {
        margin-bottom: 2.5vw;
    }

    .service .cover .inner ul li strong {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 3.0vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0em;
        color: #000000;
        display: block;
    }

    .service .cover .inner ul li span {
        font-family: "arial", sans-serif;
        font-size: 2.5vw;
        font-weight: bold;
        text-align: center;
        line-height: 1.0em;
        color: #333333;
        display: block;
    }
}

/* 追記ここまで */


/* fv */
.fv {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(http://dental.linkwin.jp/wp-content/uploads/2025/07/main-bg-.webp) no-repeat center center / cover;
    z-index: -1;
    opacity: 0;
    animation: fadeIn 3s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fv_content {
    padding: 3rem 5rem;
    background: #ffffffcc;
    width: 60vw;
    height: fit-content;
    opacity: 0;
    animation: fadeIn2 1s ease forwards;
}

@keyframes fadeIn2 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fv h2 {
    color: #0E2B4C;
    font-size: 3.2rem;
    margin: 0 0 1rem 0;
}

.fv_txt {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 3rem 0;
}

.fv_results {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 7rem;
}

.fv_results_item {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1rem;
    position: relative;
}

.fv_results_item:before {
    content: "[";
    font-size: 4rem;
    font-weight: 100;
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0E2B4C;
}

.fv_results_item:after {
    content: "]";
    font-size: 4rem;
    font-weight: 100;
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0E2B4C;
}

.fv_results_value {
    color: #0E2B4C;
    margin: 0.5rem 0 0 0;
    background: linear-gradient(transparent 70%, #FFEE53 70%);
}

.fv_results_item .num {
    display: inline-block;
    font-size: 4rem;
    width: auto;
    font-weight: 600;
    margin: 0 0.5rem;
}

.fv_results_item .num .oku {
    font-size: 3rem;
    display: inline-block;
    width: auto;
}

@media screen and (max-width: 768px) {
    .fv {
        height: 600px;
    }

    .fv_content {
        padding: 3rem 3rem;
        width: 90vw;
    }

    .fv h2 {
        line-height: 1.8;
    }

    .fv_txt {
        text-align: left;
    }

    .fv_results {
        gap: 0 5rem;
    }
}


/* lead */
.lead .wrapper {
    padding-top: 10rem;
}

.lead h2 {
    text-align: left;
    font-size: 3rem;
    margin: 0 0 3rem 0;
}

.lead .lead_txt {
    flex-basis: 45%;
}

.lead .lead_img {
    flex-basis: 48%;
    text-align: center;
}

.lead .lead_img img {
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .lead .wrapper {
        padding-top: 5rem;
    }

    .lead h2 {
        font-size: 2.5rem;
    }
}

.case-section h2 {
    margin-bottom: 36px;
}

.case-section .cases-list {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    column-gap: 40px;
}

.case-section .c-banner--left--btn {
    margin: 48px auto 0 auto;
}

.case-section .case-item {
    display: block;
    position: relative;
    width: 100%;
    box-shadow: 0 0 5px #18181846;
}

.case-section a.case-item:hover {
    opacity: 0.8;
}

.case-section .case-item .thumb-wrapper {
    display: block;
    position: relative;
    width: 100%;
}

.case-section .case-item .thumb-wrapper .thumb-img {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 320 / 200;
    object-fit: cover;
}

.case-section .case-item .item-content {
    padding: 16px;
}

.case-section .case-item .item-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    display: block;
    margin-bottom: 12px;
}

.case-section .case-item .address-title {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 10px;
}

.case-section .case-item .categories {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4px;
    row-gap: 4px;
    margin-bottom: 16px;
}

.case-section .case-item .categories .category {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 8px;
    width: fit-content;
    height: 24px;
    font-size: 13px;
    line-height: 100%;
    color: #000;
    border: 1px solid #CCC;
}

.case-section .case-item .items-list .list-item {
    color: #000;
    line-height: 1.4;
}

.case-section .case-item .items-list .list-item:not(:last-child) {
    margin-bottom: 6px;
}

@media only screen and (max-width: 768px) {
    .case-section .cases-list {
        grid-template-columns: repeat(1, minmax(0px, 1fr));
        row-gap: 40px;
    }

    .case-section .case-item .items-list .list-item {
        font-size: 15px;
    }

    .case-section .c-banner--left--btn {
        margin-top: 36px;
    }
}

.archive-case .case-section {
    padding-bottom: 50px;
}

@media only screen and (max-width: 768px) {
    .archive-case .case-section {
        padding-bottom: 30px;
    }
}

.single-case {
    padding-bottom: 86px;
}

.single-case .case-section .main-part {
    display: flex;
    column-gap: 60px;
    margin-bottom: 40px;
}

.single-case .case-section .main-part .thumb-wrapper {
    display: block;
    position: relative;
    width: 48%;
    flex-shrink: 0;
}

.single-case .case-section .main-part .thumb-wrapper .thumb-img {
    display: block;
    position: relative;
    width: 100%;
}

.single-case .case-section .main-part .item-content {
    width: 100%;
}

.single-case .case-section .main-part .item-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    display: block;
    margin-bottom: 20px;
}

.single-case .case-section .main-part .address-title {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 10px;
}

.single-case .case-section .main-part .categories {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4px;
    row-gap: 4px;
    margin-bottom: 16px;
}

.single-case .case-section .main-part .categories .category {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 8px;
    width: fit-content;
    height: 24px;
    font-size: 13px;
    line-height: 100%;
    color: #000;
    border: 1px solid #CCC;
}

.single-case .case-section .main-part .items-list .list-item {
    color: #000;
    line-height: 1.4;
}

.single-case .case-section .main-part .items-list .list-item:not(:last-child) {
    margin-bottom: 6px;
}

.single-case .interview-part {
    margin: 0 0 5rem;
    counter-reset: cnt
}

.single-case .interview-part .item {
    border-bottom: .1rem solid #ccc;
    padding: 2.5rem 0;
    margin: 0
}

.single-case .interview-part .item:first-of-type {
    border-top: .1rem solid #ccc
}

.single-case .interview-part .item>dt {
    text-align: justify;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    padding: 0 0 0 40px;
    position: relative
}

.single-case .interview-part .item>dt::before {
    counter-increment: cnt;
    content: counter(cnt) ". ";
    position: absolute;
    left: 0px
}

.single-case .interview-part .item>dd {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    padding: 0 0 0 40px;
    margin: 0
}

.single-case .interview-part .item-image {
    padding: 4rem 0;
    margin: 0;
    text-align: center;
    border-bottom: .1rem solid #ccc
}

.single-case .interview-part .item-image>img {
    display: inline-block;
    max-width: 100%;
    width: 450px;
    height: auto
}

.single-case .comment {
    margin: 5rem 0 0;
    padding: 48px;
    background: #f5f5f5;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    border-radius: 10px;
    box-shadow: 0 0 6px #36363660;
}

.single-case .comment h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG明朝E", "MS Mincho", "MS PMincho", serif;
    text-align: justify;
    line-height: 1.4;
    margin: 0 0 2.5rem
}

.single-case .image-gallery {
    /* transform: translateX(-16px);
    width: calc(100% + 32px); */
    margin-top: 52px;
}

.single-case .image-gallery .image-item {
    margin: 0 16px;
}

.single-case .image-gallery .image-item img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 320 / 220;
    object-fit: cover;
}

.single-case .clinic-information {
    margin-top: 56px;
    padding: 3.5rem 4rem 4rem;
    border: .1rem solid #ccc
}

.single-case .clinic-information>h3 {
    font-size: 2.4rem;
    font-weight: normal;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG明朝E", "MS Mincho", "MS PMincho", serif;
    margin: 0 0 2.5rem
}

.single-case .clinic-information>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    column-gap: 48px;
}

.single-case .clinic-information .left-part {
    width: 48%;
}

.single-case .clinic-information .right-part {
    width: 48%;
}

.single-case .clinic-information .general {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin: 0
}

.single-case .clinic-information .general h4 {
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
    text-align: justify;
    margin: 0 0 1.5rem
}

.single-case .clinic-information .general img {
    width: 100%;
    height: auto
}

.single-case .clinic-information .general a {
    color: #1156a3;
    text-decoration: underline
}

.single-case .clinic-information .general p {
    margin: 1.5rem 0 0
}

.single-case .clinic-information .general p span {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding: 0 1rem;
    border: .1rem solid #aaa;
    margin: .1rem
}

.single-case .clinic-information .details {
    margin: 3.5rem 0 0
}

.single-case .clinic-information .details h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px
}

.single-case .clinic-information .details *+h4 {
    margin-top: 2.5rem
}

.single-case .clinic-information .details p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify
}

.single-case .clinic-information .categories {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4px;
    row-gap: 4px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.single-case .clinic-information .categories .category {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 8px;
    width: fit-content;
    height: 24px;
    font-size: 13px;
    line-height: 100%;
    color: #000;
    border: 1px solid #CCC;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .single-case .case-section .main-part {
        flex-direction: column;
        row-gap: 32px;
    }

    .single-case .case-section .main-part .item-title {
        font-size: 20px;
    }

    .single-case .case-section .main-part .items-list .list-item {
        font-size: 15px;
    }

    .single-case .case-section .main-part .thumb-wrapper {
        width: 100%;
    }

    .single-case .interview-part .item>dt {
        font-size: 16px;
        padding: 0 0 0 32px;
    }

    .single-case .interview-part .item>dd {
        font-size: 15px;
        padding: 0 0 0 32px;
    }

    .single-case .comment {
        padding: 30px 16px;
        font-size: 15px;
    }

    .single-case .comment h3 {
        font-size: 20px;
    }

    .single-case .clinic-information {
        padding: 30px 16px;
    }

    .single-case .clinic-information .general {
        flex-direction: column;
        row-gap: 26px;
    }

    .single-case .clinic-information .left-part {
        width: 100%;
    }

    .single-case .clinic-information .details {
        flex-direction: column;
        row-gap: 26px;
    }

    .single-case .clinic-information .general h4 {
        font-size: 20px;
    }

    .single-case .clinic-information .details h4 {
        font-size: 16px;
    }

    .single-case .clinic-information .details p {
        font-size: 15px;
    }
}