@charset "utf-8";

/*
Theme Name: PEP.
Author: hironori hashimoto
Author URI: https://pepinc.biz/
Description: 株式会社PEPのオリジナルテンプレート
*/
html {
    font-size: 55%;
    scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
    html {
        font-size: 62.5%;
    }
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: #182578;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}
.bg-gradient{
	background: linear-gradient(-215deg, #1f223c, #22588e 44%, #31b499 77%, #35e27e);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
.sp-br{
		display:block;
	}
@media screen and (min-width: 560px) {
	.sp-br{
		display:none;
	}
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}


a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
}

section {
    padding: 12rem 0 0;
    position: relative;
}

@media screen and (min-width: 560px) {
    section {
        padding: 15rem 0 0;
    }
}

@media screen and (min-width: 560px) {

    #blog .common-inner,
    .blog-content .common-inner {
        position: relative;
    }

    #blog .common-inner::after,
    .blog-content .common-inner::after {
        content: "";
        width: 31.25%;
        display: block;
    }
}

.works-content {
    padding-top: 2rem;
}

.blog-content {
	padding: 15rem 0px;
}
.blog-content h2{
	color:#fff;
}
section h2 {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 4.8rem;
    letter-spacing: 0.3rem;
    font-family: 'Cinzel',
        serif;
    color: #fff;
}

@media screen and (min-width: 560px) {
    section h2 {
        font-size: 5rem;
        letter-spacing: 0.8rem;
    }
}

@media screen and (min-width: 960px) {
    section h2 {
        font-size: 6rem;
    }
}

section h2 span {
    font-size: 1.6rem;
    display: block;
    letter-spacing: 0.2rem;
    font-family: "Noto Serif JP",
        serif;
}

.p-common__lead {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-left: 1px solid #182578;
    padding-left: 1.5rem;
}
#works .p-common__lead{
	border-left:1px solid #fff;
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #182578;
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}

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

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

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
    display: block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
    animation-name: PageAnime;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    bottom: 50%;
    left: 0;
    transform: scaleY(1);
    background-color: #182578;
    /*伸びる背景色の設定*/
}

@keyframes PageAnime {
    0% {
        transform-origin: top;
        transform: scaleY(1);
    }

    100% {
        transform-origin: top;
        transform: scaleY(0);
    }
}

/*下に消えるエリア*/
body.appear .splashbg2 {
    animation-name: PageAnime2;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 50%;
    left: 0;
    transform: scaleY(1);
    background-color: #182578;
    /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
    0% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
    opacity: 0;
    /*はじめは透過0に*/
    position: relative;
    z-index: 1;
}

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

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

    100% {
        opacity: 1;
    }
}

/*===========================================================*/
/*機能編  5-1-9スクロール途中でヘッダーが消え、上にスクロールすると復活*/
/*===========================================================*/

#header {
    /*fixedで上部固定*/
    position: fixed;
    width: 100%;
    height: 94px;
    z-index: 99;
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
    #header {
        height: 70px;
    }
}

/*　上に上がる動き　*/

#header.UpMove {
    animation: UpAnime 0.5s forwards;
}

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

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

/*　下に下がる動き　*/

#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

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

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

/*===========================================================*/
/*機能編  5-1-21 クリックしたら円形背景が拡大（右下から）*/
/*===========================================================*/
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width: 1300px) {

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #182578;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        bottom: -50px;
        transition: all 0.6s;
        /*0.6秒かけてアニメーション*/
    }

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

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

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

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

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

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

    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
        margin: 0 0 10px 0;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
}

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

    100% {
        opacity: 1;
    }
}

/*===========================================================*/
/*機能編  5-2-1　3本線が×に*/
/*===========================================================*/

.openbtn {
    display: none;
}

