@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');
/*------------------------------------------------
common
------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
    font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-sans-serif;
    letter-spacing: 0.05em;
    overflow-x: hidden;
}
body{
    padding: 0;
    overflow-x: hidden;
}
a{
    cursor: pointer;
    text-decoration-line: none;
    text-decoration: none;
    transition: .3s;
}
a, a:hover, a:active {
    text-decoration-line: none;
    text-decoration: none;
}
img{
    width: 100%;
    height: auto;
}
li{
    list-style:none;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
}
p{
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_1200{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.inner_1000{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.inner_800{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* ----------------------------------------
color
---------------------------------------- */
:root{
    --navy: #191739;
    --blue:#1b5abb;
    --yellow:#cda715;
    --lightyellow:#f7fbd2;
    --lightnavy:#e5e7ec;
    --gray:#9c9c9b;
    --lightgray:#f8f8f8;
}

/* ----------------------------------------
FONT
---------------------------------------- */
.oswald{
    font-family: "Oswald", sans-serif;
}

/* ----------------------------------------
各セクション
---------------------------------------- */
[class*=_Wrap]{
    padding: 80px 0;
}
[class*=_Wrap] .Wrap_ttl{
    text-align: center;
}
[class*=_Wrap] .Wrap_ttl h2{
    color: #333;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
}
[class*=_Wrap] .Wrap_ttl .lead_txt{
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 20px;
}

/* ----------------------------------------
CTA
---------------------------------------- */
.cta_flex{
    margin: 50px auto 0;
}
.cta{
    position: relative;
    display: block;
    border: var(--blue) 1px solid;
    border-radius: 99px;
    padding: 20px 5px;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}
.cta_flex > .cta{
    width: 48%;
}
.cta.id_Btn{
    background: #fff;
    color: var(--blue);
}
.cta.id_Btn:hover{
    border-color: #fff;
    background: var(--blue);
    color: #fff;
}
.cta.entry_Btn{
    border-color: #fff;
    background: var(--blue);
    color: #fff;
}
.cta.entry_Btn:hover{
    border-color: var(--blue);
    background: var(--lightyellow);
    color: var(--blue);
}

