@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-sp{
    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;
    width: 402px;
    border-radius: 8px;
}
.c-btn a:hover {
    transform: translateY(4px);
    box-shadow: none;
}
.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-btn .u-bgorange{
    background-color: var(--maincolor);
}
.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;
    padding-top: 2px;
}
.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: 80px;
    color: var(--darkgray);
    line-height: 1;
}
.c-title__inner{
    display: flex;
    align-items: center;
    column-gap: 40px;
    max-width: 344px;
    width: 36.76%;
}
.c-title,
.c-annotation{
    color: var(--darkgray);
    line-height: 1.6;
    font-weight: 700;
}
.c-title{
    display: inline-flex;
    flex-direction: column;
    font-size: 32px;
}
.c-annotation{
    font-size: 20px;
    margin-top: -4px;
}
@media screen and (min-width: 768px) and (max-width: 1185.6px) {
    .c-title{
        font-size: clamp(24px, 2.7vw, 32px);
    }
    .c-num{
        font-size: 6.751vw;
    }
    .c-title__inner{
        column-gap: 11.6%;
    }
    .c-annotation{
        font-size: 18px;
    }
}

/* 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-text-xl{
    font-size: 20px;
}
.u-underline{
    text-decoration: underline;
}
.u-mt40{
    margin-top: 40px;
}

/* ==========================================================================
   Layout
========================================================================== */
.l-inner,
.l-inner__l{
    margin: 0 auto;
    width: 96%;
    position: relative;
}
.l-inner{
    max-width: 800px;
}
.l-inner__l{
    max-width: 1040px;
}

/* l-header
----------------------------------------------------------------- */
.l-header{
    position: absolute;
    top: 32px;
    right: 40px;
    z-index: 1;
}
.l-header__logo{
    background-color: var(--white);
    padding: 20px 19px;
}
.l-header__logo img{
    width: 142px;
    height: 80px;
}

