<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
Theme Name: ぐっどぴーす - メイン
*/

/*reset css*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
#content{
    user-select: none;
     -moz-user-select: none;
     -webkit-user-select: none;
     -ms-user-select: none;
}
#main .cp,.box_r,.box_o{
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
}

body{
    font-family: 'BIZ UDGothic', sans-serif;
}

/*画像の伸縮設定*/
img{
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
/*折り返し設定*/
.span_r{
    display: inline-block;
}


/*header*/
header{
    height: 100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    border-bottom: #ccc 1px solid;
    position: sticky;
    top: 0;
    z-index: 5;
}
.site-header__wrapper{
    max-width: 1166px;
    margin: 0 auto;
}
.brand {
    width: 150px;
}
.nav__item a:hover{
    opacity: 1;
    border-bottom: 2px #ff9c01 solid;
}

.site-header {
  background-color: white; 
}
.site-header__wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem; }
    @media (min-width: 751px) {
      .site-header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0; } 
    }
  @media (min-width: 751px) {
    .nav__wrapper {
      display: flex; } 
    }
   
  @media (max-width: 750px) {
    .nav__wrapper {
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      z-index: -1;
      background-color: white;
      visibility: hidden;
      opacity: 0;
      transform: translateY(-100%);
      transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
      .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); } 
    }

  .nav__item a {
    display: block;
    padding: 1.5rem 1rem;
    color: #808080;
 }
   
.hamburger-menu {
    display: none;
}

/*キービジュアル*/
#key_v{
    width: 100%;
    padding-top: 52.0834%;
    margin: 0 auto;
    position: relative;
    background-color: #ff9c01;
    z-index: -2;
}
.water{
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -2;
}
.salaryman{
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1 ;
}
.animals{
    position: absolute;
    bottom: 0;
    width: 50%;
}
.bunsyou{
    position: absolute;
    width: 50%;
    bottom: 20%;
}
.fukidashi{
    width: 45%;
    margin-top: -10.417%;
    margin-left: auto;
  }

/*背景*/
#content{
    background: linear-gradient(#ff9900, #ffcc66);
    margin-top: -11.806%;
}
#wrapper{
    background-color: #fff;
    background-image:radial-gradient(rgba(120,120,120,0.2) 30%, transparent 30%);
    background-size: 5px 5px;
    width: 100%;
    margin: 0 auto;
    max-width: 1166px;
}
/*============================================
freelance_fadein
==============================================*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1.5s;/*秒数*/
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(50px);/*上昇幅*/
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/*keyv_fadein*/
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp_keyv{
    animation-name:fadeUpAnime_keyv;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime_keyv{
      from {
        opacity: 0;
        transform: translateY(100px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fadeDown_keyv{
    animation-name:fadeDownAnime_keyv;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeDownAnime_keyv{
      from {
        opacity: 0;
        transform: translateY(-100px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fadeLeft_keyv{
    animation-name:fadeLeftAnime_keyv;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeLeftAnime_keyv{
      from {
        opacity: 0;
        transform: translateX(100vw);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fadeRight_keyv{
    animation-name:fadeRightAnime_keyv;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeRightAnime_keyv{
      from {
        opacity: 0;
        transform: translateX(-100vw);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
#key_v .sp{
    display: none;
}



/*===========バナーボタン設定*=============/
/*募集バナー*/
.main-btn{
    width:500px;
    height:125px;
    line-height:125px;
    margin: 75px auto;
}

.main-btn a{
    display:block;
    position: relative;
    width:100%;
    height:100%;
    background:#fff;
    text-align:center;
    color:#000000;
    font-size:35px;
    font-weight:bold;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    box-shadow:5px 5px 0px 0px #000000 ;
    border: 1px solid #000;
}
.main-btn a::after{
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 90%;
    border-bottom: 3px dotted #c08103;
}
.main-btn a:hover{
    background:#EEEEEE;
    color:#000000;
    margin-left:5px;
    margin-top:5px;
    box-shadow:none;
}

/*サブページバナー*/
.sub_m{
    text-align: center;
}
.sub_m img{
    margin-top: 10px;
}

/*===========
   メイン
===========*/
/*中途採用*/
.recruit{
    background: url(../img/saiyou_top_background.png)
    no-repeat center center;
}
#recruit h2{/*下線（影？）がまだ*/
    font-size: 74px;
    color: #f6ff65;
    line-height: 0.85;
    padding-top: 20px;
    margin-left: 50px;
    text-shadow:3px 0 0 #000,3px 3px 0 #000,
                0 3px 0 #000, -1px 0 0 #000,
                0 -1px 0 #000;
    position: relative;
    z-index: 1;
}
#recruit h2 span{
    color: white;
    margin-left: 100px;
    position: relative;
    z-index: 1;
}
#recruit h2 span::before{
    content: "";
    transform: skewX(-30deg);
    background-color: #000;
    height: 20px;
    bottom: 0px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}
#recruit h2::before{
    content: "";
    transform: skewX(-30deg);
    background-color: #000;
    width: 4em;
    height: 20px;
    bottom: 65px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

#recruit p{
    font-family: 'BIZ UDGothic', sans-serif;
    text-align: center;
    font-size: 28px;
    color: white;
    text-shadow:3px 0 0 #000,2px 2px 0 #000,
    0 2px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    font-feature-settings : "palt";
    letter-spacing: -1.5px;
    margin-top: 5px;
}
.recruit_n1{
    font-size: 55px;
    color: aqua;
    letter-spacing: -10px;
}
.recruit_t1{
    font-size: 55px;
}
#recruit .recruit_t2{
    font-size: 60px;
    margin: 30px auto;
    width: 11em;
    max-width: 100%;
    background-image:
    repeating-linear-gradient(-45deg, rgb(176, 0, 0) 0px,rgb(176, 0, 0) 3px,
    rgba(255 255 255 / 1) 0%, rgba(255 255 255 / 1) 50%);
    background-size: 8px 8px;
    background-repeat: repeat-x;
    background-position: 50% 100%;
}
.recruit_more{
    margin-top: 75px;
}

/*===============
フリーランス募集
=================*/
#freelance{
    text-align: center;
    margin-top: 75px;
}
.cloud{
    position: relative;
    z-index: 2;
}

.cloud ul{
    background: url(../img/saiyou_top_fukidashi.png) no-repeat center;
}
.back{
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 100%;
}

.freelance_midashi{
    height: 300px;
    background: url(../img/top_freelance.png) no-repeat 15% 100%;
    position: relative;
    z-index: 3;
}
#freelance h2 span{
    color: white;
    position: relative;
    z-index: 1;
}
#freelance h2{
    text-align: right;
    font-size: 74px;
    color: aqua;
    line-height: 0.85;
    margin-right: 50px;
    text-shadow:3px 0 0 #000,3px 3px 0 #000,
                0 3px 0 #000, -1px 0 0 #000,
                0 -1px 0 #000;
    position: relative;
    z-index: 1;    
}
#freelance h2::before{/*フリーエンジニア下線*/
    content: "";
    transform: skewX(-30deg);
    background-color: #000;
    width: 8em;
    height: 20px;
    bottom: 65px;
    position: absolute;
    z-index: -1;
}
#freelance h2 span::before{/*募集中！　下線*/
    content: "";
    transform: skewX(-30deg);
    background-color: #000;
    height: 20px;
    bottom: 0px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}


#freelance p{
    font-size: 60px;
    color: white;
    text-shadow:3px 0 0 #000,3px 3px 0 #000,
    0 3px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    position: relative;
    z-index: 3;
}
#freelance p .yellow{
    color: #ff9900;
}
#freelance p .small{
    font-size: 40px;
    text-shadow:1px 0 0 #000,2px 2px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
}
#freelance .working{
    text-align: right;
    margin-right: 50px;
}

