*,
*:after,
*:before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
}

pre,
textarea {
    overflow: auto;
}

[hidden],
audio:not([controls]),
template {
    display: none;
}

details,
main,
summary {
    display: block;
}

input[type=number] {
    width: auto;
}

input[type=search] {
    -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

progress {
    display: inline-block;
}

small {
    font-size: 75%;
}

sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

textarea {
    resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

img {
    border: 0;
    /* max-width: 100%; */
    height: auto;
}

button,
input,
select,
textarea {
    min-height: 1.5em;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;

    -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
}

ol,
ul {
    list-style: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

fieldset {
    border: 0;
}

:root {
    --black: #030712;
    --blue: #2A64F7;
    --red: #EF4444;
    --gray: #E5E7EB;
}

a {
    text-decoration: none;
}


/* Base

====================================================*/
body {
    height: 100%;
    color: #030712;
    font-family: YuGothic, "ヒラギノ角ゴ", "Hiragino Sans", "メイリオ", Meiryo, Verdana, "MS Ｐゴシック", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

@media print,
screen and (min-width: 768px) {}

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

/* WordPress Base

====================================================*/


/* header

====================================================*/

#header {
    height: 95px;
    background-color: #fff;
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 66px;
}

/* --- headerロゴ --- */
#header .logo {
    height: 44px;
}


#header .menu-wrap {
    display: flex;
    align-items: center;
}

.menu-wrap ul.menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 8px 24px;
}

.menu-wrap ul.menu a {
    color: #001863;
    padding: 8px 24px;
    position: relative;
    font-weight: bold;
}

.menu-wrap ul.menu a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1.5px;
    background-color: #001863;
    transition: .3s;
}

.menu-wrap ul.menu a:hover::after {
    width: 100%;
}

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


@media screen and (max-width:786px) {
    #header {
        padding: 0 26px;
        height: 100px !important;
        justify-content: end;
    }

    #header .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}


body {
    animation: bugfix infinite 1s;
    -webkit-animation: bugfix infinite 1s;
}

@keyframes bugfix {
    from {
        padding: 0;
    }

    to {
        padding: 0;
    }
}

@-webkit-keyframes bugfix {
    from {
        padding: 0;
    }

    to {
        padding: 0;
    }
}


.menu_btn-wrap {
    position: relative;
    display: none;
    width: 48px;
    height: 56px;
}

#overlay-button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 26px 11px;
    z-index: 5;
    cursor: pointer;
    user-select: none;

}

.sp_menu {
    display: none;
}

@media screen and (max-width:786px) {
    #header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
        border-bottom: 1px solid #707070;
    }

    .menu_btn-wrap {
        display: block;
    }

    .menu {
        display: none !important;
    }

    .menu.sp_menu {
        display: block !important;
        position: fixed;
        top: -120%;
        left: 0;
        z-index: 10;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        transition: all 0.6s;
    }

    .sp_menu.open {
        top: 100px;
        display: block;
    }

    .sp_menu a {
        color: #3B3B3B;
        display: block;
        padding: 18px 24px;
        border-bottom: 1px solid #707070;
    }

    .sp_menu a span {
        position: relative;
        display: block;
    }

    .sp_menu a span::after {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        border-top: solid 2px #333;
        border-right: solid 2px #333;
        position: absolute;
        top: 50%;
        right: 6px;
        transform: rotate(45deg) translateY(-50%);
    }


}

#overlay-button span {
    height: 4px;
    width: 26px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before,
#overlay-button span:after {
    height: 4px;
    width: 26px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
}

#overlay-button:hover span,
#overlay-button:hover span:before,
#overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked~#overlay {
    visibility: visible;
}

input[type=checkbox]:checked~#overlay-button:hover span,
input[type=checkbox]:checked~#overlay-button span {
    background: transparent;


}

input[type=checkbox]:checked~#overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);

}

input[type=checkbox]:checked~#overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
    height: 100vh;
    width: 100vw;
    background: #ec6451;
    z-index: 2;
    visibility: hidden;
    position: fixed;
}

#overlay.active {}

