<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

:root {
    --color-red: #B11D2C;
    --color-palered: #FAEFED;
    --color-white: #FFFFFF;
    --color-black: #333333;
    --font-family-mincho : "Shippori Mincho B1", serif;
    --font-family-notosans : 'Noto Sans JP', sans-serif;
}

html {
    /* scroll-behavior: smooth; */
    line-height: 1.5;
}

body.no-scroll {
    overflow: hidden;
    width: 100%;
}

html, body, div, span, h1, h2, h3, a, ol, ul, li {
    border: 0;
    font-family: var(--font-family-notosans);
    font-size: 16px;
    letter-spacing: 0.07em;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

a {
    text-decoration: none;
}

ol, ul {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    list-style-type: none;
}

h1 {
    line-height: 2.0;
}

h2 {
    font-family: var(--font-family-mincho); 
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 80px;
}

h2 .color02 {
    color: var(--color-white);
}

h2 span {
    font-family: var(--font-family-mincho);
    font-size: 1.5rem;
    color: var(--color-red);
}

section .contents_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

body .pc {
    display: show;
}

body .sp {
    display: none;
}

main {
    padding-top: 72px;
}

#pagetop {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 5;
}

#pagetop a {
    padding: 15px 8px;
    background: var(--color-red);
    text-align: center;
    box-sizing: border-box;
    border: 1px solid var(--color-white);
}

#pagetop .arrow {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 1;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-white);
    border-left: 0;
    border-bottom: 0;
    margin: -6px 10px;
    box-sizing: border-box;
    transform: translateY(25%) rotate(-45deg);
}

.contact_btn_02 {
    background-color: var(--color-palered);
    text-align: center;
    padding: 80px 0;
}

.contact_btn_02 a {
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    padding: 20px 150px;
    border-radius: 50px;
    color: var(--color-white);
    background: var(--color-red);
}

.anchor-offset {
    scroll-margin-top: 50px;
}

.button button.disabled-button {
  background-color: #ccc;
  cursor: not-allowed;
  color: var(--color-white);
}

/** fade up **/
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/** **/

/** menu **/
.globalMenuSp-show {
    display: none;
}

.hamburger-show {
    display: none;
}

.header {
    z-index: 100;
    position: fixed;
    width: 100%;
}

.headerBox {
    display: flex;
    align-items: center;
    height: 72px;
    background-color: var(--color-white);
}

.boxLogo {
    width: 15%;
    padding: 0 15px;
}

.g-nav {
    width: 80%;
    display: block;
    margin-inline: auto 1.5625vw;
}

.g-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center; 
}

.g-nav ul li {
    margin-right: 1vw;
}

.g-nav ul li a {
    font-weight: 600;
    font-size: 0.8vw;
    color: var(--color-black);
}

.pc .tel {
    position: relative;
    font-weight: 600;
    font-size: 1.2vw;
}

.sp_tel_mail {
    display: none;
}

.pc .contact_btn {
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 50px;
    padding: 0.5208333333vw 1.0416666667vw 0.625vw;
    font-weight: 600;
}

.fa-phone:before {
    color: var(--color-red);
}

.g-nav .tel {
    position: relative;
    font-weight: 600;
    font-size: 1.2vw;
}
/** **/

/** kv **/
#keyvisual {
    position: relative;
    width: 100%;
}

.keyvisual_inner {
    color: var(--color-white);
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.kv-container {
    position: relative;
    width: 100%;
    max-height: 600px;
}

.kv-image {
    width: 100%;
    height: auto;
    display: block;
}

.keyvisual_inner h1 span {
    font-family: var(--font-family-mincho); 
    font-weight: 600;
    font-size: 3.0vw;
    padding: 0 10px;
    line-height: 1.6;
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: var(--color-white); 
}

.keyvisual_inner h1 span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; 
    transform: translateX(-100%);
    animation: slideIn 1s forwards;
    z-index: -1
}