#freelance ul{
    height: 300px;
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    list-style-position: inside;
    padding-top: 45px;
    position: relative;
    z-index: 1;
}
#freelance ul li{
    font-size: 35px;
    color: white;
    text-shadow:2px 0 0 #000,2px 2px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
}

.btn2{
    margin-top: 40px;
}

/*sub_page*/
#freelance .sub_m p{
    font-size: 25px;
    text-shadow:2px 0 0 #000,2px 2px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
}
.arrow{
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 25px;
    border-color: #737373 transparent transparent transparent;
}
.sub_m a:hover{
    opacity: 0.7;
}


/*========================================================

会社概要

==========================================================*/
/*見出し*/
#company h2{
    color: #5e5e5e;
    font-size: 45px;
    text-align: center;
    text-decoration: underline;
}

.about{/*about usここから*/
    background: url(../img/top_about.jpg) no-repeat center;
    height: 310px;
    position: relative;
}
.company_t{
    position: relative;
    position: absolute;
    bottom: -50px;
    left: -30px;
}
.company_t h3{
    position: absolute;
    top: -60%;
    left: -10%;
}
.about .more{/*about usここまで*/
    position: absolute;
    bottom: 10px;
    right: 30px;
}
.business{/*businessここから*/
    background: url(../img/top_business.jpg) no-repeat center;
    height: 310px;
    position: relative;
    margin-top: 55px;
}
.company_b h3{
    position: absolute;
    top: -60%;
    left: -10%;
}
.company_b{
    position: relative;
    position: absolute;
    bottom: -50px;
    right: 0;
}
.business .more{/*businessここまで*/
    position: absolute;
    bottom: 10px;
    left: 30px;
}
.partner{/*partnerここから*/
    background: url(../img/top_partner.jpg) no-repeat center;
    height: 310px;
    position: relative;
    margin-top: 55px;
}
.company_p h3{
    position: absolute;
    top: -60%;
    left: -10%;
}
.company_p{
    position: relative;
    position: absolute;
    bottom: -50px;
    left: -30px;
}
.partner .more{/*partnerここまで*/
    position: absolute;
    bottom: 10px;
    right: 30px;
}

/*見出しの名前*/
.heading{
    position: relative;
    padding: 25px 0 0 110px;
    font-size: 85px;
    text-shadow:2px 0 0 #000,3px 3px 0 #000,
    0 2px 0 #000, -2px 0 0 #000,
    0 -1px 0 #000;
    font-family: 'Kdam Thmor Pro', sans-serif;
}
.heading span{
    position: relative;
    z-index: 2;
    color: white;
}
.heading::before{
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(229, 201, 110);
    font-size: 85px;
    font-weight: 800;
    z-index: 1;
}
#company p{
    color: white;
    background: #c28023;
    height: 150px;
    width: 550px;
    font-size: 30px;
    padding-left: 55px;
    display: grid;
    place-items: center left;
    box-shadow: 10px 10px #000;
    text-shadow:1px 0 0 #000,2px 2px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
}