/* 
#overlay ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding-left: 0;
    list-style-type: none;
}

#overlay ul li {
    padding: 1em;
}

#overlay ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
}

#overlay ul li a:hover {
    color: #000 !important;
} */


.main-wrap {
    position: relative;
}

.bg-linear {
    background: linear-gradient(90deg, rgba(44, 166, 224, 0.2) 0%, rgba(23, 28, 97, 0.2) 100%);
}


.main-body {
    padding: 60px 120px;
}

@media screen and (max-width:1366px) {
    .main-body {
        padding: 60px 40px;
    }

}

@media screen and (max-width:1024px) {
    .main-body {
        padding: 32px;
    }

    /* .eikyo .suggest_img{
        height: 150px;
    } */

}

@media screen and (max-width:786px) {
    .main-body {
        padding: 24px;
    }

}

.form-body {
    width: 40%;
    padding: 32px;
    position: fixed;
    top: calc(95px + 24px);
    right: 0;
    z-index: 3;
    /* max-height: 100vh; */
    /* overflow: scroll; */
}

.form-content {
    background-color: #fff;
    padding: 32px;
    box-shadow: 5px 5px 13px 0px rgba(0, 64, 120, 0.44);
    border-radius: 16px;
}

.form-ttl {
    font-size: 32px;
    color: #004078;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width:786px) {
    /* .form-body {
        max-height: 100vh;
        overflow: scroll;
    } */

}





#main_visual {
    background-image: url("../img/suggest/26268843_l.jpg");
    position: relative;
    background-size: contain;
    /*height: 100%;*/
    height: calc(768px - 72px);
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #001863;
    padding-top: 60px;
    position: relative;
}




.pc_mainVisual {
    position: relative;
    width: 60%;
    text-align: right;
    margin-bottom: -72px;
}

.pc_mainVisual>.mainVisual_ttl {
    position: relative;
    z-index: 5;
    margin-right: -45px;
}

.pc_mainVisual img {
    width: 100%;
    max-width: 826px;
}

.sp_mainVisual-jmr,
.sp_mainVisual {
    display: none;
}

.pc_mainVisual {
    display: block;
}

@media screen and (max-width:786px) {
    #main_visual {
        padding-top: 32px;
    }

    .sp_mainVisual {
        display: block;
        padding: 0 24px;
        text-align: center;
    }

    .pc_mainVisual {
        display: none;
    }

    .mainVisual_ttl {
        margin-bottom: 24px;
    }

    .mainVisual_ttl-img {
        width: 100%;
        max-width: 250px;
    }

    .mainVisual_tarent {
        margin-bottom: -66px;
    }

    .mainVisual_tarent-img {
        max-width: 450px;
        width: 100%;
    }

    .sp_mainVisual-jmr {
        display: block;
        background-color: #001863;
        text-align: center;
    position: relative;
    }
}

@media screen and (max-width:786px) {
    #main_visual {
        background-size: 1200px;
        margin-bottom: -66px;
    }

}


.main_ttl {
    width: 60%;
    text-align: center;
}

.main_ttl>span {
    padding: 8px 0 16px;
    background-image: linear-gradient(90deg, #004078 0 50%, #FA6466 50%);
    background-repeat: no-repeat;
    background-size: 120px 4px;
    background-position: bottom;
    color: #004078;
    font-weight: bold;
    font-size: 32px;
    margin: 0 auto 32px;
    display: inline-block;
}






.main-content {
    width: 60%;
    background-color: #fff;
    box-shadow: 2px 2px 8px 0px rgba(0, 64, 120, 0.5);
    padding: 60px 32px;
    position: relative;
}




#case .main-content {
    margin-bottom: 120px;
}

.case {
    position: absolute;
    display: inline-block;
    top: -30px;
    left: 40px;
    padding: 8px 40px;
    line-height: 1;
    font-size: 24px;
    background: #004078;
    color: #fff;
    font-weight: bold;
    border-radius: 100px;
    border: 2px solid #fff;
    box-shadow: 2px 2px 8px 0px rgba(0, 64, 120, 0.5);
}

.case span {

    font-size: 38px;
}

.case_img {
    text-align: center;
}