.keyvisual_inner h1 span:nth-child(2)::before {
 animation-delay: 0.5s; 
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

.keyvisual_inner p {
    font-family: var(--font-family-mincho); 
    font-size: 2vw;
    margin-top: 20px;
    text-shadow: 2px -2px 3px rgba(0, 0, 0, 0.6);
}

.keyvisual_inner_02 {
    position: absolute;
    left: 50%;
    width: 70%;
    bottom: 0;
    background-color: var(--color-palered);
    transform: translate(-50%, 60%);
    padding: 2vw 0;
}

.keyvisual_inner_02 ul {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.keyvisual_inner_02 ul li {
    font-family: var(--font-family-mincho); 
    border: 1px solid var(--color-red);
    padding: 10px;
    margin: 0 15px;
    color: var(--color-red);
    font-size: 1.0vw;
    font-weight: 700;
    width: 30%;
    text-align: center;
}
/** **/

/** reason **/
#reason {
    margin-top: 100px;
}

.reason_box {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    width: 50%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.reason_txt {
    width: 50%;
    margin-left: -50px; 
    z-index: 2;
    position: relative;
}

.reason_txt_02 {
    width: 50%;
    z-index: 2;
    position: relative;
    order: 1;
}

.image-wrapper_02 {
    position: relative;
    z-index: 1;
    width: 50%;
    margin-left: -50px; 
    order: 2;
}

.image-wrapper_02 img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.reason .point { 
    font-weight: 700;
    font-size: 1.4rem;
    font-family: var(--font-family-mincho);
}

.reason .num { 
    font-weight: 700;
    font-size: 2.0rem;
    font-family: var(--font-family-mincho);
}

.reason_txt_detail {
    background-color: var(--color-palered);
    padding: 50px;
    border-top: 2px solid var(--color-red);
}

.reason_title {
    color: var(--color-red); 
    font-size: 1.4rem;
    font-family: var(--font-family-mincho);
    font-weight: 700;
}
/** **/

/** about **/
#about {
    background-color: var(--color-palered);
}

#about .contents_inner {
    position: relative; 
}

#about .contents_inner::after {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 98%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: var(--color-palered);
    width: 180px;
    height: 55px;
}

.point_box {
    background-color: var(--color-white);
    padding: 10px 30px;
    margin-top: 20px;
}

.point_title {
    color: var(--color-red);
    font-family: var(--font-family-mincho);
    font-weight: 700;
    font-size: 1.4rem;
}

.point_summary {
    background-color: var(--color-red);
    text-align: center;
    padding: 50px;
}

.point_summary p {
    color: var(--color-white);
}

.point_summary_title {
    font-size: 1.6rem;
    font-family: var(--font-family-mincho);
    font-weight: 600;
}

.point_summary_title span {
    font-size: 2.0rem;
    font-family: var(--font-family-mincho);
    text-emphasis: filled;
}
/** **/

/** case **/
.case_box:first-of-type {
    border-top: 1px solid var(--color-red);
}

.case_box {
    border-bottom: 1px solid var(--color-red);
    padding: 30px;
}

.case_box .purpose {
    font-weight: 600;
    color: var(--color-red);
    font-size: 1.2rem;
}

.case_box .flex {
    display: flex;
    flex-wrap: wrap;
}

.case_item_01 {
    width: 40%;
    text-align: center;
}

.case_item_01 .company {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 0;
    font-weight: 600;
}

.case_item_02 .company {
    background-color: var(--color-palered);
    padding: 10px 0;
    font-weight: 600;
}

.case_icon {
    width: 20%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    align-content: center;
}

.case_icon img {
    width: 50%;
    height: auto;
}

.case_item_02 {
    width: 40%;
    text-align: center;
}
/** **/

/** consultant **/
#consultant .flex {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    padding: 50px;
}

.profile {
    width: 70%;
}

.profile .role {
    font-weight: 600;
}

.profile .name {
    color: var(--color-red);
    border-bottom: 1px solid var(--color-red);
    padding-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.profile .name span {
    font-weight: 400;
    padding-left: 10px;
}

.profile_img {
    width: 30%;
    text-align: center;
    align-content: center;
}

.profile_img img {
    width: 80%;
    height: auto;
}
/** **/

/** interview **/
#interview {
    background-color: var(--color-palered);
}

.interview_num {
    font-weight: 700;
    color: var(--color-red);
    font-size: 4.0rem;
    text-align: center;
    margin: 15px 0;
    font-family: var(--font-family-mincho); 
    width: 100%;
    margin-bottom: 5px;
}

.interview_title {
    font-weight: 700;
    color: var(--color-red);
    font-size: 1.5rem;
    width: 50%;
    margin: 0 auto;
}