/*ボタン*/
.more{
    display: block;
    width: 150px;
    height: 35px;
    background-color: #000;
    color: white;
    font-size: 25px;
    position: relative;
}
.more::before{
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    position: absolute;
    top: 35%;
    left: 80%;
}
.more::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%);
    width: 30px;
    height: 2px;
    background-color: white;
}
.more:hover{
    opacity: 0.8;
}

/*=============
    gallery
==============*/
#gallery{
    display: flex;
    justify-content: space-around;
    margin-top: 75px;
}
.gallery{
    margin-top: 5px;
}
.recruit_banner{
    border: 1px solid #000;
    background-color: #fff;
    width: 40%;
    box-shadow: #000 5px 5px;
    text-align: center;
}

.recruit_banner a img{
    margin-top: 10px;
}
.recruit_banner p{
    text-align: left;
}

/*=============
    footter
===============*/

footer{
    text-align: center;
    border-top: #ffcc66 1px solid;
    margin: 10px 10px 0;
    padding-top: 5px;
}
/*====================

////////////////////
    ↑topここまで
////////////////////

======================*/

/*===================


      articl


====================*/

/*記事タイトル*/
.midashi{
    background: url(../img/midashi.png) no-repeat center center;
    height: 200px;
}
.midashi{
    /* margin-top: 200px; */
    text-align: center;
    line-height: 200px;
    font-size: 78px;
    color: white;
    text-shadow:3px 0 0 #000,3px 3px 0 #000,
    0 3px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
}

/*パンくずリスト*/
.bread{
    margin-top: 80px;
    padding-top: 13%;
}
.bread a{
    color: skyblue;
}
nav{
    padding: 10px;
}
nav ul li{
    display: inline;
}
nav ul li a{
    color: black;
    opacity: 0.8;
}
nav ul li a:hover{
    opacity: 0.7;
    border-bottom: 1px solid #808080;
}

/*背景*/
#main, #main_b,#main_p{
    background-color: rgba(120,120,120,0.2);
    border: 1px solid rgba(120,120,120,0.2);
    margin: 65px 50px;
}
#main_bp{
    margin: 65px 50px;
}

/*見出し１*/
#main h2{
    color: #5e5e5e;
    font-size: 45px;
    text-align: center;
    text-decoration: underline;
    padding-top: 10px;
}
/*=================================

About_us

===================================*/
#main_au{
    background-color: #fcfcfc;
	background-image: radial-gradient(#ff9c01 10%, transparent 20%), radial-gradient(#eee 10%, transparent 20%);
	background-position: 0 0, 10px 10px;
	background-size: 20px 20px;}
.img_box{
    width: 700px;
    height: 300px;
    margin: 0 auto;
    margin-top: 20%;
    margin-right: 10%;
    background-color: #fff;
    background-image:radial-gradient(rgba(120,120,120,0.5) 30%, transparent 30%);
    background-size: 5px 5px;
    border: #5e5e5e 2px solid;
    box-shadow: 2px 2px black;
    position: relative;
    filter: grayscale(100%);
}
.img_box:hover{
    filter: grayscale(0%);
}
.about-us01{
    width: 60%;
    position: absolute;
    bottom: 0;
    right: 3%;
    z-index: 1;
}
.about-us02{
    position: absolute;
    bottom: 0;
    left: -5%;
    top: -70%;
    z-index: 0;
}
.img_box_1{
    width: 700px;
    height: 300px;
    margin: 0 auto;
    margin-top: 10%;
    margin-left: 10%;
    background-color: #fff;
    background-image:radial-gradient(rgba(120,120,120,0.5) 30%, transparent 30%);
    background-size: 5px 5px;
    border: #5e5e5e 2px solid;
    box-shadow: 2px 2px black;
    position: relative;
    filter: grayscale(100%);
}
.img_box_1:hover{
    filter: grayscale(0%);
}
.about-us03{
    width: 50%;
    bottom: 0;
    left: 0;
    position: absolute;
}
.about-us04{
    width: 60%;
    top: -45%;
    right: 0;
    position: absolute;
}
.img_box_2{
    width: 700px;
    height: 300px;
    margin: 0 auto;
    margin-top: 10%;
    margin-right: 10%;
    background-color: #fff;
    background-image:radial-gradient(rgba(120,120,120,0.5) 30%, transparent 30%);
    background-size: 5px 5px;
    border: #5e5e5e 2px solid;
    box-shadow: 2px 2px black;
    position: relative;
    margin-bottom: 150px;
    filter: grayscale(100%);
}
.img_box_2:hover{
    filter: grayscale(0%);
}
.about-us05{
    width: 70%;
    bottom: -0%;
    left: 0;
    position: absolute;
}
.about-us06{
    top: -50%;
    right: -20%;
    position: absolute;
}

/*==========================

president_message

============================*/
.message{
    display: flex;
    margin: 0 20px;
    align-items: flex-start;
}
.pm{
    margin: 0 20px;
}
.pm img{
    width: 40%;
    margin-top: 50px;
}
.pm h2{
    font-size: 44px;
    color: white;
    text-shadow:2px 0 0 #000,1px 2px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    border-bottom: 1px solid rgba(120,120,120,0.7);
    border-left: red 5px solid;
    padding: 0 10px 0 10px;
    margin-top: 25px;
    background-color: white;
    box-shadow: 2px 2px 5px black;
}
.message p{
    margin-top: 70px;
    margin-left: 20px;
    font-size: 18px;
    line-height: 1.3;
}