/* l-kv
----------------------------------------------------------------- */
.l-kv{
    padding: 142px 0 155px;
    background-color: var(--maincolor);
    color: var(--white);
    position: relative;
    text-align: center;
}
.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: 580px;
    height: 580px;
    clip-path: polygon(100% 0, 0% 100%, 0 0);
}
.l-kv::after{
    bottom: -1px;
    right: 0;
    width: 573px;
    height: 575px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.l-kv__headInner{
    display: flex;
}
.l-kv__target{
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    width: 208px;
    height: 208px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 1px;
    font-weight: 500;
    padding-top: 22px;
}
.l-kv__target .p-head,
.l-kv__target .u-wide{
    letter-spacing: 0.2em;
}
.l-kv__target .p-head{
    line-height: 1.6;
}
.l-kv__target .p-person{
    line-height: 1.3;
    font-size: 24px;
}
.l-kv__target .p-person span{
    display: block;
    text-align: center;
}
.l-kv__heading{
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    padding-top: 39px;
    display: flex;
    flex-direction: column;
}
.l-kv__heading .p-sub{
    font-size: 44px;
    text-align: left;
    margin-left: 33px;
}
.l-kv__heading .p-sub span{
    position: relative;
    display: inline-block;
    letter-spacing: var(--space);
}
.l-kv__heading .p-sub span::after{
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 494px;
    height: 80px;
    background: url(../img/head-deco.svg) no-repeat center / cover;
}
.l-kv__heading .p-main{
    font-size: 80px;
    flex: none;
    display: block;
    letter-spacing: var(--space);
}
.l-kv__lead{
    margin: 40px auto 80px;
    font-size: 24px;
    letter-spacing: var(--space);
    line-height: 1.8;
}
.l-kv__scroll{
    margin: 54px auto 0;
}
.l-kv__scroll-text{
    position: relative;
    margin-bottom: 4px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: var(--space);
    line-height: 1.6;
    font-weight: 500;
}
.l-kv__scroll-line{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    width: 1px;
    height: 155px;
    background-color: var(--border);
}
.l-kv__scroll-line::before {
    content: '';
    display: block;
    position: absolute;
    animation: scrollline 1.6s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    top: 0;
    width: 100%;
    height: 24px;
    background: var(--navy);
}
@keyframes scrollline {
    0% {
        top: 0;
        opacity: 0;
    }
    20% {
        top: 16px;
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}
@media screen and (min-width: 1441px){
    .l-kv::before{
        width: 40.278vw;
        height: 40.278vw;
    }
    .l-kv::after{
        width: 39.792vw;
        height: 39.931vw;
    }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
    .l-kv::before{
        width: 40.278vw;
        height: 40.278vw;
    }
    .l-kv::after{
        width: 39.792vw;
        height: 39.931vw;
    }
}

/* l-business
----------------------------------------------------------------- */
.l-business{
    padding-top: 160px;
    position: relative;
}
.l-business::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 573px);
    height: 876px;
    background: var(--lightgray);
    clip-path: polygon(100% 0, 0 0, 0 100%);
}
.l-business__dl{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
}
.l-business__dt,
.l-business__dd{
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
    line-height: 1.6;
}
.l-business__dt{
    font-weight: 700;
    width: 136px;
    padding-left: 16px;
}
.l-business__dt.u-wide{
    padding-left: 28px;
    width: 148px;
}
.l-business__dd{
    padding-right: 16px;
    width: calc(100% - 136px);
}
.l-business__dd.u-wide{
    width: calc(100% - 148px);
}
.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: 6px;
    margin-top: 4px;
}
.l-business__download__pdf{
    /* margin-top: 30px; */
    margin: auto;
    margin-top: 30px;
    font-size: 20px;
    padding: 5px;
    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 (min-width: 768px) and (max-width: 1439px) {
    .l-business::before{
        width: calc(100% - 39.792vw);
        height: 60.833vw;
    }
}
@media screen and (min-width: 1441px){
    .l-business::before{
        width: calc(100% - 39.792vw);
        height: 60.833vw;
    }
}

/* l-training
----------------------------------------------------------------- */
.l-training{
    padding-top: 160px;
    font-size: 14px;
}
.l-training__intro{
    height: 170px;
    border-top: 3px solid #f04e2f;
    border-bottom: 3px solid #f04e2f;
    border-radius: 2px;
    display: flex;
}
.l-training__intro__img__pc{
    display: block;
    width: 20%;
    position: relative;
}
.l-training__intro__img__pc img{
    width: 100%;
    position: absolute;
    bottom: 0;
}
.l-training__intro__img__sp{
    display: none;
}
.l-training__intro__content{
    width: 80%;
    padding: 10px;
}
.l-training__intro__title{
    height: 40%;
    font-size: 18px;
    text-align: center;
    color: #f04e2f;
    font-weight: bold;
    padding-bottom: 5px;
}
.l-training__intro__list{
    display: flex;
    justify-content: space-between;
    height: 58%;
}
.l-training__intro__item{
    height: 100%;
    width: 28%;
    font-size: 12px;
    text-align: center;
    background-color: #fdd9c8;
    vertical-align: middle;
    position: relative;
}
.l-training__intro__item p{
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* -webkit- transform: translateY(-50%) translateX(-50%); */
}
.l-training__intro__item__wide{
    height: 100%;
    width: 36%;
    font-size: 12px;
    text-align: center;
    background-color: #fdd9c8;
    position: relative;
}
.l-training__intro__item__wide p{
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* -webkit- transform: translateY(-50%) translateX(-50%); */
}
.l-training__explanation{
    margin-top: 13px;
}
.l-training__table{
    display: block;
    width: 100%;
    /* margin: 13px auto 0; */
}
.l-training__num,
.l-training__td{
    font-weight: 700;
    /* font-weight: 600; */
    max-height: 40px;
    /* width: 30%; */
}
.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__ttl{
    font-size: 14px;
}
/* .l-training__th span{
    white-space: pre;
    writing-mode: vertical-rl;
} */
.u-format .l-training__th{
    background-color: var(--darkgray);
    border-top: 2px solid var(--white);
}
.l-training__td{
    line-height: 2.4;
    width: 280px;
    font-size: 16px;
    color: var(--navy);
    background-color: var(--op-blue);
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    text-align: left;
    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;
    /* font-weight: 900; */
}
.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);
}
/* .l-training__title p{
    vertical-align: middle;
} */
.u-format .l-training__td{
    background-color: var(--lightgray);
    padding: 15px 0 16px 32px;
    border-bottom: none;
}
.l-training__arrow{
    text-align: center;
    /* size: 30px; */
}
.l-training__arrow img{
    width: 45px;
    height: 30px;
}
.l-training__example__list{
    margin-top: 5px;
    padding: 0 2px 0 2px;
    display: flex;
    justify-content:space-between;
}
.l-training__example__item{
    /* background-color: #000; */
    width: 32%;
    aspect-ratio: 1;
}
.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-size: 14px;
    font-weight: bold;
    text-align: center;
}
.l-training__example__content{
    height: 50%;
    padding: 12px;
    font-size: 12px;
    /* font-weight: bold; */
    border-top: 4px solid var(--white);
    background-color: #d2d3d4;
    /* text-align: center; */
    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 8px;
    letter-spacing: var(--space);
}
.l-training__text{
    color: var(--darkgray);
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.l-training__att{
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: var(--space);
    font-weight: 400;
    color: var(--black);
}
.l-training__content{
    /* padding: 8px; */
    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: none;
}
.br-pc{
    display: block;
}
/* @media screen and (min-width: 768px) and (max-width: 831px) {
    .l-training__td{
        width: 88.942vw;
    }
} */
 @media screen and (max-width: 799px) {
    .l-training__intro__item{
        font-size: 11px;
    }
    .l-training__intro__item__wide{
        font-size: 11px;
    }
 }
 @media screen and (max-width: 786px) {
    /* .l-training__example__content{
        height: 60%;
    } */
    .l-training__subtitle{
        font-size: 11px;
    }
 }

/* l-flow
----------------------------------------------------------------- */
.l-flow{
    padding-top: 160px;
}
.l-flow__listItem{
    background-color: var(--lightgray);
    padding: 40px 40px 40px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    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: 50%;
    width: 4px;
    height: 24px;
    background: var(--gray);
    transform: translate(-50%, 0);
}
.l-flow__textbox{
    max-width: 520px;
    width: 55.56%;
    color: var(--darkgray);
}
.l-flow__text{
    font-size: 18px;
    line-height: 1.6;
}
.l-flow__text a{
    color: var(--maincolor);
    text-decoration: underline;
}
.l-flow__text a:hover{
    opacity: 0.75;
}
.l-flow__textbox .c-att{
    margin-top: 16px;
    line-height: 1.6;
    padding-right: 10px;
    padding-left: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1185.6px) {
    .l-flow__listItem{
        padding: 40px 3.376vw 40px 5.401vw;
    }
    .l-flow__text{
        font-size: 16px;
    }
}

/* l-faq
----------------------------------------------------------------- */
.l-faq{
    padding: 160px 0;
}
.l-faq__dt,
.l-faq__dd{
    display: flex;
    column-gap: 5.25%;
    padding-right: 12px;
}
.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;
    max-width: 690px;
    width: 87.564%;
    padding: 12px 0 15px;
}