@media screen and (max-width: 1300px) {
    .openbtn {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 94px;
        height: 94px;
        background: #182578;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all 0.4s;
        position: absolute;
        left: 23px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

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

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

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

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

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

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

@media screen and (max-width: 768px) {
    .openbtn {
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        left: 17px;
    }

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

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

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

    .openbtn.active span:nth-of-type(1) {
        top: 28px;
        left: 22px;
    }

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

/*==================================================
機能編　5-3-11 左右から線が伸びて枠線になる
===================================*/

.nav05b li {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    margin: 0 5px;
}

/*線の基点位置*/
.nav05b li::before,
.nav05b li::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    /*線の形状*/
    width: 0;
    height: 2px;
    background: #182578;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
    transition-delay: 0.2s;
}

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

    /*線の基点位置*/
    .nav05b li::before,
    .nav05b li::after {
        background: #fff;
    }
}

.nav05b li::before {
    right: 0;
    top: 0;
}

.nav05b li::after {
    left: 0;
    bottom: 0;
}

/*線の基点位置2 spanタグ*/

.nav05b li span {
    display: block;
}

.nav05b li span::before,
.nav05b li span::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    /*線の形状*/
    width: 1px;
    height: 0;
    background: #182578;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

.nav05b li span::before {
    left: 0;
    top: 0;
}

.nav05b li span::after {
    right: 0;
    bottom: 0;
}

/*現在地とhoverした際の線の変化*/

.nav05b li.current::before,
.nav05b li.current::after,
.nav05b li:hover::before,
.nav05b li:hover::after {
    width: 100%;
    /*横幅を100%に*/
}

.nav05b li.current span::before,
.nav05b li.current span::after,
.nav05b li:hover span::before,
.nav05b li:hover span::after {
    height: 100%;
    /*縦幅を100%に*/
}

/*==================================================
機能編 　9-1-5 スクロールをするとエリアの高さに合わせて線が伸びる
===================================*/

/*========= バー表示のためのCSS ===============*/

/*タイムライン全体の設定*/

.timeline li {
    /*線の起点とするためrelativeを設定*/
    position: relative;
    list-style: none;
    padding: 0 0 20px 0;
}

.timeline dl {
    margin: 0 0 20px 3em;
}

/*絶対配置で線を設定*/
.border-line {
    /*線の位置*/
    position: absolute;
    left: 0.2em;
    top: 0;
    width: 2px;
    /*線の太さ*/
    height: 0;
    /*はじめは高さを0に*/
    background: #999999;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #999999;
    border-radius: 50%;
}

/*==================================================
機能編 　7-1-5	背景が流れる（中央から横全体）
===================================*/

/*== ボタン共通設定 */
.btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border: 1px solid #333;
    /* ボーダーの色と太さ */
    padding: 40px 8px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease 0.2s;
}

.btn.bgcenterout {
    border: 1px solid #fff;
    /* ボーダーの色と太さ */
    padding: 8px 40px;
}

/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #333;
}

.btn:hover span {
    color: #fff;
}

.btn.bgcenterout span {
    color: #fff;
}

.btn.bgcenterout:hover span {
    color: #333;
}

/*== 中央から横全体 */
.bgcenterx:before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #333;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: top;
}

/*hoverした際の形状*/
.bgcenterx:hover:before {
    transform: scale(1, 1);
}

/*== 中央から外 */
.bgcenterout:before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #fff;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 0);
    transform-origin: center;
}

/*hoverした際の形状*/
.bgcenterout:hover:before {
    transform: scale(1, 1);
}

/*==================================================
機能編 　7-1-33	外の線が伸びる
===================================*/

/*== 線が伸びる1 */

.btnlinestretches {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    color: #333;
    border: 1px solid #333;
    padding: 30px 0;
    display: inline-block;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}

/*hoverした際の背景の形状*/
.btnlinestretches:hover {
    background: #333;
    color: #fff;
    border-color: transparent;
}

/*線の設定*/
.btnlinestretches::before,
.btnlinestretches::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    border: solid #333;
    width: 10px;
    height: 10px;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}

/*線の位置と形状*/
.btnlinestretches::before {
    top: -6px;
    left: -6px;
    border-width: 1px 0 0 1px;
}

