@charset "utf-8";

/*===========================
      以下、動きのためのcss
============================*/
/*==ヘッダーの動きCSS*/

/*　上に上がる動き　*/

#header.up_move {
    position: fixed;
    width: 100%;
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/

#header.down_move {
    position: fixed;
    width: 100%;
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #000;
    text-align: center;
    color: #fff;
}

/* Loading中央配置　*/
#splash_logo {
    position: absolute;
    width: 100%;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: PageAnimeAppear;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    opacity: 0;
}

#splash_area .splash_text {
    font-size: 2.5rem;
}

#splash_area .splash_text h2 {
    font-size: 1.5rem;
}


/*=================
 画面遷移のためのCSS
===================*/

/*画面遷移アニメーション*/
.splashbg {
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: scaleX(0);
    background-color: #373A61;
    /*伸びる背景色の設定*/
    animation-name: PageAnime;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

}

@keyframes PageAnime {
    0% {
        transform-origin: right;
        transform: scaleX(0);
    }

    50% {
        transform-origin: right;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: left;
    }

    100% {
        transform-origin: left;
        transform: scaleX(0);
    }
}

/*画面遷移の後現れるコンテンツ設定*/

#container {
    opacity: 0;
    /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}


@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*bodyにappearクラスがついたら文字が遅れて出現*/
body.appear #content_area .top_text h2 {
    animation-name: PageAnimeAppear;
    animation-duration: 1.9s;
    animation-delay: 1.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

body.appear #content_area .top_text h1 span {
	color: #1d1d1d;
	opacity: 0;
	transform: translate(0, -100px) rotate(360deg) scale(0);
	animation: revolveDrop .3s forwards;
    animation-delay: 2s;
    display: inline-block;
}

body.appear #content_area .top_text h1 span:nth-of-type(2) {
	animation-delay:  2.05s;
}
body.appear #content_area .top_text h1 span:nth-of-type(3) {
	animation-delay:  2.1s;
}
body.appear #content_area .top_text h1 span:nth-of-type(4) {
	animation-delay:  2.15s;
}
body.appear #content_area .top_text h1 span:nth-of-type(5) {
	animation-delay:  2.2s;
}
body.appear #content_area .top_text h1 span:nth-of-type(6) {
	animation-delay:  2.25s;
}
body.appear #content_area .top_text h1 span:nth-of-type(7) {
	animation-delay:  2.3s;
}
body.appear #content_area .top_text h1 span:nth-of-type(8) {
	animation-delay:  2.35s;
}
body.appear #content_area .top_text h1 span:nth-of-type(9) {
	animation-delay:  2.4s;
}
body.appear #content_area .top_text h1 span:nth-of-type(10) {
	animation-delay:  2.45s;
}
body.appear #content_area .top_text h1 span:nth-of-type(11) {
	animation-delay:  2.5s;
}
body.appear #content_area .top_text h1 span:nth-of-type(12) {
	animation-delay:  2.55s;
}
body.appear #content_area .top_text h1 span:nth-of-type(13) {
	animation-delay:  2.6s;
}
body.appear #content_area .top_text h1 span:nth-of-type(14) {
	animation-delay:  2.65s;
}
body.appear #content_area .top_text h1 span:nth-of-type(15) {
	animation-delay:  2.7s;
}
body.appear #content_area .top_text h1 span:nth-of-type(16) {
	animation-delay:  2.75s;
}
body.appear #content_area .top_text h1 span:nth-of-type(17) {
	animation-delay:  2.8s;
}
body.appear #content_area .top_text h1 span:nth-of-type(18) {
	animation-delay:  2.85s;
}
body.appear #content_area .top_text h1 span:nth-of-type(19) {
	animation-delay:  2.9s;
}
body.appear #content_area .top_text h1 span:nth-of-type(20) {
	animation-delay:  2.95s;
}
body.appear #content_area .top_text h1 span:nth-of-type(21) {
	animation-delay:  3.0s;
}
body.appear #content_area .top_text h1 span:nth-of-type(22) {
	animation-delay:  3.05s;
}
body.appear #content_area .top_text h1 span:nth-of-type(23) {
	animation-delay:  3.1s;
}
body.appear #content_area .top_text h1 span:nth-of-type(24) {
	animation-delay:  3.15s;
}
body.appear #content_area .top_text h1 span:nth-of-type(25) {
	animation-delay:  3.2s;
}
body.appear #content_area .top_text h1 span:nth-of-type(26) {
	animation-delay:  3.25s;
}
body.appear #content_area .top_text h1 span:nth-of-type(27) {
	animation-delay:  3.3s;
}
body.appear #content_area .top_text h1 span:nth-of-type(28) {
	animation-delay:  3.35s;
}
body.appear #content_area .top_text h1 span:nth-of-type(29) {
	animation-delay:  3.4s;
}
body.appear #content_area .top_text h1 span:nth-of-type(30) {
	animation-delay:  3.45s;
}

@keyframes revolveDrop {
	30% {
		transform: translate(0, -50px) rotate(180deg) scale(1);
	}

	60% {
		transform: translate(0, 20px) scale(.8) rotate(0deg);
	}

	100% {
		transform: translate(0) scale(1) rotate(0deg);
		opacity: 1;
	}
}

/*=====================
ナビゲーションのためのCSS
=====================*/

