@charset "UTF-8";

:root{
    --blue: #1467C8;
    --red: #FF0000;
    --yellow: #FFFF64;
    --green: #00A73C;
    --gray: #DAE0E2;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: min(110px,100vw*(110/750));
}
@media screen and (min-width: 769px){
    html {
        scroll-behavior: smooth;
        scroll-padding-top: min(100px,100vw*(100/1200));
        font-size: 10px;
    }
}
body {
    color: #000000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-feature-settings: "palt" 1;
    background: #FFFFFF;
}
@media screen and (max-width: 768px){
    body {
      width: 100vw;
      font-size: min(26px,100vw*(26/750));
    }
    main{
        margin-top: min(116px,100vw*(116/750));
    }
}
@media screen and (min-width: 769px){
    body{
        width: auto;
        font-size: min(17px,100vw*(17/960));
    }
}
ul,ol{
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
a{
    text-decoration: none;        
}
@media screen and (min-width: 769px){
    a:hover{
        opacity: 0.75;
        transition: opacity 0.3s ease;
        text-decoration: underline;
    }
}
@media screen and (max-width: 768px){
    .pc{
        display: none;
    }
}
@media screen and (min-width: 769px){
    .sp{
        display: none;
    }
}

.contact{
    display: grid;
    align-items: center;
    justify-content: center;
    gap: min(20px,100vw*(20/750));
}
.contact-lead{
    font-size: min(30px,100vw*(30/750));
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
.btn-contact a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(600px,100vw*(600/750));
    height: min(100px,100vw*(100/750));
    text-decoration: none;
    color: var(--red);
    font-size: min(32px,100vw*(32/750));
    font-weight: 700;
    background-color: #fff;
    border-radius: min(100px,100vw*(100/750));
    border: min(5px,100vw*(5/750)) solid var(--red);
}
.btn-contact a:after{
    content: "";
    width: 0.75em;
    height: 0.9em;
    margin-left: 0.75em;
    background-color: var(--red);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (min-width: 769px){
    .contact{
        gap: min(20px,100vw*(20/1200));
    }
    .contact-lead{
        font-size: min(25px,100vw*(25/1200));
    }
    .btn-contact a{
        width: min(520px,100vw*(520/1200));
        height: min(80px,100vw*(80/1200));
        font-size: min(28px,100vw*(28/1200));
        border-radius: min(40px,100vw*(40/1200));
        border: 4px solid var(--red);
        transition: 0.5s ease;
    }
    .btn-contact a:hover{
        background: var(--red);
        color:#fff;
        opacity: 1;
    }
    .btn-contact a:after{
        transition: 0.5s ease;
    }
    .btn-contact a:hover:after{
        background: #fff;
    }
}

#header{
    width: 100%;
    border-bottom: min(6px,100vw*(6/750)) solid var(--blue);
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
#header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: min(15px,100vw*(15/750));
    width: 100%;
    height: min(110px,100vw*(110/750));
    padding: 0 min(20px,100vw*(20/750));
}
#header-logo{
    width: min(130px,100vw*(130/750));
}
.header-tel{
    margin-left: auto;
}
.header-tel a{
    color: var(--blue);
    font-family: Arial, Helvetica, sans-serif;
    font-size: min(33px,100vw*(33/750));
    font-weight: bold;
    text-decoration: none;
}
.header-contact{
    width: max-content;
}
.header-contact a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(230px,100vw*(230/750));
    height: min(50px,100vw*(50/750));
    border: min(3px,100vw*(3/750)) solid var(--red);
    border-radius: min(50px,100vw*(50/750));
    color: var(--red);
    font-size: min(20px,100vw*(20/750));
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}
@media (min-width: 769px){
    #header{
        border-bottom: min(6px,100vw*(6/1200)) solid var(--blue);
        position: sticky;
    }
    #header .inner{
        max-width: 1080px;
        margin: auto;
        height: min(100px,100vw*(100/1200));
        padding: 0 min(20px,100vw*(20/1200));
    }
    #header-logo{
        width: min(117px,100vw*(117/1200));
    }
    .header-tel a{
        font-size: min(33px,100vw*(33/1200));
    }
    .header-contact a{
        width: min(260px,100vw*(260/1200));
        height: min(50px,100vw*(50/1200));
        font-size: min(20px,100vw*(20/1200));
        border: min(3px,100vw*(3/1200)) solid var(--red);
        border-radius: min(50px,100vw*(50/1200));
        transition: 0.5s ease;
    }
    .header-contact a:hover{
        background: var(--red);
        color: #fff;
    }

}

#footer{
    background: #245B80;
}
#footer .inner{
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: min(50px,100vw*(50/750));
    row-gap: min(50px,100vw*(50/750));
    width: min(650px,100vw*(650/750));
    margin: auto;
    padding-top: min(70px,100vw*(70/750));
    margin-bottom: min(40px,100vw*(40/750));
    color: #fff;
    font-size: min(22px,100vw*(22/750));
}
.footer-logo{
    width: min(150px,100vw*(150/750));
}
.footer-group .add{
    margin-top: 1.0em;
    padding-left: 2.5em;
    text-indent: -2.5em;
}
.footer-group ul li a{
    color: #fff;
    text-decoration: none;
}
.footer-group ul li a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}
.footer-link{
    grid-column: span 2;
    border-top: 1px solid #fff;
    padding-top: min(20px,100vw*(20/750));
}
.footer-link ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: min(70px,100vw*(70/750));
}
.footer-link ul li a{
    color: #fff;
    font-size: min(18px,100vw*(18/750));
    text-decoration: none;
}
.footer-link ul li a:after{
    content: "";
    display: inline-block;
    width: min(20px,100vw*(20/750));
    height: min(18px,100vw*(18/750));
    margin-left: 0.5em;
    background: url(../img/blank.svg) no-repeat center/contain;
    transform: translateY(5%);
}
copyright{
    display: block;
    width: 100%;
    padding: 1.0em;
    color: #fff;
    font-size: min(18px,100vw*(18/750));
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
@media (min-width: 769px){
    #footer > .inner{
        grid-template-columns: max-content 1fr max-content;
        column-gap: min(50px,100vw*(50/1200));
        row-gap: min(50px,100vw*(50/1200));
        width: 90%;
        max-width: 1000px;
        padding-top: min(70px,100vw*(70/1200));
        margin-bottom: min(40px,100vw*(40/1200));
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
    }
    .footer-logo{
        width: min(150px,100vw*(150/1200));
    }
    .footer-group .add{
        margin-top: 1.5em;
    }
    .footer-link{
        grid-column: inherit;
        border-left: 1px solid #fff;
        border-top: none;
        padding-top: 0;
        padding-left: min(50px,100vw*(50/1200));
        padding-right: min(40px,100vw*(40/1200));
    }
    .footer-link ul{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: min(16px,100vw*(16/1200));
    }
    .footer-link ul li a{
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
    }
    .footer-link ul li a:after{
        width: min(20px,100vw*(20/1200));
        height: min(18px,100vw*(18/1200));
    }
    copyright{
        font-size: min(16px,100vw*(16/960));
        font-size: 1.6rem;
    }
}

