@charset "UTF-8";

/* ↓ 色とテキストの定義 ------------------------*/
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media screen and (min-width: 1400px) {
    html {
        font-size: 18px;
    }
}

@media screen and (max-width: 540px) {
    html {
        font-size: 3.3vw;
        /*1L30文字*/
    }
}

body {
    color: #333;
    letter-spacing: 0.1rem;
    line-height: 1.7;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-family: 'Roboto', "Noto Sans CJK JP", sans-serif;
    font-weight: 400;
    /*bold700 regular400 light 300*/
    position: relative;
    width: 100%;
}

a {
    color: #111;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: #0083ce;
    text-decoration: none;
    transition: 0.2s ease;
}

.mincho {
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.marugo {
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

.marugo {
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

.yuGothic {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 500;
}

.Calibri {
    font-family: calibri, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.3rem;
    letter-spacing: 0rem;
}

/* ↓ /フォントサイズ ------------------------*/
.fontSmall {
    font-size: 0.8rem;
}

/* ↓ 遷移時フェードイン/アウト ------------------------*/
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -ms- transition: opacity .2s ease;
    -moz- transition: opacity .2s ease;
    transition: opacity .2s ease;
}

body.transitionFadeout::after {
    opacity: 1;
}

/* ↓ 共通スタイル ------------------------*/
.rounded {
    border-radius: 0.2rem !important;
}

/*imgタグトリミング*/
.object-fit-img {
    object-fit: cover;
    font-family: 'object-fit: contain;'
}

/*画像のマウスオーバー*/
a img {
    opacity: 1;
    transition: 0.2s ease;
}

a img:hover {
    opacity: 0.5;
    transition: 0.2s ease;
}

/* ↓ 横幅 ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
    width: 1024px;
    max-width: 98%;
    margin: 0 auto;
}

.pcWidth-l {
    width: 960px;
    max-width: 98%;
    margin: 0 auto;
}

.pcWidth-m {
    width: 900px;
    max-width: 98%;
    margin: 0 auto;
}

.pcWidth-s {
    width: 760px;
    max-width: 98%;
    margin: 0 auto;
}

@media screen and (min-width: 1400px) {
    .pcWidth-xl {
        width: 1216px;
    }

    .pcWidth-l {
        width: 1152px;
    }

    .pcWidth-m {
        width: 1080px;
    }

    .pcWidth-s {
        width: 912px;
    }
}

/*spの横幅*/
@media screen and (max-width: 540px) {
    .spWidth-max {
        max-width: 100%;
    }

    .spWidth-l {
        max-width: 98%;
    }

    .spWidth-m {
        max-width: 88%;
    }

    .spWidth-s {
        max-width: 78%;
    }

}

/*セクションと見出しの上下のマージン*/
.secOuter-s {
    padding: 4rem 0px;
}

.secOuter-m {
    padding: 5rem 0px;
}

.secOuter-l {
    padding: 7rem 0px;
}

@media screen and (max-width: 540px) {
    .secOuter-s {
        padding: 3rem 0px;
    }

    .secOuter-m {
        padding: 4rem 0px;
    }

    .secOuter-l {
        padding: 6rem 0px;
    }
}

.headline-l {
    margin-bottom: 5rem;
}

.headline-m {
    margin-bottom: 3rem;
}

@media screen and (max-width: 540px) {
    .headline-l {
        margin-bottom: 3rem;
    }

    .headline-m {
        margin-bottom: 2rem;
    }
}

/* ↓ ボタン ------------------------*/
.btn {
    display: inline-block;
    padding: 0.5rem 5rem 0.5rem 3rem;
    border: 1px solid;
    border-color: #006daa;
    color: #006daa;
    transition: 0.3s ease;
    position: relative;
}

.btn_back {
    display: inline-block;
    padding: 0.5rem 3rem 0.5rem 5rem;
    border: 1px solid;
    border-color: #006daa;
    color: #006daa;
    transition: 0.3s ease;
    position: relative;
}



.btn::before {
    position: absolute;
    content: "";
    bottom: 1.4rem;
    right: 2rem;
    width: 30px;
    height: 1px;
    background: #006daa;
    transition: 0.3s ease;
}

.btn_back::before {
    position: absolute;
    content: "";
    bottom: 1.4rem;
    left: 2rem;
    width: 30px;
    height: 1px;
    background: #006daa;
    transition: 0.3s ease;
}

@media screen and (max-width: 540px) {
    .btn::before {
        bottom: 1.3rem;
        width: 25px;
    }

    .btn_back::before {
        bottom: 1.3rem;
        width: 25px;
    }
}

.btn_back::after {
    position: absolute;
    content: "";
    bottom: 1.6rem;
    left: 1.9rem;
    width: 10px;
    height: 1px;
    background: #006daa;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 0.3s ease;
}

.btn::after {
    position: absolute;
    content: "";
    bottom: 1.6rem;
    right: 1.9rem;
    width: 10px;
    height: 1px;
    background: #006daa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.3s ease;
}


.btn:hover:before,
.btn:hover:after,
.btn_back:hover:before,
.btn_back:hover:after {
    background-color: #fff;
    transition: 0.3s ease;
}

.btn:hover,
.btn_back:hover {
    background-color: #006daa;
    transition: 0.3s ease;
    color: #fff;
}


/*ボタンエリア*/
.btnArea {
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 540px) {
    .btnArea {
        margin-top: 2rem;
    }
}

.btnArea--left {
    text-align: left;
}

.btnText {
    white-space: nowrap;
}

/* ↓ ヘッダー ------------------------*/
.gnavOuter {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.5s ease;
    z-index: 10;
}

/*↑背景固定の場合はabsolute、追従の場合はfixedに変更*/

.pcHeaderArea {
    display: block;
}

.spHeaderArea {
    display: none;
}

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

    .spHeaderArea {
        display: block;
    }

}


.gnavInner {}

.bgTopmost {
    background: none;
    box-shadow: none;
    transition: all 0.5s ease;
}

.gnavInner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gNavLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
}