@media screen and (max-width:990px) {
    #header.up_move, #header.down_move {
        animation: none;
    }

    /*アクティブになったエリア*/
    #global_navigation.panelactive {
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle_background {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #373A61;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        bottom: -50px;
        left: calc(50% - 50px);
        /*50%から円の半径を引いた値*/
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle_background.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #global_navigation_list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #global_navigation.panelactive #global_navigation_list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #global_navigation ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -40%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #global_navigation.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #global_navigation.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* メニューボタン */

.openbtn {
    display: none;
}

@media screen and (max-width:990px) {

    .openbtn {
        display: block;
        position: fixed;
        z-index: 9999;
        cursor: pointer;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background-color: #373A61;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
    }

    .openbtn span {
        height: 1px;
        background: #fff;
        width: 45%;
        left: 15px;
    }

    .openbtn span:nth-of-type(1) {
        top: 20px;
    }

    .openbtn span:nth-of-type(2) {
        top: 30px;
    }

    .openbtn span:nth-of-type(3) {
        top: 40px;
    }

    /*線が回転して×になる*/
    .openbtn.active span:nth-of-type(1) {
        top: 22px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 34px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

}

/*=======================
スクロールダウンの動き
=======================*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
    position: absolute;
    left: calc(50% - 10px);
    top: 30vh;
    width: 30px;
    height: 60px;
    border-radius: 15px;
    border: solid #fff 1.25px;
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: 9px;
    /*線の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #29C4C6;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 2.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 10;
        top: 5px;
        opacity: 0;
    }

    30% {
        height: 10px;
        opacity: 1;
    }

    100% {
        height: 10;
        top: 40px;
        opacity: 0;
    }
}

/*===========================
       以下、レイアウトcss
============================*/
body {
    font-family: 'NotoSansJP', sans-serif;
    letter-spacing: 0.1em;
    color: #1D1D1D;
    font-size: 1rem;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
    padding: 0;
}

* {
    box-sizing: border-box;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #1D1D1D;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #373A61;
}

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

@media screen and (min-width:751px) {
    .common_pc_none {
        display: none;
    }

}

@media screen and (max-width:750px) {
    .common_sp_none {
        display: none;
    }
}


/*======
font
======*/
h3,
.common_more_btn,
#global_navigation ul li a, #footer,
#header dl,
.section_title_en,
#top_service .service_container,
#top_img_area h2,
#page_top_area,
.page_content_philosophy_area,
#page_company_table_area .en {
    font-family: 'DIN-2014_Condensed', 'NotoSansJP', serif;
}


/*======
common
======*/
/*morebtn*/
.common_more_btn {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    background: #fff;
    padding: 5px 90px 5px 30px;
    display: inline-block;
    text-align: center;
    transition: all .2s linear;
    color: #333;
    text-decoration: none;
    border: 1px solid #D6D6D6;
    outline: none;
    border-radius: 50px;
    font-size: 1.5rem;
}

.common_more_btn:before {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 22px;
    right: 20px;
    /*線の形状*/
    width: 30px;
    height: 13px;
    border-radius: 10px;
    background: #29C4C6;
    transition: all .2s linear;
}

.common_more_btn:hover::before {
    width: 15px;
}

/*======
header
======*/
header {
    position: fixed;
    /*fixedを設定して固定*/
    width: 100%;
    /*横幅指定*/
    z-index: 99;
    top: 0;
}

header .header_logo {
    width: 165px;
    position: absolute;
    top: 15px;
    left: 40px;
}

.heder_back_white {
    background-color: #fff;
}

#page_service header,
#page_recruit header,
#page_company header,
#page_policy header,
.page header {
    background-color: #fff;
}

/* global_navigation */
#main_nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

#global_navigation ul {
    display: flex;
}

#global_navigation ul li a {
    display: block;
    padding: 0px 25px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
    font-size: 1.7rem;
}

#global_navigation ul span {
    display: block;
    font-size: 0.5em;
}


#main_nav dl {
    background: #373A61;
    color: #fff;
    padding: 22px 40px;
    text-align: center;
}

#main_nav dl:hover {
    opacity: 0.8;
}

#main_nav dl dd {
    font-size: 1.7rem;
}

#main_nav dl dt {
    font-size: 0.8rem;
}

#main_nav dl a {
    color: #fff;
    font-size: 1.5vw;
}


/*=========
   area
=========*/
#container {
    position: relative;
    overflow-x: hidden;
}

#content_area {
    width: 100%;
}

/*top_img_area*/
#top_img_area {
    position: relative;
}

#top_img_area .top_text {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 40%;
    margin: 0 auto;
    z-index: 2;
}

#top_img_area h1 {
    font-size: 2.5rem;
}


#top_img_area .scrolldown1 {
    top: inherit;
    bottom: 20px;
    z-index: 1;
}


/*　トップ背景画像設定　*/
.top_img {
    position: relative;
    z-index: 1;
    height: 90vh;
    opacity: 0.7;
}

.top_img li {
    width: 100%;
    height: 90vh;
    background-image: url(../image/top.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*main_area*/
#main_area {
    width: 100%;
    margin: auto;
    /* 中央寄せ */
    /*背景の線*/
    background-image:
        linear-gradient(to right,
            transparent calc(5% - 0.5px),
            #e8e8e8 calc(5% - 0.5px),
            /* #e8e8e8の色で線を指定 */
            #e8e8e8 5%,
            transparent 5%,
            transparent calc(27.5% - 0.5px),
            #e8e8e8 calc(27.5% - 0.5px),
            /* #e8e8e8の色で線を指定 */
            #e8e8e8 27.5%,
            transparent 27.5%,
            transparent calc(50% - 0.5px),
            #e8e8e8 calc(50% - 0.5px),
            /* #e8e8e8の色 */
            #e8e8e8 50%,
            transparent 50%,
            transparent calc(72.5% - 0.5px),
            #e8e8e8 calc(72.5% - 0.5px),
            /* #e8e8e8の色 */
            #e8e8e8 72.5%,
            transparent 72.5%,
            transparent calc(95% - 0.5px),
            #e8e8e8 calc(95% - 0.5px),
            /* #e8e8e8の色 */
            #e8e8e8 95%,
            transparent 95%);
    background-size: 100% 100%;
}

/* service */

#top_service {
    background-color: #F4F6F7;
    width: 100%;
    position: relative;
    padding: 30px 20px;
    /*背景の線*/
    background-image:
        linear-gradient(to right,
            transparent calc(5% - 0.5px),
            #e8e8e8 calc(5% - 0.5px),
            /* #e8e8e8の色で線を指定 */
            #e8e8e8 5%,
            transparent 5%,
            transparent calc(27.5% - 0.5px),
            #e8e8e8 calc(27.5% - 0.5px),
            /* #e8e8e8の色で線を指定 */
            #e8e8e8 27.5%,
            transparent 27.5%,
            transparent calc(50% - 0.5px),
            #e8e8e8 calc(50% - 0.5px),
            /* #e8e8e8の色 */
            #e8e8e8 50%,
            transparent 50%,
            transparent calc(72.5% - 0.5px),
            #e8e8e8 calc(72.5% - 0.5px),
            /* #e8e8e8の色 */
            #e8e8e8 72.5%,
            transparent 72.5%,
            transparent calc(95% - 0.5px),
            #e8e8e8 calc(95% - 0.5px),
            /* #e8e8e8の色 */
            #e8e8e8 95%,
            transparent 95%);
    background-size: 100% 100%;
}