#kv{
    display: flex;
    justify-content: center;
    background: linear-gradient(to top, rgba(125,204,243,1) 0%, rgba(125,204,243,0.2) 100%);
}
@media (min-width: 769px){
    #kv{
        background: linear-gradient(to right,  rgba(125,204,243,0.2) 0%,rgba(125,204,243,0.2) 50%,rgba(125,204,243,1) 51%,rgba(125,204,243,1) 100%);
    }
    #kv picture{
        height: min(540px,100vw*(540/1200));
    }
    #kv img{
        width: auto;
        height: 100%;
        object-fit: cover;
    }
}

.guidance-title{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    width: 100%;
    height: min(230px,100vw*(230/750));
    margin-bottom: min(60px,100vw*(60/750));
    position: relative;
}
.guidance-title img{
    display: inline-block;
    width: min(450px,100vw*(450/750));
}
.guidance-title:after{
    content: "";
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: var(--gray);
    width: min(192px,100vw*(192/750));
    height: min(60px,100vw*(60/750));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,99%);
}
.guidance-problem .inner{
    padding-top: min(16px,100vw*(16/750));
    padding-bottom: min(36px,100vw*(36/750));
}
.guidance-problem h3{
    width: max-content;
    margin: 0 auto min(30px,100vw*(30/750));
    padding-bottom: 0.2em;
    font-size: min(45px,100vw*(45/750));
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    border-bottom: 3px solid #000;
}
.guidance-problem h3 b{
    font-size: min(60px,100vw*(60/750));
    font-weight: 700;
}
.guidance-problem-image{
    display: flex;
    justify-content: center;
}
.guidance-features{
    background: var(--gray);
    padding-bottom: min(60px,100vw*(60/750));
}
.guidance-features h3{
    background: var(--blue);
    width: min(650px,100vw*(650/750));
    margin: 0 auto min(86px,100vw*(86/750));
    padding: 0.5em;
    border-bottom-left-radius: min(20px,100vw*(20/750));
    border-bottom-right-radius: min(20px,100vw*(20/750));
    color: #fff;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    line-height: calc(44/34);
    text-align: center;
}
.guidance-features h3 small{
    margin-left: 0.5em;
    font-weight: 400;
    font-size: min(24px,100vw*(24/750));
}
.guidance-features h3 img{
    display: inline-block;
    width: auto;
    height: min(53px,100vw*(53/750));
}
.guidance-features-column{
    width: min(650px,100vw*(650/750));
    margin: 0 auto;
    padding: min(20px,100vw*(20/750));
    border-radius: min(10px,100vw*(10/750));
    background-color: #fff;
    position: relative;
    z-index: 0;
}
.guidance-features-column:not(:nth-of-type(3)){
    margin-bottom: min(70px,100vw*(70/750));
}
.guidance-features-column .inner:before{
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(90px,100vw*(90/750));
    height: min(70px,100vw*(70/750));
    position: absolute;
    top: max(-70px,-100vw*(70/750));
    left: min(34px,100vw*(34/750));
    z-index: 1;
}
.guidance-features-column:nth-of-type(1) .inner:before{
    background: url("../img/num1.png") no-repeat center top/cover;
}
.guidance-features-column:nth-of-type(2) .inner:before{
    background: url("../img/num2.png") no-repeat center top/cover;
}
.guidance-features-column:nth-of-type(3) .inner:before{
    background: url("../img/num3.png") no-repeat center top/cover;
}
.guidance-features-column .inner{
    padding: min(28px,100vw*(28/750));
    background-color: #fff;
    border: 2px solid var(--blue);
    border-radius: min(10px,100vw*(10/750));
    font-size: min(26px,100vw*(26/750));
    line-height: calc(44/26);
    position: relative;
    z-index: 0;
}
.guidance-features-column h4{
    width: 100%;
    margin-bottom: 0.5em;
    padding-bottom: 0.2em;
    color: #C81400;
    font-size: min(40px,100vw*(40/750));
    font-weight: 700;
    line-height: calc(69/40);
    text-align: center;
    border-bottom: 2px solid var(--blue);
}
.guidance-features-column figure img{
    width: auto;
    height: 100%;
}
.guidance-because{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(550px,100vw*(550/750));
    height: min(200px,100vw*(200/750));
    margin: auto;
    background: url("../img/guidance-because.png") no-repeat center/cover;
    font-size: min(53px,100vw*(53/750));
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
.guidance-merit{
    width: min(650px,100vw*(650/750));
    margin: 0 auto min(60px,100vw*(60/750));
    padding: min(50px,100vw*(50/750));
    border-radius: min(20px,100vw*(20/750));
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
    position: relative;
    z-index: 0;
    font-size: min(36px,100vw*(36/750));
    font-weight: 600;
    text-align: center;
}
.guidance-merit ul{
    display: grid;
    gap: min(30px,100vw*(30/750));
    justify-content: center;
    margin-bottom: min(30px,100vw*(30/750));
}
.guidance-merit ul li{
    width: min(330px,100vw*(330/750));
}
.guidance-merit b{
    color: var(--blue);
    font-size: min(50px,100vw*(50/750));
    font-weight: 700;
}
.guidance-merit span{
    position: relative;
    z-index: 0;
}
.guidance-merit span:after{
    content: "";
    width: 100%;
    border-bottom: min(9px,100vw*(9/750)) solid var(--yellow);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media (max-width: 768px){
    .guidance-features-column figure{
        position: absolute;
        bottom: 0;
        right: min(26px,100vw*(26/750));
    }
    .guidance-features-column:nth-of-type(1) .inner{
        padding-bottom: min(120px,100vw*(120/750)); 
    }
    .guidance-features-column:nth-of-type(2) .inner{
        padding-bottom: min(150px,100vw*(150/750)); 
    }
    .guidance-features-column:nth-of-type(3) .inner{
        padding-bottom: min(154px,100vw*(154/750)); 
    }
    .guidance-features-column:nth-of-type(1) figure{
        height: min(160px,100vw*(160/750)); 
    }
    .guidance-features-column:nth-of-type(2) figure{
        height: min(150px,100vw*(150/750)); 
    }
    .guidance-features-column:nth-of-type(3) figure{
        height: min(154px,100vw*(154/750)); 
    }
}
@media (min-width: 769px){
    .guidance-title{
        height: min(260px,100vw*(260/1200));
        margin-bottom: 0;
    }
    .guidance-title img{
        width: min(504px,100vw*(504/1200));
    }
    .guidance-title:after{
        width: min(200px,100vw*(200/1200));
        height: min(63px,100vw*(63/1200));
    }
    .guidance-problem{
        background: url("../img/bg-dot.png") repeat center;
    }
    .guidance-problem .inner{
        max-width: 1000px;
        margin: auto;
        padding-top: min(16px,100vw*(16/1200));
        padding-bottom: min(36px,100vw*(36/1200));
        background: #fff;
    }
    .guidance-problem h3{
        margin: min(63px,100vw*(63/1200)) auto min(40px,100vw*(40/1200));
        font-size: min(33px,100vw*(33/1200));
    }
    .guidance-problem h3 b{
        font-size: min(48px,100vw*(48/1200));
    }
    .guidance-problem-image{
        width: 94%;
        margin: auto;
    }
    .guidance-features > .inner{
        width: 96%;
        max-width: 1000px;
        margin: auto;
    }
    .guidance-features h3{
        width: 100%;
        margin: 0 auto min(86px,100vw*(86/1200));
        padding: 0.5em 0 1.0em;
        font-size: min(30px,100vw*(30/1200));
        line-height: calc(50/30);
        border-bottom-left-radius: min(20px,100vw*(20/1200));
        border-bottom-right-radius: min(20px,100vw*(20/1200));
    }
    .guidance-features h3 small{
        font-size: min(24px,100vw*(24/1200));
    }
    .guidance-features h3 img{
        height: min(47px,100vw*(47/1200));
    }
    .guidance-features-column{
        width: 100%;
        padding: min(20px,100vw*(20/1200));
        border-radius: min(10px,100vw*(10/1200));
    }
    .guidance-features-column:not(:nth-of-type(3)){
        margin-bottom: min(70px,100vw*(70/1200));
    }
    .guidance-features-column .inner:before{
        width: min(90px,100vw*(90/1200));
        height: min(70px,100vw*(70/1200));
        top: max(-70px,-100vw*(70/1200));
        left: min(34px,100vw*(34/1200));
    }
    .guidance-features-column .inner{
        display: flex;
        gap: min(30px,100vw*(30/1200));
        padding: min(20px,100vw*(20/1200)) min(28px,100vw*(28/1200));
        border-radius: min(10px,100vw*(10/1200));
        font-size: min(17px,100vw*(17/960));
        font-size: 1.7rem;
    }
    .guidance-features-column h4{
        display: flex;
        align-items: center;
        flex: none;
        order: 1;
        width: min(270px,100vw*(270/1200)); 
        margin-bottom: 0;
        padding-bottom: 0;
        font-size: min(28px,100vw*(28/1200));
        text-align: left;
        border-bottom: none;
        border-right: 1px solid var(--blue);
    }
    .guidance-features-column div{
        order: 2;
    }
    .guidance-features-column figure{
        order: 3;
        flex: none;
        align-self: flex-end;
        transform: translateY(min(21px,100vw*(21/1200)));
    }
    .guidance-features-column figure img{
        width: auto;
        height: 100%;
    }
    .guidance-features-column:nth-of-type(1) figure{
        height: min(160px,100vw*(160/1200)); 
    }
    .guidance-features-column:nth-of-type(2) figure{
        height: min(150px,100vw*(150/1200)); 
    }
    .guidance-features-column:nth-of-type(3) figure{
        height: min(154px,100vw*(154/1200)); 
    }
    .guidance-because{
        width: min(550px,100vw*(550/1200));
        height: min(160px,100vw*(160/1200));
        font-size: min(50px,100vw*(50/1200));
    }
    .guidance-merit{
        width: 100%;
        margin: 0 auto min(60px,100vw*(60/1200));
        padding: min(40px,100vw*(40/1200));
        border-radius: min(20px,100vw*(20/1200));
        font-size: min(34px,100vw*(34/1200));
    }
    .guidance-merit ul{
        display: flex;
        gap: min(35px,100vw*(35/1200));
        margin-bottom: min(30px,100vw*(30/1200));
    }
    .guidance-merit ul li{
        width: min(270px,100vw*(270/1200));
    }
    .guidance-merit b{
        font-size: min(45px,100vw*(45/1200));
    }
    .guidance-merit span:after{
        border-bottom: 9px solid var(--yellow);
    }
}

#service{
    margin-top: min(30px,100vw*(30/750));
    background: var(--gray);
}
.service-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(650px,100vw*(650/750));
    height: min(130px,100vw*(130/750));
    margin: 0 auto min(40px,100vw*(40/750));
    background: var(--blue);
    border-bottom-left-radius: min(20px,100vw*(20/750));
    border-bottom-right-radius: min(20px,100vw*(20/750));
    color: #fff;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    text-align: center;
    line-height: calc(44/34);
    position: relative;
    z-index: 0;
}
.service-title:before{
    content :"";
    display: block;
    width: min(130px,100vw*(130/750));
    height: min(72px,100vw*(72/750));
    background: url("../img/fukidashi.png") no-repeat center/contain;
    position: absolute;
    top: max(-20px,-100vw*(20/750));
    left: max(-30px,-100vw*(30/750));
    z-index: 1;
}
.service-wrap{
    width: min(650px,100vw*(650/750));
    margin: 0 auto min(80px,100vw*(80/750));
    padding-bottom: min(20px,100vw*(20/750));
    background: #fff;
    border-radius: min(20px,100vw*(20/750));
    position: relative;
    z-index: 0;
}
.service-wrap:after{
    content: "";
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: #fff;
    width: min(192px,100vw*(192/750));
    height: min(60px,100vw*(60/750));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,99%);
}
.service-wrap h3{
    width: max-content;
    margin: 0 auto 0.75em;
    padding: 0;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    text-align: center;
    line-height: calc(44/34);
    text-align: center;
    position: relative;
    z-index: 0;
}
.service-wrap h3:after{
    content:"";
    display: block;
    width: 100%;
    border-bottom: min(9px,100vw*(9/750)) solid var(--yellow);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.service-two-company{
    padding: min(16px,100vw*(16/750));
    border-radius: min(20px,100vw*(20/750));
    border: min(4px,100vw*(4/750)) solid var(--blue);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}
.service-three-company{
    width: min(610px,100vw*(610/750));
    margin: min(40px,100vw*(40/750)) auto 0;
    padding: min(16px,100vw*(16/750));
    border-radius: min(20px,100vw*(20/750));
    border: min(2px,100vw*(2/750)) solid #595757;
}
.service-factoring-wrap{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: min(10px,100vw*(10/750));
    margin-top: min(40px,100vw*(40/750));
}
.service-factoring-column{
    padding: 0 min(30px,100vw*(30/750)) min(20px,100vw*(20/750));
    border-radius: min(15px,100vw*(15/750));  
    border-style: solid;
    font-size: min(22px,100vw*(22/750));
    font-weight: 600;
    line-height: calc(32/22);
}
.service-two-company .service-factoring-column{
    border-color: var(--blue);
    border-width: 2px;
}
.service-three-company .service-factoring-column{
    border-color: #595757;
    border-width: 1px;
}
.service-factoring-column h4{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(45px,100vw*(45/750));
    margin-bottom: min(20px,100vw*(20/750));
    color: #fff;
    font-size: min(26px,100vw*(26/750));
    font-weight: 600;
    line-height: 1;
    transform: translateY(-1px);
}
.service-two-company h4{
    background: var(--blue);
}
.service-three-company h4 {
    background: #595757;
}
.service-factoring-column b{
    color: #C81400;
    font-size: min(26px,100vw*(26/750));
    font-weight: 600;
    line-height: calc(40/26);
    white-space: nowrap;
}
.service-guide{
    width: min(650px,100vw*(650/750));
    margin: 0 auto min(60px,100vw*(60/750));
    padding: min(35px,100vw*(35/750)) min(16px,100vw*(16/750));
    background: #fff;
    border-radius: min(20px,100vw*(20/750));
    border: min(4px,100vw*(4/750)) solid var(--blue);
    color: var(--blue);
    font-size: min(28px,100vw*(28/750));
    font-weight: 700;
    line-height: calc(46/28);
    text-align: center;
}
.service-guide-border{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(566px,100vw*(566/750));
    height: min(55px,100vw*(55/750));
    margin: 0.75em auto 0;
    border: 1px solid #595757;
    color: #000;
    font-weight: 300;
}
.service-factoring{
    display: grid;
    grid-template-columns: min(60px,100vw*(60/750)) 1fr;
    row-gap: min(10px,100vw*(10/750));
    column-gap: min(30px,100vw*(30/750));
    align-items: center;
    width: 100%;
    background: var(--blue);
    padding: min(16px,100vw*(16/750)) min(30px,100vw*(30/750));
    color: #fff;
    font-size: min(22px,100vw*(22/750));
    font-weight: 500;
    line-height: calc(34/22);
    text-align: left;
}
.service-factoring:before{
    content: "";
    display: block;
    width: min(60px,100vw*(60/750));
    height: min(60px,100vw*(60/750));
    background: url("../img/ex.png") no-repeat center/contain;
    grid-row: span 2;
}
.service-factoring h3{
    font-size: min(30px,100vw*(30/750));
    font-weight: 700;
    line-height: calc(56/30);
    text-align: left;
}
.service-factoring h3 img{
    display: inline-block;
    width: auto;
    height: min(48px,100vw*(48/750));
    margin-right: 0.25em;
    vertical-align: text-bottom;
}
.service-factoring b{
    color: var(--yellow);
    font-size: min(28px,100vw*(28/750));
    font-weight: 700;
    text-decoration: underline;
}
@media (min-width: 769px){
    #service{
        margin-top: min(30px,100vw*(30/1200));
    }
    #service > .inner{
        width: 96%;
        max-width: 1000px;
        margin: auto;
    }
    .service-title{
        width: 100%;
        height: min(100px,100vw*(100/1200));
        margin: 0 auto min(40px,100vw*(40/1200));
        border-bottom-left-radius: min(20px,100vw*(20/1200));
        border-bottom-right-radius: min(20px,100vw*(20/1200));
        font-size: min(30px,100vw*(30/1200));
    }
    .service-title:before{
        width: min(150px,100vw*(150/1200));
        height: min(80px,100vw*(80/1200));
        top: max(-20px,-100vw*(20/1200));
        left: min(30px,100vw*(30/1200));
    }
    .service-wrap{
        width: 100%;
        margin: 0 auto min(80px,100vw*(80/1200));
        padding-bottom: min(20px,100vw*(20/1200));
        border-radius: min(20px,100vw*(20/1200));
    }
    .service-wrap:after{
        width: min(200px,100vw*(200/1200));
        height: min(63px,100vw*(63/1200));
    }
    .service-wrap h3{
        font-size: min(30px,100vw*(30/1200));
    }
    .service-wrap h3:after{
        border-bottom: 9px solid var(--yellow);
    }
    .service-two-company{
        padding: min(25px,100vw*(25/1200));
        border-radius: min(20px,100vw*(20/1200));
        border: min(4px,100vw*(4/1200)) solid var(--blue);
    }
    .service-three-company{
        width: 96%;
        margin: min(40px,100vw*(40/1200)) auto 0;
        padding: min(25px,100vw*(25/1200));
        border-radius: min(20px,100vw*(20/1200));
        border: 1px solid #595757;
    }
    .service-factoring-wrap{
        gap: min(10px,100vw*(10/1200));
        margin-top: min(40px,100vw*(40/1200));
    }
    .service-two-company .service-factoring-wrap{
        margin-top: min(55px,100vw*(55/1200));
    }
    .service-factoring-column{
        padding: 0 min(30px,100vw*(30/1200)) min(20px,100vw*(20/1200));
        border-radius: min(15px,100vw*(15/1200));
        font-size: min(20px,100vw*(20/1200));
    }
    .service-factoring-column h4{
        height: min(45px,100vw*(45/1200));
        margin-bottom: min(20px,100vw*(20/1200));
        font-size: min(26px,100vw*(26/1200));
    }
    .service-factoring-column b{
        font-size: min(24px,100vw*(24/1200));
    }
    .service-guide{
        width: 100%;
        margin: 0 auto min(60px,100vw*(60/1200));
        padding: min(35px,100vw*(35/1200)) min(16px,100vw*(16/1200));
        border-radius: min(20px,100vw*(20/1200));
        border: min(4px,100vw*(4/1200)) solid var(--blue);
        font-size: min(32px,100vw*(32/1200));
    }
    .service-guide-border{
        width: min(566px,100vw*(566/1200));
        height: min(55px,100vw*(55/1200));
        font-size: min(28px,100vw*(28/1200));
    }
    .service-factoring{
        grid-template-columns: min(60px,100vw*(60/1200)) max-content;
        row-gap: min(10px,100vw*(10/1200));
        column-gap: min(30px,100vw*(30/1200));
        justify-content: center;
        padding: min(45px,100vw*(45/1200)) 0;
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
        line-height: calc(36/18);
    }
    .service-factoring:before{
        width: min(60px,100vw*(60/1200));
        height: min(60px,100vw*(60/1200));
    }
    .service-factoring h3{
        font-size: min(30px,100vw*(30/1200));
    }
    .service-factoring h3 img{
        height: min(48px,100vw*(48/1200));
    }
    .service-factoring b{
        font-size: min(24px,100vw*(24/1200));
        line-height: calc(36/24);
    }
}

