@charset "utf-8";
/*====================
スマホを基本設計にする
- 〜479px：スマートフォン縦
- 480px〜599px：スマートフォン横
- 600px〜959px：タブレット
- 960px〜1279px：小型PC
- 1280px〜：大型PC
====================*/

/*
VARIABLES
================================================ */
:root {
    --blue: #0516D4;
    --vi-blue:#0017E6;
    --white:#fff;
    --light-gray:#EFEFEF;
    --gray:#727887;
    --font:  "YuGothic", "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", sans-serif;
    --sub-font:"小塚ゴシック Pr6N","Kozuka Gothic Pr6N", "san-serif";
}
/*
GENERAL STYLING
================================================ */
*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
    box-sizing: border-box;
    font-family: var(--font);
    scroll-behavior: smooth;
    overflow-x:hidden;
    background-color:var(--white);

}
body {
    font-size: 1.6rem;


}
h1{

        font-size: 6.5vw;
        color: var(--white);
        font-weight: bold;
        letter-spacing: 0.05em;
        font-family: var(--font);
        line-height: 1.8;

}
h2{
    font-size: 2rem; /* 30px */
    font-weight: lighter;
    line-height: 1.6;
    
}
h2.en-title{
    font-size: 2.6rem;
}
h2.section-title{
    font-size: 9.6vw;
    font-weight: bold;
    line-height: 1.1;
}
h2.ja-title{
    font-size: 3.2vw;
    text-align: left;
    font-weight: bold;
}
p{
    font-size: 1.5rem; /* 15px */
}
p.content-text{
line-height: 2.1;
margin: 30px 0 20px;
}

.pc-only{
    display: none;
}
.sp-only{
    display: block;
}
.indent{
    display: inline;
}
.indent-sp{
    display: block;
}
/*
COMMON
================================================ */
img{
    max-width: 100%;
}

.fadeIn{
    opacity: 0;
}
.white-line{
    display: block;
    width: 100vw;
    height: 1px;
    margin-left: calc(-50vw + 50%);
    background-color: var(--white);
}


/*====================
START→SP
====================*/

/* loading
=============================================== */

#loading{
    position: fixed;
    display: grid;
    inset:0;
    place-items: center;
    background-color:var(--blue);
    z-index: 1001;



}
#loader{
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 20%;
    right: 25%;
}
svg{
fill:transparent;
stroke: var(--white);
width: 130px;
height: 130px;
stroke-width: 2px;
stroke-dasharray: 600;
stroke-dashoffset: 100;
animation: move .5s infinite ease-in;
}

@keyframes move{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
#loader008 {
width: 0em;
height: 5em;
font-size: 1.6rem;
color: var(--white);
position: absolute;
top:45%;
left: 56%;
opacity: 0;
transform: translate(-50%, -50%);
text-align: center;
vertical-align: center;
margin-top: 75%;
}

#loading.loaded {
    opacity: 0;
    visibility: hidden;
}



/*header
=============================================== */

#header{
    width: 100%;
    height: 70px;
    background:transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px 20px;
    position: relative;
    position: fixed;
    top:0;
    z-index: 1000;

}
.header-logo{
    width: 120px;
    z-index: 1000;
    position: relative;
}

.menu-open{
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 9999;
    position: relative;


}
.menu-open span{
    display: block;
    width: 30px;
    height: 3.5px;
    margin:0;
    position:absolute;
    top:15px;
    right:10%;
    transition: .3s;
    z-index: 9999;
    background-color:var(--blue);


}

.menu-open span:nth-of-type(2){
    top:25px;
    width: 30px;


}
span.menu-span.js-white{
    background-color:var(--white);

}

.menu-open.close span{
    right:10%;
    background-color:var(--white);


    
    
}
.menu-open.close span:nth-of-type(1){
    transform: rotate(45deg);
    background-color:var(--white);

}
.menu-open.close span:nth-of-type(2){
    width: 30px;
    top:15px;
    transform: rotate(-45deg);
    background-color:var(--white);

}
nav.menu-panel{
    background-color: var(--blue);
    width: 100vw;
    height: 100vh;
    padding: 25px 20px 40px;
    position: fixed;
    top:0;
    right:0;
    text-align: left;
    translate:101vw 0;
    z-index: 999;
}
ul.nav-menu{
    padding: 90px 0 0;
}
.nav-menu li{
    margin-top: 15px;
    font-size: 2rem;
    padding:0px 0 10px;
    
}

.nav-menu li a{
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: block;

}

.inner-company{
    margin: auto;
    width: 95%;
    z-index: 1;
    position: relative;
}
#mask{
    position: fixed;
    z-index: 998;
    inset: 0px;
    place-items: center;
    background-color: rgba(250, 250, 250, 0.7);
    visibility: hidden;
    opacity:0;
    backdrop-filter: blur(10px);
}