/*===========================

company_profile

=============================*/
/*dt dd*/
.table_p{
    background: #eee;
    margin: 25px 75px;
    padding: 5px 20px;
}
.table_o{
    padding: 0 20px;
}
.table_top{
    border-top: none;
}


/*map*/
iframe{
    margin: 20px auto;
    width: 100%;
}




/*============================

            Recruit

==============================*/
/*背景*/
#main_r, #main_o{
    margin: 65px 100px;
}
/*一般←→フリーランスの装飾*/
#main_r .content_r ul{
    display: flex;
}

.v_line_fix {
    margin: 0 12px 0 15px;
    width: 3px;
    background-color: #808080;
  }

/* #recruit_r .content_r ul li,#recruit_r .content_r ul li a */
.content_r a{
    color: #505050;
}
.link_r, .link_f{
    font-size: max(min(6vw,25px),20px);
    color: #a7a7a7;
}
#recruit_r .content_r .link_f{
    opacity: 0.5;
}
#recruit_f .content_r ul li,#recruit_f .content_r ul li a{
    font-size: 30px;
    color: #505050;
}
#recruit_f .content_r .link_r{
    opacity: 0.5;
}
.form_r{
    font-size: max(min(6vw,20px),18px);
    margin-top: 15px;
    color: #e07676;
}
.form_r a{
    margin-top: 10px;
}
.form_r:hover{
    opacity: 0.6;
}
/*見出し*/
#main_r h2{
    margin-top: 25px;
    font-size: 40px;
    width: 7em;
    color: #505050;
    background: linear-gradient(transparent 90%, #505050 0%);
}
/*text*/
#main_r p{
    margin-top: 25px;
    padding: 10px;
    font-family: 'BIZ UDGothic', sans-serif;
    font-size: 16px;
    color: #505050;
    line-height: 1.5;
}
/*======
tabの設定
========*/
.tab_wrap{
    margin-top: 25px;
}
#recruit_f .tab_wrap{
    margin-top: 30px;
}
#tab1:checked~.panels #area1 {
	display: block;
}
#tab2:checked~.panels #area2 {
	display: block;
}
#tab3:checked~.panels #area3 {
	display: block;
}
#tab4:checked~.panels #area4 {
	display: block;
}
#tab5:checked~.panels #area5 {
	display: block;
}
.panel{
    display: none;
}
input[name="check"]{
    display: none;
}
/*tabの装飾*/
#main_r label{
    font-size: 25px;
    margin-right: 25px;
    opacity: 0.5;
}
#main_r label:hover{
    opacity: 1;
    cursor: pointer;
    border-bottom: 2px solid;
    transition: 0.2s;
}
#tab1:checked~.tab_lab1{
    opacity: 1;
    border-bottom: 2px solid;
}
#tab2:checked~.tab_lab2{
    opacity: 1;
    border-bottom: 2px solid;
}
#tab3:checked~.tab_lab3{
    opacity: 1;
    border-bottom: 2px solid;
}
#tab4:checked~.tab_lab4{
    opacity: 1;
    border-bottom: 2px solid;
}
#tab5:checked~.tab_lab5{
    opacity: 1;
    border-bottom: 2px solid;
}
#tab6:checked~.tab_lab6{
    opacity: 1;
    border-bottom: 2px solid;
}

/*=================
アコーディオンパネル
===================*/
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 35px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}
ul li section{
    margin: 35px 20px 0;
}

/*アコーディオンタイトル*/
.title_a{
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:30px;
    font-weight: normal;
    transition: all .5s ease;
    border-bottom: 2px solid #aaa;
    display: inline-block;
}

/*　closeというクラスがついたら形状変化　*/

.title_a.close::before{
	transform: rotate(45deg);
}

.title_a.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box_r {
    display: none;/*はじめは非表示*/
    margin-top: 35px;
    font-size: 18px;
    line-height: 1.5;
    font-family: 'BIZ UDGothic', sans-serif;

}
.box_r dt{
    float: left;
}
dd{
    margin-left: 20%;
}
.box_r .recruit_link{
    margin-top: 20px;
    text-align:right;
    font-size: 20px;
}
.box_r a{
    color: #808080;
    border-bottom: 2px solid;
}
.box_r a:hover{
    opacity: 0.7;
}


/*========================================

                offer

==========================================*/
/*見出し*/

/*box*/
/**/
#main_o h2{
    border-left: #505050 5px solid;
    padding-left: 10px;
    font-size: 30px;
    color: #707070;
}
#main_o h3{
    margin-bottom: 10px;
    font-size: 30px;
}
.box_o {
    margin-top: 35px;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'BIZ UDGothic', sans-serif;
}
.box_o dt{
    float: left;
}
.box_o dd{
    margin-left: 20%;
}
.box_o .recruit_link{
    margin-top: 20px;
    text-align:right;
    font-size: 20px;
}
.box_o a{
    color: #808080;
    border-bottom: 2px solid;
}
.box_o a:hover{
    opacity: 0.7;
}
.table_o{
    padding: 15px 0;
    border-top: #808080 1px solid;
}


