@charset "UTF-8";
/* CSS Document */

:root {
    --main-color: #989898;
    --acsent-color: #B02E37;
    --background-color: #444444;
    --flow-color: #D6D6D6;

    --enfont: Arial , "serif";
}


/* ロードアニメーション */
#splash {
	position: fixed;
	width: 100vw;
	height: 100vh;
    overflow: hidden;
	z-index: 999;
	background:var(--background-color);
	text-align:center;
	display: none;
    display: block;
}
#splash_logo {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#splash_logo img {
    display: block;
    width: 50%;
    min-width: 200px;
    margin: 0 auto 40px;
}
.load-bar {
    position: relative;
    width: 100%;
    height: 3px;
    background: #ffffff;
    overflow: hidden;
}
.load-bar::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    background: var(--acsent-color);
    animation: bar 1.5s linear both;
}
@keyframes bar {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

/* header */

.fixd {
    max-height: 100vh;
    overflow: hidden;
}
.open-btn {
    background: #000000;
    position: fixed;
    cursor: pointer;
    width: 90px;
    height: 90px;
    padding: 0;
    z-index: 990;
    bottom: 40px;
    right: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    color: #fff;
    cursor: pointer;
}
.button__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.button__text::after {
    content: "OPEN";
}
.button__text__after::after {
    content: "CLOSE";
}
.open-btn::before, .open-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 1px solid #000000;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    animation: 2s top-button linear infinite;
}
@keyframes top-button {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.open-btn::after {
    animation-delay: 1s;
}

.burger-nav {
    width: 100%;
    max-width: 500px;
    height: 100vh;
    overflow: scroll;
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    right: -100%;
    z-index: 980;
    background-color: #B02D37;
    transition: all 0.6s;
}
.burger__background {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 970;
    background-color: var(--background-color);
    opacity: 0;
    z-index: -1;
    transition: all 0.6s;
}
.nav-background {
    opacity: 0.6;
    z-index: 10;
}
.panelactive {
    right: 0;
}
.burger-nav__nav__ul {
    flex-direction: column;
    margin: 0 auto;
    padding: 50px 0 100px;
}
.burger-nav__nav__ul li:first-child a img {
    filter: drop-shadow(0 0 3px #000000);
} 
.burger-nav__nav__li-logo {
    width: 60%;
    margin: 0 auto 40px;
}
.burger-nav__nav__li a {
    display: block;
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.2;
}
.burger-nav__nav__li-logo {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
}

.burger-nav__nav__li a span {
    display: block;
    font-size: 1.2rem;
}
.burger-nav__nav__ul a {
    color: #ffffff;
    display: inline-block;
}
.burger-nav__nav__ul__li a span {
    display: block;
    font-size: 1.2rem;
}
@media (max-width: 1023px) {
    .open-btn {
        bottom: 20px;
        right: 20px;
    }
}
@media (max-width: 1023px) {
    .open-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}




/* footer */

footer {
    background: var(--acsent-color);
    padding: 30px 0;
    color: #ffffff;
}
.footer__nav {
    width: 95%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px;
}
.footer__nav a {
    display: inline-block;
    color: #ffffff;
}
.footer__nav__logo {
    width: 150px;
    filter: drop-shadow(0 0 3px #000000);
}
.footer__nav__ul {
    display: flex;
    gap: 50px;
    text-align: left;
    margin-top: 15px;
    flex-wrap: wrap;
}
.footer__nav__ul__li ul li a {
    margin-bottom: 10px;
}
.footer__nav__ul__li ul li a::before {
    content: "";
    width: 10px;
    height: 2px;
    background: #ffffff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.footer__sns {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 20px;
}
.footer__sns li {
    width: 40px;
}
.footer__sns li a {
    display: block;
}
.footer__nav__ul__li__bottom {
    display: flex;
    gap: 3vw;
}
.footer__right {
    width: 150px;
}

@media (max-width: 1023px) {
    .footer__nav {
        flex-direction: column;
        gap: 40px;
    }
    .footer__nav__ul {
        margin: 0 auto;
    }
    .footer__nav__ul__li-bottom {
        width: 100%;
    }
    .footer__nav__ul__li__bottom {
        justify-content: space-between;
    }
    .footer__right {
        display: none;
    }
}
@media (max-width: 599px) {
    footer {
        padding-bottom: 50px;
    }
    .footer__nav__ul {
        width: auto;
        justify-content: center;
        flex-direction: column;
        gap: 0;
    }
    .footer__nav__ul__li {
        margin-bottom: 30px;
    }
    .footer__nav__ul__li__bottom {
        gap: 0;
        flex-direction: column;
    }
    .footer__nav__ul__li {
        margin-bottom: 20px;
    }
}





/* top共通 */

.top {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-bottom: 200px;
}
.top__scroll {
    display: block;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    position: absolute;
    animation: scroll 20s linear infinite;
    filter: none;
}
@keyframes scroll {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }  
}

.top__wapper {
    display: flex;
    height: 95vh;
}
.top__wapper__left {
    width: 200px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.top__wapper__left img {
    width: 80%;
    margin-top: 20px;
    /* filter: drop-shadow(0 0 2px #999899); */
}
.top__wapper__left div {
    width: 70%;
    height: 10px;
    background: var(--acsent-color);
}
.top__wapper__left p {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transform: translateX(-5px);
}
.top__wapper__left h1 {
    font-size: 10rem;
    line-height: 1;
    font-weight: 400;
    writing-mode: vertical-lr;
    font-family: var(--enfont);
}
.top__wapper__right {
    position: relative;
    width: 100%;
}
.top__wapper__right p {
    position: absolute;
    bottom: 80px;
    right: 50px;
    text-align: left;
    font-size: min( 4rem , 3vw );
}
.lr {
    writing-mode: vertical-rl;
}
.top__wapper__right p strong {
    font-size: min( 6rem , 5vw );
    color: var(--acsent-color);
    font-weight: 700;
}
.top__wapper__right img {
    height: 100%;
}
.top-sp {
    display: none;
}
@media (max-width: 1023px) {
    .top {
        margin-bottom: 150px;
    }
    .top__wapper__left h1 {
        font-size: max( 6rem, 9vw);
    }
    .top__wapper__left {
        width: 200px;
    }
    .top__wapper__right {
        margin-left: -100px;
        width: calc( 100% + 100px );
    }
    .top__wapper__right p {
        right: 30px;
        bottom: 140px;
    }
}
@media (max-width: 599px) {
    .top__wapper__left {
        width: 180px;
    }
    .top__wapper__right {
        margin-left: -180px;
        width: calc( 100% + 180px );
    }
    .top__wapper__left img {
        width: 100%;
        margin-left: 20px;    
    }
    .top-pc {
        display: none;
    }
    .top-sp {
        display: block;
    }
    .top__wapper__right p {
        font-size: 5vw;
    }
    .top__wapper__right p strong  {
        font-size: 7vw;
    }
    .top__wapper__right p {
        right: 0px;
        left: 70px;
    }
}




/* 共通パーツ */

/* scroll-anime */

.scrollanime {
    transform: translateY(50px);
    opacity: 0;
    transition: 0.6s;
}
.fadeIn {
    transform: translateY( 0 );
    opacity: 1;
}

/* button */

.button-link {
    text-decoration: underline;
    font-size: 2.4rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 150px;
}
.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--acsent-color);
    transition: 0.4s;
}
.button::before, .button::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 1px solid var(--acsent-color);
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    animation: 2s button-before linear infinite;
}
.button::after {
    animation-delay: 1s;
}
.button__logo {
    width: 0;
    height: 0;
    border-left: 5px solid #ffffff;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: scale(0);
    transition: 0.4s;
}
@keyframes button-before {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}
.button-link:hover .button {
    transform: scale(2);
    box-shadow:
    0 0 1px var(--acsent-color),
    0 0 3px var(--acsent-color);
}
.button-link:hover .button__logo {
    transform: scale(1);
}
.button-link:hover .button::before, .button-link:hover .button::after {
    animation: none;
}