/*線の位置と形状*/
.btnlinestretches::after {
    bottom: -6px;
    right: -6px;
    border-width: 0 1px 1px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches:hover::before,
.btnlinestretches:hover::after {
    width: calc(100% + 11px);
    height: calc(100% + 11px);
    border-color: #666;
}

/*==================================================
印象編 4 最低限おぼえておきたい動き
===================================*/

/* 4-2 パタッ（下へ） */

.flipDown {
    animation-name: flipDownAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipDownAnime {
    from {
        transform: perspective(2500px) rotateX(100deg);
        opacity: 0;
    }

    to {
        transform: perspective(2500px) rotateX(0);
        opacity: 1;
    }
}

/* 4-1 ふわっ（下から） */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

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

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

/* 4-1 ふわっ（左から）*/

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

/* 4-1 ふわっ（右から） */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}

/****************************
共通
****************************/
/* .en {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
} */

/* .jp {
    font-family: YakuHanJP, "Noto Sans Japanese", "ヒラギノ角ゴシック Pro W3",
        "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic",
        YuGothic, sans-serif;
} */
.col-4 {
    margin-top: 3.2rem;
    flex: 0 0 48.25%;
    max-width: 48.25%;
}

.col-2 {
    margin-top: 3rem;
}

@media screen and (min-width: 560px) {
    .col-3 {
        flex: 0 0 31.25%;
        max-width: 31.25%;
    }

    .col-2 {
        flex: 0 0 48.25%;
        max-width: 48.25%;
        margin-top: 0rem;
    }

    .col-4 {
        flex: 0 0 21.25%;
        max-width: 21.25%;
        margin-top: 0px;
    }
}

.wrap-1480 {
    max-width: 1512px;
    padding: 0 16px;
    margin: 0 auto;
}

.wrap-1024 {
    max-width: 1056px;
    padding: 0 16px;
    margin: 0 auto;
}

.wrap-960 {
    max-width: 992px;
    padding: 0 16px;
    margin: 0 auto;
}

.wrap {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 560px) {
    .reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.common-sp__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (min-width: 560px) {
    .common-inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.common-link {
    background-color: #182578;
    color: #fff;
    border: 2px solid #182578;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 10rem auto 0;
    height: 74px;
    line-height: 74px;
}

.common-link:hover {
    opacity: 0.6;
    background-color: #fff;
    color: #182578;
}

/****************************
アニメーション
****************************/
.fadein {
    opacity: 0;
    transform: translate(0, 40px);
    transition: opacity 1.4s, transform 0.8s;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.motion-txt {
    display: block;
    position: relative;
    overflow: hidden;
}

.motion-txt::after {
    content: "";
    position: absolute;
    opacity: 1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: #ed6d00;
    transform: translate3d(-101%, 0, 0);
    display: block;
}

.js-scroll.show .motion-txt::after {
    transition-property: transform, opacity;
    transition-duration: 0.4s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transform: translate3d(0, 0, 0);
}

.js-scroll.show .motion-txt:nth-child(2)::after {
    transition-delay: 0.1s;
}

.js-scroll.show .motion-txt:nth-child(3)::after {
    transition-delay: 0.2s;
}

.js-scroll.done .motion-txt::after {
    transition-property: transform;
    transition-duration: 0.8s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transform: translate3d(101%, 0, 0);
}

.motion-txt .motion-inner {
    display: inline-block;
    opacity: 0;
}

.js-scroll.done .motion-txt .motion-inner {
    opacity: 1;
}

/****************************
メインビジュアル
****************************/

/****************************
企業情報
****************************/
#company{
	padding:10rem 0;
}
.corporate-table {
    width: 100%;
    border-collapse: collapse;
}

.corporate-table tr {
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    padding: 1rem;
	font-size:1.4rem;
}

@media screen and (min-width: 560px) {
    .corporate-table tr {
        padding: 1rem 0.5rem;
		font-size:1.3rem;
    }
}

.corporate-table tr:first-child {
    border-top: 1px solid #f5f5f5;
}

.corporate-table tbody {
    display: block;
    width: 100%;
}

.corporate-table th {
    width: 30%;
    text-align: justify;
    text-justify: inter-ideograph;
    font-weight: 500;
}

.corporate-table td {
    width: 70%;
}

@media screen and (min-width: 560px) {

    .corporate-table th,
    .corporate-table td {
        padding: 1rem 3rem;
    }
}

.corporate-table td a {
    display: inline-block;
    margin-right: 15px;
}

/****************************
ブログ
****************************/
#blog{
	background: linear-gradient( -215deg, #1f223c, #22588e 44%, #31b499 77%, #35e27e);
	padding: 10rem 0;
}
.blog-image {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.blog-link {
    margin-top: 4.8rem;
    box-shadow: 0 8px 30px -10px #999;
	color: #fff;
}

.blog-link:hover {
    box-shadow: none;
}

@media screen and (min-width: 560px) {
    .blog-link {
        margin-top: 0rem;
    }
}

.blog-link__body {
    padding: 0 10px 20px;
    overflow: hidden;
}

.blog-ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-image img {
    transition: 0.3s all;
    object-fit: cover;
    width: 100%;
    height: 240px;
}

@media screen and (min-width: 960px) {
    .blog-image img {
        height: 320px;
    }
}

.blog-link:hover img {
    transform: scale(1.1, 1.1);
}

.blog-content .col-3 {
    margin-top: 5rem;
}

.article-content {
    padding-top: 4rem;
    padding-bottom: 12rem;
}

.blog-common-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.blog-eyecatch__image {
    margin-bottom: 1rem;
}

/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
    margin-left: auto;
    padding-left: 0;
    margin-right: auto;
	color:#fff;
}

#breadcrumb li {
    display: inline;
    /*横に並ぶように*/
    list-style: none;
}

#breadcrumb li:after {
    /* >を表示*/
    content: ">";
    padding: 0 10px;
}

#breadcrumb li:last-child:after {
    content: "";
}