/*mainvisual
=============================================== */
#mainvisual{
    height: 70vh;
    width: 100vw;
    background-color: var(--white);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: -1;
    margin-top: 70px;


}

.slogan{
    padding: 14vh 10px 3vh;
}
@media screen and (max-width:385px) {

    #mainvisual{
        height: 67.5vh;
    }
    .slogan{
        padding-top: 11vh;
    }
}

.icons{
    margin: 0 10px;
}

/*mission
=============================================== */
#mission{
    padding: 0px 20px 120px;
    border-radius: 20px;
    background-image: url(../img/mission-bg.png);
    background-size: cover;
    color: var(--white);
    position: relative;
    height: auto;
}


p.mission-text{
    margin: 30px 0 5vh;
    line-height: 2.2;
    color: var(--white);
}

.mission-wrap h2{
    color: var(--white);
    line-height: 1.7;
    padding-bottom: 10px;
}
#mission h2.ja-title{
    color: var(--white);
}
@media screen and (max-width:385px) {
    h2 b{
        font-size: 3.2vw;
    }
}
a.btn{
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    text-align: left;
    font-weight: bold;
    margin-top: 50px;
    margin-right: 80px;
    position: relative;
}
a.btn:before{
    content:"";
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    position:absolute;
    left: 95px;
    bottom: -15px;
}
a.btn::after{
    content:"";
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/btn-arrow-b.png) no-repeat center/contain;
    position: absolute;
    left: 114px;
    bottom:3px;
}
a.btn span{
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--white);
    padding-bottom: 2px;
}


/*visual section
=============================================== */

.visual-section {
	position:relative;
}
.visual-section-inner {
	position:relative;
	overflow:hidden;
    height: 13vh;
}
.rotating-animation {
	position: absolute;
	top: -60px;
	right: 0px;
	display: block;
	width: 110px;
	height: 110px;
	cursor: pointer;
}
.rotating-animation span {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rotating-animation span::before, .rotating-animation span::after {
	content: '';
	display: block;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.rotating-animation span::before {
	width: 32px;
	height:32px;
	background-image: url(../img/arrow-b.png);
}
.rotating-animation span::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/arrow-circle-b.png);
	animation: rotating 10s linear infinite;
}
.rotate-white span::before {
	background-image: url(../img/arrow-w.png);
}
.rotate-white span::after {
	background-image: url(../img/arrow-circle-w.png);
}
@keyframes rotating {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

.mission-bg{
    background-color: var(--white);
}


/*BUSINESS
=============================================== */
#our-business{
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
    overflow: hidden scroll;
}
.business-text-box{
    text-align: left;
}
#business-img{
    width: 105vw;
    margin: 0 calc(50% - 52.7vw);
}
#our-business img{
    width: 100%;
    margin:0px auto 20px;
}
#our-business h2.ja-title{
    margin-bottom: 10px;
}
#our-business p.content-text{
    text-align: center;
}
#our-business h2.section-title{
    color: var(--blue);
}
a.business-button{
    display: inline-block;
    width: 30vw;
    height: 30vw;


}
.marketing-button{
    position: absolute;
    /* background-color: var(--blue); */
    top:35%;
    left:16%;
}
.hr-button{
    position: absolute;
    /* background-color: var(--gray); */
    top:35%;
    left:54%;
}  
.business-item{
    display: block;
    margin: 20px 0;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-align: left;
    letter-spacing: 0.05em;
    position: relative;
}
.to-matketing{
    margin-top: 40px;

}
.business-item::after{
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    position: absolute;
    left:150px;
    bottom: 4px;
    background: url(../img/business-arrow.png) no-repeat center/contain;
    
}

/*MARKETING
=============================================== */
.marketing-bg{
    background-color: var(--white);
    padding: 0 12px;
}
.head-box{
    margin-left: 16vw;
    position: relative;
}
.head-box::before{
    content: "";
    display: block;
    width: 12vw;
    height: 12vw;
    position: absolute;
    top:6px;
    left: -56px;
    background: url(../img/marketing-head-icon.png) no-repeat center/contain;
}
#marketing{
    color: #000;
    padding: 100px 12px 40px;
    background-color:var(--light-gray);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;

}
.marketing-img{
    width: 90%;
    margin: 30px auto 0px;
}
#marketing h2.en-title.blue{
    font-size: 3rem;
    margin-bottom: 18px;
}




/*SERVICE
=============================================== */

span.gray-line.center{
    background-color: #808080;
    margin: 25px auto;
    display: block;
}
.gray-bg{
    background-color: var(--light-gray);
}
#service{
    padding: 30px 0px 80px;
    background-color: var(--light-gray);

}
/* h2.en-title.blue{
    font-size: 2.4rem;
    color: #0016DF;
    font-family: var(--sub-font);
    font-weight: 400;
} */