/*======================

    business

========================*/
/*見出し*/
.b_info h2{
    font-size: 74px;
    color: #ffc000;
    line-height: 0.85;
    margin: 40px 0 0 20px;
    margin-right: 50px;
    margin-top: 40px;
    text-shadow:3px 0 0 #000,3px 3px 0 #000,
                0 3px 0 #000, -1px 0 0 #000,
                0 -1px 0 #000;
    position: relative;
    z-index: 1;
    display: inline-block;
}
#main_b h2 .b_text1{
    font-size: 44px;
    color: white;
    text-shadow:2px 0 0 #000,2px 2px 0 #000,
    0 2px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
}
#main_b h2 .b_text2{
    color: white;
}
.business_info h2::before{
    content: "";
    background-color: aqua;
    transform: skewX(-30deg);
    height: 20px;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}
.b_info p{
    font-size: 40px;
    color: white;
    text-shadow:2px 0 0 #000,2px 2px 0 #000,
    0 2px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    text-align: center;
    margin-top: 50px;
    line-height: 1.5;
}
.b_solution h2{
    font-size: 44px;
    color: white;
    text-shadow:2px 0 0 #000,2px 2px 0 #000,
    0 2px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    text-align: center;
    margin-top: 75px
}
.b_solution h2 span{
    font-size: 74px;
    color: red;
    margin-right: -15px;
}
/*info内容*/
.business_info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
}
.info{
    text-align: center;
    width: 30%;
}
.business_info h2{
    font-size: 44px;
    color: #505050;
    text-shadow: none;
}
.business_info img{
    margin-top: 50px;
}
.business_info p{
    font-size: 20px;
    color: #505050;
    text-shadow: none;
    line-height: 2;
}



/*ソリューション内容*/
.s_section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    width: 75%;
}
.s_section section{
    max-width: 30%;
    margin: 20px 0px;
}
.s_section h3{
    font-size: 20px;
}
.s_section ul li{
    font-size: 18px;
    line-height: 1.5;
}

/*事業内容(NEWS)*/
#b_content{
    margin: 65px 50px;
}

.business_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 10px;
}

.business_content img{
    width: 40%;
}

.business_content section{
    max-width: 40%;
    margin: 20px 0px;
}

.business_content div{
    width: 40%;
}

.business_box{
    padding: 0.5em 1em;
    color: #232323;
    background: #fff8e8;
    border-left: solid 10px #ffc06e;
}

.business_box a{
    font-size: 30px;
	color: #ffc000;
	text-shadow: 1px 2px 3px #000000;
	position: relative;
    display: inline-block;
    text-decoration: none;
}

.business_box a::after {
    position: absolute;
    bottom: -3px;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: #000000;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

.business_box a:hover::after {
	transform: scale(1, 1);
}

.business_box a span{
	background: #000000;
	border-radius: 50%;
	color: #fff;
	text-align: center;
}

.business_box p{
	margin: 0;
    padding: 0;
    width: 100%;
    font-size: 18px;
    line-height: 1.5;
}

.business_space{
    margin-bottom: 1em;
}

/*開発実績*/
#main_d{
    margin: 65px 50px;
}

.dev_design1{
    width: 100%;
    padding: 15px;
    margin: 2em auto;
    background: #CCFFFF;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.03);transform:rotate(2deg);
    word-break: break-all;
}

.dev_design2{
    width: 50%;
    height: 35px;
    margin: -25px auto 0;
    background: #989898;
    transform: rotate(-3deg);
    opacity: 0.1;
}

.dev_design3{
    width: 100%;
    padding: 15px;
    margin: 4em auto;
    background: #CCFFFF;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.03);transform:rotate(-2deg);
    word-break: break-all;
}

.dev_design4{
    width: 50%;
    height: 35px;
    margin: -25px auto 0;
    background: #989898;
    transform: rotate(3deg);
    opacity: 0.1;
}

.dev_title1{
	text-shadow: 1px 1px 1px rgb(61 70 70);
	border-top: 3px solid #ffc000;
	border-bottom: 3px solid #ffc000;
	padding: 10px;
	color: #ffc000;
	text-align: center;
	margin: 1.0em 0;
	margin-right: 10%;
	margin-left: 10%;
	transform: rotate(-2deg);
}

.dev_title2{
	text-shadow: 1px 1px 1px rgb(61 70 70);
	border-top: 3px solid #ffc000;
	border-bottom: 3px solid #ffc000;
	padding: 10px;
	color: #ffc000;
	text-align: center;
	margin: 1.0em 0;
	margin-right: 10%;
	margin-left: 10%;
	transform: rotate(2deg);
}

.dev_info1{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
    justify-content: space-around;
    margin-top: 10px;
	transform: rotate(-2deg);
}

.dev_info2{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
    justify-content: space-around;
    margin-top: 10px;
	transform: rotate(2deg);
}

.dev_info1 img{
    width: 45%;
}

.dev_info2 img{
    width: 45%;
}

#main_d table{
	border-collapse: collapse;
}

#main_d td{
	border: none;
	border-bottom: 1px solid black;
	border-color: #808080;
    padding: 10px;
	line-height: 2;
}

#main_d td:first-child{
	vertical-align: top;
}

/*====================

    philosophy

======================*/
#main_p{
    padding-bottom: 30px;
}
/*見出し*/
.title_p{
    text-align: center;
}
.title_p h2{
    font-size: 74px;
    color: #ffc000;
    line-height: 0.85;
    margin: 40px auto 0;
    margin-top: 50px;
    text-shadow:3px 0 0 #000,3px 3px 0 #000,
                0 3px 0 #000, -1px 0 0 #000,
                0 -1px 0 #000;
}
.p_span1{
    font-size: 44px;
    color: white;
}
.p_span2{
    color: cyan;
}
.p_span3{
    color: white;
    font-size: 44px;
}
.title_p{
    position: relative;
}
.title_p img{
    margin-top: 40px;
}
.p_fukidashi{
    position: absolute;
    left: -15%;
    top: 10%;
}

