@charset "utf-8";

/*============
page_sp
=============*/
/* 泡 */
.bubble-layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 560px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

/* オレンジ */
.bubble.orange {
    background: radial-gradient(circle at 70% 30%,
            rgba(255, 255, 255, 0.9),
            rgba(252, 199, 0, 0.4));
}

/* 水色 */
.bubble.blue {
    background: radial-gradient(circle at 70% 30%,
            rgba(255, 255, 255, 0.9),
            rgba(175, 221, 242, 0.7));
    box-shadow: inset -5px 5px 20px rgba(255, 255, 255, 0.1), inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

/*============
メインビジュアル
=============*/
/* トップページ用 */
.page_sp .mv.top-page {
    display: grid;
    justify-items: flex-start;
    align-content: center;
    height: 100%;
    margin: 0 40px 200px;
}

.page_sp .mv.top-page div p.mv-tit {
    font-size: 4rem;
    line-height: 1.6;
    display: block;
}

.page_sp .mv.top-page div p.mv-tit-s {
    font-size: 1.65rem;
    margin: 0 0 30px;
    position: relative;
    display: inline-block;
}

.page_sp .mv.top-page>div.line-yellow::after {
    width: 100%;
    bottom: 0;
    height: 3px;
}

.page_sp .mv.top-page p.mv-txt {
    font-weight: 700;
    font-style: normal;
    color: #0d3258;
    padding-right: 70px;
    margin: 0;
    position: relative;
    font-size: 1.4rem;
    margin-top: 30px;
    text-align: left;
}

@media screen and (max-width:559px) {
    .page_sp .mv.top-page {
        margin: 0 30px 130px;
    }

    .page_sp .mv.top-page>div.line-yellow::after {
        width: 80%;
    }

    .page_sp .mv.top-page p.mv-txt {
        padding-right: 0;
    }
}

/* キャッチ */
.sec-about {
    background: linear-gradient(to bottom, rgba(252, 199, 0, 1) 30%, rgba(255, 255, 255, 0));
    padding: 100px 60px 150px;
    position: relative;
    /* 波の基準 */
    overflow: visible;
}

/* キャッチの波 */
.sec-about canvas {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-90%);
    /* ← 上にはみ出させる量 */
    pointer-events: none;
}

.sec-about h2 {
    text-align: center;
    font-size: 2.6rem;
}

.sec-about>p {
    font-weight: 700;
    text-align: center;
    margin: 3rem 0;
}

@media screen and (max-width:559px) {
    .sec-about {
        padding: 100px 30px 100px;
    }
}

/* 主なサービス */
.sec-service>h2 {
    font-size: 3.4rem;
}

.sec-service>p {
    font-size: 1.4rem;
    font-weight: 700;
    margin: -10px 0 0;
    position: relative;
}

.sec-service h2.line-yellow::after {
    width: 25%;
    bottom: 18px;
}

.main-cont {
    text-align: center;
    display: grid;
    justify-items: center;
    align-content: center;
    height: 100%;
    margin: 50px 0;
}

.main-cont section {
    width: 80%;
    margin-bottom: 150px;
}

.main-cont section.publicity {
    margin-bottom: 30px;
}

.main-cont section h3 {
    font-size: 2.6rem;
    position: relative;
    line-height: 1.3;
}

.main-cont section p {
    margin-bottom: 20px;
    position: relative;
}

.main-cont section p.fnt-en {
    font-size: 1.4rem;
    color: #fcc700;
}

.img-c {
    display: inline-block;
    margin-bottom: 20px;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
}

.sec-service .main-cont .website .img-c {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/img_website.jpg");
    box-shadow: inset -5px 5px 20px rgba(255, 255, 255, 0.3), inset 5px -10px 20px rgba(137, 203, 229, 0.3);
    background-position: -45px center;
}

.sec-service .main-cont .report .img-c {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/img_report.jpg");
    box-shadow: inset -5px 5px 20px rgba(255, 255, 255, 0.3), inset 5px -10px 20px rgba(137, 203, 229, 0.3);
    background-position: left center;
}

.sec-service .main-cont .webPDF .img-c {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/img_webPDF.jpg");
    box-shadow: inset -5px 5px 20px rgba(255, 255, 255, 0.3), inset 5px -10px 20px rgba(137, 203, 229, 0.3);
    background-position: 20% center;
}