p.title-text{
    font-size: 4.5vw;
    font-weight: 300;
    line-height: 1.3;
    color: #000;
}
.service-container{
    display: flex;
    align-items: center;
    padding:5px 20px;
    margin: 20px 12px;
    background-color: var(--white);
    border-radius: 5px;
    
}
.service-icon{
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
.service-text-content{
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
}
.service-text-content-box{
    display: block;
    margin: 0px 0;
}

p.content{
    color: #000;
    font-size: 1.4rem;
    line-height: 1.5;
}
a.btn.blue{
    color: var(--vi-blue);
}
a.btn.blue:before{
    background-color: var(--vi-blue);
}
a.btn.blue::after{
    background: url(../img/btn-arrow-w.png) no-repeat center/contain;

}
a.btn.blue span{
    border-bottom: 1px solid var(--blue);
}
/*human resources
=============================================== */

#humanresources{
    background-color: var(--blue);
    color: var(--white);
    padding: 100px 12px 40px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    position: relative;

}
#humanresources .head-box::before{
    background: url(../img/recruiting-head-icon.png) no-repeat center/contain;
}
#mission::after,
#humanresources::after,
#service::after{
    content: "";
    display: block;
    background-color: var(--white);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 0;
}
#humanresources h2.section-title{
    font-size: 9.1vw;
}

.hr-img{
    width: 90%;
    margin: 30px auto 0;
}
p.white{
    color:var(--white);
}
#service{
    position: relative;
}
#service.hr{
    color: var(--white);
    background-color: var(--blue);
    /* NEWSを追加したらこっち */
    /* border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px; */
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

}
#service.hr a.btn{
    margin-top: 60px;
}
/*news
=============================================== */

#news{
    padding: 110px 20px 130px;
    background-color: var(--white);


}
#news h2.section-title{
    color: var(--vi-blue);
    font-weight: bold;
    
}
#news h2.ja-title{
    margin-bottom: 40px;
}

.news-item
{
    display: block;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: var(--light-gray);
}
p.date{
    color: var(--blue);
}

/*footer
=============================================== */
#footer{
    background-color: var(--white);
    padding: 10px 0 0;


}
hr{
    color: var(--white);
    width: 100vw;
}
.section-box{
    display: block;
    width: 100%;
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}
.cpa-text{
    font-size: 1.4rem;
    padding-bottom: 10px;
}

#contact, #company{
    padding: 70px 0px;
    text-align: center;

}


#contact h2, #company h2{
    font-size: 2.4rem;
    margin-bottom: 20px;
    
}

.section-box a.btn{
    display: block;
    margin:60px auto 0;
    width: 10%;

}
.section-box a.btn:before{
    display: block;
    border: solid 1px var(--white);
    background-color: transparent;
    left: 0px;
    bottom: 0px;
}
.section-box a.btn::after{
    content:"";
    display: block;
    background: url(../img/btn-arrow-w.png) no-repeat center/contain;
    position: absolute;
    left: 15px;
    bottom:15px;
}

ul.footer-nav{
    padding: 30px 20px;
    padding-bottom: 0;
}
ul.footer-nav:nth-last-of-type(1){
    padding-top: 0;
}
.footer-nav li{
    margin: 12px 0;
}
.footer-nav li a{
    color: #000;
    display: block;
    text-decoration: none;
}
.footer-logo{
    width: 100px;
    margin: 0 20px;

}
.footer-box{
    display: flex;
    justify-content: space-between;
    align-items: baseline;

}
.map{
    width: 25vw;
    padding-top: 10px;
}
#footer .map{
    width: 30vw;
    padding-left: 20px;
}
span.gray{
    font-weight: normal;
    color: #989898;
}

.copyright{
    text-align: center;
    height: auto;
    padding: 15px;
    color:#989898 ;


}
.copyright a{
    text-decoration: none;
    color: #989898 ;
}
p.address{
    padding: 10px 20px;
    font-size: 1.4rem;
    
}
#page-top{
    background-color: var(--white);
    width: 30px;
    height: 30px;
    position:fixed;
    bottom:5%;
    right: 5%;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0px 0px 10px rgba(9, 16, 155, 0.1);

}
#page-top a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;


}
#page-top a:before{
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    position: absolute;
    top:11px;
    right:10px;
    background: url(../img/page-top.png) no-repeat center/contain;
}
.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: 1000;
}
/*MARKETING=PAGE
=============================================== */

.kv{
    height: 78vh;
    width: 100%;
    background-color: var(--white);
    margin-top: 80px;
    padding: 2vh 15px;
    position: sticky;
    top: 0;
    z-index: -1;

}
.kv-img{
    margin-top: 60px;
}
@media screen and (max-width:385px) {
    .kv{
        height: 80vh;
    }
    .marketing-img, .hr-img{
        margin-top: 6vh;
        width: 40vh;
    }
    #hr-service h2.section-title{
        font-size: 4.7rem;
        line-height: 1.2;
    }

}
@media screen and (max-width:285px) {
.hr-img img, .marketing-img img{
    width: 80%;
}
h2.section-title{
    font-size: 4rem;
}
}


