@charset "UTF-8";

/* root */
:root {
    --color-basecolor: #F1F3FA;
    --color-accentcolor: #036EB8;
    --color-white: #FFF;
    --color-black: #000;
    --font-family-notosans : 'Noto Sans', sans-serif;
    --font-size-base: 16px;  
    --line-height-base: 1.6;
}

/* reset */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, figure, figcaption, blockquote, dd {
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
}

ol, ul {
    list-style: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit; 
}

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

/* 共通 */
body {
    font-family: var(--font-family-notosans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
}

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

h1 {
    font-size: 4.0rem;
    color: var(--color-accentcolor);
    line-height: 1.2;
}

h2 {
    position: relative;
    text-align: center;
    color: var(--color-accentcolor);
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    padding-bottom: 10px;
    font-weight: normal;
    line-height: 1.5;
}

h2 span {
    font-size: 18px;
    font-size: 3.0rem;    
    display: block;
    font-weight: 600;
}

h2:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: var(--color-accentcolor);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.w30 {
    width: 30%;
}

.w40 {
    width: 40%;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

/** header **/
.header {
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 10;
    background-color: var(--color-white);
    border-bottom: 1px solid #dbdbdb;
}
.header ul {
    width: 87%;
    float: left;
    margin: 0;
    padding: 0;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.header ul li {
    display: inline-block;
    margin: 25px 10px;
}

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

.nav {
    height: 100%;
}

.nav .tel {
    font-size: 1.3rem;
    font-weight: 600;
}

.nav .mail {
    /* background-color: var(--color-accentcolor);
    padding: 10px 20px;
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600; */
}

.nav .mail a {
    background-color: var(--color-accentcolor);
    padding: 10px 20px;
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
}

.header .logo {
    width: 13%;
    height: 100px;
    float: left;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

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

body .sp {
  display: none;
}

.sp_tel_mail {
    display: none;
}

/** KV **/
#main {
    position: relative; 
    width: 100%;
    min-height: 700px; 
    background-image: url('/industry/care/img/main_visual.jpg'); 
    background-size: cover; 
    background-position: center top; 
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    overflow: hidden;
}

.key-visual-text {
    position: relative;
    z-index: 2; 
    padding: 20px; 
    max-width: 1200px; 
    width: 90%; 
    margin: 0 auto; 
}

.key-visual-text p {
    width: 60%;
}

.key-visual-text .copy {
    font-size: 3.5em; 
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.key-visual-text p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.key-visual-text .sub_copy {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex; 
    font-size: 1.1em;
    font-weight: bold;
    gap: 10px;
}

.key-visual-text .sub_copy li {
    background-color: var(--color-white); 
    padding: 8px 15px;
    backdrop-filter: blur(5px); 
    color: var(--color-accentcolor);
}

/** 選ばれる理由 **/
#reason {
    background: var(--color-basecolor);
}

.reason_contents_blue {
    background-color: var(--color-basecolor);
}

.reason_contents_white {
    background-color: var(--color-white);
}

.reason_contents {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.reason_box01 {
    padding-top: 0;
}

.reason_img {
    align-content: center;
}

.reason_img img {
    padding: 0 30px;
}

.pointNum {
    color: var(--color-accentcolor);
    font-size: 4.0rem;
    font-weight: 600;
}

.blue_bold {
    color: var(--color-accentcolor);
    font-weight: 600;
}

.reason_box p {
    margin-top: 20px;
}

/** メンバー **/
#member {
    background: var(--color-basecolor);
}

.member_list {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    justify-content: flex-start
}

.member_box {
    flex: 0 0 calc(33.33% - 20px);
    box-sizing: border-box; 
}

.member_box .position {
    padding-top: 10px;
}

.member_box .name {
    font-size: 1.5rem;
    color: var(--color-accentcolor);
    font-weight: 600;
}

.member_box .name .ruby {   
    font-size: 1.2rem;
    color: var(--color-black);
    padding-left: 10px;
    font-weight: 500;
}

.member_box .text {
    padding-top: 10px;
}

.moreMembers {
    display: none;
}

.moreMembers.is-visible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.more-button {
    display: block; 
    margin: 60px auto 0 auto; 
    padding: 12px 50px;
    font-size: 1.1em;
    color: var(--color-accentcolor);
    background-color: var(--color-white);
    border: 2px solid var(--color-accentcolor); 
    border-radius: 50px;
    cursor: pointer;
}

/** 成約実績 **/
.case_dl {
    margin-bottom: 25px;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 15px;
}

.case_dl .dl_01 {
    width: 40%;
    display: block;
    float: left;
    margin: 5px 0;
    text-align: center;
}

.case_dl .dl_01 .main_dt {
    background: #0f3291;
    color: var(--color-white);
    font-weight: 600;
    float: left;
    padding: 10px 15px;
}

.case_dl .dl_01 .main_dt_buy {
    background: #00aff0;
    color: var(--color-white);
    font-weight: 600;
    float: left;
    padding: 10px 15px;
}

.case_dl .dl_01 .sub_dt {
    background: #CECECE;
}

.case_dl .dl_01 .sell {
    text-align: left;
    margin-left: 90px;
    padding: 10px;
    background: #f8f0fb;
    border-left: 2px solid #0f3291;
    margin-bottom: 10px;
    font-weight: 600;
}

.case_dl .dl_01 .buy {
    text-align: left;
    margin-left: 90px;
    padding: 10px;
    background: #ebf7fd;
    border-left: 2px solid #00b0ec;
    margin-bottom: 10px;
    font-weight: 600;
}

.case_dl .dl_01 dd {
    text-align: left;
    margin-left: 90px;
    padding: 10px;
    border-left: 2px solid var(--color-accentcolor);
    margin-bottom: 5px;
}

.case_dl .dl_02 {
    width: 20%;
    display: block;
    float: left;
    margin: 5px 0;
}

.case_dl .dl_02 dd {
    clear: left;
    text-align: center;
    margin: 10px 0;
    position: relative;
    top: 7px;
}

.case_dl .dl_02 dt {
    width: 100%;
    color: var(--color-accentcolor);
    font-weight: 500;
    text-align: center;
    float: none;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.case_dl .dl_02 .date_dt {
    margin-top: 0;
}

.case_dl .dl_02 .date_dd {
    margin: 0;
    top: 0;
    margin-top: 3px;
    font-weight: 500;
}

.case_dl .dl_02 .period {
    margin: 0;
    top: 0;
    margin-top: 3px;
    font-weight: 500;
}

.case_dl dt {
    float: left;
    text-align: left;
    padding: 10px;
    font-weight: 600;
}

.case_dl dd {
    margin-left: 0;
}

.case_dl .dt_02 {
    margin-right: 70%;
    margin-bottom: 18px;
}

#case .content {
    display: inline-block;
    width: 100%;
}

.dl_02 .case_img {
    position: relative;
}

.dl_02 .case_img img {
    width: 20%;
    left: 0;
    right: 0;
    margin: auto;
}

.case_dl .dl_01 .t_left {
    text-align: left;
}

.hidden-cases {
    display: none;
}

.hidden-cases.is-visible {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/** 成約事例 **/
#interview {
    background: var(--color-basecolor);
}

.interview_flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.interview_flex .img01 {
    width: 40%;
}

.interview_text {
    margin-top: 20px;
}

.interview_flex .text_box {
    padding-left: 20px;
    width: 60%;
}

.interview_q {
    color: var(--color-accentcolor);
    font-weight: 600;
    font-size: 1.3rem;
    padding-bottom: 10px;
}

.pt10 {
  padding-top: 10px;
}

#interview .text_box .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accentcolor);
}

#interview .text_box .company_name {
    margin-top: 10px;
    font-weight: 600;
}

.interview_contents {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.interview_contents .interview_text {
    width: 60%;
    padding-right: 20px;
}

.interview_contents .interview_text02 {
    width: 60%;
    padding-left: 20px;
}

.interview_contents .interview_img {
    width: 40%;
}

.name_bold {
    font-weight: 600;
}

/** よくある質問　**/
.ac-parent {
    position: relative;
    border-bottom: 1px solid var(--color-accentcolor);
    text-align: left;
    line-height: 50px;
    cursor: pointer;
    padding: 20px 0 20px 30px;
    font-weight: 600;
    color: var(--color-accentcolor);
}

.ac-parent .q {
    margin-right: 10px;
}

.ac-parent:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 30px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-accentcolor);
    border-bottom: 2px solid var(--color-accentcolor);
    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-accentcolor);
}

