@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Gothic&subset=japanese");

body {
    word-wrap: break-word;
    font-family: "Sawarabi Gothic", sans-serif;
    line-height: 1 !important;
}

@media (min-width: 640px) {
    body {
        font-size: 15px;
    }
}

/* ---------------------------------------------------------------
common
--------------------------------------------------------------- */
:root {
    /* --color-primary 濃い色*/
    --color-primary: rgb(74, 98, 255);
    --color-primary-contrast: #FFFFFF;
    /* --color-secondary 薄い色*/
    --color-secondary: rgb(229, 233, 255);
    --color-secondary-contrast: #000000;
}


a:link {
    text-decoration: none;
    color: #000;
}

a:visited {
    color: #000;
}

p {
    margin: 0;
    line-height: 1.5em;
}

figure {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
}

/*================================================================
PC
================================================================*/
/* ---------------------------------------------------------------
header
--------------------------------------------------------------- */

div#header_area {
    background: #fff;
    height: 135px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

div.header_content_ {
    display: flex;
    margin: 0 auto;
    margin-top: 44px;
    max-width: 960px;
    padding-bottom: 44px;
    border-bottom: solid 3px #6E6E6E;
}

#mainvisual {
    background-color: var(--color-primary) !important;
    margin-top: 10px;
}

@media screen and (max-width: 639px) {
    #globalHeader .topHeader {
        width: 100%;
        background-color: #FFF;
        position: fixed;
        width: 100%;
        z-index: 1;
    }
}

.siteName {
    line-height: 1.3;
}

.slick-dots {
    display: none !important;
}

div#logo_ykk img {
    height: 45px;
    padding-left: 68px;
}

div#logo_title {
    width: 365px;
    font-size: 22px;
    display: flex;
    padding-left: 185px;
}

div#logo_title img {
    height: 40px;
    margin-right: 20px;
}

div#logo_title span {
    vertical-align: bottom;
}

div.pc_index_ {
    min-width: 100%;
    margin: 0px auto;
    font-size: 22px;
    position: static;
    overflow-y: visible;
    /* min-height: 900px; */
}

div.sp_index_ {
    display: none;
}

div.pc_index_ #side_menu_area_index {
    display: flex;
}

div.pc_index_line_ {
    width: 50%;
    float: left;
}

div.pc_index_ inner_ {
    display: block;
}

div.pc_index_ .ham_chapter_ {
    background: none;
    padding: 9px;
    color: var(--color-primary);
    cursor: auto;
    z-index: 9;
    border-bottom: solid 2px var(--color-primary);
}

div.pc_index_ .ham_chapter_ .ham_chapter_con_ {
    display: block;
    justify-content: space-between;
    position: static;
    z-index: 9;
}

div.pc_index_ .ham_task_,
div.pc_index_ .inner_ {
    background: none;

}

div.pc_index_ .ham_action_ {
    display: none;
}

/*hamburger icon*/
@media screen and (min-width: 768px) {
    a.ham_btn_ {
        display: none !important;
    }
}

a.ham_btn_ {
    display: none;
    cursor: pointer;
    float: right;
}

a.ham_btn_,
a.ham_btn_ span {
    box-sizing: border-box;
}

a.ham_btn_ {
    position: relative;
    width: 31px;
    height: 31px;
}

a.ham_btn_ span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #6E6E6E;
    border-radius: 6px;
}

a.ham_btn_ span:nth-of-type(1) {
    top: 4px;
}

a.ham_btn_ span:nth-of-type(2) {
    top: 14px;
}

a.ham_btn_ span:nth-of-type(3) {
    bottom: 4px;
}

a.ham_btn_.close span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }

    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }

    50% {
        transform: translateY(10px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

a.ham_btn_.close span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

a.ham_btn_.close span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }

    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }

    50% {
        transform: translateY(-10px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

a.ham_btn_.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(10px) rotate(0);
    }

    100% {
        transform: translateY(10px) rotate(45deg);
    }
}

