@charset "utf-8";

/* -----------------------------------------------------------

全体

----------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

.inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0 140px;
}

.column02 {
    display: flex;
}

/*フォントサイズ*/
.fs_80 {
    font-size: 80%;
}

.fs_90 {
    font-size: 90%;
}

.fs_110 {
    font-size: 110%;
}

.fs_120 {
    font-size: 120%;
}

.fs_130 {
    font-size: 130%;
}

.fs_150 {
    font-size: 150%;
}

.fs_180 {
    font-size: 180%;
}


/*改行調整*/
.br_tab {
    display: none;
}

.br_sp {
    display: none;
}

/*===========
テーブル(表)
===========*/
/*01*/
.table_simple {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
}

.table_simple th,
.table_simple td {
    border-bottom: 1px dashed #333;
    padding: 1em 1em 1em 0.5em;
}

.table_simple th {
    font-weight: bold;
    text-align: center;
    width: 20%;
    min-width: 5.5em;
}

/*02*/
.table_default {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5em auto 1.5em auto;
    border: solid 1px #aaa;
}

.table_default tr {
    border-bottom: solid 1px #aaa;
}

.table_default th {
    position: relative;
    text-align: left;
    width: 26%;
    background-color: #ffb132;
    color: #333;
    text-align: center;
    padding: 16px 2%;
}

.table_default thead th {
    padding: 0.3rem 2%;
    background-color: #666;
    color: #fff;
    border-right: solid 1px #fff;
}

.table_default tbody th {
    background-color: #f3f3f3;
}

.table_default tbody td {
    background-color: #fff;
}

.table_default td {
    text-align: left;
    width: 66%;
    background-color: #f3f3f3;
    padding: 16px 2%;
}

/*リスト*/
.ul_disc li {
    list-style-type: disc;
    margin-left: 1.2em;
}

.ol_lower_alpha {
    margin: 1.5em auto 1.5em 1.7em;
}

.ol_lower_alpha li.lower_alphaIn {
    list-style-type: none;
    counter-increment: cnt;
    position: relative;
    margin-bottom: 0.8rem;
}

.ol_lower_alpha li.lower_alphaIn::before {
    content: "("counter(cnt, lower-alpha)") ";
    text-align: right;
    position: absolute;
    top: 0;
    left: -1.7rem;
}

/*===========
タイトル
===========*/
/*01*/
.title_01 {
    position: relative;
    line-height: 1.5;
    padding: 0.25em 1em;
    display: inline-block;
    top: 0;
    margin-bottom: 1.5em;
    font-size: 18px;
}

.title_01:before,
.title_01:after {
    position: absolute;
    top: 0;
    content: '';
    width: 8px;
    height: 100%;
    display: inline-block;
}

.title_01:before {
    border-left: solid 1px #333;
    border-top: solid 1px #333;
    border-bottom: solid 1px #333;
    left: 0;
}

.title_01:after {
    content: '';
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    border-bottom: solid 1px #333;
    right: 0;
}

/*02*/
.title_02 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 42px;
    text-align: center;
    margin: 0 auto 40px auto;
    letter-spacing: 0.15em;

}

.title_02 span {
    position: relative;
    z-index: 2;
}

.title_02::before {
    content: attr(data-en);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(180, 180, 180, 0.1);
    font-size: 160px;
    width: 100%;
}

.title_02::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #333;
}

/*===========
ボタン
===========*/
/*全共通*/
.btArea .btn {
    text-decoration: none;
}


/*ボタン01 02共通*/
.btArea .btn01 span,
.btArea .btn02 span {
    border-bottom: 1px solid #333;
    padding: 0.5em;
    margin-right: 1em;
    font-weight: bold;
    background: transparent;
    position: relative;
    z-index: 1;
}

.btArea .btn01 span::before,
.btArea .btn02 span::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 0% 0%;
    transform: scaleX(0);
    transition: transform ease .3s;
}