.ac-child span {
    color: var(--color-accentcolor);
    font-weight: 600;
}

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

.ac-child a {
    color: var(--color-accentcolor);
    text-decoration: underline;
}

/* 会社情報 */
#company {
    background: var(--color-basecolor);
}

.company_dl dl {
    border-bottom: 1px solid var(--color-accentcolor);
    padding: 20px 0;
    width: 93%;
    margin-left: 7%;
}

.company_dl dt {
    width: 25%;
    float: left;
    font-weight: 600;
    color: var(--color-accentcolor);
}

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

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

.company_flex .company_img {
    width: 35%;
}

.company_img img {
    width: 100%;
}

.company_flex .company_dl {
    width: 65%;
}

/* お問い合わせ */
#contact {
    color: var(--color-white);
    background-color: var(--color-accentcolor);
    scroll-margin-top: 85px;
}

#contact h2:before {
    background: var(--color-white);
}

#contact h2 {
    color: var(--color-white);
}

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[type=checkbox] {
  display: block;
  clear: both;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #007AFF;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container .checkbox-label {
  border: none;
  background: none;
  padding: 0 !important;
  display: inline-block;
  float: none;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px var(--color-white) inset;
}

/* メルマガパーミッション */
.checkbox-container .checkbox-label {
    flex: 1;
    width: calc(100% - 80px);
    cursor: pointer;
}

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 var(--color-white);
    text-align: center;
    padding: 9px 30px !important;
    background: var(--color-white);
    float: left;
    margin-bottom: 10px;
    cursor: pointer;
}

