@charset "utf-8";

.guide_wrapper {
    width: var(--content-width-min);
    margin: 0 auto;
}

.guide_inner + .guide_inner {
    margin-top: 40px;
}

.text {
    margin: 18px 0 8px;
    font-size: 16px;
}

.text strong {
    font-weight: bold;
}

.note {
    margin-top: 10px;
    font-size: 12px;
    font-weight: normal;
}

.note + .note {
    margin-top: 0;
}

.note.-indent {
    padding-left: 1em;
    text-indent: -1em;
}

.note .-inline {
    display: inline;
}

.guide_wrapper .blank {
    color: var(--accent-color);
    display: inline-block;
    position: relative;
}

.guide_wrapper .blank.inline {
    display: inline;
    margin: 0;
}

.guide_wrapper .blank::after {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translate(0, 8%);
    width: 10px;
    height: 10px;
    margin-left: 5px;
    background-image: url(/renewal/img/common/icon_link-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
}

/* サービスガイド
-----------------------------------------------------------*/
.guideLinks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 630px;
    margin: 0 auto 90px;
}

.guide_wrapper + .guideLinks {
    margin-top: 40px;
    padding-top: 70px;
    border-top: 1px solid var(--gray-dark);
}

.guideLinks li {
    width: 150px;
    box-shadow: var(--main-shadow);
    border: 2px solid var(--main-color);
    border-radius: 10px;
}

.guideLinks li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 10px;
    transition-duration: 0.2s;
}

.guideLinks li a:hover {
    background-color: var(--main-color);
}

.guideLinks li a svg {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto;
    transition-duration: 0.2s;
}

.guideLinks li a:hover svg g {
    fill: white;
}

.guideLinks li a p {
    width: 100%;
    margin-top: 15px;
    padding-right: 30px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.05em;
    color: #333;
    transition-duration: 0.2s;
}

.guideLinks li a:hover p {
    color: white;
}

.guideLinks li a .arrow {
    position: absolute;
    top: calc(50% + 30px);
    right: 10px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--main-border-color);
    border-radius: 50%;
    background-color: var(--main-color);
    line-height: 30px;
    transition-duration: 0.2s;
}

.guideLinks li a .arrow::before,
.guideLinks li a .arrow::after {
    display: inline-block;
    position: absolute;
    line-height: 30px;
    content: "";
    transition-duration: 0.2s;
}

.guideLinks li a .arrow::before {
    top: 50%;
    right: 9px;
    transform: translate(0, -50%);
    width: 10px;
    border-top: 2px solid white;
}

.guideLinks li a .arrow::after {
    top: 50%;
    right: 9px;
    transform: translate(0, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.guideLinks li a:hover .arrow {
    background-color: white;
}

.guideLinks li a:hover .arrow::before,
.guideLinks li a:hover .arrow::after {
    border-color: var(--main-color);
}

/************************************************************
*  買取お申し込みの流れ
************************************************************/
/* ============ タブ ============ */
.flow_tabWrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--main-color);
}

.flow_tabWrap .flow_tab {
    width: 310px;
    padding: 16px 10px;
    border: 2px solid var(--main-color);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: var(--main-color);
    cursor: pointer;
    transition-duration: 0.1s;
}

.flow_tabWrap .flow_tab.is-active,
.flow_tabWrap .flow_tab:hover {
    background-color: var(--main-color);
    color: #fff;
}

.flow_tabWrap .flow_tab + .flow_tab {
    margin-left: 20px;
}

/* ============ 切り替え本体 ============ */
.flow_wrap[data-type="store"] {
    display: none;
}

/* ============ STEP ============ */
.step {
    position: relative;
    padding: 38px 30px 30px;
    background-color: #faf7f0;
    border-radius: 10px;
}

.step:nth-child(1) {
    margin-top: 84px;
}

.step:not(:last-child)::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0) rotate(180deg);
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top: none;
    border-right-width: 15px;
    border-left-width: 15px;
    border-bottom-color: #fbf7f0;
    content: "";
}

.step + .step {
    margin-top: 44px;
}

.step .step_num {
    position: absolute;
    top: -50px;
    left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.step .step_num img:nth-child(2) {
    position: relative;
    bottom: -6px;
}

.flow_wrap[data-type="store"] .step:nth-of-type(1) {
    margin-top: 64px;
}

.step .step_title {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
}

.step .store_img {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.step .store_img.-bottom {
    bottom: 0;
}

/************************************************************
*  お申し込み前の確認事項
************************************************************/
.text_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text_wrapper p {
    width: 540px;
    margin-top: 0;
}

.text_wrapper img {
    width: 80px;
}

.attention {
    margin-top: 20px;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 5px;
}

.attention .title {
    font-size: 18px;
    font-weight: bold;
    color: #e80101;
}

/************************************************************
*  SIMロック解除するだけで、 さらに買取金額が上がります！
************************************************************/
.simunlock_title {
    text-align: left;
    line-height: 1.3;
}

.simunlock_image img {
    width: 100%;
}

.unlockCareer_wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 20px;
}

.unlockCareer_wrap .unlockCareer_item {
    display: block;
    width: 204px;
    padding: 10px;
    border: 1px solid #bfb7b7;
    border-radius: 5px;
    transition-duration: .1s;
}

.unlockCareer_wrap .unlockCareer_item:hover {
    border-color: var(--main-color);
}

.unlockCareer_wrap .unlockCareer_item img {
    width: auto;
    height: 20px;
    margin: 0 auto;
}