#faq{
    background: url("../img/bg-dot.png") repeat center;
}
#faq .inner{
    width: min(650px,100vw*(650/750));
    margin: 0 auto;
    padding-top: min(58px,100vw*(58/750));
    padding-bottom: min(60px,100vw*(60/750));
    background: #fff;
}
.faq-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: min(150px,100vw*(150/750));
    margin-top: min(80px,100vw*(80/750));
    margin-bottom: min(40px,100vw*(40/750));;
    background: var(--blue);
    border-bottom-left-radius: min(20px,100vw*(20/750));
    border-bottom-right-radius: min(20px,100vw*(20/750));
    color: #fff;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    line-height: calc(44/34);
    text-align: center;
}
.faq-title img{
    width: auto;
    height: min(47px,100vw*(47/750));
}
.faq-column{
    width: min(610px,100vw*(610/750));
    margin: auto;
    padding: min(40px,100vw*(40/750)) min(28px,100vw*(28/750)) 0;
    border-radius: min(10px,100vw*(10/750));
    border: 2px solid var(--blue);
}
.faq-column:not(:last-child){
    margin-bottom: min(30px,100vw*(30/750));
}
.faq-column h3,
.faq-column h3+p{
    display: flex;
    gap: 1.0em;
    margin-bottom: 1.0em;
    font-size: min(32px,100vw*(32/750));
    font-weight: 600;
    line-height: calc(48/32);
}
.faq-column h3{
    color: var(--blue);
}
.faq-column h3:before{
    content: "Q.";
}
.faq-column h3+p{
    color: #C81400;
}
.faq-column h3+p:before{
    content: "A.";
}
.faq-column .toggle{
    padding-left: 2.5em;
    padding-bottom: min(30px,100vw*(30/750));
    overflow: hidden;
    display: none;
}
.faq-column .toggle.active{
    height: auto;
    padding-bottom: min(30px,100vw*(30/750));
}
:where(.faq-column .toggle){
    font-size: min(22px,100vw*(22/750));
    font-weight: 400;
    line-height: calc(36/22);
}
:where(.faq-column .toggle p:not(:first-child)){
    margin-top: 1.0em;
}
.faq-column .toggle li{
    padding-left: 1.1em;
    text-indent: -1.1em;
}
.btn-detail{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(220px,100vw*(220/750));
    height: min(49px,100vw*(49/750));
    margin: auto;
    border-top-left-radius: min(10px,100vw*(10/750));
    border-top-right-radius: min(10px,100vw*(10/750));
    background: var(--blue);
    color: #fff;
    font-size: min(27px,100vw*(27/750));
    font-weight: 600;
    line-height: calc(32/27);
    clear: both;
    cursor: pointer;
    border-bottom: 1px solid var(--blue);
    transform: translateY(1px);
}
.text-right{
    text-align: right;
}
.faq-terms{
    margin-top: 0.5em;
    color: var(--blue);
    font-size: min(22px,100vw*(22/750));
    font-weight: 700;
}
.faq-sup{
    margin-top: min(30px,100vw*(30/750));
    margin-left: calc(-2.5em + 2px);
    padding: 0.25em 0.5em 0.5em;
    border: 1px solid #595757;
}
#customer-voice{
    margin-top: min(80px,100vw*(80/750));
}
.voice-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(150px,100vw*(150/750));
    margin-bottom: min(40px,100vw*(40/750));
    background: var(--green);
    border-bottom-left-radius: min(30px,100vw*(30/750));
    border-bottom-right-radius: min(30px,100vw*(30/750));
    color: #fff;
    font-size: min(44px,100vw*(44/750));
    font-weight: 600;
    line-height: 1;
}
.voice-list{
    width: min(610px,100vw*(610/750));
    margin: 0 auto min(60px,100vw*(60/750));
}
.voice-list li{
    display: flex;
    gap: min(30px,100vw*(30/750));
    padding: 1.0em;
    border-radius: min(10px,100vw*(10/750));
    border: 1px solid var(--green);
    font-size: min(26px,100vw*(26/750));
    font-weight: 400;
    line-height: calc(46/26);
}
.voice-list li:not(:last-child){
    margin-bottom: min(30px,100vw*(30/750));
}
.voice-list li:before{
    content: "";
    display: block;
    flex: none;
    width: min(90px,100vw*(90/750));
    height: min(90px,100vw*(90/750));
    background: url("../img/voice.png") no-repeat center/contain;
}
@media (min-width: 769px){
    #faq > .inner{
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: min(58px,100vw*(58/1200));
        padding-bottom: min(80px,100vw*(80/1200));
    }
    .faq-title{
        height: min(150px,100vw*(150/1200));
        margin-top: min(68px,100vw*(68/1200));
        margin-bottom: min(30px,100vw*(30/1200));
        border-bottom-left-radius: min(20px,100vw*(20/1200));
        border-bottom-right-radius: min(20px,100vw*(20/1200));
        font-size: min(40px,100vw*(40/1200));
    }
    .faq-title img{
        height: min(47px,100vw*(47/1200));
    }
    .faq-column{
        width: 94%;
        padding: min(40px,100vw*(40/1200)) min(28px,100vw*(28/1200)) 0;
        border-radius: min(14px,100vw*(14/1200));
    }
    .faq-column:not(:last-child){
        margin-bottom: min(30px,100vw*(30/1200));
    }
    .faq-column h3,
    .faq-column h3+p{
        font-size: min(28px,100vw*(28/1200));
    }
    .faq-column .toggle{
        padding-left: 3.5em;
        padding-bottom: min(30px,100vw*(30/1200));
    }
    .faq-column .toggle.active{
        padding-bottom: min(30px,100vw*(30/1200));
    }
    :where(.faq-column .toggle){
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
    }
    .btn-detail{
        width: min(166px,100vw*(166/1200));
        height: min(35px,100vw*(35/1200));
        border-top-left-radius: min(10px,100vw*(10/1200));
        border-top-right-radius: min(10px,100vw*(10/1200));
        font-size: min(20px,100vw*(20/1200));
        transition: 0.5s ease;
    }
    .btn-detail:hover{
        opacity: 0.7;
    }
    .faq-terms{
        font-size: min(24px,100vw*(24/1200));
        font-weight: 700;
    }
    .faq-sup{
        width: min(760px,100vw*(760/1200));
        margin-top: min(30px,100vw*(30/1200));
        margin-left: 0;
        padding: 0.5em 1.0em 0.5em;
        font-size: min(22px,100vw*(22/960));
        font-size: 2.2rem;
    }

    #customer-voice{
        margin-top: min(100px,100vw*(100/1200));
    }
    .voice-title{
        height: min(100px,100vw*(100/1200));
        margin-bottom: min(30px,100vw*(30/1200));
        border-bottom-left-radius: min(20px,100vw*(20/1200));
        border-bottom-right-radius: min(20px,100vw*(20/1200));
        font-size: min(40px,100vw*(40/1200));
    }
    .voice-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: min(40px,100vw*(40/1200));
        width: 94%;
        margin: 0 auto min(60px,100vw*(60/1200));
    }
    .voice-list li{
        gap: min(30px,100vw*(30/1200));
        border-radius: min(14px,100vw*(14/1200));
        border: 2px solid var(--green);
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
        line-height: calc(28/18);
    }
    .voice-list li:not(:last-child){
        margin-bottom: 0;
    }
    .voice-list li:before{
        width: min(90px,100vw*(90/1200));
        height: min(90px,100vw*(90/1200));
    }
}