#marketing-service .kv h2{
    color: var(--blue);
    margin-bottom: 17px;

}
#marketing-service .kv h2 b{
    color: #000;

}
h2.en-title{
    font-size: 1.5rem;
}
#marketing-service h2.en-title.blue{
    margin-bottom: 0px;
    font-size: 2.7rem;
}
h2.sub-title{
    font-size: 2.5rem;
    font-family: var(--sub-font);
    font-weight: 400;
}


#service-contents{
    color: #000;
}

#marketing-service .hr-img{
    margin: 40px auto 80px;
}
#marketing-service #humanresources{
    padding-bottom: 100px;
    border-radius: 30px;
}

.title-section{
    color: #000;
    background-color: var(--light-gray);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    padding: 55px 20px 10px;
}
span.gray-line{
    display: block;
    height: 1px;
    background-color: #808080;
    margin: 0 auto 40px;


}
.service-content{
    padding: 0 15px 30px;
    background-color:  var(--light-gray);
}
.service-content img{
    width: 100px;
    margin: 0 auto;
}
.service-content h3{
    text-align: center;
    font-weight: 100;
    margin: 10px 0 30px;
    font-size: 2rem;
    letter-spacing: 0.038em;

}
.service-content:nth-last-of-type(1), .pad-75{
    padding-bottom: 75px;
    }
.service-list li{
    background-color: var(--white);
    padding: 15px 20px;
    color: #333;
    margin: 22px 0;
    border-radius: 10px;
    line-height: 1.3;
}
.service-list li::before{
    content:"⚫︎";
    font-size: 2.3rem;
vertical-align: sub;}
.human-resources-bg{
    background:linear-gradient(to bottom, var(--light-gray), #ffffff);

}

/*HumanResources-page
=============================================== */

#hr-service .kv{
    background-color: var(--blue);
    padding-top: 40px;
}@media screen and (max-width:385px) {
    #hr-service .kv{
        padding-top: 20px;
    }
}
#hr-service h2.en-title.blue{
    margin-bottom: 0px;
    font-size: 2.3rem;

}
.left15{
    margin-left: 15px;
}
#hr-service .kv h2{
    color: var(--white);
    margin-bottom: 17px;
}

#hr-service .title-section{
background-color: var(--white);
}
#hr-service #service-container{
    background-color: var(--white);
    width: 100vw;
    border-bottom:1px solid var(--white)
}
#hr-service .service-content{
    background-color: var(--white);

}
.blue-bg{
    background-color: var(--blue);

}
#hr-service .service-list li{
background-color: var(--light-gray);
}
#hr-service #marketing{
    background-color: var(--light-gray);
    border-radius: 30px;
    padding-bottom: 100px;
    border-radius: 30px;
    padding-top: 70px;
}
#hr-service #marketing h2.section-title{
    font-size: 6rem;
}
#hr-service #marketing h2.en-title.blue{
    font-size: 2.7rem;
    margin-bottom: 18px;
}
#marketing .hr-img{
    margin-bottom: 100px;
}
#marketing h2.section-title{
    color: var(--blue);
}

/* COMPANY-PAGE 
=============================================== */

#company-page{
    padding: 110px 20px;
    
}
h2.ja-title.sub{
    margin-top: 5px;
}
h2.heading{
color: var(--blue);
}

#company-table{
    margin: 50px 0;
    width: 100%;
    padding: 40px 20px 80px;
    background-color: var(--light-gray);
    border-radius: 20px;
}
#company-table tr{
    display: flex;
    flex-direction: column;
    text-align: left;
    border-bottom: .5px solid #000;
    padding: 20px 0;
}
#company-table th,
#company-table td{
    margin: 5px 0;
    width: 100%;
    padding: 0 20px;
}
#company-page .map{
    width: 30vw;
    padding-top: 10px;
}


.logo-description h2.section-title{
    font-size: 5vw;
    color: var(--blue);
    padding-bottom: 5px;
    font-weight: normal;
}
.logo-description h2.ja-title{
    font-weight: normal;
    font-size: 4.5vw;
}
.comp-logo{
    margin: 100px 0;
    padding: 0 30px;
}
.card{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 30px;

}
.card p{
    padding: 10px 0;
    line-height: 2.2;
}