#top_service .section_title_en {
    font-size: 15rem;
    color: #555;
    position: absolute;
    left: 0;
    top: 100px;
    opacity: .1;
    line-height: 1;
    text-align: justify;
}

#top_service .section_title_en::first-letter {
    font-size: 30rem;
    color: #373A61;
    float: left;
    line-height: 0.5;
    margin-right: 5px;
    text-align: center;

}

#top_service .section_title {
    width: 83%;
    margin: 150px auto 30px;
    position: relative;
    border-bottom: solid #A7A7A7 1px;
}

#top_service .section_title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 10%;
    height: 1px;
    background: #0CC7C9;
}

#top_service .common_more_btn {
    position: absolute;
    right: 0;
    top: 0;
}

#top_service h3 {
    font-size: 2rem;
    font-weight: 400;
}

#top_service .service_container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    margin: 0 auto 80px;
}

#top_service .service_card {
    background-color: #ffffff;
    width: calc(33.333% - 20px);
    height: 480px;
    margin: 5px;
    padding: 0;
    transform: skew(-5deg);
    overflow: hidden;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center;
}

#top_service .service_card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #2D5D5E;
    opacity: 0.5;

}

#top_service .service_card_text {
    position: relative;
    top: 15%;
    z-index: 2;
}

#top_service .service_card_text h2,
#top_service .service_card_text p {
    transform: skew(7deg);
}

#top_service .service_card h2 {
    font-size: 2.5rem;
    line-height: 1.2em;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
}

#top_service .subtitle {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.2em;
}

#top_service .subtitle::before {
    content: '●';
    color: #0694a2;
    margin: 1em;
    font-size: 0.5em;
    vertical-align: middle;
}

#top_service .description {
    color: #fff;
    font-size: 1rem;
    width: 75%;
    margin: 0 auto;
    text-align-last: left;
    letter-spacing: 0.03em;
    line-height: 1.7;
}

/* Background images for service cards */
#top_service #advisory_service {
    background-image: url('../image/service01.jpg');
}

#top_service #finance_consulting {
    background-image: url('../image/service02.jpg');
}

#top_service #finance_solution {
    background-image: url('../image/service03.jpg');
}

/* recruit */

#top_recruit {
    width: 100%;
    position: relative;
    padding: 30px 20px 130px;
    margin: 250px 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 33%, rgba(244, 246, 247, 1) 33%);
}

#top_recruit .recruit_container {
    display: flex;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-around;
}

#top_recruit .recruite_text_area {
    width: 50%;
}

#top_recruit .recruit_img {
    width: 26%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}

#top_recruit .recruit_img img {
    width: 80%;

}

#top_recruit .recruit_img img:nth-child(1) {
    align-self: flex-start;
    margin-bottom: 50px;

}

#top_recruit .recruit_img img:nth-child(2) {
    align-self: flex-end;

}

#top_recruit .recruit_title_area {
    width: 50%;
}

#top_recruit .recruit_title {
    width: 100%;
    margin: 50px auto 30px;
    position: relative;
    border-bottom: solid #A7A7A7 1px;

}

#top_recruit .recruit_title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 10%;
    height: 1px;
    background: #0CC7C9;
}

#top_recruit .section_title_en {
    font-size: 12rem;
    color: #101010;
    position: absolute;
    left: 0;
    bottom: 10rem;
    line-height: 0;
    text-align: justify;
}

#top_recruit h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

#top_recruit .recruit_text h2 {
    color: #373A61;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
	margin-bottom: 40px;
}

#top_recruit .recruit_text p {
    margin: 15px 0 40px;
}


/* company */

#top_company {
    width: 100%;
    position: relative;
    padding: 30px 20px 200px;
    margin: 100px 0 0;
}

#top_company .company_container {
    display: flex;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-around;
}

#top_company .company_text_area {
    width: 50%;
}

#top_company .company_img {
    width: 26%;
    background-image: url("../image/company01.jpg");
    background-position: center;
    background-size: cover;

}

#top_company .company_title_area {
    width: 50%;
}

#top_company .company_title {
    width: 100%;
    margin: 20px auto 30px;
    position: relative;
    border-bottom: solid #A7A7A7 1px;

}

#top_company .company_title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 10%;
    height: 1px;
    background: #0CC7C9;
}

#top_company .section_title_en {
    font-size: 12rem;
    color: #E8E8E8;
    position: absolute;
    left: 0;
    top: 20px;
    line-height: 0;
    text-align: justify;
    z-index: -1;
}

#top_company h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

#top_company .company_text h2 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}

#top_company .company_text h2 span {
    color: #373A61;
}

#top_company .company_text p {
    margin: 15px 0 40px;
}

#top_company .company_info_list {
    margin: 50px 0 100px;
}

#top_company .company_info_list .list_item {
    display: grid;
    grid-template-columns: 150px auto;
    padding: 5px;
}

#top_company .company_info_list .list_item:nth-child(odd) {
    background-color: #FAFAFA;
}

#top_company .company_info_list .list_item:nth-child(even) {
    background-color: #ffffff;
}

#top_company .company_info_list dt {
    font-weight: 500;
    color: #0A5F60;
    margin-left: 8px;
}

#top_company .company_info_list dd {
    margin: 0;
}



