@charset "UTF-8";
/* ==========================================================
 html5 elements
========================================================== */

article,
aside,
figure,
figcaption,
footer,
header,
nav,
section,
main {
    display: block;
}

/* ==========================================================
 reseting
========================================================== */

/*遊ゴシックの調整用*/

@font-face {
    font-family: "Yu Gothic M";
    src: local("Yu Gothic Medium");
}

@font-face {
    font-family: "Yu Gothic M";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}

/*MACの検証ができたら入れたい設定。約物半角になるので、yakuhanいらないかも*/

body {
    font-feature-settings: "palt";
}

body {
    line-height: 1.8em;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body,
input,
textarea,
select,
button {
    font-family: YakuHanJP, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
}

/* only IE10-11 */

@media all and (-ms-high-contrast: none) {
    body {
        line-height: 1.5;
    }
    body,
    input,
    textarea,
    select,
    button {
        font-family: Arial, 'メイリオ', Meiryo, MyYuGothic, '游ゴシック体', 'Yu Gothic', YuGothic, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    }
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
button,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

input,
textarea {
    margin: 0;
    font-size: 100%;
}

input,
textarea,
select {
    /*-webkit-appearance: none;*/
}

textarea {
    resize: none;
}

button {
    border: none;
    overflow: visible;
    background: none;
    vertical-align: top;
    font-size: 100%;
    color: inherit;
    cursor: pointer;
    -webkit-appearance: none;
}

label {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 100%;
}

fieldset,
img {
    border: 0;
}

img {
    height: auto;
    vertical-align: top;
}

address,
caption,
code,
em,
th {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
em {
    font-size: 100%;
    font-weight: normal;
}

a,
input {
    /* outline: none; -webkit-tap-highlight-color:rgba(0,0,0,0);*/
}

sup,
sub {
    font-size: 63%;
}

sup {
    vertical-align: top;
}

sub {
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ==========================================================
 clearfix
========================================================== */

.clearfix:before,
.clearfix:after,
.contents:before,
.contents:after {
    content: "";
    display: table;
}

.clearfix:after,
.contents:after {
    clear: both;
}

/* For IE 6/7
---------------------------------------------------------- */

.clearfix,
.contents {
    *zoom: 1;
}

/* ==========================================================
 base style
========================================================== */

html {
    overflow-y: scroll;
    scroll-padding-top: 128px;
}

body {
    text-align: center;
}

header,
footer,
main,
article,
section {
    width: 100%;
}

@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 104px;
    }
}

/*新ブランドカラーを変数化*/

:root {
    --sun: #ffe200;
    --water: #007fff;
    --night: #202226;
    --cloud: #ffffff;
    --leaf: #2F7417;
    --ly-600: #AD2929;
    --ly-400: #D64C3A;
    --ly-200: #FE9384;
    --ly-50: #FDF3F1;
    --pa-600: #734B15;
    --pa-400: #EE7100;
    --pa-200: #FEC010;
    --pa-50: #FFFBD9;
    --av-600: #025D2C;
    --av-400: #30A143;
    --av-200: #61D45D;
    --av-50: #ECFAEC;
    --pu-600: #303560;
    --pu-400: #007fff;
    --pu-200: #579EF2;
    --pu-50: #EDF6FF;
    --gr-600: #56575B;
    --gr-500: #737378;
    --gr-400: #949598;
    --gr-300: #ACADB0;
    --gr-250: #D0D1D3;
    --gr-200: #DADCDF;
    --gr-150: #E5E6EA;
    --gr-100: #F0F1F5;
    --gr-50: #FAFAFC;
    --sa-600: #EDDFBB;
    --sa-400: #F3EACF;
    --sa-200: #F8F3E1;
    --sa-50: #f2faff;
    --noto: "Noto Sans JP", sans-serif;
    --inter: "Inter", sans-serif;
}

body {
    color: var(--night);
}

/* base.css override--------------------------------------------*/

.wrapper {
    position: relative;
    width: 100%;
    /*min-width: 1280px;*/
    overflow: hidden;
    /*padding-top: 102px;*/
}

.wrapper .contents {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .wrapper {
        /*padding-top:88px;*/
    }
}

/* inner --------------------------------------------*/

.child-inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

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

.only-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .only-sp {
        display: block;
    }
}

.only-pc {
    display: block;
}

@media screen and (max-width: 768px) {
    .only-pc {
        display: none;
    }
}

/* ==========================================================
 base Link
========================================================== */

a {
    color: var(--night);
    text-decoration: underline;
}

a:visited {
    color: var(--gr-600);
}

a:hover {
    color: var(--water);
    text-decoration: none;
}

/* ==========================================================
 header
========================================================== */

.child-header {
    position: absolute;
    top: 0;
    width: 100%;
    /*height: 160px;*/
    height: 80px;
    background-color: var(--cloud);
    transition: transform .2s;
    z-index: 999;
}

.child-header.is-fixed {
    position: fixed;
    top: -80px;
    transform: translateY(80px);
    /*height: 80px;*/
}

.child-header-caption {
    display: block;
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 14px;
    line-height: 40px;
}

.child-header .child-header-caption {
    display: none;
}

.child-header-logo {
    display: block;
    position: absolute;
    width: 260px;
    height: auto;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.child-header-logo a {
    display: block;
}

.child-header .child-header-logo {
    width: 36px;
    height: 40px;
    top: 50%;
    left: 32px;
    overflow: hidden;
    transform: translate(0, -50%);
}

.child-header .child-header-logo img {
    height: 40px;
    width: auto;
    max-width: none;
}

@media screen and (max-width: 768px) {
    .child-header,
    .child-header {
        height: 64px;
    }
    .child-header-caption {
        display: none;
    }
    .child-header-logo,
    .child-header .child-header-logo {
        width: 128px;
        top: 16px;
        left: 15px;
        transform: translate(0, 0);
    }
    .child-header .child-header-logo img {
        width: 100%;
        height: auto;
    }
}

/*nav--------------------------------------*/

.child-header-nav {
    position: static;
    background-color: var(--cloud);
}

@media screen and (max-width: 768px) {
    .child-header-nav {
        position: absolute;
        top: 100%;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all .4s;
    }
}

/*nav-main--------------------------------------*/

.child-header-nav-main {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: var(--cloud);
}

.child-header .child-header-nav-main {
    width: auto;
    left: 100px;
}

.child-header-nav-main li a {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    padding: 0 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    text-decoration: none;
    color: #313131;
    transition: color .1s;
    white-space: nowrap;
}

.child-header .child-header-nav-main li a {
    font-size: 14px;
    line-height: 80px;
    padding: 0 16px;
}

.child-header-nav-main li.new a::before {
    position: absolute;
    content: "NEW";
    display: inline-block;
    top: -10px;
    right: -5px;
    font-family: roboto, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1em;
    white-space: nowrap;
    padding: 4px 8px;
    color: #fff;
    background-color: #ffcd46;
    border-radius: 10px;
}

.child-header .child-header-nav-main li.new a::before {
    top: 12px;
}

.child-header-nav-main li.add a::before {
    position: absolute;
    content: "+";
    display: block;
    width: 16px;
    height: 16px;
    top: -8px;
    right: 0;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
    background-color: #ffcd46;
    border-radius: 50%;
    text-align: center;
}

.child-header .child-header-nav-main li.add a::before {
    top: 14px;
}

.child-header-nav-main li a:hover,
body.about .child-header-nav-main li.about a,
body.scene .child-header-nav-main li.scene a,
body.func-price .child-header-nav-main li.func-price a,
body.func .child-header-nav-main li.func a,
body.price .child-header-nav-main li.price a,
body.support .child-header-nav-main li.support a,
body.showcase .child-header-nav-main li.showcase a,
body.community .child-header-nav-main li.community a,
body.cm .child-header-nav-main li.cm a {
    color: #ffcd46;
}

.child-header-nav-main li a:hover::after,
body.about .child-header-nav-main li.about a::after,
body.scene .child-header-nav-main li.scene a::after,
body.func-price .child-header-nav-main li.func-price a::after,
body.func .child-header-nav-main li.func a::after,
body.price .child-header-nav-main li.price a::after,
body.support .child-header-nav-main li.support a::after,
body.showcase .child-header-nav-main li.showcase a::after,
body.community .child-header-nav-main li.community a::after,
body.cm .child-header-nav-main li.cm a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 16px;
    width: calc(100% - 32px);
    height: 2px;
    background-color: #ffcd46;
}

@media screen and (max-width: 1024px) {
    .child-header .child-header-nav-main li a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .child-header-nav-main {
        position: static;
        flex-direction: column;
        padding: 40px 32px;
    }
    .child-header-nav-main li a,
    .child-header .child-header-nav-main li a {
        font-size: 16px;
        line-height: 48px;
    }
    .child-header-nav-main li.new a::before {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .child-header-nav-main li.add a::before {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .child-header-nav-main li a::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 16px;
        width: calc(100% - 32px);
        height: 1px;
        background-color: #e5e5e5;
    }
}

/*nav-sub--------------------------------------*/

.child-header-nav-sub {
    display: flex;
    position: absolute;
    top: 20px;
    right: 24px;
}

.child-header-nav-sub li {
    margin-right: 8px;
}

.child-header-nav-sub li:last-of-type {
    margin-right: 0;
}

.child-header-nav-sub li a {
    position: relative;
    display: block;
    width: 112px;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #335799;
    border-radius: 3px;
}

.child-header-nav-sub li.add a::before {
    position: absolute;
    content: "+";
    display: block;
    width: 14px;
    height: 14px;
    top: -2px;
    right: -2px;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    color: #fff;
    background-color: #ffcd46;
    border-radius: 50%;
    text-align: center;
}

.child-header-nav-sub li.strong a {
    width: 112px;
    border: 2px solid #335799;
    line-height: 36px;
}

.child-header-nav-sub li a:hover {
    background-color: #ffcd46;
    color: #fff;
}

.child-header-nav-sub li a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/common/child_icon_blank_blu.svg) right center no-repeat;
    background-size: 14px 14px;
    margin-left: 8px;
}