/* --------------------------------
フェードイン
----------------------------------- */
.fadeIn{
	animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* --------------------------------
左から右に流れる動き
----------------------------------- */
.cubic{
	position: relative;
	animation: img-opacity 0.5s cubic-bezier(0.85, 0, 0.15, 1) forwards 0.5s;
	overflow: hidden;
	transition: all 0s ease 0s;
}
.cubic::after{
	content: "";
	animation: img-animation 0.5s cubic-bezier(0.85, 0, 0.15, 1) forwards 0.5s;
	background: #111;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	z-index: 1;
	transition: all 1s ease 0s;
}
@keyframes img-opacity {
	100% { opacity: 1;}
}
@keyframes img-animation {
	100% { transform: translateX(101%);}
}

/* ----------------------------------------
FV
---------------------------------------- */
.fv{
    position: relative;
}
.fv .fv_txt{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
}
.fv .fv_txt h1{
    max-width: 515px;
    transform-origin: top center;
    opacity: 0;
}
.fv .fv_txt h1.fadeIn{
    opacity: 1;
}
.fv .fv_txt .fv_copy{
    overflow: hidden;
    max-width: 638px;
    margin-top: 10px;
    transform-origin: top center;
    opacity: 0;
}
.fv .fv_txt .fv_copy.fadeIn{
    opacity: 1;
}
.fv .fv_txt .fv_merit{
    max-width: 482px;
    margin-top: 10px;
    transform-origin: top center;
    opacity: 0;
}
.fv .fv_txt .fv_merit.fadeIn{
    opacity: 1;
}
.fv .fv_cta{
    transform-origin: top center;
    opacity: 0;
}
.fv .fv_cta.fadeIn{
    opacity: 1;
}
.fv .fv_cta .cta_flex{
    margin: 20px auto 0;
}
.fv .fv_cta .cta_flex > .cta.id_Btn{
    width: 60%;
}
.fv .fv_cta .cta_flex > .cta.entry_Btn{
    width: 38%;
}
.fv .fv_cta > .cta.id_Btn{
    margin-top: 15px;
}
.fv .fv_img{
    position: relative;
    margin-left: auto;
    width: 70%;
    max-width: 900px;
    z-index: 1;
}
.fv .fv_img img{
    border-radius: 0 0 0 20px;
}

/* ----------------------------------------
MS Jobs フリーランスマッチングとは
---------------------------------------- */
.about_Wrap{
    position: relative;
}
.about_Wrap::before{
    position: absolute;
    content: "";
    border-color: transparent rgb(72, 177, 52, 0.1) transparent transparent;
    border-width: 100vh 35vw 0 0;
    border-style: solid;
    top: 0;
    right: 0;
    z-index: -1;
}
.about_Wrap::after{
    position: absolute;
    content: "";
    border-color: transparent rgb(72, 177, 52, 0.1) transparent transparent;
    border-width: 100vh 35vw 0 0;
    border-style: solid;
    top: -5vh;
    right: -15vw;
    z-index: -2;
}
.about_Wrap .about_List{
    margin-top: 30px;
}
.about_Wrap .about_List li{
    width: 48%;
    background: #fff;
    border: var(--gray) 1px solid;
    padding: 25px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.about_Wrap .about_List li h3{
    color: var(--blue);
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 400;
}
.about_Wrap .about_List li:first-child h3{
    margin-bottom: 20px;
}
.about_Wrap .about_List li h3 strong{
    font-size: 120%;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: var(--lightyellow);
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
}
.about_Wrap .about_List li figure{
    width: 40%;
    margin: 20px auto;
}
.about_Wrap .about_List li .txt{
    font-size: 1.6rem;
    line-height: 1.6;
    color: #555;
}
.about_Wrap .about_Box{
    border-top: var(--gray) 1px solid;
    border-bottom: var(--gray) 1px solid;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}
.about_Wrap .about_Box h3{
    font-size: 2.4rem;
    color: var(--blue);
    margin-bottom: 15px;
    font-weight: bold;
}
.about_Wrap .about_Box .txt{
    font-size: 1.6rem;
    line-height: 1.6;
}

/* ----------------------------------------
MS Jobs フリーランスマッチングのメリット
---------------------------------------- */
.merit_Wrap{
    position: relative;
    width: 100%;
    background: url(../img/freelance-merit_bg.jpg) center center no-repeat;
    background-size: cover;
}
.merit_Wrap .Wrap_ttl h2{
    color: #fff;
}
.merit_Wrap .merit_List{
    margin-top: 30px;
}
.merit_Wrap .merit_List li{
    text-align: center;
    width: calc((100% / 3) - 5%);
}
.merit_Wrap .merit_List li figure{
    background: rgba(255,255,255,0.9);
    width: 100%;
    border-radius: 50%;
}
.merit_Wrap .merit_List li figure span{
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
}
.merit_Wrap .merit_List li figure span img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
}
.merit_Wrap .merit_List li:nth-child(2) figure span img{
    width: 70%;
}
.merit_Wrap .merit_List li:nth-child(3) figure span img{
    width: 60%;
}
.merit_Wrap .merit_List li h3{
    font-size: 2rem;
    color: var(--lightyellow);
    margin: 10px 0 5px;
    letter-spacing: 0.05em;
}
.merit_Wrap .merit_List li .txt{
    font-size: 1.6rem;
    line-height: 1.6;
    color: #fff;
}

/* ----------------------------------------
こんな方におすすめ
---------------------------------------- */
.osusume_Wrap{
    position: relative;
}
.osusume_Wrap::before{
    position: absolute;
    content: "";
    border-color: transparent transparent transparent rgb(72, 177, 52, 0.1);
    border-width: 0 0 100vw 35vh;
    border-style: solid;
    top: 0;
    left: 0;
    z-index: -1;
}
.osusume_Wrap::after{
    position: absolute;
    content: "";
    border-color: transparent transparent transparent rgb(72, 177, 52, 0.1);
    border-width: 0 0 100vw 35vh;
    border-style: solid;
    top: -5vh;
    left: -15vw;
    z-index: -2;
}
.osusume_Wrap .osusume_List{
    margin-top: 30px;
}
.osusume_Wrap .osusume_List li{
    position: relative;
    width: calc((100% / 3) - 2%);
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    text-align: center;
}
.osusume_Wrap .osusume_List li:not(:last-child)::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--lightnavy);
    top: 0;
    right: -5%;
}
.osusume_Wrap .osusume_List li:nth-child(1) figure{
    width: 60%;
    margin: 0 auto 20px;
}
.osusume_Wrap .osusume_List li:nth-child(2) figure{
    width: 90%;
    margin: 0 auto 20px;
}
.osusume_Wrap .osusume_List li:nth-child(3) figure{
    width: 80%;
    margin: 0 auto 20px;
}
.osusume_Wrap .osusume_List li .ttl{
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background: var(--blue);
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
    padding: 3px 7px;
}