/* footer */
#footer {
    color: #101010;
    width: 100%;
    line-height: 1.5;
}

#footer .footer_contact_area {
    width: 100%;
    height: 300px;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    background-image: url("../image/contact.jpg");
    background-size: cover;
    background-position: center;
}

#footer .footer_contact_area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #373A61;
    opacity: 0.8;
    transition: all 0.3s ease-out;
}

#footer .footer_contact_area:hover::after {
    opacity: 0.6;

}

#footer .footer_contact_text {
    width: 50%;
    font-size: 8rem;
    padding: 0 0 0 100px;
}

#footer .footer_contact_text,
#footer .footer_contact_btn {
    z-index: 2;
    color: #fff;
}

#footer .footer_contact_text {
    align-self: center;
}

#footer .footer_contact_btn {
    width: 50%;
    padding: 0 60px 0 0;
    position: relative;
}

#footer .footer_contact_btn::before {
    content: 'Clicl Here';
    text-align: right;
    position: absolute;
    top: 50%;
    left: 20%;
    /*下線の形状*/
    width: 50%;
    height: 1px;
    background: #fff;
    transition: all .15s linear;
}

#footer .footer_contact_area:hover .footer_contact_btn::before {
    top: 50%;
    left: 30%;
}

#footer .footer_contact_btn::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    top: calc(50% - 100px);
    left: 60%;
    border: solid #fff 1px;
    transition: all .2s;
}

#footer .footer_contact_area:hover .footer_contact_btn::after {
    top: calc(50% - 115px);
    width: 230px;
    height: 230px;
    border-radius: 115px;
}

#footer .footer_main_area {
    width: 100%;
    padding: 80px;
    background-image: radial-gradient(circle at 65% 0%, rgba(244, 246, 247, 1) 61%, rgba(237, 237, 237, 1) 61%);
    background-size: cover;
}

#footer .footer_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#footer .footer_logo {
    width: 85%;
    margin: 20px 0 20px 10px;
}

#footer .footer_logo span {
    font-size: 1.6rem;
    display: block;
}

#footer .footer_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_main_area>.footer_link {
    margin: 60px 0 0;
}

#footer .footer_link ul {
    font-size: 0.9rem;
    margin: 0;
}

#footer .footer_link ul li {
    display: inline-block;
    margin: 0 20px;
    font-size: 1.8rem;
    text-align: center;
}

#footer .footer_link ul li span {
    display: block;
    font-size: 0.5em;
}

#footer small {
    margin: 0 20px 0 0;
}



/*===========================
       以下、子ページ用css
============================*/


/* ==============
子ページ共通レイアウト
=============== */

/*topimg*/
#page_top_area {
    margin-top: 7%;
    width: 100%;
    height: 50vh;
}

#page_top_area #page_img_area {
    width: 100%;
    height: 50vh;
    background-position: right;
    background-repeat: no-repeat;
    background-size: 90%;
    clip-path: polygon(30% 0, 100% 0%, 100% 100%, 15% 100%);
}

#page_top_area,
#page_top_area #page_img_area,
#page_top_area .top_link li {
    position: relative;
}

#page_top_area #page_img_area::after {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #093A3B;
    opacity: 0.2;
}

#page_top_area #page_img_area::after,
#page_top_area .page_text_area,
#page_top_area .top_link,
#page_top_area .top_link li::after {
    position: absolute;
}

#page_top_area .page_text_area {
    top: 10%;
    left: 5%;
}

#page_top_area .page_text_area h1 {
    font-size: 10rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 0.5em;
}

#page_top_area .page_text_area h3 {
    font-weight: 400;
}

/*ページ内リンクリスト*/
#page_top_area .top_link {
    bottom: 10%;
    right: 10%;
    line-height: 1;
}

#page_top_area .top_link li {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 1.8rem;
    margin: 0 1.5em;
}

/*ページ内リンクリストアイコン*/
#page_top_area .top_link li::after {
    content: '';
    display: inline-block;
    font-size: 1.35em;
    width: 1em;
    height: 1em;
    top: -0.1em;
    right: -1.2em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg id='グループ_20' data-name='グループ 20' transform='translate(-1250 -387)'%3E%3Cg id='楕円形_7' data-name='楕円形 7' transform='translate(1250 387)' fill='none' stroke='%23fff' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='20' stroke='none'/%3E%3Ccircle cx='20' cy='20' r='19.5' fill='none'/%3E%3C/g%3E%3Cg id='グループ_17' data-name='グループ 17' transform='translate(0 -1.75)'%3E%3Cline id='線_16' data-name='線 16' y2='15' transform='translate(1270 399.5)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cpath id='多角形_1' data-name='多角形 1' d='M4,0,8,7H0Z' transform='translate(1274 418) rotate(180)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}


#page_service #page_content_flex,
#page_company #page_content_flex {
    width: 100%;
    position: relative;
    padding: 30px 20px 200px;
    margin: 100px 0 0;
}

#page_service .page_content_container,
#page_company .page_content_container {
    display: flex;
    width: 85%;
    margin: 100px auto 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#page_service .page_content_container:first-child {
    margin: 0 auto;
}

#page_service .page_content_text_area {
    width: 40%;
}

#page_company .page_content_text_area {
    width: 100%;
}

#page_service .page_content_img {
    width: 45%;
}

#page_service .page_content_img img {
    width: 100%;
}


#page_service .page_content_title_area {
    width: 50%;
}

#page_service .page_content_title,
#page_company .page_content_title {
    width: 100%;
    margin: 20px auto 30px;
    position: relative;
    border-bottom: solid #A7A7A7 1px;

}

#page_service .page_content_title::before,
#page_company .page_content_title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 10%;
    height: 1px;
    background: #0CC7C9;
}

#page_service .section_title_en,
#page_company .section_title_en {
    font-size: 5rem;
    line-height: 1.3;
}

#page_service #page_content_flex h3,
#page_company #page_content_title h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1em;
}

#page_service #page_content_flex h3::before,
#page_company #page_content_flex h3::before {
    content: '●';
    color: #0694a2;
    margin-right: 1em;
    font-size: 0.5em;
    vertical-align: middle;
}