.child-header-nav-sub li a:hover[target="_blank"]::after {
    background: url(../img/common/child_icon_blank_wht.svg) right center no-repeat;
    background-size: 14px 14px;
}

@media screen and (max-width: 768px) {
    .child-header-nav-sub li {
        /*margin-right: 0;*/
    }
    .child-header-nav-sub {
        position: static;
        justify-content: center;
        padding: 0 15px;
    }
    .child-header-nav-sub li a {
        width: auto;
        padding: 0 10px;
    }
}

/*nav-trigger--------------------------------------*/

.child-nav-checkbox,
.child-nav-check-label {
    display: none;
}

@media screen and (max-width: 768px) {
    .child-nav-check-label {
        position: absolute;
        top: 16px;
        right: 15px;
        display: block;
        width: 60px;
        height: 32px;
    }
    .child-nav-check-label::after {
        content: "目次";
        display: block;
        font-size: 10px;
        font-weight: bold;
        line-height: 32px;
        padding-right: 8px;
        color: #335799;
        text-align: left;
    }
    .child-nav-check-label span {
        position: absolute;
        display: block;
        right: 0;
        width: 24px;
        height: 0;
        border-top: 2px solid #335799;
        transition: all .4s;
    }
    .child-nav-check-label span:nth-of-type(1) {
        top: 8px;
    }
    .child-nav-check-label span:nth-of-type(2) {
        top: 14px;
    }
    .child-nav-check-label span:nth-of-type(3) {
        top: 20px;
    }
    .child-nav-checkbox:checked+.child-nav-check-label::after {
        content: "閉じる";
    }
    .child-nav-checkbox:checked+.child-nav-check-label span:nth-of-type(1) {
        transform: translateY(6px) rotate(-45deg);
    }
    .child-nav-checkbox:checked+.child-nav-check-label span:nth-of-type(2) {
        opacity: 0;
    }
    .child-nav-checkbox:checked+.child-nav-check-label span:nth-of-type(3) {
        transform: translateY(-6px) rotate(45deg);
    }
    .child-nav-checkbox:checked~.child-header-nav {
        height: 100vh;
    }
}

/*breadcrumbs--------------------------------------*/

.child-header-breadcrumbs {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.child-header-breadcrumbs-list {
    display: none;
    height: 24px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
    overflow: hidden;
}

.child-header-breadcrumbs .child-header-breadcrumbs-list {
    display: block;
}

.child-header-breadcrumbs-list ul {
    padding-left: 60px;
    white-space: nowrap;
    line-height: 0;
    text-align: left;
}

.child-header .child-header-breadcrumbs-list ul {
    padding-left: 24px;
}

.child-header-breadcrumbs-list ul li {
    display: inline-block;
    position: relative;
    font-size: 12px;
    line-height: 22px;
    margin-left: 8px;
    padding-left: 8px;
    white-space: nowrap;
}

.child-header-breadcrumbs-list ul li:nth-of-type(n + 2)::after {
    content: "";
    position: absolute;
    display: block;
    top: 8px;
    right: 100%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
}

.child-header-breadcrumbs-list ul li,
.child-header-breadcrumbs-list ul li a {
    text-decoration: none;
    color: #999;
}

.child-header-breadcrumbs-list ul li a:hover {
    text-decoration: underline;
}

.child-header-breadcrumbs-list ul li a img {
    width: 16px;
    height: auto;
    margin: 3px 0;
}

.child-header-breadcrumbs-list ul li br {
    display: none;
}

@media screen and (max-width: 768px) {
    .child-header-breadcrumbs-list ul,
    .child-header .child-header-breadcrumbs-list ul {
        padding-left: 15px;
    }
    .child-header-breadcrumbs-list ul li:nth-of-type(1) {
        margin-left: 0;
        padding-left: 0;
    }
}

/* ==========================================================
 section
========================================================== */

.child-section {
    padding: 80px 0;
}

.child-section.wht {
    background-color: #fff;
}

.child-section.ylw {
    background-color: var(--sa-50);
}

.child-section .child-inner {
    padding-left: 60px;
    padding-right: 60px;
}

.child-flex {
    display: flex;
}

.child-flex-item {
    flex: 1;
    text-align: left;
}

.child-flex-item:nth-child(2n) {
    margin-left: 40px;
}

.child-flex-item.wht {
    background-color: #fff;
    padding: 32px;
}

.child-flex-item.rds {
    border-radius: 12px;
}

.child-flex-2colum {
    width: 50%;
}

.child-flex-3colum {
    width: 33%;
}

@media screen and (max-width: 768px) {
    .child-section {
        padding: 60px 0;
    }
    .child-section .child-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .child-flex {
        flex-direction: column;
    }
    .child-flex-item:nth-child(2n) {
        margin-left: 0;
    }
    .child-flex-item.wht {
        padding: 20px;
    }
    .child-flex-2colum {
        width: 100%;
    }
    .child-flex-3colum {
        width: 100%;
    }
}

/*hero------------------------------------------------------*/

.child-section.hero {
    padding: 40px 0 120px;
}

.child-section.hero .child-flex {
    margin-top: 40px;
    justify-content: flex-end;
}

.child-section.hero .child-flex-item {
    flex: 0 1 560px;
}

.child-section.hero .child-flex-item:first-child {
    flex: 0 1 460px;
}

@media screen and (max-width: 768px) {
    .child-section.hero {
        padding: 30px 0 60px;
    }
    .child-section.hero .child-flex {
        padding-left: 0;
        margin-top: 24px;
    }
    .child-section.hero .child-flex-item,
    .child-section.hero .child-flex-item:first-child {
        flex: auto;
    }
}

/* ==========================================================
 font title text
========================================================== */

.child-font {
    color: var(--night);
}

.child-font.ylw {
    color: var(--pu-600);
}

.child-font.wht {
    color: var(--cloud);
}

.child-font.blu {
    color: var(--pu-400);
}

.child-font.visible {
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s;
}

.child-font.delay {
    transition-delay: .1s;
}

.wf-active .child-font.visible,
.wf-inactive .child-font.visible {
    visibility: visible;
    opacity: 1;
}

.child-font.page-title {
    /*font-family: ryo-gothic-plusn, sans-serif;*/
    font-family: var(--noto);
    font-size: 48px;
    line-height: 1.4em;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
}

/* only IE10-11 */

@media all and (-ms-high-contrast: none) {
    .child-font.page-title {
        font-family: Arial, 'メイリオ', Meiryo, MyYuGothic, '游ゴシック体', 'Yu Gothic', YuGothic, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    }
    .child-font.visible {
        visibility: visible;
        opacity: 1;
    }
}

.child-font.page-taxonomy-title {
    /*font-family: ryo-gothic-plusn, sans-serif;*/
    font-family: var(--noto);
    font-size: 32px;
    line-height: 1.4em;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 1px;
}

.child-section.taxonomy-list {
    padding: 64px 0;
}

/* only IE10-11 */

@media all and (-ms-high-contrast: none) {
    .child-font.page-taxonomy-title {
        font-family: Arial, 'メイリオ', Meiryo, MyYuGothic, '游ゴシック体', 'Yu Gothic', YuGothic, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    }
}

.child-font.page-subtitle {
    font-size: 24px;
    line-height: 1.5em;
    font-weight: bold;
    margin-top: 24px;
    letter-spacing: 1px;
}

.wf-active .child-font.page-subtitle {
    visibility: visible;
    opacity: 1;
}

.child-font.section-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 1px;
}