.required {
    color: #FFFF00;
}

.button button {
    color: var(--color-white);
    background: #0B318F;
    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;
    background-color: #0b318f;
    color: var(--color-white);
}

.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: var(--color-white);
    display: block;
    border: 2px solid var(--color-basecolor);
    cursor: pointer;
    margin: 0 10px;
}

.error {
    color: #FFFF00;
}

/** 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;
}

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

#pagetop a {
    padding: 15px 8px;
    background: var(--color-accentcolor);
    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);
}

@media screen and (max-width: 1100px) {
    .case_dl .dl_01 .main_dt_buy {
        float: none;
       
    }
    .case_dl .dl_01 .buy {
        margin-left: 0;
        border-left: 0;
        margin-bottom: 10px;
    }

      .case_dl .dl_01 .main_dt {
        float: none;
    }

    .case_dl .dl_01 .sell {
        margin-left: 0;
        border-left: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1023px) {
   /** hambuger **/
    .hamburger {
        display: block;
        position: fixed;
        z-index: 200;
        right: 9px;
        top: 15px;
        width: 50px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 35px;
        height: 2px;
        left: 6px;
        background: var(--color-accentcolor);
        -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);
    }
    nav.globalMenuSp {
        position: fixed;
        z-index: 6;
        left: 25%;
        text-align: center;
        transform: translateX(100%);
        transition: all 0.6s;
        width: 75%;
        height: 100vh;
        background: var(--color-accentcolor);
    }
    nav.globalMenuSp.active {
        transform: translateX(0%);
    }
    .globalMenuSp ul {
        list-style: none;
        padding-left: 0;
        margin-top: 200px;
    }
    .globalMenuSp ul li {
        margin: 25px 0;
    }
    .globalMenuSp ul li a {
        color: var(--color-white);
        text-decoration: none;
        font-weight: 600;
    }

    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background: var(--color-accentcolor);
    }
    .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);
        background: var(--color-accentcolor);
    }
    .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);
        background: var(--color-accentcolor);
    }

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

    body .pc {
        display: none;
    }

    body .sp {
        display: block;
    }

    .sp_contact {
        width: 50%;
        display: block;
        margin: auto;
    }

    .sp_contact li {
        width: 50%;
        float: left;
        position: relative;
    }

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

    .sp_tel_mail .mail_sp {
        list-style: none;
        float: left;
    }
    
    .tel_sp img {
        float: left;
        display: block;
        width: 40px;
    }
    
    .mail_sp img {
        float: left;
        display: block;
        width: 40px;
    }

    .header .logo {
        width: 20%;
        padding: 0 20px;
        height: 70px;
    }

    .header {
        height: 70px;
    }
}