/* ----------------------------------------
案件獲得までの流れ
---------------------------------------- */
.flow_Wrap{
    position: relative;
    background: var(--lightgray);
    overflow-y: hidden;
}
.flow_Wrap::before{
    position: absolute;
    content: "";
    border-color: transparent transparent transparent rgb(72, 177, 52, 0.5);
    border-width: 0 0 100vw 35vh;
    border-style: solid;
    top: 0;
    left: 0;
    z-index: 0;
}
.flow_Wrap::after{
    position: absolute;
    content: "";
    border-color: transparent transparent transparent rgb(72, 177, 52, 0.5);
    border-width: 0 0 100vw 35vh;
    border-style: solid;
    top: -5vh;
    left: -15vw;
    z-index: 0;
}
.flow_List{
    position: relative;
    margin-top: 50px;
    z-index: 1;
}
.flow_List li{
    position: relative;
    justify-content: space-between;
}
.flow_List li:not(:last-child){
    margin-bottom: 60px;
}
.flow_List li:not(:last-child)::before,
.flow_List li:not(:last-child)::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background: var(--gray);
    left: 50%;
    bottom: -15%;
}
.flow_List li:not(:last-child)::before{
    left: 48.5%;
    transform: translateX(-50%) rotate(30deg);
}
.flow_List li:not(:last-child)::after{
    left: 51%;
    transform: translateX(-50%) rotate(-30deg);
}
.flow_List li figure{
    position: relative;
    width: 40%;
}
.flow_List li figure::before{
    position: absolute;
    color: #fff;
    font-size: 6rem;
    font-style: italic;
    font-weight: 200;
    font-family: "Oswald", sans-serif;
    top: -20%;
    left: -5%;
    z-index: 1;
}
.flow_List li:nth-child(1) figure::before{ content: "01";}
.flow_List li:nth-child(2) figure::before{ content: "02";}
.flow_List li:nth-child(3) figure::before{ content: "03";}
.flow_List li:nth-child(4) figure::before{ content: "04";}
.flow_List li .txt_Box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 59%;
    border-top: var(--gray) 1px solid;
    border-bottom: var(--gray) 1px solid;
    padding: 0 20px;
}
.flow_List li .txt_Box h3{
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--blue);
    font-weight: bold;
}
.flow_List li .txt_Box .txt{
    font-size: 1.6rem;
    line-height: 1.6;
}
.flow_List li .txt_Box .note{
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 5px;
}
.flow_List li .txt_Box p a{
    text-decoration: underline;
    color: var(--blue);
    transition: 0.3s;
}
.flow_List li .txt_Box p a:hover{
    text-decoration: none;
    opacity: 0.7;
}