/* CONTACT-PAGE 
=============================================== */
#contact-page{
    padding: 30vw 20px 7vw;
}
#company-table.ctt tr{
    border-bottom: none;
}
#company-table.ctt tr:nth-of-type(1){
    padding: 0;
}
input{
    width: 100%;
    border: none;
    padding: 5px;
}
input.textarea{
    height: 100px;
}
.contact-txt{
    font-weight: normal;
    font-size: 1.4rem;
}
#company-table.ctt th,
#company-table.ctt td{
    padding: 0;

}
th.button-area{
    text-align: center;
}
input.submit{
    background-color: var(--blue);
    width: 20vw;
    margin-top: 20px;
    padding: 10px 20px;
    color: var(--white);
    font-weight: normal;
    cursor: pointer;
    transition: .6s;


}
input.submit:hover{
    opacity: .6;
}

#company-table th .req{
    display: inline-block;
    width: 35px;
    height: 35px;
    position: relative;
    top:10px;
    left:20px;

    background: url(../img/req.png) no-repeat center/contain;

}
#company-table th.req:nth-of-type(1)::after{
    left: 100px;
} 
#contact-page.sent table tr{
    border: none;
}

/* ABOUT-PAGE 
===============================================  */
#about-page{
    padding:30vw 20px 7vw;
}
h2.ja-title.white{
color: var(--white);
}
.about-box{
    background-color: var(--blue);
    border-radius: 20px;
    padding: 100px 20px;
}
.top-title{
    font-weight: bold;
    padding-bottom: 20px;
}
.about-box.white{
    background-color: var(--white);
}

.about-box.white h1{
    color: var(--blue);
}
.about-box.white p{
    color: #000;
}

.top-message{
    padding: 100px 20px;
    background-color: var(--light-gray);
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;

}
p.top-text{
    font-size: 4vw;
    line-height: 2.3;
    padding: 30px 0;
}
p.top-name{
    font-size: 4vw;
    padding: 10px;
    font-weight: bold;
    text-align: left;
}


/*====================
END→SPデザイン
====================*/

/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width:480px) and (max-width:599px) {
/*====================
START→SP横
====================*/
/*====================
END→SP横
====================*/
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:600px) and (max-width:1025px) {
/*====================
START→タブレット
====================*/
/* 
    GENERAL STYLING 
================================================ */ 

h1{

    font-size: 4.5rem;
}
.indent{
    display: block;
}


p{
    font-size: 1.6rem; /* 15px */
}
h2 br{
    display: none;
}
h2.heading br{
    display: block;
}


/* 
    MAINVISUAL tablet
================================================ */ 

#mainvisual{
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    

}

.slogan{
    padding: 0;
    width: 48%;
}
.icons{
    padding: 0px;
    width: 48%;}

    .rotating-animation{
        width: 160px;
        height: 160px;
        top:-80px;
        right: 60px;
    }

    /*MISSION tablet
=============================================== */
.visual-section-inner{
    height: 120px;
}
.inner-company{
    width: 85%;
}
#mission{
    height: 70vh;
}

.mission-wrap h2{
    font-size: 3rem;
    color: var(--white);
    line-height: 1.7;
    padding-bottom: 10px;

}

p.mission-text{
    margin: 30px 0;
    font-size: 2rem;
    color: var(--white);

    
}
    /*OUR BUSINESS tablet
=============================================== */
#our-business{
    padding: 130px 40px;
}
a.business-button{
    width: 34VW;
    height: 34VW;


}
.marketing-button{
    position: absolute;
    top:23%;
    left:10%;
}
.hr-button{
    position: absolute;
    top:23%;
    left:53%;
}  
    /*MARKETING tablet
=============================================== */
#marketing{
    padding: 130px 40px 100px;
}
.marketing-img img{
    margin: 0 auto;
}
p.title-text{
    width: 30%;
    font-size: 4.6rem;
}

.service-container{
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 50px 30px;
    transition: .5s;
    position: relative;
}
.service-text-content{
    margin: 0;
    width: 50%;
}
.service-text-content-box{
    display: block;
    margin: 0;
}
p.content{
    padding: 25px 0 30px;
}



    /*HUMAN RESOURCES tablet
=============================================== */

#humanresources{
    padding: 130px 40px 100px;

}
.hr-img img{
    margin: 50px auto;
}
.hr p.title-text{
    color: var(--white);
}
    /*CONTACT tablet
=============================================== */



#contact h2, #company h2{
    font-size: 3rem;

    
}

ul.footer-nav{
    padding: 60px 40px;
}
.footer-nav li{
    margin: 30px 0;
}
.footer-logo{
    margin: 0 40px;
}

p.address{
    padding: 10px 40px;
}

#page-top{
    width: 40px;
    height: 40px;

}
#page-top a:before{
    top:17px;
    right: 16px;

}
/* CPMPANY-PAGE tablet 
=============================================== */

.section-title.heading{
    font-size: 7vw;
}