#strong-point{
    padding-bottom: min(60px,100vw*(60/750));
    background: var(--gray);
}
.point-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(300px,100vw*(300/750));
    margin-bottom: min(80px,100vw*(80/750));
    background: var(--blue);
    color: #fff;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    line-height: calc(44/34);
    text-align: center;
    position: relative;
    z-index: 0;
}
.point-title:after{
    content: "";
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: var(--blue);
    width: min(192px,100vw*(192/750));
    height: min(60px,100vw*(60/750));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,99%);
}
.point-title b{
    color: var(--yellow);
    font-size: min(44px,100vw*(44/750));
}
.point-title img{
    display: inline-block;
    width: auto;
    height: min(48px,100vw*(48/750));
    margin-right: 0.25em;
    vertical-align: text-bottom;
}
.point-column{
    width: min(650px,100vw*(650/750));
    margin: 0 auto min(40px,100vw*(40/750));
    padding: min(20px,100vw*(20/750));
    border-radius: min(10px,100vw*(10/750));
    background-color: #fff;
    position: relative;
    z-index: 0;
}
.point-column:nth-of-type(2){
    margin-bottom: min(60px,100vw*(60/750));
}
.point-column .inner{
    padding: 0 min(28px,100vw*(28/750)) min(28px,100vw*(28/750));
    background-color: #fff;
    border: 2px solid var(--blue);
    border-radius: min(10px,100vw*(10/750));
    font-size: min(26px,100vw*(26/750));
    line-height: calc(44/26);
    position: relative;
    z-index: 0;
}
.different-point{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(200px,100vw*(200/750));
    margin-bottom: min(40px,100vw*(40/750));
    padding-top: 0.5em;
    background: var(--blue);
    border-bottom-left-radius: min(10px,100vw*(10/750));
    border-bottom-right-radius: min(10px,100vw*(10/750));
    color: var(--yellow);
    font-size: min(36px,100vw*(36/750));
    font-weight: 700;
    line-height: calc(52/36);
    text-align: center;
    position: relative;
    z-index: 0;
}
.different-point:before{
    content: "";
    width: min(150px,100vw*(150/750));
    height: min(95px,100vw*(95/750));
    background: url("../img/fukidashi2.png") no-repeat center/contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-30%);
}
.point-column h3{
    margin-top: -1px;
    margin-bottom: 0.5em;
    color: #C81400;
    font-size: min(32px,100vw*(32/750));
    font-weight: 600;
    line-height: calc(48/32);
    text-align: center;
}
.point-column small{
    display: inline-block;
    margin-top: 0.5em;
    line-height: 1.5;
}
@media (min-width: 769px){
    #strong-point{
        padding-bottom: min(80px,100vw*(80/1200));
    }
    #strong-point > .inner{
        width: 96%;
        max-width: 1000px;
        margin: auto;
        padding-bottom: min(40px,100vw*(40/1200));
    }
    .point-title{
        height: min(220px,100vw*(220/1200));
        margin-bottom: min(80px,100vw*(80/1200));
        font-size: min(30px,100vw*(30/1200));
    }
    .point-title:after{
        width: min(200px,100vw*(200/1200));
        height: min(63px,100vw*(63/1200));
    }
    .point-title b{
        font-size: min(40px,100vw*(40/750));
    }
    .point-title img{
        height: min(48px,100vw*(48/1200));
        margin-left: 0.25em;
    }
    .point-column{
        width: 100%;
        margin: 0 auto min(40px,100vw*(40/1200));
        padding: min(20px,100vw*(20/1200));
        border-radius: min(10px,100vw*(10/1200));
    }
    .point-column:nth-of-type(2){
        margin-bottom: min(30px,100vw*(30/1200));
    }
    .point-column .inner{
        display: grid;
        grid-template-columns: min(320px,100vw*(320/1200)) 1fr;
        column-gap: min(28px,100vw*(28/1200));
        padding: min(28px,100vw*(28/1200)) min(28px,100vw*(28/1200)) min(28px,100vw*(28/1200)) 0;
        border-radius: min(10px,100vw*(10/1200));
        font-size: min(20px,100vw*(20/960));
        font-size: 2.0rem;
    }
    .different-point{
        grid-row: span 3;
        width: auto;
        height: auto;
        margin-bottom: 0;
        font-size: min(28px,100vw*(28/1200));
        border-top-right-radius: min(10px,100vw*(10/1200));
        border-bottom-right-radius: min(10px,100vw*(10/1200));
        border-bottom-left-radius: 0;
    }
    .different-point:before{
        width: min(150px,100vw*(150/1200));
        height: min(95px,100vw*(95/1200));
        transform: translate(-50%,-50%);
    }
    .point-column h3{
        margin-top: 0;
        font-size: min(28px,100vw*(28/1200));
        text-align: left;
    }
}