/*内容の見出し*/
.midashi_p h2{
    color: #5e5e5e;
    font-size: 45px;
    text-align: center;
    text-decoration: underline;
    margin-top: 25px;
}
.midashi_p h3{
    text-align: center;
    font-size: 25px;
    color: #505050;
    padding-top: 10px;
}

/*中身の文章*/
.midashi_p p{
    text-align: center;
    padding: 0 20px 0;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 20px;
    color: #505050;
}

/*================================

partnerships

==================================*/
/*見出し*/
#main_bp .sentence h2{
    color: #5e5e5e;
    font-size: 45px;
    text-align: center;
    text-decoration: underline;
    margin-top: 10px;
}
#main_bp .sentence p{
    color: #505050;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    padding: 20px 50px 0;
}
.sentence{
    border: 1px solid;
    margin: 20px;
    background-color: #eee;
}

.ps h2{
    font-size: 30px;
    color: white;
    text-shadow:2px 0 0 #000,1px 2px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    border-bottom: 1px solid rgba(120,120,120,0.7);
    border-left: red 5px solid;
    padding: 0 10px 0 10px;
    margin-top: 25px;
    margin-left: 10px;
    background-color: white;
    display: inline-block;
    box-shadow: 2px 2px 5px black;
}
.common{
    margin-left: 25px;
    padding: 10px;
}
.ps p{
    font-size: 16px;
    line-height: 1.5;
}

.ps span{
    font-size: 44px;
}
.orange{
    color: #ff9c01;
}
.parple{
    color: #ff00f0;
}
.yellow{
    color: #fcff00;
}
.red{
    color: red;
}
#main_bp h3{
    color: #5e5e5e;
    font-size: 20px;
    text-decoration: underline;
    margin-top: 10px;
}
/**/
.btn3{
    width: 300px;
    height: 75px;
    line-height: 75px;
    margin-top: 40px;
}
.btn3 a{
    font-size: 25px;
}

/*===========================

contact

=============================*/
/**/
#main_con{
    margin: 25px 50px;
    padding: 10px 0;
    background-color: white;
}
.Form {
    margin: 50px auto 50px;
    max-width: 720px;
  }
  @media screen and (max-width: 750px) {
    .Form {
      margin-top: 0px;
    }
  }
  .Form-Item {
    border-top: 1px solid #ccc;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: flex-start;
  }
  @media screen and (max-width: 750px) {
    .Form-Item {
      padding-left: 14px;
      padding-right: 14px;
      padding-top: 16px;
      padding-bottom: 16px;
      flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 16px;
  }
  @media screen and (max-width: 750px) {
    .Form-Item-Label {
      max-width: inherit;
      display: flex;
      align-items: center;
      font-size: 15px;
    }
  }
  .Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }
  @media screen and (max-width: 750px) {
    .Form-Item-Label.isMsg {
      margin-top: 0;
    }
  }
  .Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 36px;
    display: inline-block;
    text-align: center;
    background: red;
    color: #fff;
    font-size: 14px;
  }
  @media screen and (max-width: 750px) {
    .Form-Item-Label-Required {
      border-radius: 4px;
      padding-top: 4px;
      padding-bottom: 4px;
      width: 32px;
      font-size: 10px;
    }
  }
  .Form-Item-Input ,select{
    border: 1px solid #aaa;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 36px;
    flex: 1;
    max-width: 410px;
    width: 100%;
    background: #eaedf2;
    font-size: 18px;
  }
  .c_box{
    margin-top: 10px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    flex: 1;
    max-width: 410px;
    font-size: 18px;
  }
  select{
    max-width: 280px;
  }
  @media screen and (max-width: 750px) {
    .Form-Item-Input {
      margin-left: 0;
      margin-top: 18px;
      height: 40px;
      flex: inherit;
      font-size: 15px;
    }
  }
  .Form-Item-Textarea {
    border: 1px solid #aaa;
    margin-left: 40px;
    padding-left: 0.5em;
    padding-right: 0.5em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
  }
  @media screen and (max-width: 750px) {
    .Form-Item-Textarea {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 15px;
    }
  }
  .Form-Btn {
    border-radius: 3px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0;
    width: 200px;
    display: block;
    letter-spacing: 0.05em;
    background: #ff9c01;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
  }
  .Form-Btn:hover{
    cursor: pointer;
  }
  @media screen and (max-width: 750px) {
    .Form-Btn {
      margin-top: 24px;
      padding-top: 8px;
      padding-bottom: 8px;
      width: 160px;
      font-size: 16px;
    }
  }
  .Form-Item-File{
    font-size: 18px;
    max-width: 410px;
    width: 100%;
  }
  .not_required{
    margin-left: 2.8em;
  }
  .nr_d{
    margin-left: -0.3em;
  }
  .privacy{
    margin: 25px auto;
  }