#breadcrumb li a {
    text-decoration: none;
    display: inline-block;
}

#breadcrumb li:first-child a:before {
    /*家アイコン*/
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    padding-right: 5px;
}

#breadcrumb li a:hover {
    opacity: 0.5;
}

body.appear {
	background: #313656;
}

* {
    box-sizing: border-box;
}

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

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

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

/* font-family */

.heading {
    font-size: 2.8vw;
    font-weight: normal;
    color: #fff;
    animation-delay: 0.2s;
	text-align:right;
}

@media screen and (max-width: 960px) {
    .heading {
        font-size: 3.5rem;
    }
}
.heading span{
	
}
#container {
    overflow-x: hidden;
}

/* header */

#header {
    background: #fff;
}

#header h1 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    position: absolute;
    top:29px;
    left: 50%;
    transform: translateX(-50%);
    color: #182578;
	padding-left: 5px;
}
#header h1 span{
	    position: absolute;
left: 0%;
    transform: translateX(-100%);
    top: 5px;
    width: 20%;
}
#g-nav ul {
    display: flex;
    padding: 0 0 0 5%;
}

#g-nav ul li {
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* #g-nav ul li:last-child {
    display: none;
} */

#g-nav ul li a {
    display: block;
    padding: 6px 8px;
}

@media screen and (max-width: 1300px) {
    #g-nav ul {
        display: block;
        padding: 0;
    }

    #g-nav ul li a {
        padding: 6px 15px;
    }
}

#header ul#utility-navi {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    display: flex;
    font-size: 0.8rem;
}

#header ul#utility-navi li {
    text-align: center;
}

#header ul#utility-navi li span {
    display: block;
}

#header ul#utility-navi li a {
    color: #fff;
    padding: 15px 0;
    display: block;
    width: 100px;
    transition: all 0.5s;
}

#header ul#utility-navi li img {
    width: 35%;
}

#header ul#utility-navi li:first-child a {
    background: #666;
}

#header ul#utility-navi li:first-child a:hover {
    background: #888;
}

#header ul#utility-navi li:last-child a {
    background: #182578;
}

#header ul#utility-navi li:last-child a:hover {
    background: #1e2f98;
}