#features{
    background: url(../img/bg-dot.png) repeat center;
}
#features > .inner{
    width: min(650px,100vw*(650/750));
    margin: 0 auto;
    padding-top: min(80px,100vw*(80/750));
    padding-bottom: min(60px,100vw*(60/750));
    background: #fff;
}
.features-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(200px,100vw*(200/750));
    margin: 0 auto ;
    background: var(--blue);
    color: #fff;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    line-height: calc(44/34);
    text-align: center;
    position: relative;
    z-index: 0;
}
.features-title:after{
    content: "";
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: var(--blue);
    width: min(192px,100vw*(192/750));
    height: min(60px,100vw*(60/750));
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,99%);
}
.features-title b{
    color: var(--yellow);
    font-size: min(44px,100vw*(44/750));
}
.features-title img{
    display: inline-block;
    width: auto;
    height: min(48px,100vw*(48/750));
    margin-right: 0.25em;
    vertical-align: text-bottom;
}
.features-list{
    margin-bottom: min(60px,100vw*(60/750));
    padding: min(28px,100vw*(28/750));
    background-color: #fff;
    border: 2px solid var(--blue);
    border-radius: min(20px,100vw*(20/750));
    font-size: min(26px,100vw*(26/750));
    line-height: calc(44/26);
    position: relative;
    z-index: 0;
}
.features-list ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: min(20px,100vw*(20/750));
}
.features-list ul li{
    padding: 1.5em 0;
    background: #FFFFD0;
    border: min(6px,100vw*(6/750)) solid var(--blue);
    border-top-left-radius: min(20px,100vw*(20/750));
    border-bottom-right-radius: min(20px,100vw*(20/750));
    font-size: min(28px,100vw*(28/750));
    font-weight: 700;
    line-height: calc(38/28);
    text-align: center;
}
@media (min-width: 769px){
    #features > .inner{
        width: 96%;
        max-width: 1000px;
        margin: 0 auto;
        padding-top: min(80px,100vw*(80/1200));
        padding-bottom: min(80px,100vw*(80/1200));
    }
    .features-title{
        height: min(170px,100vw*(170/1200));
        font-size: min(30px,100vw*(30/1200));
    }
    .features-title:after{
        width: min(200px,100vw*(200/1200));
        height: min(63px,100vw*(63/1200));
    }
    .features-title b{
        font-size: min(40px,100vw*(40/1200));
    }
    .features-title img{
        height: min(48px,100vw*(48/1200));
    }
    .features-list{
        margin-bottom: min(60px,100vw*(60/1200));
        padding: min(28px,100vw*(28/1200));
        border-radius: min(20px,100vw*(20/1200));
        font-size: min(26px,100vw*(26/1200));
    }
    .features-list ul{
        grid-template-columns: repeat(3,1fr);
        column-gap: min(36px,100vw*(36/1200));
        row-gap: min(22px,100vw*(22/1200));
    }
    .features-list ul li{
        border: 6px solid var(--blue);
        border-top-left-radius: min(20px,100vw*(20/1200));
        border-bottom-right-radius: min(20px,100vw*(20/1200));
        font-size: min(28px,100vw*(28/1200));
    }
}

