/* ------------------------
全体共通 
-----------------------*/
html {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    color: #1E1E1E;
}
.futura {
    font-family: "futura", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.futura_m {
    font-family: "futura", sans-serif;
    font-weight: 500;
    font-style: normal;
}
body {
    display: flex;
    cursor: none;
}
a {
    cursor: none;
}
.wrapper {
    padding-left: 100px;
    width: calc(100% - 100px);
}
@media screen and (max-width: 768px) {
    .sp-none {
        display: none;
    }
    .wrapper {
        padding-left: 0;
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .pc-none {
        display: none;
    }
}

/* ------
パーツ類
------ */

/* ボタン */
.btn-main {
    font-family: "futura", sans-serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
}
.btn-main::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-radius: 30px;
    background: #E7211A;
    left: 208px;
    transition: .4s;
}
.btn-main::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #E7211A;
    left: 180px;
    transition: .4s;
}
.btn-main span {
    position: relative;
}
.btn-main span::before {
    content: '';
    position: absolute;
    left: 4px;
    width: 48px;
    height: 1px;
    background: #E7211A;
    transition: .4s;
}
.btn-main span::after{
    content: '';
    position: absolute;
    left: 45px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #E7211A;
    border-right: 1px solid #E7211A;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .4s;
}
.btn-main:hover::before {
    width: 61px;
    height: 61px;
    left: 227px;
}
.btn-main:hover::after {
    left: 226px;
}
.btn-main:hover span::before {
    width: 98px;
}
.btn-main:hover span::after {
    left: 94px;
    background: #fff;
    border-radius: 3px;
    border-top: none;
    border-right: none;
}

/* 見出し */
.h2-top {
    font-size: 78px;
    font-family: "futura", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #E7211A;
    letter-spacing: 0.1em;
}
.h2-top span {
    color: #000;
}
@media screen and (max-width: 1000px) {
    .h2-top {
        font-size: 56px;
    }
}

/* ハンバーガーメニュー */
.open_btn {
    position: relative;
    cursor: pointer;
    width: 90px;
    height:80px;
}
.open_btn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 24px;
    width: 2px;
    border-radius: 2px;
    background: #fff;
    height: 36px;
}

.open_btn span:nth-of-type(1) {
    left:28px;	
}

.open_btn span:nth-of-type(2) {
    left:46px;
}

.open_btn span:nth-of-type(3) {
    left:64px;
}
.open_btn.active span:nth-of-type(1) {
    left: 42px;
    TOP: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 2px;
}

.open_btn.active span:nth-of-type(2) {
    opacity: 0;
}

.open_btn.active span:nth-of-type(3){
    left: 42px;
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 2px;
}

/* ------
サイドバー
------ */
.side {
    background: #E7211A;
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    z-index: 999;
    height: 100vh;
}
.menu_head--sp {
    display: none;
}
.side-head {
    margin: 20px 0 0;
    overflow: hidden;
    width: 80px;
    height: calc(100vh - 400px);
    border-radius: 40px;
    background-color: #fff;
    writing-mode: vertical-rl;
    transform: rotateZ(180deg);
    padding: 20px 0;
    margin-left: 10px;
}
.side-head-inner {
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 0px);
}
.side-head-inner p {
    display: flex!important;
    align-items: center;
    width: 80px;
    height: 100%;
}
.side-head-inner p span {
    color: #E7211A;
    font-family: "futura", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 48px;
    white-space: nowrap;
    letter-spacing: .01em;
    margin: 0 0 20px;
}
.side-btn {
    position: absolute;
    bottom: 50px;
    width: 100%;
}
.side-btn a {
    display: flex;
    justify-content: center;
}
.side-btn a img {
    width: 32px;
    height: auto;
}
.side-btn a:not(:last-child) {
    margin-bottom: 40px;
}
.side-btn a:hover {
    opacity: .8;
}


/* ------------------------
ヘッダー
------------------------ */