.sec-service .main-cont .career .img-c {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/img_career.jpg");
    background-position: right center;
    box-shadow: inset -5px 5px 20px rgba(255, 255, 255, 0.3), inset 5px -10px 20px rgba(137, 203, 229, 0.3);
    background-position: 80% top;
}

.sec-service .main-cont .publicity .img-c {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/img_publicity.jpg");
    box-shadow: inset -5px 5px 20px rgba(255, 255, 255, 0.3), inset 5px -10px 20px rgba(137, 203, 229, 0.3);
}

/* 浮かぶ水色の泡 */
.sec-service .main-cont .img-c {
    position: relative;
}

/* 浮かぶ水色の泡 website*/

.sec-service .main-cont .website .circle-blue-l {
    position: absolute;
    bottom: -30px;
    left: -60px;
}

.sec-service .main-cont .website .circle-blue-m {
    position: absolute;
    top: 0;
    right: -50px;
}

.sec-service .main-cont .website .circle-blue-s {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

/* 浮かぶ水色の泡 report*/

.sec-service .main-cont .report .circle-blue-l {
    position: absolute;
    top: -50px;
    left: -40px;
}

.sec-service .main-cont .report .circle-blue-m {
    position: absolute;
    top: 0;
    right: -50px;
}

.sec-service .main-cont .report .circle-blue-s {
    position: absolute;
    bottom: 0;
    left: -50px;
}

/* 浮かぶ水色の泡 webPDF*/

.sec-service .main-cont .webPDF .circle-blue-l {
    position: absolute;
    top: -50px;
    right: -50px;
}

.sec-service .main-cont .webPDF .circle-blue-m {
    position: absolute;
    bottom: -30px;
    right: -50px;
}

.sec-service .main-cont .webPDF .circle-blue-s {
    position: absolute;
    top: 0;
    left: -60px;
}

/* 浮かぶ水色の泡 career*/

.sec-service .main-cont .career .circle-blue-l {
    position: absolute;
    bottom: -10px;
    right: -70px;
}

.sec-service .main-cont .career .circle-blue-m {
    position: absolute;
    bottom: 0px;
    left: -50px;
}

.sec-service .main-cont .career .circle-blue-s {
    position: absolute;
    top: -20px;
    left: -40px;
}

/* 浮かぶ水色の泡 publicity*/

.sec-service .main-cont .publicity .circle-blue-l {
    position: absolute;
    bottom: -20px;
    left: -70px;
}

.sec-service .main-cont .publicity .circle-blue-m {
    position: absolute;
    top: -30px;
    left: -50px;
}

.sec-service .main-cont .publicity .circle-blue-s {
    position: absolute;
    top: -20px;
    right: -40px;
}

@media screen and (max-width:559px) {
    .sec-service.sec {
        padding: 70px 30px;
    }

    .main-cont section {
        width: 90%;
        margin-bottom: 100px;
    }
}

/*============
page_right
=============*/
.scroll-bg.bg_01 {
    background-image: url(../images/img_top-page.jpg);
}

.scroll-bg.bg_02 {
    background-image: linear-gradient(rgba(175, 221, 242, 0.7), rgba(175, 221, 242, 0.7)), url(../images/img_website.jpg);
    background-position: 30% center;
}

.scroll-bg.bg_03 {
    background-image: linear-gradient(rgba(175, 221, 242, 0.7), rgba(175, 221, 242, 0.7)), url(../images/img_report.jpg);
    background-position: -30% center;
}

.scroll-bg.bg_04 {
    background-image: linear-gradient(rgba(175, 221, 242, 0.7), rgba(175, 221, 242, 0.7)), url(../images/img_webPDF.jpg);
    background-position: -30% center;
}

.scroll-bg.bg_05 {
    background-image: linear-gradient(rgba(175, 221, 242, 0.7), rgba(175, 221, 242, 0.7)), url(../images/img_career.jpg);
}

.scroll-bg.bg_06 {
    background-image: linear-gradient(rgba(175, 221, 242, 0.7), rgba(175, 221, 242, 0.7)), url(../images/img_publicity.jpg);
}