.flow-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(150px,100vw*(150/750));
    margin-bottom: min(50px,100vw*(50/750));
    background: var(--blue);
    border-bottom-left-radius: min(20px,100vw*(20/750));
    border-bottom-right-radius: min(20px,100vw*(20/750));
    color: #fff;
    font-size: min(34px,100vw*(34/750));
    font-weight: 700;
    line-height: calc(44/34);
    text-align: center;
    position: relative;
    z-index: 0;
}
.flow-title img{
    display: inline-block;
    width: auto;
    height: min(48px,100vw*(48/750));
    margin-right: 0.25em;
    vertical-align: text-bottom;
}
.flow-step{
    width: min(612px,100vw*(612/750));
    margin: auto;
    position: relative;
}
.flow-payment{
    display: grid;
    grid-template-columns: min(60px,100vw*(60/750)) 1fr;
    column-gap: min(30px,100vw*(30/750));
    align-items: center;
    width: 100%;
    background: var(--blue);
    padding: min(40px,100vw*(40/750)) min(30px,100vw*(30/750));
    color: #fff;
    font-size: min(22px,100vw*(22/750));
    font-weight: 500;
    line-height: calc(34/22);
    text-align: left;
}
.flow-payment:before{
    content: "";
    display: block;
    width: min(60px,100vw*(60/750));
    height: min(60px,100vw*(60/750));
    background: url(../img/ex.png) no-repeat center/contain;
    grid-row: span 2;
}
.flow-payment h3{
    margin-bottom: 0.25em;
    font-size: min(30px,100vw*(30/750));
    font-weight: 700;
    line-height: calc(44/30);
    text-align: left;
}
.flow-contact{
    display: block;
    width: min(300px,100vw*(300/750));
    height: min(180px,100vw*(180/750));
    position: absolute;
    top: min(22px,100vw*(22/750));
    right: 0;
}
@media (min-width: 769px){
    .flow-title{
        height: min(150px,100vw*(150/1200));
        margin-bottom: min(50px,100vw*(50/1200));
        border-bottom-left-radius: min(20px,100vw*(20/1200));
        border-bottom-right-radius: min(20px,100vw*(20/1200));
        font-size: min(40px,100vw*(40/1200));
    }
    .flow-title img{
        height: min(48px,100vw*(48/1200));
    }
    .flow-step{
        width: 89.4%;
        position: relative;
    }
    .flow-payment{
        grid-template-columns: min(60px,100vw*(60/1200)) max-content;
        column-gap: min(30px,100vw*(30/1200));
        justify-content: center;
        padding: min(40px,100vw*(40/1200)) 0;
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
    }
    .flow-payment:before{
        width: min(60px,100vw*(60/1200));
        height: min(60px,100vw*(60/1200));
    }
    .flow-payment h3{
        font-size: min(30px,100vw*(30/1200));
    }
    .flow-contact{
        display: block;
        width: min(440px,100vw*(440/1200));
        height: min(93px,100vw*(93/1200));
        position: absolute;
        top: min(18px,100vw*(18/1200));
        right: 0;
    }
}