.header_logo {
    height: 38px;
}
.header_logo img {
    height: 100%;
}
.menu_head {
    display: flex;
    justify-content: space-between;
}
.menu_head li {
    list-style: none;
}
.menu_head li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}
.menu_head li:not(:last-child) {
    margin-right: 48px;
}
.menu_head li a:hover {
    color: #E7211A;
}
.menu_head--sp {
    display: none;
    position: fixed;
    top: 0;
    background: #fff;
    width: 50%;
    height: 100vh;
    margin-left: 100px;
    padding-top: 40px;
    padding-bottom: 60px;
    transition: .4s;
}
.menu_head--sp li {
    list-style: none;
    font-size: 26px;
}
.menu_head--sp li:not(:last-child) {
    border-bottom: 1px solid #E7211A;
}
.menu_head--sp li a {
    color: #000;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 18px 0;
    padding-left: 36px;
    box-sizing: border-box;
}
.menu_head--sp li a:hover {
    background: #E7211A;
    color: #fff;
}
.sp-menu .open_btn span{
    background: #fff;
}
.sp-menu .menu_head--sp {
    right: 0;
    top: 81px;
    width: 100%;
}
@media screen and (max-width: 1080px) {
    .header_logo {
        height: 38px;
        width: 240px;
    }
    .header_logo img {
        height: auto;
        width: 100%;
        padding-top: 6px;
    }
    .menu_head li:not(:last-child) {
        margin-right: 20px;
    }
    .menu_head li a {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    header {
    background: #E7211A;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 0;
    width: calc(100% - 100px);
    height: 80px;
    z-index: 99;
    }
    .header_content_area {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        width: 95%;
        max-width: 1112px;
        margin: 0 auto;
    }
    .sp-menu {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .open_btn {
        width: 160px;
    }
    .side-btn {
        position: inherit;
        display: flex;
        width: auto;
        margin-right: 30px;
    }
    .side-btn a:not(:last-child) {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .menu_head {
        display: none;
    }
    header {
        display: flex;
        width: 100%;
        position: fixed;
    }
    .header_content_area {
        padding: 20px;
        width: 100%;
        margin: auto;
    }
    .header_logo {
        max-width: 200px;
        display: flex;
        align-items: center;
    }
    .header_logo img {
        height: auto;
        width: 100%;
    }
}

/* ------------------------
フッター
------------------------ */
.footer_top_area {
    background: #A09797;
    position: relative;
        z-index: 99;
}
.footer_top_flex {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
}
.footer_top_flex--left {
    padding-top: 64px;
    padding-bottom: 58px;
}
.footer_top_flex--left > a {
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%;
    max-width: 200px;
    line-height: 1.5;
    font-size: 16px;
}
.footer_top_flex--left p {
    color: #fff;
    font-size: 16px;
}
.footer_top_flex--right {
    padding-top: 66px;
    padding-bottom: 66px;
    padding-left: 72px;
    width: 42%;
}
.footer_top_flex--right-menu {
    display: flex;
    margin-bottom: 48px;
    justify-content: space-between;
}
.footer_top_flex--right-menu ul {
    width: 196px;
}
.footer_top_flex--right-menu ul li {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
}
.footer_top_flex--right-menu a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}
.footer_top_flex--right-menu a:hover {
    opacity: .8;
}
.menu_foot li:not(:last-child) {
    margin-bottom: 20px;
}
.footer_top_flex--right-btn a {
    display: block;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    padding-left: 36px;
    letter-spacing: 0.1em;
    font-size: 20px;
    transition: .4s;
}
.footer_top_flex--right-btn a::before {
    content: '';
    background-image: url('../img/front/contact-foot.svg');
    width: 24px;
    height: 18px;
    position: absolute;
    margin-left: -36px;
}
.footer_top_flex--right-btn a:hover {
    background: #fff;
    color: #231815;
}
.logo_footer {
    margin-bottom: 120px;
}
.logo_footer img {
    width: 100%;
}
.footer_tel {
    margin-bottom: 12px;
}
.footer_bottom {
    height: 48px;
    line-height: 48px;
    text-align: center;
    position: relative;
}
.footer_bottom p {
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .footer_top_flex {
        display: block;
        width: 100%;
    }
    .footer_top_flex--left {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 32px;
        padding-right: 32px;
    }
    .footer_top_flex--right {
        border-left: none;
        padding-top: 0;
        padding-bottom: 60px;
        padding-left: 32px;
        padding-right: 32px;
        width: 100%;
        box-sizing: border-box;
    }
    .footer_top_flex--right-menu {
        display: block;
        margin-bottom: 24px;
    }
    .footer_top_flex--right-menu ul {
        width: 100%;
    }
    .logo_footer {
        margin-bottom: 48px;
    }
    .menu_foot {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .menu_foot li {
        margin-right: 16px;
        margin-bottom: 20px;
    }
    .footer_bottom {
        height: 36px;
        line-height: 36px;
    }
    .footer_bottom a {
        position: static;
    }
}

/* ------------------------
下層共通 
------------------------ */
#fv_under {
    background: #F5F5F5;
    margin-top: 80px;
    position: relative;
}
#fv_under::before {
    content: "";
    background-image: url('../img/front/under_logo.png');
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    width: 100%;
    height: 100px;
    max-width: 740px;

}
.fv_under_text {
    width: 90%;
    max-width: 995px;
    padding-top: 95px;
    padding-bottom: 95px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
.fv_under_text h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
.fv_under_text p {
    font-size: 36px;
    font-weight: bold;
}
@media screen and (max-width: 1080px) {
    #fv_under::before {
        top: 56%;
        right: 20px;
        width: 60%;
        background-size: contain;
    }
}
@media screen and (max-width: 768px) {
    #fv_under::before {
        display: none;
    }
}

/* ------------------------
ABOUT US
-----------------------*/
img {
    width: 100%;
}
/* FV */
#about_p_top {
    background-image: url('../img/about/about-top.png');
    background-size: cover;
    background-position: center;
}
.about-top-cnt {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 100px;
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}
.about-top-text {
    margin-bottom: 100px;
}
.about-top-text--ttl {
    font-size: 36px;
    font-weight: bold;
    color: #E7211A;
    margin-bottom: 80px;
}
.about-top-text--main {
    font-size: 36px;
    font-weight: bold;
    line-height: 200%;
}
.about-top-menu {
    background: #E7211A;
    max-width: 800px;
    border-radius: 30px;
}
.about-top-menu ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.about-top-menu ul li {
    padding: 22px 0;
    position: relative;
}
.about-top-menu ul li:last-child {
    margin-right: 12px;
}
.about-top-menu ul li::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 8px solid #ffffff;
    border-bottom: 0;
}
.about-top-menu ul li.about-top-menu-other::after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
    border-right: 0;
}
.about-top-menu ul li a {
    color: #fff;
    font-size: 16px;
}