@media (max-width: 768px) {
    #main {
        background-position: 75% 0;
        align-items: end;
        min-height: 600px;
    }

    #pagetop {
        right: 20px;
    }

    h1 {
        font-size: 2.6rem;
    }

    /* Key Visual */
    h2 {
        margin-bottom: 40px;
        padding-top: 40px;
    }

    h2 span {
        font-size: 2.5rem;
    }

    .key-visual-text {
        width: 100%;
    }

    .key-visual-text p {
        font-size: 0.8rem;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }

    .key-visual-text .sub_copy li {
        font-size: 0.8rem;
        padding: 10px 5px;
        margin-right: 5px;
    }

    .key-visual-text .copy {
        font-size: 2.2em; 
        margin-bottom: 10px;
    }

    .key-visual-text .sub_copy {
        font-size: 0.9em;
    }

    section .contents_inner {
        padding: 70px 25px;
    }

     /** header **/
    .sp_tel_mail {
        display: block;
        position: fixed;
        z-index: 300;
        right: 60px;
        top: 10px;
        cursor: pointer;
        text-align: center;
        margin: 5px;
    }
    .header .logo {
        width: 200px;
        padding: 0 20px;
    }

    /** Reason **/
    .pointNum {
        font-size: 3.0rem;
    }

    /** 成約事例 **/
    .interview_flex {
        flex-wrap: wrap;
    }

    .interview_flex .img01 {
        width: 100%;
    }

    .interview_flex .text_box {
        width: 100%;
        padding-left: 0;
    }

    .interview_contents {
        flex-wrap: wrap;
    }

    .interview_contents .interview_text,
    .interview_contents .interview_text02,
    .interview_contents .interview_img {
        width: 100%;
    }

    .interview_contents .interview_text,
    .interview_contents .interview_text02 {
        order: 2;
    }

    .interview_contents .interview_img {
        order: 1;
    }

    .interview_contents .interview_text {
        padding-right: 0;
    }

    .interview_contents .interview_text02 {
        padding-left: 0;
    }

    /** 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;
    }

    /** 会社情報 **/
    .company_flex {
        flex-wrap: wrap;
    }

    .company_flex .company_img {
        width: 100%;
    }

    .company_flex .company_dl {
        width: 100%;
    }

    .company_dl dl {
        margin-left: 0;
    }

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

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

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

@media (min-width: 600px) and (max-width: 1023px) {

    h1 {
        font-size: 3.0rem;
    }

    .key-visual-text p {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .key-visual-text .sub_copy {
        margin-top: 10px;
    }

    .key-visual-text .sub_copy li  {
        font-size: 1.0rem;
    }

    /** Reason **/
    .reason_contents {
        flex-wrap: wrap;
    }

    .reason_box_01 .reason_text,
    .reason_box_01 .reason_img {
        width: 100%;
    }

    .reason_box_01 .reason_img img {
        margin-top: 20px;
        padding: 0;
    }

    /** memeber **/
    .member_box {
        flex: 0 0 calc(50% - 20px);
        box-sizing: border-box;
    }

}

@media (max-width: 599px) {
     /** Reason **/
    .reason_contents {
        flex-wrap: wrap;
        padding: 70px 25px;
    }

    .reason_contents .reason_text,
    .reason_contents .reason_img {
        width: 100%;
    }

    .reason_contents .reason_img {
        margin-top: 30px;
    }

    .reason_box02 .reason_text,
    .reason_box04 .reason_text {
        order: 1;
    }

    .reason_box02 .reason_img,
    .reason_box04 .reason_img  {
        order: 2;
    }

    .reason_img img {
        padding: 0;
    }

    .reason_box03 .reason_img {
        text-align: center;
    }

    .reason_box03 .reason_img img {
        width: 60%;
    }

     /** メンバー **/
    .member_box {
        flex: 0 0 100%;
    }

    /** 成約実績 **/
    /* .case_dl .dl_01 {
        width: 100%;
    }

    .case_dl .dl_02 {
        width: 100%;
    }

    .dl_02 .case_img img {
        width: 10%;
    } */
    .case_dl .dl_01 {
        width: 36%;
    }
    .case_dl dt {
        float: none;
    }
    .case_dl .dl_01 dd {
        margin-left: 0;
    }
    .case_dl .dl_01 dd {
        border-left: none;
        border-top: 2px solid var(--color-accentcolor);
    }
    .case_dl .dl_01 .buy,
    .case_dl .dl_01 .sell {
        border-top: none;
    }
    .case_dl .dl_02 {
        padding-right: 8px;
        padding-left: 8px;
        width: 28%;
        margin-top: 80px;
    }
}