@media screen and (max-width: 768px) {
    #header h1 {
        top: 20px;
        transform: translateX(-70%);
    }
	#header h1 span{
		left: 0%;
	}

    #header ul#utility-navi li span {
        display: none;
    }

    #header ul#utility-navi li a {
        width: 70px;
        height: 70px;
        padding: 0;
    }

    #header ul#utility-navi li img {
        width: 45%;
        margin: 17px 0 0 0px;
    }
}

@media screen and (max-width: 530px) {
    #header h1 {
        font-size: 2rem;
        top: 20px;
        transform: translateX(-50%);
    }

    #g-nav ul li:last-child {
        display: block;
    }

    #header ul#utility-navi li:first-child {
        display: none;
    }

    #header ul#utility-navi li:last-child a {
        background: #666;
    }

    #header ul#utility-navi li:last-child a:hover {
        background: #888;
    }
}

/* lead */

#lead {
    position: relative;
    padding: 150px 0 0 0;
    height: 100vh;
    margin-bottom: 8rem;
}

@media screen and (max-width: 530px) {
    #lead {
        margin-bottom: 10rem;
    }
}

#slider-area {
    width: 70%;
    height: 70vh;
    position: relative;
    top: 0;
    left: 15%;
    z-index: 1;
}

#slider-area #slider {
    width: 100%;
    height: 70vh;
}

#lead h2.heading {
    position: absolute;
    top: 200px;
    right: 5%;
	z-index:2;
	text-shadow: 0 0 10px #1f416c;
}
#lead h2.heading span{
	font-size:2vw;
	display:block;
}
@media screen and (max-width: 530px) {
	#lead h2.heading span{
		font-size:4.6vw;
}
}
#lead .lead {
    position: absolute;
    top: 320px;
    right: 4%;
    font-size: 2rem;
    letter-spacing: 0.2em;
    line-height: 1.6;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

#lead .lead span {
    display: block;
    padding: 120px 0 0 0;
}

/****************************
works
****************************/
#works h2,
#company h2,
#news h2{
	color:#fff;
}
.p-works__body {
    text-align: center;
}

#works .col-4 {
    margin-top: 3rem;
}

/****************************
news
****************************/

#news {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 40%;
    z-index: 2;
    padding: 40px;
}

#news h2 {
    position: relative;
    font-size: 1.8rem;
    margin: 0 0 30px 0;
	color: #182578;
}

#news h2::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: #182578;
    left: 0;
    bottom: -5px;
}

#news li {
    margin: 0 0 10px 0;
}

#news li a {
    transition: all 0.3s;
}

#news li a:hover {
    background: #efefef;
}

#news li time {
    display: inline-block;
    padding: 0 20px 0 0;
    font-size: 1.3rem;
    color: #999;
}

@media screen and (max-width: 1200px) {
    #lead .lead {
        font-size: 1.8rem;
        right: 2.5%;
    }

    #news {
        width: 50%;
    }
}

@media screen and (max-width: 960px) {
    #lead .lead {
        font-size: 1.6rem;
        right: 3%;
    }

    #news {
        padding: 20px 30px;
    }

    #news li time {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    #slider-area {
        width: 87%;
        height: 70vh;
        left: 0;
    }

    #slider-area #slider {
        height: 90vh;
    }

    #lead h2.heading {
        top: 240px;
		color:#fff;
    }

    #lead {
        padding: 100px 0 0 0;
    }

    #lead .lead {
        right: 7%;
        top: 260px;
    }

    #news {
        width: 100%;
        bottom: 0px;
        position: relative;
        z-index: 10;
    }
}

@media screen and (max-width: 550px) {
    #lead .lead {
        font-size: 2rem;
        right: 5%;
    }
}

@media screen and (max-width: 350px) {
    #lead .lead {
        right: 2%;
    }
}

/****************************
service
****************************/

#service {
    position: relative;
    padding: 100px 0 90px;
    background-color: #fff;
	color: #182578;
}

#service header {
    background: #182578;
    color: #fff;
    width: 90%;
    padding: 50px 0 100px 0;
    z-index: 1;
}

#service header h2 {
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    letter-spacing: 0.1em;
}