/* 表 */
#page_service .consulting_section,
#page_service .factoring_section {
    border-collapse: collapse;
    width: 45%;
    margin: 4% 0 0;
    position: relative;

}

#page_service .consulting_section h2,
#page_service .factoring_section h2 {
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.5em 0;
}

#page_service .consulting_section h2::after,
#page_service .factoring_section h2::after,
#page_service .consulting_section h2::before,
#page_service .factoring_section h2::before {
    content: '■';
    font-size: 0.8rem;
    position: absolute;
    top: 1.2em;
}

#page_service .consulting_section h2::after,
#page_service .factoring_section h2::after {
    right: 1em;
}

#page_service .consulting_section h2::before,
#page_service .factoring_section h2::before {
    left: 1em;
}

#page_service .consulting_section {
    background-color: #EFF7F7;
}

#page_service .factoring_section {
    background-color: #EFFCFF;
}

#page_service .consulting_header,
#page_service .factoring_header {
    color: #FFFFFF;
    text-align: center;
}

#page_service .consulting_header {
    background-color: #373A61;
}

#page_service .factoring_header {
    background-color: #6AB9CC;
}


#page_service .consulting_item,
#page_service .functionality_item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;


}

#page_service .consulting_item p,
#page_service .functionality_item p {
    height: 8em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#page_service .consulting_item span,
#page_service .functionality_item span {
    display: inline-block;
    margin: 0 auto;
}

#page_service .consulting_item {
    border-bottom: solid 1px #C9E6E6;
}

#page_service .consulting_item:nth-last-child(1) {
    border-bottom: none;
}

#page_service .consulting_item p:nth-child(even) {
    border-left: solid 1px #C9E6E6;
    border-right: solid 1px #C9E6E6;
}

#page_service .consulting_item p {
    margin: 0;
    width: 33.3333%;
}

#page_service .functionality_item p {
    margin: 0;
    width: 50%;
}

#page_service .functionality_item p:nth-child(even) {
    border-left: solid 1px #C9E6E6;
}


/* ==============
companyページレイアウト
=============== */
/*背景を一部グレーに*/
#page_company #page_content_flex::after {
    content: '';
    background-color: #F4F6F7;
    position: absolute;
    width: 80%;
    height: 68%;
    bottom: 15%;
    right: 0;
    z-index: -1;
}

#page_company .page_content_title {
    width: 30%;
    margin: 0 130px 0 0;
    float: left;
}

#page_company .page_content_text {
    width: 100%;
    font-size: 1.7em;
    line-height: 1.4;
    font-weight: 500;
}

#page_company .page_content_text span {
    color: #6AB9CC;
    font-size: 1.2em;
}

/*philosophyの英字と説明の部分*/
#page_company .page_content_philosophy_area {
    margin: 30px 0 10px;
    font-size: 1.5rem;
    line-height: 1.1;
    width: 100%;
}

#page_company .page_content_philosophy_area div {
    display: flex;
    align-items: center;
}

#page_company .page_content_philosophy_area .page_content_text {
    width: 20%;
    font-weight: 400;
    line-height: 1.1;
}

#page_company .page_content_philosophy_area .page_content_text span {
    font-size: 2em;
}

#page_company .page_content_philosophy_area .page_content_line {
    width: calc(10% + 60px);
    height: 1px;
    border-bottom: solid #CBCBCB 1px;
    margin: 0 50px 0 20px;
}

#page_company .page_content_philosophy_area .page_content_text_mini {
    font-weight: 300;
    font-size: 1rem;
    width: 60%;
}

/*会社概要*/
#page_company #page_company_table_area {
    width: 85%;
    color: #333;
    background-color: #f9f9f9;
    margin: 50px auto 100px;
}


#page_company #page_company_table_area .sec_box {
    background-color: #f7f7f7;
    display: flex;
    gap: 115px;
    align-items: flex-start;
    padding: 0 50px 60px 0;
}

#page_company #page_company_table_area .sec_box .common_ttl {
    padding: 40px 0 40px 50px;
    border-left: 6px solid #101010;
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1.4;
}

#page_company #page_company_table_area .en {
    color: #373A61;
    font-size: 1.5em;
}

#page_company #page_company_table_area .sec_box .list {
    padding-top: 35px;
    width: 100%;
}

#page_company #page_company_table_area .sec_box .list ul li {
    padding: 30px 0;
    border-bottom: 1px solid #e0dddd;
    display: flex;
    align-items: center;
    gap: 40px;
}

#page_company #page_company_table_area .sec_box .list ul li .theme {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: 100px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    background-color: #101010;
    text-align: center;
    flex-shrink: 0;
}

#page_company #page_company_table_area .sec_box .list ul li .cont {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}



/*採用*/

#page_recruit #top_service {
    width: 100%;
    position: relative;
    padding: 30px 20px;
    background: #fff;
}

#page_recruit .recruit_section {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
}

#page_recruit .recruit_section h2 {
    font-weight: 500;
    color: #373A61;
}

#page_recruit .recruit_table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px auto;
}

#page_recruit .recruit_table th, .recruit_table td {
    text-align: left;
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#page_recruit .recruit_table th {
    width: 20%;
}

/*ポリシー*/
#page_policy .policy_text_area {
    width: 85%;
    margin: 50px auto;
}

#page_policy .policy_text_area p {
    margin: 50px auto;
}

#page_policy .policy_text_area ul {
    border: solid #E8E8E8 1px;
    padding: 50px 0;

}

#page_policy .policy_text_area li {
    width: 90%;
    font-size: 1.2rem;
    margin: 0 auto .5em;
    text-indent: -1em;
    padding-left: 1em;
}

#page_policy .policy_text_area li::before {
    content: '\e5df';
    font-family: 'Material Symbols Rounded';
    color: #373A61;
    font-size: 1.2em;
    vertical-align: middle;
}