/* Project
----------------------------------------------------------------- */
.p-entry{
    position: fixed;
    top: 76.25%;
    right: 16px;
}
.p-entry a{
    background-color: var(--black);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    border: 2px solid var(--maincolor);
}
.p-entry a:hover{
    background-color: var(--maincolor);
}
.p-entry__text{
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-right: 22px;
    display: inline-flex;
    align-items: center;
}
.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: 40px;
    bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.p-pagetop:hover{
    opacity: 0.8;
}
.p-pagetop__text{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: var(--space);
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--white);
    font-family: "Roboto", sans-serif;
}
.p-pagetop__icon{
    width: 46px;
    height: 26px;
    background: url(../img/icon/page-top.svg) no-repeat center / contain;
}

/* l-footer
----------------------------------------------------------------- */
.l-footer{
    padding: 66px 40px 40px;
    position: relative;
}
.l-footer::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 240px;
    right: 0;
    width: 674px;
    height: 674px;
    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: 906px;
    height: 240px;
    background: url(../img/footer/bg.svg) no-repeat center / cover;
    z-index: -1;
}
.l-footer .l-inner{
    width: 100%;
    max-width: 100%;
}
.l-footer__copy{
    margin: 48px auto 0;
    display: block;
    font-size: 10px;
    line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
    .l-footer::before{
        bottom: 16.667vw;
        width: 46.806vw;
        height: 46.806vw;
    }
    .l-footer::after{
        width: 62.917vw;
        height: 16.667vw;
    }
}

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

.sp-only {
    display: none;
}
.pc-only {
    width: 100%;
    margin-top: 40px;
}
.l-flow .c-btn__area{
    margin: 60px auto 0;
    max-width: 650px;
    justify-content: space-between;
}
.l-flow .c-btn,
.l-flow .c-btn a{
    margin: 0;
}
.l-flow .c-btn a{
    width: 306px;
}
.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;
}
.l-business__text a:hover{
    opacity: 0.8;
}