.about_content-area {
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 100px;
    padding-right: 100px;
}

#about_aim {
    background: #F7F3F3;
    padding-top: 80px;
    padding-bottom: 80px;
}
.about_aim_ttl {
    display: flex;
    align-items: baseline;
    color: #E7211A;
    margin-bottom: 48px;
}
.about_aim_ttl h2 {
    font-size: 36px;
    font-weight: bold;
    margin-right: 20px;
}
.about_aim_ttl p {
    font-family: "futura", sans-serif;
    font-size: 16px;
}

#about_mission {
    padding-top: 120px;
    padding-bottom: 120px;
}
#about_mission .about_content-area {
    padding-left: 30px;
    padding-right: 30px;
}
.about_mission_flex {
    display: flex;
    gap: 4rem;
}
.about_mission_l {
    max-width: 262px;
    width: 100%;
    height: 100%;
    position: sticky;
    top: 160px;
}
.about_mission_l--img-vision,
.about_mission_l--img-value {
    display: none;
}
.about_mission_r {
    max-width: 840px;
    width: 100%;
    margin-left: 50px;
}
.about_mission_r--mission,
.about_mission_r--vision {
    margin-bottom: 160px;
}
.about_mission_r--en {
    font-size: 18px;
    font-weight: bold;
    color: #EE5B56;
    margin-bottom: 16px;
}
.about_mission_r--ja {
    font-size: 40px;
    font-weight: bold;
    color: #EE5B56;
    margin-bottom: 32px;
    line-height: 120%;
}
.about_mission_r--cnt {
    font-size: 18px;
    color: #000;
    line-height: 250%;
}
.about_mission_r--value .about_mission_r--en {
    margin-bottom: 20px;
}
.about_mission_r--value-part {
    margin-bottom: 10px;
    padding-bottom: 24px;
    padding-top: 14px;
    display: flex;
    align-items: center;
    transition: .4s;
}
.about_mission_r--value-part:not(:last-child) {
    border-bottom: 1px solid #e9e9e9;
}
.about_mission_r_ttl {
    margin-bottom: 2px;
    width: 240px;
}
.about_mission_r_ttl--en {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin-bottom: 4px;
}
.about_mission_r_ttl--ja {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}
.about_mission_r--value-part .about_mission_r--cnt {
    font-size: 16px;
    line-height: 160%;
    width: 66%;
    transition: .4s;
}
.about_mission_r--value-part .about_mission_r_ttl {
    gap: 0.5rem;
}

#about_license {
    background: #F7F3F3;
    padding-top: 100px;
    padding-bottom: 100px;
}
.about_license_ttl {
    color: #EE5B56;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 56px;
}
.about_license_ttl h2 {
    font-size: 60px;
    font-weight: bold;
}
.about_license_ttl p {
    font-family: "futura", sans-serif;
    font-size: 16px;
}
.about_license_cnt-flex {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.about_license_cnt-flex--top {
    margin-bottom: 40px;
}
.about_license_cnt-item {
    width: 31%;
    background: #fff;
    padding: 32px;
    box-sizing: border-box;
}
.about_license_cnt-item-img {
    margin-bottom: 24px;
}
.about_license_cnt-item-ttl {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    line-height: 130%;
    margin-bottom: 12px;
}
.about_license_cnt-item-ttl span {
    font-size: 16px;
}
.about_license_cnt-item-ttl--ni {
    margin-top: 20%;
}
.about_license_cnt-item-text {
    font-size: 14px;
    color: #766C6C;
    line-height: 150%;
}

#about_links {
    padding-top: 140px;
    padding-bottom: 100px;
}
.about_links_cnt-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 60px;
}
.about_links_cnt-item-img {
    margin-bottom: 12px;
}
.about_links_cnt-item-text {
    display: flex;
    align-items: baseline;
    color: #E7211A;
    gap: 1rem;
    font-weight: bold;
}
.about_links_cnt-item-text--ja {
    font-size: 30px;
}
.about_links_cnt-item-text--en {
    font-family: "futura", sans-serif;
    font-size: 16px;
    font-weight: normal;
}
.about_links_cnt-item-text span {
    position: relative;
    align-self: center;
}
.about_links_cnt-item-text span::before {
    content: '';
    position: absolute;
    left: 4px;
    width: 48px;
    height: 1px;
    background: #E7211A;
    transition: .4s;
}
.about_links_cnt-item-text span::after {
    content: '';
    position: absolute;
    left: 45px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #E7211A;
    border-right: 1px solid #E7211A;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .4s;
}
.about_links_cnt-item:hover .about_links_cnt-item-text span::before {
    width: 98px;
}
.about_links_cnt-item:hover .about_links_cnt-item-text span::after {
    left: 98px;
    background: #E7211A;
    border-radius: 3px;
    border-top: none;
    border-right: none;
}
.about_links_cnt-contact {
    border-bottom: 1px solid #E7211A;
    padding-bottom: 12px;
}
.about_links_cnt-contact .btn-main {
    justify-content: center;
    align-items: center;
    font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-weight: bold;
    color: #E7211A;
    font-size: 24px;
}
.about_links_cnt-contact .btn-main strong {
    font-size: 16px;
    align-self: flex-end;
    margin-left: 1rem;
    font-family: "futura", sans-serif;
}
.about_links_cnt-contact .btn-main span {
    margin-left: 24px;
}
.about_links_cnt-contact a.btn-main::before {
    left: calc(50% + 160px);
}
.about_links_cnt-contact a.btn-main::after {
    left: calc(50% + 160px);
}
.about_links_cnt-contact a.btn-main:hover::before {
    left: calc(50% + 208px);
}
.about_links_cnt-contact a.btn-main:hover::after {
    left: calc(50% + 208px);
}