a.ham_btn_.active span:nth-of-type(2) {
    opacity: 0;
}

a.ham_btn_.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(0);
    }

    100% {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/*hamburger menu*/
div.ham_menu_ {
    display: none;
    position: fixed;
    width: 100%;
    top: 60px;
    bottom: 0;
    z-index: 1;
    overflow-y: auto;
}

div.ham_chapter_ {
    background: #6E6E6E;
    border-bottom: solid 1px #FFF;
    padding: 9px 30px;
    color: #fff;
    cursor: pointer;
    z-index: 15;
    position: relative;
}

div.ham_chapter_con_ {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-right: 30px;
    z-index: 15;
}

div.ham_chapter_con_:after {
    content: '';
    bottom: -10px;
    width: 100%;
    position: absolute;
    border-top: 1px solid #fff;
    right: 0;
}

div.ham_chapter_con_:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    margin: auto;
    background-image: url(../img/ICONS/icn_plus.png);
    background-size: contain;
}

.ham_chapter_.open {
    background: var(--color-primary);
}

.ham_chapter_.open div.ham_chapter_con_:before {
    background-image: url(../img/ICONS/icn_minus.png);
}

div.ham_task_ {
    background: var(--color-secondary);
    position: relative;
    z-index: 15;
}

div.ham_task_ a {
    display: block;
    padding: 9px 55px 9px 30px;
}

div.ham_action_ {
    background: var(--color-secondary);
    position: relative;
    z-index: 15;
}

div.ham_action_ a {
    display: block;
    padding: 9px 53px;
    color: #000;
}

div.ham_task_ a:after,
div.ham_action_ a:after {
    position: absolute;
    content: '';
    background: url("../img/ICONS/icn_arrow_right_2.png") no-repeat;
    background-size: contain;
    top: 24px;
    right: 31px;
    width: 9px;
    height: 18px;
    margin-top: -9px;
}


/* ---------------------------------------------------------------
main
--------------------------------------------------------------- */
div#main_area {
    /*max-width: 960px;*/
    max-width: 1120px;
    margin: auto;
    /* margin-top: 133px;*/
    display: flex;
}

/*side menu*/
div.side_menu_area_ {
    max-width: 270px;
    min-width: 270px;
    font-size: 15px;
    /*position: fixed;*/
    position: absolute;
    overflow-y: auto;
    top: 135px;
    bottom: 0;
    max-height: 500px;
    overflow-y: scroll;
}

@media (max-width: 768px) {
    div.side_menu_area_.sp-mxh-none {
        max-height:none;
    }
}

div.chapter_box_ {
    background: #6E6E6E;
    color: #fff;
    padding: 13px 35px 13px 15px;
    border-bottom: 2px solid #fff;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

div.chapter_box_.actv {
    background: var(--color-primary);
}

div.chapter_box_::after {
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    background-image: url("../img/ICONS/icn_plus.png");
    background-size: contain;
}

div.chapter_box_.open::after {
    background-image: url("../img/ICONS/icn_minus.png");
}

div.task_box_ {
    position: relative;
}

div.task_box_ a {
    display: block;
    padding: 9px 35px 9px 15px;
}

div.action_box_ {
    background: var(--color-secondary);
    position: relative;
}

div.action_box_ a {
    display: block;
    padding: 9px 35px 9px 30px;
    color: #000;
}

div.task_box_ a:after,
div.action_box_ a:after {
    position: absolute;
    content: '';
    background: url("../img/ICONS/icn_arrow_right_2.png") no-repeat;
    background-size: contain;
    top: 10px;
    right: 15px;
    width: 9px;
    height: 100%;
}

div.index_ {
    min-width: 63%;
    margin: 60px auto;
    font-size: 22px;
    position: static;
    overflow-y: visible;
}

/*bread list*/
div.bread_list_ {
    color: #6E6E6E;
    margin-right: 20px;
    font-size: 14px;
    display: none;
}

div.bread_list_ a,
div.bread_list_ span {
    color: #666666;
}

div.bread_list_ span {
    padding: 0 10px;
}

/*content*/
div#content_area {
    margin-left: 288px;
    /*margin-top: 23px;*/
    width: 100%;
    min-height: 550px;
}