/*===========================
      メディアクエリ
============================*/
@media screen and (max-width:990px) {
    header {
        height: 60px;
        background-color: #fff;
    }

    header .header_logo {
        top: 10px;
        left: 20px;
    }

    #global_navigation ul {
        display: block;
        text-align: center;
    }

    #global_navigation ul li a {
        padding: 15px;
        color: #fff;
    }

    #main_nav dl {
        display: none;
        transition: all 0.5s;
        opacity: 0;
        padding: 10px 0;
        z-index: 9999;
    }

    #main_nav dl a {
        font-size: 1.2rem;
    }

    #main_nav dl.content_active {
        display: block;
        position: fixed;
        bottom: 30px;
        left: 20%;
        width: 60%;
        border: 1px solid rgba(255, 255, 255, 0.8);
        opacity: 1;
    }
}

@media screen and (max-width:750px) {

    /*トップページ読み込み*/
    #splash_logo {
        top: 45%;
    }

    #splash_area .splash_text {
        font-size: 2.1rem;
    }

    #splash_area .splash_text h2 {
        font-size: 0.8rem;
    }

    header .header_logo {
        width: 85px;
    }

    /*トップページ*/
    #top_img_area .top_text {
        top: 35%;
    }

    #top_img_area h1 {
        font-size: 2rem;
    }

    #top_img_area h2 {
        font-size: 1.1rem;
        letter-spacing: 0.01em;
    }

    #top_service .section_title_en {
        font-size: 7rem;
        top: 100px;
    }

    #top_service .section_title_en::first-letter {
        font-size: 12rem;
    }

    #top_service .section_title {
        position: static;
    }

    #top_service .common_more_btn {
        right: inherit;
        top: inherit;
        bottom: 70px;
    }

    #top_service .section_title {
        width: 100%;
        margin: 100px auto 20px;
    }

    #top_service .service_container {
        gap: 0;
        width: 100%;
        margin: 0 auto 120px;
        padding: 0;
    }

    #top_service .service_card {
        width: 100%;
        margin: 10px 0;
        transform: none;
        height: 500px;
    }

    #top_service .service_card h2, #top_service .service_card p, #top_service .service_card::before {
        transform: none;
    }

    /*トップページリクルート*/
    #top_recruit {
        margin: 100px 0 50px;
    }

    #top_recruit .section_title_en {
        font-size: 9.5rem;
        bottom: 9rem;
    }

    #top_recruit .recruit_container {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    #top_recruit .recruit_img {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;

    }

    #top_recruit .recruite_text_area,
    #top_recruit .recruit_title_area {
        width: 100%;
    }

    #top_recruit .recruit_img img:nth-child(1) {
        margin-bottom: 30px;

    }

    #top_recruit .recruit_text {
        width: 93%;
        margin: auto;
    }

    #top_recruit .recruit_text h2 {
        font-size: 1.65rem;
    }

    #top_recruit .recruit_text p {
        font-weight: 300;
    }

    /*トップ会社概要*/
    #top_company {
        margin: 50px 0 0;
        padding: 0 20px 150px;
    }

    #top_company .section_title_en {
        font-size: 8rem;
        bottom: 9rem;
    }

    #top_company .company_container {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    #top_company .company_img {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;

    }

    #top_company .company_text_area,
    #top_company .company_title_area {
        width: 100%;
    }

    #top_company .company_img img:nth-child(1) {
        margin-bottom: 30px;

    }

    #top_company .company_text {
        width: 93%;
        margin: auto;
    }

    #top_company .company_text h2 {
        font-size: 1.65rem;
    }

    #top_company .company_text p {
        font-weight: 300;
    }

    #top_company .company_info_list .list_item {
        grid-template-columns: 90px auto;
    }

    /*フッター*/
    #footer .footer_contact_text {
        font-size: 4rem;
        padding: 0 0 0 20px;
    }

    #footer .footer_contact_btn {
        padding: 0 20px 0 0;
    }

    #footer .footer_contact_btn::before {
        left: 10%;
        width: 60%;
    }

    #footer .footer_contact_area:hover .footer_contact_btn::before {
        left: 20%;
    }

    #footer .footer_contact_btn::after {
        width: 100px;
        height: 100px;
        top: calc(50% - 50px);
        left: auto;
        right: 30px;
    }

    #footer .footer_contact_area:hover .footer_contact_btn::after {
        top: calc(50% - 60px);
        width: 120px;
        height: 120px;
    }

    #footer .footer_main_area {
        padding: 60px;
    }

    #footer .footer_info {
        width: 100%;
        text-align: center;
    }

    #footer .footer_logo {
        margin: 0 auto;
        width: 150px;
    }

    #footer .footer_link {
        width: 100%;
        display: block;
    }

    #footer .footer_link ul {
        text-align: center;
        margin: 50px 0;
        line-height: 1.4;
    }

    #footer .footer_link ul li {
        margin: 10px 20px;
    }

    #footer small {
        display: block;
        text-align: center;
    }

    /*子ページ*/
    #page_top_area {
        margin-top: 0;
        height: 75vh;
    }

    #page_top_area #page_img_area {
        height: 75vh;
        background-size: cover;
        background-position: center;
    }

    #page_top_area #page_img_area::after {
        background-color: #fff;
        opacity: 0.2;
    }

    #page_top_area .page_text_area {
        top: 15%;
    }

    #page_top_area .page_text_area h1 {
        font-size: 6rem;
        margin-top: 1em;
    }

    /*ページ内リンクリスト*/
    #page_top_area .top_link {
        bottom: 2.5%;
        right: inherit;
        left: 1.5em;
    }

    #page_top_area .top_link li {
        font-size: 1.3rem;
        margin: .5em 1.5em;
        line-height: 1.2;
        color: #000;
    }

    /*ページ内リンクリストアイコン*/
    #page_top_area .top_link li::after {
        font-size: 1.4em;
        right: inherit;
        left: -1.3em;
        /*アイコンを黒に*/
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg id='グループ_20' data-name='グループ 20' transform='translate(-1250 -387)'%3E%3Cg id='楕円形_7' data-name='楕円形 7' transform='translate(1250 387)' fill='none' stroke='%23000' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='20' stroke='none'/%3E%3Ccircle cx='20' cy='20' r='19.5' fill='none'/%3E%3C/g%3E%3Cg id='グループ_17' data-name='グループ 17' transform='translate(0 -1.75)'%3E%3Cline id='線_16' data-name='線 16' y2='15' transform='translate(1270 399.5)' fill='none' stroke='%23000' stroke-width='1'/%3E%3Cpath id='多角形_1' data-name='多角形 1' d='M4,0,8,7H0Z' transform='translate(1274 418) rotate(180)' fill='%23000'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    }

    #page_service #page_content_flex {
        margin: 10px 0 0;
        padding: 30px 20px 100px;
    }

    #page_service .page_content_container,
    #page_company .page_content_container {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    #page_service .page_content_container {
        flex-direction: column-reverse;
    }

    #page_service #page_content_flex h3 {
        font-size: 1rem;
    }

    #page_service .section_title_en {
        font-size: 3rem;
        line-height: 1.1;
    }

    #page_service .page_content_img {
        width: 100%;
    }

    #page_service .page_content_text_area,
    #page_service .page_content_title_area {
        width: 100%;
    }

    #page_service .page_content_text {
        width: 93%;
        margin: auto;
    }

    #page_service .consulting_section,
    #page_service .factoring_section {
        border-collapse: collapse;
        width: 100%;
        margin: 10% 0 0;

    }

    #page_service .consulting_section h2,
    #page_service .factoring_section h2 {
        font-size: 0.8rem;
        padding: 1em 0;
    }

    #page_service .consulting_section h2::after,
    #page_service .consulting_section h2::before,
    #page_service .factoring_section h2::after,
    #page_service .factoring_section h2::before {
        font-size: 0.7rem;
    }

    #page_service .consulting_item span,
    #page_service .functionality_item span {
        font-size: 0.9em;

    }



    /*company*/
    #page_company #page_content_flex {
        padding: 0 20px 70px;
        margin: 60px 0 0;
    }

    /*背景を一部グレーに*/
    #page_company #page_content_flex::after {
        bottom: 60px;
    }

    #page_company .page_content_container {
        margin: 0;
    }

    #page_company .page_content_title {
        width: 100%;
        margin: 0 0 30px 0;
        float: inherit;
    }

    #page_company .page_content_text {
        font-size: 1.2rem;
        line-height: 1.5;
    }


    /*philosophyの英字と説明の部分*/
    #page_company .page_content_philosophy_area {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    #page_company .page_content_philosophy_area div {
        margin: 0 0 16px;
    }

    #page_company .page_content_philosophy_area .page_content_text {
        width: 40%;
    }

    #page_company .page_content_philosophy_area .page_content_text span {
        font-size: 2em;
    }

    #page_company .page_content_philosophy_area .page_content_line {
        width: 6%;
        margin: 0 15px 0 10px;
    }

    #page_company .page_content_philosophy_area .page_content_text_mini {
        font-weight: 300;
        font-size: 0.9rem;
        width: 60%;
    }

    /*会社概要*/

    #page_company #page_company_table_area {
        width: 100%;
        padding: 1vh 0 18vw;
        margin: 0;
    }

    #page_company #page_company_table_area .sec_box {
        display: block;
        padding: 15vw 3vw;
    }

    #page_company #page_company_table_area.sec_box .common_ttl {
        padding: 0;
        border-left: none;
        text-align: center;
    }

    #page_company #page_company_table_area.sec_box .list {
        padding-top: 6vw;
    }

    #page_company #page_company_table_area .sec_box .list ul li {
        padding: 4vw 0;
        display: block;
    }

    #page_company #page_company_table_area .sec_box .list ul li .theme {
        font-size: 3.4vw;
        width: 18vw;
        line-height: 7vw;
    }

    #page_company #page_company_table_area .sec_box .list ul li .cont {
        font-size: 3.5vw;
        margin-top: 1.6vw;
    }

    /*採用情報*/
    #page_recruit .recruit_section {
        width: 100%;
        padding: 0;
    }

    #page_recruit .recruit_table th, .recruit_table td {
        padding: 5px;

    }

    #page_recruit .recruit_table th {
        width: 37%;
    }

    #page_recruit .recruit_table td {
        font-weight: 300;
    }

    /*ポリシー*/
    #page_policy .policy_text_area {
        width: 90%;
        margin: 50px auto;
    }

    #page_policy .policy_text_area ul {
        border: solid #E8E8E8 1px;
        padding: 30px 0;

    }

    #page_policy .policy_text_area li {
        width: 90%;
        font-size: 1.1rem;
        margin: 0 auto 1.5em;
        text-indent: -1.5em;
        line-height: 1.4;
    }

    #page_policy .policy_text_area li::before {
        font-size: 1.5em;
        line-height: 1;
    }

}