/* 流れるテキスト */

.ticker {
    margin-bottom: -120px;
	width: 65%;
	overflow:hidden;
	white-space:nowrap;
}
@keyframes hscroll2 {
	0% { transform:translateX(5px); }
	100% { transform:translateX(-100%); }
}
.ticker ul {
	display:inline-block;
	margin:0;
	padding:0;
	animation:hscroll2 20s linear infinite;
}
.ticker li {
	display:inline-block;
    padding: 0 10px;
    font-size: 10rem;
    color: var(--main-color);
}
.ticker__sub-title {
    text-align: right;
    margin-left: 11%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: -30px;
    align-items: center;
}
@media (min-width: 1480px) {
    .ticker__sub-title {
        margin-left: 74px;
    }
}
.ticker__sub-title::before {
    content: "";
    width: 50px;
    height: 2px;
    background: #000000;
}
.ticker__sub::before {
    content: "";
    width: 50px;
    height: 2px;
    background: #000000;
    }
.ticker-about .ticker__sub-title {
    margin: -30px auto 0;
    padding: 0 50px;
    max-width: 1480px;
}

@media (max-width: 599px) {
    .ticker li {
        font-size: 8rem;
    }
    .ticker-about .ticker__sub-title {
        padding: 0;
        width: 90%;
    }
}



/* top-about */

.ticker-about {
    margin:0;
    width: 100%;
}

