@charset "UTF-8";

:root {
    --inner-width: 980px;
    --light-blue: #1a9abe;
    --font_clamp_16: clamp(0.625rem, -0.084rem + 1.77vw, 1rem);
    --font_clamp_18: clamp(0.875rem, 0.402rem + 1.18vw, 1.125rem);
    --font_clamp_20: clamp(0.875rem, 0.166rem + 1.77vw, 1.25rem);

}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    overflow-x: hidden;
}

sup {
    font-size: 10px;
}

a {
    transition: .3s all;
}

a:hover {
    opacity: 0.8;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.pc_hide {
    display: none;
}

p:not(:last-child) {
    margin-bottom: 1em;
}

/*-----------------------------------------------
汎用
-----------------------------------------------*/
a.btn_1,
a.btn_1:link,
a.btn_1:visited {
    border-radius: 50px;
    border: 2px solid var(--light-blue);
    background-color: #fff;
    color: var(--light-blue);
    padding: 20px 40px;
    text-decoration: none;
    font-size: var(--font_clamp_20);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

a.btn_1::after {
    content: "";
    display: block;
    mask-image: url(/g/seminar9_240913/img/arrow.svg);
    mask-size: contain;
    background-color: var(--light-blue);
    width: 1em;
    height: 1em;
    position: absolute;
    right: 20px;
}

.title_1 {
    text-align: center;
    margin-bottom: 30px;
}

.title_1 .under_line {
    color: var(--light-blue);
    font-size: 40px;
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(transparent 60%, #fff6c1 60%);
}

.title_2 {
    background-color: #0f4776;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.title_2:before {
    content: "";
    background-image: url(/g/seminar9_240913/img/icon_light.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 49px;
    height: 47px;
    margin-top: -25px;
    margin-right: 10px;
}

.app_steps {
    display: flex;
    justify-content: center;
    counter-reset: number 0;
    gap: 50px;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    --pd-top: 20px;
    margin-bottom: 20px;
}

.app_steps li {
    border-radius: 50%;
    padding: 10px;
    padding-top: var(--pd-top);
    width: calc(150 / 800 * 100%);
    height: calc(150 / 800 * 100%);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    position: relative;
    font-size: clamp(0.75rem, -0.333rem + 2.67vw, 1rem)
}

.app_steps li:before {
    position: absolute;
    top: var(--pd-top);
    counter-increment: number 1;
    content: counter(number) "";
    font-size: clamp(0.75rem, -1.037rem + 4.4vw, 1.438rem);
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: auto;
}


.app_steps li.active {
    background-color: #5FB8C2;
    color: #fff;
}

.app_steps li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: 18px;
    height: 20px;
    right: -35px;
    background: url(/g/general2/img/cv_arrow.svg) right center no-repeat;
    background-size: 100%;
    top: 50%;
    transform: translate(0, -50%);
}


.app_steps li .title {
    display: block;
    line-height: 110%;
}

.app_steps li .done {
    color: #b40000;
    font-weight: bold;
    flex: 1;
}

.app_steps li .s {
    font-size: 12px;
}

.app_steps li a:link,
.app_steps li a:visited {
    color: inherit;
    text-decoration: underline;
    flex: 1;
}

.text_red {
    color: #c20000;
}

/*-----------------------------------------------
レイアウト
-----------------------------------------------*/
body {
    font-size: 18px;
}

#container {
    padding-top: 60px;
}

header {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 90;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--inner-width);
    padding: 10px 15px 10px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    width: 50%;
    max-width: 200px;
}

header .account_btn_wrap {
    border-radius: 20px;
    font-size: 10px;
    height: 34px;
    width: 40%;
    max-width: 260px;
}

header .account_btn_wrap a.btn {
    font-size: 10px;
    color: #231815;
    background: #ffea00;
    display: block;
    font-weight: bold;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
    width: 100%;
    box-shadow: 0px 5px 0px 0px #c3b300;
    position: relative;
    padding: 5px 10px;
    margin-top: -5px;
}


#footerWrap {
    width: 100%;
    background: #f1f9fd;
    line-height: 1.8;
    letter-spacing: .05rem;
}

#footerWrap #attention h3 {
    margin: 0 0 30px;
}

#footerWrap #attention h3 span {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding: 47px;
}

#footerWrap #attention h3 span::before {
    position: absolute;
    content: "";
    display: block;
    background: url("../img/atten_ico.png") left center no-repeat;
    background-size: 100%;
    width: 94px;
    height: 85px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#footerWrap #attention {
    margin: 10px auto;
    background: url(/g/img/beginner/attention.gif) no-repeat 10px 20px;
    background-size: 100px auto;
    padding: 55px 10px 10px 10px;
    width: 100%;
    max-width: 980px;
    font-size: 12px !important;
    box-sizing: border-box;
}