.btArea .btn01 span:hover::before,
.btArea .btn02 span:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.btArea .btn01 span:hover,
.btArea .btn02 span:hover {
    color: #fff;
    transition: all 0.5s;
}

.btArea .btn01::after,
.btArea .btn02::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: contain;
    vertical-align: middle;
}

/*ボタン01*/
.btArea .btn01::after {
    background-image: url(../images/arrow_black_01.svg);
}

/*ボタン02*/
.btArea .btn02::after {
    background-image: url(../images/arrow_white_01.svg);
}

/* ----------------------------------------------- */
/* 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    .column02 {
        display: block;
    }
.inner {
    padding: 80px 0 100px;
}
    /*改行調整*/
    .br_tab {
        display: block;
    }

    /*===========
    テーブル(表)
    ===========*/
    /*01*/
    .table_simple tr {
        border-bottom: 1px dashed #333;
    }

    .table_simple th,
    .table_simple td {
        display: block;
        width: 95%;
        border-bottom: 0;
    }

    .table_simple th {
        text-align: left;
        padding: 1em 2.5% 0.2em 2.5%;
    }

    .table_simple td {
        padding: 0.2em 2.5% 1em 2.5%;
    }

    /*===========
    タイトル
    ===========*/
    /*02*/
    .title_02 {
        font-size: 28px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .title_02::before {
        font-size: 16vw;
        top: 20px;
    }

    /*===========
    ボタン
    ===========*/
    /*ボタン01 02共通*/
    .btArea .btn01::after,
    .btArea .btn02::after {
        width: 40px;
        height: 40px;
    }

}

/* ----------------------------------------------- */
/* 480px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 480px) {

    /*改行調整*/
    .br_sp {
        display: block;
    }

}

/* -----------------------------------------------------------

フェードインなどのアニメーション

----------------------------------------------------------- */
/*===========
フェードイン
===========*/

.fadeIn {
    animation: fadeIn 1s ease 0s 1 normal;
}

/* fadeIn */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
    }
}

/*===========
フェードイン(スクロールで出現)
===========*/
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 1s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/* -----------------------------------------------------------

パララックス効果

----------------------------------------------------------- */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://www.pro-cas.jp/common/images/mv_img_pc.jpg);
}

.parallax_bg01 {
    background-color: #f3f3f3;
    background-image: radial-gradient(circle, #eee 1.5px, transparent 1.5px);
    background-position: 0 0;
    background-size: 9px 9px;
    background-repeat: repeat;
}

.parallax_bg02 {
    background-color: #4a4a4a;
    background-image: radial-gradient(circle, #444 1.5px, transparent 1.5px);
    background-position: 0 0;
    background-size: 9px 9px;
    background-repeat: repeat;
}

/* -----------------------------------------------------------

ヘッダー

----------------------------------------------------------- */

.header {
    position: sticky;
    /* headerを追従にする */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
}

.header__inner {
    position: relative;
}

/* ----------------------------------------------- */
/* メニューウィンドウ */
/* ----------------------------------------------- */
/* ハンバーガーボタンのデザイン */
.drawer__button {
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #f3f3f3;
    border: none;
    cursor: pointer;
    z-index: 999;
    right: 0;
    right: 3rem;
    top: 1.5rem;
    border: solid 2px #605f5a;
    border-radius: 4px;
    /* メニューを開いている時もクリックできるよう設定 */
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.5rem;
    height: 3px;
    background-color: #605f5a;
    transform: translateX(-50%);
}

.drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.8rem));
    transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.8rem));
    transition: transform 0.3s ease;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);

}

.drawer__button.active > span:nth-child(2) {
    opacity: 0;
}

.drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);

}

