@charset "utf-8";
html {
    background: #fff8dc;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 62.5%;
    color: #000000;
    font-weight: 500;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
}
img{
    width: auto;
    max-width: 100%;
    height: auto;
}
input,select{
    font-size:15px;
}
em{
    font-style: normal;
}
li {
    list-style: none;
}
h2,h3,h4{
    text-align: center;
    font-weight: 700;
}
h2{
    font-size: 2.5rem;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inline_block {
    display: inline-block;
}
.radius{
    border-radius: 10px;
}
.border{
    border:3px solid #000000;
}
.bold{
    font-weight: 700;
}
.heavy{
    font-weight: 900;
}
.pd{
    padding:3rem;
    box-sizing: border-box;
}
.center{
    text-align: center;
}
.bg-01{
    background-color: #BCEBFA;
}
.bg-02{
    background-color: #FFD800;
}
.bg-03{
    background-color: #FFFFFF;
}
.bg-04{
    background-color: #FF5943;
}
.red {
    color: #e32121;
}

/* Size */
.fs_xs {
  font-size: 1.2rem;
  /*12px*/
}
.fs_sm {
  font-size: 1.4rem;
  /*14px*/
}
.fs_md {
  font-size: 1.8rem;
  /*18px*/
}
.fs_lg {
  font-size: 2rem;
  /*20px*/
}
.fs_xl {
  font-size: 2.2rem;
  /*22px*/
}
.fs_xxl {
  font-size: 2.4rem;
  /*24px*/
}
.fs_heavy{
    font-size: 4rem;
    font-weight: 900;
}
.fs_child{
    font-size: 0.75em;
}
.text-primary{
    color: #2680EB;
}
.text-secondary{
    color: #FF5943;
}
.text-accent{
    color: #FF6C00;
}
.text-light{
    color: #FFFFFF;
}
.marker_y {
  vertical-align: baseline;
  background: linear-gradient(transparent 0%, #FFF500 0%);
}
.marker_g{
  vertical-align: baseline;
  background: linear-gradient(transparent 50%, #dedede 55%);    
}

.btn-01 a{
    background: #FF5943;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    width: 380px;
    padding: 1.5rem 2rem 2rem;
    line-height: 1.4;
    border-bottom: 6px solid #E21A00;
    box-sizing: border-box;
}
.btn-01 a:hover{
    border-bottom: 3px solid #E21A00;
    margin-top: 3px;
}

.row-1{
    width: 100%;
}
.row-2 > *{
    width: calc(100% / 2 - 20px);
}
.row-3{
    width: calc(100% / 3 - 20px);
}

.content_area{
    max-width: 1150px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom:4rem;
}
.content_area.__small {
    max-width: 960px;
}
@media screen and (max-width: 860px){
    .content_area{
        max-width: 1000px;
        width: 95%;
        padding-bottom: 4rem;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    タイトル
_______________________________________________________*/

h2.content_ttl{
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 6rem;
    padding-top: 6rem;
}
h2.content_ttl:after{
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: #2680EB;
    margin: 0 auto;
    position: relative;
    bottom: -2.5rem;
}
.content_ttl_sub{
    font-size: 26px;
}

@media screen and (max-width: 860px){
    h2.content_ttl{
        padding-top: 4rem;
        font-size: 26px;
        line-height: 1.3;
    }
    .content_ttl_sub{
        font-size: 19px;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    ヘッダー
_______________________________________________________*/

header .content_area{
    max-width: 100%;
    padding: 5px 2%;
    box-sizing: border-box;
}
header .content_area h1 img {
    max-width: 150px;
}
header a{
    text-decoration: none;
    color: #000000
}
header a > *{
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    font-weight: normal;
}
header .operating_num{
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}
header .operating_time{
    font-size: 13px;
    font-weight: normal;
    vertical-align: middle;
    display: inline-block;
}

@media screen and (max-width: 860px){
    header .content_area {
        padding: 6px 0;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    メインビジュアル
_______________________________________________________*/
.main .content_area.flex > img {
    width: 55%;
    max-width: 560px;
    margin-right: 1%;
    margin-left: -3%;
}

.main {
    position: relative;
    width: 100%;
    padding-bottom: 0;
    z-index: 1;
    background-color: #7dd2f1;
}

.mv-under {
    background-color: #b8e7f7;
    background-image: url("/lp/x/campaign2/img/mv_bg_pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: calc(50% - 250px) center;
}

.mv-under-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mv-under-img {
    width: 50%;
}

.mv-under-img img {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.content_area.flex.mv {
    align-items: flex-start;
    max-width: 1000px;
}

.form_wrap {
    position: relative;
    width: 50%;
    height: 10px;
}
 .content_.mainarea{
    position: relative;
    max-width: 1200px;
    justify-content: center;
    padding-bottom: 0;
    z-index: 1;
    background-size: 60% 100%;
    background-repeat: no-repeat;
}
.main h2 {
    position: relative;
}

.pref_name_mv_pc {
    position: absolute;
    top: 22px;
    right: 0;
    left: 0;
    display: block;
    margin: auto;
    width: fit-content;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
    color: #2B1D15;
    text-shadow: -4px -4px 0 #fff, -4px 0 0 #fff, -4px 4px 0 #fff,
    0 -4px 0 #fff,                  0 4px 0 #fff,
    4px -4px 0 #fff,  4px 0 0 #fff,  4px 4px 0 #fff;
}
.mv_wrap {
    position: relative;
}
.mv_decoration {
    position: absolute;
    z-index: 1;
}
.mv_decoration.__left {
    top: 70px;
    left: -150px;
    width: 70%;
}
.mv_decoration.__right {
    top: 130px;
    right: -110px;
    width: 50%;
}
.mv-1_pc {
    margin-bottom: -51px;
}
.mv-2_pc {
    position: relative;
}
.main_form {
    min-width: 485px;
}

.main .catch p {
    font-size: 1.6em;
}
.main .catch p .fs_child:last-child {
    letter-spacing: -9px;
    margin-left: -6px;
}

.catch {
    margin-right: 20px;
}

.catch_group{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}
.main .balloon{
    font-size: initial;
    text-align: center;
    width: 100%;
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 10px 0;
}
.main .balloon span:first-child{
    display: inline-block;
    border-bottom: 3px dotted #000000;
    line-height: 1.4;
    position: relative;
    top: -4px;
    margin-right: 5px;
}
.main .balloon img{
    position: absolute;
    top: 0.4rem;
    max-width: 30px;
}

@media screen and (max-width: 1040px){
    .main_form {
        min-width: 375px;
    }
}

@media screen and (max-width: 860px){
    .main_form {
        background-color: #6cd2ef;
    }
    .content_area.flex.mv {
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
        padding-bottom: 5px;
        width: 100%;
    }
    .mv-1_pc {
        margin-bottom: 0;
    }
    .catch {
        margin-right: 0;
    }
    .mv-under {
        background-size: cover;
        background-position: center;
    }
    .mv-under-img {
        margin: 0 auto;
        width: 630px;
        max-width: 100%;
    }
    .mv-under-img img {
        width: 100%;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    フォーム
_______________________________________________________*/

.c-form__text_box {
    position: relative;
    top: -6px;
    display: block;
    box-sizing: border-box;
    padding: 8px 75px 8px 35px;
    margin: 0 auto;
    width: 90%;
    height: auto;
    z-index: 1;
    background-color: #0071c7;
    border-radius: 50px;
    filter: drop-shadow(0 5px 0 rgba(36, 0, 126, 0.11));
}

.c-form__text_box::before {
    position: absolute;
    top: -5px;
    right: 30px;
    content: '';
    width: 42px;
    height: 46px;
    background-image: url("/lp/x/campaign2/img/calculator.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.c-form__text_box::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    margin: auto;
    content: '';
    width: 27px;
    height: 16px;
    background-color: #006fc1;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.c-form__text_box_img {
    display: block;
    margin: 0 auto;
    width: 300px;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1040px){
    .c-form__text_box {
        padding: 8px 63px 8px 33px;
    }
    .c-form__text_box::before{
        right: 10px;
    }
}

@media screen and (max-width: 860px){

}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    フッター
_______________________________________________________*/
footer {
    text-align: center;
    padding: 20px 0 20px;
}
footer .content_area{
    padding:5px 0 20px;
    display: table;
}
footer .content_area p {
    display: table-cell;
}
footer .content_area p a {
    color: #000;
    padding: 0px 20px;
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    CV
_______________________________________________________*/

.cv {
    background-color: #9ce0f7;
    background-image: url("/lp/x/campaign2/img/cv_bg_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cv_inner {
    position: relative;
    padding: 36px 0 25px;
    margin: 0 auto;
    width: 650px;
    max-width: 100%;
}

.cv_inner::before {
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    margin: auto;
    content: '';
    width: 500px;
    height: 64px;
    background-image: url("/lp/x/campaign2/img/cv_limited_pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

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

.cv_btn {
    position:relative;
    display: block;
    padding: 10px;
    margin: 12px auto 0;
    width: 360px;
    max-width: 85%;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(0deg, rgb(191, 0, 9) 0%, rgb(191, 0, 9) 50%, rgb(209, 7, 0) 50%, rgb(209, 7, 0) 100%);
    border-radius: 5px;
    transition: opacity .3s,transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 0 #770000;
}
.cv_btn:hover {
    transform: translateY(3px);
    opacity: .8;
    box-shadow: 0 3px 0 #770000;
}
.cv_btn::before {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    content: '';
    width: 1em;
    height: 1em;
    background-image: url('/lp/x/campaign2/img/cv_form_btn_icon.png');
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 860px){
    .cv {
        background-image: url("/lp/x/campaign2/img/cv_bg_sp.png");
    }

    .cv_inner::before {
        top: -18px;
        width: 95%;
        height: 64px;
        background-image: url("/lp/x/campaign2/img/cv_limited_sp.png");
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カーネクストの高価買取
_______________________________________________________*/
.appeal .content_area {
    padding: 0 15px 9rem;
    box-sizing: border-box;
}
.appeal_block{
    display: flex;
    align-items: center;
    gap: 25px;
}
.appeal_wrap {
    display: flex;
    gap: 15px;
}
.appeal_img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 220px;
    height: 220px;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}
.appeal_img img{
    width: 126px;
    max-width: 70%;
    margin: 0 auto;
}
.appeal_img p{
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
}
.appeal_p{
    flex: 1;
    text-align: left;
    line-height: 1.6;
    font-size: 18px;
}
.appeal_p em{
    color: #c70000;
    font-weight: bold;
}

@media screen and (max-width: 860px){
    .appeal .content_area {
        padding: 0 6px 5rem;
    }
    .appeal_block{
        flex-direction: column;
    }
    .appeal_img{
        width: calc((100% - 15px) / 2);
        height: auto;
        gap: 15px;
        padding: 20px 8px;
    }
    .appeal_p {
        font-size: 16px;
    }
}
/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カーネクストが選ばれる理由
_______________________________________________________*/

.reason_block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 98%;
    margin: 0 auto;
}
.reason_item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: calc((100% - 20px)/2);
    gap: 5px;
    padding: 30px;
    border-radius: 5px;
    background-color: #ffffff;
}
.reason_item h4{
    font-size: 19px;
}
.reason_item img {
    width: 25%;
    min-width: 130px;
}
.reason_item p{
    line-height: 1.6;
    text-align: left;
    font-size: 18px;
}
.reason_item em{
    color: #c70000;
    font-weight: bold;
}
.reason_item::before {
    position: absolute;
    top: -5px;
    left: 10px;
    content: '';
    display: block;
    width: 50px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/lp/x/campaign2/img/reason_num_1.png);
}
.reason_item.__02::before {
    background-image: url(/lp/x/campaign2/img/reason_num_2.png);
}
.reason_item.__03::before {
    background-image: url(/lp/x/campaign2/img/reason_num_3.png);
}
.reason_item.__04::before {
    background-image: url(/lp/x/campaign2/img/reason_num_4.png);
}

@media screen and (max-width: 860px){
    .reason .content_area {
        padding-top: 0;
    }
    .reason_block{
        flex-direction: column;
    }
    .reason_item{
        padding: 2rem;
        margin: 0 auto;
        width: 100%;
    }
    .reason_item p{
        font-size: 15px;
    }
    .reason_item h4 {
        line-height: 1.4;
        margin-left: 25px;
        width: 71%;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カーネクストの買取事例
_______________________________________________________*/

.jirei > .content_area{
    padding-top: 15px;
    padding-bottom: 6rem;
}
.jirei-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
}
.jirei-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    margin-bottom: 30px;
    width: calc(100% / 2 - 15px);
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 5px;
}
.jirei-card h3 {
    text-align: center;
    padding: 14px 0 8px;
    font-size: 16px;
    line-height: 1;
}
.jirei-card h3 + p {
    color: #c70000;
    margin-bottom: 16px;
    line-height: 1;
}
.jirei-card h3 + p em {
    font-weight: bold;
    font-size: 28px;
    font-style: normal;
}
.jirei-card dl {
    background-color: #dedede;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}
.jirei-card dt{
    background-color: #999999;
    color: #ffffff;
    width: 40%;
    float: left;
}
.jirei-card dd {
    border-bottom: 1px solid #ffffff;
}
.jirei-card dd,
.jirei-card dt {
    padding: 3px 0;
    text-align: center;
}
.jirei_more_p{
    position: relative;
    width: 100%;
    margin: 10px 0 30px;
    padding: 9px 0 15px;
    color: #3188cb;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}
.jirei_more_p::before{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #3188cb;
}
.jirei_more_p::after {
    content: "";
    position: absolute;
    bottom: 5px;
    display: inline-block;
    width: 500px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3188cb;
}
.kyouka{
    background-color: #fff;
    padding: 25px 50px;
    border-radius: 5px;
    box-sizing: border-box;
}
.kyouka img {
    width: 90%;
}
.kyouka_p{
    margin-top: 10px;
    text-align: left;
    line-height: 1.6;
    font-size: 18px;
}
@media screen and (max-width: 860px){
    .jirei-block {
        flex-direction: column;
        width: 100%;
    }
    .jirei-card {
        position: relative;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 10px;
        margin-bottom: 14px;
        width: 100%;
    }
    .jirei-card::before {
        position: absolute;
        top: 0;
        right: 0;
        content: '';
        width: 20px;
        height: 20px;
        background-color: #007ee4;
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }
    .jirei-card img {
        margin-top: 4px;
        width: 100px;
        height: auto;
    }
    .jirei-info {
        flex: 1;
    }
    .jirei-info dl {
        max-width: 100%;
    }
    .jirei-card h3 {
        padding: 4px 0;
        font-size: 17px;
        text-align: left;
    }
    .jirei-card h3 + p em {
        font-size: 22px;
    }
    .jirei-card dd, .jirei-card dt {
        padding: 0;
    }
    .jirei_more_p {
        padding-bottom: 20px;
        font-size: 23px;
        line-height: 1.4;
    }
    .jirei_more_p::after {
        width: 100%;
    }
}

/*こちらの車種も強化買取中！*/

.recommend_under {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}
.recommend_under img {
    display: block;
    max-width: 850px;
    margin: 0 auto;
}
.recommend_under_ttl {
    position: relative;
    top: 0.9em;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}
.recommend_under_ttl::before,
.recommend_under_ttl::after {
    position: relative;
    top: 1.1rem;
    content: '';
    display: inline-block;
    height: 35px;
    width: 4px;
    margin-left: 1.5rem;
    background: #000;
    text-align: center;
}

.recommend_under_ttl::before {
    margin-right: 2.5rem;
    margin-left: 0;
    transform: rotate(-25deg);
}
.recommend_under_ttl::after {
    transform: rotate(25deg);
}

.recommend_under_img {
    padding: 35px 25px 25px;
    border-radius: 20px;
    background: #ffc000;
}
.recommend_under_img img {
    width: 100%;
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カンタン4ステップ
_______________________________________________________*/

.flow .content_area {
    padding: 30px 15px 4rem;
    box-sizing: border-box;
}

.flow li{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: calc(100% / 4 - 20px);
    box-sizing: border-box;
    position: relative;
    line-height: 1.3;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
}

.flow li p{
    margin: 10px 0;
    font-weight: bold;
    font-size: 19px;
}
.flow .step-num{
    color: #3188cb;
    font-size: 1.4em;
    font-weight: bold;
}
.flow .step-num em{
    font-size: 2em;
    font-style: normal;
    font-weight: bold;
}
.flow img {
    width: 70%;
    margin-top: 10px;
}
.flow_item:not(:last-child)::before {
    content: "";
    position: absolute;
    right: -35px;
    top: 0;
    bottom: 0;
    margin: auto;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 20px solid transparent;
    border-left: 15px solid #fff;
}

.flow_comment {
    background-color: #fff;
    padding: 30px 45px;
    font-size: 18px;
}

.flow_icon_block {
    align-items: inherit;
    margin: 0 auto 30px;
}

.flow_present_block {
    position: relative;
    display: flex;
    align-items: stretch;
    margin-top: 12px;
    background-color: #ebf4fa;
    border-radius: 8px;
}

.flow_present_img_wrap {
    align-content: center;
    width: 40px;
    background-color: #0071b5;
    border-radius: 8px 0 0 8px;
}

.flow_present_block img {
    margin: auto 2px;
    width: 35px;
    height: auto;
    z-index: 1;
}

.flow_present_txt {
    flex: 1;
    padding: 10px;
    line-height: 1.5;
    font-size: 15px;
    color: #0072b9;
}

.flow_present_txt p, .flow_present_txt span {
    display: inline-block;
}

.flow_present_txt span {
    font-size: 11px;
    color: #333;
}

@media screen and (max-width: 860px){
    .flow .content_area {
        padding: 0 5px 3rem;
    }
    .flow_icon_block {
        flex-direction: column;
        gap: 20px;
    }
    .flow li {
        width: 100%;
    }
    .flow li {
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 0 20px;
        padding: 20px;
        border-radius: 10px;
    }
    .flow img {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 130px;
        max-width: 100%;
        margin-top: 0;
    }
    .step-num {
        grid-column: 2;
        grid-row: 1;
    }
    .flow li p {
        margin: 6px 0;
        grid-column: 2;
        grid-row: 2;
    }
    .flow_item:not(:last-child)::before {
        top: auto;
        right: 0;
        bottom: -35px;
        left: 0;
        width: 4px;
        height: 4px;
        border: 20px solid transparent;
        border-top: 15px solid #ffffff;
    }
    .flow .step-num{
        font-size: 1.1em;
    }
    .flow .step-num em{
        font-size: 1.5em;
    }
    .flow_comment {
        padding: 0 5px;
        font-size: 16px;
        background: transparent;
    }
    .flow_present_block img {
        width: 35px;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    初めての方へ
_______________________________________________________*/

.for-guest {
    border: 3px solid #0da349;
    background-color: #ffffff;
    color: #0da349;
    max-width: 750px;
    margin: 0 auto 10px;
    padding: 20px 20px 40px;
    box-sizing: border-box;
}
.for-guest h2 {
    background:url(/lp/x/campaign2/img/for-guest-bg.png) no-repeat calc(50% - 200px) 0;
    background-size: contain;
    text-align: center;
    font-size: 2em;
    line-height: 1.4;
    padding-top: 30px;
    margin: 5px 10px 0;
    margin-bottom: 10px;
}
.for-guest h2 span:after{
    content: '';
    width: 34px;
    height: 36px;
    display: inline-block;
    background: url(/lp/x/campaign2/img/for-guest-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: top;
}
.for-guest .content_area {
    width: 100%;
    margin: 0 auto;
    line-height: 1.4;
    padding: 0 10px 0;
    text-align: center;
    font-size: 18px;
}

.for-guest .for-guest_txt {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 25px;
}

.for-guest .for-guest_list {
    display: flex;
    align-items: center;
    height: 70px;
    font-weight: bold;
    font-size: 1.4em;
    box-sizing: border-box;
    gap: 10px;
    width: 80%;
    margin: 10px auto;
}
.for-guest .for-guest_list .for-guest_item {
    text-align: center;
    background-color: #d8f6e4;
    padding: 7px 3%;
    width: 100%;
    border: 1px solid #ffffff;
}
.for-guest p.for-guest_footer {
    background: #32b16c;
    color: #fff;
    padding: 10px;
    border-radius: 45px;
    width: 96%;
    font-size: 20px;
    margin: 0 auto;
    box-shadow: 0 6px 1px 0 #eaeaea;
    box-sizing: border-box;
    text-align: center;
}
.for-guest p.for-guest_footer  em{
    color: #ff3600;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0;
    background: #fff000;
}
.for-guest p.for-guest_footer span{
    color: #fff000;
}
@media screen and (max-width: 860px){
    .for-guest.content_area {
        padding: 15px 20px;
        border: none;
        background-color: #fff;
        color: #333;
    }
    .for-guest h2 {
        padding: 0 0 0 35px;
        margin: 7px 0 0 0;
        font-size: 1.2em;
        text-align: left;
        background-image: none;
    }
    .for-guest h2 span {
        position: relative;
    }
    .for-guest h2 span:after {
        position: absolute;
        top: 3px;
        left: -40px;
    }
    .for-guest .for-guest_list {
        width: 100%;
        height: auto;
        font-size: 1.2em;
        margin: 10px auto;
    }
    .for-guest .for-guest_list .for-guest_item {
        padding: 2px 3%;
        width: 100%;
        color: #32b16c;
        border-radius: 5px;
    }
    .for-guest .for-guest_txt {
        margin-top: 18px;
        text-align: left;
        font-size: 15px;
    }
    .for-guest_footer {
        display: none;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    よくあるご質問
_______________________________________________________*/

.qa .content_ttl {
    padding: 20px 0;
    margin-bottom: 25px;
}
.qa > .content_area {
    text-align:left;
    padding-right: 20px;
    padding-left: 24px;
    padding-bottom: 0;
}
.qa-list{
    padding: 15px 0 20px;
}
.qa .content_area li {
    background-color: #fff;
    padding-right: 20px;
    padding-bottom: 20px;
    width: calc(100% / 3 - 25px);
    box-sizing: border-box;
    list-style: none;
}
.qa .content_area li h3 {
    color: #3188cb;
    position: relative;
    padding: 10px 0 20px 50px;
    font-size: 1.3em;
    line-height: 1.6;
    text-align: left;
}
.qa .content_area li h3:before {
    content: '';
    background: url(/lp/x/campaign2/img/qa_q.png) no-repeat;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: -5px;
    top: 10px;
}
.qa .content_area li p {
    position: relative;
    line-height: 1.6;
    padding: 0 0 0 50px;
    font-size: 16px;
}
.qa .content_area li p:before {
    content: '';
    background: url(/lp/x/campaign2/img/qa_a.png) no-repeat;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: -5px;
}
.qa .cv.content_area {
    padding-bottom: 20px;
}

.qa .faq_block {
    align-items: stretch;
}

.pt0 {
    padding-top: 0;
}
@media screen and (max-width: 860px){
    .qa .faq_block {
        flex-direction: column;
        box-sizing: border-box;
        gap: 20px;
        padding: 0 0 0 5px;
    }
    .qa .content_area li {
        width: 100%;
    }
    .qa.content_area {
        padding-bottom: 0;
    }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    キャンペーン詳細
_______________________________________________________*/
.campaign_bg {
    background-color: #e3f4f9;
}

.campaign.content_area {
    padding-top: 0;
}

.campaign_block {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    border-top: solid 1px #ededed;
}

.campaign_block > li {
    display: flex;
    justify-content: space-between;
    padding: 23px 33px;
    font-size: 14px;
    background-color: #fff;
    border-bottom: solid 1px #ededed;
}

.campaign_block > li span {
    display: inline-block;
    width: 4em;
    font-size: 15px;
    font-weight: bold;
    color: #494949;
}

.campaign_block > li > ul {
    width: 87%;
}

@media screen and (max-width: 860px){
    .campaign_block > li {
        flex-direction: column;
        padding: 20px 23px;
    }

    .campaign_block > li > ul {
        width: 100%;
    }

    .campaign_block > li span {
        margin-bottom: 5px;
        font-size: 16px;
    }
}