/* ----------------------------------------
よくあるご質問
---------------------------------------- */
.faq_List{
    margin-top: 30px;
}
.faq_List li:not(:last-child){
    margin-bottom: 30px;
}
.faq_List li{
    border: var(--blue) 1px solid;
}
.faq_List li h3.question,
.faq_List li .answer{
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.faq_List li h3.question{
    /* background: rgb(25,23,57); */
    /* background: linear-gradient(90deg, rgba(25,23,57,1) 0%, rgba(3,38,129,1) 100%); */
    background: var(--blue);
    padding: 15px;
    color: #fff;
    align-items: center;
}
.faq_List li h3.question span{
    font-size: 3rem;
    font-style: italic;
    font-weight: 200;
    line-height: 1;
    padding-right: 0.3em;
}
.faq_List li h3.question .txt{
    font-size: 2rem;
    line-height: 1.4;
    color: #fff;
}
.faq_List li .answer{
    padding: 15px;
}
.faq_List li .answer span{
    font-size: 3rem;
    font-style: italic;
    font-weight: 200;
    line-height: 1;
    color: var(--blue);
    padding-right: 0.3em;
}
.faq_List li .answer .txt{
    color: #333;
    font-size: 1.6rem;
    line-height: 1.6;
}
.faq_List li .answer .txt a.link{
    display: block;
    width: 30%;
    border: var(--blue) 1px solid;
    background: var(--blue);
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    margin-top: 10px;
    padding: 8px;
    transition: 0.3s;
}
.faq_List li .answer .txt a.link:hover{
    background: #fff;
    color: var(--blue);
}

/* ----------------------------------------
お問い合わせ先
---------------------------------------- */
.contact_Wrap{
    background: var(--lightnavy);
    padding: 50px 0;
}
.contact_Box{
    border: 1px solid var(--navy);
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    text-align: center;
}
.contact_Box h3{
    margin: 0 auto 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--lightnavy);
}
.contact_Box h3 img{
    width: 30%;
    max-width: 240px;
}
.contact_Box .address{
    display: inline-block;
    text-align: left;
}
.contact_Box .address p{
    color:#333;
}
.contact_Box .address p:not(:last-child){
    margin-bottom: 10px;
}
.contact_Box .address .tel{
    font-size: 3rem;
    font-weight: 600;
}
.contact_Box .address .tel a{
    pointer-events: none;
}
.contact_Box .address .tel .ic{
    display: inline-block;
    width: 20px;
    margin-right: 5px;
}
.contact_Box .address .mail{
    font-size: 2rem;
}
.contact_Box .address .mail a:hover{
    opacity: 0.7;
    text-decoration: underline;
}
.contact_Box .address .mail .ic{
    display: inline-block;
    width: 24px;
    margin-right: 5px;
}
.contact_Box .address .txt{
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
}

/* ----------------------------------------
Pagetop
---------------------------------------- */
#Pagetop{
    position: fixed;
    right: 1%;
    bottom: 1.5%;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    line-height: 30px;
    background: var(--blue);
    border: #fff 1px solid;
    padding: 30px;
    transition: 0.3s;
    z-index: 99;
}
#Pagetop a{
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#Pagetop a::before,
#Pagetop a::after{
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    background: rgb(255, 255, 255);
    top: 48%;
    transition: 0.3s;
}
#Pagetop a::before{
    left: 30%;
    transform: translateY(-50%) rotate(-45deg);
}
#Pagetop a::after{
    right: 30%;
    transform: translateY(-50%) rotate(45deg);
}
#Pagetop:hover{
    background: #fff;
    border-color: var(--blue);
}
#Pagetop:hover a::before,
#Pagetop:hover a::after{
    background: var(--blue);
}

/* ============================================================================
PC(1600px~)
============================================================================ */
@media only screen and (min-width: 1600px) {
    .fv {
        max-width: 1600px;
        margin: 0 auto;
    }
    .fv .fv_img img {
        border-radius: 0 0 20px 20px;
    }
}

/* ============================================================================
TAB(~1200px)
============================================================================ */
@media only screen and (max-width: 1200px) {

    /* ----------------------------------------
    CTA
    ---------------------------------------- */
    .cta_flex{
        width: 100%;
    }
    .cta_flex > .cta,
    .fv .fv_cta > .cta.id_Btn{
        width: 100%;
        padding: 15px 5px;
        font-size: 1.6rem;
        margin: 0 auto;
    }
    .cta_flex > .cta.entry_Btn{
        margin-top: 10px;
    }

    /* ----------------------------------------
    FV
    ---------------------------------------- */
    .fv .fv_txt{
        top: 53%;
    }
    .fv .fv_txt h1,
    .fv .fv_txt .fv_copy,
    .fv .fv_txt .fv_merit{
        width: 60%;
    }
    .fv_cta{
        width: 70%;
    }
    .fv .fv_cta .cta_flex{
        flex-direction: column-reverse;
    }
    .fv .fv_cta .cta_flex > .cta.id_Btn,
    .fv .fv_cta .cta_flex > .cta.entry_Btn{
        width: 100%;
    }
    .fv .fv_cta .cta_flex > .cta,
    .fv .fv_cta > .cta.id_Btn{
        margin-top: 10px;
    }
    .fv .fv_img{
        width: 90%;
    }
}