/* OUTLINE */
#about_outline_top {
    margin-left: 100px;
    padding-top: 50px;
    padding-bottom: 140px;
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 100px;
    padding-right: 100px;
}
.about_outline_top-img p {
    width: calc(100% + ((100vw - 1080px) / 2));
}
.about_outline_top-text-bread {
    margin-bottom: 62px;
}
.about_outline_top-text-bread a {
    color: #A49595;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    left: 30px;
    width: 100px;
    display: flex;
    align-items: center;
}
.about_outline_top-text-bread a span {
    position: absolute;
}
.about_outline_top-text-bread a span::before {
    content: '';
    position: absolute;
    left: -30px;
    width: 24px;
    height: 1px;
    background: #A49595;
    transition: .1s;
}
.about_outline_top-text-bread a span::after {
    content: '';
    position: absolute;
    left: -30px;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #A49595;
    border-right: 1px solid #A49595;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transition: .1s;
}
.about_outline_top-text-bread a:hover span::after {
    background: #A49595;
    top: -4px;
    border-radius: 4px;
    width: 8px;
    height: 8px;
    border-top: none;
    border-right: none;
}
.about_outline_top-text-head {
    margin-bottom: 24px;
}
.about_outline_top-text-head p {
    font-size: 12px;
    font-weight: bold;
    color: #E7211A;
    margin-bottom: 8px;
}
.about_outline_top-text-head h1 {
    font-size: 36px;
    font-weight: 900;
    color: #E7211A;
    letter-spacing: 0.05em;
}
.about_content-area table {
    border-top: 2.4px solid #766C6C;
}
.about_content-area table tr {
    border-bottom: 2.4px solid #766C6C;
}
.about_content-area table tr td {
    color: #000;
    font-size: 16px;
    padding: 30px 0;
    line-height: 150%;
    padding-right: 18px;
}
.about_content-area table tr td:first-child {
    font-weight: bold;
    width: 16%;
}
.about_content-area table tr td iframe {
    padding-top: 12px;
}
.about_content-area table tr td p {
    width: 220px;
    margin-top: 18px;
}
.about_outline_table_flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.about_outline_table_flex-item {
    width: 220px;
}

/* MESSAGE */
.about_message_item:first-child {
    margin-bottom: 120px;
}
.about_message_top-img p {
    width: calc(100% + ((100vw - 1080px) / 2));
}
.about_message_item h2 {
    font-size: 36px;
    font-weight: bold;
    color: #E7211A;
    margin-bottom: 60px;
    line-height: 120%;
}
.about_message_item--cnt {
    font-size: 16px;
    color: #766C6C;
    line-height: 250%;
    margin-bottom: 40px;
}
.about_message_item--name {
    font-size: 24px;
    font-weight: bold;
    color: #766C6C;
    line-height: 150%;
}

