/* PC、スマホ共通スタイル */
html {
    overflow: scroll;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
    scroll-behavior: smooth;

}

body {
    font-family: "Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, Arial,
        sans-serif;




}

p {
    font-size: 15px;
}

.arrow-right {
    color: #000;
}

#submit {
    margin-top: 50px;
}

.underline {
    text-decoration: none;
}

/* 下から上に一文字ずつ出てくるテキストアニメーション */
.top-ttl {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #13E8E9;
    position: absolute;
    margin-top: 20px;
}

.textanimation {
    font-size: 50px;
    font-family: "Times New Roman", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", serif;
}

@keyframes showTextFromBottom {
    0% {
        transform: translateY(100%);

    }

    100% {
        transform: translateY(0px);
    }
}

.textanimation span {
    animation: showText 3s backwards;
    display: inline-block;
}

.textanimation>span {
    overflow: hidden;
}

.textanimation>span>span {
    animation: showTextFromBottom 0.5s backwards;
}


/*流れるように一文字ずつ大→小さくなる*/

.container {
    width: 100%;
    margin-top: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #13E8E9;
    position: absolute;

}

.animate {
    font-size: 100px;
    font-family: "Times New Roman", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", serif;
}

.animate span {
    display: inline-block;
}

.animate span:nth-of-type(1) {
    animation-delay: 1.1s;
}

.animate span:nth-of-type(2) {
    animation-delay: 1.15s;
}

.animate span:nth-of-type(3) {
    animation-delay: 1.2s;
}

.animate span:nth-of-type(4) {
    animation-delay: 1.25s;
}

.animate span:nth-of-type(5) {
    animation-delay: 1.3s;
}

.animate span:nth-of-type(6) {
    animation-delay: 1.35s;
}

.animate span:nth-of-type(7) {
    animation-delay: 1.4s;
}

.animate span:nth-of-type(8) {
    animation-delay: 1.45s;
}

.animate span:nth-of-type(9) {
    animation-delay: 1.5s;
}

.animate span:nth-of-type(10) {
    animation-delay: 1.55s;
}

.animate span:nth-of-type(11) {
    animation-delay: 1.6s;
}

.animate span:nth-of-type(12) {
    animation-delay: 1.65s;
}

.animate span:nth-of-type(13) {
    animation-delay: 1.7s;
}

.animate span:nth-of-type(14) {
    animation-delay: 1.75s;
}

.animate span:nth-of-type(15) {
    animation-delay: 1.8s;
}

.animate span:nth-of-type(16) {
    animation-delay: 1.85s;
}

.animate span:nth-of-type(17) {
    animation-delay: 1.9s;
}

.animate span:nth-of-type(18) {
    animation-delay: 1.95s;
}

.top-wrapper-txt span {
    opacity: 0;
    transform: translate(-150px, 0) scale(.3);
    animation: leftRight .5s forwards;
}


@keyframes leftRight {
    40% {
        transform: translate(50px, 0) scale(.8);
        opacity: 1;
        color: #fff;
    }

    60% {
        color: #fff;
    }

    80% {
        transform: translate(0) scale(3);
        opacity: 0;
    }

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

.container-2 {
    position: absolute;
    color: #13E8E9;
    display: block;
    justify-content: center;
    align-items: center;
    margin-top: 30%;
    margin-left: 40%;


}

@media screen and (max-width: 767px) {
    .container-2 {
        margin-top: 90%;
        margin-left: 20%;


    }

    .textanimation {
        font-size: 25px;
    }

    .animate {
        margin-top: -30%;
        margin-left: 30px;
        font-size: 50px;

    }
}

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

/* ---- reset ---- */

canvas {
    display: block;
    vertical-align: bottom;

}




/* ---- particles.js container ---- */
#particles-js {
    background-color: #000;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    margin: 0 auto 0 auto;
    height: 100vh;

}

/* ---- stats.js ---- */
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