#service header p {
    margin: 0 0 30px 0;
}

#service header p br {
    display: none;
}

#service .service-area {
    background: #fff;
    padding: 70px;
    width: 70%;
    position: relative;
    top: -50px;
    left: 10%;
    z-index: 2;
}

#service .service-area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /* スマホ表示用。flipDownを指定している親要素に指定しないとうまく動かない*/
    transform: translate3d(0, 0, 0);
}

#service .service-area ul li {
    opacity: 0;
    width: 22%;
    padding: 0 0 50px 0;
}

#service .service-area ul li a {
    display: block;
}

@media screen and (max-width: 960px) {
    #service header {
        width: 100%;
    }

    #service .service-area {
        width: 80%;
        left: 10%;
        padding: 80px 20px 30px 20px;
    }

    #service .service-area ul li {
        width: 40%;
    }

    #service header p br {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    #service {
        padding: 90px 0 90px 0;
    }
}

@media screen and (max-width: 550px) {
    #service .service-area {
        width: 90%;
        left: 5%;
    }
}

@media screen and (max-width: 400px) {
    #service .service-area {
        width: 100%;
        left: 0;
        font-size: 0.9rem;
    }
}

.p-service__image {
    position: relative;
    margin-bottom: 2rem;
}

.p-service__image p {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgb(15, 23, 77, .9);
    color: #fff;
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    padding: 10px;
}
#service h2{
	color: #182578;
}
/****************************
message
****************************/

#message {
    position: relative;
    padding: 0 16px;
}
#message h2{
	color:#fff;
}
.message-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.message-img {
    background: url("../img/pict_01.jpg") no-repeat center;
    background-size: cover;
    height: 50vh;
    width: 48%;
}

.message-content {
    display: flex;
    justify-content: center;
    padding: 150px 0 0 0;
    width: 45%;
}

.message-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.message-content h3,
.message-content p,
.message-content .message-btn {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    height: 20em;
    letter-spacing: 0.1em;
}

.message-content h3 {
    font-size: 1.5rem;
    line-height: 2.5;
}

_:-ms-lang(x)::-ms-backdrop,
.message-content h3 {
    width: 30%;
}

.message-content p {
    line-height: 3.5;
    margin: 0 0 0 50px;
}

.p-message__name {
    margin-top: 4rem;
    text-align: right;
}

_:-ms-lang(x)::-ms-backdrop,
.message-content p {
    /*IE11用ハック*/
    width: 60%;
}

_:-ms-lang(x)::-ms-backdrop,
.message-content .message-btn {
    /*IE11用ハック*/
    width: 10%;
}

@media screen and (max-width: 1280px) {
    .message-content h3 {
        line-height: 2;
        margin: 0 0 0 10px;
    }

    .message-content p {
        line-height: 3;
        margin: 0 0 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    .message-content p {
        line-height: 2;
    }
}

@media screen and (max-width: 768px) {
    #message {
        padding: 6rem 0;
    }

    .message-img,
    .message-content {
        width: 100%;
    }

    .message-img {
        height: 40vh;
    }

    .message-content {
        padding: 50px 0 0 0;
    }

    .message-content h3,
    .message-content p,
    .message-content .message-btn {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        height: inherit;
        margin: 0 0 50px 0;
    }

    _:-ms-lang(x)::-ms-backdrop,
    .message-content h3,
    _:-ms-lang(x)::-ms-backdrop,
    .message-content p,
    _:-ms-lang(x)::-ms-backdrop,
    .message-content .message-btn {
        /*IE11用ハック*/
        width: 100%;
    }

    .message-content h3 {
        text-align: center;
        font-size: 1.2rem;
    }

    .message-box {
        display: block;
    }

    .message-box .btn {
        padding: 10px;
        display: block;
    }
}

@media screen and (max-width: 430px) {
    .message-img {
        height: 20vh;
    }
}

@media screen and (max-width: 370px) {
    .message-content p br {
        display: none;
    }
}

/****************************
vision
****************************/
#vision {
    text-align: center;
    padding-bottom: 90px;
}