div.main_content_ {
    margin: 35px 77px 50px 54px;
}

div.main_content_ a {
    text-decoration: none;
    color: #3838ad;
}

/*heading*/
h1,
h2,
h3 {
    line-height: 1.25em;
}

h1.task_title_ {
    position: relative;
    padding-bottom: 0.4em;
    font-weight: normal;
    font-size: 24px;
    padding: 3px;
    padding-left: 20px;
    height: auto;
    margin-bottom: 30px;
    background: #6E6E6E;
    color: #FFF;
}

h1.task_title_:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 15px;
    margin-top: 10px;
    /*background-image: repeating-linear-gradient(-45deg, #80C1DC, #80C1DC 3px, #fff 4px, #fff 5.5px);*/
    background: var(--color-primary);
    border-top: solid 5px #FFF;
    /*border-radius: 20px;*/
}


h2.action_title_ {
    position: relative;
    padding-bottom: 0.4em;
    font-weight: normal;
    font-size: 24px;
    padding: 3px;
    padding-left: 20px;
    height: auto;
    margin-bottom: 15px;
    /*background:#6E6E6E;
    color:#FFF;*/
    color: #6E6E6E;
    border-left: solid 20px var(--color-primary);

}

h2.action_title_:nth-child(n+4) {
    margin-top: 20px;
}

/*child link*/
div.child_content_ {
    margin: 33px 0;
}

div.child_box_ {
    margin: 22px 0;
    border: 2px solid #6E6E6E;
    position: relative;
}

div.child_box_ a {
    color: #6E6E6E;
    padding: 15px 40px 15px 18px;
    display: block;
    font-size: 20px;
}

div.child_box_ a:after {
    position: absolute;
    content: '';
    background: url("../img/ICONS/icn_arrow_right_2.png") no-repeat;
    background-size: contain;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 100%;
    margin-top: -9px;
}

/*lead*/
div.lead_ {
    margin: 5px 0;
    color: #666666;
    font-size: 18px;
}

div.block_lead_ {
    width: 152px;
    display: inline-block;
    height: 110px;
    vertical-align: top;
    text-align: center;
    line-height: 27px;
    padding-left: 25px;
}

.step_case_ {
    padding: 10px;
    background: var(--color-secondary);
    text-align: center;
}

.img_shadow_ {
    filter: drop-shadow(3px 3px 3px #CCC);
}

.step_line_ {
    display: inline-block;
    padding: 5px 5px 5px 10px;
    background-image: -moz-linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%);
    background-image: -webkit-linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%);
    background-image: linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%);
    background-position: 0px 15px;
    background-size: 1px 60px;
    background-repeat: repeat-x;
    margin-right: -5px;
}

.step_line_stop_ {
    padding-right: 0;
}

.step_line_start_ {
    padding-left: 0;
}

.step_line_>img {
    vertical-align: baseline;
}

img.step_arrow_ {
    margin: 43.5px 0;
}

.pc_hide_ {
    display: none !important;
}

.service_icon_ {
    margin: 10px;
}

.under_line_ {
    text-decoration: underline;
}

/*ordered List*/
ol {
    counter-reset: list-counter;
    list-style: none;
    padding: 20px 0;
    font-size: 18px;
    background: var(--color-secondary);
    margin: 10px 0;
}

ol li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

ol li:before {
    content: counter(list-counter);
    counter-increment: list-counter;
    border: 1px solid #6E6E6E;
    color: #6E6E6E;
    /*display: block;*/
    display: grid;
    float: left;
    line-height: 20px;
    margin-left: -30px;
    margin-top: 3px;
    text-align: center;
    height: 24px;
    width: 24px;
    border-radius: 50%;
}