#terms {
    background: url(../img/bg-dot.png) repeat center; 
}
#terms .inner{
    width: min(650px,100vw*(650/750));
    margin: 0 auto;
    padding-top: min(60px,100vw*(60/750));
    padding-bottom: min(90px,100vw*(90/750));
    background: #fff;
}
.terms-factoring{
    width: min(610px,100vw*(610/750));
    margin: min(60px,100vw*(60/750)) auto 0;
    padding: min(48px,100vw*(48/750)) min(20px,100vw*(20/750)) 0;
    border-top: 1px solid #000;
}
.terms-factoring-title{
    margin-bottom: 1.0em;
    font-size: min(30px,100vw*(30/750));
    font-weight: 600;
    line-height: calc(36/30);
    text-align: left;
}
.terms-factoring ul{
    font-size: min(22px,100vw*(22/750));
    font-weight: 400;
    line-height: calc(36/22);
    text-align: left;
}
.terms-factoring ul li{
    margin-bottom: 0.25em;
    padding-left: 1.25em;
    text-indent: -1.25em;
}
.terms-factoring ul li:before{
    content: "●";
    margin-right: 0.25em;
}
.terms-factoring ol{
    list-style-type: none;
    list-style-position: outside;
    counter-reset: my-counter;
    margin-left: -1.25em;
}
.terms-factoring ol li{
    padding-left: 1.25em;
    text-indent: 0;
    position: relative;
}
.terms-factoring ol li:before{
    content: "";
}
.terms-factoring ol li:before{
    content: counter(my-counter);
    counter-increment: my-counter;
    border: 1px solid #000;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: min(22px,100vw*(22/750));
    width: min(22px,100vw*(22/750));
    font-size: 85%;
    line-height: 1;
    position: absolute;
    top: 0.4em;
    left: 0;
}
@media (min-width: 769px){
    #terms .inner{
        width: 96%;
        max-width: 1000px;
        padding-top: min(60px,100vw*(60/1200));
        padding-bottom: min(90px,100vw*(90/1200));
    }
    .terms-factoring{
        width: 94%;
        margin: min(80px,100vw*(80/1200)) auto 0;
        padding: min(48px,100vw*(48/1200)) min(20px,100vw*(20/1200)) 0;
    }
    .terms-factoring-title{
        font-size: min(27px,100vw*(27/1200));
    }
    .terms-factoring ul{
        font-size: min(18px,100vw*(18/960));
        font-size: 1.8rem;
    }
    .terms-factoring ol li:before{
        height: min(18px,100vw*(18/1200));
        width: min(18px,100vw*(18/1200));
    }
}

/****************************
　　　　2026.3.23追記分
*****************************/

.point-column--custom .inner{
    display: block; /* grid無効化 */
}
.point-column--custom .point-top{
    display: flex;
    gap: min(28px,100vw*(28/1200));
}
.point-column--custom .different-point{
    flex-shrink: 0;
}
@media (min-width: 769px){
  .point-column--custom .different-point{
    width: min(320px,100vw*(320/1200));
  }
}
.point-column--custom .point-right{
    flex: 1;
}
.point-column--custom img{
  display: block;
  margin: 0 auto;
}
.point-column--custom .point-bottom{
    margin-top: min(28px,100vw*(28/1200));
	text-align: center;
}
@media (max-width: 768px){
  .point-column--custom .point-top{
    flex-direction: column;
  }
  .point-column--custom .different-point{
    width: 100%;
  }
  .point-column--custom .different-point:before {
    top: -15%;
}
}
@media (min-width: 768px) and (max-width: 1000px){
  .point-column--custom .point-bottom img{
    padding-left: 1.5%;
  }
}