.interiew_box_movie {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.interview_movie {
    text-align: center;
    width: 100%;
}

.interiew_box_movie .interview_title {
    padding-bottom: 10px;
}

.interiew_box_txt {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.interview_subject_01 .interview_title {
    width: 100%;
}

.interview_subject_01 {
    width: 60%;
    padding-right: 30px;
    box-sizing: border-box;
    align-content: center;
}

.interview_subject_02 {
    width: 60%;
    padding-left: 30px;
    box-sizing: border-box;
    align-content: center;
}

.interview_name {
    font-weight: 600;
}

.interview_img {
    width: 40%;
    align-content: center;
}

.interview_img img {
    width: 100%;
    height: auto;
}

.interview_txt {
    width: 100%;
}

.leadmore a {
    color: var(--color-red);
}

.interview .leadmore {
    text-align: right;
    padding-right: 40px;
    margin-top: 20px;
}

.interview .leadmore span {
    position: relative;
    font-weight: 500;
}

.interview .leadmore span::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 108%;
    width: 23px;
    top: 3px;
    height: 23px;
    border-radius: 50%;
    background: var(--color-red);
}

.interview .leadmore span::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 115%;
    top: 2px;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: rotate(45deg);
}

.interview_subject_02 .interview_title {
    width: 100%;
}
/** **/

/** flow **/
.flow_box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
}

.flow_box li {
    writing-mode: vertical-rl;
    padding: 30px 17px;
}

.flow_box li span {
    display: table-cell;
    width: auto;
    height: 360px;
    border-radius: 0;
    position: relative;
    vertical-align: middle;
    padding: 0 20px;
    text-align: center;
}

.flow_box .color01 {
    background: var(--color-palered);
}

.flow_box .color02 {
    background: var(--color-red);
    color: var(--color-white);
}

.flow_box .triangle {
    width: 0;
    height: 0;
    border-left: 10px solid var(--color-red);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: relative;
    top: 200px;
    padding: 0;
    margin: 0;
}
/** **/

/** price **/
.lehman__illustration {
    background-color: var(--color-palered);
    padding: 34px 48px;
    padding-bottom: 54px;
    margin-top: 36px;
}

.lehman__illustration .row {
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lehman__illustration .lehman__result {
    margin-left: 90px;
    position: relative;
}

.lehman__illustration .lehman__result:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--color-red);
    left: -54px;
    top: 0;
    bottom: 26px;
    margin: auto;
}

.lehman__illustration .lehman__result .row {
    margin-top: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.lehman__illustration .lehman__result .note {
    text-align: right;
    font-size: 1rem;
    margin-top: 10px;
}

.lehman__illustration .lehman__result__item {
    background-color: var(--color-white);
    padding: 0 30px;
}

.lehman__illustration .lehman__result__item + .lehman__result__item {
    margin-left: 30px;
}

.lehman__illustration .lehman__result__ttl {
    font-weight: 600;
}
/** **/

/** FaQ **/
#faq {
    background-color: var(--color-palered);
}

.ac-parent {
    position: relative;
    border-bottom: 1px solid var(--color-red);
    text-align: left;
    line-height: 50px;
    cursor: pointer;
    padding: 20px 0 20px 30px;
    font-weight: 600;
    color: var(--color-red);
}

.ac-parent:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 30px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    transform: translateY(-50%) rotate(45deg);
}

.ac-parent.open:after {
    top: 55%;
    transform: translateY(-50%) rotate(225deg);
}

.ac-parent:first-child {
    border-top: 1px solid var(--color-red);
}

.ac-parent span,
.ac-child span {
    font-size: 1.5rem;
    margin-right: 20px;
    font-weight: 600;
}

.ac-child {
    display: none;
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-red);
    margin-left: 0;
}
/** **/

/** Company **/
.company_flex {
    display: flex;
    width: 100%;
    align-items: center;
}

.company_flex .company_img {
    width: 35%;
}

.company_img img {
    width: 100%;
    height: auto;
}

.company_flex .company_dl {
    width: 65%;
}

.company_dl dl {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 20px;
    width: 93%;
    margin-left: 7%;
}

.company_dl dt {
    width: 25%;
    float: left;
    font-weight: 600;
}

.company_dl dd {
    margin-left: 25%;
}
/** **/

/** Contact **/
#contact {
    color: var(--color-white);
    background-color: var(--color-red);
}

blockquote {
    margin: 0 auto;
}

blockquote.step input.text, blockquote.step textarea {
    float: left;
    width: 100%;
    margin: 0 0 10px;
    padding: 15px;
    border: solid 1px var(--color-white);
    border-radius: 0;
    box-sizing: border-box;
    font-family: var(--font-family-notosans);
    font-size: 0.9rem;
}