.child-font.section-subtitle {
    font-size: 18px;
    line-height: 1.5em;
    font-weight: bold;
    margin-top: 24px;
    letter-spacing: 1px;
}

.child-font.text {
    font-size: 16px;
    line-height: 1.8em;
    margin-top: .75em;
    font-weight: 500;
    letter-spacing: 1px;
}

.child-font.text:first-child {
    margin-top: 0;
}

.child-font.small {
    font-size: 12px;
    line-height: 1.5em;
    margin-bottom: .5em;
    font-weight: 500;
    letter-spacing: 1px;
}

.child-font.wht-small {
    font-size: 10px;
    color: #fff;
}

.child-font.top-margin {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .child-font.page-title {
        font-size: 32px;
    }
    .child-font.page-subtitle {
        font-size: 18px;
        margin-top: 16px;
    }
    .child-font.section-title {
        font-size: 24px;
    }
    .child-font.section-subtitle {
        font-size: 16px;
        margin-top: 8px;
    }
    .child-font.top-margin {
        margin-top: 16px;
    }
}

/* ==========================================================
 button
========================================================== */

.child-button {
    position: relative;
    display: flex;
    width: 100%;
    height: 72px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    margin: 16px 0;
    padding: 0 8px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 6px 10px -2px rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.child-button-label {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5em;
    padding: 0 8px;
    flex-basis: auto;
    white-space: nowrap;
}

.child-button.wht {
    background-color: var(--cloud);
    border: 2px solid var(--water);
    color: var(--pu-400);
}

.child-button.ylw {
    background-color: var(--water);
    border: 2px solid var(--water);
    color: var(--cloud);
}

a.child-button.wht:hover,
a.child-button.ylw:hover {
    background-color: var(--sun);
    color: var(--pu-400);
}

.child-button.free::after {
    content: "無料";
    position: absolute;
    display: block;
    top: -16px;
    right: -16px;
    width: 56px;
    height: 56px;
    font-size: 14px;
    font-weight: bold;
    line-height: 56px;
    text-align: center;
    background-color: var(--pa-400);
    color: #fff;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .child-button.free::after {}
}

/* ==========================================================
 icon
========================================================== */

.child-icon-before,
.child-icon-after {
    display: flex;
    justify-content: center;
    align-items: center;
}

.child-icon-before::before,
.child-icon-after::after {
    content: "";
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    flex-basis: 24px;
}

/*blank-----------------------------------------------------*/

.child-icon-before.blank-blk::before,
.child-icon-after.blank-blk::after {
    background: url(../img/common/child_icon_blank_blk.svg) center center /contain no-repeat;
}

.child-icon-before.blank-wht::before,
.child-icon-after.blank-wht::after {
    background: url(../img/common/child_icon_blank_wht.svg) center center /contain no-repeat;
}

.child-icon-before.blank-ylw::before,
.child-icon-after.blank-ylw::after {
    background: url(../img/common/child_icon_blank_ylw.svg) center center /contain no-repeat;
}

/*arrow-----------------------------------------------------*/

.child-icon-before.arrow-wht::before,
.child-icon-after.arrow-wht::after {
    background: url(../img/common/child_icon_arrow_wht.svg) center center /contain no-repeat;
}

.child-icon-before.arrow-ylw::before,
.child-icon-after.arrow-ylw::after {
    background: url(../img/common/child_icon_arrow_ylw.svg) center center /contain no-repeat;
}

.child-icon-before.arrow-blk::before,
.child-icon-after.arrow-blk::after {
    background: url(../img/common/child_icon_arrow_blk.svg) center center /contain no-repeat;
}

/*back-----------------------------------------------------*/

.child-icon-before.back-blk::before,
.child-icon-after.back-blk::after {
    background: url(../img/common/child_icon_arrow_blk.svg) center center /contain no-repeat;
    transform: rotate(180deg);
}

/*strategy-----------------------------------------------------*/

.child-icon-before.strategy::before,
.child-icon-after.strategy::after {
    background: url(../img/common/ico_plan_st.svg) center center /contain no-repeat;
}

/*performance-----------------------------------------------------*/

.child-icon-before.performance::before,
.child-icon-after.performance::after {
    background: url(../img/common/ico_plan_pf.svg) center center /contain no-repeat;
}

/*database-----------------------------------------------------*/

.child-icon-before.database::before,
.child-icon-after.database::after {
    background: url(../img/common/ico_plan_db.svg) center center /contain no-repeat;
}

/*dummy（カオナビロゴ）-----------------------------------------------------*/

.child-icon-before.dummy::before,
.child-icon-after.dummy::after {
    background: url(../img/common/ico_dummy.svg) center center /contain no-repeat;
}

.child-icon-before.dummy.wht::before,
.child-icon-after.dummy.wht::after {
    background: url(../img/common/ico_dummy_wht.svg) center center /contain no-repeat;
}

.child-icon-before.dummy.grn::before,
.child-icon-after.dummy.grn::after {
    background: url(../img/common/ico_dummy_grn.svg) center center /contain no-repeat;
}

/*sp（スマホ）-----------------------------------------------------*/

.child-icon-before.sp::before,
.child-icon-after.sp::after {
    background: url(../img/common/ico_sp.svg) center center /contain no-repeat;
}

.child-icon-before.sp.wht::before,
.child-icon-after.sp.wht::after {
    background: url(../img/common/ico_sp_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sp.grn::before,
.child-icon-after.sp.grn::after {
    background: url(../img/common/ico_sp_grn.svg) center center /contain no-repeat;
}

/*pb-----------------------------------------------------*/

.child-icon-before.pb::before,
.child-icon-after.pb::after {
    background: url(../img/common/ico_pb.svg) center center /contain no-repeat;
}

.child-icon-before.pb.wht::before,
.child-icon-after.pb.wht::after {
    background: url(../img/common/ico_pb_wht.svg) center center /contain no-repeat;
}

.child-icon-before.pb.grn::before,
.child-icon-after.pb.grn::after {
    background: url(../img/common/ico_pb_grn.svg) center center /contain no-repeat;
}

/*sg-----------------------------------------------------*/

.child-icon-before.sg::before,
.child-icon-after.sg::after {
    background: url(../img/common/ico_sg.svg) center center /contain no-repeat;
}

.child-icon-before.sg.wht::before,
.child-icon-after.sg.wht::after {
    background: url(../img/common/ico_sg_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sg.grn::before,
.child-icon-after.sg.grn::after {
    background: url(../img/common/ico_sg_grn.svg) center center /contain no-repeat;
}

/*pl-----------------------------------------------------*/

.child-icon-before.pl::before,
.child-icon-after.pl::after {
    background: url(../img/common/ico_pl.svg) center center /contain no-repeat;
}

.child-icon-before.pl.wht::before,
.child-icon-after.pl.wht::after {
    background: url(../img/common/ico_pl_wht.svg) center center /contain no-repeat;
}

.child-icon-before.pl.grn::before,
.child-icon-after.pl.grn::after {
    background: url(../img/common/ico_pl_grn.svg) center center /contain no-repeat;
}

/*st-----------------------------------------------------*/

.child-icon-before.st::before,
.child-icon-after.st::after {
    background: url(../img/common/ico_st.svg) center center /contain no-repeat;
}

.child-icon-before.st.wht::before,
.child-icon-after.st.wht::after {
    background: url(../img/common/ico_st_wht.svg) center center /contain no-repeat;
}

.child-icon-before.st.grn::before,
.child-icon-after.st.grn::after {
    background: url(../img/common/ico_st_grn.svg) center center /contain no-repeat;
}

/*sr-----------------------------------------------------*/

.child-icon-before.sr::before,
.child-icon-after.sr::after {
    background: url(../img/common/ico_sr.svg) center center /contain no-repeat;
}

.child-icon-before.sr.wht::before,
.child-icon-after.sr.wht::after {
    background: url(../img/common/ico_sr_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sr.grn::before,
.child-icon-after.sr.grn::after {
    background: url(../img/common/ico_sr_grn.svg) center center /contain no-repeat;
}

/*vn-----------------------------------------------------*/

.child-icon-before.vn::before,
.child-icon-after.vn::after {
    background: url(../img/common/ico_vn.svg) center center /contain no-repeat;
}

.child-icon-before.vn.wht::before,
.child-icon-after.vn.wht::after {
    background: url(../img/common/ico_vn_wht.svg) center center /contain no-repeat;
}

.child-icon-before.vn.grn::before,
.child-icon-after.vn.grn::after {
    background: url(../img/common/ico_vn_grn.svg) center center /contain no-repeat;
}

/*sf-----------------------------------------------------*/

.child-icon-before.sf::before,
.child-icon-after.sf::after {
    background: url(../img/common/ico_sf.svg) center center /contain no-repeat;
}

.child-icon-before.sf.wht::before,
.child-icon-after.sf.wht::after {
    background: url(../img/common/ico_sf_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sf.grn::before,
.child-icon-after.sf.grn::after {
    background: url(../img/common/ico_sf_grn.svg) center center /contain no-repeat;
}

/*cb-----------------------------------------------------*/

.child-icon-before.cb::before,
.child-icon-after.cb::after {
    background: url(../img/common/ico_cb.svg) center center /contain no-repeat;
}

.child-icon-before.cb.wht::before,
.child-icon-after.cb.wht::after {
    background: url(../img/common/ico_cb_wht.svg) center center /contain no-repeat;
}

.child-icon-before.cb.grn::before,
.child-icon-after.cb.grn::after {
    background: url(../img/common/ico_cb_grn.svg) center center /contain no-repeat;
}

/*cg-----------------------------------------------------*/

.child-icon-before.cg::before,
.child-icon-after.cg::after {
    background: url(../img/common/ico_cg.svg) center center /contain no-repeat;
}

.child-icon-before.cg.wht::before,
.child-icon-after.cg.wht::after {
    background: url(../img/common/ico_cg_wht.svg) center center /contain no-repeat;
}

.child-icon-before.cg.grn::before,
.child-icon-after.cg.grn::after {
    background: url(../img/common/ico_cg_grn.svg) center center /contain no-repeat;
}

/*tf-----------------------------------------------------*/

.child-icon-before.tf::before,
.child-icon-after.tf::after {
    background: url(../img/common/ico_tf.svg) center center /contain no-repeat;
}

.child-icon-before.tf.wht::before,
.child-icon-after.tf.wht::after {
    background: url(../img/common/ico_tf_wht.svg) center center /contain no-repeat;
}

.child-icon-before.tf.grn::before,
.child-icon-after.tf.grn::after {
    background: url(../img/common/ico_tf_grn.svg) center center /contain no-repeat;
}

/*spi-----------------------------------------------------*/

.child-icon-before.spi::before,
.child-icon-after.spi::after {
    background: url(../img/common/ico_spi.svg) center center /contain no-repeat;
}

.child-icon-before.spi.wht::before,
.child-icon-after.spi.wht::after {
    background: url(../img/common/ico_spi_wht.svg) center center /contain no-repeat;
}

.child-icon-before.spi.grn::before,
.child-icon-after.spi.grn::after {
    background: url(../img/common/ico_spi_grn.svg) center center /contain no-repeat;
}

/*ps-----------------------------------------------------*/

.child-icon-before.ps::before,
.child-icon-after.ps::after {
    background: url(../img/common/ico_ps.svg) center center /contain no-repeat;
}

.child-icon-before.ps.wht::before,
.child-icon-after.ps.wht::after {
    background: url(../img/common/ico_ps_wht.svg) center center /contain no-repeat;
}

.child-icon-before.ps.grn::before,
.child-icon-after.ps.grn::after {
    background: url(../img/common/ico_ps_grn.svg) center center /contain no-repeat;
}

/*app-----------------------------------------------------*/

.child-icon-before.app::before,
.child-icon-after.app::after {
    background: url(../img/common/ico_app.svg) center center /contain no-repeat;
}

.child-icon-before.app.wht::before,
.child-icon-after.app.wht::after {
    background: url(../img/common/ico_app_wht.svg) center center /contain no-repeat;
}

.child-icon-before.app.grn::before,
.child-icon-after.app.grn::after {
    background: url(../img/common/ico_app_grn.svg) center center /contain no-repeat;
}

/*sso-----------------------------------------------------*/

.child-icon-before.sso::before,
.child-icon-after.sso::after {
    background: url(../img/common/ico_sso.svg) center center /contain no-repeat;
}

.child-icon-before.sso.wht::before,
.child-icon-after.sso.wht::after {
    background: url(../img/common/ico_sso_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sso.grn::before,
.child-icon-after.sso.grn::after {
    background: url(../img/common/ico_sso_grn.svg) center center /contain no-repeat;
}

/*api-----------------------------------------------------*/

.child-icon-before.api::before,
.child-icon-after.api::after {
    background: url(../img/common/ico_api.svg) center center /contain no-repeat;
}

.child-icon-before.api.wht::before,
.child-icon-after.api.wht::after {
    background: url(../img/common/ico_api_wht.svg) center center /contain no-repeat;
}

.child-icon-before.api.grn::before,
.child-icon-after.api.grn::after {
    background: url(../img/common/ico_api_grn.svg) center center /contain no-repeat;
}

/*sec-----------------------------------------------------*/

.child-icon-before.sec::before,
.child-icon-after.sec::after {
    background: url(../img/common/ico_sec.svg) center center /contain no-repeat;
}

.child-icon-before.sec.wht::before,
.child-icon-after.sec.wht::after {
    background: url(../img/common/ico_sec_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sec.grn::before,
.child-icon-after.sec.grn::after {
    background: url(../img/common/ico_sec_grn.svg) center center /contain no-repeat;
}

/*price-----------------------------------------------------*/

.child-icon-before.price::before,
.child-icon-after.price::after {
    background: url(../img/common/ico_price.svg) center center /contain no-repeat;
}

/*dp-----------------------------------------------------*/

.child-icon-before.dp::before,
.child-icon-after.dp::after {
    background: url(../img/common/ico_dp.svg) center center /contain no-repeat;
}

.child-icon-before.dp.wht::before,
.child-icon-after.dp.wht::after {
    background: url(../img/common/ico_dp_wht.svg) center center /contain no-repeat;
}

.child-icon-before.dp.grn::before,
.child-icon-after.dp.grn::after {
    background: url(../img/common/ico_dp_grn.svg) center center /contain no-repeat;
}

/*multi_lang-----------------------------------------------------*/

.child-icon-before.ml::before,
.child-icon-after.ml::after {
    background: url(../img/common/ico_ml.svg) center center /contain no-repeat;
}

.child-icon-before.ml.wht::before,
.child-icon-after.ml.wht::after {
    background: url(../img/common/ico_ml_wht.svg) center center /contain no-repeat;
}

.child-icon-before.ml.grn::before,
.child-icon-after.ml.grn::after {
    background: url(../img/common/ico_ml_grn.svg) center center /contain no-repeat;
}

/*dashboard-----------------------------------------------------*/

.child-icon-before.db::before,
.child-icon-after.db::after {
    background: url(../img/common/ico_db.svg) center center /contain no-repeat;
}

.child-icon-before.db.wht::before,
.child-icon-after.db.wht::after {
    background: url(../img/common/ico_db_wht.svg) center center /contain no-repeat;
}

.child-icon-before.db.grn::before,
.child-icon-after.db.grn::after {
    background: url(../img/common/ico_db_grn.svg) center center /contain no-repeat;
}

/*workflow-----------------------------------------------------*/

.child-icon-before.wf::before,
.child-icon-after.wf::after {
    background: url(../img/common/ico_wf.svg) center center /contain no-repeat;
}

.child-icon-before.wf.wht::before,
.child-icon-after.wf.wht::after {
    background: url(../img/common/ico_wf_wht.svg) center center /contain no-repeat;
}

.child-icon-before.wf.grn::before,
.child-icon-after.wf.grn::after {
    background: url(../img/common/ico_wf_grn.svg) center center /contain no-repeat;
}

/*creativemap-----------------------------------------------------*/

.child-icon-before.cm::before,
.child-icon-after.cm::after {
    background: url(../img/common/ico_cm.svg) center center /contain no-repeat;
}

.child-icon-before.cm.wht::before,
.child-icon-after.cm.wht::after {
    background: url(../img/common/ico_cm_wht.svg) center center /contain no-repeat;
}

.child-icon-before.cm.grn::before,
.child-icon-after.cm.grn::after {
    background: url(../img/common/ico_cm_grn.svg) center center /contain no-repeat;
}

/*learninglibrary-----------------------------------------------------*/

.child-icon-before.ll::before,
.child-icon-after.ll::after {
    background: url(../img/common/ico_ll.svg) center center /contain no-repeat;
}

.child-icon-before.ll.wht::before,
.child-icon-after.ll.wht::after {
    background: url(../img/common/ico_ll_wht.svg) center center /contain no-repeat;
}

.child-icon-before.ll.grn::before,
.child-icon-after.ll.grn::after {
    background: url(../img/common/ico_ll_grn.svg) center center /contain no-repeat;
}

/*enneagram-----------------------------------------------------*/

.child-icon-before.eg::before,
.child-icon-after.eg::after {
    background: url(../img/common/ico_eg.svg) center center /contain no-repeat;
}

.child-icon-before.eg.wht::before,
.child-icon-after.eg.wht::after {
    background: url(../img/common/ico_eg_wht.svg) center center /contain no-repeat;
}

.child-icon-before.eg.grn::before,
.child-icon-after.eg.grn::after {
    background: url(../img/common/ico_eg_grn.svg) center center /contain no-repeat;
}

/*positionmatching-----------------------------------------------------*/

.child-icon-before.pm::before,
.child-icon-after.pm::after {
    background: url(../img/common/ico_pm.svg) center center /contain no-repeat;
}

.child-icon-before.pm.wht::before,
.child-icon-after.pm.wht::after {
    background: url(../img/common/ico_pm_wht.svg) center center /contain no-repeat;
}

.child-icon-before.pm.grn::before,
.child-icon-after.pm.grn::after {
    background: url(../img/common/ico_pm_grn.svg) center center /contain no-repeat;
}

/*customcsv-----------------------------------------------------*/

.child-icon-before.csv::before,
.child-icon-after.csv::after {
    background: url(../img/common/ico_csv.svg) center center /contain no-repeat;
}

.child-icon-before.csv.wht::before,
.child-icon-after.csv.wht::after {
    background: url(../img/common/ico_csv_wht.svg) center center /contain no-repeat;
}

.child-icon-before.csv.grn::before,
.child-icon-after.csv.grn::after {
    background: url(../img/common/ico_csv_grn.svg) center center /contain no-repeat;
}

/*abilitymanager-----------------------------------------------------*/

.child-icon-before.am::before,
.child-icon-after.am::after {
    background: url(../img/common/ico_am.svg) center center /contain no-repeat;
}

.child-icon-before.am.wht::before,
.child-icon-after.am.wht::after {
    background: url(../img/common/ico_am_wht.svg) center center /contain no-repeat;
}

.child-icon-before.am.grn::before,
.child-icon-after.am.grn::after {
    background: url(../img/common/ico_am_grn.svg) center center /contain no-repeat;
}

/*locationsearch-----------------------------------------------------*/

.child-icon-before.ls::before,
.child-icon-after.ls::after {
    background: url(../img/common/ico_ls.svg) center center /contain no-repeat;
}

.child-icon-before.ls.wht::before,
.child-icon-after.ls.wht::after {
    background: url(../img/common/ico_ls_wht.svg) center center /contain no-repeat;
}

.child-icon-before.ls.grn::before,
.child-icon-after.ls.grn::after {
    background: url(../img/common/ico_ls_grn.svg) center center /contain no-repeat;
}

/*selectview-----------------------------------------------------*/

.child-icon-before.sv::before,
.child-icon-after.sv::after {
    background: url(../img/common/ico_sv.svg) center center /contain no-repeat;
}

.child-icon-before.sv.wht::before,
.child-icon-after.sv.wht::after {
    background: url(../img/common/ico_sv_wht.svg) center center /contain no-repeat;
}

.child-icon-before.sv.grn::before,
.child-icon-after.sv.grn::after {
    background: url(../img/common/ico_sv_grn.svg) center center /contain no-repeat;
}

/*insightfinder-----------------------------------------------------*/

.child-icon-before.if::before,
.child-icon-after.if::after {
    background: url(../img/common/ico_if.svg) center center /contain no-repeat;
}

.child-icon-before.if.wht::before,
.child-icon-after.if.wht::after {
    background: url(../img/common/ico_if_wht.svg) center center /contain no-repeat;
}

.child-icon-before.if.grn::before,
.child-icon-after.if.grn::after {
    background: url(../img/common/ico_if_grn.svg) center center /contain no-repeat;
}

/*formationbuilder-----------------------------------------------------*/

.child-icon-before.fb::before,
.child-icon-after.fb::after {
    background: url(../img/common/ico_fb.svg) center center /contain no-repeat;
}

.child-icon-before.fb.wht::before,
.child-icon-after.fb.wht::after {
    background: url(../img/common/ico_fb_wht.svg) center center /contain no-repeat;
}

.child-icon-before.fb.grn::before,
.child-icon-after.fb.grn::after {
    background: url(../img/common/ico_fb_grn.svg) center center /contain no-repeat;
}

/*労務　入社手続き-----------------------------------------------------*/

.child-icon-before.roumu_agreement::before,
.child-icon-after.roumu_agreement::after {
    background: url(../img/common/ico_roumu_agreement.svg) center center /contain no-repeat;
}

/*労務　電子申請-----------------------------------------------------*/

.child-icon-before.roumu_erequest::before,
.child-icon-after.roumu_erequest::after {
    background: url(../img/common/ico_roumu_erequest.svg) center center /contain no-repeat;
}

/*労務　給与明細-----------------------------------------------------*/

.child-icon-before.roumu_salary::before,
.child-icon-after.roumu_salary::after {
    background: url(../img/common/ico_roumu_salary.svg) center center /contain no-repeat;
}

/*労務　年末調整-----------------------------------------------------*/

.child-icon-before.roumu_tax::before,
.child-icon-after.roumu_tax::after {
    background: url(../img/common/ico_roumu_tax.svg) center center /contain no-repeat;
}

/*労務　雇用契約-----------------------------------------------------*/

.child-icon-before.roumu_contract::before,
.child-icon-after.roumu_contract::after {
    background: url(../img/common/ico_roumu_contract.svg) center center /contain no-repeat;
}

/*労務　勤怠管理-----------------------------------------------------*/

.child-icon-before.roumu_kintai::before,
.child-icon-after.roumu_kintai::after {
    background: url(../img/common/ico_roumu_kintai.svg) center center /contain no-repeat;
}

/* pagetop
---------------------------------------------------------- */

.btn-cmn-pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5;
}

.btn-cmn-pagetop a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 60px;
    background: url(../img/common/btn_pagetop.svg) rgba(0, 0, 0, 0.5) center center no-repeat;
    background-size: 18px 20px;
}

.btn-cmn-pagetop a:hover {
    background-color: #000;
}

@media screen and (max-width: 768px) {
    .btn-cmn-pagetop {
        right: 15px;
        bottom: 15px;
    }
    .btn-cmn-pagetop a,
    .btn-cmn-pagetop a:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

/* ==========================================================
 CTA LIST
========================================================== */

.child-section.cta-list {
    padding: 64px 0;
    background-color: #f5f5f5;
}

.cta-list .list {
    display: flex;
    width: 100%;
    max-width: 760px;
    justify-content: space-between;
    margin: 0 auto;
}

.cta-list .list li {
    max-width: 360px;
    width: 100%;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .child-section.cta-list {
        padding: 30px 0;
    }
    .cta-list .list {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================
 CV-MOCK
========================================================== */

.child-section.cta-mock {
    position: relative;
    background-color: #ffcd46;
}

.cta-mock::before {
    position: absolute;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 40px;
    border-color: #fff transparent transparent transparent;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cta-mock .child-flex {
    justify-content: center;
    align-items: center;
}

.cta-mock .child-flex-item {
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    text-align: center;
    margin: 0;
    flex: auto;
}

.cta-mock .child-flex-item .child-font.text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5em;
    margin-top: 10px;
}

.cta-mock .child-flex-item .child-button.wht {
    border-color: #335799;
    color: #335799;
    height: 80px;
    display: flex;
    flex-direction: column;
}

.cta-mock .child-flex-item .child-button.wht .child-button-label {
    font-size: 24px;
}

.cta-mock .child-flex-item .child-button.wht .child-button-label small {
    display: block;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
}

@media screen and (max-width: 768px) {
    .cta-mock::before {
        border-width: 30px 30px 0 30px;
    }
    .cta-mock .child-flex-item .child-button.wht .child-button-label {
        font-size: 20px;
    }
    .cta-mock .child-flex-item .child-button.wht .child-button-label small {
        font-size: 14px;
    }
}

/* ==========================================================
 CV-SET
========================================================== */

.child-cvset {
    background-color: var(--sun);
}

.no-margin-top .child-cvset {
    padding-top: 60px;
}

.child-cvset .child-inner {}

.child-cvset-title {
    position: relative;
    font-family: var(--noto);
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 800;
    font-style: normal;
    letter-spacing: .1em;
    text-align: center;
    width: 100%;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.child-cvset-title .deco {
    display: inline-block;
    font-size: 20px;
    color: #335799;
    border-bottom: 1px solid #335799;
    white-space: nowrap;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

@media all and (-ms-high-contrast: none) {
    .child-cvset-title {
        font-family: Arial, 'メイリオ', Meiryo, MyYuGothic, '游ゴシック体', 'Yu Gothic', YuGothic, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    }
}

.child-cvset-subtitle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4em;
    letter-spacing: .1ex;
}

@media screen and (max-width: 768px) {
    .child-cvset {}
    .child-cvset .child-inner {}
    .child-cvset-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .child-cvset-title .deco {
        font-size: 14px;
    }
    .child-cvset-subtitle {
        font-size: 18px;
    }
}

/*cvset list----------------------------------*/

.child-cvset-list {
    display: flex;
    width: 100%;
    max-width: 962px;
    justify-content: center;
    margin: 0 auto;
    background-color: var(--cloud);
    padding: 40px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.child-cvset-list li {
    flex: 1;
    max-width: 427px;
    margin-right: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.child-cvset-list li:last-of-type {
    margin-right: 0;
}

.min .child-cvset-list {
    padding: 0;
    background-color: transparent;
}

.child-button.usr,
.child-button.primary,
.child-button.dwl,
.child-button.dmo,
.child-button.etm {
    height: 96px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4em;
    letter-spacing: .1em;
    text-align: center;
    flex-direction: column;
    white-space: nowrap;
}

.child-button.primary:hover,
.child-button.dwl:hover,
.child-button.dmo:hover,
.child-button.etm:hover {
    background-color: var(--sun);
    color: var(--pu-400);
}

.child-button.dmo.fvdmo:hover {
    background-color: #fff;
    color: var(--pu-400);
}



.child-button.usr:hover {
    background-color: var(--pu-400);
    color: var(--sun);
}

.child-button.usr small,
.child-button.primary small,
.child-button.dwl small,
.child-button.dmo small,
.child-button.etm small {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0;
    margin-bottom: 4px;
    white-space: nowrap;
}

.child-button.dmo {
    background-color: var(--water);
    border: 2px solid var(--water);
    color: var(--cloud);
}

.child-button.dwl,
.child-button.etm {
    background-color: var(--cloud);
    border: 2px solid var(--water);
    color: var(--pu-400);
}

.child-button.usr {
    background-color: var(--sun);
    border: 2px solid var(--sun);
    color: var(--night);
}

.child-button.primary {
    background-color: var(--pu-400);
    border: 2px solid var(--pu-400);
    color: var(--night);
}

.child-cvset-list .child-button.usr,
.child-cvset-list .child-button.primary,
.child-cvset-list .child-button.dwl,
.child-cvset-list .child-button.dmo,
.child-cvset-list .child-button.etm {
    max-width: 357px;
}

.min .child-cvset-list .child-button.usr,
.min .child-cvset-list .child-button.primary,
.min .child-cvset-list .child-button.dwl,
.min .child-cvset-list .child-button.dmo,
.min .child-cvset-list .child-button.etm {
    max-width: 100%
}

@media screen and (max-width: 768px) {
    .child-cvset-list {
        flex-direction: column;
        align-items: center;
        padding: 24px;
    }
    .child-cvset-list li {
        margin: 0;
        width: 100%;
    }
    .child-button.usr,
    .child-button.primary,
    .child-button.dwl,
    .child-button.dmo,
    .child-button.etm {
        height: 80px;
        font-size: 20px;
    }
    .child-button.usr small,
    .child-button.primary small,
    .child-button.dwl small,
    .child-button.dmo small,
    .child-button.etm small {
        font-size: 12px;
    }
}

/*cvset others----------------------------------*/

.child-cvset-others {
    padding: 40px;
    text-align: center;
    max-width: 962px;
    background-color: var(--cloud);
    margin: 0 auto;
    border-top: solid 1px var(--gr-100);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.child-cvset-tel {
    font-family: var(--inter);
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    line-height: 64px;
    display: flex;
    margin-top: 16px;
    justify-content: center;
    align-items: center;
    color: var(--pu-400);
}

.child-cvset-tel::before {
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    margin-right: 16px;
    background: url(../img/common/icon_tell.svg) center center /contain no-repeat;
}

.child-cvset-tel::after {
    content: "10:00-18:00\A土日祝除く";
    font-family: roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
    white-space: pre;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    padding: 8px 0 8px 16px;
    color: var(--night);
}

.child-cvset-contact {
    display: inline-block;
    margin-top: 24px;
}

.child-cvset-contact a {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: .1ex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--pu-400);
    text-decoration: none;
    color: var(--pu-400);
    white-space: nowrap;
}

.child-cvset-contact a:hover {
    /*color: #f3bf35;*/
    border-color: var(--sun);
}

.child-cvset-contact a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background: url(../img/common/child_icon_mail_blk.svg) center center /contain no-repeat;
}

@media screen and (max-width: 768px) {
    .child-cvset-others {
        padding: 24px;
    }
    .child-cvset-tel {
        font-size: 24px;
        line-height: 32px;
        flex-wrap: wrap;
    }
    .child-cvset-tel::before {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    .child-cvset-tel::after {
        font-size: 12px;
        line-height: 12px;
        padding: 4px;
        white-space: nowrap;
    }
}

/* ==========================================================
 footer
========================================================== */

.child-footer {}

/*banner---------------------------------------------------*/

.child-footer-banner {
    background-color: #fff;
    padding: 64px 40px;
}

.child-footer-banner-list {
    justify-content: center;
    /* max-width: 960px; */
    max-width: 1280px;
}

.child-footer-banner-list li {
    padding: 0 20px;
    flex: 1;
    max-width: 320px;
}

.hrinnov .child-footer-banner-list li {
    max-width: none;
}

.child-footer-banner-list li a {
    display: block;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 6px 10px -2px rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.child-footer-banner-list li a:hover img {
    opacity: .6;
}

/*hr innovators*/

.child-footer-banner.hrinnov {
    padding: 120px 40px 80px 40px;
}

.hrinnov .child-footer-banner-list {
    max-width: 760px;
}

@media screen and (max-width: 768px) {
    .child-footer-banner {
        padding: 20px 10px;
    }
    .child-footer-banner.hrinnov {
        padding: 20px 10px 0;
    }
    .child-footer-banner-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .child-footer-banner-list li {
        flex: none;
        width: 50%;
        padding: 5px;
    }
    .hrinnov .child-footer-banner-list li {
        width: 100%;
    }
}

/*utility--------------------------------------------------*/

.child-footer-utility {
    background-color: var(--gr-50);
    padding: 80px 60px;
}

.child-footer-utility .child-inner {
    padding-right: 60px;
    padding-left: 60px;
}

.child-footer-utility .child-flex.reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: 100%;
}

.child-footer-nav {
    flex: 1;
}

.child-footer-nav-inner {
    width: 100%;
    /*max-width: 560px;*/
    margin: 0 auto;
    flex-wrap: wrap;
}

.child-footer-nav .child-flex {
    /*  padding-top: 32px;*/
}

.child-footer-nav-list {
    flex: 1;
    text-align: left;
    padding-right: 40px;
}

.child-footer-nav-list:last-child {
    padding-right: 0;
}

.child-footer-sisters {
    margin-top: 32px;
    padding-top: 32px;
    border-top: solid 1px var(--gr-200);
}

.child-footer-sisters-list {
    display: flex;
}

.child-footer-nav-list li,
.child-footer-sisters-list li {
    margin-bottom: 24px;
    position: relative;
    text-align: left;
}

.child-footer-nav-list li a,
.child-footer-sisters-list li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    padding-left: 24px;
    text-decoration: none;
    white-space: nowrap;
}

.child-footer-nav-list li a::before,
.child-footer-sisters-list li a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: solid 1px var(--water);
    border-top: solid 1px var(--water);
    transform: rotate(45deg);
    margin-right: 8px;
}

.child-footer-nav-list li a[target="blank"]::after,
.child-footer-sisters-list li a[target="blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/common/icon_blank.svg)center center /contain no-repeat;
    margin-left: 8px;
}

.child-footer-nav-list li a.new::after {
    content: "NEW";
    display: inline-block;
    top: -10px;
    right: -5px;
    font-family: roboto, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1em;
    white-space: nowrap;
    padding: 4px 8px;
    color: #fff;
    background-color: #ffcd46;
    border-radius: 10px;
    margin-left: 8px;
}

.child-footer-nav-list li a.add::after {
    content: "+";
    display: block;
    width: 16px;
    height: 16px;
    top: -10px;
    right: -5px;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    white-space: nowrap;
    color: #fff;
    background-color: #ffcd46;
    border-radius: 50%;
    margin-left: 8px;
    text-align: center;
}

.child-footer-sisters-list li {
    flex: none;
    width: calc(100% / 3);
}

.child-footer-sisters-list li::before {
    content: "";
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    color: var(--pu-600);
    line-height: 1;
    white-space: nowrap;
    padding: 4px 8px;
    margin-left: 24px;
    border-radius: 9px;
    background-color: #fff;
}

.child-footer-sisters-list li.enterprise::before {
    content: "大手企業向け";
}

.child-footer-sisters-list li.academy::before {
    content: "教育機関向け";
}

.child-footer-sisters-list li.government::before {
    content: "政府・行政・自治体向け";
}

.child-footer-sisters-list li.medical::before {
    content: "医療機関向け";
}

.child-footer-company {
    flex-basis: 368px;
    margin-right: 28px;
    text-align: left;
}

.child-footer-company .footer-logo {
    width: 100%;
    max-width: 280px;
}

.child-footer-tel {
    font-family: var(--inter);
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 40px;
    display: inline-block;
    margin-top: 40px;
    color: var(--pu-400);
}

.child-footer-tel::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 8px;
    background: url(../img/common/icon_tell.svg) center center /contain no-repeat;
    vertical-align: top;
}

.child-footer-tel::after {
    display: block;
    content: "10:00-18:00 （土日祝除く）";
    font-family: roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
    white-space: pre;
    font-size: 14px;
    line-height: 16px;
    text-align: left;
    color: var(--night);
    margin-top: 8px;
}

.child-footer-address {
    font-size: 12px;
    line-height: 2;
    margin-top: 16px;
}

.child-footer-sns {
    display: flex;
    margin-top: 16px;
}

.child-footer-sns li {
    margin-right: 24px;
}

.child-footer-sns li a {
    display: block;
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 768px) {
    .child-footer-utility {
        padding: 20px 0;
    }
    .child-footer-utility .child-inner {
        padding-right: 15px;
        padding-left: 15px;
    }
    .child-footer-utility .child-flex.reverse {
        flex-direction: column;
    }
    .child-footer-nav .child-flex {
        /*    padding-top: 16px;*/
    }
    .child-footer-nav-list {
        padding-right: 0;
    }
    .child-footer-sisters {
        margin-top: 15px;
        padding-top: 15px;
    }
    .child-footer-sisters-list {
        display: block;
    }
    .child-footer-nav-list li,
    .child-footer-sisters-list li {
        margin-bottom: 0;
        width: auto;
    }
    .child-footer-nav-list li a,
    .child-footer-sisters-list li a {
        line-height: 40px;
        border-bottom: 1px solid #fff;
        padding: 0 24px 0 0;
        background-position: right center;
    }
    .child-footer-sisters-list li::before {
        margin-left: 0;
    }
    .child-footer-company {
        flex: none;
        padding: 24px 0 0 0;
        text-align: center;
    }
    .child-footer-company .footer-logo {
        max-width: 180px;
        margin: 0;
    }
    .child-footer-tel {
        margin-top: 16px;
    }
    .child-footer-tel::after {
        line-height: 12px;
        white-space: nowrap;
        width: 100%;
        text-align: center;
    }
    .child-footer-sns {
        margin-top: 24px;
        justify-content: center;
    }
    .child-footer-sns li {
        margin: 0 16px;
    }
}

/* MF searchbox
---------------------------------------------------------- */

.child-footer-search {
    margin: 16px 0;
}

.child-footer-search .mf_finder_searchBox {
    width: 100%;
    margin: 0;
    background: none;
}

.child-footer-search .mf_finder_searchBox_items {
    height: 48px;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    border: solid 1px var(--gr-150);
    display: -webkit-flex;
}

.child-footer-search .mf_finder_searchBox_query_wrap {
    position: relative;
    padding: 0 5px 0 30px;
}

.child-footer-search .mf_finder_searchBox_query_wrap:before {
    position: absolute;
    top: 50%;
    left: 10px;
    display: block;
    width: 18px;
    height: 18px;
    background: url(../img/common/icon_search.svg) no-repeat;
    background-size: 17px 17px;
    content: "";
    transform: translateY(-50%);
}

.child-footer-search .mf_finder_searchBox .mf_finder_searchBox_query_input {
    height: 100%;
    border: none;
    background: url(../img/common/bg_search_placeholder.png) 5px center no-repeat !important;
    background-size: 110px auto !important;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.child-footer-search .mf_finder_searchBox.mf_finder_searchBox_focusInput .mf_finder_searchBox_query_input,
.child-footer-search .mf_finder_searchBox.mf_finder_searchBox_hasQuery .mf_finder_searchBox_query_input {
    background: none !important;
}

.child-footer-search .mf_finder_searchBox_submit {
    -webkit-flex: 0 0 80px;
    flex: 0 0 80px;
    width: 80px;
    padding: 0;
    background: var(--water);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
}

.child-footer-search .mf_finder_searchBox_submit:before {
    display: none;
}

.child-footer-search .mf_finder_searchBox_submit span {
    display: block;
    margin: 0;
    padding-top: 2px;
    font-family: inherit;
    color: var(--cloud);
    font-size: 16px;
    font-weight: bold;
}

.child-footer-search .mf_finder_searchBox_query_wrap:before {
    font-size: 13px;
}

.box-search-kw .mf_finder_searchBox_items {
    display: -webkit-flex;
}

@media screen and (max-width: 768px) {
    .child-footer-search {
        margin: 10px 0;
    }
    .child-footer-search .mf_finder_searchBox_items {
        height: 40px;
    }
}

/* MF search suggestion
---------------------------------------------------------- */

.child-footer-search .mf_finder_searchBox_suggest_items {
    display: block;
    padding: 0;
    background: #fff;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-color: #999;
}

.child-footer-search .mf_finder_searchBox_suggest_items li {
    padding: 0;
    border-top: 1px solid #d5d5d5;
}

.child-footer-search .mf_finder_searchBox_suggest_items a {
    padding: 6px 12px;
    color: #636363;
    font-size: 16px;
}

.child-footer-search .mf_finder_searchBox_suggest_items a:hover,
.child-footer-search .mf_finder_searchBox_suggest_item_cur a {
    background: #999;
    color: #fff;
}

/* MF search suggestion
---------------------------------------------------------- */

.child-footer-search .mf_finder_searchBox_suggest_items a {
    padding: 2px 12px;
    text-align: left;
}

/*others---------------------------------------------------*/

.child-footer-others {
    background-color: var(--cloud);
    padding: 0 60px 20px 60px;
}

.child-footer-others .child-flex {
    justify-content: space-between;
    align-items: center;
}

.child-footer-others .other-links {
    padding: 24px 0;
    border-bottom: solid 1px var(--gr-150);
}

.other-copys {
    padding: 16px 0 0 0;
}

.child-footer-others-logo,
.child-footer-others-link {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.child-footer-others-logo li {
    height: 50px;
    margin: 16px;
}

.child-footer-others-logo li.service {
    height: 40px;
}

.child-footer-others-link li {
    margin: 16px;
}

.child-footer-others-logo li:last-of-type,
.child-footer-others-link li:last-of-type {
    margin-right: 0;
}

.child-footer-others-logo li img {
    width: auto;
    height: 100%;
}

.child-footer-others-logo li.isms .caution {
    display: block;
    position: absolute;
    font-size: 10px;
    line-height: 1.2em;
    bottom: -20px;
    left: 0;
    width: 100%;
    text-align: left;
    white-space: nowrap;
}

.child-footer-others-link li a,
.child-footer-others-logo li a {
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
    font-size: 14px;
    text-decoration: none;
    color: var(--gr-400);
}

.child-footer-others-link li a {
    color: var(--night);
    font-weight: bold;
}

.child-footer-copyright {
    font-family: roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    line-height: 40px;
}

.child-footer-caution {
    font-size: 12px;
    line-height: 1.2em;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .child-footer-others {
        padding: 20px 15px;
    }
    .child-footer-others .child-flex,
    .child-footer-others-logo {
        justify-content: center;
        flex-wrap: wrap;
    }
    .child-footer-others-logo li {
        height: 40px;
        margin: 8px;
    }
    .child-footer-others-logo li.isms .caution {
        text-align: center;
    }
    .child-footer-others-link {
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 0 16px 0;
    }
    .child-footer-others-link li {
        height: auto;
        margin: 8px
    }
    .child-footer-others-link li a {
        line-height: 24px;
    }
    .child-footer-copyright {
        margin-top: 16px;
    }
    .child-footer-caution {
        text-align: center;
    }
}

/* lp-footer 住所記載箇所 */

.corporateName {
    padding-right: 2em;
}

.corporateAdress {
    line-height: 1.4;
}

.adress-space {
    padding-right: .3em;
}

/*no1-----------------------------------------------------*/

.child-section.no1 {
    position: relative;
    /*  border-top: 1px solid #ddd;*/
    padding: 32px 0;
    background-color: var(--cloud);
    text-align: left;
}

.child-section.no1>.child-inner {
    padding: 0;
}

.no1 .no1-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
}

.no1 .no1-list .item-no1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 248px;
    height: auto;
    margin: 0 10px;
}

.no1 .no1-list .laurel::before,
.no1 .no1-list .laurel::after {
    content: "";
    display: block;
    width: 32px;
    height: 88px;
}

.no1 .no1-list .laurel::before {
    background: url(../../img/common/laurel_left.svg)center center /contain no-repeat;
}

.no1 .no1-list .laurel::after {
    background: url(../../img/common/laurel_right.svg)center center /contain no-repeat;
}

.no1 .no1-list .item-no1>.title-set {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
}

.no1 .no1-list .item-no1 .category {
    flex: 0 0 40%;
    text-align: justify;
    text-align-last: justify;
    font-family: var(--noto);
    font-size: 18px;
    color: var(--night);
    line-height: 20px;
}

.no1 .no1-list .item-no1 .category>small {
    font-size: 13px;
}

.no1 .no1-list .item-no1 .share {
    position: relative;
    flex: 1;
    text-align: justify;
    margin: 0 0 0 10px;
    font-family: var(--noto);
    font-size: 18px;
    font-weight: bold;
    color: var(--water);
}

.no1 .no1-list .item-no1 .share>strong {
    font-family: var(--inter);
    font-size: 30px;
    font-weight: bold;
    color: var(--water);
}

.no1 .no1-list .item-no1 .share>.pict {
    width: 100%;
    height: auto;
}

.no1 .no1-list .item-no1 .share>sup {
    position: absolute;
    top: 16px;
    right: -20px;
    font-size: 10px;
}

.no1 .no1-list .item-no1.activeuser .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--night);
    white-space: nowrap;
    text-align: center;
}

.no1 .no1-list .item-no1.activeuser .title>strong {
    font-family: var(--inter);
    font-size: 54px;
    font-weight: bold;
    color: var(--water);
    padding: 0 2px;
    letter-spacing: -0.1ex;
}

.no1 .no1-list .item-no1.activeuser .title>sup {
    margin-left: -10px;
    color: var(--water);
}

.no1 .no1-list .item-award {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--gr-100);
    border-radius: 12px;
    padding: 0 16px;
    margin: 0 10px;
}

.no1 .no1-list .item-award>.award-pict {
    width: 100px;
    height: auto;
    margin: 0 4px;
}

.no1 .no1-list .item-award>.award-pict.gooddesign {
    background-color: #fff;
    border-radius: 4px;
    margin: 0 10px;
}

.no1 .caution {
    display: block;
    font-size: 10px;
    line-height: 1.6;
    padding-left: 40px;
}

@media screen and (max-width: 768px) {
    .child-section.no1 {
        padding: 15px 0 30px;
    }
    .no1 .no1-list {
        flex-wrap: wrap;
        padding: 10px;
    }
    .no1 .no1-list .item-no1 {
        width: 160px;
        margin: 0 5px 10px 5px;
        /*    align-items: flex-end;*/
    }
    .no1 .no1-list .item-no1.activeuser {
        width: 248px;
    }
    .no1 .no1-list .item-no1>.title-set {
        flex-direction: column;
        width: auto;
    }
    .no1 .no1-list .item-no1 .category,
    .no1 .no1-list .item-no1 .category>small {
        font-size: 10px;
        line-height: 1.2;
        text-align: center;
        text-align-last: center;
    }
    .no1 .no1-list .item-no1 .category br.only-pc {
        display: none;
    }
    .no1 .no1-list .item-no1 .share {
        font-size: 14px;
        max-width: 72px;
        margin: 10px 0 0 0;
    }
    .no1 .no1-list .item-award {
        width: 100%;
        margin: 0;
    }
    .no1 .no1-list .item-award>.award-pict {
        width: 80px;
    }
    .no1 .caution {
        padding: 0 10px;
    }
}