.my-gallery {
    text-align: center;
}

/*unordered List*/
ul {
    padding: 0 20px;
    margin: 5px 0;
}

ul li {
    padding-left: 0;
    list-style-type: square;
}

header ul li,
footer ul li {
    list-style-type: unset;
    margin: 0;
}

/*information*/
div.information_ {
    background-color: #EFEFEF;
    margin: 20px 0;
    padding: 10px;
    border: solid 3px #6E6E6E;
}

div.info_title_ {
    font-size: 20px;
    /*color: #6E6E6E;*/
    color: #FFF;
    background: #6E6E6E;
    border-right: solid 10px var(--color-primary);
    margin-bottom: 10px;
    padding: 5px 20px;
    margin-left: -10px;
    width: 50%;
}

/*div.info_title_:before{
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    float: left;
    margin-left: -25px;
    margin-top: 5px;
    background: url('../img/ICONS/icn_light-bulb.png') no-repeat;
    background-size: 20px 20px;
}*/
div.information_ p {
    padding-left: 20px;
    font-size: 16px;
}

p.note_asterisk_ {
    margin-left: 20px;
}

p.asterisk_no1_:before {
    content: "*1";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.asterisk_no2_:before {
    content: "*2";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.asterisk_no3_:before {
    content: "*3";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.asterisk_no4_:before {
    content: "*4";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.asterisk_no5_:before {
    content: "*5";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.bullets_ {
    margin-left: 20px;
}

p.bullets_:before {
    content: "\30FB";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.faq_ {
    margin-left: 20px;
}

p.faq-1_:before {
    content: "\2460";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-2_:before {
    content: "\2461";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-3_:before {
    content: "\2462";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-4_:before {
    content: "\2463";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-5_:before {
    content: "\2464";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-6_:before {
    content: "\2465";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-7_:before {
    content: "\2466";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-8_:before {
    content: "\2467";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-9_:before {
    content: "\2468";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-10_:before {
    content: "\2469";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 2px;
}

p.faq-q1_:before {
    content: "\2474";
    width: 20px;
    height: 20px;
    margin-left: 0px;
    margin-right: 2px;
}

p.faq-q2_:before {
    content: "\2475";
    width: 20px;
    height: 20px;
    margin-left: 0px;
    margin-right: 2px;
}

p.annotation_ {
    margin-left: 20px;
}

p.annotation_:before {
    content: "\203B";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
}

p.annotation-n1_:before {
    content: "\203B 1";
    width: 20px;
    height: 20px;
    margin-left: -30px;
    margin-right: 6px;
}

p.annotation-n2_:before {
    content: "\203B 2";
    width: 20px;
    height: 20px;
    margin-left: -30px;
    margin-right: 6px;
}

span.annotation-small_ {
    margin-left: 20px;
    font-size: small;
}

span.annotation-small_:before {
    content: "\203B";
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-right: 6px;
    font-size: small;
}

.indent_ {
    padding-left: 12px;
    display: inline-block;
}

/*attention*/
div.attention_ {
    background-color: var(--color-secondary);
    margin: 20px 0;
    padding: 20px;
    border: solid 3px var(--color-primary);
    border-radius: 10px;
}

div.att_title_ {
    font-size: 20px;
    color: #FFF;
    margin-bottom: 10px;
    padding: 5px;
    text-align: center;
    background: var(--color-primary);
    font-weight: bold;
    border-radius: 15px;
}

div.att_title_:before {
    content: "";
    width: 90px;
    height: 20px;
    display: block;
    margin: 0px auto -20px auto;
    background: url('../img/ICONS/icn_exclamation.png') no-repeat;
    background-size: 20px 20px;
}

div.attention_ p {
    padding-left: 20px;
}

/*table*/
table {
    margin: 20px 0;
    /*border-spacing: 15px 0;*/
    width: 100%;
    border-collapse: separate;
}

th {
    background-color: #666666;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
    padding: 5px 0;
    text-align: center;
}
th.f_size {
    font-size: unset;
}

th:first-child {
    /* width: 35%; */
}

td {
    border-bottom: 2px solid #D1D1D1;
    padding: 5px;
    color: #666666;
}

td:first-child {
    color: #000;
}

table.description_table_sp_ {
    display: none;
}

table.description_table_ {
    font-size: 18px;
}

table.description_table_ td {
    padding: 0.5em 0.5em;
    word-break: break-all;
}


table.description_table_ img {
    width: 120px;
    height: auto;
    margin: 0;
}

table.description_table_ img.attention_icons_ {
    width: 89px;
    height: auto;
    margin: 0;
}

table.attention_table_ th {
    width: 100%;
    background-color: var(--color-primary);
}

table.attention_table_ td {
    padding: 1em 0.5em;
    word-break: break-all;
}

table.attention_table_ th p {
    text-align: center;
    font-size: 24px;
    vertical-align: middle;
    font-weight: bold;
}

table.attention_table_ th img {
    width: 30px;
    height: auto;
}

table.attention_table_ td img {
    width: 89px !important;
    height: auto;
    margin: 0;
}

table.attention_table_ td {
    font-size: 18px;
    vertical-align: top;
}

table.attention_table_ {
    border-left: 1px solid #FFF;
    border-top: 1px solid var(--color-primary);

}

table.attention_table_ th {
    border-right: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

table.attention_table_ td {
    border-right: 1px solid #FFF;
}

table.attention_table_ tr:last-child>td {
    border-bottom: 1px solid #FFF;
}

h2.attention_title_ {
    border-left: solid 20px #666;
    font-size: 20px !important;
}

table.guideVoice_table {
    font-size: 18px;
    border-color: #FFF;
}

@media (max-width: 768px) {
    table.guideVoice_table {
        font-size: 14px;
    }
}

.guideVoice_table th:nth-child(1) {
    width: 50px;
}

@media (max-width: 768px) {
    .guideVoice_table th:nth-child(1) {
        width: 32px;
        padding-right: 3px;
        padding-left: 3px;
    }
}

.guideVoice_table th {
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #FFF;
}

@media (max-width: 768px) {
    .guideVoice_table th {
        font-size: 16px;
    }
}

.guideVoice_table td {
    border: 1px solid #FFF;
}


.guideVoice_table tbody * {
    color: #000;
}

.guideVoice_table tbody th {
    background-color: unset;
}

.guideVoice_table tbody tr {
    background-color: rgb(229, 233, 255);
}

.guideVoice_table tbody tr:nth-child(even) {
    background-color: rgb(240, 245, 255);
}

@media (max-width: 768px) {
    .guideVoice_table tbody td {
        padding: 0.75em 0.5em 0.75em 0.5em;
    }
}

/*footnote*/
div.footnote_ p {
    font-size: 16px;
    padding-left: 1em;
}

/*procedure*/
div.step_result_ {
    margin: 20px 0 50px;
    padding-left: 38px;
}

div.sr_step_ {
    position: relative;
    font-size: 20px;
    margin: 10px 0;
    /* width: 55%;
    float: right;*/
}

div.sr_step_:nth-of-type(n+3) {
    margin-top: 30px;
}

img.sr_step_num_ {
    position: absolute;
    width: 32px;
    top: -7px;
    left: -38px;
}

div.sr_result_ {
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.2;
}

div.sr_result_:before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    float: left;
    margin-left: -18px;
    margin-top: 1px;
    text-align: center;
    background: url('../img/ICONS/ic_main_01.png') no-repeat;
    background-position: top 5px left 0;
    background-size: 11px 11px;
}

div.sr_result_strong_ {
    background: #F9F9D2;
    margin: 10px 0 25px;
    padding: 10px 0 10px 20px;
    color: #6E6E6E;
    font-size: 16px;
}

div.sr_result_strong_side_ {
    margin-left: -30px;
    padding: 10px 0 10px 0px;
    width: 55%;
    float: right;
}

div.sr_result_strong_side_>ul {
    padding: 0 10px;
    margin: 5px 0;
}

li.ast {
    list-style-type: none;
    position: relative;
}

li.ast::before {
    content: '※';
    display: block;
    position: absolute;
    top: 0;
    left: -1.5em;
}

/*image*/
img {
    max-width: 100%;
    inline-size: unset;
}

img.img_icon_ {
    height: 1em;
    width: auto;
    margin: 0 5px;
    position: relative;
    vertical-align: -10%;
}
img.img_icon_.custom {
    height: 1.5em;
    vertical-align: -0.3em;
    margin: 0 0.1em;
    margin-top: -0.5em;
}

img.img_pop_ {
    cursor: pointer;
    width: 400px;
}

img.img_ver_ {
    width: 184px;
    padding-bottom: 10px;
}

img.img_ver2_ {
    width: 230px;
    padding-bottom: 10px;
}

div.img_screen_ {
    text-align: left !important;
    width: 184px;
}

div.img_screen2_ {
    text-align: left !important;
    width: 230px;
}

div.img_center_ {
    text-align: center;
}

p.img_tap_,
p.img_click_ {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 16px;
}

p.img_left_ {
    text-align: left;
}
div.img_left_ {
    text-align: left;
}

p.img_right_ {
    text-align: right;
}

p.ast_txt {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 16px;
}

img.img_scene {
    width: 70px;
}

/* ---------------------------------------------------------------
footer
--------------------------------------------------------------- */
#globalFooter {
    background-color: #616161;
    line-height: unset;
    font-size: unset;
}

@media (min-width: 640px) {
    #globalFooter {
        padding: 40px 0 20px;
    }
}

div#footer_area {
    z-index: 5;
    height: 200px;
    max-width: 1120px;
    margin: auto;
    text-align: center;
}

div.top_page_ {
    position: fixed;
    bottom: 30px;
    width: 40px;
}

div.top_page_btn_ {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-image: url('../img/ICONS/icn_topbtn.png');
    background-size: 40px 40px;
    float: right;
    margin-right: -920px;
}

div.move_page_btn_ {
    /*position: fixed;*/
    justify-content: center;
    bottom: -1px;
    width: 100%;
    height: 50px;
    /*background-color: #CCE7F1;*/
    /* display: none;*/
}

div.move_page_btn_ a {
    color: #6E6E6E;
    text-decoration: none;
}

div.move_page_btn_ span {
    color: #fff;
    font-size: 200%;
    transform: scale(0.5, 1);
}

a.back_page_ {
    position: relative;
    display: block;
    width: 33%;
    text-align: center;
    padding: 13px 10px 10px 10px;
    float: left;
    font-size: 18px;
}

a.back_page_:after {
    /*position: absolute;*/
    content: '<<';
    /*background: url('../img/ICONS/icn_arrow_left_1.png') no-repeat;
    background-size: contain;
    top: 17px;
    left: 10%;*/
    width: 26px;
    height: 18px;
    padding-right: 10px;
    font-size: 18px;
}

a.next_page_ {
    position: relative;
    display: block;
    width: 33%;
    text-align: center;
    padding: 13px 10px 10px 10px;
    float: left;
    font-size: 18px;
}

a.next_page_:before {
    /*position: absolute;*/
    content: '>>';
    /*background: url('../img/ICONS/icn_arrow_right_2.png') no-repeat;*/
    /*background-size: contain;
    top: 17px;
    right: 10%;*/
    width: 26px;
    height: 100%;
    padding-left: 10px;
    font-size: 18px;
}

.bar_ {
    float: left;
    width: 34%;
    text-align: center;
    padding: 13px 10px 10px 10px;
    font-size: 18px;
}

.bar_:before {
    /*position: absolute;*/
    content: '';
    /*background: url('../img/ICONS/icn_arrow_right_2.png') no-repeat;*/
    /*background-size: contain;
    top: 17px;
    right: 10%;*/
    width: 26px;
    height: 100%;
    padding-left: 10px;
    font-size: 18px;
}

/* 2022年12月29日追記*/
.link-20221229_icon_ {
    margin: 10px 0px 10px 30px;
}

.link-20230117_icon_ {
    margin: 10px auto 10px;
}

.link-20230323_icon_ {
    margin: 10px auto 10px 50px;
}



/*================================================================
SP表示
================================================================*/
/*960px以下*/
/*@media screen and (max-width:960px){*/
@media screen and (max-width:768px) {

    /* ---------------------------------------------------------------
    header
    --------------------------------------------------------------- */
    div#header_area {
        height: 80px;
        display: flex;
    }

    div.header_content_ {
        padding: 0 15px 21px 15px;
        margin-top: 25px;
        width: 100%;
        justify-content: space-between;
    }

    div#logo_ykk img {
        height: 30px;
        padding-left: 0;
    }

    div#logo_title {
        width: 210px;
        padding-left: 0;
        padding-top: 5px;
    }

    div#logo_title img {
        height: 24px;
        margin-right: 6px;
    }

    div#logo_title {
        font-size: 13px;
    }

    div#logo_title span {
        padding-top: 5px;
    }

    a.ham_btn_,
    a.ham_btn_ span {
        display: inline-block;
    }

    div.ham_chapter_ {
        padding: 9px 20px;
        font-size: 16px;
    }

    div.ham_task_ a {
        padding: 9px 43px 9px 20px;
        font-size: 16px;
    }

    div.ham_action_ a {
        padding: 9px 43px;
    }

    div.ham_task_ a:after,
    div.ham_action_ a:after {
        right: 22px;
        margin-top: -15px;
    }

    /* ---------------------------------------------------------------
    main
    --------------------------------------------------------------- */
    div#main_area {
        /*margin: 80px 0 100px;*/
        display: block;
    }

    /*side*/
    div.side_menu_area_ {
        display: none;
    }

    div.index_ {
        display: block;
        min-width: 100%;
        margin: 0 auto;
        font-size: 18px;
    }

    div.index_ div.ham_chapter_con_:after {
        bottom: -10px;
    }

    /*bread*/
    div.bread_list_ {
        margin-left: 20px;
        padding-top: 10px;
        font-size: 12px;
    }

    /*content*/
    div#content_area {
        margin: 0 auto;
        margin-top: 20px;
    }

    div.main_content_ {
        margin: 15px 20px 0;
    }

    /*h1.task_title_{
        font-size: 22px;
    }
    h1.task_title_:after{
        height: 6px;
    }*/
    h2.action_title_ {
        font-size: 22px;
        /*margin-bottom: 14px;*/
    }

    div.lead_ {
        font-size: 16px;
    }

    div.child_content_ {
        margin: 0;
    }

    div.child_box_ {
        margin: 17px 0;
    }

    div.child_box_ a {
        padding: 13px 35px 15px 13px;
    }

    ol {
        font-size: 16px;
    }

    ol li:before {
        line-height: 18px;
        width: 20px;
        height: 20px;
    }

    div.info_title_,
    div.att_title_ {
        font-size: 18px;
    }

    div.sr_step_ {
        font-size: 18px;
    }

    div.sr_result_ {
        font-size: 16px;
        padding-right: 10px;
    }


    /* ---------------------------------------------------------------
    footer
    --------------------------------------------------------------- */
    div.top_page_btn_ {
        bottom: 70px;
        position: fixed;
        right: 20px;
        margin-right: 0;
    }

    div.move_page_btn_ {
        display: flex;
    }
}

@media (max-width: 768px) {
    div.pc_index_ {
        display: none;
    }

    div.sp_index_ {
        display: block;
        margin-top: 130px;
    }

    div.block_lead_ {
        width: 80%;
        margin: 0 auto;
        display: block;
        height: auto;
        line-height: 1.2;
        padding: 0;
    }

    div.sr_result_strong_ {
        padding: 10px 10px 10px 20px;
    }

    div.sr_result_strong_side_ {
        width: 100%;
        /*float:none;*/
    }

    ul {
        padding: 0;
    }

    .step_case_ {
        padding: 20px 0;
        margin: 0 -20px;
    }

    .img_shadow_ {
        filter: drop-shadow(3px 3px 3px #CCC);
    }

    .step_line_ {
        display: block;
        padding: 10px 0;
        background-image: -moz-linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%);
        background-image: -webkit-linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%);
        background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-secondary) 50%);
        background-position: 56% 0px;
        background-size: 60px 1px;
        background-repeat: repeat-y;
        margin: 0 auto;
        width: 330px;
    }

    .step_line_sp_long_start_ {
        padding-top: 23px;
        margin-top: -13px;
    }

    .step_line_sp_long_end_ {
        padding-bottom: 20px;
        margin-bottom: -10px;
    }

    .step_line_start_sp_ {
        background-image: none;
    }

    .step_line_stop_sp_ {
        background-image: none;
    }

    .step_line_>img {
        vertical-align: baseline;
    }

    img.step_arrow_ {
        margin: 10px auto 5px auto;
        transform: rotate(90deg);
        display: block;
    }

    .service_icon_ {
        margin: 10px auto;
    }

    div.info_title_ {
        width: 90%;
    }

    /*h2.action_title_ {
        height:auto;
    }
    h2.action_title_:after {
        bottom:-15px;
    }*/
}



/* ---------------------------------------------------------------
etc
--------------------------------------------------------------- */
@media (max-width: 768px) {
    div.inner_ {
        display: none;
        background: var(--color-secondary);
        z-index: 15;
        position: relative;
    }

    div.open_ a {
        color: var(--color-primary);
        font-weight: bold;
    }

    div.open_ a:after {
        display: none;
    }

    .siteName {
        width: 100% !important;
        padding: 5px;
    }

    .siteName span {
        border-left: solid 1px #6E6E6E;
        margin-left: 10px;
        padding: 5px 10px;
        font-size: 15px;
        font-weight: bold;
    }

    .slider-wrap {
        margin-bottom: 0;
    }

    .siteName span {
        padding: 5px 0;
        margin: 0;
        border-left: none;
    }

    .sp_hide_ {
        display: none !important;
    }

    .pc_hide_ {
        display: block !important;
    }

    img.sr_step_num_ {
        position: absolute;
        width: 25px;
        top: -3px;
        left: -32px;
    }

    div.step_result_ {
        padding-left: 0;
    }

    div.sr_step_ {
        margin-left: 38px;
        margin-top: 25px;
    }

    div.img_screen_ {
        margin-left: 38px;
    }

    div.sr_result_ {
        margin-left: 38px;
    }

    img.img_ver2_ {
        width: 100%;
        padding-bottom: 10px;
    }

    table.description_table_ td:first-child {
        width: 35%;
    }

    table.attention_table_ td:first-child {
        width: 20%;
        padding: 1em 0.5em;
    }

    table.description_table_pc_ {
        display: none;
    }

    table.description_table_sp_ {
        display: block;
    }

    table.description_table_sp_ td:first-child {
        width: 26%;
    }
}

@media print,
screen and (width >=768px) {
    .global-search-form-wrapper {
        top: 61px;
    }
}


.lead_chapter_title_ {
    position: relative;
}
.lead_chapter_title_ span.chapter_number_{
    position: absolute;
    right: 100%;
}
.lead_chapter_{
    padding-left: 1em;
}
div.mgn-l-1{
    margin-left: 1em;
}