blockquote.step label.item {
    margin: 0 20px 0 0;
    font-size: 0.9rem;
    text-align: left;
    clear: both;
    width: 100%;
}

blockquote.step label {
    display: block;
    padding: 10px 0;
    margin-right: 15px;
    border-radius: 0;
    box-sizing: border-box;
}

blockquote.step .text {
    display: block;
}

blockquote .w_fl {
    width: 48%;
    float: left;
}

blockquote .w_fr {
    width: 48%;
    float: right;
}

.select-os .check_box {
    clear: both;
}

input {
    display: none;
}

/* オートコンプリート機能デザイン変更 */
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px #fff inset;
}

blockquote.step label {
    display: block;
    padding: 10px 0;
    margin-right: 15px;
    border-radius: 0;
    box-sizing: border-box;
}

.select-os label {
    color: #1e2124;
    border: 1px solid #fff;
    text-align: center;
    padding: 9px 30px !important;
    background: #fff;
    float: left;
    margin-bottom: 10px;
    cursor: pointer;
}

.required {
    color: #FFFF00;
}

.button button {
    color: var(--color-red);
    background: var(--color-palered);
    padding: 10px;
    display: block;
    width: 200px;
    cursor: pointer;
    margin: 0 auto 80px;
    clear: both;
    border: 0px;
    background-size: 7px;
    background-repeat: no-repeat;
    background-position: 95% 50%;
    font-weight: 600;
    position: relative;
    top: 50px;
    font-family: var(--font-family-notosans);
    border-radius: 30px;
    font-size: 1.1rem;
}

.select-os input[type="radio"]:checked.sell_buy + label {
    color: var(--color-white);
    background-color: #707070;
    border: 1px solid var(--color-white);
}

.check_box:checked + .label {
    color: var(--color-white);
    background-color: #707070;
    border: 1px solid var(--color-white);
}

.select-os input[type="radio"]:checked.icon + label {
    color: var(--color-white);
    background-color: #707070;
    border: 1px solid var(--color-white);
}

.inquirytable {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.inquirytable tr:first-child {
    border-top: 1px solid #dbdbdb;
}

.inquirytable tr {
    border-bottom: 1px solid #dbdbdb;
}

.inquirytable th {
    text-align: left;
    padding: 10px 20px;
    width: 25%;
    border-right: 1px solid #dbdbdb;
    background: var(--color-palered);
    border-left: 1px solid #dbdbdb;
    color: #1e2124;
}

.inquirytable td {
    width: 60%;
    padding: 0 20px;
    border-right: 1px solid #dbdbdb;
    background: var(--color-white);
    color: #1e2124;
}

.button .return {
    color: #1e2124;
    font-weight: 600;
    background: #fff;
    display: block;
    border: 2px solid var(--color-red);
    cursor: pointer;
    margin: 0 auto;
}
/** **/

/** footer **/
footer .footer_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 0 60px;
    text-align: center;
}

.footer_policy {
    margin-bottom: 20px;
}

.footer_policy a {
    text-decoration: none;
    color: var(--color-black);
}

.footer_policy a:nth-of-type(1) {
        margin-right: 30px;
}
/** **/