/*================
 PC用のスタイル
=================*/
@media screen and (min-width: 768px) {


    /* 横幅設定 */
    body {


        min-width: 900px;

    }





    /* ヘッダー */
    .header {

        display: flex;
        justify-content: space-between;
        background-color: #fff;


    }

    .namae {
        font-size: 25px;
        text-decoration-line: none;
        font-weight: bold;
        color: #3f98ef;
    }

    .namae:hover {
        text-decoration-line: underline;
        color: #3f98ef;
    }

    /*JSを使いfixedクラスが付与された際の設定*/
    .header.fixed {
        position: sticky;
        /*fixedを設定して固定*/
        z-index: 999;
        /*最前面へ*/
        top: 0;
        /*位置指定*/
        left: 0;
        /*位置指定*/
    }

    /* スクロール開始直後のヘッダー */
    .header.transform {
        background-color: #fff;
        opacity: 70%;
        z-index: 50;

    }

    /* ナビゲーションのレイアウト */
    #nav-pc {
        text-align: right;
        font-size: 14px;
        padding-top: 15px;
    }

    /* ナビゲーションのリンクの装飾設定 */
    #nav-pc>a {
        text-decoration: none;
        margin-left: 20px;
    }

    #nav-pc>a:link {
        color: #0d0d0d;
    }

    #nav-pc>a:visited {
        color: #000;
    }

    #nav-pc>a:hover {
        color: #3f98ef;
        text-decoration: underline;
    }

    #nav-pc>a:active {
        color: #3f98ef;
    }

    /* スマホ用ナビを非表示 */
    #nav-sp,
    #menu-sp {
        display: none;
    }

    /* メインビジュアル*/
    #main-visual {
        position: relative;
        height: 400px;
    }

    #main-message {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #000;
        color: #ffffff;
        border-radius: 0 0 476px 0;
        max-width: 620px;
        height: 100%;
        width: 100%;
        z-index: 11;
    }

    #main-message>h1 {
        font-size: 60px;
        font-weight: bold;
        margin: 100px 0 0 50px;
    }

    #main-message>p {
        font-size: 28px;
        margin: 0 0 0 50px;
    }

    #main-visual>img {
        max-width: 620px;
        border-radius: 476px 0 0 0;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10;
    }

    /*見出し*/
    h2 {
        margin: 40px 0 0 0;
    }

    h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    #page_top {
        width: 90px;
        height: 90px;
        position: fixed;
        right: 0;
        bottom: 50px;
        opacity: 0.6;
    }

    #page_top a {
        position: relative;
        display: block;
        width: 90px;
        height: 90px;
        text-decoration: none;
    }

    #page_top a::before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        content: '\f102';
        font-size: 25px;
        color: #3f98ef;
        position: absolute;
        width: 25px;
        height: 25px;
        top: -40px;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
    }

    #page_top a::after {
        content: 'PAGE TOP';
        font-size: 13px;
        color: #3f98ef;
        position: absolute;
        top: 45px;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;

    }

    h2::after {
        content: url("images/line.png");
        margin-left: 10px;
    }

    h3 {
        text-align: center;
        font-size: 27px;
    }

    /* ミッション */
    #mission {

        margin-top: 40px;
        width: 100%;
        margin-right: 20px;
        margin-left: 20px;


    }

    #mission-flex {
        width: 100%;
        display: flex;
    }

    #mission-flex>div {
        width: 45%;
        margin: 20px;
    }

    #mission-photo {
        position: relative;

        margin-left: 30px;

    }

    #s2dgs {
        margin-top: 0;

    }

    /* プロダクト */
    #product {
        background-color: #fafafa;
        width: 100%;
        margin: 80px 20px 80px 20px;
        padding: 10px 40px 0px 0px;
    }

    /* 外枠 */
    #product>div {
        margin-top: 40px;
        display: flex;
    }

    /* 左のカラム */
    #product-left {
        width: 50%;
        margin-right: 20px;
    }

    /* 右のカラム */
    #product-right {
        width: 50%;
        margin-left: 20px;

    }

    /* 写真＋説明の枠 */
    #product-left>div {
        position: relative;
        height: 480px;
        margin-right: 20px;
    }

    #product-right>div {
        position: relative;
        height: 480px;
        margin-right: 20px;
    }





    /* 写真*/
    .product-photo {
        width: 70%;
    }

    /* 説明文の枠 */
    .product-explain {
        background-color: #ffffff;
        position: absolute;
        left: 0;
        top: 280px;
        margin: 0 40px 0 40px;
        padding: 20px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
    }

    /* 説明文の英語 */
    .product-explain>span {
        color: #000;
        font-weight: bold;
        font-size: 16px;
        margin: 0px;
    }

    /* 説明文の見出し */
    .product-explain>h3 {
        margin: 5px 0 5px 0;
    }

    /* 説明文 */
    .product-explain>p {
        margin: 0;
    }

    /* もっと見るボタン */
    #product-more {
        margin: 0 auto -42px auto;
    }

    /* ABOUT US */
    #aboutus {
        margin: 80px 20px 80px 20px;
    }

    /* ３つの組織文化と写真を入れる枠 */
    #aboutus>div {
        display: flex;
    }

    /* 写真 */
    .culture-img {
        width: 70%;
        align-self: flex-start;
    }

    .culture-img2 {
        margin-top: 50px;
        width: 100%;
    }

    /* 3つの組織文化の表 */
    .culture-table {
        margin-right: 50px;
    }

    /* 番号 */
    .culture-num {
        font-size: 80px;
        color: #3f98ef;
        margin: 0 20px 0 0;
    }

    /* 組織文化英語 */
    .culture-en {
        color: #000;
        font-weight: bold;
        font-size: 24px;
        display: block;
    }

    /* 組織文化日本語 */
    .culture-jp {
        font-size: 28px;
        font-weight: bold;
    }

    /* 説明文 */
    .culture-description {
        margin: 0;
    }

    /* ビジョン */
    #vision {
        margin: 80px 20px 80px 20px;
    }

    /* セクション内の外枠*/
    #vision>div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    /*7つの行動指針の枠*/
    .vision-box {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
        position: relative;
    }

    .vision-box>img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 30;
    }

    .vision-box>span {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 31;
        margin-right: 20px;
    }

    .vision-box>span>h4 {
        color: #000;
        font-size: 24px;
        margin: 80px 0 0 0;
    }

    .vision-box>span>h4::first-letter {
        font-size: 40px;
        color: #3f98ef;
    }

    .vision-box>span>h5 {
        font-size: 20px;
        margin: 0 0 0 0;
    }

    .vision-box>span>p {
        margin: 10px 0 0 0;
    }

    /*会社概要*/
    #company {

        margin: 80px 20px 80px 20px;
    }

    .company-flex {
        display: flex;
    }

    #company-table {
        position: relative;
        margin-right: 20px;
        height: 480px;
        width: 100%;
    }





    .tableheader {
        text-align: left;
        padding: 20px;



        width: 100px;
    }

    .tableheader-first {
        text-align: left;
        padding: 20px;






        width: 100px;
    }

    .cell {
        padding: 30px;
        border-bottom-color: #ececec;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .cell-first {
        padding: 30px;
        border-bottom-color: #ececec;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-top-color: #ececec;
        border-top-width: 1px;
        border-top-style: solid;
    }

    #company>iframe {
        position: relative;
        margin-right: 20px;
        width: 100%;
        height: 480px;

        margin-top: 40px;
    }


    /* 個人情報の取り扱い */
    details {
        width: 700px;
    }

    details>div {
        background-color: #fafafa;
        padding: 20px;
    }

    details>span {
        font-weight: bold;
    }

    /* フッター */
    footer {
        background-color: #000;
        text-align: center;
        padding: 80px 80px 30px 80px;
    }

    #footer-logo {
        margin-bottom: 30px;
    }

    #footer-link {
        margin-bottom: 50px;
    }

    #footer-link>a {
        text-decoration: none;
        margin: 10px;
    }

    #footer-link>a:link {
        color: #fff;
    }

    #footer-link>a:visited {
        color: #fff;
    }

    #footer-link>a:hover {
        color: #3f98ef;
        text-decoration: underline;
    }

    #footer-link>a:active {
        color: #000;
    }

    #sns-footer {
        text-align: left;
        width: 100%;
    }

    #sns-footer>a {
        margin-right: 30px;
    }

    #copyright {
        color: #fff;
        text-align: right;
        float: right;
    }

    /* mission.html用スタイル */
    /* ミッションのメインビジュアル */
    #mission-main {
        height: 496px;
        width: 100%;
        background-image: url("images/mission/mission-main.webp");
        background-repeat: no-repeat;
        background-position-y: center;
    }

    #mission-title {

        width: 368px;
        color: #ffffff;
        height: 496px;

        position: relative;
    }

    #mission-title>h1 {
        position: absolute;
        top: 0;
        left: 100px;
        font-size: 80px;
    }

    #mission-title>span {
        position: absolute;
        top: 200px;
        left: 100px;
        font-size: 26px;
    }

    #mission-title>div {
        position: absolute;
        top: 350px;
        left: 100px;
        font-size: 16px;
    }

    #mission-s2dgs {
        width: 100%;
        margin: 20px;
    }

    .mission-h2 {
        color: #000;
        font-size: 40px;
    }

    .mission-h2::after {
        content: none;
    }

    #mission-5goals {
        margin: 20px;
        display: flex;
    }

    #mission-5goals>div {
        flex-grow: 1;
    }

    #mission-5goals>div>div {
        margin-bottom: 40px;
    }

    .fivegoals-image-right {
        float: right;
        margin: 20px;
    }

    .fivegoals-image-left {
        float: left;
        margin: 20px;
    }

    .fivegoals-number {
        color: #000;
        font-size: 48px;
        font-weight: bold;
        margin: 0;
    }

    .fivegoals-h3 {
        font-size: 28px;
        margin: 0;
    }

    .fivegoals-p {
        margin: 0;
    }

    /* プロダクトページ */
    #product-main {
        height: 496px;
        width: 100%;
        background-image: url("images/product/product-main.webp");
        background-repeat: no-repeat;
        background-position-y: center;
    }

    #product-title {

        width: 368px;
        color: #ffffff;
        height: 496px;

        position: relative;
    }

    #product-title>h1 {
        position: absolute;
        top: 0;
        left: 100px;
        font-size: 80px;
    }

    #product-title>span {
        position: absolute;
        top: 200px;
        left: 100px;
        font-size: 26px;
    }

    #product-title>div {
        position: absolute;
        top: 350px;
        left: 100px;
        font-size: 16px;
    }

    /* セクション1 */
    .product-section1 {
        position: relative;
        margin: 20px;
        height: 340px;
    }

    .product-section1>img {
        position: absolute;
        top: 0;
        left: 0;
        width: 450px;
        margin: 0 40px 30px 0;
        border-radius: 0 432px 0 0;
    }

    .product-section1>div {
        position: absolute;
        top: 0;
        left: 480px;
    }

    /*セクション２*/

    .product-section2 {
        position: relative;
        margin: 20px;
        height: 340px;
    }

    .product-section2>img {
        position: absolute;
        top: 0;
        right: 0;
        width: 450px;
        margin: 0 0 30px 40px;
        border-radius: 432px 0 0 0;
    }

    .product-section2>div {
        width: 500px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .product-h2 {
        color: #000;
        font-size: 24px;
        margin: 0;
    }

    .product-h3 {
        font-size: 28px;
        margin: 0;
    }

    .text {
        display: block;
        margin-top: 70px;
        margin-left: -14px;
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        white-space: nowrap;
        letter-spacing: 2px;

    }


    .text:hover {
        color: #3f98ef;

    }


    .midashi {
        position: absolute;
        top: 50%;
        text-align: center;
        margin-left: 10px;
        font-size: 35px;
        font-weight: bold;
        color: #3f98ef;
        display: inline-block;
        transform: skewX(-15deg);
        background: #fff;
        opacity: 70%;
    }

    /* 019 */

    .button019 a {
        position: relative;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;

        max-width: 225px;
        padding: 10px 30px 10px 75px;
        color: #313131;
        transition: 0.3s ease-in-out;
        font-weight: 500;
        white-space: nowrap;

    }

    .button019 a:before,
    .button019 a:after {
        content: "";
        position: absolute;
        display: block;
        top: 50%;
    }

    .button019 a:before {
        width: 0.5rem;
        height: 0.5rem;
        left: 1.1rem;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        z-index: 2;
        transform: translateY(-50%) rotate(45deg);
        transition: all 0.3s;
    }

    .button019 a:after {
        left: 0;
        background: #6bb6ff;
        z-index: 1;
        width: 3rem;
        height: 3rem;
        border-radius: 4rem;
        transform: translateY(-50%);
        transition: all 0.5s;

    }

    .button019 a span {
        position: relative;

        transition: all 0.3s;
        z-index: 3;
    }

    .button019 a:hover span {
        color: #fff;
    }

    .button019 a:hover:before {
        left: 2rem;
    }

    .button019 a:hover:after {
        right: 0;
        width: 100%;
    }



}