.case_img img {
    width: 100%;
}

.case_img .sp_img {
    display: none;
}

.voice {
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice img {
    width: 130px;
    height: auto;
}

/* .voice_comment {
    width: 470px;
    height: 131px;
    background-image: url("../img/suggest/voice.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding: 25px 60px;
} */



.voice_comment {
    position: relative;
    background: #FFFFFF;
    padding: 20px;
    text-align: left;
    border: 3px solid #004078;
    color: #333333;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    margin-left: 24px;
    font-size: 16px !important;
}

.voice_comment::after,
.voice_comment::before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 48%;
}

.voice_comment::after {
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 15px;
    border-right-width: 15px;
    margin-top: -10px;
    border-right-color: #FFFFFF;
}

.voice_comment::before {
    border-color: rgba(255, 124, 92, 0);
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 19px;
    border-right-width: 19px;
    margin-top: -13px;
    margin-right: 3px;
    border-right-color: #004078;
}


@media screen and (max-width:480px) {
    .case {
        left: 50%;
        transform: translateX(-50%);
    }

    #case .main-content {
        padding: 60px 24px;
        margin-top: 40px;
    }

    .case_img {
        margin: 0 -16px 24px;
    }

    .case_img .pc_img {
        display: none;
    }

    .case_img .sp_img {
        display: block;
    }

    .voice {
        display: flex;
        flex-direction: column-reverse;
    }

    .voice_comment {
        margin: 0 0 24px;
    }

    .voice_comment::after,
    .voice_comment::before {
        border: solid transparent;
        content: '';
        height: 0;
        width: 0;
        pointer-events: none;
        position: absolute;
        left: 48%;
        /* right から left に変更 */
        top: 100%;
        /* top から bottom に変更 */
        transform: rotate(180deg);
    }

    .voice_comment::after {
        border-color: rgba(255, 255, 255, 0);
        border-top-width: 0;
        border-bottom-width: 15px;
        border-left-width: 15px;
        border-right-width: 15px;
        margin-top: 0;
        /* margin-top を変更 */
        margin-left: -15px;
        /* margin-left を変更 */
        border-bottom-color: #FFFFFF;
        /* border-right-color を変更 */
    }

    .voice_comment::before {
        border-color: rgba(255, 124, 92, 0);
        border-top-width: 0;
        border-bottom-width: 19px;
        border-left-width: 19px;
        border-right-width: 19px;
        margin-top: 0;
        /* margin-top を変更 */
        margin-left: -19px;
        /* margin-left を変更 */
        border-bottom-color: #004078;
        /* border-right-color を変更 */
    }


}



.red {
    color: #DD0400 !important;
}


.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_item {
    text-align: center;
}

.suggest_img {
    /* height: 184px; */
    margin-bottom: 24px;
    width: 100%;
}

.arrow {
    width: 20px;
    height: 100%;
    margin: 0 14px;
    display: block;
}

.suggest_content p {
    text-align: center;
    color: #004078;
    font-weight: bold;
}

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

    .flex_item {
        display: flex;
        width: 100%;
    }

    .suggest_img {
        width: 100%;
        max-width: 250px;
    }

    .flex {
        flex-direction: column;
        align-items: center;
    }

    .flow ul .arrow {
        margin: 0 !important;
        margin-left: 32px !important;
    }

    .flow ul li {
        margin: 16px 0 !important;
    }

    .flow .arrow,
    .suggest_content .arrow {
        transform: rotate(90deg);
    }

    .main_ttl .red {
        font-size: 32px;
    }

}




/* .eikyo .suggest_img {
    width: 100%;
} */


@media screen and (max-width:480px) {
    .flex_item {
        margin-bottom: 0;
    }

    .suggest_content {
        text-align: center;
    }

    .suggest_content p {
        font-size: 18px;
    }

    .suggest_content .arrow {
        margin: 24px auto;
    }

    .suggest_content .flex_item {
        display: block;
    }

    .suggest_img {
        width: 80% !important;
        margin-bottom: 16px;
    }
}




.campaign {
    margin-top: 150px;
}