/* メニューのデザイン */
.drawer__nav {
    position: fixed;
    /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.drawer__nav.active {
    opacity: 1;
    visibility: visible;
}

.drawer__nav__inner {
    position: relative;
    width: 600px;
    height: 100%;
    background-color: #333;
    padding: 6rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
}

.drawer__nav__menu {
    list-style: none;
    padding-left: 0;
}

.drawer__nav__link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1.2rem 1rem 1.2rem 2.3rem;
    border-bottom: dashed 1px #999;
    position: relative;
    line-height: 1.4em;
}

.drawer__nav__link span {
    font-size: 12px;
}

.drawer__nav__link:hover {
    background-color: #222;
    color: #ffb035;
}

/* メニューアイコン */
.drawer__nav__link .fa-chevron-right {
    margin-right: 10px;
    position: absolute;
    top: 45%;
    left: 0.5rem;
}


/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
    height: 100%;
    overflow: hidden;
}

/* ----------------- */
/* ロゴ */
/* ----------------- */
.header .menubar {
    display: flex;
    align-items: center;
    width: 90%;
    margin: auto;
    justify-content: space-between;
    padding: 0.5em 1em;
}

.header .logo {
    width: 152px;
}

.header .logo a:hover {
    opacity: 0.5;
}


/* ----------------------------------------------- */
/* header 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    .hamburger-window__link {
        width: 90%;
    }

    /* ----------------- */
    /* ロゴ */
    /* ----------------- */
    .header .menubar {
        padding: 0.2em 1em;
    }

    .header .logo {
        width: 120px;
    }

    /* ----------------------------------------------- */
    /* メニューウィンドウ */
    /* ----------------------------------------------- */
    /* メニューのデザイン */
    .drawer__nav__inner {
        width: 80%;
    }

    .drawer__button {
        right: 1rem;
        top: 1rem;
    }

}

/* ----------------------------------------------- */
/* header 480px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 480px) {

    /* ----------------------------------------------- */
    /* メニューウィンドウ */
    /* ----------------------------------------------- */
    .drawer__nav__inner {
        padding: 4.5rem 1.5rem 1rem;
    }

    .drawer__button {
        width: 3rem;
        height: 3rem;
    }

    .drawer__button > span {
        width: 2rem;
    }
}

/* -----------------------------------------------------------

フッター

----------------------------------------------------------- */
footer {
    background-color: #4a4a4a;
    color: #fff;
}

footer .footerIN {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 24px 0;
}

/*フッター上部*/
footer .footer_info {
    margin: 0 auto 32px auto;
}

footer .footer_info .footer_logo a {
    width: 60%;
    transition: all 0.5s;
    max-width: 280px;
    display: block;
    margin: auto;
}

footer .footer_info .footer_logo a:hover {
    opacity: 0.5;
    transition: all 0.5s;
}


/*フッターメニュー*/
.footer_menu .footer__menu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #777;
    padding: 18px 0;
    font-size: 15px;
}

.footer_menu .footer__menu_list li {
    margin: 8px 16px;
}

.footer_menu .footer__menu_list a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

.footer_menu .footer__menu_list a:hover {
    color: #ffb035;
}

/*コピーライト*/
#copyright {
    font-size: 14px;
    text-align: center;
    margin-top: 32px;
}

/* ----------------------------------------------- */
/* footer 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {

    /*フッター上部*/
    footer .footer_info {}



    /*フッターメニュー*/
    .footer_menu .footer__menu_list {
        display: block;
        padding: 0;
    }

    .footer_menu .footer__menu_list li {
        margin: auto;
        text-align: center;
        padding: 1.2em;
        border-bottom: 1px solid #777;
    }

    .footer_menu .footer__menu_list a {
        display: block;
    }

}

/* -----------------------------------------------------------

MV

----------------------------------------------------------- */
.home .mv {
    position: relative;
}