/* ============================================================================
PC・TAB(769px~1200px)
============================================================================ */
@media only screen and (min-width: 769px) and (max-width: 1200px) {

    /* ----------------------------------------
    CTA
    ---------------------------------------- */
    .cta_flex > .cta{
        max-width: 500px;
    }
}

/* ============================================================================
SP(768px~)
============================================================================ */
@media only screen and (max-width: 768px) {

    /*------------------------------------------------
    common
    ------------------------------------------------*/
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }

    /* ----------------------------------------
    各セクション
    ---------------------------------------- */
    [class*=_Wrap]{
        padding: 40px 0;
    }
    [class*=_Wrap] .Wrap_ttl h2{
        position: relative;
        font-size: 2.4rem;
    }
    [class*=_Wrap] .Wrap_ttl .lead_txt{
        text-align: left;
        font-size: 1.4rem;
    }
    /* ----------------------------------------
    CTA
    ---------------------------------------- */
    .cta_flex {
        margin: 0 auto;
    }

    /* ----------------------------------------
    FV
    ---------------------------------------- */
    .fv{
        position: relative;
        width: 90%;
        background: url(../img/fv_img_sp.jpg) right top no-repeat;
        background-size: contain;
        margin: 40px 0 20px auto;
    }
    .fv .fv_txt{
        position: relative;
        top: -15px;
        left: unset;
        transform: none;
    }
    .fv .fv_txt h1,
    .fv .fv_txt .fv_copy,
    .fv .fv_txt .fv_merit{
        position: relative;
        left: -5%;
    }
    .fv .fv_txt h1{
        width: 90%;
    }
    .fv .fv_txt .fv_copy{
        width: 78%;
    }
    .fv .fv_txt .fv_merit{
        width: 85%;
    }
    .fv_cta {
        position: relative;
        width: 100%;
        left: -5%;
    }
    .fv .fv_cta .cta_flex {
        margin: 0 auto;
    }

    /* ----------------------------------------
    MS Jobs フリーランスマッチングとは
    ---------------------------------------- */
    .about_Wrap::before {
        border-color: transparent transparent transparent rgb(72, 177, 52, 0.1);
        border-width: 0 0 50vw 20vh;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .about_Wrap::after {
        border-color: transparent transparent transparent rgb(72, 177, 52, 0.1);
        border-width: 0 0 50vw 20vh;
        top: 0;
        left: -20vw;
        z-index: -2;
    }
    .about_Wrap .about_List li{
        width: 100%;
        padding: 15px 5px;
    }
    .about_Wrap .about_List li:first-child{
        margin-bottom: 20px;
    }
    .about_Wrap .about_List li h3 {
        font-size: 1.8rem;
    }
    .about_Wrap .about_List li:first-child h3 {
        margin-bottom: 10px;
    }
    .about_Wrap .about_List li figure {
        width: 30%;
        margin: 10px auto;
    }
    .about_Wrap .about_List li:last-child figure{
        margin: 0 auto;
    }
    .about_Wrap .about_List li .txt {
        font-size: 1.4rem;
    }
    .about_Wrap .about_Box {
        margin-top: 20px;
        padding: 15px 5px;
    }
    .about_Wrap .about_Box h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .about_Wrap .about_Box .txt {
        font-size: 1.4rem;
        line-height: 1.4;
        text-align: left;
    }

    /* ----------------------------------------
    MS Jobs フリーランスマッチングのメリット
    ---------------------------------------- */
    .merit_Wrap .merit_List li{
        width: 100%;
        margin-bottom: 30px;
    }
    .merit_Wrap .merit_List li figure {
        width: 50%;
        margin: 0 auto;
    }
    .merit_Wrap .merit_List li h3 {
        font-size: 1.8rem;
    }
    .merit_Wrap .merit_List li .txt {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    /* ----------------------------------------
    こんな方におすすめ
    ---------------------------------------- */
    .osusume_Wrap::before {
        border-width: 0 0 50vw 20vh;
    }
    .osusume_Wrap::after {
        border-width: 0 0 50vw 20vh;
        left: -10vw;
    }
    .osusume_Wrap .osusume_List li{
        width: 100%;
    }
    .osusume_Wrap .osusume_List li:not(:last-child){
        margin-bottom: 30px;
    }
    .osusume_Wrap .osusume_List li:not(:last-child)::after {
        width: 100%;
        height: 1px;
        top: unset;
        bottom: -5%;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
    .osusume_Wrap .osusume_List li:nth-child(1) figure {
        width: 40%;
        margin: 0 auto 5px;
    }
    .osusume_Wrap .osusume_List li:nth-child(2) figure {
        width: 60%;
        margin: 0 auto 5px;
    }
    .osusume_Wrap .osusume_List li:nth-child(3) figure {
        width: 50%;
        margin: 0 auto 5px;
    }
    .osusume_Wrap .osusume_List li .ttl{
        font-size: 1.6rem;
    }

    /* ----------------------------------------
    案件獲得までの流れ
    ---------------------------------------- */
    .flow_Wrap::before{
        border-width: 0 0 50vw 25vh;
    }
    .flow_Wrap::after{
        border-width: 0 0 50vw 25vh;
    }
    .flow_List{
        margin: 20px 0 40px;
    }
    .flow_List li figure,
    .flow_List li .txt_Box{
        width: 100%;
    }
    .flow_List li figure::before {
        font-size: 5rem;
        left: -3%;
    }
    .flow_List li:nth-child(2) figure::before,
    .flow_List li:nth-child(3) figure::before,
    .flow_List li:nth-child(4) figure::before{
        color:#74C368;
    }
    .flow_List li .txt_Box{
        margin-top: 10px;
        padding: 0 5px;
        border: none;
    }
    .flow_List li .txt_Box h3 {
        font-size: 1.8rem;
        line-height: 1;
    }
    .flow_List li .txt_Box .txt {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    .flow_List li:not(:last-child)::before,
    .flow_List li:not(:last-child)::after{
        bottom: -7%;
    }
    .flow_List li:not(:last-child)::before {
        left: 46.7%;
    }
    .flow_List li:not(:last-child)::after {
        left: 53.3%;
    }

    /* ----------------------------------------
    よくあるご質問
    ---------------------------------------- */
    .faq_List {
        margin-top: 20px;
    }
    .faq_List li:not(:last-child) {
        margin-bottom: 20px;
    }
    .faq_List li h3.question,
    .faq_List li .answer{
        padding: 10px;
    }
    .faq_List li h3.question span,
    .faq_List li .answer span{
        font-size: 2.4rem;
    }
    .faq_List li h3.question .txt {
        font-size: 1.8rem;
    }
    .faq_List li .answer .txt {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    .faq_List li .answer .txt a.link {
        width: 100%;
        font-size: 1.4rem;
        margin-top: 5px;
        padding: 7px;
    }

    /* ----------------------------------------
    お問い合わせ先
    ---------------------------------------- */
    .contact_Box {
        border: 1px solid var(--navy);
        margin-top: 15px;
        padding: 15px;
        background: #fff;
        text-align: center;
    }
    .contact_Box h3 img {
        width: 40%;
    }
    .contact_Box .address p:not(:last-child) {
        margin-bottom: 5px;
    }
    .contact_Box .address .tel {
        font-size: 2.4rem;
    }
    .contact_Box .address .tel .ic{
        width: 16px;
    }
    .contact_Box .address .mail {
        font-size: 1.8rem;
    }
    .contact_Box .address .mail .ic {
        width: 20px;
    }
    .contact_Box .address .txt {
        font-size: 1.8rem;
    }

    /* ----------------------------------------
    Pagetop
    ---------------------------------------- */
    #Pagetop {
        bottom: 0.5%;
        width: 20px;
        height: 20px;
        line-height: 20px;
        padding: 25px;
    }
    #Pagetop a::before,
    #Pagetop a::after{
        height: 2px;
    }
    #Pagetop a::before{
        left: 25%;
    }
    #Pagetop a::after{
        right: 25%;
    }
}