#footerWrap #attention dt {
    font-weight: bold !important;
    margin-bottom: 5px;
    font-size: 14px;
}

#footerWrap #attention dd {
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 14px;
}

#footerWrap #attention a.textlink1 {
    font-size: 10px;
}

#footerWrap #attention2 {
    width: 100%;
    max-width: 980px;
    margin: 10px auto;
    padding-top: 0;
    box-sizing: border-box;
    padding-bottom: 10px;
}

#footerWrap #attention2 a {
    font-size: 16px;

    transition: .3s all;
    font-weight: bold;
    color: #116FBB;
    margin: 0 0 5px;
}

#footerWrap #attention2 a:hover {
    border-bottom: none;
}

#footerWrap #footer {
    width: 100%;
    min-width: inherit;
    background: none;
    padding: 10px 0;
    text-align: center;
    background-color: #ffffff;
}

#footerWrap #attention {
    background: url(/g/general2/img/atten_icon2.png) no-repeat left 15px;
    padding: 100px 10px 10px 10px;
}

section>.inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    letter-spacing: 0.1em;
    color: #2d2d2d;
}

/*-----------------------------------------------
ビジュアル
-----------------------------------------------*/
#sec_visual {
    text-align: center;
}

#sec_visual>.inner {
    max-width: var(--inner-width);
}


/*-----------------------------------------------
当社主催のセミナーについて
-----------------------------------------------*/
#sec_leadatn>.inner {
    max-width: 980px;
    margin: auto;
    padding: 40px 0;
    font-size: 14px;
}

#sec_leadatn>.inner .title {
    color: #2d2d2d;
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

#sec_leadatn>.inner .text {
    letter-spacing: 0.06em;
}

/*-----------------------------------------------
申込み
-----------------------------------------------*/
.sec_application {
    background-color: #cff4ff;
}

.sec_application .inner {
    max-width: var(--inner-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
}

.sec_application .inner .title {
    color: var(--light-blue);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.sec_application .btns_wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.sec_application .inner .btn_1 {
    width: 100%;
    max-width: 394px;
}

.sec_application .inner .btn_1.line {
    background-color: #06c755;
    border: none;
    color: #fff;
}

.sec_application .inner .btn_1.line:after {
    background-color: #fff;
}

/*-----------------------------------------------
リード
-----------------------------------------------*/
#sec_lead>.inner {
    max-width: 710px;
    padding: 100px 0;
}

#sec_lead .visual {
    margin-bottom: 50px;
    text-align: center;
}

#sec_lead .method_text {
    margin-bottom: 30px;
}

#sec_lead .method_text em {
    font-size: 24px;
    color: #ef841b;
}

#sec_lead .method_text em .s {
    font-size: 18px;
}

#sec_lead .so {
    background-color: #fff9e7;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

#sec_lead .so .so_img {
    margin-bottom: 20px;
    display: inline-block;
}

/*-----------------------------------------------
セミナー内容
-----------------------------------------------*/
#sec_seminar {
    background-image: url(/g/seminar9_240913/img/seminar/bg.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
}

#sec_seminar .inner {
    padding: 100px 0;
    padding-top: 0;
    max-width: 670px;
}

#sec_seminar .menu {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    max-width: 670px;
    width: 100%;
    margin: auto;
    padding: 30px;
    color: #0f4776;
    margin-bottom: 30px;
}

#sec_seminar .menu li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#sec_seminar .menu li:last-child {
    margin-bottom: 0px;
}

#sec_seminar .menu li::before {
    margin-right: 15px;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    width: 50px;
    height: 50px;
}

#sec_seminar .menu li:nth-child(1)::before {
    background-image: url(/g/seminar9_240913/img/seminar/icon_x.svg);
}

#sec_seminar .menu li:nth-child(2)::before {
    background-image: url(/g/seminar9_240913/img/seminar/icon_shield.svg);
}

#sec_seminar .menu li:nth-child(3)::before {
    background-image: url(/g/seminar9_240913/img/seminar/icon_memo.svg);
}

#sec_seminar .menu li:nth-child(4)::before {
    background-image: url(/g/seminar9_240913/img/seminar/icon_light.svg);
}

#sec_seminar .qaTime {
    border-radius: 10px;
    background-color: #6d97c2;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    max-width: 670px;
    width: 100%;
    margin: auto;
    padding: 30px;
    color: #fff;
    margin-bottom: 30px;
}