.home .mv .mv_logo {
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* ----------------- */
/* MV アニメーション */
/* ----------------- */
.circles_bg_anime {
    background: #f3f3f3;
     width: 100%;
    height: 100vh;
    position: relative;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 176, 53, 0.9);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 10px;
  height: 100px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 15px;
  height: 140px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 5px;
    height: 80px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 18px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 8px;
    height: 60px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 5px;
    height: 40px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 10px;
    height: 120px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 15px;
    height: 150px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 80px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 20px;
  height: 170px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

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

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }

}

/* ----------------------------------------------- */
/* MV 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    .home .mv .mv_logo {
        width: 70%;
        max-width: 400px;
    }
    /* ----------------- */
/* MV アニメーション */
/* ----------------- */
    .circles li:nth-child(10),.circles li:nth-child(1),.circles li:nth-child(6){
        display: none;
    }
}

/* -----------------------------------------------------------

TOP

----------------------------------------------------------- */
/* ----------------- */
/* what_we_do */
/* ----------------- */
.home .what_we_do {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/*タイトル*/
.home .what_we_do h2.title_02::before {
    font-size: 120px;
}
/*テキスト*/
.home .what_we_do .txtArea {
    text-align: center;
}

.home .what_we_do .txtArea h2 {
    margin-bottom: 2em;
}

.home .what_we_do .txtArea h2 img {
    width: 90%;
    max-width: 550px;
}

.home .what_we_do .txtArea span {
    border-bottom: 1px dashed #333;
    display: block;
    padding: 1em;
    font-weight: 600;
    width: 40%;
    min-width: 500px;
    margin: auto;
}
/* ----------------------------------------------- */
/* what_we_do 1000px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 1000px) {
    /*タイトル*/
.home .what_we_do h2.title_02::before {
    font-size: 100px;
}
}
/* ----------------------------------------------- */
/* what_we_do 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
/*タイトル*/
.home .what_we_do h2.title_02::before {
    font-size: 13vw;
}
    /*テキスト*/
    .home .what_we_do .txtArea span {
        width: 90%;
        min-width: auto;
    }
}

/* ----------------------------------------------- */
/* what_we_do 480px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {

    /*テキスト*/
    .home .what_we_do .txtArea p {
        line-height: 2.3;
    }

    .home .what_we_do .txtArea span {
        border-bottom: 0;
        padding: 0;
    }
}

/* ----------------- */
/* 会社概要 */
/* ----------------- */
.home #about {
    position: relative;
}


.home .about table {
    max-width: 800px;
    margin: 1.5em auto;
}

/* ----------------------------------------------- */
/* about 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    .home .about h2 {}

    .home .about table {
        width: 100%;
    }


    /*テキスト*/
    .home .what_we_do .txtArea span {
        width: 90%;
        min-width: auto;
    }
}


/* ----------------- */
/* 事例紹介 */
/* ----------------- */
.home #works {
    position: relative;
}

.home #works .circles_bg_anime {
    height: 100%;
    position: absolute;
    bottom: 0;
    background: inherit;
}

.home #works .inner {
    padding: 140px 0 120px;
}

.home #works .works_list {
    display: flex;
    flex-wrap: wrap;
}

.home #works .works_listcard {
    position: relative;
    overflow: hidden;
    width: calc(100% / 3 - 20px);
    margin: 24px 10px;
}

.home #works .works_listcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home #works .card-text {
    position: absolute;
    bottom: 0;
    width: 90%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5%;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.home #works .card-text span {
    background-color: #fff;
    color: #333;
    display: inline-block;
    min-width: 100px;
    text-align: center;
    margin-bottom: 8px;
    border-radius: 4px;
    padding: 0 10px;
}

.home #works .works_listcard:hover img {
    transform: scale(1.1);
}

.home #works .works_listcard:hover .card-text {
    transform: translateY(0);
}

/* ----------------------------------------------- */
/* works 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    .home #works .inner {
        padding: 90px 0 120px;
    }

    .home #works .works_listcard {
        width: calc(100% / 2 - 20px);
        margin: 16px 10px;
    }
}

/* ----------------------------------------------- */
/* works 480px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 480px) {
    .home #works .works_listcard {
        width: 100%;
    }
}

/* ----------------- */
/* サービス */
/* ----------------- */
#service {
    color: #fff;
}

