@charset "utf-8";

/*ADOBEフォントちらつき対策ここから*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*ADOBEフォントちらつき対策ここまで*/
*, *::before, *::after{box-sizing: border-box;}
html {font-size: 62.5%; height: 100%; position: relative;}
body {
    color:#1c1c1c;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', 'Roboto', 'Roboto Condensed',
    游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
    margin: 0 auto; line-height: 1.4;position:relative;
}
main{overflow: hidden;}
img {
    max-width: 100%;
}
iframe {max-width: 100%;width: 100%;height: auto;}
a{text-decoration: none;color: #1c1c1c;cursor: pointer;}
button {cursor: pointer;}
/*デバイス切り替えここから*/
@media screen and (max-width: 1024px) {
	.pc {display:none !important;}
}
@media print,screen and (min-width: 1025px) {
	.sp {display:none !important;}
}
.no_scroll {
    overflow: hidden;
}
/*デバイス切り替えここまで*/
/*---------------------------------
| button
---------------------------------*/
.btn {
    font-size: 2.0rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    line-height: 1;
    padding: 20px 0;
    width: 380px;
    text-align: center;
    vertical-align: center;
    transition: 0.3s all;
    /* border-radius: 30px; */
    /* border-bottom: 5px solid #bc0000; */
}
.btn::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*
| button theme
-----------------*/
.btn.white {
    background-color: transparent;
    background: transparent;
    border: #fff solid 2px;
}
.btn.blue {
    background: transparent;
    border: #fff solid 2px;
    background-color: #007EC1;
}
/*
| button hover
-----------------*/
.btn:hover {
    background-color: #bc0000;
    color: #fff;
    border: none;
    transition: 0.3s all;
}
.btn.white:hover {
    background-color: #46add9;
    color: #fff;
    border: #46add9 solid 2px;
}
/*---------------------------------
| inner : section,header等の共通inner
---------------------------------*/
.inner {
    position: relative;
    max-width: 1200px;
    padding: 20px 0;
    margin: 0 auto;
    z-index: 2;
}
.inner.trim {
    padding-top: 0;
    padding-bottom: 0;
}
.inner.trim-top {
    padding-top: 0;
}
.inner.trim-bottom {
    padding-bottom: 0;
}
.inner.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
    .inner{
        /* width: 96%; */
        width: 90%;
        margin:0 auto;
    }
}
/*---------------------------------
| content
---------------------------------*/
.content {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: calc(1200px / 2);
}
.content,
.content > .sub {
    color: #ff001a;
}
.content > .title {
    margin-bottom: 60px;
    font-weight: 700;
    text-align: left;
}
.content > .sub {
    font-size: 4.0rem;
    font-weight: 700;
    text-align: left;
}
.content > .text {
    margin-top: 40px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    line-height: 2;
}
.content.white,
.content.white > .sub,
.content.white > .text {
    color: #fff;
}