#sec_seminar .qaTime .title {
    font-size: 32px;
    font-weight: bold;
}

#sec_seminar .qaTime .body {
    display: flex;
}

#sec_seminar .qaTime .body:after {
    content: "";
    flex-shrink: 0;
    width: 137px;
    height: 84px;
    background-image: url(/g/seminar9_240913/img/seminar/img_qa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 15px;
}


#sec_seminar .more {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    justify-content: center;
    margin-bottom: 20px;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1);
    font-weight: bold;
}

#sec_seminar .more .circle {
    background-color: #ffb040;
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 500;
    margin-right: 15px;
    text-shadow: none;
}

#sec_seminar .mov {
    margin-bottom: 20px;
}


/*-----------------------------------------------
セミナー講師
-----------------------------------------------*/
#sec_teacher>.inner {
    max-width: var(--inner-width);
}

#sec_teacher>.inner .teacher_wrap {
    display: grid;
    grid-template-areas:
        "img name"
        "img text";
    grid-template-columns: 216px auto;
}

#sec_teacher>.inner .teacher_wrap .img {
    grid-area: img;
    margin-right: 30px;
}

#sec_teacher>.inner .teacher_wrap .name {
    grid-area: name;
    margin-bottom: 1em;
}

#sec_teacher>.inner .teacher_wrap .cls {
    display: block;
}

#sec_teacher>.inner .teacher_wrap .fullname {
    font-size: 20px;
    font-weight: bold;
}

#sec_teacher>.inner .teacher_wrap .kana {
    font-size: 16px;
    color: #919191;
}

#sec_teacher>.inner .teacher_wrap .text {
    grid-area: text;
}


/*-----------------------------------------------
セミナー流れ
-----------------------------------------------*/
#sec_seminar_steps>.inner {
    padding: 50px 0;
    max-width: var(--inner-width);
}

#sec_seminar_steps .boxes {
    display: flex;
    counter-reset: num;
    justify-content: space-between;
    gap: 5px;
}

#sec_seminar_steps .boxes .box {
    border: 2px solid #0f4776;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

#sec_seminar_steps .boxes .box .head {
    color: #fff;
    font-size: var(--font_clamp_18);
    text-align: center;
    background-color: #0f4776;
    border-radius: 5px 5px 0 0;
    padding: 10px;
}

#sec_seminar_steps .boxes .box .head:before {
    counter-increment: num;
    content: "STEP" counter(num);
    background-color: #fff;
    color: #0f4776;
    font-size: 14px;
    text-align: center;
    padding: 5px 20px;
    border-radius: 20px;
    display: block;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

#sec_seminar_steps .boxes .box .body {
    padding: var(--font_clamp_20);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #3b3b3b;
    font-size: var(--font_clamp_16);
    letter-spacing: 0.04em;
    flex: 1;
}

#sec_seminar_steps .boxes .box .body .btn_1 {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 20px;
}

#sec_seminar_steps .boxes .arrow {
    width: 15px;

    display: flex;
    align-items: center;
}

#sec_seminar_steps .boxes .arrow hr {
    content: "";
    display: block;
    background: #0f4776;
    height: calc(tan(60deg) * 30px / 2);
    width: 15px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*-----------------------------------------------
セミナー詳細
-----------------------------------------------*/
#sec_seminar_detail>.inner {
    max-width: 710px;
    padding-bottom: 100px;
}

#sec_seminar_detail .detail_list {
    background-color: #f6f6f6;
    padding: 30px;
    margin-bottom: 10px;
}

#sec_seminar_detail .detail_list .group {
    display: flex;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #c5c5c5;
}

#sec_seminar_detail .detail_list .group:last-child {
    border: none;
    padding: 0;
    margin: 0;
}

#sec_seminar_detail .detail_list dt {
    color: #0f4776;
    font-size: 20px;
    width: 6em;
}

#sec_seminar_detail .detail_list dd {
    font-size: 18px;
    flex: 1;
    color: #494949;
}

#sec_seminar_detail .detail_list dd .text_s {
    font-size: 14px;
}

#sec_seminar_detail .attention_list {
    font-size: 14px;
    letter-spacing: 0.04em;
}

/*-----------------------------------------------
特別特典
-----------------------------------------------*/
#sec_specialBenefits>.inner {
    max-width: var(--inner-width);
    padding-block: 50px;
}

#sec_specialBenefits .us_titleImg {
    margin-bottom: 10px;
    display: block;
}

#sec_specialBenefits .attention {
    font-size: 12px;
}

#sec_specialBenefits .usList {
    margin-top: 20px;

}