#service .inner {
    padding-top: 16px;
    padding-bottom: 80px;
}

#service .title_02::after {
    background-color: #feb033;
}

/*タイトル*/
#service .serviceArea .service_ttl {
    margin-bottom: 48px;
}

#service .serviceArea .service_ttl h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

/*左*/
#service .serviceArea .service_left {
    width: 48%;
    margin-right: 4%;
}

/*左 リスト*/
/*#service .serviceArea .service_left .service_list h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

#service .serviceArea .service_left .service_list h3:before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: #FEB033;
    border-radius: 50%;
    margin-right: 8px;
}

#service .serviceArea .service_left .service_list li {
    border-bottom: 1px dashed #888;
    padding: 1.5em 0.5em;
}
*/

/*右*/
#service .serviceArea .service_right {}

#service .serviceArea .service_right img {
    max-width: 700px;
    width: 70%;
    display: block;
    margin: 5em auto auto auto;
}

/*コミュニケーションデザインのみ*/
/*#service .service01 {
    margin-bottom: 120px;
}*/

#service .service01 .column02 {
    align-items: center;
}

/*キャリアプロデュースのみ*/
#service .service02 .column02 {
    align-items: center;
}

/*テキストスライダー*/
#service .serviceTxtSlide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

#service .serviceTxtSlide_IN {
    display: flex;
    animation: loop-text 40s linear infinite;
    height: 15rem;
    align-items: center;
}

#service .serviceTxtSlide_IN span {
    display: inline-block;
    font-size: 14rem;
    color: #555;
    font-weight: bold;
    white-space: nowrap;
}

@keyframes loop-text {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ----------------------------------------------- */
/* service 1200px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 1200px) {
    #service .service01 .column02 {
        display: block;
    }

    /*左*/
    /*
    #service .serviceArea .service_left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4em;
    }*/

    /*右*/
    #service .serviceArea .service_right {}

    /*テキストスライダー*/
    #service .serviceTxtSlide_IN {
        height: 8rem;
        align-items: center;
    }

    #service .serviceTxtSlide_IN span {
        font-size: 8rem;
    }
}

/* ----------------------------------------------- */
/* service 480px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 480px) {
    #service .inner {
        padding-bottom: 40px;
    }

    #service .serviceArea .service_right img {
        width: 100%;
    }

}

/* -----------------------------------------------------------

TOPバナー

----------------------------------------------------------- */
.bnrArea_bottom {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.bnrArea_bottom .bnrAreaIN {
    text-align: center;
    margin-top: 4em;
}

.bnrArea_bottom .bnrAreaIN a:hover {
    opacity: 0.7;
}



/* -----------------------------------------------------------

子ページ タイトル

----------------------------------------------------------- */
#sub_mv {
    position: relative;

}

#sub_mv .circles_bg_anime {
    height: 260px;
}

#sub_mv h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #555;
    font-size: 140%;
    letter-spacing: 3px;
    width: 90%;
    text-align: center;
}

/* ----------------------------------------------- */
/* 子ページ タイトル 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    #sub_mv .circles_bg_anime {
        height: 200px;
    }

    #sub_mv h2 {
        font-size: 18px;
    }
}

/* -----------------------------------------------------------

パンくず

----------------------------------------------------------- */
.breadcrumb .inner {
    padding: 10px 0 10px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.8em;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "»";
    margin: 0 .6em;
    /* 記号の左右の余白 */
    color: #777;
    /* 記号の色 */
}

/* -----------------------------------------------------------

404 Not Found

----------------------------------------------------------- */
.not-found-page .container {
    min-height: 500px;
}

.not-found-page .container p {
    margin-bottom: 2em;
}