.p_policy{
    color: white;
    background-color: #ddd;
    text-shadow:1px 0 0 #000,1px 1px 0 #000,
    0 1px 0 #000, -1px 0 0 #000,
    0 -1px 0 #000;
    border: #5e5e5e 1px solid;
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #aaa;
}
.scroll-box{
    width: 600px;
    height: 200px;
    border: #aaa 1px solid;
    overflow-y: scroll;
    margin: 10px auto;
}
.mwform-checkbox-field label{
    display: block;
}
.box_size{
    border: 1px solid #aaa;
    margin-left: 40px;
    padding-left: 0.5em;
    padding-right: 0.5em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}
@media screen and (max-width: 750px) {
    .box_size {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 15px;
    }
    .w3eden .media{
        display: block;
    }
  }
  /* .card{
    max-width: 50%;
    height: auto;
    margin: auto;
  } */
  /* .btn-primary{
    width: 200px;
    height: auto;
  } */
  .link-template-default{
    max-width: 500px;
    margin: 0 auto;
  }

/*================================

            thanks

==================================*/
.send{
    margin: 50px 10%;
    padding: 10px;
    border: #707070 1px solid;
    background-color: #eee;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

/*=================================

                SP

===================================*/

@media screen and (max-width:750px) {/*sp*/
    /*==========
    header
    ============*/
    header{
        height: 80px;
    }
    .hamburger-menu{/*隠れているボタンを表示*/
        display: block;
    }
    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: white;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #808080;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::before,
    #menu-btn-check:checked ~ .menu-btn span::after{
        background-color: #fff;
        transition: all 0.5s;/*アニメーション設定*/
    }
    #menu-btn-check {/*check btnを隠す*/
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #d69731;
    }
    .menu-content ul {
        padding: 70px 10px 0;
    }
    .menu-content ul li {
        border-bottom: solid 1px #ffffff;
        list-style: none;
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#ffffff;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
        border-bottom: #fff solid 1px;
    }
    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #ffffff;
        border-right: solid 2px #ffffff;
        transform: rotate(45deg);
        position: absolute;
        right: 20px;
        top: 16px;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #d69731;
        transition: all 0.5s;/*アニメーション設定*/
    }
    #menu-btn-check:checked ~ .menu-btn{
        background-color: #d69731;
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }
    /*パンくずリスト*/
    .bread{
        padding-top: 105px;
        margin-top: 0;
    }
    
    /*==========
    TOPページ
    ============*/
    /*key visual*/
    .delayScroll{
        display: none;
    }
    #key_v .sp{
        display: block;
        width: 100%;
    }
    #key_v{
        height: auto;
        padding: 0;
    }
    /*#recruit*/
    .fukidashi{/*吹き出しは消す*/
        display: none;
    }
    .main-btn{
        width:250px;
        height:62.5px;
        line-height: 62.5px;
    }
    .main-btn a{
        font-size: 20px;
    }
    #recruit h2{
        font-size: max(6vw, 45px);
        margin: 15px auto;
        text-align: center;
        text-shadow:1px 0 0 #000,1px 1px 0 #000,
                    0 1px 0 #000, -1px 0 0 #000,
                    0 -1px 0 #000;
    }
    #recruit h2::before{
        display: none;
    }
    #recruit h2 span::before{
        display: none;
    }
    #recruit p{
        font-size: max(6vw, 20px);
    }
    .recruit_n1{
        font-size: max(6vw, 25px);
    }
    .recruit_t1{
        font-size: max(6vw, 25px);
    }
    #recruit .recruit_t2{
        font-size: max(6vw, 25px);
    }
    /*#freelance*/
    .back{
        bottom: 0;
    }
    .cloud ul{
        background: none;
    }
    .cloud ul{
        margin: 2%;
        background-color: rgba(20,20,20,0.2);
        border: 1px solid;
    }
    #freelance{
        margin-top: 25px;
    }
    #freelance h2{
        text-align: center;
        font-size: max(6vw, 35px);
        margin: 0 auto;
                text-shadow:1px 0 0 #000,1px 1px 0 #000,
                    0 1px 0 #000, -1px 0 0 #000,
                    0 -1px 0 #000;

    }
    #freelance h2::before{
        display: none;
    }
    #freelance h2 span::before{
        display: none;
    }
    .freelance_midashi{
        background: none;
        height: auto;
        margin-bottom: 50px;
    }
    #freelance p{
        font-size: max(6vw, 25px);
        text-shadow:1px 0 0 #000,2px 2px 0 #000,
        0 2px 0 #000, -1px 0 0 #000,
        0 -1px 0 #000;
    }
    #freelance p .small{
        font-size: max(4vw, 25px);
    }
    #freelance .working{
        text-align: center;
        margin: 0 auto;
        font-size: max(4vw, 30px);
    }
    #freelance ul{
        padding-top: 20px;
    }
    #freelance ul li{
        font-size: max(4vw, 28px);
    }
    #freelance .sub_m p{
        font-size: max(4vw, 20px);
        text-shadow:1px 0 0 #000,1px 1px 0 #000,
        0 1px 0 #000, -1px 0 0 #000,
        0 -1px 0 #000;   
    }
    .arrow{
        border-width: 15px 15px 0 15px;
        margin-top: 10px;
    }
    /*会社概要*/
    #company h2{
        font-size: max(6vw, 35px);
    }
    .company_t, .company_b, .company_p{
        bottom: 0;
        left: 0;
        right: 0;
    }
    .company_t h3, .company_b h3, .company_p h3{
        bottom: 0;
        left: 0;
    }
    .heading{
        font-size: max(6vw, 45px);
        padding: 10px;
    }
    .heading::before{
        display: none;
    }
    #company p{
        width: 100%;
        font-size: max(4vw, 25px);
        padding: 5px;
    }
    .about .more{
        right: 0px;
        bottom: 0px;
    }
    .business .more{
        left: auto;
        right: 0px;
        bottom: 0px;
    }
    .partner .more{
        right: 0px;
        bottom: 0px;
    }
    /*gallery*/
    #gallery{
        display: block;
    }
    .recruit_banner{
        width: 95%;
        padding: 10px;
        margin: 0 auto;
    }
    .twitter-timeline{
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }
    /*article*/
    .midashi{
        background-size: 100%;
        width: 100%;
        font-size: min(10vw, 40px);
        height: 150px;
        line-height: 150px;
    }
    header img{
        width: 100px;
    }
    /*about us*/
    .img_box,.img_box_1,.img_box_2{
        width: 100%;
        height: 200px;
    }
    .about-us02{
        top: -50%;
    }
    .img_box_1{
        margin: 10% auto;
    }
    .about-us04{
        width: 70%;
        top: -20%;
    }
    .about-us05{
        width: 80%;
        
        bottom: 0;
    }
    .about-us06{
        width: 80%;
        top: -25%;
        right: 0;
    }
    /*president message*/
    .message{
        display: block;
        align-items: center;
    }
    .pm img{
        width: 100%;
    }
    .pm h2{
        font-size: max(6vw, 30px);
    }
    .message p{
        margin-top: 20px;
        margin-left: 0;
        font-size: max(4vw, 18px);
    }
    /*company profile*/
    .box_o dt{
        float: none;
        border-bottom: #5e5e5e 1px solid;
        display: inline-block;
    }
    .box_o dd{
        margin: 5px 0;
    }
    .table_o{
        border: none;
    }
    .table_p{
        margin: 10px 20px;
    }
    #main{
        margin: 10px;
    }
    /*philosophy*/
    #main_p{
        margin: 10px;
    }
    .title_p h2{
        font-size: max(6vw, 40px);
        margin: 20px auto 0;
    }
    .p_span1, .p_span3{
        font-size: max(4vw, 25px);
    }
    .p_fukidashi{
        display: none;
    }
    .midashi_p p{
        background: white;
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
    }
    /*recruit*/
    #main_r{
        margin: 5px;
    }
    #main_r label{
        font-size: max(4vw, 20px);
        margin-right: 10px;
    }
    .title_a{
        font-size: max(4vw, 24px);
    }
    .box_r{
        margin-top: 15px;
        font-size: max(4vw, 16px);
    }
    .box_r dt{
        float: none;
        border-bottom: #5e5e5e 1px solid;
        display: inline-block;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .box_r dd{
        margin-left: 5px;
    }
    /*offer*/
    #main_o{
        margin: 5px;
    }
    /*business*/
    #main_b{
        margin: 5px;
    }
    .b_info h2{
        font-size: max(6vw, 40px);
        margin: 20px;
        text-align: center;
    }
    #maian_b h2 .b_text1{
        font-size: 20px;
    }
    .b_info p{
        font-size: max(4vw, 24px);
    }
    .business_info{
        display: block;
        margin-top: 20px;
    }
    .info{
        width: 100%;
    }
    .business_info h2{
        font-size: max(6vw, 30px);
    }
    .business_info img{
        margin-top: 10px;
    }
    .b_solution h2{
        font-size: max(6vw, 30px);
    }
    .b_solution h2 span{
        font-size: max(6vw, 50px);
    }
    .s_section{
        display: block;
        width: 100%;
    }
    .s_section section{
        max-width: 100%;
        text-align: center;
    }
    /*partner ships*/
    #main_bp{
        margin: 10px;
    }
    #main_bp .sentence h2{
        font-size: max(min(4vw, 30px),20px);
    }
    #main_bp .sentence p{
        padding: 5px;
    }
    .sentence{
        margin: 0;
    }
    #main_bp .main-btn{
        margin-bottom: 20px;
    }
    .ps h2{
        font-size: max(4vw, 24px);
        margin-left: auto;
    }
    .ps span{
        font-size: max(4vw, 30px);
    }
    /*contact*/
    #main_con{
        margin: 5px 10px;
    }

    .scroll-box{
        width: 100%;
    }
    .c_box{
        margin-left: 0;
    }
    select{
        margin-left: 0;
        margin-top: 18px;
    }
    /*business*/
    .b_info h2,#main_b h2 .b_text1{
        font-size: max(4vw, 30px);
        text-shadow:1px 0 0 #000,1px 1px 0 #000,
        0 1px 0 #000, -1px 0 0 #000,
        0 -1px 0 #000;
    }
    #main_b h2 .b_text1{
        display: inline-block;
    }
    .business_info h2{
        text-shadow: none;
    }
	.business_content img{
		width: 100%;
	}
	.business_content section{
        max-width: 40%;
        margin: 20px 0px;
	}
	.business_content div{
        width: 100%;
	}
	.business_content a{
        font-size: 30px;
	}
	.business_content p{
		font-size: 18px;
		line-height: 1.5;
	}
	.business_space{
		margin-bottom: 1em;
	}
	/*business_info*/
	#main_d h2{
		margin-right: 8%;
		margin-left: 8%;
	}
	.dev_info1 img{
        width: 65%;
	}
	.dev_info2 img{
        width: 65%;
	}
}</pre></body></html>