@media screen and (max-width: 1320px) {
    .about_outline_top-img p {
        width: calc(100% + 100px);
    }
}
@media screen and (max-width: 1220px) {
    .about_mission_r--value-part .about_mission_r_ttl {
        gap: 0.2rem;
    }
    .about_mission_r_ttl {
        flex-wrap: wrap;
        margin-bottom: 6px;
    }
    .about_mission_r_ttl--en {
        width: 100%;
    }
    .about_mission_r--value-part {
        margin-bottom: 16px;
    }
    .about_license_cnt-item {
        padding: 24px 18px;
    }
}
@media screen and (max-width: 1080px) {
    .about-top-cnt {
        padding-left: 30px;
    }
    .about-top-menu {
        margin-right: 30px;
    }
    .about_content-area {
        padding-left: 30px;
        padding-right: 30px;
    }
    .about_mission_l {
        max-width: 200px;
    }
    .about_mission_flex {
        gap: 3rem;
    }
    .about_license_cnt-flex {
        gap: 1rem;
    }
    .about_links_cnt-item-text {
        gap: 0.5rem;
    }
    .about_links_cnt-item-text--ja {
        font-size: 22px;
    }
    .about_links_cnt-item-text--en {
        font-size: 12px;
    }
    .about_license_cnt-item {
        padding: 24px 16px;
    }
    .about_outline_top-img p {
        width: calc(100% + 30px);
    }
    #about_outline_top {
        padding-left: 30px;
        padding-right: 30px;
    }
    .about_outline_table_flex {
        flex-wrap: wrap;
    }
    .about_outline_table_flex-item {
        width: 100%;
        max-width: 220px;
    }
    .about_mission_r--value-part {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 768px) {
    #about_p_top {
        background-position: right 40% top 100%;
    }
    .about-top-cnt {
        padding-top: 120px;
    }
    .about-top-text--main {
        font-size: 24px;
    }
    .about-top-menu {
        max-width: 460px;
    }
    .about-top-menu ul {
        flex-wrap: wrap;
        height: 100%;
        padding: 24px 48px;
        justify-content: center;
        border-radius: 14px;
    }
    .about-top-menu ul li {
        width: 60%;
        padding: 12px 0;
        font-size: 16px;
    }
    .about-top-menu ul li:last-child {
        margin-right: 0;
    }
    .about_mission_r--value-part {
        display: block;
    }
    .about_mission_r_ttl {
        width: 100%;
    }
    .about_mission_r--value-part .about_mission_r--cnt {
        width: 100%;
    }
    .about_aim_ttl {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .about_aim_ttl h2 {
        font-size: 30px;
        width: 100%;
    }
    .about_aim_ttl p {
        margin-bottom: 10px;
    }
    .about_aim_img {
        max-width: 320px;
        margin: 0 auto;
    }
    .about_mission_flex {
        flex-wrap: wrap;
    }
    .about_mission_l {
        max-width: 100%;
        height: 320px;
        background: #fff;
        top: 0;
    }
    .about_mission_l--img {
        max-width: 200px;
        margin: 0 auto;
        margin-top: 100px;
    }
    .about_mission_r {
        margin-left: 0;
    }
    .about_mission_r_ttl--en {
        font-size: 36px;
    }
    .about_mission_r_ttl--ja {
        font-size: 16px;
    }
    .about_mission_r_ttl {
        margin-bottom: 14px;
    }
    .about_license_ttl h2 {
        font-size: 40px;
    }
    .about_license_cnt-flex {
        flex-wrap: wrap;
    }
    .about_license_cnt-item {
        width: 100%;
        max-width: 360px;
    }
    .about_license_cnt-item-ttl--ni {
        margin-top: 0;
    }
    .about_links_cnt-flex {
        flex-wrap: wrap;
    }
    .about_content-area table tr td {
        display: inline-block;
        width: 100%;
        float: left;
    }
    .about_content-area table tr td:first-child {
        width: 100%;
        padding: 30px 0 0;
    }
    .about_content-area table tr td:last-child {
        padding: 6px 0 30px;
    }
    .about_outline_top-img p {
        width: 100%;
    }
    .about_links_cnt-contact {
        margin-top: 60px;
    }
    .about_links_cnt-contact .btn-main {
        margin-left: -80px;
        font-size: 22px;
    }
    .about_links_cnt-contact .btn-main strong {
        font-size: 12px;
        margin-left: 0.4rem;
    }
    .about_links_cnt-contact a.btn-main::before {
        left: calc(50% + 140px);
    }
    .about_links_cnt-contact a.btn-main::after {
        left: calc(50% + 140px);
    }
    .about_links_cnt-contact a.btn-main:hover::before {
        left: calc(50% + 188px);
    }
    .about_links_cnt-contact a.btn-main:hover::after {
        left: calc(50% + 188px);
    }
}
@media screen and (max-width: 512px) {
    .about-top-menu ul li {
        width: 100%;
    }
}