@media screen and (max-width: 800px) {
    .spLogo {
        position: absolute;
        top: 1.3rem;
        left: 1.3rem;
        z-index: 10000;
    }

    .spLogo {
        width: 90px;
    }

    .spLogo img {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .spLogo {
        top: 1.7rem;
        left: 1.7rem;
    }

    .spLogo {
        width: 80px;
    }
}

.gNavLeft img {
    width: 100px;
}

.gNavRight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gNavRightItem {
    text-align: center;
    padding: 0 1.5rem;
}

.gNavRightItem .Calibri {
    line-height: 1.5rem;
}

.fixedNav {
    position: fixed;
    z-index: 10;
    top: 1.8rem;
    right: 6.5rem;
}

.menuArea {
    width: 100%;
}

.gNavRightMail {
    padding: 0;
    transition: 0.3s ease;
}

.gNavRightMail img:hover {
    opacity: 1;
}

.gNavRightMail:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

.gNavRightItem .headMailIcon {
    height: 4.2rem;
    width: 5.2rem;
    background-color: #0083CE;
    padding: 0;
    margin-left: 1.4rem;
    position: relative;
}

.headMailIcon img {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 45%;
}

.headMailIcon p {
    letter-spacing: 0.005rem;
    font-size: 0.7rem;
    color: #fff;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -80%);
    white-space: nowrap;
}



/* ↓ パンくずリスト ------------------------*/
.bread {
    margin-top: -0.5rem;
    color: darkgray;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    height: 1rem;
}

.bread div {
    max-width: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.bread a {
    color: darkgray;
}

/* ↓ ドロワーメニューカスタマイズ ------------------------*/
.fat-nav__wrapper .Calibri {
    font-size: 1.7rem;
}

.fat-nav li {
    list-style-type: none;
    text-align: center;
    padding: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
    width: 30%;
    margin: auto;
}

/*ホームアイコンを追加*/
.navHome span {
    position: relative;
}

.navHome span:before {
    position: absolute;
    top: 0rem;
    left: -2rem;
    content: "";
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    background: url(../img/home.svg) no-repeat;
    background-size: contain;
}

@media screen and (max-width: 1024px) {
    .hamburger {
        max-height: 66px;
    }
}


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

.section {
    width: 100%;
}

/* ↓ セクション ｜ トップ-FV ------------------------*/
.fv {
    width: 100%;
    height: 120vh;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    .fv {
        height: 100vh;
        max-height: 1200px;
    }
}

.fvWave {
    overflow: hidden;
    width: 110%;
    max-height: 60vh;
    position: absolute;
    bottom: 0rem;
    left: -2rem;
    z-index: -10;
}

.fvWave img {
    width: 100%;
    object-fit: cover;
}

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

    .fvWave {
        max-height: 40vh;
    }

    .fvWave img {
        height: 100%;
    }
}

/* FVアニメーション実装------------------------*/
.fvWaveContainer li {
    display: inline-block;
}

.fvWave1 {
    -webkit-animation: waveanime1 1s ease-in-out infinite alternate;
    -webkit-animation-duration: 1.5s;
    -ms-animation: waveanime1 1s ease-in-out infinite alternate;
    -ms-animation: 1.5s;
}

.fvWave2 {
    -webkit-animation: waveanime2 1s ease-in-out infinite alternate;
    -webkit-animation-duration: 1.8s;
    -ms-animation: waveanime2 1s ease-in-out infinite alternate;
    -ms-animation: 1.8s;
}

.fvWave3 {
    -webkit-animation: waveanime3 1s ease-in-out infinite alternate;
    -webkit-animation-duration: 2.5s;
    -ms-animation: waveanime3 1s ease-in-out infinite alternate;
    -ms-animation: 2.5s;
}


@-webkit-keyframes waveanime1 {
    0% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);

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

@media screen and (max-width: 540px) {
    @-webkit-keyframes waveanime1 {
        0% {
            -webkit-transform: translateY(-6px);
            -ms-transform: translateY(-6px);

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

@-webkit-keyframes waveanime2 {
    0% {
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
    }

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

@-webkit-keyframes waveanime3 {
    0% {
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
    }

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

.people-stage {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    opacity: 1;
    z-index: 30;
}

.people-stage > .person {
    position: absolute;
}

.person img {
    width: 10vw;
    max-width: 120px;
    opacity: 0.6;
}

@media screen and (max-width: 1100px) {
    .people-stage {
        height: 20%;
        bottom: 10%;
    }
}

@media screen and (max-width: 540px) {
    .people-stage {
        max-width: 100%;
        bottom: 0;
        height: 30vh;
    }

    .person img {
        width: 20vw;
    }
}

/* FVアニメーション実装ここまで------------------------*/



.fvLogoWrap {
    position: absolute;
    top: 35%;
    left: 15%;
    transform: translate(-15%, -45%);
}

@media screen and (max-width: 540px) {
    .fvLogoWrap {
        width: 70vw;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -42%);
    }
}

.fvLogo {
    width: 27vw;
    max-width: 380px;
    margin: auto;
}

@media screen and (max-width: 540px) {
    .fvLogo {
        width: 70vw;
    }
}

.fvLogo img {
    width: 100%;
}

@media screen and (min-width: 540px) {
    .fvCatch {
        margin-top: -0.75rem;
    }
}

@media screen and (min-width: 1100px) {
    .fvCatch {
        margin-top: -1.6rem;
    }
}

.fvCatch {
    text-align: center;
}

.fvCatch .Calibri {
    font-size: 3vw;
}

.fvSubCatch {
    font-size: 1.2vw;
}

@media screen and (min-width: 1400px) {
    .fvCatch .Calibri {
        font-size: 2.4rem;
    }

    .fvSubCatch {
        font-size: 1rem;
    }
}

@media screen and (max-width: 540px) {
    .fvCatch .Calibri {
        font-size: 7vw;
    }

    .fvSubCatch {
        font-size: 4vw;
    }
}

.lineDeepBlue {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.lineDeepBlue img {
    width: 100%;
}

/* ↓ セクション ｜ トップ-メッセージ ------------------------*/


.topMessage {
    width: 100%;
    position: relative;
    background-image: url(../img/back_deepBlue.png);
    background-size: cover;
    z-index: -10;
}


.messageFish-stage {
    overflow-x: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -20;
}

.messageFish-stage > .person {
    position: absolute;
}

@media screen and (max-width: 1100px) {
    .messageFish-stage {
        height: 95%;
    }
}

@media screen and (max-width: 540px) {
    .messageFish-stage {
        max-width: 100%;
        bottom: 0;
    }

}

.bubble {
    position: absolute;
    bottom: 32%;
    right: 16%;
    z-index: -20;
}

.bubble img {
    width: 10vw;
}

@media screen and (max-width: 540px) {
    .bubble {
        bottom: 20%;
        right: 10%;
    }

    .bubble img {
        width: 20vw;
    }
}



.topMessageCatch {
    padding-top: 10rem;
    text-align: center;
    padding-bottom: 8rem;
    font-size: 1.3rem;
    color: #caebfb;
    line-height: 4rem;
}

@media screen and (max-width: 540px) {
    .topMessageCatch {
        padding-top: 8rem;
    }
}


.lineMix {
    margin-bottom:
        width: 100%;
}

.lineMix img {
    width: 100%;
}

/*トップニュース*/
.top_news {
    padding: 1rem 4rem;
    max-width: 800px;
    margin: auto;
    width: 90%;
    background-color: #F7F7F7;
    border-radius: 10px;
    margin-top: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

@media screen and (max-width: 540px) {
    .top_news {
        padding: 1rem 2rem;
    }
}


.top_news_head {
    font-size: 3.75rem;
}

.top_news_head p span {
    font-size: 0.9rem;
    color: #8B8A8B;
    margin-left: 1rem;
}

.top_news_list li {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.top_news_list li:last-child {
    border-bottom: none;
}

.top_news_list li .info {
    display: flex;
    align-items: center;
}

.top_news_list li .info .day {
    color: #8B8A8B;
    font-size: 0.9rem;
}

.top_news_list li .info .category {
    color: #fff;
    font-size: 0.8rem;
    margin-left: 1rem;
    background-color: none;
}


.category a .category_news {
    background-color: #FF9D3E;
    padding: 0rem 1rem;
    border-radius: 1rem;
    color: #fff;
}

.category a .category_recruit {
    background-color: #FF7486;
    padding: 0rem 1rem;
    border-radius: 1rem;
    color: #fff;
}

.category a .category_media {
    background-color: #00ACE7;
    padding: 0rem 1rem;
    border-radius: 1rem;
    color: #fff;
}

.category_none {
    background-color: #efefef;
    padding: 0rem 1rem;
    border-radius: 1rem;
    color: #666666;
}

.category_head {
    font-size: 1.75rem;
    text-align: left;
    font-weight: bold;
    margin-bottom: 2.75rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

.category_head.newshead {
    border-left: 6px solid #FF9D3E;
    padding-left: 1rem;
}

.category_head.mediahead {
    border-left: 6px solid #00ACE7;
    padding-left: 1rem;
}

.category_head.recruithead {
    border-left: 6px solid #FF7486;
    padding-left: 1rem;
}


.top_news_list li .title {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.top_news_btn {
    transform: scale(0.9);
}


/* ↓ セクション ｜ トップ-プロダクト&受託 ------------------------*/

.topService {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.backPattarn {
    position: absolute;
    z-index: -10;
}


/* ↓ 背景の水玉パターン-------*/

.topServiceBack1 {
    top: 5%;
    right: -5%;
}

.topServiceBack1 img {
    width: 27vw;
    max-width: 580px;
}

@media screen and (max-width: 540px) {
    .topServiceBack1 {
        top: 17%;
        right: -10%;
    }

    .topServiceBack1 img {
        width: 50vw;
    }
}


.topServiceBack2 {
    top: 40%;
    left: -3%;

}

.topServiceBack2 img {
    width: 25vw;
    max-width: 500px;
}

@media screen and (max-width: 540px) {
    .topServiceBack2 {
        top: 48%;
        left: -5%;
    }

    .topServiceBack2 img {
        width: 50vw;
    }
}

.topServiceBack3 {
    bottom: 23%;
    right: -5%;

}

.topServiceBack3 img {
    width: 35vw;
    max-width: 580px;
}

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

    .topServiceBack3 {
        bottom: 21%;
        right: -5%;

    }

    .topServiceBack3 img {
        width: 50vw;
    }
}

/* ↑ 背景の水玉パターンここまで-------*/


.serviceFlex {
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1400px;
    padding: 10rem 8rem 7rem;
}

.topProductCatch {
    width: 40%;
}

@media screen and (max-width: 540px) {
    .serviceFlex {
        flex-flow: row-reverse;
        flex-wrap: wrap;
        padding: 4rem 3rem;

    }

    .topProductCatch {
        width: 100%;
    }
}


.topPrducutHead {
    font-size: 4.5rem;
    line-height: 3.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

@media screen and (max-width: 800px) {
    .topPrducutHead {
        font-size: 4rem;
    }
}

.topCatchBr {
    display: none;
}

@media screen and (min-width: 1200px) {
    .catchNowrap {
        white-space: nowrap;
    }

    .topCatchBr {
        display: block;
    }
}

.topPrducutSentence {
    margin-bottom: 4rem;
}

@media screen and (max-width: 540px) {
    .topPrducutSentence {
        margin-bottom: 0rem;
        font-size: 1.2rem;
    }
}

.topPrducutHeadSmall {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

    .topPrducutHeadSmall {
        font-size: 1.6vw;
    }
}

@media screen and (max-width: 540px) {
    .topPrducutHead {
        font-size: 14vw;
        line-height: 12vw;
        margin-bottom: 2rem;
    }

    .topPrducutHeadSmall {
        font-size: 1.25rem;
    }
}

.topServiceImg {
    width: 50%;
    margin-top: -9rem;
    text-align: center;
}

.topServiceImg img {
    width: 100%;
    max-width: 700px;
}

@media screen and (max-height: 920px) {
    .topServiceImg {
        width: 50%;
    }
}


@media screen and (max-width: 800px) {
    .topServiceImg {
        width: 80%;
    }
}

@media screen and (max-width: 540px) {
    .topServiceImg {
        width: 100%;
        margin-top: 4rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .topServiceImg img {
        min-width: initial;
    }
}

@media screen and (max-width: 540px) {
    .contract {
        flex-flow: column-reverse;
    }
}



/* ↓ セクション ｜ トップ-プロダクト&受託 ------------------------*/

.secLine {
    width: 100%;
}

.secLine img {
    width: 100%;
}

#topPerformanceSec {
    position: relative;
}

.performanceSec {
    background-color: #e1f2fa;
    padding: 0rem 3rem 10rem;
    width: 100%;
}

@media screen and (max-width: 540px) {
    .performanceSec {
        padding: 0rem 2rem 10rem;
    }
}

.sectionTitleWrap {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

@media screen and (max-width: 540px) {
    .sectionTitleWrap {
        padding-top: 3rem;
    }

}

.sectionTitleIcon,
.sectionTitle,
.sectionSubTitle {
    margin: auto;
    text-align: center;
}

.sectionTitleIcon {
    width: 6rem;
    margin-bottom: 1.5rem;
}

.sectionTitleIcon img {
    width: 100%;
}

.sectionTitle {
    font-size: 2.5rem;
    color: #00ace7;
}

.sectionSubTitle {
    font-weight: 600;
}

.performanceSecFlex {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 100%;
    max-width: 1600px;
    flex-wrap: wrap;

}

.performanceSecFlex a {
    width: 25%;
}

@media screen and (max-width: 800px) {
    .performanceSecFlex a {
        width: 50%;
    }
}

@media screen and (max-width: 540px) {
    .performanceSecFlex a {
        width: 100%;
    }
}

.performanceSecFlex a img {
    width: 100%;
}


.performanceSecFlex a:hover {
    transform: scale(1.05);
    opacity: 1;
    color: #111;
}

.performanceSecFlex a img:hover {
    opacity: 1;
}


.secLineUnder {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.secLineUnder img {
    width: 100%;
}

.secContent {
    padding: 0rem 3rem 3rem;
    width: 100%;
    max-width: 960px;
    margin: auto;
}

.secSentence {
    text-align: left;
}

.topRecruitSecSentence {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 540px) {
    .secSentence {
        line-height: 2rem;
        font-size: 1.1rem;
        text-align: left;
    }

}

.secLineFooter {
    width: 100%;

}

.secLineFooter img {
    width: 100%;
}

/* ↓ セクション ｜ 固定ページ共通 ------------------------*/

.pageTitle {
    height: auto;
    position: relative;
}

.pageTitle img {
    position: absolute;
    width: 23rem;
}

@media screen and (max-width: 1150px) {
    .pageTitle img {
        width: 20rem;
    }

}

.pageTitle .Calibri {
    position: absolute;
    top: 6.5rem;
    font-size: 4.8rem;
    padding-left: 5rem;
}

.pageSubTitle {
    position: absolute;
    top: 13rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding-left: 5.2rem;
}


@media screen and (max-width: 1150px) {
    .pageTitle .Calibri {
        padding-left: 2rem;
    }

    .pageSubTitle {
        padding-left: 2.2rem;
    }

}


/* ↓ セクション ｜ 受託ページ ------------------------*/

.contractFv {
    position: relative;
    height: 50rem;
    width: 100%;
    max-width: 1700px;
    margin: auto;
}


/* ↓ 背景の水玉パターン-------*/

.contractService .topServiceBack1 {
    top: 0%;
    right: -5%;
}

.contractService .topServiceBack1 img {
    width: 27vw;
    max-width: 580px;
}

@media screen and (max-width: 540px) {
    .contractService .topServiceBack1 {
        top: 2%;
        right: -10%;
    }

    .contractService .topServiceBack1 img {
        width: 50vw;
    }
}


.contractService .topServiceBack2 {
    top: 17%;
    left: -3%;

}

.contractService .topServiceBack2 img {
    width: 35vw;
    max-width: 500px;
}

@media screen and (max-width: 540px) {
    .contractService .topServiceBack2 {
        top: 22%;
        left: -5%;
    }

    .contractService .topServiceBack2 img {
        width: 50vw;
    }
}

.contractService .topServiceBack3 {
    bottom: 46%;
    right: -5%;

}

.contractService .topServiceBack3 img {
    width: 40vw;
    max-width: 580px;
}

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

    .contractService .topServiceBack3 {
        bottom: 47%;
        right: -5%;

    }

    .contractService .topServiceBack3 img {
        width: 60vw;
    }
}


.contractService .topServiceBack4 {
    bottom: 22%;
    left: -10%;

}

.contractService .topServiceBack4 img {
    width: 40vw;
    max-width: 580px;
}

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

    .contractService .topServiceBack4 {
        bottom: 20%;
        left: 50%;
    }

    .contractService .topServiceBack4 img {
        width: 70vw;
    }
}

.contractService .topServiceBack5 {
    bottom: 0%;
    right: -5%;

}

.contractService .topServiceBack5 img {
    width: 27vw;
    max-width: 580px;
}

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

    .contractService .topServiceBack5 {
        right: 65%;

    }

    .contractService .topServiceBack5 img {
        width: 50vw;
    }
}


/* ↑ 背景の水玉パターンここまで-------*/


.contractFv img {
    position: absolute;
    max-width: 1200px;
    bottom: 5%;
    right: 3rem;
    width: 80%;
}


@media screen and (max-width: 1150px) {
    .contractFv {
        height: 45rem;
    }
}

@media screen and (max-width: 768px) {
    .contractFv {
        height: 40rem;
    }
}

@media screen and (max-width: 540px) {
    .contractFv {
        position: static;
        padding-top: 19rem;
        text-align: center;
        height: auto;
        min-width: initial;
        margin-bottom: 3rem;
    }

    .contractFv img {
        position: static;
        width: 90%;
    }
}

.pageLine {
    width: 100%;
}

.pageLine img {
    width: 100%;
}


.contractFlex {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    padding: 6rem 5rem 5rem;
}

@media screen and (max-height: 920px) {
    .contractFlex {
        padding: 6rem 8rem 7rem;
    }
}

@media screen and (max-width: 540px) {
    .contractFlex {
        flex-wrap: wrap;
        padding: 4rem 3rem;
    }

    .FlexEve {
        flex-flow: column-reverse;
    }
}

.contractHeadSmall {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

@media screen and (max-width: 540px) {
    .contractHeadSmall {
        margin-bottom: 0.5rem;
    }

}

.contructPrducutHead {
    font-size: 3.8rem;
    line-height: 3.8rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 1100px) {
    .contructPrducutHead {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
}


@media screen and (max-width: 800px) {
    .contructPrducutHead {
        font-size: 2.75rem;
        line-height: 2.75rem;
    }
}

@media screen and (max-width: 540px) {
    .contructPrducutHead {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }

}


.contractSentence {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

@media screen and (max-width: 800px) {
    .contractSentence {
        font-size: 1rem;
    }

}

@media screen and (max-width: 540px) {
    .contractSentence {
        font-size: 1.3rem;
    }

}

.contractSentenceLine {
    width: 4rem;
    height: 2px;
    background-color: #00ace7;
    margin-bottom: 1.4rem;
}

.contractSubSentence {
    font-size: 0.8rem;
    line-height: 1.5rem;
}

@media screen and (max-width: 540px) {
    .contractSubSentence {
        font-size: 1.1rem;
        line-height: 2rem;
    }
}

.contractFlex .topServiceImg img {
    width: 80%;
}

.topContractImg {
    margin-top: -7rem;
}

@media screen and (max-width: 540px) {
    .topContractImg {
        margin-top: 4rem;
    }
}

.contractImg {
    margin-top: 2rem;
}

@media screen and (max-height: 920px) {
    .contractImg {
        margin-top: 0rem;
    }
}

@media screen and (max-width: 540px) {
    .contractImg {
        margin-top: 2rem;
    }
}

.topPrducutHead span {
    font-size: 5.4rem;
}

@media screen and (max-width: 800px) {
    .topPrducutHead span {
        font-size: 4.2rem;
    }
}



/* ↓ ページ ｜ 実績 ------------------------*/


.pageWrap {
    padding: 15rem 0 0;
}

.pageSecBack {
    position: relative;
}

.pageSecLine {
    position: absolute;
    bottom: 0;
}

.pageSecBackBlue {
    background-color: #E1F2FA;
}

.pageSec {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 10rem 2rem;
}

@media screen and (max-width: 540px) {
    .pageSec {
        padding: 5rem 2rem 3rem;
    }
}

.secTitleWrap {
    margin-bottom: 2.5rem;
}

.pageSecContents {
    margin-bottom: 5rem;
}

@media screen and (max-width: 540px) {
    .pageSecContents {
        margin-bottom: 4rem;
    }
}

.worksSec {
    padding-bottom: 4rem;
}

.workSecIcon {
    margin-bottom: 2rem;
}

.workSecIcon img {
    width: auto;
    height: auto;
    max-width: 6rem;
    max-height: 6rem;
}

.workSecTitle {
    font-size: 3rem;
}

.workSecTitleLine {
    margin: auto;
    width: 120px;
    height: 2px;
    background-color: #111;
    margin-bottom: 0.75rem;
}

.workSecSubTitle {
    font-size: 1.3rem;
}

.secParagraphNameFlex {
    display: flex;
    text-align: left;
    margin-bottom: 2rem;
}

.secParagraphNameIcon {
    margin-right: 1rem;
}

.secParagraphNameIcon img {
    width: 1.5rem;
}

.secParagraphName .cat {
    color: #00ACE7;
}

.secParagraphName .name {
    font-size: 1.4rem;
    line-height: 1.7rem;
}

.secSentence {
    text-align: left;
}

@media screen and (max-width: 540px) {
    .secSentence {
        font-size: 1.1rem;
        line-height: 2rem;
    }
}

/* ↓ ページ ｜ 採用情報------------------------*/


.recruitTopLine {
    padding-top: 14rem;
}

@media screen and (min-width: 1500px) {
    .recruitTopLine {
        padding-top: 12rem;
    }
}


.recruitMesssage {
    line-height: 2.3rem;
    font-size: 1.1rem;
    width: 80vw;
    margin: auto;
    max-width: 960px;
}

@media screen and (max-width: 540px) {
    .recruitMesssage {
        font-size: 1.2rem;
        line-height: 2.3rem;
    }
}

.recruitMesssageHead {
    font-size: 1.6rem;
    margin-bottom: 3rem;

}

@media screen and (max-width: 540px) {
    .recruitMesssageHead {
        font-size: 1.5rem;
    }
}


.recruitMesssageSentence {
    text-align: left;
}

.jobName {
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 1rem;
}

.jobName p {
    display: inline-block;
    border-bottom: 2px solid;
    border-color: #00ACE7;
}

.jobsentence {
    text-align: left;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 540px) {
    .jobsentence {
        font-size: 1.1rem;
        line-height: 2rem;
    }
}


/* ↓ 表------------------------*/

.secTable {
    width: 100%;
    text-align: left;
    border: 1px solid;
    border-color: #787878;
}

@media screen and (max-width: 540px) {
    .secTable {
        font-size: 1.1rem;
        line-height: 2rem;
    }
}


.secTable table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.secTable tr {
    border-top: 1px solid;
    border-color: #787878;
    width: 100%;
}

.secTable tr:first-child {
    border-top: 0px;
}

.secTable th {
    background-color: #E1F2FA;
    border-right: 1px solid;
    border-color: #787878;
    width: 20%;
    padding: 1.3rem 1rem;
    font-weight: 400;
}

.secTable td {
    padding: 1.3rem 1rem;
    width: 80%;
}

@media screen and (max-width: 540px) {
    .secTable th {
        width: 30%;
    }

    .secTable td {
        width: 70%;
    }
}



@media screen and (max-width: 540px) {
    .secTable td p {
        margin-top: 0.75rem;
        line-height: 1.5rem;
    }

    .secTable td p:first-child {
        margin-top: 0rem;
    }
}


.oneJob {
    margin-bottom: 4rem;
}

.oneJob:last-child {
    margin-bottom: 0rem;
}

/* ↓ コンタクト------------------------*/
.contactSentence {
    display: inline-block;
    margin: auto;
}


.formArea {
    margin-bottom: 5rem;
}

@media screen and (max-width: 540px) {
    .formArea {
        margin-bottom: 2rem;
    }
}


.contactXFlex {
    display: flex;
    widows: 100%;
    margin-bottom: 2rem;
}



.formLeft {
    text-align: left;
    width: 15%;
    margin-right: 5%;
}


@media screen and (max-width: 540px) {
    .formLeft {
        font-size: 1.1rem;
        line-height: 2rem;
    }

    .contactXFlex {
        font-size: 1.1rem;
        line-height: 2rem;
    }
}

.formRight {
    width: 80%;
    padding: 0.5rem;
}

.contactMessage {
    margin-bottom: 4rem;
}

@media screen and (max-width: 1024px) {
    .contactXFlex {
        display: block;
        text-align: left;
    }

    .formLeft {
        width: 100%;
    }

    .formRight {
        width: 100%;
        margin-bottom: 0.2rem;
        text-align: left;
        font-size: 1.1rem;
        line-height: 2rem;
    }

    .contactMessage {
        margin-bottom: 3rem;
    }

}



.form-button {
    border: 1px solid;
    background-color: #fff;
    transition: 0.3s ease;
    color: #006daa;
    transition: 0.3s ease;
    padding: padding: 0.8rem 5rem 0.8rem 3rem;
    font-size: 1.1rem;
}

.contactBtnInput {
    color: #fff;
    background-color: #006daa;
    transition: 0.3s ease;
}

.form-button {
    padding: 0.9rem 5rem 0.9rem 3rem;
    border: 1px solid;
    border-color: #006daa;
    color: #006daa;
    transition: 0.3s ease;
}

.contactBtnArea {
    width: auto;
    height: auto;
    display: inline-block;
    position: relative;
}

.contactBtnArea ::before {
    position: absolute;
    content: "";
    bottom: 1.4rem;
    right: 2rem;
    width: 30px;
    height: 1px;
    background: #006daa;
    transition: 0.3s ease;
}

@media screen and (max-width: 540px) {
    .contactBtnArea ::before {
        bottom: 1.3rem;
        width: 25px;
    }
}

.contactBtnArea ::after {
    position: absolute;
    content: "";
    bottom: 1.6rem;
    right: 1.9rem;
    width: 10px;
    height: 1px;
    background: #006daa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.contactBtnArea :hover:before,
.contactBtnArea :hover:after {
    background-color: #fff;
    transition: 0.3s ease;
}

.contactBtnArea :hover {
    background-color: #006daa;
    transition: 0.3s ease;
    color: #fff;
}




/* ↓ アクセス ------------------------*/
.accessSen {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.ggmap {
    position: relative;
    padding-bottom: 342px;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 372px;
}

.secPoricy span {
    color: #00ACE7;
}

p.indent-1 {
    padding-left: 1em;
    text-indent: -1em;
}

.pageSec .representativeName {
    text-align: right;
}

/* ↓ セクション ｜ ニュースリストページ ------------------------*/

.news_list li {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 1.4rem;
    margin-bottom: 1.5rem;
}

.news_list li:last-child {
    border-bottom: none;
}

.news_list li .info {
    display: flex;
    align-items: center;
}

.news_list li .info .day {
    color: #8B8A8B;
    font-size: 0.9rem;
}

.news_list li .info .category {
    color: #fff;
    font-size: 0.8rem;
    padding: 0rem 1rem;
    border-radius: 1rem;
    margin-left: 1rem;
}



.news_list li .title {
    margin-top: 0.5rem;
    font-size: 1rem;
    text-align: left;
}

/* ↓ セクション ｜ ニュース詳細 ------------------------*/
.pageSec_news {
    text-align: left;
    padding: 3rem 0rem 6rem;
}

.pageSec_news_detail {
    max-width: 800px;
    width: 90%;
    margin: auto;
}

.news_detail_title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.news_detail_thumbnail {
    width: 100%;
    margin-bottom: 3rem;
}

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

.pageSec_news_detail .info {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pageSec_news_detail .info .day {
    color: #8B8A8B;
    font-size: 0.9rem;
}

.pageSec_news_detail .info .category {
    color: #fff;
    font-size: 0.8rem;
    margin-left: 1rem;
    background-color: none;
}

.news_detail_content {
    margin-bottom: 5rem;
}

/* ↓ ページナビゲーション ------------------------*/
.wp-pagenavi {
    margin-top: 2rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    position: relative;
    /* ←忘れない！ */
    width: 45px;
    height: 45px;
    line-height: 40px;
    border-radius: 50%;
    border: none !important;
    margin: 0.5rem !important;
}

.wp-pagenavi span.current {
    background-color: #00ACE7;
    color: #fff;
}

.wp-pagenavi .page {
    background-color: #efefef;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    background-color: #efefef;
}

.wp-pagenavi .page:hover {
    background-color: #00ACE7;
    color: #fff;
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
    background-color: #00ACE7;
    color: #fff;
}



/* ↓ セクション ｜ フッター ------------------------*/

.footerContents {
    width: 100%;
    background-image: url(../img/back_lightblue.png);
    background-size: cover;
    padding-top: 3rem;
    padding-bottom: 2rem;
    position: relative;
}

.isms {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 12rem;
}

@media screen and (max-width: 540px) {
    .isms {
        position: relative;
        bottom: inherit;
        right: inherit;
        margin: auto;
        margin-top: 3rem;
    }
}


.isms img {
    width: 100%;
}

.footerBunnerFlex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.footerBunnerFlex a {
    width: 25%;
    max-width: 300px;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    transition: 0.2s ease;
}


@media screen and (max-width: 540px) {
    .footerBunnerFlex a {
        width: 100%;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
}

.footerBunner {
    text-align: center;
}

.footerBunner img {
    width: 100%;
}

@media screen and (max-width: 540px) {
    .footerBunner img {
        width: 80%;
    }
}


.footerBunner img:hover {
    opacity: 1;
}

.footerContact {
    color: #FFF;
    text-align: center;
}

.footerContact a {
    color: #fff;
    transition: 0.2s ease;
}

.footerContact a :hover {
    background-color: #006daa;
    transition: 0.2s ease;
}

.footerContact p {
    display: inline-block;
    border: 1px solid;
    border-color: #fff;
    padding: 0.5rem 1rem;

}

.footerContact p::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 14px;
    background-image: url(../img/ico_mail.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 0.5rem;
}


.footerPolicy {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerPolicy a {
    color: #fff;
}

.footerPolicy a:first-child {
    margin-right: 20px;
}

.footerPolicy a p:hover {
    opacity: 0.6;
}

.copyright {
    margin-top: 3rem;
    color: #fff;
    text-align: center;
}


/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
    display: block;
}

.spArea {
    display: none;
}

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

    .spArea {
        display: block;
    }
}

/* ↓ 商品カードスタイル ------------------------*/
.sectionTitle {
    text-align: center;
    margin-bottom: 2rem;
}

.sectionTitle h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.sectionTitle p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 1rem 1.2rem;
}

.product-card__title {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    text-align: left;
    font-weight: 600;
    line-height: 1.4;
}

.product-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card__title a:hover {
    color: #0083ce;
}

.product-card__description {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.75;
}

.product-card__detail-link {
    margin-top: 1rem;
    text-align: left;
}

.product-card__detail-link a {
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.product-card__detail-link a:hover {
    color: #0083ce;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .product-card__content {
        padding: 1.25rem;
    }
    
    .product-card__title {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 540px) {
    .product-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card__content {
        padding: 1rem;
    }
    
    .product-card__title {
        font-size: 1rem;
    }
    
    .product-card__description {
        font-size: 0.95rem;
    }
}