.top-about {
    max-width: 1480px;
    position: relative;
    display: flex;
    padding: 0 50px;
    margin: 0 auto 150px;
}
.top-about__img {
    display: block;
    width: 35%;
}
.top-right-text {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: -1;
}
.top-about__text {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-about__text__wapper {
    width: 80%;
    margin: 0 auto;
    text-align: left;
}
.top-about__text__wapper h2 {
    font-size: 2.8rem;
}
.top-about__text__wapper h2::after {
    content: "";
    width: 50px;
    height: 5px;
    margin: 20px 0 30px;
    background: var(--acsent-color);
    display: block;
}
.top-about__text__wapper p {
    margin-bottom: 50px;
}
@media (max-width: 1023px) {
    .ticker {
        margin-bottom: 0;
        width: 100%;
    }
    .ticker__sub-title {
        margin-left: 50px;
    }
    .top-about__text {
        justify-content: flex-start;
    }
/*     .top-about__text__wapper {
        width: calc( 100% + 100px );
        margin: 0;
        margin-left: -100px;
    } */
    .button-link {
        margin-left: auto;
        margin-right: auto;
    }
    .top-about__text__wapper p {
        margin-bottom: 50px;
    }
}
@media (max-width: 599px) {
    .top-about {
        padding: 0;
        width: 90%;
        flex-direction: column;
        margin-bottom: 100px;
    }
    .top-about__text__wapper {
        width: 100%;
    }
    .top-about__img {
        width: 80%;
    }
    .top-about__text {
        width: 100%;
        margin-top: 50px;
        display: block;
    }
    .ticker__sub-title {
        margin-left: 5%;
    }
}



/* top-service */

.ticker-service .ticker__sub-title {
    justify-content: flex-end;
    margin-left: 0;
    margin-right: 13%;
}
@media (min-width: 1480px) {
}

.top-service {
    max-width: 1480px;
    position: relative;
    padding: 0 50px;
    margin: 0 auto 22vw;
}
.top-service__wapper {
    display: flex;
    align-items: center;
    position: relative;
}
.top-service__wapper__left {
    width: 50%;
    min-width: 200px;
    margin-top: 100px;
}
.top-service__wapper__left img {
    width: 60%;
    margin: 0 auto;
}
.top-service__wapper__right {
    width: 35%;
    margin-left: auto;
}
.top-service__wapper__right img {
    aspect-ratio: 3/4;
}
.top-left-text {
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
}
.ticker__sub__left {
    right: calc( 50% + 50px );
}
.top-service__wapper-bottom {
    display: flex;
    align-items: flex-end;
    margin-top: 50px;
}

.top-service__wapper-bottom div {
    width: 70%;
    text-align: left;
}
.top-service__wapper-bottom a {
    margin-left: 5%;
}
.top-service__wapper-bottom div h2 {
    font-size: 2.4rem;
}
.top-service__wapper-bottom div h2, .top-service__wapper-bottom div p {
    width: 90%;
    margin: 0 auto;
}
.top-service__wapper-bottom div h2::after {
    content: "";
    width: 50px;
    height: 5px;
    background: var(--acsent-color);
    display: block;
    margin: 20px 0 30px;
}
@media (max-width: 1023px) {
    .ticker-service .ticker__sub-title {
        margin-right: 50px;
    }
    .top-service__wapper-bottom {
        display: block;
        width: 100%;
    }
    .top-service__wapper-bottom div {
        width: 100%;
        margin-bottom: 50px;
    }
    .top-service__wapper-bottom a {
        margin-left: 10%;
    }
}
@media (max-width: 599px) {
    .top-service {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
    .ticker-service .ticker__sub-title {
        margin-right: 5%;
    }
    .top-service__wapper-bottom div h2, .top-service__wapper-bottom div p {
        width: 100%;
    }
    .top-service__wapper-bottom a {
        width: 100%;
        margin-left: 0;
        text-align: left;
        justify-content: center;
    }
    .top-service__wapper__right {
        width: 50%;
    }
    .top-service__wapper__left {
        width: 50%;
        min-width: auto;
        margin-top: 0;
    }
}




/* top-flow */

.top-flow {
    position: relative;
    padding: 0 50px;
    max-width: 1480px;
    margin:0 auto 150px;
}
.ticker-flow {
    margin-left: auto;
    width: 60%;
    margin-bottom: -20vw;
}
.ticker-flow .ticker__sub-title  {
    margin-left: 11%;
}
@media (min-width: 1580px) {
    .ticker-flow {
        margin-left: auto;
        margin-bottom: -316px;
    }
}
.top-flow__wapper__top-image {
    width: 40%;
    position: relative;
    background: #ffffff;
}
.top-third-text {
    position: absolute;
    width: 41%;
    top: 50px;
    right: 0;
}
.ticker__sub__third {
    top: 170px;
}
.top-flow__wapper__bottom-image {
    min-width: 220px;
    width: 45%;
    margin-top: -20vw;
    margin-left: auto;
}
/* .top-flow__wapper__bottom {
    margin-top: 100px;
} */

@media (max-width: 599px) {
    .top-flow {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
    .top-flow__wapper__bottom {
        margin-top: 50px;
    }
}




/* service */

/* service-fp */

.service-fp {
    margin-bottom: 150px;
}
.service-fp__sub-title {
    font-size: 1.8rem;
    text-align: left;
    padding-left: 65px;
    max-width: 1410px;
    margin: 0 auto;
}
.service-fp__sub-title::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #000000;
    vertical-align: middle;
    margin-right: 5px;
}
.service-fp__wapper {
    display: flex;
    max-width: 1480px;
    margin: 0 auto;
}
.service-fp__wapper h2 {
    display: flex;
    align-items: center;
    width: 200px;
    font-size: 10rem;
    font-weight: 400;
    writing-mode: vertical-lr;
    font-family: var(--enfont);
    color: var(--main-color);
}
.service-fp__wapper__content {
    width: calc( 100% - 250px);
    margin-bottom: 50px;
}
.service-fp__wapper__content__top {
    display: flex;
    align-items: center;
}
.service-fp__wapper__content__top__image, .service-fp__wapper__content__top__text {
    width: 35%;
    margin-right: 0%;
}
.service-fp__wapper__content__top__text {
    text-align: left;
}
.service-fp__wapper__content__top__text h3 {
    font-size: 2.4rem;
}
.service-fp__wapper__content__top__text h3, .service-fp__wapper__content__top__text p {
    width: 80%;
    margin: 0 auto;
}
.service-fp__wapper__content__top__text h3::after {
    content: "";
    width: 50px;
    height: 5px;
    margin: 20px 0 30px;
    background: var(--acsent-color);
    display: block;
}
.service-fp__wapper__content__bottom__image {
    width: 40%;
    height: auto;
    margin-top: 50px;
    margin-left: auto;
}
.service-fp__wapper__content__bottom__text {
    width: 50%;
    margin-top: -10vw;
    text-align: left;
}
.service-fp__wapper__content__bottom__text h3 {
    font-size: 2.4rem;
}
.service-fp__wapper__content__bottom__text h3::after {
    content: "";
    width: 50px;
    height: 5px;
    margin: 20px 0 30px;
    background: var(--acsent-color);
    display: block;
}
.button-center {
    margin: 50px auto 0;
}
@media (max-width: 1023px) {
    .service-fp__sub-title {
        padding: 0;
        margin-left: 25px;
    }
    .service-fp__wapper h2 {
        width: 100px;
        line-height: 1;
        font-size: 7.5rem;
    }
    .service-fp__wapper__content {
        width: calc( 100% - 150px);
    }
    .service-fp__wapper__content__top {
        align-items: center;
    }
    .service-fp__wapper__content__top__text {
        width: 80%;
        margin-left: -30%;
    }
    .service-fp__wapper__content__bottom__image {
        width: 60%;
        margin-top: 50px;
        margin-left: auto;
    }
    .service-fp__wapper__content__bottom__text {
        width: 100%;
    }
    .service-fp__wapper__content__top__text h3, .service-fp__wapper__content__top__text p {
        width: 100%;
    }
    .service-fp__wapper__content__top__image, .service-fp__wapper__content__top__text {
        width: 70%;
        margin-right: -20%;
    }
}
@media (max-width: 599px) {
    .service-fp {
        margin-bottom: 100px;
    }    
    .service-fp__wapper h2 {
        width: 75px;
        line-height: 1;
        position: relative;
        z-index: 1;
    }
    .service-fp__sub-title {
        margin-left: 5px;
    }
    .service-fp__wapper__content {
        width: calc( 100% - 10%);
    }
    .service-fp__wapper__content__top {
        display: block;
        margin-bottom: 40px;
    }
    .service-fp__wapper__content__top__image, .service-fp__wapper__content__top__text {
        margin-left: auto;
        width: 80%;
        margin-right: 0;
    }
    .service-fp__wapper__content__top__text {
        margin: -80px auto 0!important;
        width: 90%;
    }
    .service-fp__wapper__content__bottom__image {
        width: 100%;
        margin-top: 0;
        margin-left: -60px;
    } 
}




/* service-job */

.service-job {
    margin-bottom: 250px;
}
.service-job .service-fp__sub-title {
    text-align: right;
    padding-right: 65px;
}
.service-job .service-fp__wapper {
    flex-direction: row-reverse;
}
@media (max-width: 1023px) {
    .service-job {
        margin-bottom: 150px;
    }
    .service-job .service-fp__sub-title {
        padding-right: 0;
        margin-right: 20px;
    }
    .service-fp__wapper__content__top__text {
        margin-top: 0;
    }
}
@media (max-width: 599px) {
    .service-job .service-fp__wapper__content__bottom__text {
        transform: translateX(40px);
    }
    .service-job .service-fp__wapper__content__bottom__image {
        margin-left: 0;
        width: 110%;
    }
    .service-job h2 {
        margin-right: 5px;
    }
    .service-job .service-fp__sub-title {
        margin-right: 10px;
    }
}





/* service-it */

.service-it {
    margin-bottom: 150px;
}
.service-it__wapper__content__top {
    flex-direction: row-reverse;
    margin-top: -100px;
}
.service-it .service-fp__wapper__content__bottom__image {
    margin-left: 0;
    margin-right: auto;
}
.service-it .service-fp__wapper__content__bottom__text {
    width: 55%;
    margin-left: auto;
}
.service-it .service-fp__wapper__content__top__image, .service-fp__wapper__content__top__text {
    width: 65%;
    margin-right: 0;
}
.service-it .service-fp__wapper__content__top__image {
    width: 35%;
}

@media (max-width: 1023px) {
    .service-it__wapper__content__top {
        margin: 0;
    }
    .service-it__wapper__content__top .service-fp__wapper__content__top__text {
        margin: 0 -30% 0 0;
    }
    .service-it .service-fp__wapper__content__bottom__text {
        width: 110%;
        margin-left: -50px;
    }
    .service-it .service-fp__wapper__content__top__image, .service-fp__wapper__content__top__text {
        width: 80%;
        margin-right: 0;
    }
}
@media (max-width: 599px) {
    .service-it__wapper__content__top {
        margin-bottom: 40px;
    }
    .service-it .service-fp__wapper__content__bottom__text {
        width: 100%;
        margin-left: -30px;
    }
}




/* achievement */

.achievement {
    max-width: 1480px;
    padding: 0 50px;
    margin: 0 auto 150px;
}
.achievement h2 {
    font-family: var(--enfont);
    font-size: 10rem;
    color: var(--main-color);
    font-weight: 400;
    text-align: left;
}
.achievement__sub-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
    margin-top: -40px;
    text-align: left;
}
.achievement__sub-title::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #000;
    vertical-align: middle;
    margin-right: 5px;
}
.achievement__wapper {
    display: flex;
}
.achievement__image {
    width: 40%;
    margin-right: -10%;
}
.achievement__text {
    width: 70%;
    position: relative;
    text-align: left;
    margin-top: 50px;
    margin-bottom: -100px;
}
.achievement__text h3 {
    font-size: 2.4rem;
}
.achievement__text h3::after {
    content: "";
    width: 50px;
    height: 5px;
    margin: 20px 0 30px;
    background: var(--acsent-color);
    display: block;
}
@media (max-width: 1023px ) {
    .achievement h2 {
        font-size: 7.5rem;
    }
    .achievement__sub-title {
        margin-top: -35px;
    }
    .achievement__wapper {
        align-items: flex-start;
    }
    .achievement__image {
        width: 80%;
        margin-right: -30%;
    }
    .achievement__text {
        width: 80%;
        margin-left: -30%;
        position: relative;
        text-align: left;
        margin-top: 30vw;
        margin-bottom: 0;
    }
}
@media (max-width: 599px) {
    .achievement {
        max-width: 1480px;
        padding: 0;
        width: 90%;
        margin: 0 auto 150px;
    }
    .achievement h2 {
        font-size: 5rem;
    }
    .achievement__sub-title {
        margin-top: -25px;
    }
}