/*====================
 スマートフォン用のスタイル
=====================*/
@media screen and (max-width: 767px) {

    

    
    

    /* ヘッダー */
    .header {
        display: flex;
        justify-content: space-between;
        background-color: #fff;
    }

    /*JSを使いfixedクラスが付与された際の設定*/
    .header.fixed {
        position: sticky;
        /*fixedを設定して固定*/
        z-index: 999;
        /*最前面へ*/
        top: 0;
        /*位置指定*/
        left: 0;
        /*位置指定*/
    }

    /* スクロール開始直後のヘッダー */
    .header.transform {
        background-color: #fff;

    }

    .namae {
        font-size: 25px;
        text-decoration-line: none;
        font-weight: bold;
        color: #3f98ef;
        margin: auto;
    }

    .namae:hover {
        text-decoration-line: underline;
        color: #3f98ef;
    }

    body {
        min-width: 375px;
        margin: 0;
    }

    /* PC用ナビゲーション非表示 */
    #nav-pc {
        display: none;
    }

    /* ハンバーガーメニュー */
    #menu-sp {
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 999;
    }

    /* スマホ用ナビゲーションの表示切替*/
    /* 初期状態、レイアウトと非表示設定 */
    #nav-sp {
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        display: none;
        z-index: 100;
    }

    /* ×ボタン */
    #close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    /* ナビゲーションメニュー用ロゴ */
    #logo-sp {
        margin: 80px 0 30px 20px;
    }

    /* ナビゲーションのリンクの装飾設定 */
    #nav-sp>a {
        display: block;
    }

    #nav-sp>a:link {
        color: #000;
    }

    #nav-sp>a:visited {
        color: #000;
    }

    #nav-sp>a:hover {
        color: #000;
        text-decoration: underline;
    }

    #nav-sp>a:active {
        color: #000;
    }

    #nav-sp>.menu {
        text-decoration: none;
        display: block;
        margin: 0 20px 0 20px;
        height: 44px;
        font-size: 16px;
        background-image: url("images/arrow.png");
        background-repeat: no-repeat;
        background-position: right top;
    }

    #sns {
        position: absolute;
        bottom: 20px;
        left: 20px;
    }

    #sns>a {
        margin-right: 30px;
    }

    /* メインビジュアル */
    #main-visual {
        position: relative;
        height: 470px;
        width: 100%;
        overflow: hidden;
    }

    #main-visual>div {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        color: white;
        border-radius: 0 0 476px 0;
        text-align: center;
        height: 280px;
        width: 100%;
        z-index: 11;
    }

    #main-visual>div>div {
        margin: 100px 0 auto 0;
    }

    #main-visual>div>h1 {
        font-size: 28px;
        margin: 90px 0 0 0;
    }

    #main-visual>div>p {
        margin: 0;
    }

    #main-visual>img {
        width: 100%;
        border-radius: 476px 0 0 0;

        z-index: 10;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    /*見出し*/
    h2::after {
        content: url("images/line.png");
        margin-left: 10px;
    }

    h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    
    
    
    
    
    
    
    

    
    
    
    
    

    
    
    
    
    
    
    

    h3 {
        font-size: 24px;
        margin: 10px 0 0 0;
    }

    /* ミッション */
    #mission {
        margin: 20px;
    }

    #mission-photo {
        width: 100%;
    }

    #s2dgs {
        width: 100%;
    }

    /* プロダクト */
    #product {
        background-color: #fafafa;
        padding-top: 10px;
    }

    #product h2 {
        margin-left: 20px;
    }

    /* 外枠 */
    /* 左右のカラム　スマホでは縦並び */
    #product-left,
    #product-right {
        margin-right: 20px;
        margin-left: 20px;
    }

    /* 写真＋説明の枠 */
    #product-left>div,
    #product-right>div {
        position: relative;
        height: 540px;
    }

    /* 説明文の枠 */
    .product-explain {
        background-color: #ffffff;
        position: absolute;
        left: 0;
        bottom: 50px;
        padding: 20px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
    }

    .product-explain>span {
        color: #000;
        font-weight: bold;
        font-size: 16px;
        margin: 0px;
    }

    .product-explain>h3 {
        margin: 10px 0 10px 0;
    }

    /* 写真*/
    .product-photo {
        width: 100%;
    }

    #product-more>img {
        margin: 0 0 -42px 20px;
    }

    /* ABOUT US */
    #aboutus {
        margin: 80px 20px 80px 20px;
    }

    #aboutus>div {
        display: flex;
        flex-direction: column;
    }

    .culture-table {
        width: 100%;
        padding-right: 20px;
        order: 2;
    }

    .culture-img {
        width: 100%;
        order: 1;
    }

    .culture-img2 {
        width: 100%;
    }

    .culture-num {
        font-size: 80px;
        color: #3f98ef;
    }

    .culture-en {
        color: #000;
        font-weight: bold;
        font-size: 24px;
        display: block;
    }

    .culture-jp {
        display: block;
    }

    .culture-description {
        margin: 0;
    }

    /* ビジョン */
    #vision {
        margin: 80px 20px 80px 20px;
    }

    .vision-box {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
        position: relative;
    }

    .vision-box>img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 30;
    }

    .vision-box>span {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 31;
        margin-right: 20px;
    }

    .vision-box>span>h4 {
        color: #000;
        font-size: 24px;
        margin: 60px 0 0 0;
    }

    .vision-box>span>h4::first-letter {
        font-size: 40px;
        color: #3f98ef;
    }

    .vision-box>span>h5 {
        font-size: 20px;
        margin: 0 0 0 0;
    }

    .vision-box>span>p {
        margin: 10px 0 0 0;
    }

    /*会社概要*/
    #company {

        margin: 0 20px 0 20px;
    }

    #company>h3 {
        margin-bottom: 20px;
    }

    #company-table {

        width: 100%;
    }

    .tableheader-first {
        text-align: left;
        padding: 20px;
        width: 50px;
    }

    .tableheader {
        text-align: left;
        padding: 20px;
        width: 50px;
    }

    .cell-first {
        padding: 20px;
        border-bottom-color: #ececec;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-top-color: #ececec;
        border-top-width: 1px;
        border-top-style: solid;
    }

    .cell {
        padding: 20px;
        border-bottom-color: #ececec;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    #company>iframe {
        width: 100%;
        height: 240px;
        margin: 40px 0 0 0;
    }

    .radiobutton {
        margin-bottom: 20px;
    }

    /* .radiobutton + label::after {
        content: "\A";
        white-space: pre;
    } */

    /* フッター */
    footer {
        background-color: #000;
        padding: 30px 20px 50px 20px;
    }

    #footer-logo {
        margin-bottom: 30px;
    }

    #footer-link {
        margin-bottom: 50px;
    }

    #footer-link>a {
        text-decoration: none;
        margin: 0 20px 30px 0;
        display: block;

        background-image: url("images/arrow.png");
        background-repeat: no-repeat;
        background-position: right top;
    }

    #footer-link>a:link {
        color: #fff;
    }

    #footer-link>a:visited {
        color: #fff;
    }

    #footer-link>a:hover {
        color: #3f98ef;
        text-decoration: underline;
    }

    #footer-link>a:active {
        color: #fff;
    }

    #sns-footer {
        display: block;
        width: 100%;
    }

    #sns-footer>a {
        margin-right: 30px;
    }

    #copyright {
        font-size: 12px;
        display: block;
        margin-top: 30px;
        color: #fff;
    }

    /* mission.html用スタイル */
    /* ミッションのメインビジュアル */
    #mission-main {
        height: 256px;
        width: 100%;
        background-image: url("images/mission/mission-main.webp");
        background-repeat: no-repeat;
        background-position-y: center;
        background-size: auto 208px;
    }

    #mission-title {

        width: 136px;
        color: #ffffff;
        height: 256px;

        position: relative;
    }

    #mission-title>h1 {
        position: absolute;
        top: 0;
        left: 20px;
        font-size: 40px;
    }

    #mission-title>span {
        position: absolute;
        top: 110px;
        left: 20px;
        font-size: 18px;
    }

    #mission-title>div {
        position: absolute;
        top: 180px;
        left: 20px;
        font-size: 13px;
    }

    /* ミッションページ　S2DGSの設定 */
    #mission-s2dgs {
        margin: 20px;
    }

    .mission-h2 {
        color: #000;
        font-size: 38px;
        margin: 0px;
    }

    .mission-h2::after {
        content: none;
    }

    #mission-s2dgs>img {
        width: 100%;
    }

    #section-s2dgs>img {
        width: 100%;
    }

    /* ミッションページ　5つのゴールの設定 */
    #mission-5goals {
        margin: 20px;
    }

    #mission-5goals>div>div {
        margin-bottom: 40px;
    }

    #s2dgs-image {
        width: 100%;
    }

    .fivegoals-image-right {
        margin: 20px auto 20px auto;
        display: block;
    }

    .fivegoals-image-left {
        margin: 20px auto 20px auto;
        display: block;
    }

    .fivegoals-number {
        color: #000;
        font-size: 48px;
        margin: 0;
    }

    .fivegoals-h3 {
        font-size: 28px;
        margin: 0;
    }

    .fivegoals-p {
        margin: 0;
    }

    /* プロダクトページ */

    #product-main {
        height: 256px;
        width: 100%;
        background-image: url("images/product/product-main.webp");
        background-repeat: no-repeat;
        background-position-y: center;
        background-size: auto 208px;
    }

    #product-title {

        width: 136px;
        color: #ffffff;
        height: 256px;

        position: relative;
    }

    #product-title>h1 {
        position: absolute;
        top: 0;
        left: 20px;
        font-size: 40px;
    }

    #product-title>span {
        position: absolute;
        top: 110px;
        left: 20px;
        font-size: 18px;
    }

    #product-title>div {
        position: absolute;
        top: 180px;
        left: 20px;
        font-size: 13px;
    }

    .product-section1 {
        margin: 20px;
    }

    .product-section1>img {
        width: 100%;
        border-radius: 0 300px 0 0;
    }

    .product-section1>div {}

    .product-section2 {
        margin: 20px;

        display: flex;
        flex-direction: column;
    }

    .product-section2>img {
        order: 1;
        width: 100%;
        border-radius: 300px 0 0 0;
    }

    .product-section2>div {
        order: 2;
    }

    .product-h2 {
        color: #000;
        font-size: 24px;
        /* width: 250px; */
        margin: 0;
    }

    .product-h3 {
        font-size: 28px;
        margin: 0;
    }


    #contact>h3 {
        margin: 10px 0 0 20px;

    }





    /*==================================================
    スタート時は要素自体を透過0にするためのopacity:0;を指定する
   ===================================*/

    .box,
    .vision-box {
        opacity: 0;
    }

    /*==================================================
    ふわっ
     ===================================*/

    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
        opacity: 0;
    }

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

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


    /*============
    nav
     =============*/

    nav {
        display: block;
        position: fixed;
        overflow-y: scroll;
        top: 0;
        left: -300px;
        bottom: 0;
        width: 300px;
        background: #ffffff;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;
        transition: all .5s;
        z-index: 3;
        opacity: 0;

    }

    .open nav {
        left: 0;
        opacity: 1;
    }

    nav .inner {
        padding: 25px;
    }

    nav .inner ul {
        list-style: none;

        margin: 0;
        padding: 0;
    }

    nav .inner ul li {
        position: relative;
        margin: 0;
        border-bottom: 1px solid #333;
    }

    nav .inner ul li a {

        display: block;
        color: #333;
        font-size: 14px;
        padding: 1em;
        text-decoration: none;
        transition-duration: 0.2s;
    }

    nav .inner ul li a:hover {
        background: #333;
        color: #fff
    }









    /*============
      .toggle_btn
      =============*/
    .toggle_btn {
        display: block;
        position: sticky;
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        transition: all .5s;


        cursor: pointer;
        z-index: 3;




    }

    .open .toggle_btn {
        left: 330px;


    }

    .toggle_btn span {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: #3f98ef;
        border-radius: 4px;
        transition: all .5s;
        text-overflow: clip;
    }

    .toggle_btn span:nth-child(1) {
        top: 4px;
    }

    .toggle_btn span:nth-child(2) {
        top: 14px;
    }

    .toggle_btn span:nth-child(3) {
        bottom: 4px;
    }

    .open .toggle_btn span {
        background-color: #3f98ef;
    }

    .open .toggle_btn {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .open .toggle_btn span:nth-child(1),
    .open .toggle_btn span:nth-child(3) {
        width: 16px;
    }

    .open .toggle_btn span:nth-child(1) {
        -webkit-transform: translate(-1px, 4px) rotate(-45deg);
        transform: translate(-1px, 4px) rotate(-45deg);
    }

    .open .toggle_btn span:nth-child(3) {
        -webkit-transform: translate(-1px, -4px) rotate(45deg);
        transform: translate(-1px, -4px) rotate(45deg);
    }

    @media screen and (max-width: 767px) {
        .open .toggle_btn {
            left: 250px;

        }
    }

    /*============
      #mask
      =============*/
    #mask {
        display: none;
        transition: all .5s;
    }

    .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .8;
        z-index: 2;
        cursor: pointer;
    }

    .text {

        display: block;
        margin-top: 70px;
        margin-left: -14px;
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        white-space: nowrap;
        letter-spacing: 2px;

    }

    .text:hover {
        color: #3f98ef
    }

    .midashi {
        position: absolute;
        top: 50%;
        margin-left: 10px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #3f98ef;
        display: inline-block;
        transform: skewX(-15deg);
        background: #fff;
        opacity: 70%;
    }

    /* 019 */
    .button019 a {
        position: relative;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 225px;
        padding: 10px 0px 10px 25px;
        color: #313131;
        transition: 0.3s ease-in-out;
        font-weight: 500;
        white-space: nowrap;
    }

    .button019 a:before,
    .button019 a:after {
        content: "";
        position: absolute;
        display: block;
        top: 50%;
    }

    .button019 a:before {
        width: 0.5rem;
        height: 0.5rem;
        left: 1.1rem;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        z-index: 2;
        transform: translateY(-50%) rotate(45deg);
        transition: all 0.3s;
    }

    .button019 a:after {
        left: 0;
        background: #6bb6ff;
        z-index: 1;
        width: 3rem;
        height: 3rem;
        border-radius: 4rem;
        transform: translateY(-50%);
        transition: all 0.5s;
    }

    .button019 a span {
        position: relative;
        transition: all 0.3s;
        z-index: 3;
    }

    .button019 a:hover span {
        color: #fff;
    }

    .button019 a:hover:before {
        left: 2rem;
    }

    .button019 a:hover:after {
        right: 0;
        width: 100%;
    }


    #page_top {
        width: 60px;
        height: 60px;
        position: fixed;
        right: 0;
        bottom: 0;
        opacity: 0.6;
    }
    #page_top a {
        width: 60px;
        height: 60px;
        text-decoration: none;
    }
    #page_top a::before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        content: '\f139';
        font-size: 50px;
        color: #3f98ef;
    }






}

.grecaptcha-badge {
    visibility: hidden;
}


@media screen and (min-width: 767px) {
    #navArea {
        display: none;
    }
}

/*==================================================
 スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box,
.vision-box {
    opacity: 0;
}

/*==================================================
ふわっ
 ===================================*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    opacity: 0;
}

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

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




.scroll_down {
    position: absolute;
    top: 750px;
    right: 50%;
    animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
    position: absolute;
    left: -24px;
    bottom: 30px;
    color: #000;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 24px;
    height: 24px;
    text-decoration: none;
}


.arrow {
    position: absolute;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;

}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

/* 018 */
.button018 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 225px;
    padding: 10px 0px 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;


}

.button018 a:before,
.button018 a:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
}

.button018 a:before {
    width: 0.5rem;
    height: 0.5rem;
    left: 1.1rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
}

.button018 a:after {
    left: 0;
    background: #6bb6ff;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 4rem;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.button018 a span {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
    white-space: nowrap;
}

.button018 a:hover span {
    color: #fff;
}

.button018 a:hover:before {
    left: 2rem;
}

.button018 a:hover:after {
    right: 0;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .scroll_down {
        top: 650px;
       
    }
}