#company-page{
    padding: 180px 30px 100px;
}
#company-table{
    margin: 50px 0;
    padding: 40px 30px 80px;
}
#company-table tr{
    display: flex;
    flex-direction: row;
    padding: 20px 0;
}
#company-table th,
#company-table td{
    width: 50%;
    padding-left: 100px;
}
#company-table th{
    width: 25%;
}
#company-page .map{
    width: 11vw;
}
#footer .map{
    width: 15vw;
    padding-left: 40px;
}
.logo-description{
    padding: 60px 0;
}

.logo-description h2.section-title{
    font-size: 5vw;
}
.comp-logo{
    margin: 100px auto;
    padding: 0 30px;
}
.card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 30px;

}
.card img{
    width: 49%;
}
.card p{
    padding: 10px 0;
    line-height: 2.2;
    width: 46%;
}

/* CONTACT-PAGE tablet
=============================================== */

#contact-page{
    padding: 180px 30px 100px;
}
#company-table.ctt tr{
    padding: 40px 30px 80px;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    
}
#company-table.ctt tr:nth-of-type(1){
    padding: 0;
    display: block;
}
.contact-txt{
    font-size: 1.6rem;
}
input{
    border: none;
    padding: 5px;
}
input.textarea{
    height: 100px;
}

#company-table.ctt th,
#company-table.ctt td{
    width: 100%;
    padding: 0;


}
/* ABOUT-PAGE tablet
===============================================  */
#about-page{
    padding:180px 30px 100px;;
}
.about-box{
    padding: 100px 20px;
}

.top-message{
    padding: 100px 0px;


}
.top-title{
    padding-bottom: 30px;
    font-size: 3rem;
}
.top-box{
    width: 85%;
    margin: 0 auto;
}
.top-message img{
    margin: 0 auto;
}

p.top-text{
    font-size: 3vw;
    padding: 30px 0;

}
p.top-name{
    font-size: 3vw;

}

}


/*====================
END→タブレット
====================*/

/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width:1026px) {
/* 
    GENERAL STYLING 
================================================ */ 


h1{
    font-size: 3.3vw;
    letter-spacing: 0.05em;
    margin-bottom: 2.3vh;
}
h2.en-title{
    font-size: 2.6rem;
}
h2.section-title{
    color: var(--blue);
    font-weight: bold;
    font-size: 3.8vw;
    line-height: 1.2;
    margin-bottom: 0px;
}
h2.title-content{
    line-height: 2;
    font-size: 1.5vw;
    margin-bottom: 10px;
}
h2.ja-title{
    font-size: 1.2vw;
    text-align: left;
    font-weight: bold;
}
p{
    font-size: 1vw;
}
p.content-text{
    line-height: 3.5;
    font-size: 1.1vw;

}
.pc-only{
display: block;
}
.sp-only{
    display: none;
}
.indent{
    display: block;
}
.indent-sp{
    display: inline;
}
#loader{
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 200px;
    right: 200px;
    text-align: center;
}
svg{
    width: 200px;
    height: 200px;
    animation: move .5s infinite ease-in;
    }

#loader008 {
    width: 0em;
    height: 5em;
    font-size: 2.2rem;
    top:60%;
    left: 75%;
    opacity: 0;
    transform: translate(-50%, -50%);
    margin-top: 75%;
    }
        
/* HEADER PC 
=============================================== */


#header{
    height: 8vw;
    padding: 1vw 2vw;


}
.header-logo{
    width: 12vw;
    z-index: 1001;
}

.menu-open{
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9999;
    position: relative;


}
.menu-open span{
    display: block;
    width: 5vw;
    height: 0.5vw;
    top:15px;
    right:10%;

}
.menu-open span:nth-of-type(2){
    top:2.5vw;
    width: 5vw;



}
.menu-open.close span{
    right:10%;
}
.menu-open.close span:nth-of-type(1){

}
.menu-open.close span:nth-of-type(2){
    width: 5vw;
    top:15px;
    background-color:var(--white);

}


/* ハンバーガーメニューPC */
ul.nav-menu{
    padding: 7vw 0 0;
}
nav.menu-panel{
    width: 40vw;
    height: 100vh;
    padding: 25px 40px 40px;
    text-align: left;
    translate:-140vw 0;
    z-index: 999;
}

.nav-menu li{
    font-size:1.5vw;
    padding: 0px 0 1vw;
}


/*mainvisual PC
=============================================== */


#mainvisual{
    height: 80vh;
    top: 0;
    width: 87vw;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#mainvisual img{
    width: 100%;
}

.slogan, .icons{
    padding:0px;
    width: 41vw;
}

/*missionPC
=============================================== */
.visual-section-inner{
    height: 9vw;
}