#sec_specialBenefits .usList .title {
    font-weight: bold;
    width: 100%;
}

#sec_specialBenefits .usList .listsWrap {
    background-color: #f7f7f7;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

#sec_specialBenefits .usList .lists {
    font-size: 14px;
    flex: 1;

}

#sec_specialBenefits .usList .lists>li {
    margin-bottom: 10px;
}

#sec_specialBenefits .usList .lists li>ul {
    font-size: 12px;
    color: #787878;
}



/*-----------------------------------------------
特典受け取り・サンクス
-----------------------------------------------*/
#page_specialBenefitsEntry #sec_specialBenefitsEntry {
    background-color: #fff;
}

#page_specialBenefitsEntry #sec_specialBenefitsEntry>.inner {
    max-width: 900px;
    margin: auto;
    padding: 50px 0;
    text-align: center;
}

#page_specialBenefitsEntry #sec_specialBenefitsEntry>.inner>h1.title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

#sec_specialBenefitsEntry .visual {
    margin-bottom: 20px;

}

#sec_specialBenefitsEntry .visual img {
    box-shadow: 0px 0px 3px 0px rgb(0, 0, 0, 0.4);
}

#sec_specialBenefitsEntry .lead {}

#sec_specialBenefitsEntry .attention {
    font-size: 12px;
}

#page_specialBenefitsEntry #sec_entryform>.inner {
    padding-top: 0;
}

#page_specialBenefitsEntry #sec_entryform .attention {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#page_specialBenefitsEntry #sec_entryform .attention li {
    font-size: 13px;
    text-align: left;
}

#sec_specialBenefitsEntry>.inner .stepWrap h2.title,
#page_specialBenefitsEntryThanks .stepWrap h2.title {
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 22px;
}

#page_specialBenefitsEntry #campaign,
#page_specialBenefitsEntryThanks #campaign {
    background-color: #203864;
    padding-block: 50px;
    position: relative;
}

#page_specialBenefitsEntry #campaign:before,
#page_specialBenefitsEntry #campaign:after,
#page_specialBenefitsEntryThanks #campaign:before,
#page_specialBenefitsEntryThanks #campaign:after {
    content: "";
    width: 176px;
    height: 175px;
    position: absolute;
    display: block;
    background-image: url(/g/seminar9_240913/img/specialBenefits/ribbon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

#page_specialBenefitsEntry #campaign:after,
#page_specialBenefitsEntryThanks #campaign:after {
    top: inherit;
    left: inherit;
    bottom: 0;
    right: 0;
    transform: scale(-1, -1);
}

#page_specialBenefitsEntry #campaign>.inner,
#page_specialBenefitsEntryThanks #campaign>.inner {
    max-width: 1100px;
    margin-inline: auto;
}


#page_specialBenefitsEntry #campaign>.inner>.title {
    color: #ffff66;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}

#page_specialBenefitsEntry #campaign>.inner>.title em {
    font-size: 46px;
    font-weight: bold;
    display: block;
}

#page_specialBenefitsEntry #campaign>.inner .img {
    z-index: 1;
    position: relative;
    margin-bottom: 20px;
}

#page_specialBenefitsEntry #campaign .campaign-dt-btn a,
#page_specialBenefitsEntry #campaign .campaign-dt-btn a:visited,
#page_specialBenefitsEntryThanks #campaign .campaign-dt-btn a,
#page_specialBenefitsEntryThanks #campaign .campaign-dt-btn a:visited,
#page_specialBenefitsEntryThanks #campaign a.accountCreateBtn {
    position: relative;
    display: block;
    max-width: 450px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    border: 1px solid #6f6f6f;
    padding: 14px 0;
    font-size: 20px;
    background: #fff;
    font-weight: bold;
    cursor: pointer;
    color: #212121;
    text-decoration: none;
}

#page_specialBenefitsEntry #campaign .campaign-dt-btn a:after,
#page_specialBenefitsEntryThanks #campaign .campaign-dt-btn a:after,
#page_specialBenefitsEntryThanks #campaign .accountCreateBtn:after {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 14px;
    right: 15px;
    background: url(/g/general2/img/cv_arrow.svg) right center no-repeat;
    background-size: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

#page_specialBenefitsEntryThanks #campaign a.accountCreateBtn {
    margin-bottom: 20px;
    box-shadow: 0px 7px 0px 0px #c3b300;
    background: #ffea00;
    border: none;
}

#page_specialBenefitsEntryThanks .attention {
    color: #fff;
    font-size: 14px;
    max-width: 650px;
    margin-inline: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
    text-align: center;
}