@media screen and (max-width: 1200px) {
    .g-nav-show {
        display: none;
    }

    .hamburger-show {
        display: show;
    }

    .anchor-offset { 
       scroll-margin-top: 10px;
    }

    #pagetop {
        right: 10px;
    }

    /** hambuger **/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 200;
        right: 9px;
        top: 17px;
        width: 50px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 35px;
        height: 2px;
        left: 6px;
        background: var(--color-red);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 8px;
    }

    .hamburger span:nth-child(2) {
        top: 17px;
    }

    .hamburger span:nth-child(3) {
        top: 26px;
    }

    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    /** **/

    /** globalNav **/
    .globalMenuSp-show {
        display: block;
    }

    .globalMenuSp {
        height: 100%;
        background: var(--color-red);
        color: var(--color-white);
        box-sizing: border-box;
        overflow: auto;
        -webkit-overflow: auto;
        position: fixed;
        right: 0;
        scroll-margin-top: 60px;
        text-align: center;
        top: 72px;
        transform: translateX(100%);
        transition: all 0.6s;
        width: 100%;
        z-index: 300;
    }

    .globalMenuSp.active {
        transform: translateX(0%);
    }

    .globalMenuSp ul {
         padding: 3rem;
    }

    .globalMenuSp ul li {
        padding: 15px 0;
        border-bottom: 1px solid var(--color-white);
    }

    .globalMenuSp ul li a {
        color: var(--color-white);
    }

    .sp_tel_mail {
        display: block;
        position: fixed;
        z-index: 300;
        right: 60px;
        top: 7px;
        cursor: pointer;
        text-align: center;
        margin: 5px;
    }

    .tel_sp img {
        float: left;
        display: block;
        width: 50px;
    }

    .sp_tel_mail .tel_sp {
        list-style: none;
        float: left;
        margin-right: 10px;
    }

    .sp_tel_mail .mail_sp {
        list-style: none;
        float: left;
    }

    .mail_sp img {
        float: left;
        display: block;
        width: 50px;
    }

    .globalMenuSp ul li a {
        color: var(--color-white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.;
    }

    .fa-phone:before {
        color: var(--color-white);
    }
    /** **/

    /** Flow **/
    .flow_box li {
        padding: 30px 10px;
    }

    .flow_box li span {
        padding: 0 15px;
    }
    /** **/
}

@media (min-width: 551px) and (max-width: 1200px) {
    /** KV **/
    .keyvisual_inner {
        top: 40%;
    }

    .keyvisual_inner h1 span {
        font-size: 4.0vw;
    }

    .keyvisual_inner p {
       font-size: 2.2vw;
        margin-top: 10px;
    }

    .keyvisual_inner_02 {
        width: 100%;
        position: static;
        display: block;
        transform: none;
    }

    .keyvisual_inner_02 ul {
        width: 90%;
    }

    .keyvisual_inner_02 ul li {
        font-size: 1.5vw;
    }
     /** **/

    /** Reason **/
    #reason {
        margin-top: 0;
    }

    .reason_txt_detail {
        padding: 20px;
    }

    .reason_txt { 
        width: 60%;
    }
    .image-wrapper {
        width: 40%;
    }

    .reason_txt_02 {
        width: 60%;
    }

    .image-wrapper_02 {
        width: 40%;
    }
    /** **/

    /** consultant **/
    .consultant .flex {
        padding: 30px;
    }
    /** **/

    /** interview */
    .interview_title {
        width: 70%;
    }
    /** **/

    /** price **/
    .lehman__illustration {
        padding: 34px 28px;
    }
    /** **/
}
    

@media screen and (max-width: 768px) {
    section .contents_inner {
        padding: 50px 25px;
    }

    #pagetop {
        right: 20px;
    }

    /** 無料相談はこちらボタン　**/
    .contact_btn_02  {
        padding: 50px 0;
    }

    .contact_btn_02 a {
        padding: 15px 40px;
    }
    /** **/

    /** gnav **/
    .tel_sp img {
        width: 40px;
    }

    .mail_sp img {
        width: 40px;
    }
    /** **/

    /** about **/
    .point_summary {
        padding: 20px;
    }

    #about .contents_inner::after {
        width: 100px;
        height: 30px;
    }

    .point_summary_txt {
        text-align: left;
    }
    /** **/

    /** pricfe **/
    .row img {
        width: 90%;
    }

   .lehman__illustration .lehman__result {
        margin-left: 50px;
    }
    
    .lehman__illustration .lehman__result__item + .lehman__result__item {
        margin-left: 15px;
    }
    .lehman__illustration .lehman__result:before {
        left: -45px;
    }
    
    .lehman__illustration .lehman__result__item {
        padding: 0 10px;
    }
    /** **/
    
    /** FaQ **/
    .ac-parent {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 20px 0;
        padding-right: 35px;
    }
    
    .ac-parent span {
        font-size: 1.2rem;
        margin-right: 10px;
        float: left;
        position: relative;
        top: -3px;
    }

    .ac-parent:after {
        right: 10px;
        width: 8px;
        height: 8px;
    }

    .ac-child {
        padding: 20px 15px;
    }
    /** **/

    /** footer **/
    .footer_policy a {
        font-size: 0.9rem;
        text-decoration: none;
    }

    .footer_policy a:nth-of-type(1) {
        margin-right: 10px;
    }
    /** **/
}