/* about */

/* about-philosophy */

.about-philosophy {
    padding: 0 50px;
    max-width: 1480px;
    margin: 0 auto 150px;
}
.about-philosophy__title {
    text-align: left;
    margin-right: auto;
}
.about-philosophy__title h2 {
    font-size: 10rem;
    color: var(--main-color);
    font-family: var(--enfont);
    font-weight: 400;
}
.about-philosophy__title p {
    margin-top: -20px;
    font-size: 1.8rem;
    margin-bottom: 50px;
    margin-left: 350px;
}
.about-philosophy__title p::before {
    content: "";
    width: 50px;
    height: 2px;
    display: inline-block;
    background: #000000;
    margin-right: 5px;
    vertical-align: middle;
}
.about-philosophy__wapper {
    display: flex;
    align-items: center;
}
.about-philosophy__wapper__image {
    width: 65%;
    margin-right: -40%;
}
.about-philosophy__wapper h3 {
    margin-left: auto;
    position: relative;
    font-size: min( 4rem , 3vw );
    text-align: right;
}

.about-philosophy__wapper__title__top {
    display: block;
    text-align: left;
    margin-left: -100px;
}
.about-philosophy__wapper strong {
    font-size: min( 6rem , 5vw );
    color: var(--acsent-color);
}
.about-philosophy__wapper-bottom {
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.about-philosophy__wapper-bottom__left, .about-philosophy__wapper-bottom__right {
    width: 35%;
}
.about-philosophy__wapper-bottom__left {
    width: 65%;
}
.about-philosophy__wapper-bottom div p {
    width: 95%;
    margin-right: auto;
    text-align: left;
}

.about-company {
    padding: 0 50px;
    max-width: 1480px;
    margin: 0 auto 150px;
    display: flex;
}
.about-company__title {
    width: 50%;
    text-align: left;
}
.about-company__title h2 { 
    font-size: 10rem;
    color: var(--main-color);
    font-family: var(--enfont);
    font-weight: 400;
}
.about-company__title p {
    margin-top: -20px;
    font-size: 1.8rem;
    margin-bottom: 50px;
    margin-left: 300px;
}
.about-company__title p::before {
    content: "";
    width: 50px;
    height: 2px;
    display: inline-block;
    background: #000000;
    margin-right: 5px;
    vertical-align: middle;
}
.about-company table {
    display: block;
    text-align: left;
    margin-top: 50px;
    width: 50%;
}
.about-company table tbody {
    display: block;
}
.about-company table tbody tr {
    display: flex;
    gap: 6%;
	align-items: center;
    padding: 20px 0;
    border-bottom: solid 1px var(--main-color);
}
.about-company table tbody tr a {
    color: #000000;
    text-decoration: underline;
    word-wrap: break-word;
}
.about-company table tbody tr:last-child {
    border-bottom: 0;
}
.about-company table tbody tr th {
    display: block;
    width: 27%;
}
.about-company table tbody tr td {
    display: block;
    width: 81%;
}

@media (max-width: 1023px) {
    .about-philosophy__title h2 {
        font-size: 7.5rem;
    }
    .about-philosophy__title p {
        margin-left: 230px;
    }
    .about-philosophy__wapper {
        display: flex;
        align-items: center;
        position: relative;
    }
    .about-philosophy__wapper__image {
        width: 100%;
        margin-right: 0;
    }
    .about-philosophy__wapper h3 {
        position: absolute;
        right: -10px;
        font-size: max(2.4rem, 5vw);
    }
    .about-philosophy__wapper__title__top {
        margin-left: -5vw;
    }
    .about-philosophy__wapper-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .about-philosophy__wapper-bottom__left, .about-philosophy__wapper-bottom__right {
        width: 80%;
        margin-left: auto;
        margin-right: -25px;
    }
    .about-philosophy__wapper-bottom__left {
        margin-right: auto;
        margin-left: 0;
    }
    .about-philosophy__wapper-bottom div p {
        width: 100%;
        margin-right: auto;
        text-align: left;
        margin-top: -70vw;
        position: relative;
        z-index: 1;
    }
    .about-company {
        flex-direction: column;
    }
    .about-company__title {
        width: 100%;
    }
    .about-company table {
        width: 100%;
        margin-top: 0;
    }
    .about-company__title h2 {
        font-size: 7.5rem;
    }
    .about-company__title p {
        margin-left: 195px;
    }
}
@media (max-width: 599px) {
    .about-philosophy {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
    .about-philosophy__title h2 {
        font-size: 5rem;
    }
    .about-philosophy__title p {
        margin-left: 110px;
        margin-top: -15px;
    }
    .about-philosophy__wapper-bottom__right {
        margin-right: -5%;
    }
    .about-philosophy__wapper-bottom div p {
        width: 120%;
    }
    .about-company {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
    .about-company__title h2 {
        font-size: 5rem;
    }
    .about-company__title p {
        margin-left: 90px;
        margin-top: -15px;
    }
    .about-philosophy__wapper h3 {
        right: 0;
        width: 100%;
    }
    .about-philosophy__wapper__title__top {
        margin-left: 0;
        text-align: right;
        margin-right: -10px;
    }
    .about-sp__center {
        display: block;
        text-align: right;
    }
    .about-sp__bottom {
        display: block;
        text-align: right;
    }
    .about-philosophy__wapper strong {
        font-size: max( 2.8rem , 5vw );
        color: var(--acsent-color);
    }
}




/* contact */

input{
    font-size: 1.8rem;
}
.top-contact__list {
    display: flex;
    position: absolute;
    bottom: 80px;
    left: 40px;
    list-style: none;
    gap: 100px;
}
.top-contact__list li {
    position: relative;
    width: 200px;
    font-size: 2.4rem;
    padding: 15px 0;
    border: solid 1px var(--background-color);
    color: var(--background-color);
    font-weight: 700;
}
.top-contact__list li::after {
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    right: -65px;
    width: 0;
    height: 0;
    border-left: 15px solid var(--acsent-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.top-contact__list li:last-child::after {
    content: none;
}
.top-contact__list__current {
    background: var(--background-color);
    color: var(--main-color)!important;
    border: none;
}
form {
    margin-bottom: 150px;
}
.formTable {
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: left;
}
.formTableChack {
    width: 100%;
}
.formTable tbody {
    display: block;
    width: 90%;
}
.formTableChack tbody {
    width: 100%;
}
.formTable tbody tr {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.formTableChack tbody tr {
    padding-bottom: 25px;
    border-bottom: solid var(--main-color) 1px;
    margin-bottom: 25px;
}
.formTable tbody tr th {
    width: 300px;
    margin-top: 5px;
}
.formTable tbody tr th p {
    font-size: 1.4rem;
    margin-left: 62px;
    font-weight: 400;
}
.form-mondatory {
    background: var(--acsent-color);
    color: #ffffff;
    padding: 5px 10px;
    display: inline-block;
    margin-right: 10px;
    font-weight: 400;
}
.formTable tbody tr td {
    flex: 1;
    display: block;
}
.formTable tbody tr td .form-name {
    width: 50%;
}
.formTable tbody tr td input {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: solid 1px var(--main-color);
}
.formTable tbody tr .form-check__td input {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px 2px 0px;
}
.formTable tbody tr .form-check__td label {
    margin-right: 20px;
}
.formTable tbody tr td textarea {
    display: block;
    padding: 15px;
    width: 100%;
    height: 200px;
    font-size: 1.8rem;
}
.form-submit {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}
.form-submit input {
    appearance: none;
    display: block;
    margin-top: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-size: 2rem;
    color: #000000;
    padding: 0;

}
.contact__information {
    font-size: 2.4rem;
    padding-bottom: 40px;
    border-bottom: solid 1px var(--main-color);
    margin-bottom: 25px;
}
.contact-button input {
    color: #000000;
}
.contact__wapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 150px;
}
.contact-backButton input {
    appearance: none;
    padding:0;
    color:#000000;
    background: transparent;
    border: none;
    font-size: 2rem;
}
.form-check__td__list {
    display: inline-block;
    margin-top: 10px;
}
.contact-scroll {
    text-align: left;
    width: calc(90% - 30px);
    max-width: 600px;
    margin: 0 auto;
    border: solid 1px var(--main-color);
    height: 150px;
    padding: 15px;
    overflow-y: scroll;
    margin-bottom: 40px;
}
.doui-text {
    font-size: 1.4rem;
    margin: 10px 0 40px;
}
.contat-button {
    margin: 0;
    width: auto;
}
.contact-backButton {
    margin: 0 auto;
    width: 200px;
}
.contactEnd {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 150px;
}
.contactEnd h2 {
    font-size: 3rem;
}
.contactEnd h2::after {
    content: "";
    width: 50px;
    height: 5px;
    display: block;
    margin: 20px auto 30px;
    background: var(--acsent-color);
}
.contactEnd p {
    margin-bottom: 50px;
    text-align: left;
}
.button-center {
    margin: 0 auto;
}
@media (max-width: 1023px) {
    .top-contact__list {
        gap: 50px;
        left: 20px;
        bottom: 100px;
    }
    .top-contact__list li {
        width: 150px;
    }
    .top-contact__list li::after {
/*         transform: translate(-50%,-50%) rotate(90deg);
        bottom: -50px;
        left: 50%;
        right: auto;
        top: auto; */
        right: -40px;
    }
    .formTable tbody tr th {
        width: 250px;
    }
}
@media (max-width: 599px) {
    .top-contact__list {
        bottom: 50px;
        gap: 30px;
        left: 80px;
        flex-direction: column;
        transform: translate(-50%, 0);
    }
    .top-contact__list li {
        font-size: 1.8rem;
        padding: 5px 0;
        width: 120px;
        border: solid 1px var(--background-color);
        color: var(--background-color);
        font-weight: 700;
    }
    .formTable tbody tr {
        flex-direction: column;
    }
    .formTable tbody tr td .form-name {
        width: 100%;
    }
    .top-contact__list li::after {
        right: -27px;
    }
    .top-contact__list li::after {
        transform: translate(-50%,-50%) rotate(90deg);
        bottom: -37px;
        left: 50%;
        right: auto;
        top: auto;
    }
}




/* recruit */
.recruitFaq {
    flex-direction: column;
}
.recruit-app .about-company__title {
    width: 55%;
}
.recruit-app .about-company__title p {
    margin-top: -40px;
    margin-left: 355px;
    width: 100%;
}
.recruitFaq .about-company__title p {
    margin-top: -35px;
    margin-left: 35px;
    width: 100%;
}
.recruitFaq h3 {
    text-align: left;
    font-size: 3rem;
}
.q {
    padding: 20px 40px 20px 20px;
    border-bottom: solid 1px var(--main-color);
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 50px;
}
.q h4 {
    font-family: var(--enfont);
}
.q h4 span {
    color: var(--acsent-color);
    font-size: 4rem;
}
.q p {
    margin-top: 25px;
}
.qa {
    text-align: left;
}
.q:before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--acsent-color);
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
}
.q.active::after {
    transform: rotate(0deg) translate(0, -50%);
}
.q:after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--acsent-color);
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    transition: 0.4s;
}
.a-active {
    display: flex;
    gap: 50px;
}
.a-active h4 span {
    color: var(--acsent-color);
    font-size: 4rem;
}
.a-active p {
    margin-top: 30px;
}
.a {
    display: none;
    padding: 20px 40px 20px 20px;
    border-bottom: solid 1px var(--main-color);
    background: var(--flow-color);
}
.bottomNone {
    border: none;
}
.recuitFaq__company {
    margin-bottom: 100px;
}
@media (max-width: 1023px) {
    .recruit-app .about-company__title p {
        margin-top: -30px;
        margin-left: 235px;
    }
    .recruitFaq .about-company__title p {
        margin-top: -20px;
        margin-left: 5px;
    }
}
@media (max-width: 599px) {
    .recruit-app .about-company__title p {
        margin-top: -20px;
        margin-left: 115px;
    }
    .q {
        display: block;
    }
    .a-active {
        display: block;
    }
    .q p, .a-active p {
        margin-top: 20px;
    }
}





/* flow */

.flow {
    padding: 0 50px;
    max-width: 1480px;
    margin: 0 auto 150px;
}
.flow__title {
    font-size: 2.4rem;
}
.flow__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    margin: 20px auto 30px;
    background: var(--acsent-color);
}
.flow__text {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}
.flowList {
    margin-bottom: 150px;
}
.flowList__ul {
    list-style: none;
}
.flowList__ul li {
    padding: 50px 0;
}
.flowList__ul__li__wapper {
    padding: 0 50px;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.flowList__ul li:nth-child(even) {
    background: var(--flow-color);
}
.flowList__ul li:nth-child(even) .flowList__ul__li__wapper {
    flex-direction: row-reverse;
}
.flowList__ul__li__wapper__image {
    width: 40%;
}
.flowList__ul__li__wapper__text {
    width: 60%;
}
.flowList__ul__li__wapper__text__wapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}
.flowList__ul__li__wapper__text__wapper__namber {
    font-size: 5rem;
    font-family: var(--enfont);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.flowList__ul__li__wapper__text__wapper__namber span {
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--main-color);
}
.flowList__ul__li__wapper__text__wapper__namber span:nth-child(2) {
    width: 20px;
    height: 20px;
}
.flowList__ul__li__wapper__text__wapper__namber span:nth-child(3) {
    width: 15px;
    height: 15px;
}
.flowList__ul__li__wapper__text__wapper__text {
    text-align: left;
}
.flowList__ul__li__wapper__text__wapper__text h2 {
    font-size: 2.4rem;
    margin-top: 25px;
    margin-bottom: 30px;
}
.flowList__button {
    font-size: 2rem;
    width: 240px;
    margin-top: 40px;
}
@media (max-width: 1023px) {
    .flowList__ul__li__wapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .flowList__ul__li__wapper__image {
        width: 80%;
    }
    .flowList__ul__li__wapper__text {
        margin-left: auto;
        width: 80%;
    }
    .flowList__ul__li__wapper__text {
        width: 100%;
        margin-left: auto;
        position: relative;
        z-index: 1;
        margin-top: -75px;
    }
    .flowList__ul li:nth-child(even) .flowList__ul__li__wapper {
        flex-direction: column;
    }
    .flowList__ul li:nth-child(even) .flowList__ul__li__wapper .flowList__ul__li__wapper__image {
        margin-left: auto;
    }
    .flowList__ul li:nth-child(even) .flowList__ul__li__wapper .flowList__ul__li__wapper__text {
        margin-left: 0;
    }
    .flowList__ul__li__wapper__text__wapper {
        gap: 30px;
        width: 100%;
    }
    .flowList__ul li:nth-child(odd) .flowList__ul__li__wapper__text__wapper {
        flex-direction: row-reverse;
    }
    .flowList__button {
        margin-right: -30px;
        margin-left: 0;
    }
}
@media (max-width: 599px) {
    .flow {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
    .flowList {
        margin-bottom: 100px;
    }
    .flowList__ul__li__wapper {
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }
    .flowList__ul__li__wapper__text {
        width: 100%;
    }
    .flowList__ul__li__wapper__text__wapper {
        width: 100%;
        gap: 20px;
    }
}





/* fp */

.fp-philosophy {
    padding: 0 50px;
    max-width: 1480px;
    margin: 0 auto 100px;
}

.fp-philosophy h3 .about-philosophy__wapper__title__top {
    margin-left: -200px;
}
.fp-philosophy__wapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}
.fp-philosophy__wapper__title span {
    display: block;
    text-align: right;
}
.fp-philosophy__wapper__title__top {
    margin-right: 100px;
}
.fp-philosophy__wapper__image {
    width: 65%;
}
.fp-philosophy__wapper__title {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    text-align: left;
    font-size: min( 4rem , 3vw );
}
.fpList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.fpList li {
    text-align: left;
    width: calc( 100% / 3 - 49px);
    border: solid 1px var(--main-color);
    border-top: solid 5px var(--acsent-color);
    padding: 30px 10px 20px;
}
.fpList li h4 {
    margin-bottom: 20px;
}
.fp-philosophy-bottom {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}
.fp-philosophy-bottom h3 {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    text-align: left;
    font-size: min( 4rem , 3vw );
}
.fp-philosophy-bottom .fp-philosophy-bottom__image {
    width: 65%;
    margin-left: auto;
}
.fp-philosophy-bottom__bottom-text {
    display: block;
    margin-left: 150px;
}
.fp-philosophy__bottomList {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.fp-philosophy__bottomList li {
    width: calc( 100% / 2 - 62px);
    display: flex;
    padding: 30px 20px 20px 20px;
    border: solid 1px var(--main-color);
    border-top: solid 5px var(--acsent-color);
    gap: 20px;
}
.fp-philosophy__bottomList__list__photo {
    width: 120px;
}
.fp-philosophy__bottomList__list__photo p {
    margin-top: 10px;
}
.fp-philosophy__bottomList__list__text {
    flex: 1;
    text-align: left;
}
.fp-philosophy__bottomList__list__text h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}
@media (max-width: 1023px) {
    .fp-philosophy__wapper__title {
        transform: translate(-50%, -50%);
        font-size: max(2.4rem, 5vw);
        width: 100%;
        right: 0;
        left: 50%;
    }
    .fp-philosophy__wapper__title__top {
        margin-right: 0;
        text-align: left!important;
    }
    .fp-philosophy__wapper__image {
        width: 100%;
    }
    .fpList li {
        width: calc(100% / 2 - 42px);
    }
    .fp-philosophy-bottom__bottom-text {
        margin-left: 0;
        text-align: right;
    }
    .fp-philosophy-bottom .fp-philosophy-bottom__image {
        width: 100%;
    }
    .fp-philosophy-bottom h3 {
        transform: translate(-50%, -50%);
        font-size: max(2.4rem, 5vw);
        width: 100%;
        left: 50%;
    }
    .fp-philosophy__bottomList li {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        padding: 30px 10px 20px;
    }
}
@media (max-width: 599px) {
    .fp-philosophy {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
    .fpList li {
        width: 100%;
    }
    .fp-philosophy-bottom h3 {
        transform: translate(-50%, -50%);
        font-size: max(2rem, 5vw);
        left: 50%;
    }
    .fp-philosophy__bottomList li {
        width: 100%;
    }
}





/* job */

.tab_area{
    overflow:hidden;
    display: flex;
    justify-content: center;
    list-style: none;
    border-bottom: solid 1px var(--main-color);
    margin-bottom: 100px;
}

.tab_area li{
    width:30%;
    max-width: 300px;
    text-align:center;
    cursor: pointer;
    padding:20px 0;
    border-top: solid 1px var(--main-color);
    border-left: solid 1px var(--main-color);
}
.tab_area li:last-child {
    border-right: solid 1px var(--main-color);
}
.all_area {
    overflow: hidden;
}
.tab_area li.select{
    background-color:#ffffff;
    background-image:none;
    color:#333333;
    border-top:5px solid var(--acsent-color);
    padding-top: 15px;
}
.hide {
    display:none;
}

.jobDl {
    padding: 0 50px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: left;
}
.jobDl dt {
    padding: 15px 20px;
    font-size: 2.4rem;
    border: solid 1px var(--main-color);
    border-left: solid 10px var(--acsent-color);
    margin-bottom: 50px;
}
.jobDl dt span {
    font-family: var(--enfont);
}
.jobDl dt span::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: #000000;
    vertical-align: middle;
    margin: 0 5px;
}
.jobDl dt span::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: #000000;
    vertical-align: middle;
    margin: 0 5px;
}
.jobDl dd {
    margin-bottom: 100px;
}
.jobDl dd span {
    display: block;
    margin-bottom: 50px;
    font-size: 2.4rem;
}
.jobAchievement {
    margin-bottom: 250px;
}
.jobVoise {
    padding: 0 50px;
    max-width: 1280px;
    margin: 0 auto 150px;
}
.jobDate {
    list-style: none;
    text-align: left;
}
.jobDate li {
    padding: 0;
    width: 100%;
    border: none;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.jobDate li h5 {
    width: 100px
}
.jobDate li p {
    flex: 1;
}
@media (max-width: 1023px) {
    .jobDate li {
        flex-direction: inherit;
    }
}
@media (max-width: 599px) {
    .jobDl {
        width: 90%;
        margin: 0 auto 100px;
        padding: 0;
    }
    .jobAchievement {
        margin-bottom: 100px;
    }
    .jobVoise {
        padding: 0;
        width: 90%;
        margin: 0 auto 100px;
    }
}
.confrmation input {
    display: none;
}
.confrmation label {
    position: relative;
}
.confrmation label::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    vertical-align: sub;
    border: solid 2px var(--background-color);
}

.confrmation input:checked ~ label::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 8px;
    transform: rotate(-45deg);
    border-left: 4px solid var(--acsent-color);
    border-bottom: 4px solid var(--acsent-color);
    animation: check 0.2s linear both;
}
@keyframes check {
    0%{
        height: 0;
        width: 0;
        top: 8px;
        left: 4px;
    }
    30%{
        height: 4px;
        width: 0;
        top: 10px;
        left: 4px;
    }
    100%{
        height: 4px;
        width: 12px;
        top: 5px;
        left: 4px;
    }
}
.fp__title {
    font-size: 8rem!important;
    text-align: left;
    writing-mode: vertical-rl!important;
}
.fp__title__bottom {
    display: block;
    margin-top: 100px;
}
.external {
    position: relative;
    width: 11px;
    height: 11px;
    border: solid 2px #000000;
    display: inline-block;
    margin-left: 13px;
}
.external::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-bottom: solid 2px #000000;
    border-left: solid 2px #000000;
    left: -6px;
    bottom: -6px;
}
.fp-philosophy__bottomList__list__photo img {
    aspect-ratio: 3/4;
    object-fit: contain;
}