@charset "utf-8";

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

　　setting

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

html {
    font-size: 62.5%;
    /* 10px */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
    font-feature-settings: "palt";
    line-height: 1.4;
    height: 100%;
    background-color: #fff;
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: .06em;
    box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.6;
    font-weight: bold;
    font-weight: 500;
    font-style: normal;
}

p {
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: .06em;
}

a {
    color: #231815;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

li {
    list-style-type: none;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

button {
    cursor: pointer;
}

.clearfix::after {
    content:'';
    display: block; 
    clear:both;
}
.cf {
    clear: both;
}

/* フェードインエフェクト */

.effect__fadeIn {
    opacity: 0;
}

.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);
    }
  }
    

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

　　header {

--------------------------*/
header {
    position: fixed;
    z-index: 9999;
    border-top: solid 4px #5050ef;
    background: rgba(255, 255, 255, 1);
    width: 100%;
}

header .inner {
    padding: 20px 30px;
    margin: auto;
    position: relative;
}

.header_logo {
    width: 180px;
}

.main_nav > ul > li > a {
    display: block;
    padding: 4px 0px 4px 4px;
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .05em;
}

.main_nav a:hover {
    color: rgb(123, 123, 123);
}

.is-header {
    padding: 10px 30px !important;
}

.is-headernav {
    padding-top: 0 !important;
}



@media screen and (max-width: 999px) {
    .overlay {
        display: none;
        width: 100%;
        height: 100%;
        background: rgba(57, 59, 67, 0.7);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
    }

    .header_nav {
        display: none;
        /* height: 100vh; */
        /* background-color: rgba(56, 56, 56, 0.38); */
        padding-top: 0 !important;
    }

    header .inner {
        max-width: 100%;
        padding: 0px !important;
    }

    .header_top {
        padding: 13.5px 0px;
        box-shadow: 0 0 5px rgb(0 0 0 / 40%);
        background-color: #fff;
    }

    .header_logo {
        width: 120px;
        padding-left: 23px;
    }

    .main_nav > ul > li {
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
        background-color: #fff;
    }

    .main_nav > ul > li > a {
        display: block;
        padding: 20px 23px;
        font-size: 1.5rem;
        position: relative;
    }

    .main_nav li a::after {
        content: "";
        display: block;
        position: absolute;
        width: 7px;
        height: 7px;
        border: solid;
        border-width: 2px 2px 0 0;
        border-color: #0037ff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        pointer-events: none;
        top: 50%;
        right: 25px;
        margin: -5px 0 0;

    }

    .sub_nav {
        padding: 20px 20px 30px;
        background-color: #fff;
        display: block !important;
    }

    .sub_nav_buttons li {
        display: block;
        width: 100%;
        padding: 15px 0;
        margin: 0;
    }

    .sub_nav_buttons li a {
        display: block;
        padding: 16px 0;
        background-color: #36c;
        transition: 0.2s all;
        color: #fff;
        text-align: center;
        font-size: 1.4rem;
        position: relative;
        border-radius: 4px;
    }

    .sub_nav_buttons li a:hover {
        opacity: 0.7;
    }
}

@media print,
screen and (min-width: 1000px) {
    header .inner {
        max-width: 1400px;
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
        position: relative;
    }

    .header_nav {
        display: block !important;
        position: relative;
        width: 100%;
        max-width: 620px;
        padding-left: 30px;
        padding-top: 50px;
    }

    .main_nav > ul {
        display: flex;
        justify-content: space-between;
    }

    .sub_nav {
        display: flex;
        position: absolute;
        top: -5px;
        right: 0;
    }

    .sub_nav_buttons {
        display: flex;
        align-items: center;
        border: 1px solid #2b2bed;
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 1;
    }

    .sub_nav_buttons li:not(:last-child) {
        border-right: solid 1px #2b2bed;
    }

    .sub_nav_buttons a {
        position: relative;
        display: block;
        padding: 11px 10px 9px 35px;
        color: #2b2bed;
    }

    .sub_nav_buttons a:hover {
        background-color: #e7e7f6;
    }

    .sub_nav_buttons .header_document_dl a::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url(../image/icon_dl.svg);
        vertical-align: middle;
        position: absolute;
        left: 9px;
        top: 8px;
    }

    .sub_nav_buttons .header_contact a::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url(../image/icon_mail.svg);
        vertical-align: middle;
        position: absolute;
        left: 9px;
        top: 8px;
        z-index: 99;
    }
}

/*-------------
  メニューボタン
---------------*/
.Toggle {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 9px;
    right: 12px;
    cursor: pointer;
    z-index: 999;
    padding: 14px 0 0;
}

.btn_border {
    position: relative;
    margin: 0 auto;
}