.campaign .main-content {
    position: relative;
    box-shadow: none;
    background-color: #F1F1F1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.campaign_ttl {
    width: 100%;
    max-width: 400px;
    position: absolute;
    top: -80px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.campaign .flex_item {
    margin: 0 32px;
    color: #004078;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.campaign .flex_item p {
    text-align: left;
}

.campaign_img-1 {
    width: 299px;
    display: block;
    margin-bottom: 24px;
}

.campaign_img-2 {
    width: 214px;
    display: block;
    margin-bottom: 24px;
}

@media screen and (max-width:480px) {
    .campaign .main-content {
        flex-direction: column;
        align-items: center;
        padding: 80px 0 0;
    }

    .campaign .flex_item {
        margin-bottom: 32px;
    }
}







.flow {
    padding: 60px 40px;
    position: relative;
    background-color: #265D8C;
    z-index: 2;
}

.flow::after {
    content: "";
    background-image: url("../img/suggest/26470957_m.jpg");
    background-size: cover;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}

.flow .main-content,
.flow .main_ttl {
    z-index: 3;
    position: relative;
}

.flow .main_ttl>span {
    color: #fff;
    background-image: linear-gradient(90deg, #fff 0 50%, #FA6466 50%);
}

.flow .main-content {
    position: relative;
    box-shadow: none;
    background-color: initial;
    padding: 0;
}

.flow ul {
    display: flex;
    justify-content: center;
}

.flow ul .arrow {
    margin-top: 32px;
}

.flow ul li {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.flow ul li img {
    max-width: 83px;
    width: 100%;
    display: block;
    margin: 0 auto 16px;
}


@media screen and (max-width:786px) {
    .flow ul {
        flex-wrap: wrap;
        width: 100%;
    }

    .flow ul li {
        width: 18%;
        margin-bottom: 32px;
    }
}

@media screen and (max-width:480px) {
    .flow.main-body {
        padding: 60px 24px;
    }

    .flow ul {
        flex-wrap: nowrap;
        flex-direction: column;
        padding: 0 64px;
    }

    .flow ul li {
        text-align: left;
        font-size: 16px;
        width: 100%;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }

    .flow ul li img {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 18px;
        margin-left: 0;
    }

}







.media .main-content {
    box-shadow: none;
    background-color: initial;
    padding: 0;
}

.media ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.media ul.campany_list li {
    width: 25%;
    text-align: center;
    margin-bottom: 24px;
}

.media ul.campany_list li img {
    width: 100%;
}

.media_up {
    display: block;
    margin: 0 auto 24px;
    width: 100%;
}


.fqa .main-content {
    box-shadow: none;
}

.fqa dt {
    background: rgb(0, 64, 120);
    background: linear-gradient(90deg, rgba(0, 64, 120, 1) 0%, rgba(2, 66, 121, 1) 20%, rgba(10, 73, 126, 1) 37%, rgba(25, 85, 135, 1) 56%, rgba(45, 103, 147, 1) 75%, rgba(71, 126, 163, 1) 84%, rgba(70, 139, 171, 1) 90%, rgba(140, 187, 205, 1) 97%, rgba(168, 211, 222, 1) 100%);
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 24px;
    cursor: pointer;
    padding: 4px;
}

.fqa dt:first-child {
    margin-top: 0;
}

.fqa dt span.q {
    display: inline-block;
    /* padding: 15px 5px 15px 16px; */
    padding: 10px 5px 10px 16px;
    background-color: #fff;
    color: #004078;
    /* margin: 4px 32px 4px 4px; */
    margin-right: 30px;
    position: relative;
    border-radius: 8px 0 0 8px;
}

.fqa dt span.q::after {
    content: "";
    border-style: solid;
    /* border-width: 25px 0 25px 24px; */
    border-width: 22px 0 22px 24px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    right: -24px;
    top: 0;
}

.plus {
    display: inline-block;
    margin-left: auto;
    margin-right: 12px;
    color: #fff;
    position: relative;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.plus::before,
.plus::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .5s;
}

.plus::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .5s;
}

.open .plus::before {
    opacity: 0;
}

.open .plus::after {
    transform: translateY(-50%) rotate(180deg);
}


.fqa dd {
    display: none;
}

.fqa dd div {
    display: flex;
    padding: 24px 4px;
    align-items: center;
    font-size: 20px;
    color: #DD0400;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.fqa dd span.a {
    display: inline-block;
    padding: 10px 5px 10px 16px;
    background-color: #DD0400;
    color: #fff;

    margin-right: 30px;
    position: relative;
    border-radius: 8px 0 0 8px;
}

.fqa dd span.a::after {
    content: "";
    border-style: solid;
    /* border-width: 25px 0 25px 24px; */
    border-width: 22px 0 22px 24px;
    border-color: transparent transparent transparent #DD0400;
    position: absolute;
    right: -24px;
    top: 0;
}

.q_comment,
.a_comment {
    margin-right: 14px;
    display: inline-block;
}

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

    .fqa dd div {
        align-items: flex-start;
    }
}

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

    .fqa .main-content {
        padding: 0;
    }

    /* .fqa dt span.q.column-2 {
        padding: 17px 5px 17px 16px;
    }

    .fqa dt span.q.column-2::after {
        border-width: 35px 0 35px 24px;
    } */
}