/* ------------------------
RESKILLING
-----------------------*/
/* 共通 */
.reskilling_content-area {
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 100px;
    padding-right: 100px;
}
.reskilling-head {
    display: flex;
    justify-content: flex-start;
    gap: 3em;
    align-items: center;
    margin-bottom: 64px;
}
.reskilling-head h2 {
    font-size: 60px;
    color: #E7211A;
}
.reskilling-head p {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 180%;
}
/* TOP */
#reskilling_top {
    margin-top: 64px;
}
.reskilling_top_flex {
    display: flex;
    margin-bottom: 96px;
    align-items: end;
}
.reskilling_top_flex-ttl {
    display: flex;
    align-items: baseline;
    gap: 2em;
    margin-bottom: 72px;
}
.reskilling_top_flex-ttl img {
    width: 52px;
    height: 100%;
}
.reskilling_top_flex-ttl h1 {
    font-size: 64px;
    color: #E7211A;
    letter-spacing: 0.1em;
}
.reskilling_top_flex-head {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 180%;
    margin-bottom: 20px;
    white-space: nowrap;
}
.reskilling_top_flex-under {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 180%;
    margin-bottom: 60px;
}
.reskilling_top_flex-btn {
    display: block;
    max-width: 260px;
    border: 1px solid #E7211A;
    background: #E7211A;
    text-align: center;
    text-decoration: none;
    padding: 18px;
    padding-left: 36px;
    letter-spacing: 0.1em;
    font-size: 20px;
    transition: .4s;
}
.reskilling_top_flex-btn:hover {
    background: #fff;
}
.reskilling_top_flex-btn:hover a {
    color: #E7211A;
}
.reskilling_top_flex-btn a {
    color: #fff;
}
.reskilling_top_flex-btn a::before {
    content: '';
    background-image: url('../img/reskilling/contact-red.svg');
    width: 24px;
    height: 18px;
    position: absolute;
    margin-left: -36px;
}
.reskilling_top_flex-r {
    margin-right: calc((100vw - 1080px) / -2);
}
.reskilling_top_flex-r p {
    text-align: right;
}
.reskilling_top_flex-r p img {
    width: 80%;
}
.reskilling_top_flex-bottom {
    width: 100vw;
    margin-left: calc((100vw - 880px) / -2);
    background: #F7F3F3;
}
.reskilling_top_flex-bottom p {
    max-width: 980px;
    margin: 0 auto;
    padding-left: 100px;
    padding-bottom: 20px;
}
.reskilling_top_flex-bottom p img {
    margin-top: -40px;
}
/* about */
#reskilling_about {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url('../img/reskilling/reskilling-about-bg.png');
    background-size: 640px;
    background-repeat: no-repeat;
    background-position: right;
}
.reskilling_about-head {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 180%;
    margin-bottom: 36px;
}
.reskilling_about-text {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 200%;
    margin-bottom: 24px;
}
/* skill */
.reskilling_content-area--skill {
    background: #F7F3F3;
    padding: 64px 60px;
    border-radius: 20px;
    width: 980px;
    margin-bottom: 100px;
}
.reskilling_skill-head {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 150%;
    margin-bottom: 48px;
}
.reskilling_skill-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reskilling_skill-flex:not(:last-child) {
    margin-bottom: 40px;
}
.reskilling_skill-flex-r {
    flex-direction: row-reverse;
}
.reskilling_skill-flex-img p {
    height: 200px;
}
.reskilling_skill-flex-img p img {
    height: 100%;
}
.reskilling_skill-text {
    display: flex;
    gap: 1em;
}
.reskilling_skill-text--number {
    font-size: 64px;
    color: #E7211A;
}
.reskilling_skill-text--content h3 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    line-height: 150%;
}
.reskilling_skill-text--content p {
    font-size: 16px;
    font-weight: bold;
    line-height: 180%;
}
/* process */
.reskilling_content-area--process {
    margin-bottom: 100px;
}
.reskilling_process-content-top {
    margin-bottom: 48px;
}
.reskilling_process-content-bottom-flex {
    display: flex;
    justify-content: space-between;
}
.reskilling_process-content-bottom-flex--top {
    margin-bottom: 36px;
}
.reskilling_process-content-bottom-item {
    width: 30%;
    position: relative;
}
.reskilling_process-content-bottom-item--next::after {
    content: '';
    position: absolute;
    background-image: url('../img/reskilling/process-polygon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 31px;
    height: 52px;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}
.reskilling_process-content-bottom-number {
    font-size: 24px;
    color: #E7211A;
    margin-bottom: 10px;
}
.reskilling_process-content-bottom-head {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}
.reskilling_process-content-bottom-text {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 150%;
    margin-bottom: 6px;
}
.reskilling_process-content-bottom-small {
    font-size: 12px;
}
/* point */
.reskilling_content-area--point {
    margin-top: 100px;
    margin-bottom: 100px;
}
.reskilling_point-content-top {
    max-width: 680px;
    margin: 0 auto 72px;
}
.reskilling_point-flex {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}
.reskilling_point-item {
    background: #F7F3F3;
    padding: 40px 24px 22px;
}
.reskilling_point-item-img {
    margin-bottom: 16px;
}
.reskilling_point-item-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 150%;
}
/* course */
.reskilling_content-area--course {
    margin-top: 100px;
    margin-bottom: 100px;
}
.reskilling_course-flex {
    display: flex;
    justify-content: space-around;
}
.reskilling_course-flex--top {
    margin-bottom: 54px;
}
.reskilling_course-item {
    width: 240px;
}
/* flow */
.reskilling_content-area--flow {
    margin-top: 100px;
    margin-bottom: 130px;
    background: #F7F3F3;
    width: 980px;
    border-radius: 20px;
    padding: 64px 100px 72px;
}
.reskilling_flow-head {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 48px;
    text-align: center;
}
.reskilling_flow-box {
    background: #fff;
    border-radius: 20px;
    padding: 36px 72px;
    display: flex;
    align-items: center;
}
.reskilling_flow-box:not(:last-child) {
    margin-bottom: 52px;
    position: relative;
}
.reskilling_flow-box:not(:last-child)::after {
    content: '';
    position: absolute;
    background-image: url('../img/reskilling/process-polygon-2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 52px;
    height: 31px;
    left: 50%;
    bottom: -42px;
    transform: translateX(-50%);
}
.reskilling_flow-box h3 {
    font-size: 24px;
    font-weight: bold;
    color: #E7211A;
    width: 150px;
}
.reskilling_flow-box p {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 180%;
}
/* price */
.reskilling_content-area--price {
    margin-bottom: 130px;
}
.reskilling_price-head {
    text-align: center;
    font-size: 60px;
    color: #E7211A;
    margin-bottom: 50px;
}
.reskilling_price-text p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 180%;
    margin-bottom: 32px;
}
.reskilling_price-img {
    width: 180px;
    margin: 0 auto;
}
/* contact */
#reskilling_contact {
    background: url('../img/reskilling/reskilling-contact-bg.png');
    background-size: cover;
}
.reskilling_content-area--contact {
    padding-top: 100px;
    padding-bottom: 100px;
}
.reskilling_contact-text {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 180%;
    text-align: center;
    margin-bottom: 32px;
}
.reskilling_contact-btn {
    display: block;
    max-width: 260px;
    border: 1px solid #E7211A;
    background: #E7211A;
    text-align: center;
    text-decoration: none;
    padding: 18px;
    padding-left: 36px;
    letter-spacing: 0.1em;
    font-size: 20px;
    margin: 0 auto;
    transition: .4s;
}
.reskilling_contact-btn:hover {
    background: #fff;
}
.reskilling_contact-btn a {
    color: #fff;
}
.reskilling_contact-btn:hover a {
    color: #E7211A;
}
.reskilling_contact-btn::before {
    content: '';
    background-image: url('../img/reskilling/contact-red.svg');
    width: 24px;
    height: 18px;
    position: absolute;
    margin-left: -36px;
}
@media screen and (max-width: 1280px) {
    .reskilling_top_flex-r {
        margin-right: -100px;
    }
    .reskilling_top_flex-r p img {
        width: 90%;
    }
    .reskilling_top_flex-bottom {
        width: calc(100vw - 100px);
        margin-left: -100px;
    }
    .reskilling_top_flex-bottom p {
        max-width: 880px;
        padding-left: 0;
    }
    #reskilling_about {
        background-size: 540px;
    }
}
@media screen and (max-width: 1180px) {
    .reskilling_top_flex-r p img {
        width: 100%;
    }
    .reskilling_top_flex-bottom p {
        width: 820px;
    }
    .reskilling_content-area--skill {
        width: 820px;
    }
    .reskilling_content-area--flow {
        width: 820px;
    }
    .reskilling_process-content-bottom-item--next::after {
        width: 20px;
        height: 40px;
        right: -25px;
    }
    .reskilling_process-content-bottom-text {
        font-size: 13px;
    }
}
@media screen and (max-width: 1080px) {
    .reskilling_content-area {
        padding-left: 30px;
        padding-right: 30px;
        overflow: hidden;
    }
    .reskilling_top_flex-ttl h1 {
        font-size: 58px;
    }
    .reskilling_top_flex-head {
        font-size: 28px;
    }
    .reskilling_top_flex-bottom {
        width: calc(100vw - 100px);
        margin-left: -30px;
    }
    .reskilling_top_flex-bottom p {
        width: calc(100vw - 160px);
    }
    .reskilling_content-area--skill {
        width: calc(100vw - 160px);
        margin-left: 30px;
        margin-right: 30px;
    }
    .reskilling_skill-text--content h3 {
        font-size: 22px;
    }
    .reskilling_skill-text--number {
        font-size: 60px;
    }
    .reskilling_content-area--flow {
        width: calc(100vw - 160px);
        margin-left: 30px;
        margin-right: 30px;
    }
    .reskilling_process-content-bottom-item--next::after {
        right: -14px;
    }
}
@media screen and (max-width: 980px) {
    .reskilling_top_flex-ttl h1 {
        font-size: 54px;
    }
    .reskilling_top_flex-head {
        font-size: 25px;
    }
    .reskilling_skill-flex-img p {
        height: 160px;
    }
    .reskilling_skill-text--content h3 {
        font-size: 20px;
    }
    .reskilling_skill-text--content p {
        font-size: 15px;
    }
    .reskilling-head h2 {
        font-size: 52px;
    }
    .reskilling_process-content-bottom-item--next::after {
        right: -22px;
    }
    .reskilling_process-content-bottom {
        margin-right: 20px;
    }
    .reskilling_point-item-text {
        font-size: 17px;
    }
    .reskilling_flow-box {
        padding: 36px 48px;
    }
    .reskilling_price-text p {
        font-size: 18px;
    }
}
@media screen and (max-width: 880px) {
    .reskilling_top_flex-ttl h1 {
        font-size: 50px;
    }
    .reskilling_top_flex-head {
        font-size: 23px;
    }
    #reskilling_about {
        background-size: 440px;
    }
    .reskilling_about-head {
        font-size: 32px;
    }
    .reskilling_skill-flex-img p {
        height: 130px;
    }
    .reskilling_skill-text--number {
        font-size: 40px;
    }
    .reskilling_skill-text--content h3 {
        font-size: 18px;
    }
    .reskilling_skill-text--content p {
        font-size: 14px;
    }
    .reskilling_process-content-bottom-item {
        width: 31%;
    }
    .reskilling_process-content-bottom-text {
        font-size: 12px;
    }
    .reskilling_process-content-bottom-head {
        font-size: 16px;
    }
    .reskilling_process-content-bottom-item--next::after {
        width: 16px;
        height: 32px;
        right: -18px;
    }
    .reskilling_point-item {
        padding: 40px 12px 22px;
    }
    .reskilling_point-item-text {
        font-size: 16px;
    }
    .reskilling_course-flex {
        gap: 2em;
    }
    .reskilling_flow-box {
        padding: 36px 24px;
    }
    .reskilling_flow-box h3 {
        width: 120px;
    }
    .reskilling_price-text p {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .reskilling_top_flex {
        align-items: normal;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        margin-top: 50px;
    }
    .reskilling_top_flex-r {
        margin-right: 0;
        margin-bottom: 64px;
    }
    .reskilling_top_flex-ttl {
        margin-bottom: 48px;
    }
    .reskilling_top_flex-under {
        margin-bottom: 30px;
    }
    .reskilling_top_flex-ttl h1 {
        font-size: 60px;
    }
    .reskilling_top_flex-head {
        font-size: 28px;
    }
    .reskilling_top_flex-bottom {
        width: 100vw;
        margin-left: -30px;
    }
    .reskilling_top_flex-bottom p {
        width: calc(100vw - 60px);
    }
    .reskilling_about-head {
        font-size: 26px;
    }
    #reskilling_about {
        background-size: 440px;
        background-position: bottom right;
    }
    #reskilling_skill {
        margin-top: 60px;
    }
    .reskilling_content-area--skill {
        width: calc(100vw - 60px);
        margin-left: 30px;
        margin-right: 30px;
    }
    .reskilling_skill-head {
        font-size: 28px;
    }
    .reskilling_skill-flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: baseline;
    }
    .reskilling_skill-flex-img {
        align-self: center;
    }
    .reskilling_skill-flex-img p {
        height: 200px;
        margin-bottom: 24px;
    }
    .reskilling_skill-text--number {
        font-size: 60px;
    }
    .reskilling_skill-text--content h3 {
        font-size: 22px;
    }
    .reskilling_skill-text--content p {
        font-size: 15px;
    }
    .reskilling-head {
        gap: 1.6em;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .reskilling-head p {
        font-size: 16px;
    }
    .reskilling_process-content-bottom-flex {
        flex-wrap: wrap;
        gap: 54px;
    }
    .reskilling_process-content-bottom-flex--top {
        margin-bottom: 54px;
    }
    .reskilling_process-content-bottom-item {
        width: 100%;
    }
    .reskilling_process-content-bottom {
        margin-right: 0;
    }
    .reskilling_process-content-bottom-number {
        font-size: 42px;
    }
    .reskilling_process-content-bottom-head {
        font-size: 28px;
    }
    .reskilling_process-content-bottom-text {
        font-size: 20px;
    }
    .reskilling_process-content-bottom-small {
        font-size: 16px;
    }
    .reskilling_process-content-bottom-item--next::after {
        transform: rotateZ(90deg);
        width: 31px;
        height: 54px;
        right: auto;
        left: 10px;
        top: auto;
        bottom: -54px;
        transform: rotateZ(90deg);
    }
    .reskilling_point-flex {
        flex-wrap: wrap;
    }
    .reskilling_point-item {
        padding: 20px 12px;
        width: 60%;
        margin: 0 auto;
    }
    .reskilling_course-flex--top {
        margin-bottom: 24px;
    }
    .reskilling_content-area--flow {
        width: calc(100vw - 60px);
    }
    .reskilling_flow-box {
        flex-wrap: wrap;
    }
    .reskilling_flow-box h3 {
        margin-bottom: 14px;
    }
    .reskilling_price-text p {
        font-size: 20px;
    }
}
@media screen and (min-width: 521px) {
    .sp-520-none {
        display: none;
    }
}
@media screen and (max-width: 520px) {
    .reskilling_top_flex-r {
        width: 100%;
    }
    .reskilling_top_flex-ttl {
        margin-bottom: 36px;
    }
    .reskilling_top_flex-ttl img {
        width: 42px;
        gap: 1em;
    }
    .reskilling_top_flex-ttl h1 {
        font-size: 42px;
    }
    .reskilling_top_flex-head {
        font-size: 19px;
    }
    .reskilling_top_flex-under {
        font-size: 16px;
    }
    #reskilling_about {
        padding-bottom: 60px;
    }
    #reskilling_about {
        background-size: 300px;
    }
    .reskilling_content-area--skill {
        padding-bottom: 32px;
    }
    .reskilling_skill-text {
        flex-wrap: wrap;
    }
    .reskilling_skill-text--content p {
        font-size: 16px;
    }
    .reskilling_course-flex {
        flex-wrap: wrap;
    }
    .reskilling_flow-box {
        border-radius: 10px;
        padding: 24px 18px;
    }
    .reskilling_price-text p {
        font-size: 16px;
    }
    .reskilling_process-content-bottom-head {
        font-size: 24px;
    }
    .reskilling_process-content-bottom-text {
        font-size: 16px;
    }
}


/* wp用追加 */
#header_slider_wrap {
    display: none;
}
body {
    display: block;
}
#header {
    display: none;
}
#footer {
    display: none;
}
#fv_top {
    margin-top: 0;
}
body.use_loading_screen.load_screen_animation_type2 #container {
    transform: none!important;
}

/* カーソル */
#cursor{
    position: fixed;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(231,33,26,0.6);
    border-radius:12px;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;/*真ん中にくるようにマイナスマージンで調整*/
    z-index: 9999;/*一番手前に来るように*/
    pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
    opacity: 0;
    transition: transform .4s;
    transition: background .4s;
}
#cursor.active{
    transform: scale(1.4);
    background: rgba(231,33,26,0.6);
}