@media screen and (max-width:1024px) {
    .content > .title {
        margin-bottom: 40px;
    }
    .content > .sub {
        font-size: 2.8rem;
    }
    .content > .text {
        margin-top: 20px;
        font-size:1.6rem;
    }
}
/*---------------------------------
| oval : セクションの縁を円弧型にする
|  - oval-top : 上部を円弧にする
|  - oval-bottom : 下部を円弧にする
|
|  [use example]
|     <section>
|        <div class="oval oval-top"></div>
|     </section
---------------------------------*/
.oval {
    position: absolute;
    left: 50%;
    width: 130vw;
    height: 100px;
    background: #transparent;
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 1;
}
.oval::before {
    content: "";
    display: block;
    width: 100%;
    height: 500px;
    background: #fff;
    border-radius: 50%;
}
.oval.oval-top {
    top: -100px;
}
.oval.oval-bottom {
    bottom: -100px;
    transform: translateX(-50%) rotateZ(180deg);
}
@media screen and (max-width:1024px) {
    .oval::before {
        height: 300px;
    }
}
/*---------------------------------
| section
---------------------------------*/
section {
    position: relative;
    padding: 60px 0;
}
section.trim-bottom {
    padding-bottom: 0;
}
/*
| last section
-----------------*/
section.lastsec {
    margin-bottom: 30px;
}
/*
| section theme
-----------------*/
section.linetop {
    border-top: #bc0000 solid 5px;
}
section.linebottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 320px;
    height: 11px;
    background-image: url(../img/top/job_line.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(-50%);
}
section.red {
    background-color: #a30008;
}
section.gray {
    background-color: #F1F3F6;
}
section.gray_center::after {
    content: '';
    position:absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: #F1F3F6;
    transform: translateY(-50%);
    z-index: -1;
}
section.gray_bottom {
    overflow: hidden;
}
section.gray_bottom::after {
    content: '';
    position:absolute;
    top: 75%;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90%;
    background-color: #F1F3F6;
    z-index: -1;
}
@media screen and (max-width:1024px) {
    section.gray_bottom::after {
        top: 55%;
    }
}
section.blue {
    background-color: #eef6fa;
}
section.cyan {
    background-color: #46add9;
}
section.gra {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2c80be+0,8ce0d3+100 */
    background: #2c80be; /* Old browsers */
    background: -moz-linear-gradient(left, #2c80be 0%, #8ce0d3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #2c80be 0%,#8ce0d3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #2c80be 0%,#8ce0d3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c80be', endColorstr='#8ce0d3',GradientType=1 ); /* IE6-9 */
}
/*---------------------------------
| section title
---------------------------------*/
section .title {
    text-align: center;
}
section .title .heading {
    font-size: 5.0rem;
    font-weight: 700;
    color: #ff001a;
}
section .title .heading > span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff001a;
}
section .title p {
    display: block;
    margin-top: 40px;
    font-size: 1.8rem;
    line-height: 1.7;
    text-align: center;
}
section .title .btn {
    margin: 20px auto 0;
}
/*
| title theme
-----------------*/
section .title.title-white .heading,
section .title.title-white .heading > span,
section .title.title-white p {
    color: #fff;
}
@media screen and (max-width:1024px) {
    section .title .heading {
        font-size: 4.0rem;
    }
}
/*---------------------------------
| under_mv : 下層ページMV
---------------------------------*/
.under_mv {
    height: 280px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 95px;
    background-size: cover;
    background-repeat: no-repeat;
}
.under_mv h2 {
    width: 1200px;
    margin: 0 auto;
    letter-spacing: 10px;
    font-family: 'Noto Serif JP';
    font-size: 6.0rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.under_mv span {
    display: block;
    margin-top: 4px;
    letter-spacing: normal;
    font-family: 'Noto Serif JP';
    font-size: 3.0rem;
}
@media screen and (max-width:1024px) {
    .under_mv {
        height: 210px;
        margin-top: 70px;
        background-position: center;
    }
    .under_mv h2 {
        width: 100%;
        padding-left: 20px;
        font-size: 5.0rem;
    }
    .under_mv span {
        font-size: 1.6rem;
    }
}
/*---------------------------------
| arrow : セクションに下向き矢印を付与する
|  [use example]
|     <section class="arrow">
|     </section
---------------------------------*/
.arrow {
    position: relative;
    margin-bottom: 0;
}
.arrow::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 50px solid #fff;
    z-index: 2;
}
/*
| arrow theme
-----------------*/
.arrow.blue::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 50px solid #eef6fa;
    z-index: 2;
}
.arrow.cyan::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 50px solid #46add9;
    z-index: 2;
}
/*---------------------------------
| case : 事例リスト用共通部品
|        (サイト固有の汎用部品)
---------------------------------*/
.list_title {
    max-width: 100%;
    padding: 20px 30px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 6px 6px 0px 0px #95C9E6;
    background-color: #EEF0F5;
    margin-bottom: 40px;
}
.case_study .case {
    position: relative;
    margin-top: 50px;
}
.case_study .case h4 {
    max-width: 100%;
    padding: 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #1978c1; /* Old browsers */
    background: -moz-linear-gradient(left,  #1978c1 0%, #70dff0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #1978c1 0%,#70dff0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #1978c1 0%,#70dff0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1978c1', endColorstr='#70dff0',GradientType=1 ); /* IE6-9 */
    box-shadow: 6px 6px 0px 0px #2a2d72 ;
    margin-bottom: 40px;
}
.case_study .case h4::before {
    content: '';
    position: relative;
    top: -8px;
    display: inline-block;
    width: 30px;
    height: 1px;
    margin-right: 4px;
    background-color: #fff;
}
.case_study .case ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.case_study .case.others ul {
    margin-bottom: 0;
}
.case_study .case ul li {
    width: calc((1200px / 3) - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
}
.case_study .case ul li h5 {
    position: relative;
    padding: 30px 20px;
    font-size: 1.8rem;
    background-color: #fff;
    border-bottom: #46add9 solid 5px;
}
@media screen and (max-width:1024px) {
    .case_study .case ul {
        margin-bottom: 0;
    }
    .case_study .case ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .case_study .case ul li img {
        width: 100%;
    }
}