.p-common__title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.p-vision__headline {
    font-weight: bold;
    padding: 15px 0px 10px;
    text-align: center;
    font-size: 1.8rem;
}

.p-vision__body {
    margin-bottom: 3rem;
}

#vision .col-4 p {
    text-align: justify;
}

/****************************
footer
****************************/
footer {
    z-index: 10;
    position: relative;
    color: #fff;
}

footer a {
    color: #fff;
    z-index: 10;
    position: relative;
}

copyright {
    padding: 6px 0;
    display: block;
    text-align: center;
    font-size: 1.2rem;
}

.wave {
    position: relative;
    /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}

canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

#footer .footer-r {
    width: 70%;
    padding: 40px;
    background: #182578;
    color: #fff;
}

#footer .footer-r .map-address {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .footer-r .map-address address {
    font-style: normal;
    margin: 0 0 30px 0;
}

#footer .footer-r .map-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 100px 0;
}

#footer .footer-r .map-area h2 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.3rem;
    width: 10%;
    height: 10em;
    letter-spacing: 0.3em;
    text-align: center;
}

#footer .footer-r .map-address {
    width: 30%;
}

#footer .footer-r .map-block {
    width: 50%;
}

#footer .footer-r .iframe-area {
    position: relative;
    padding-bottom: 51.65%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

#footer .footer-r .iframe-area iframe,
#footer .footer-r .iframe-area object,
#footer .footer-r .iframe-area embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#footer .footer-link {
    font-size: 0.9rem;
    padding: 0 0 0 50px;
}

#footer .footer-link li {
    display: inline-block;
}

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

#footer .footer-link a::after {
    content: "/";
    padding: 0 10px;
}

#footer .footer-link li:last-child a::after {
    content: "";
    padding: 0;
}

#footer .footer-l {
    width: 30%;
    background: #333333;
}

#footer .footer-l .footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #cccccc;
    height: 40vh;
}

#footer .footer-l .footer-contact-area h2 {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    letter-spacing: 0.1em;
}

#footer .footer-l .footer-contact-area a {
    font-size: 1.5rem;
    padding: 0 0 20px 0;
    display: inline-block;
}

#footer #copyright {
    background: #333333;
    color: #ccc;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

#footer #page-top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#footer #page-top span {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-top: 2px solid #182578;
    border-left: 2px solid #182578;
    transform: rotate(45deg);
}

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

    #footer .footer-r,
    #footer .footer-l {
        width: 100%;
    }

    #footer .footer-l .footer-contact,
    #footer #copyright {
        height: inherit;
        padding: 40px 0;
    }

    #footer .footer-r .map-area h2 {
        width: 5%;
    }

    #footer .footer-link {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    #footer .footer-r {
        padding: 80px 30px;
    }

    #footer .footer-r .map-area {
        margin: 0;
    }

    #footer .footer-link {
        display: none;
    }

    #footer .footer-r .map-area h2 {
        width: 100%;
        height: inherit;
        margin: 0 0 50px 0;
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }

    #footer .footer-r .map-address {
        width: 48%;
    }

    #footer #page-top {
        width: 60px;
        height: 60px;
    }
}

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

    #footer .footer-r .map-address,
    #footer .footer-r .map-block {
        width: 100%;
    }

    #footer .footer-r .map-address {
        margin: 0 0 50px 0;
    }
}

/****************************
お問い合わせ
****************************/
#contact {
    padding: 10rem 0;
    margin-top: 10rem;
    background-position: 50% 22%;
}

@media screen and (min-width: 560px) {
    #contact {
        padding: 12rem 0;
        margin-top: 15rem;
        background-position: 50% 50%;
    }
}

.wpcf7 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cform tr {
    display: block;
    margin-bottom: 4.8rem;
}