.rotating-animation {
	position: absolute;
	top: -58%;
	right: 4%;
	display: block;
	width: 11vw;
	height: 11vw;
	cursor: pointer;
}
.rotate-white span::before{
    width: 3vw;
    height: 3vw;
}
.rotating-animation span::before{
    width: 3vw;
    height: 3vw;
}
#mission{
    padding: 0 65px 13vw 190px;
    border-radius: 70px;
    background-image: url(../img/mission-bg-pc.png);
    position: relative;
    height: auto;
}
.mission-wrap h2{
    font-size: 3rem;
}
p.mission-text{
    font-size: 1,2vw;
    line-height: 3.2;
    font-weight: lighter;
    margin: 0;
}

a.btn{
    font-size: 1.1vw;
    text-align: left;
    margin-top: clamp(50px,3vw, 120px);

}
a.btn:before{
    width: 4.5vw;
    height:4.5vw;
    left: 7.2vw;
    bottom: -25px;
    transition: .5s;
}
a.btn::after{
    content:"";
    display: block;
    width: 1vw;
    height: 1vw;
    background: url(../img/btn-arrow-b.png) no-repeat center/contain;
    position: absolute;
    left: 8.9vw;
    bottom:0px;
    transition: .5s;
}
a.btn:hover::before,
a.btn:hover::after{
    transform: translate(10px);
}
/*BUSINESS PC
=============================================== */

#our-business{
    padding: 9vw 110px 6vw;

    text-align: center;
    position: relative;
}
.business-text-box{
    text-align: left;
    position: absolute;
    padding-right: 300px;
    
}
#our-business p.content-text{
    text-align: left;
}
.business-container{
    height: 100%;
    position: relative;
}
#our-business img{
    width: 74%;
    object-fit: cover;
    margin: 0 0 0 auto;
    padding-top: 60px;
}

#our-business p.content-text{
    line-height: 2.4;
}
#business-img{
    position: relative;
    width: 100vw;
}
a.business-button{
    display: inline-block;
    width: 25vw;
    height: 25vw;

}
a.business-button::after{
    content: "";
    display: block;
    width: 13%;
    height: 13%;
    position: absolute;
    bottom: 70px;
    right:43%;
    background: url(../img/business-arrow-w.png) no-repeat center/contain;
    transition: all .2s ease-in;
}
a.marketing-button::after{
    background: url(../img/business-arrow-b.png) no-repeat center/contain;
    right: 44%;
}
.marketing-button{
    position: absolute;
    top:34%;
    left:34%;
}
.hr-button{
    position: absolute;
    top:34%;
    left:67%;

}  
.marketing-button:hover::after{
transform: scale(1.3);
opacity: .7;
}
.hr-button:hover::after{
    transform: scale(1.3);
    opacity: .7;
}



/*MARKETING PC
=============================================== */

#marketing, #humanresources{
    padding:10vw 110px 7.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;

}





#marketing{
    text-align: center;
    
}
.head-box{
    margin-left: 6vw;
}
.head-box::before{
    width: 8vw;
    height: 6vw;
    left:-106px
}
.service-part{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.service-text-box{
    width: 50%;
    text-align: left;
}
.marketing-img, .hr-img{
    width:  50%;
    margin: 0;
}
.marketing-img img, .hr-img img{
    margin:  0 auto;
    width: 72%;
}
#service{
    padding: 0;
}
p.title-text{
    font-size: 1.3vw;
    white-space: nowrap;
    width: 100%;

}
.service-container{
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    margin: 0.6vw 0.7vw calc(0.6vw/2);
}
.service-text-content{
    width: 100%;
    margin: 0;
}
.service-text-content-box{
    display: block;
    width: 100%;
    margin: 0;
}
p.text45{
    font-size: 1.1vw;
}


.service-container:hover::before{
opacity: 1;

}

.service-container:nth-last-of-type(1){
    border: none;
    margin: 0;
    padding-bottom: 15px;
}
.service-icon{
    width: 17%;
    height: 17%;
}
.hr .service-container::before{
    background-image: url(../img/service-img-hr.png);
}

p.content{
    font-size: 1vw;
    line-height: 1.3;
    margin: 0;
    width: 100%;
    padding: 0;
}
#humanresources{
    border-radius: 20px;
}

#humanresources h2.section-title{
    color: var(--white);
    font-size: 3.8vw;

}

.hr .service-container{
    border: none;
    color: var(--white);
}
.hr .service-container:nth-last-of-type(1){
    border: none;
}
.hr p.title-text{
    color: var(--white);
}

#news{
    padding: 110px 110px 130px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.item-box:nth-last-of-type(1){
    padding-left: 13vw;
    width: 100%;
}
#news a.btn{
    margin-left: 80%;
}




/*CONTACT PC
=============================================== */
#contact, #company{
    padding:7vw 0px;
    width: 50%;
    position: relative;
    overflow: hidden;
    border-top: solid .1px var(--white);
}
#contact{
    border-right: solid .1px var(--white);
    }
    
.cpa-box a.btn-area{

    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    inset: 0;

}