.info {
    padding: 60px;
    position: relative;
    background-color: #265D8C;
    z-index: 2;
}

.info::after {
    content: "";
    background-image: url("../img/suggest/26470957_m.jpg");
    background-size: cover;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}

.info .main-content {
    z-index: 3;
    position: relative;
    background-color: initial;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    box-shadow: none;
    padding: 0;
}

.info .main-content>span {
    font-size: 46px;
}

.info .main-content>small {
    font-weight: normal;
    font-size: 16px;
    display: block;
    margin-top: 16px;
}

.sp_block {
    display: none;
}

@media screen and (max-width:786px) {
    .sp_block {
        display: block;
    }
}





.footer .main-content {
    padding: 0;
    text-align: center;
    font-size: 11px;
    box-shadow: none;
}

.footer.main-body {
    padding: 32px;
}


.form-content {
    max-height: calc(100vh - 64px);
    overflow: scroll;
}

.sp-form-ttl {
    display: none;
}

@media screen and (min-width:1920px) {
    .form-body {
        width: 30%;
        margin-right: 10%;
    }

    .main_ttl,
    .main-content {
        width: 45%;
        margin-left: 15%;
    }
}

@media screen and (max-width:786px) {
    .form-body {
        position: inherit !important;
        top: initial !important;
        width: 100%;
        padding: 52px 32px;
    }

    .form-content {
        max-height: 100% !important;
        overflow: hidden;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .main-content {
        width: 100%;
    }

    .main_ttl {
        width: 100%;
    }

    .sp-form-ttl {
        display: block;
        margin-bottom: 16px;
    }

    .sp-form-ttl img {
        width: 100%;
    }


}

@media screen and (max-width:480px) {
    .main-body {
        padding: 60px 24px;
    }

    .main_ttl>span {
        font-size: 24px;
    }
}



/* fixed問い合わせリンク : スマホのみ

====================================================*/

.form_link-btn.sp {
    display: none;
}


@media screen and (max-width:786px) {
    .form_link-btn.sp {
        width: 100%;
        background-color: #fff;
        box-shadow: 5px 5px 13px 0px rgba(0, 64, 120, 0.44);
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 4;
        text-align: center;
        color: #030712;
        display: block;
    }

    .none {
        opacity: 0;
        z-index: -4;
    }

    .form_link-btn a {
        padding: 16px 24px;
        display: block;
        background-color: #43A0B8;
    }

    .link_txt {
        color: #fff;
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: bold;
    }

    .link_btn {
        background-color: #FEDC5E;
        color: #030712;
        font-size: 18px;
        font-weight: bold;
        padding: 8px 24px;
        display: inline-flex;
        border-radius: 4px;
		align-items: center;
    }

    .link_btn::after {
        content: "▶︎";
        color: #fff;
        background-color: #030712;
        border-radius: 26px;
        width: 22px;
        font-size: 10px;
        display: flex;
        height: 22px;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
        padding-left: 2px;
    }
}