@media screen and (max-width:420px) {
    #main_nav dl.content_active {
        width: 90%;
        left: 5%;
    }

    /*    #top_img_area {
        margin: 10% 0 0;
    }*/
}

.glitch {
    color: black;
    /* font-size: 100px; */
    position: relative;
    /* width: 400px; */
    margin: 0 auto;
}

@-webkit-keyframes noise-anim {
    0% {
        clip: rect(16px, 9999px, 42px, 0);
    }

    5% {
        clip: rect(69px, 9999px, 43px, 0);
    }

    10% {
        clip: rect(13px, 9999px, 17px, 0);
    }

    15% {
        clip: rect(98px, 9999px, 27px, 0);
    }

    20% {
        clip: rect(9px, 9999px, 16px, 0);
    }

    25% {
        clip: rect(75px, 9999px, 95px, 0);
    }

    30% {
        clip: rect(39px, 9999px, 16px, 0);
    }

    35% {
        clip: rect(46px, 9999px, 36px, 0);
    }

    40% {
        clip: rect(21px, 9999px, 88px, 0);
    }

    45% {
        clip: rect(55px, 9999px, 14px, 0);
    }

    50% {
        clip: rect(60px, 9999px, 71px, 0);
    }

    55% {
        clip: rect(4px, 9999px, 9px, 0);
    }

    60% {
        clip: rect(56px, 9999px, 17px, 0);
    }

    65% {
        clip: rect(32px, 9999px, 47px, 0);
    }

    70% {
        clip: rect(8px, 9999px, 23px, 0);
    }

    75% {
        clip: rect(39px, 9999px, 99px, 0);
    }

    80% {
        clip: rect(17px, 9999px, 42px, 0);
    }

    85% {
        clip: rect(43px, 9999px, 80px, 0);
    }

    90% {
        clip: rect(69px, 9999px, 28px, 0);
    }

    95% {
        clip: rect(97px, 9999px, 68px, 0);
    }

    100% {
        clip: rect(49px, 9999px, 22px, 0);
    }
}