.cpa-box::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    inset: 0;
    background: url(../img/contact-bg.png) no-repeat center/cover;
    z-index: -1;
    transform: scale(1.1);
    transition: all 1s ease;
}
#company.cpa-box::after{
    background: url(../img/company-bg.png) no-repeat center/cover;

}
.cpa-box:hover::after{
    opacity: 1;
    transform: scale(1);
}
.cpa-text{
    font-size: 1vw;
}

#contact h2, #company h2{
    font-size: 3.5vw;
    color: var(--white);
    font-weight: normal;
    
}

.section-box{
    display: flex;
    justify-content: space-between;
}
.section-box a.btn{
    display: block;
    margin:7vw auto 0;
    width: 10%;
}
.section-box a.btn:before{
    border: solid 1px var(--white);
    background-color: transparent;
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.section-box a.btn::after{
    background: url(../img/btn-arrow-w.png) no-repeat center/contain;
    position: absolute;
    left: 36%;
    bottom:25px;
}



/* FOOTER PC
=============================================== */
#page-top{
    width: 2.5vw;
    height: 2.5vw;

}
#page-top a:before{
top:1vw;
right: 1vw;
}
#page-top a:hover{
    opacity: .6;
}


#footer{
    padding: 30px 110px 80px;
}

ul.footer-nav{
    padding: 0;
    margin-top: 60px;
}
ul.footer-nav:nth-last-child(1){
    padding-left: 13vw;
}
.footer-nav li{
    margin: 30px 0;
}
.footer-nav li a{
    font-size: 1.3vw;
    font-weight: bold;
}
.footer-box{
    display: flex;
    justify-content: space-between;
    align-items: baseline;

}

.footer-logo{
    margin: 0;
    width: 10vw;
}
.footer-sub-box{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

}

p.address{
    color: #989898;
    font-size: 1.3vw;
    line-height: 1.7;
    padding: 30px 0 15px;
}
p.address span{
    font-weight: bold;
    color: #000;
}
.map{
    width: 9vw;
}
#footer .map{
    width: 9vw;
    padding: 0;
}

.copyright{
    text-align: right;
    font-size: 1.4vw;
    padding: 15px;

}

.copyright small:nth-last-of-type(1){
    margin-left: 20px;
}
/*
COMPANY-PAGE PC
=============================================== */

#company-page{
    padding: 15vw 110px 7vw;
}

h2.ja-title.sub{
    font-size: 1.8vw;
    padding-top: 10px;
}
#company-table{
    background-color:var(--light-gray);
    padding:100px;
    border-radius: 3%;
    margin-top: 7vw;
}
#company-table tr:nth-of-type(1) th{
    font-size: 1.8vw;
    padding-bottom: 30px;
}
#company-page #company-table tr{
    flex-direction: row;
    padding: 1.3vw 3.5vw;
    }
    #company-page #company-table th{
        width: 30%;
    }
    
#company-table td,
#company-table th{
    font-size: 1.1vw;
}
#company-table tr:nth-of-type(1){
    border-bottom: 1.2px solid #000;
}
#company-page .map{
    margin-top: 10px;
    width: 8vw;
}
.logo-description{
    padding: 150px 0 100px;
}

.logo-description h2.section-title{
    font-size: 2vw;
}
.logo-description h2.ja-title{
    font-size: 2vw;

}
.comp-logo{
    margin: 10vw auto;
    padding: 0 ;
    width: 40vw;
}
.logo-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card{
    display: flex;
    flex-direction: column;
    width: calc((100% - 100px)/3);
    padding-bottom: 30px;

}
.card p{
    padding: 10px 0;
    line-height: 2.2;
    width: 100%%;
}

/* CONTACT-PAGE
===============================================  */
#contact-page{
    padding: 15vw 110px 7vw;
}

input{
    padding: 15px;
}
input.textarea{
    height: 30vh;
}
#company-table.ctt th.contact-txt{
    font-size: 1.2vw;
}

input.submit{
    width: 15vw;
    margin-top: 40px;
    padding: 10px 20px;


}
/* ABOUT-PAGE PC
===============================================  */
#about-page{
    padding: 15vw 110px 7vw;
}
.about-box .inner-company{
    width: 100%;
}
.about-box{
    padding: 100px 110px;
}

.top-message{
    padding: 100px 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;


}
.top-box{
    width: 47%;
}
.top-message img{
    margin: 0 auto;
    width: 100%;
}
.top-title{
    font-size: 1.6vw;
    padding-bottom: 2vw;
}

p.top-text{
    font-size: 1vw;
    line-height: 3.5;
    padding: 30px 0;
}
p.top-name{
    font-size: 1vw;

}

}
@media screen and (min-width:2000px) {
    a.business-button::after{
right: 44%;
bottom:25%;
    }
    a.marketing-button::after{
right: 43%;
bottom:25%;

    }

}



/*====================
START→PC小
====================*/
/*====================
END→PC小
====================*/