.btn_border,
.btn_border::after,
.btn_border::before {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 3px;
    background: #5050ef;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.btn_border::before,
.btn_border::after {
    content: '';
    position: absolute;
    background: #5050ef;
}

.btn_border::before {
    top: -8px;
}

.btn_border::after {
    top: 8px;
}

.Toggle.close .btn_border {
    background-color: transparent;
}

.Toggle.close .btn_border::before,
.Toggle.close .btn_border::after {
    top: 0;
}

.Toggle.close .btn_border::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.Toggle.close .btn_border::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.r_btn_text {
    display: block;
    padding-top: 13px;
    font-size: 0.8rem;
    text-align: center;
    color: #5050ef;
    font-weight: 500;
}

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


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

　　footer

--------------------------*/
footer {
    background-color: #313131;
    width: 100%;
    line-height: 1.75;
}

.footer_inner {
    max-width: 1400px;
    margin: 0 auto;
    color: #fff;
    padding: 80px 30px;
    font-size: 1.4rem;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

.footer_info {
    flex: 0 1 320px;
}

.footer_logo img {
    max-width: min(207px, 60%);
    margin-bottom: 40px;
}

.footer_info_txt {
    line-height: 1.8;
}

.footer_nav {
    flex: 0 1 800px;
    max-width: 834px;
}

.fnav_menu_wrap {
    display: flex;
    flex-wrap: wrap;
}

.fnav_menu_wrap > li {
    width: 26%;
    padding-bottom: 20px;
}

.fnav_menu_item {
    line-height: 2;
    margin-top: 16px;
}

.fnav_menu_item a {
    color: #fff;
    font-size: 1.4rem;
}

.fnav_menu_item a:hover {
    color: rgb(152, 152, 152);
    ;
}

.footer_copyright {
    padding: 60px 0 0px;
}

@media screen and (max-width: 999px) {
    .footer_info {
        flex: 0 1 250px;
    }

    .footer_info_txt p br {
        display: none;
    }

    .footer_nav {
        flex: 1;
    }

    .fnav_menu_wrap > li {
        width: 32%;
    }
}

@media screen and (max-width: 768px) {
    .footer_inner {
        padding: 30px 20px;
    }

    .footer_content {
        flex-direction: column;
        gap: 0px;
    }

    .footer_info {
        border-bottom: solid 1px #828282;
        flex: 0 1 200px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 489px) {
    .fnav_menu_wrap > li {
        width: 50%;
    }
}

@media screen and (max-width: 330px) {
    .fnav_menu_wrap > li {
        width: 100%;
        padding-bottom: 0px;
    }
}


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

　　    top main

--------------------------*/
.top_section {
    width: 100%;
}

.hero_container {
    position: relative;
    height: 680px;
    overflow: hidden;
    background-color: #333;
    width: 100%;
}

.top_image_box {
    position: absolute;
    top: 118px;
    left: 0;
    width: 100%;
    height: calc(100% - 118px);
}

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

.top_image_box > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ------------------
    　hero_catch
--------------------- */


.hero_catch_wrap {
    position: absolute;
    top: 118px;
    left: 0;
    width: 100%;
    height: calc(100% - 118px);
}

.hero_catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.hero_item {
    color: #fff;
    display: block;
    position: relative;
}

.hero_txt_en {
    font-size: 2.3vw;
    line-height: 1.5;
    line-height: 1;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(2.1rem,2.5vw,3.2rem);
}

.hero_txt {
    font-size: 2.6vw;
    font-weight: bold;
    margin: 36px 0 36px 0;
    line-height: 1.5;
    font-size: clamp(2.1rem,3vw,4.8rem);
}

.hero_txt_sub {
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: 0.07em;
}

.hero_item {
    opacity: 0;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 3000ms;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
        visibility: hidden;
        transition: all 3000ms;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}


@media screen and (max-width: 999px) {
    .hero_container {
        height: 470px;
    }

    .top_image_box {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
    }
}

@media screen and (min-width: 769px) {
    .hero_item br {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero_catch {
        width: 90%;
    }
    
    .top_image_box img {
        width: auto;
        height: 100%;
    }

    .hero_catch_wrap {
        position: absolute;
        top: 60px;
        height: calc(100% - 60px);
    }

    .hero_txt_sub {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .hero_txt_en {
        line-height: 1.5;
    }
}

/* ------------------
    　当社について
--------------------- */
.top_section_about {
    padding: 60px 40px 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #fff;
}

.top_about_wrap {
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 40px;
    border-radius: 20px;
    background-color: #F5F5F5;
}

.top_about_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    max-width: 1080px;
    margin: auto;
    padding: 0 20px;
}

.top_about_txt_wrap {
    width: 60%;
}

.top_page_ttl h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1b1464;
}

.top_page_ttl span {
    display: block;
    font-size: 16px;
    line-height: 1.75;
    color: #0037ff;
    margin-top: 10px;
}

.top_about_sub_ttl {
    font-size: 2.3rem;
    font-weight: 700;
    margin-top: 50px;
    padding-bottom: 24px;
    letter-spacing: 0.06em;
    line-height: 1.7;
}
.top_about_txt {
    padding-bottom: 20px;
}
.top_about_txt p {
    line-height: 1.85;
    font-size: 1.6rem;
}
.top_about_img_wrap {
    width: 40%;
    text-align: center;
}

.top_about_img_wrap img {
    width: 300px;
    height: 370px;
    object-fit: cover;
}

@media screen and (max-width: 1110px) {
    .top_about_sub_ttl br {
        display: none;
    }
}

@media screen and (max-width: 899px) {
    .top_section_about {
        padding: 0px 0px 0;
    }

    .top_about_wrap {
        border-radius: 0px;
        padding: 80px 40px 50px 40px;
    }

    .top_page_ttl span {
        margin-top: 0px;
    }

    .top_about_content {
        flex-direction: column;
        padding: 0;
    }

    .top_about_txt_wrap {
        width: 100%;
    }

    .top_about_sub_ttl br {
        display: block;
    }

    .top_about_img_wrap {
        width: 100%;
    }

    .top_about_img_wrap img {
        width: 100%;
        object-position: 50% 40%;
    }
}

@media screen and (min-width: 769px) {
    .top_about_wrap {
        width: calc(100% - 80px);
    }
}

@media screen and (max-width: 768px) {
    .top_about_wrap {
        padding: 50px 20px;
    }

    .top_page_ttl h2 {
        font-size: 2.4rem;
    }

    .top_about_sub_ttl {
        font-size: 1.8rem;
        margin-top: 15px;
        padding-bottom: 15px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 420px) {
    .top_about_sub_ttl {
        font-size: 1.7rem;
    }
    .top_about_txt p {
        font-size: 1.4rem;
    }
}

/* ------------------
        サービス
--------------------- */

.top_section_wrap {
    max-width: 1200px;
    margin: auto;
    padding: 80px 40px;
}

.top_service_content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 0;
}

.top_service_item {
    width: 31%;
    padding: 30px 30px 25px;
    background-color: #fff;
    box-shadow: 11px 11px 30px 3px rgb(0 0 0 / 20%);
}

.top_service_img {
    padding-bottom: 24px;
}

.top_service_image {
    height: 160px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.top_service_item_ttl_wrap {
    min-height: 50px;
}

.top_service_item_ttl {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 3px 0 3px 8px;
    border-left: 4px solid #0037ff;
}

.top_service_item_ttl span {
    font-size: 1.2rem;
    display: block;
    color: #36c;
    line-height: 1.8;
}

.top_service_item_txt {
    padding-top: 24px;
}

.more_btn {
    position: relative;
    padding: 0 30px 0 0;
    text-align: right;
    margin-top: 20px;
}

.more_btn a {
    font-weight: 700;
    font-size: 1.4rem;
    color: #1b1464;
    color: #000;
}

.more_btn a:hover {
    color: #0037ff;
}

.more_btn a::before {
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    margin-top: -3.5px;
    margin-left: -3.5px;
    border: solid;
    border-width: 2px 2px 0 0;
    border-color: #0037ff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: none;
    top: 50%;
    left: auto;
    right: 5px;
    margin: -5px 0 0;
}

@media screen and (max-width: 899px) {
    .top_service_content {
        flex-wrap: wrap;
        padding: 40px 0;
    }

    .top_service_item {
        width: 100%;
        display: flex;
        padding: 30px 20px 30px 15px;
        box-sizing: border-box;
    }

    .top_service_text_wrap {
        flex: 1;
    }

    .top_service_img {
        padding-bottom: 0px;
        margin-right: 15px;
        width: 200px;
    }

    .top_service_image {
        width: 180px;
        height: 160px;
        background-size: contain;
    }
}

@media screen and (max-width: 768px) {
    .top_section_wrap {
        padding: 50px 20px;
    }

    .top_service_img {
        width: 180px;
    }
}

@media screen and (max-width: 486px) {
    .top_service_item {
        flex-direction: column;
    }

    .top_service_img {
        padding-bottom: 0px;
        margin: 0 auto 20px auto;
        width: 200px;
    }
}

/* ------------------
    Tech＆PRの強み
--------------------- */

.section_gray {
    background-color: #f5f5f5;
}

.top_strength_content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 60px 0;
}

.top_strength_item {
    width: 25%;
}

.top_strength_img_wrap {
    position: relative;
}

.top_strength_img img {
    width: 100%;
}

.top_strength_img_wrap ::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: rgba(26, 26, 26, 0.2);
    z-index: 2;
}

.top_strength_num {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.top_strength_num_data {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: rgba(0, 55, 255, 0.7);
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    z-index: 6;
    position: relative;
}

.top_strength_item_ttl {
    font-size: clamp(1.5rem,1.4vw,1.8rem);
    font-weight: 700;
    line-height: 1.7;
    padding: 30px 0 20px 0;
    min-height: 65px;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .top_strength_content {
        gap: 30px;
    }
}
@media screen and (min-width: 1000px) {

    .top_strength_item_ttl {
        font-size: clamp(1.4rem,1.3vw,1.7rem);
    }
}

@media screen and (max-width: 1040px) {
    .top_strength_item_ttl br {
        display: none;
    }
} 

@media screen and (max-width: 899px) {
    .top_strength_content {
        flex-wrap: wrap;
        padding: 40px 0;
    }

    .top_strength_item {
        width: 47%;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 399px) {
    .top_strength_item {
        width: 100%;
    }

    .top_strength_img img {
        height: 200px;
        object-fit: cover;
    }

    .top_strength_item_ttl {
        padding: 25px 0 12px 0;
        min-height: 10px;
        font-size: 1.6rem;
    }
}

/* ---------------
    　お知らせ
------------------ */
.top_news_wrap {
    display: flex;
    padding-bottom: 40px;
}

.top_page_news_ttl {
    width: 230px;
}

.top_news_content {
    flex: 1;
}

.top_news_content ul {
    width: 100%;
}

.top_news_content li {
    display: flex;
    margin-bottom: 18px;
    border-bottom: dotted 1px #ccc;
    padding: 0 10px 18px 10px;
}

.top_news_content .post_meta .date {
    display: inline-block;
    font-size: 1.4rem;
    margin-right: 15px;
}

.top_news_content .post_meta {
    width: 230px;
}

.post_title {
    flex: 1;
}

.top_news_content .post_meta .category {
    display: inline-block;
    min-width: 70px;
    padding: 4px 5px;
    margin-right: 15px;
    background: #fff;
    color: #5050ef;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    border: 1px solid #5050ef;
}
.top_news_content .post_meta .cgr_important {
    color: #cc0058;
    border: 1px solid #cc0058;
}

.top_news_content .post_title a {
    font-size: 1.6rem;
}

.top_news_content .post_title a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 899px) {
    .top_news_wrap {
        flex-direction: column;
        padding-bottom: 0px;
    }

    .top_news_content {
        padding-top: 30px;
    }

    .top_news_content li {
        padding: 0 0px 15px 0px;
        flex-direction: column;
    }

    .top_news_content .post_meta {
        margin-bottom: 10px;
    }
    .top_news_content .post_title a {
        font-size: 1.4rem;
    }
    .top_news_content .post_meta .date {
        font-size: 1.4rem;
    }
}

/* ---------------
    コンタクト
------------------ */
.top_page_contact_ttl {
    text-align: center;
}

.top_contact_wrap {
    padding: 0 40px;
}

.top_page_contact_txt {
    font-size: 1.6rem;
    padding: 20px 0 40px;
}

.top_contact_buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.top_contact_buttons a {
    display: block;
    padding: 20px 30px 20px 60px;
    color: #fff;
    background-color: #1b1464;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.8;
    border-radius: 4px;
    min-width: 180px;
}

.top_contact_buttons a:hover {
    opacity: 0.7;
}

.top_contact_buttons span {
    position: relative;
}

.top_contact_buttons .top_contact_dl span::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    background-image: url(../image/icon_contact_dl.svg);
    vertical-align: middle;
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.top_contact_buttons .top_contact_mail span::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    background-image: url(../image/icon_contact_mail.svg);
    vertical-align: middle;
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
    .top_contact_buttons a {
        min-width: 340px;
        padding: 25px 0 25px 30px;
    }
}

@media screen and (max-width: 768px) {
    .top_contact_buttons {
        flex-direction: column;
        gap: 40px;
    }
}

@media screen and (max-width: 486px) {
    .top_contact_wrap {
        padding: 0;
    }

    .top_contact_buttons a {
        min-width: 10px;
        width: 100%;
        box-sizing: border-box;
        padding: 20px 20px 20px 40px;
    }
}


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

　　パンクズリスト

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

.bread_inner {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
}

.breadcrumb_list {
    display: flex;
}

.breadcrumb_list_item {
    font-size: 12px;
    line-height: 175%;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

.breadcrumb_list_item:not(:last-child)::before {
    width: 4px;
    height: 4px;
    position: absolute;
    right: -2px;
    border-bottom: 2px solid #111;
    border-right: 2px solid #111;
    content: " ";
    color: #111;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 20px;
    }
}

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

　　お問い合わせページ

--------------------------*/
.page_container {
    padding: 117px 0 100px 0;
}

.contact_page_container {
    background-color: #fff;
}

.contact_page_wrap {
    max-width: 1040px;
    margin: auto;
    padding: 40px 36px;
}

.form_box {
    padding: 40px 80px;
    font-size: 1.6rem;
    background-color: #f5f5f5;
}

.page_ttl_ja {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0px 0 20px;
}

.form_box_header {
    padding: 0 20px;
}

.contact_header_txt {
    padding: 0 0 20px 0px;
    text-align: center;
    margin-bottom: 20px;
}

.contact_header_txt p {
    font-size: 1.6rem;
}

.contact_flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 60px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.contact_flow::before {
    background: #ccc;
    content: "";
    z-index: -1;
    margin: auto;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.contact_flow li {
    border: 2px solid #5050ef;
    background-color: #fff;
    color: #5050ef;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    width: 26%;
}

.contact_flow li.active {
    background-color: #8b8bec;
    color: #fff;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
textarea,
select {
    width: 100%;
    background-color: #fff;
    border: none;
}

.request_list {
    width: 100%;
}

.form_req {
    background-color: #e65c5c;
    color: #fff;
    padding: 2px 8px;
    margin-left: 10px;
    font-size: 1.1rem;
    font-weight: normal;
    float: right;
}
.form_any {
    background-color: #f6aa38;
}

input::placeholder {
    color: #ccc;
}

.address_form {
    width: 100%;
}

.address_form td span {
    display: block;
}

.request_detail_list {
    width: 100%;
}

.request_detail_list tr {
    padding: 20px 0px;
}

.request_detail_list th {
    text-align: left;
    margin-bottom: 15px;
    font-weight: normal;
}

.grand_select_block > div {
    display: inline-block;
}

.grand_select_block label {
    line-height: 40px;
    padding-right: 20px;
}

.class_item {
    padding-right: 20px;
}

.post_code {
    width: 100px !important;
}

.select_num {
    width: 3em;
}

.form_submit {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.form_submit button:hover {
    background-color: #3126a5;
}

.contact_form_check {
    text-align: center;
    margin-top: 60px;
}

.contact_form_check label {
    cursor: pointer;
}

.form_submit button {
    max-width: 340px;
    width: 100%;
    line-height: 1;
    background-color: #1b1464;
    color: #fff;
    font-size: 18px;
    padding: 20px 0px;
    letter-spacing: .06em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.hp_info_inner {
    padding: 20px 16px;
    margin: 40px auto 30px auto;
    letter-spacing: 0.09em;
    line-height: 1.87;
    background-color: #fff;
}

.hp_info_inner h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.hp_info_inner p {
    font-size: 1.5rem;
}

.hp_info_inner a {
    color: #1c98bb;
    font-size: 1.5rem;
}

.hp_info_check {
    text-align: center;
    padding: 20px;
}

.consent_btn {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
}

.contact_checkbox_parts {
    width: 100%;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0.1em;
}



@media screen and (max-width:899px) {
    .contact_container {
        max-width: 800px;
    }

    .form_box {
        margin-bottom: 30px;
        padding: 40px 0px;
        font-size: 1.6rem;
    }

    .cnt_page_inner p {
        padding: 0px 0.4em;
    }

    .request_list tr,
    .request_list th,
    .request_list td,
    .request_detail_list tr,
    .request_detail_list th,
    .request_detail_list td {
        display: block;
    }

    .request_list tr {
        padding: 20px;
    }

    .request_list th {
        text-align: left;
        margin-bottom: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="date"],
    textarea,
    select {
        width: 100%;
        max-width: 100%;
        padding: 14px 10px;
        box-sizing: border-box;
    }

    .checkbox_parts {
        line-height: 2.3;
    }

    .hp_info_wrap {
        padding: 0 20px;
    }
}

@media print,
screen and (min-width: 900px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px;
        padding: 16px 18px;
        box-sizing: border-box;
    }

    .request_list tr,
    .request_list th,
    .request_list td,
    .request_detail_list tr,
    .request_detail_list th,
    .request_detail_list td {
        padding: 20px 16px;
    }

    .request_list th,
    .request_detail_list th {
        width: 34%;
        text-align: left;
    }

    .request_list td,
    .request_detail_list td {
        width: 63%;
    }

    .request_list th,
    .request_list td,
    .request_detail_list th,
    .request_detail_list td {
        font-weight: normal;
    }

    .address_form th,
    .address_form td {
        border-bottom: none;
    }
}

@media screen and (max-width:999px) {
    .page_container {
        padding: 58px 0 100px 0;
    }

    .page_ttl_ja {
        font-size: 2.4rem;
        text-align: left;
    }

    .contact_header_txt {
        text-align: left;
    }
}

@media screen and (max-width:899px) {
    .contact_page_wrap {
        padding: 0 20px;
    }
    .news_page_contents_wrap {
        padding-top: 0;
    }
}


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

　　入力内容確認ページ

--------------------------*/
.btn_apply {
    min-width: 260px;
    line-height: 1;
    background-color: #1b1464;
    color: #fff;
    font-size: 18px;
    padding: 20px 30px;
    letter-spacing: .06em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
    box-sizing: border-box;
}

.btn_apply:hover {
    background-color: #3126a5;
}

.btn_return {
    background-color: rgb(212, 212, 212);
    color: #333;
}

.btn_return:hover {
    background-color: rgb(158, 158, 158);
}

@media screen and (max-width:568px) {
    .btn_apply {
        min-width: auto;
        width: 100%;
        margin: 10px auto;
    }
}

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

　　お問い合わせ完了ページ

--------------------------*/
.regist_complete_inner {
    text-align: center;
    margin-top: 87px;
    font-weight: bold;
}

.regist_complete_inner h3 {
    font-size: 2.6rem;
    font-weight: bold;
}

.regist_complete_txt {
    padding: 40px 20px 80px;
}

.regist_complete_txt p {
    font-size: 1.7rem;
    line-height: 1.8;
    letter-spacing: 2px;
}

.top_return_btn {
    padding: 0 20px;
}

.top_return_btn a {
    padding: 21px 25px;
    margin-bottom: 40px;
}

.top_return_btn a:hover {
    background-color: #3126a5;
}

@media screen and (max-width:420px) {
    .regist_complete_inner {
        text-align: left;
    }

    .regist_complete_inner h3 {
        font-size: 1.9rem;
        text-align: center;
    }

    .regist_complete_txt br {
        display: none;
    }
}


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

　　　会社概要ページ

--------------------------*/
.part_page_ttl_wrap {
    margin-bottom: 2rem;
    background-color: #f3f5ff;
}

.part_page_ttl_container {
    max-width: 1040px;
    padding: 60px 20px;
    margin: auto;
}

.company_page_inner {
    padding: 0 40px;
}

.contact_page_inner .c_name {
    font-weight: bold;
    padding: 0 30px;
    font-size: 2rem;
    margin-bottom: 40px;
}

.part_page_ttl h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #1b1464;
}

.part_page_ttl span {
    display: block;
    font-size: 16px;
    line-height: 1.75;
    color: #0037ff;
    margin-top: 10px;
}

.company_table_row {
    font-size: 1.6rem;
    line-height: 1.87;
}

.company_table_item {
    padding: 23px 30px;
    border-bottom: 1px solid #ddd;
}

.company_table_item:first-child {
    border-top: 1px solid #ddd;
}

.company_table_item dt {
    width: 180px;
    font-weight: bold;
}

.company_table_item dd {
    flex: 1;
}

@media screen and (min-width:769px) {
    .company_table_item {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    .part_page_ttl_container {
        padding: 30px 36px;
    }

    .part_page_ttl h2 {
        font-size: 2.4rem;
    }

    .part_page_ttl span {
        font-size: 1.4rem;
        margin-top: 5px;
    }

    .contact_page_inner .c_name {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:568px) {
    .part_page_ttl_container {
        padding: 30px 20px;
    }
} 

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

　　Tech & PRの強みページ

--------------------------*/
.s_page_container {
    padding: 117px 0 0px 0;
}
.s_guide_ttl {
    font-size: clamp(2.3rem,2.769vw,3.375rem);
    line-height: 1.7;
    margin-bottom: 1em;
    font-weight: 700;
    color: rgb(61, 61, 195);
}

.s_guide_txt {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 20px;
}

.strength_page_inner {
    background-color: #f5f5f5;
}
.strength_page_wrap {
    padding-bottom: 60px;
}

.s_page_header {
    position: relative;
}
.s_page_header::after {
    content: "";
    width: 60px;
    height: 3px;
    background:  rgb(80, 80, 239);
    bottom: -1px;
    position: absolute;
}
.s_page_header h2 {
    font-weight: 700;
    font-size: clamp(1.9rem,4.688vw,3.2rem);
    line-height: 1.5;
    color: #2C2F2F;
    /* padding: 65px 0 24px; */
    padding: 18px 0 18px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    letter-spacing: .06em;
}

.strength_page_top {
    max-width: 830px;
    margin: auto;
    padding: 20px 0 100px;
}

.strength_page_item {
    display: flex;
    justify-content: space-between;
    padding: 60px 0px;
    gap: 40px;
}
.strength_page_item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.s_item_content {
    flex: 1;
}
.s_item_content_ttl {
    font-size: clamp(1.8rem,3.4vw,2.4rem);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: bold;
}

.s_item_content_ttl span {
    display: block;
    color: rgb(71, 71, 219);
}
.s_item_content p {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}
.s_item_content p + p {
    margin-top: 26px;
}
.s_item_img {
    width: min(32vw,470px);
}

@media screen and (max-width: 999px){
    .s_page_container {
        padding: 58px 0 100px 0;
    }
}
@media screen and (max-width:640px) {
    .strength_page_item {
    padding: 40px 0px;
    }
    .s_item_content_ttl {
    margin-bottom: 30px;
    font-size: clamp(1.6rem,3.4vw,2.4rem);
    }
    .strength_page_item {
        flex-direction: column;
    }
    .s_page_item_reverse {
        flex-direction: column-reverse;
    }
    .s_item_img {
        width: 100%;
        text-align: center;
    }
}

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

　　提供サービス（詳細）

--------------------------*/
.service_page_item {
    padding: 60px 0px 80px;
}
.sv_item_img {
    width: min(30vw,360px); 
    padding-bottom: 20px;
}

.service_page_item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.service_page_item_inner {
    margin-bottom: 80px;
}

.sv_item_content_ttl {
    font-size: clamp(1.8rem,3.4vw,2.3rem);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: bold;
    color: #1b1464;
}
.sv_item_content p {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}

.sv_item_content_list {
    padding-left: 2rem;
    margin: 40px 0;
}
.sv_item_content_list li {
    font-size: 1.6rem;
    list-style-type: disc;
    line-height: 1.8;
    
}
.sv_item_content_list li::marker {
    color: #271c9b;
    font-weight: bold;
    font-size: 2rem;
}

.sv_target_box_header {
    margin-bottom: 48px;
    text-align: center;
}
.sv_target_box_header h4 {
    font-size: clamp(1.8rem,3.4vw,3rem);
    font-weight: bold;
}
.sv_target_box_list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0 16px;
}

.sv_target_box_item {
    width: 25%;
    border-radius: 20px;
    border: 2px solid #2d334a;
    background-color: #fff;
}

.sv_target_box_img {
    height: 140px;
    display: flex;
    border-radius: 20px 20px 0 0;
    border-bottom: 2px solid #2d334a;
    padding: 8px;
    background-color: #f3f5ff;
}

.sv_target_box_img img {
    width: 100%;
}
.sv_target_box_txt {
    padding: 16px 10px;
    text-align: center;
    font-size: 1.65rem;
    font-weight: bold;
}

@media screen and (min-width:769px) {
    .sv_item_content {
        width: calc(100% - min(30vw,360px) - 30px);
    }
    .sv_item_content_odd {
        float: right;
    }

    .sv_item_content_even {
        float: left;
    }
    .sv_item_img_odd {
        padding-right: 30px;
    }
    
    .sv_item_img_even {
        padding-left: 30px;
    }
}

@media screen and (max-width:768px) {
    .sv_target_box_list {
        flex-wrap: wrap;
        gap: 24px 16px;
    }
    .sv_target_box_item {
        width: calc(50% - 16px);
    }
    .sv_item_content > p > br {
        display: none;
    }
    .sv_target_box_txt {
        font-size: 1.5rem;
    }
}

@media screen and (min-width:540px) {
   
    .sv_item_img_odd {
        float: left;
    }
    
    .sv_item_img_even {
        float: right;
    }
}

@media screen and (max-width:539px) {
    .sv_item_img {
        width: 85%;
        margin: auto; 
        padding-bottom: 40px;
    }

    .sv_item_content p {
        font-size: 1.5rem;
    } 
    .sv_item_content_list li {
        font-size: 1.5rem;
    }   
}

@media screen and (max-width:380px) {
    .sv_target_box_item {
        width: 100%;
    }
} 

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

　　VISION、代表プロフィール

--------------------------*/
.page_vp_ttl_wrap .v_ttl {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #1b1464;
    border-bottom: 1px solid #aeaef8;
    display: inline-block;
    
}
.vision_ttl_wrap .v_ttl {
    padding: 0 41px 0 20px;
}
.page_vp_ttl_wrap .v_sub_ttl {
    display: block;
    font-size: 16px;
    line-height: 1.75;
    color: #0037ff;
    font-weight: bold;
    margin-top: 8px;
    padding-left: 20px;
}

.profile_page_wrap {
    border-top: 1px solid #ddd;
}
.profile_ttl_wrap {
    margin-left: 121.002px;
    margin-top: -11px;  
}
.profile_ttl_wrap .v_ttl {
    position: relative;
    padding: 0 20px 0 59px;
}

.profile_ttl_wrap .v_ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 120px;
    border: 0;
    border-top: 1px solid #aeaef8;
    margin: 0;
    padding: 0;
    transform: rotate(-45deg);
    transform-origin: 0% 100%;
}

.profile_ttl_wrap .v_sub_ttl {
    padding-left: 59px;
}

.vp_page_header h2 {
    font-size: clamp(2.3rem,4.688vw,3.4rem);
    line-height: 1.5;
    color: rgb(61, 61, 195);
    letter-spacing: .06em;
    font-weight: bold;
}

.vp_vertical_ttl {
    font-size: 3.6rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: serif;
    font-size: clamp(1.8rem,4.688vw,3.8rem);
    font-feature-settings: initial;
}
.vp_vertical_ttl span {
    padding-top: 1em;
}
.vp_page_wrap {
    padding-bottom: 80px;
}
.vp_page_inner_left {
    text-align: center;
}

.vp_item_content p {
    letter-spacing: 0.08em;
}

.profile_page_header::after {
    content: "";
    width: 45px;
    height: 3px;
    background: rgb(80, 80, 239);
    bottom: -1px;
    position: absolute;
}
.profile_page_header h2 {
    font-size: 2.3rem;
    padding: 18px 0 18px;
    margin-top: 40px;
}
.profile_page_item {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 60px;
    gap: 75px;
}

.profile_name {
    display: inline-block;
    font-size: 1.3rem;
    margin-bottom: 27px;
}
.profile_name span {
    font-size: 2.0rem;
    padding-left: 10px;
}
.profile_img {
    width: 250px;
}

.pro_page_item {
    align-items: center;
}


@media screen and (max-width: 860px){
    .profile_page_item {
        gap: 40px;
    }
}

@media screen and (min-width: 769px) {
    .vp_page_inner {
        display: flex;
        align-items: center;
    }
    .vp_page_inner_left {
        width: 70%;
    }
    .vp_page_inner_right {
        width: 30%;
    }
    .vp_page_sp_inner {
        display: none;
    }
} 

@media screen and (max-width: 768px) {
    .page_vp_ttl_wrap .v_ttl {
        font-size: 2.4rem;
        padding: 0 28px 0 12px;
    }
    .profile_ttl_wrap .v_ttl {
        position: relative;
        padding: 0 12px 0 40px;
    }
    .profile_ttl_wrap .v_sub_ttl {
        padding-left: 40px;
    }
    .page_vp_ttl_wrap .v_sub_ttl {
        font-size: 1.4rem;
    }
    .profile_ttl_wrap .v_ttl::before {
        width: 79.9px;
    }
    .profile_ttl_wrap {
        margin-left: 76.69px;
        margin-top: -14px;  
    }  
    .vp_page_inner_right {
        display: none;
    } 
    .vp_page_sp_inner {
        padding-top: 50px;
        margin: auto;
        display: flex;
        justify-content: center;
    }
    .vp_page_sp_inner h3{
        margin: auto;
        text-align: left;
        font-size: clamp(1.8rem,4.688vw,2.7rem);
    }    
}

@media screen and (max-width: 620px) {
    .profile_page_item {
        flex-direction: column;
     }
     .profile_img {
         text-align: center;
     }
} 

@media screen and (max-width: 400px){
    .vp_item_content p {
        letter-spacing: normal;
        word-break: break-word;
        font-size: 1.5rem;
    } 
    .s_item_content p {
        font-size: 1.4rem;
    }
} 

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

　　会社資料ダウンロードフォーム

----------------------------*/
.dl_header_img {
    max-width: 320px;
    padding-top: 30px;
    text-align: center;
    margin: auto;
}

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

　　PRとは

----------------------------*/
.pr_content_txt p {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}

.page_pr_block_txt p {
    padding-bottom: 2em;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
}

.page_pr_block {
    padding: 60px 0px 30px;
}

.page_pr_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px; 
}

.page_pr_table td,
.page_pr_table th {
	padding: 3px;
	width: 30px;
    text-align: center;
}
.page_pr_table th {
	background: #9baefd;
    font-size: 1.5rem;
    height: 45px;
}
.page_pr_table td {
    background: #f5f5f5;
    font-size: 1.4rem;
    height: 56px;
}
.page_pr_table .pr_t {
    font-weight: bold;
    background-color: #ced7fe;
}
.page_pr_table .pr_t_center {
    width: 20%;
}
.page_pr_table .pr_t_side {
    width: 40%;
}
.page_pr_table td span {
    display: block;
}
.page_pr_table .pr_t_logo {
    position: relative;
}
.page_pr_table .pr_t_logo::before {
    content: '';
    width: 21px;
    height: 21px;
    background: url(../image/pr_logo.svg) no-repeat center center / contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: -10px;
    padding-right: 8px;
}

@media screen and (min-width:869px) {
    .page_pr_block {
        display: flex;
        gap: 30px;
    }
    .page_pr_block_txt {
        width: 50%;
    }
    .page_pr_block_table {
        width:50%
    }
}

@media screen and (max-width:430px) {
    .page_pr_table {
        border-spacing: 4px; 
    }
    .page_pr_table th {
        font-size: 1.4rem;
    }
    .page_pr_table td {
        font-size: 1.3rem;
    }
} 


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

　　プライバシーポリシー

--------------------------*/
.terms_of_service_inner {
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 160%;
    padding-bottom: 60px;
}


.terms_of_service_inner h2 {
    font-size: 19px;
    margin: 30px 0 20px 0;
}


.terms_of_service_inner ol {
    padding-left: 1.5em;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 160%;
    margin: 16px 0;
}

.terms_of_service_inner ol li {
    list-style-type: decimal;
}


.terms_tr {
    margin: 30px 0 0 0;
    text-align: right;
}


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

　　お知らせ一覧

--------------------------*/
.news_page_sidebar_ttl {
    padding: 0px 5px 12px 0px;
    font-weight: bold;
    font-size: 1.6rem;
    border-bottom: dotted 1px #ccc;
    color: rgb(61, 61, 195);
}
.news_page_nav_list li {
    border-bottom: dotted 1px #ccc;
    line-height: 1.3;
}
.news_page_nav_list a {
    position: relative;
    display: block;
    padding: 12px 5px 12px 28px;
}
.news_page_nav_list a:hover {
    color: rgb(61, 61, 195);
}
.news_page_nav_list a::before {
    content: '';
    width: 0;
    height: 0;
    border: solid 3px transparent;
    border-left: solid 8px #5050ef;
    position: absolute;
    left: 10px;
    top: 19px;
}
/* ページネーション */
.pager {
    margin-top: 60px;
}

.pager .pagination {
    text-align: center;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #fff;
    border: 1px solid #5050ef;
    width: 36px;
    height: 36px;
    text-align: center;
    position: relative;
}

.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #5050ef;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #5050ef;
    border: 1px solid #5050ef;
}

@media screen and (min-width: 1000px) {
    .news_page_main_box {
        display: flex;
    }
    .news_page_main_contents {
        width: 75%;
    }
    .news_page_sidebar {
        width: 20%;
        display: block;
        margin-left: auto;
        font-size: 1.4rem;
    }
}

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