@media only screen and (max-width: 550px) {
    body .pc {
        display: none;
    }

    body .sp {
        display: block;
    }

    #pagetop a {
        padding: 10px 3px;
    }

    /** KV **/
    .keyvisual_inner { 
        top: 45%;
    }

    .keyvisual_inner h1 span {
        font-size: 1.8rem;
    }

    .keyvisual_inner p {
        font-size: 1.0rem;
        margin-top: 0;
        font-weight: 600;
    }

    .keyvisual_inner_02 {
        width: 100%;
        padding: 15px 0;
    }

    .keyvisual_inner_02 ul li {  
        font-size: 0.8rem;
        margin: 0 5px;
        align-content: center;
    }
    /** **/

    /** reason **/
    #reason {
        margin-top: 70px;
    }

    #reason .point {
        font-size: 1.0rem;
    }
    .reason_box {
        display: block;
        margin-bottom: 20px;
    }

    .image-wrapper { 
        width: 80%;
        margin-left: -25px;
    }

    .reason_txt {
        width: 100%;
        top: -30px;
        margin-left: 0;
    }

    .reason_txt_detail {
        padding: 20px;
    }

    .reason_num_sp {
        color: var(--color-red);
        margin: 0 0 5px;
    }
    
    .reason_title { 
        margin-top: 0;
    }
    .image-wrapper_02 {
        width: 80%;
        margin-left: auto;
        margin-right: -25px;
    }

    .reason_txt_02 {
        width: 100%;
        top: -30px;
        margin-right: 0;
    }
    /** **/

    /** case **/
    .case_box {
        padding: 30px 0;
    }

    .case_box .flex {
        display: block;
    }

    .case_box .flex:nth-of-type(2) {
        margin-top: 80px;
    }

    .case_item_01, .case_item_02 {
        width: 100%;
    }

    .case_icon {
        width: 100%;
        padding: 0;
    }

    .case_icon img {
        width: 20%;
        height: auto;
    }
    /** **/

    /** consultant **/
    #consultant .flex {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding: 20px;
    }

    .profile {
        width: 100%;
    }

    .profile_img {
        width: 100%;
        text-align: center;
    }
    /** **/

    /** interview **/
    .interview_num {
        font-size: 3.0rem;
    }

    .interview_subject {
        width: 100%;
    }

    .interview_title {
        width: 100%;
        font-size: 1.3rem;
    }

    .interview_movie {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .interview_movie iframe {
        width: 100%;
        height: 100%;
    }

    .interiew_box_txt .interview_num {
        order: 1;
    }

    .interiew_box_txt .interview_img {
        width: 100%;
        order: 2;
    }

    .interview_txt {
        order:4
    }

    .interiew_box_txt .interview_subject_01 {
        order: 3;
        width: 100%;
        padding-right: 0;
    }

    .interiew_box_txt .interview_subject_02 {
        order: 3;
        width: 100%;
        padding-left: 0;
    }
    /** **/

    /** flow **/
    .flow_box {
        display: block;
        text-align: center;
        padding-bottom: 0;
        float: none;
    }
    
    .flow_box li {
        writing-mode: horizontal-tb;
        float: none;
        padding: 20px 0 0px;
    }

    .flow_box li span {
        display: block;
        padding: 15px;
        height: auto;
    }

    .flow_box .triangle {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--color-red);
        top: 20px;
        display: inline-block;
    }
    /** **/

    /** price **/
    .lehman__illustration {
        padding: 20px;
        width: auto;
    }

    .lehman__illustration .row {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .lehman__illustration .row img {
        width: 65%;
        margin: auto;
        display: block;
    }

    .lehman__illustration .lehman__result {
        margin-left: 0;
        margin-top: 60px;
    }
    
    .lehman__illustration .lehman__result:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4.036458333333334vw 2.278645833333333vw 0 2.278645833333333vw;
        border-color: var(--color-red) transparent transparent transparent;
        left: 0;
        right: 0;
        top: -126vw;
        margin: auto;
    }
    
    .lehman__illustration .lehman__result__item {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .lehman__illustration .lehman__result__item + .lehman__result__item {
        margin-left: 0;
    }
    /** **/

    /** Company **/
    .company_flex {
        display: block;
    }

    .company_flex .company_img {
        width: 100%;
        text-align: center;
    }

    .company_img img {
        width: 80%;
        height: auto;
    }

    .company_flex .company_dl {
        width: 100%;
    }
    .company_dl dl {
        width: 100%;
        margin-left: 0;
    }
    /** **/

    .button .return {
        margin-bottom: 20px;
    }
}

</pre></body></html>