@media screen and (min-width: 560px) {
    .cform tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.cform th {
    display: block;
    margin-bottom: 1rem;
    text-align: left;
}

@media screen and (min-width: 560px) {
    .cform th {
        margin-bottom: 0;
        margin-right: 1rem;
        max-width: 20rem;
        width: 100%;
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (min-width: 560px) {
    .cform td {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        width: 100%;
        display: block;
    }
}

@media screen and (min-width: 560px) {
    .mw_wp_form {
        max-width: 960px;
        margin: 0 auto;
    }
}

.mw_wp_form {
    margin: auto;
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}

.mw_wp_form table {
    width: 100%;
}

.mw_wp_form [type="submit"] {
    display: inline-block;
    font-size: 1.6rem;
    padding: 10px 30px;
    text-decoration: none;
    background: #182578;
    color: #fff;
    border-bottom: solid 4px #182578;
    border-radius: 3px;
}

.mw_wp_form option,
.mw_wp_form textarea,
.mw_wp_form input[type="text"],
mw_wp_form select,
.mw_wp_form input[type="email"],
.mw_wp_form input[type="search"],
.mw_wp_form input[type="url"] {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    padding: 5px 10px;
    margin-bottom: 5px;
    width: 100%;
}

@media screen and (min-width: 560px) {

    .mw_wp_form option,
    .mw_wp_form textarea,
    .mw_wp_form input[type="text"],
    .mw_wp_form select,
    .mw_wp_form input[type="email"],
    .mw_wp_form input[type="search"],
    .mw_wp_form input[type="url"] {
        width: 100%;
    }
}

.required-srt {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0 0.5em;
    font-size: 1.2rem;
    line-height: 2;
    margin-left: 1rem;
}

@media screen and (min-width: 560px) {
    .required-srt {
        margin-left: 0;
    }
}

.mw_wp_form input[type="submit"] {
    cursor: pointer;
    max-width: 400px;
    background-color: #182578;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: 0.3s;
    border: none;
}

.mw_wp_form input[type="submit"]:hover {
    opacity: 0.6;
}

.submit-btn input:hover {
    background: #fff;
    color: #00142c;
}

.form-btn__inner {
    margin-top: 4rem;
}

.caption {
    color: #999;
    margin-top: 5rem;
}

select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

select::-ms-expand {
    display: block;
}

.submit-btn {
    cursor: pointer;
    max-width: 280px;
    background-color: #ed6d00;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: 0.3s;
    font-weight: 600;
    border: none;
}

.submit-btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 75%);
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite;
}

#wpcf7-modify {
    cursor: pointer;
    max-width: 280px;
    background-color: #fff;
    padding: 24px 32px;
    color: #ff9103 !important;
    border: 1px solid #ff9103 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: 0.3s;
    font-weight: 600;
    border: none;
}

.submit-btn:hover {
    opacity: 0.6;
}

.thanks-block {
    margin-bottom: 16rem;
    text-align: left;
}

.thanks-block h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
    .thanks-block {
        text-align: center;
    }
}

.thanks-text {
    line-height: 2.4;
}

.caption {
    color: #999;
    margin-top: 2rem;
    display: block;
}

.contact-agreement__body {
    text-align: center;
    margin: 2rem 0;
}

.contact-agreement__body a {
    display: inline-block;
    text-decoration: underline;
	color:#fff;
}

@media screen and (min-width: 560px) {
    .contact-agreement__body a {
        margin-bottom: 4rem;
    }
}

.privacy-policy__wrap {
    max-width: 1480px;
    margin: 0 auto 14rem;
}

.privacy-policy__block {
    margin-bottom: 4rem;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.contact-thanks {
    margin-bottom: 12rem;
}

.contact-headline {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.wpcf7-mail-sent-ok {
    display: none !important;
}

.p-works__dl{
	color:#fff;
	padding:5rem 0;
	text-align:center;
}
.p-works__dl .common-link{
	margin:0 auto;
	border:1px solid #fff;
}
.p-works__dl .common-link p{
line-height: 1.6;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
}
.p-works__dl span{
	font-size:1.1rem;
	display:block;
}
.p-works__lead{
	margin-bottom:20px;
	font-size:1.6rem;
}
@media screen and (min-width: 560px) {
.p-common__inner{
	display:flex;
	justify-content:space-between;
}
}