#page_specialBenefitsEntryThanks .att_box {
    border: 6px solid #ffe1e1;
    padding: 20px;
    text-align: left;
    max-width: 800px;
    margin: 25px auto;
    font-size: 14px;
}


/*-----------------------------------------------
エントリーフォーム
-----------------------------------------------*/
#sec_entryform .inner {
    max-width: var(--inner-width);
    margin: auto;
    padding: 50px 0;
    text-align: center;
}

#sec_entryform h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}


#sec_entryform .form_wrap {
    background-color: #e9f4f5;
    padding: 40px;
    max-width: 710px;
    margin: auto;
    margin-top: 20px;
    border-radius: 10px;
}

#sec_entryform .form_wrap .title {
    color: #1a9abe;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sec_entryform .form_wrap .title:before {
    content: "";
    background-image: url(/g/seminar9_240913/img/icon_mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 90px;
    height: 71px;
    margin-bottom: 20px;
}

#sec_entryform .form_wrap #satori__creative_container {
    margin-top: 30px;
}

#sec_entryform .form_wrap #satori__creative_container .satori__input_group {
    padding: 0;
}

#sec_entryform .satori__custom_form {
    background-color: transparent;
}

#sec_entryform .atn {
    font-size: 14px;
    color: #343434;
    text-align: left;
}


/*-----------------------------------------------
モーダル
-----------------------------------------------*/
#modal .container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

#modal .container .inner {
    background-color: #fff;
    padding: 0;
}

#modal .container>h1.title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

#modal .container .step_boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

#modal .container .step_boxes .box {
    max-width: 410px;
    width: 50%;
}

#modal .container .step_boxes .box .title {
    background-color: #0f4776;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 80px;
}

#modal .container .step_boxes .box .title .circle {
    width: 1.3em;
    height: 1.3em;
    color: #0f4776;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin-right: 10px;
}

#modal .container .step_boxes .box .img {
    text-align: center;
}

#modal .applicatiion_wrap {
    border-top: 1px solid #e5e5e5;
}

#modal .applicatiion_wrap .title {
    text-align: center;
    padding: 20px;
}



/*-----------------------------------------------
サンクス
-----------------------------------------------*/
#sec_thanks {}

#sec_thanks>.inner {
    max-width: 900px;
    margin: auto;
    padding: 50px 0;
    text-align: center;
}

#sec_thanks>.inner h1.title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

#sec_thanks>.inner .steps {
    display: flex;
    justify-content: space-between;
    counter-reset: number 0;
    margin-top: 30px;
    max-width: 800px;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
}

#sec_thanks>.inner .steps li {
    border-radius: 50%;
    padding: 10px;
    width: calc(150 / 800 * 100%);
    height: calc(150 / 800 * 100%);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    position: relative;
    font-size: clamp(0.75rem, -0.333rem + 2.67vw, 1rem)
}

#sec_thanks>.inner .steps li:before {
    counter-increment: number 1;
    content: counter(number) "";
    position: absolute;
    top: 20px;
    font-size: clamp(0.75rem, -1.037rem + 4.4vw, 1.438rem);
    font-family: Arial, Helvetica, sans-serif;
}

#sec_thanks>.inner .steps li:nth-child(2) {
    background-color: #5FB8C2;
    color: #fff;
}

#sec_thanks>.inner .steps li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: 18px;
    height: 20px;
    right: -31%;
    background: url(/g/general2/img/cv_arrow.svg) right center no-repeat;
    background-size: 100%;
    top: 50%;
    transform: translate(0, -50%);
}


#thanks #sec_action .cv02>.inner {
    padding-top: 50px;
    padding-bottom: 0px;
}

#thanks #sec_action .cv02 a:link,
#thanks #sec_action .cv02 a:visited,
#thanks .campaign-dt-btn a {
    max-width: 400px;
    letter-spacing: 0.04em;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#thanks #sec_action .cv02 a:after,
#thanks .campaign-dt-btn a:after {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 14px;
    right: 15px;
    background: url(/g/general2/img/cv_arrow.svg) right center no-repeat;
    background-size: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

/*-----------------------------------------------
ページ - アンケート
-----------------------------------------------*/
#page_question #sec_question>.inner {
    max-width: var(--inner-width);
    padding: 65px 0;
}

#page_question #sec_question>.inner h1.title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

#page_question #sec_question>.inner .lead {
    text-align: center;
}

#page_question #form {
    background-color: #e6f5f4;
    padding: 50px 0;
}

#page_question #form>.inner {
    max-width: 840px;
    background-color: #fff;
    padding: 30px 50px;
}