@charset "UTF-8";

:root{
    --black: #000;
    --white: #fff;
    --maincolor: #E0481D;
    --navy: #19216B;
    --lightgray: #F2F6F7;
    --darkgray: #333;
    --gray: #666;
    --op-blue: rgb(25 33 107 / 0.2);
    --border: #D9D9D9;
    --space: 0.1em;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
a,
a:link,
a:visited,
a:active {
    text-decoration: none;
}
a:link,
a:visited,
a:active {
    color: inherit;
}
a {
    transition: 0.3s;
}
ul,li{
  list-style: none;
}
button {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    appearance: none;
}
select,
textarea,
input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
main {
    display: block;
}
img {
    vertical-align: bottom;
}
.u-pc{
    display: none !important;
}

body{
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

/* Component
----------------------------------------------------------------- */
.c-btn,
.c-btn a{
    margin: 0 auto;
    display: block;
}
.c-btn a{
    color: var(--white);
    background-color: var(--black);
    font-weight: 700;
    box-shadow: 0px 4px var(--white);
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    padding: 24px 0;
    max-width: 306px;
    width: 100%;
    border-radius: 8px;
}
.c-btn .u-bgorange{
    background-color: var(--maincolor);
}
.c-btn a::after{
    content: '';
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 50%;
    right: 1.5rem;
    transform: translate(0, -50%);
    background: url(../img/icon/tab.svg) no-repeat center / contain;
}
.c-heading{
    text-align: center;
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: var(--space);
}
.c-heading span{
    border-bottom: 2px solid var(--maincolor);
    padding-bottom: 3px;
}
.c-heading__en{
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: var(--space);
    font-family: "Roboto", sans-serif;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 1px;
}
.c-att{
    padding-left: calc(1em + 4px);
    position: relative;
    font-size: 14px;
    margin-top: 4px;
}
.c-att::before{
    content: '※';
    display: inline-block;
    position: absolute;
    left: 0;
}
.c-faq__q,
.c-faq__a{
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.c-faq__q{
    background-color: var(--navy);
}
.c-faq__a{
    background-color: var(--maincolor);
}
.c-num{
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 64px;
    color: var(--darkgray);
    line-height: 1;
}
.c-title__inner{
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.c-title,
.c-annotation{
    color: var(--darkgray);
    line-height: 1.6;
    font-weight: 700;
}
.c-title{
    display: inline-flex;
    flex-direction: column;
    font-size: 24px;
}
.c-annotation{
    font-size: 16px;
}
@media screen and (max-width: 389px){
    .c-heading{
        font-size: 10.256vw;
    }
    .c-title{
        font-size: clamp(18px, 6.154vw, 24px);
    }
}

/* Utility
----------------------------------------------------------------- */
.u-flex{
    display: flex;
}
.u-grid{
    display: grid;
}
.u-block{
    display: block;
}
.u-white{
    color: var(--white);
}
.u-orange{
    color: var(--maincolor);
}
.u-navy{
    color: var(--navy);
}
.u-bgorange{
    background-color: var(--maincolor);
}
.u-bgnavy{
    background-color: var(--navy);
}
.u-medium{
    font-weight: 500;
}
.u-bold{
    font-weight: 700;
}
.u-left{
    text-align: left;
}
.u-center{
    text-align: center;
}
.u-right{
    text-align: right;
}
.u-underline{
    text-decoration: underline;
}
.u-mt40{
    margin-top: 40px;
}

/* ==========================================================================
   Layout
========================================================================== */
.l-inner,
.l-inner__l{
    margin: 0 auto;
    width: 87.692vw;
    position: relative;
}

/* l-header
----------------------------------------------------------------- */
.l-header{
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
}
.l-header__logo{
    background-color: var(--white);
    padding: 15px 14px;
}
.l-header__logo img{
    width: 104px;
    height: 58px;
    object-fit: cover;
}
@media screen and (max-width: 374px){
    .l-header{
        right: 6.4vw;
    }
    .l-header__logo{
        padding: 4vw 3.733vw;
    }
    .l-header__logo img{
        width: 27.733vw;
        height: 15.467vw;
    }
}

/* l-kv
----------------------------------------------------------------- */
.l-kv{
    padding: 5.641vw 0 36.154vw;
    /* padding: 22px 0 141px; */
    background-color: var(--maincolor);
    color: var(--white);
    position: relative;
    text-align: center;
}
.l-kv .l-inner{
    z-index: 1;
    width: 88.718vw;
}
.l-kv::before,
.l-kv::after{
    content: '';
    display: block;
    position: absolute;
    background: var(--white);
    z-index: 0;
}
.l-kv::before{
    top: 0;
    left: 0;
    width: 55.128vw;
    height: 55.128vw;
    clip-path: polygon(100% 0, 0% 100%, 0 0);
}
.l-kv::after{
    bottom: -1px;
    right: 0;
    width: 100%;
    height: calc(100.513vw + 1px);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.l-kv__target{
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    width: 152px;
    height: 152px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 4px;
    font-weight: 500;
    padding-top: 17px;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 60px;
    padding-left: 4px;
}
.l-kv__target .p-head,
.l-kv__target .u-wide{
    letter-spacing: 0.2em;
}
.l-kv__target .p-head{
    line-height: 1.6;
    font-size: 14px;
}
.l-kv__target .p-person{
    line-height: 1.3;
    font-size: 16px;
}
.l-kv__target .p-person span{
    display: block;
    text-align: center;
}
.l-kv__heading{
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.l-kv__heading .p-sub{
    font-size: 26px;
    position: relative;
    text-align: left;
    letter-spacing: var(--space);
    margin-left: 8.85%;
}
.l-kv__heading .p-sub span::after{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 304px;
    height: 45px;
    background: url(../img/head-deco.svg) no-repeat center / cover;
}
.l-kv__heading .p-main{
    font-size: 48px;
    display: block;
    letter-spacing: var(--space);
    margin-top: 10px;
}
.l-kv__lead{
    margin: 25px auto 56px;
    font-size: 16px;
    letter-spacing: var(--space);
    line-height: 1.8;
}
@media screen and (min-width: 500px){
    .l-kv::after{
        bottom: -1px;
        height: calc(100.513vw + 1px);
    }
    .l-kv__lead{
        margin: 6.41vw auto 14.359vw;
    }
}
@media screen and (min-width: 391px){
    .l-kv__heading{
        max-width: 390px;
        margin: 0 auto;
    }
    .l-kv__heading .p-sub{
        margin-left: 38px;
    }
    .l-kv::before{
        width: 215px;
        height: 215px;
    }
}
@media screen and (max-width: 389px){
    .l-kv__heading .p-main{
        font-size: 12.308vw;
    }
}
@media screen and (max-width: 374px){
    .l-kv__heading .p-sub{
        font-size: 6.933vw;
    }
    .l-kv__heading .p-sub span::after{
        width: 81.067vw;
        height: 12vw;
    }
    .l-kv__heading .p-main{
        font-size: 12.8vw;
    }
    .l-kv__lead{
        font-size: 15px;
    }
}

.l-kv__scroll{
    margin: 37px auto 0;
}
.l-kv__scroll-text{
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.6;
    font-weight: 500;
    color: var(--black);
}
.l-kv__scroll-line{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    width: 1px;
    height: 74px;
    background-color: var(--border);
}
.l-kv__scroll-line::before {
    content: '';
    display: block;
    position: absolute;
    animation: 1s linear scrollline infinite;
    top: 16px;
    width: 100%;
    height: 24px;
    background: var(--black);
}
@keyframes scrollline {
    0% {
        top: 0;
        opacity: 0;
    }
    20% {
        top: 16px;
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        top: 58px;
        opacity: 0;
    }
}

/* l-business
----------------------------------------------------------------- */
.l-business{
    padding-top: 54px;
    position: relative;
    height: 100%;
}
/* .l-business::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 36.41vw;
    height: 36.41vw;
    background: var(--maincolor);
    clip-path: polygon(100% 0, 0% 100%, 0 0);
    z-index: 0;
}
@media screen and (min-width: 500px){
    .l-business::after{
        width: 182px;
        height: 182px;
    }
} */
.l-business__dl{
    display: block;
    border-top: 1px solid var(--border);
}
.l-business__dt,
.l-business__dd{
    font-size: 18px;
    line-height: 1.6;
}
.l-business__dt{
    font-weight: 700;
    padding-top: 24px;
    margin-bottom: 16px;
}
.l-business__dt.u-mb{
    margin-bottom: 0;
}
.l-business__dd{
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}
.l-business__listItem{
    padding-left: calc(1em + 8px);
    position: relative;
}
.l-business__listItem:not(:last-child){
    margin-bottom: 8px;
}
.l-business__listItem::before{
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.l-business__listItem:first-child::before{
    content: '❶';
}
.l-business__listItem:last-child::before{
    content: '❷';
}
.l-business__text-att{
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    column-gap: 4px;
    margin-top: 4px;
}
.l-business__asterisk{
    flex-shrink: 0;
}
.l-business__download__pdf{
    /* margin-top: 30px; */
    margin: auto;
    margin-top: 30px;
    font-size: 18px;
    padding: 5px 20px 5px 20px;
    background-color: #f04e2f;
    color: #fff;
    font-weight: 500;
    max-width: 500px;
    width: 100%;
    text-align: center;
}
.l-business__download__outline{
    max-width: 500px;
    width: 70%;
    margin: auto;
}
.l-business__download__pdf:hover{
    text-decoration:underline;
    text-decoration-color: #fff;
}

.br-sp-middium{
    display: none;
}
/* .br-sp-thin{
    display: none;
} */
@media screen and (max-width: 545px) {
    .br-sp-middium{
        display: block;
    }
    /* .br-sp-thin{
        display: none;
    } */
}
/* @media screen and (max-width: 418px) {
    .br-sp-middium{
        display: block;
    }
    .br-sp-thin{
        display: block;
    }
} */

/* l-training
----------------------------------------------------------------- */
.l-training{
    padding-top: 120px;
}
.l-training__intro{
    border-top: 3px solid #f04e2f;
    border-bottom: 3px solid #f04e2f;
    border-radius: 2px;
}

.l-training__intro__content{
    padding: 10px;
    vertical-align: middle;
    margin: auto;
}
.l-training__intro__title{
    height: 90px;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    position: relative;
}
.l-training__intro__title span{
    margin: auto;
    font-size: 18px;
    text-align: center;
    color: #f04e2f;
    font-weight: bold;
}
.l-training__intro__img__pc{
    display: none;
}
.l-training__intro__img__sp{
    display: none;
    /* display: block;
    background-color: #efefef;
    height: 100%;
    width: 15%;
    min-width: 35px;
    margin-right: 10px;
    position: absolute;
    left: 0; */
}
.l-training__intro__item{
    width: 90%;
    font-size: 16px;
    text-align: center;
    background-color: #fdd9c8;
    vertical-align: middle;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px auto 10px auto;
}

.l-training__intro__item__wide{
    height: 100%;
    width: 90%;
    font-size: 16px;
    text-align: center;
    background-color: #fdd9c8;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px auto 10px auto;
}

.l-training__lead{
    font-size: 16px;
    line-height: 1.2;
}
.l-training__explanation{
    margin-top: 13px;
    font-size: 15px;
}
.l-training__table{
    display: block;
    width: 100%;
    /* margin: 16px auto 0; */
}
.l-training__num,
.l-training__td{
    font-weight: 700;
    max-height: 40px;
}
.l-training__num{
    height: 40px;
    width: 40px;
    background-color: var(--navy);
    font-size: 18px;
    line-height: 1.2;
    color: var(--white);
    vertical-align: middle;
    text-align: center;
    letter-spacing: 0.2em;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);

}
.l-training__td{
    line-height: 1.8;
    color: var(--navy);
    background-color: var(--op-blue);
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding-left: 10px;
    /* vertical-align: middle; */
    text-align: left;
    width: 45%;
    max-width: 150px;
    font-size: 15px;
    position: relative;
}
.l-training__td a{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-left: 10px;
    display: flex;
    align-items: center;
}
.l-training__td a:hover{
    text-decoration:underline;
    color: #267CA7;
}
.l-training__title th{
    height: 30px;
    text-align: center;
    color:#fff;
    background-color: #000;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}
.u-format .l-training__td{
    background-color: var(--lightgray);
    padding: 15px 0 16px 32px;
    border-bottom: none;
}
.u-format .l-training__th{
    border-top: 2px solid var(--white);
}
.u-format .l-training__td{
    background-color: var(--lightgray);
    padding: 33px 24px;
    border-bottom: none;
}
.l-training__arrow{
    text-align: center;
}
.l-training__arrow img{
    width: 45px;
    height: 30px;
}
.l-training__example__list{
    margin-top: 25px;
    padding: 0 2px 0 2px;
}
.l-training__example__item{
    padding-bottom: 15px;
}
.l-training__example__num{
    height: 13%;
    align-content: center;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    
}
.l-training__example__title{
    height: 21%;
    align-content: center;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.l-training__example__content{
    height: 153px;
    padding: 12px;
    border-top: 4px solid var(--white);
    background-color: #d2d3d4;
    vertical-align: middle;
}
.l-training__subtitle{
    font-weight: bold;
    text-align: center;
}
.l-training__subcontent{
    padding: 4px;
    text-align: left;
}
.l-training__head{
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    display: inline-block;
    background-color: var(--gray);
    margin-bottom: 8px;
    padding: 0 4px;
    letter-spacing: var(--space);
}
.l-training__text{
    color: var(--darkgray);
    line-height: 1.8;
    letter-spacing: var(--space);
}
.l-training__att{
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: var(--space);
    font-weight: 400;
    color: var(--black);
}
.l-training__content{
    padding: 5px 0 5px 0;
    font-size: 14px;
    vertical-align: middle;
    padding-left: 8px;
    padding-right: 8px;
    background-color: #d2d3d4;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}
.l-training__line{
    height: 3px;
}
.bg__orange{
    background-color: #f04e2f;
    color: #fff;
}
.bg__yellow{
    background-color: #fcb040;
}
.bg__red{
    background-color: #b61c20;
    color: #fff;
}
.br-sp{
    display: block;
}
.br-pc{
    display: none;
}
@media screen and (max-width: 410px){
    .l-training__intro__img__sp{
        position: relative;
    }
}
@media screen and (max-width: 389px) {
    /* .l-training__td{
        padding: 8px 6.154vw;
    }
    .u-format .l-training__td{
        padding: 33px 6.154vw;
    } */
}
@media screen and (max-width: 360px) {
    .br-sp{
        display: none;
    }
    .l-training__intro__title{
        height: auto;
    }
    /* .l-training__intro__img__sp{
        display: none;
    } */
    .l-training__example__content{
        height: 154px;
        font-size: 15px;
    }
}
@media screen and (max-width: 300px) {
    .l-training__example__content{
        height: auto;
    }
}

/* l-flow
----------------------------------------------------------------- */
.l-flow{
    padding-top: 120px;
}
.l-flow__listItem{
    background-color: var(--lightgray);
    padding: 24px;
    border-radius: 20px;
}
.l-flow__listItem:not(:last-child){
    margin-bottom: 24px;
    position: relative;
}
.l-flow__listItem:not(:last-child)::after{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -24px;
    left: calc(50% - 2px);
    width: 4px;
    height: 24px;
    background: var(--gray);
    transform: translate(-50%, 0);
}
.l-flow__textbox{
    color: var(--darkgray);
    margin-top: 25px;
}
.l-flow__text{
    font-size: 18px;
    line-height: 1.6;
}
.l-flow__text a{
    color: var(--maincolor);
    text-decoration: underline;
}
.l-flow__textbox .c-att{
    margin-top: 16px;
    padding-left: 24px;
    line-height: 1.6;
}
@media screen and (max-width: 389px) {
    /* .l-training__td{
        padding: 24px 6.154vw;
    } */
}

/* l-faq
----------------------------------------------------------------- */
.l-faq{
    padding: 118px 0 80px;
}
.l-faq__dt,
.l-faq__dd{
    display: flex;
    column-gap: 16px;
}
.l-faq__dt{
    margin-bottom: 24px;
    align-items: center;
}
.l-faq__dd{
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.l-faq__dd:not(:last-child){
    margin-bottom: 24px;
}
.l-faq__dd:last-of-type{
    border-bottom: none;
    padding-bottom: 0;
}
.l-faq__text-q,
.l-faq__text-a{
    line-height: 1.6;
}
.l-faq__text-q{
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
}
.l-faq__text-a{
    font-size: 18px;
    padding-top: 12px;
}
@media screen and (max-width: 389px){
    .l-faq__text-q{
        font-size: 18px;
    }
    .l-faq__text-a{
        font-size: 16px;
    }
}

/* Project
----------------------------------------------------------------- */
.p-entry{
    position: fixed;
    top: 79.42%;
    right: 8px;
}
.p-entry a{
    background-color: var(--black);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--maincolor);
}
.p-entry__text{
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-right: 18px;
    color: var(--white);
    font-family: "Roboto", sans-serif;
}
.p-entry__text::after{
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    width: 14px;
    height: 14px;
    background: url(../img/icon/tab.svg) no-repeat center / contain;
}
.p-pagetop{
    position: absolute;
    right: 24px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.p-pagetop__text{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: var(--space);
    line-height: 1.6;
    margin-bottom: 8px;
    display: block;
    color: var(--white);
    font-family: "Roboto", sans-serif;
}
.p-pagetop__icon{
    width: 46px;
    height: 26px;
    display: block;
    background: url(../img/icon/page-top.svg) no-repeat center / contain;
}

/* l-footer
----------------------------------------------------------------- */
.l-footer{
    padding: 66px 24px 188px;
    position: relative;
}
.l-footer::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 61.538vw;
    right: 0;
    width: 40.513vw;
    height: 40.513vw;
    background: var(--lightgray);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: -1;
}
.l-footer::after{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 61.538vw;
    background: url(../img/footer/bg_sp.svg) no-repeat center / cover;
    z-index: -1;
}
.l-footer .l-inner{
    width: 100%;
    max-width: 100%;
}
.l-footer__copy{
    margin: 48px 0 0;
    display: block;
    font-size: 10px;
    line-height: 1.6;
    max-width: 153px;
}

.p-entry a.js-visible{
    visibility: visible;
    opacity: 1;
}
.p-entry a.js-hidden{
    visibility: hidden;
    opacity: 0;
}

.pc-only {
    display: none;
}
.sp-only {
    width: 100%;
    margin-top: 40px;
}

.l-flow .c-btn__area{
    margin: 60px auto 0;
    flex-direction: column;
    row-gap: 30px;
}
.l-training__lead.u-mt40{
    line-height: 1.6;
}
.l-flow .c-btn__area .c-btn a{
    max-width: 306px;
    width: 87.692vw;
}
.p-att{
    position: relative;
    font-size: 14px;
    display: flex;
    column-gap: 4px;
    margin-top: 8px;
    line-height: 1.6;
}
.p-att::before{
    content: '(※)';
    display: inline-block;
    flex-shrink: 0;
}
.l-training__lead.u-mt40 sub{
    bottom: 0;
}

.l-business__text a{
    color: var(--navy);
    text-decoration: underline;
    margin-top: 4px;
    display: inline-block;
}