@keyframes noise-anim {
    0% {
        clip: rect(16px, 9999px, 42px, 0);
    }

    5% {
        clip: rect(69px, 9999px, 43px, 0);
    }

    10% {
        clip: rect(13px, 9999px, 17px, 0);
    }

    15% {
        clip: rect(98px, 9999px, 27px, 0);
    }

    20% {
        clip: rect(9px, 9999px, 16px, 0);
    }

    25% {
        clip: rect(75px, 9999px, 95px, 0);
    }

    30% {
        clip: rect(39px, 9999px, 16px, 0);
    }

    35% {
        clip: rect(46px, 9999px, 36px, 0);
    }

    40% {
        clip: rect(21px, 9999px, 88px, 0);
    }

    45% {
        clip: rect(55px, 9999px, 14px, 0);
    }

    50% {
        clip: rect(60px, 9999px, 71px, 0);
    }

    55% {
        clip: rect(4px, 9999px, 9px, 0);
    }

    60% {
        clip: rect(56px, 9999px, 17px, 0);
    }

    65% {
        clip: rect(32px, 9999px, 47px, 0);
    }

    70% {
        clip: rect(8px, 9999px, 23px, 0);
    }

    75% {
        clip: rect(39px, 9999px, 99px, 0);
    }

    80% {
        clip: rect(17px, 9999px, 42px, 0);
    }

    85% {
        clip: rect(43px, 9999px, 80px, 0);
    }

    90% {
        clip: rect(69px, 9999px, 28px, 0);
    }

    95% {
        clip: rect(97px, 9999px, 68px, 0);
    }

    100% {
        clip: rect(49px, 9999px, 22px, 0);
    }
}

.glitch:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 red;
    top: 0;
    color: black;
    /* background: black; */
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
    right: 0;
}

@-webkit-keyframes noise-anim-2 {
    0% {
        clip: rect(71px, 9999px, 83px, 0);
    }

    5% {
        clip: rect(65px, 9999px, 59px, 0);
    }

    10% {
        clip: rect(62px, 9999px, 49px, 0);
    }

    15% {
        clip: rect(72px, 9999px, 70px, 0);
    }

    20% {
        clip: rect(38px, 9999px, 12px, 0);
    }

    25% {
        clip: rect(11px, 9999px, 74px, 0);
    }

    30% {
        clip: rect(49px, 9999px, 46px, 0);
    }

    35% {
        clip: rect(7px, 9999px, 1px, 0);
    }

    40% {
        clip: rect(32px, 9999px, 23px, 0);
    }

    45% {
        clip: rect(98px, 9999px, 96px, 0);
    }

    50% {
        clip: rect(83px, 9999px, 87px, 0);
    }

    55% {
        clip: rect(49px, 9999px, 43px, 0);
    }

    60% {
        clip: rect(51px, 9999px, 10px, 0);
    }

    65% {
        clip: rect(93px, 9999px, 78px, 0);
    }

    70% {
        clip: rect(86px, 9999px, 57px, 0);
    }

    75% {
        clip: rect(94px, 9999px, 39px, 0);
    }

    80% {
        clip: rect(69px, 9999px, 2px, 0);
    }

    85% {
        clip: rect(61px, 9999px, 59px, 0);
    }

    90% {
        clip: rect(94px, 9999px, 42px, 0);
    }

    95% {
        clip: rect(59px, 9999px, 9px, 0);
    }

    100% {
        clip: rect(12px, 9999px, 71px, 0);
    }
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(71px, 9999px, 83px, 0);
    }

    5% {
        clip: rect(65px, 9999px, 59px, 0);
    }

    10% {
        clip: rect(62px, 9999px, 49px, 0);
    }

    15% {
        clip: rect(72px, 9999px, 70px, 0);
    }

    20% {
        clip: rect(38px, 9999px, 12px, 0);
    }

    25% {
        clip: rect(11px, 9999px, 74px, 0);
    }

    30% {
        clip: rect(49px, 9999px, 46px, 0);
    }

    35% {
        clip: rect(7px, 9999px, 1px, 0);
    }

    40% {
        clip: rect(32px, 9999px, 23px, 0);
    }

    45% {
        clip: rect(98px, 9999px, 96px, 0);
    }

    50% {
        clip: rect(83px, 9999px, 87px, 0);
    }

    55% {
        clip: rect(49px, 9999px, 43px, 0);
    }

    60% {
        clip: rect(51px, 9999px, 10px, 0);
    }

    65% {
        clip: rect(93px, 9999px, 78px, 0);
    }

    70% {
        clip: rect(86px, 9999px, 57px, 0);
    }

    75% {
        clip: rect(94px, 9999px, 39px, 0);
    }

    80% {
        clip: rect(69px, 9999px, 2px, 0);
    }

    85% {
        clip: rect(61px, 9999px, 59px, 0);
    }

    90% {
        clip: rect(94px, 9999px, 42px, 0);
    }

    95% {
        clip: rect(59px, 9999px, 9px, 0);
    }

    100% {
        clip: rect(12px, 9999px, 71px, 0);
    }
}

.glitch:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 blue;
    top: 0;
    color: black;
    /* background: black; */
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
    right: 0;
}

