@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ///////////////////////////general/////////////////////////// */
html,body{
  font-size: 16px;
}
body{
  font-family: 'Noto Sans', sans-serif;
  color: #333;
}
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
a{
  text-decoration: none;
  color: #333;
}
a{
  transition: .3s;
}

.flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex .text-box,.flex .img-box{
  width: 100%;
}
.flex-3 > *{
  width: 31%;
}
img{
  width: 100%;
}
.wrap-wide{
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.wrap{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.single .wrap{
  max-width: 980px;
}
.orange{
  color: #e96631;
}
.white{
  color: #fff;
}
.inline-block{
  display: inline-block;
  width: 100%;
}
h1,h2,h3,h4,h5,h6{
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
p{
  margin-top: 0;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
  line-height: 2em;
}
p:last-child{
  margin: 0;
}
h1{
  font-size: 45px;
}
h2{
  font-size: 40px;
}
h3{
  font-size: 30px;
}
h4{
  font-size: 25px;
}
h5{
  font-size: 22px;
}
h6{
  font-size: 18px;
}
.bold{
  font-weight: bold;
}
.viewmore{
  text-align: right;
  margin-top: 10px;
}
.viewmore span{
  display: inline-block;
  width: 50%;
  text-align: right;
  border-bottom: 2px solid #e96631;
  padding-bottom: 5px;
}
.viewmore a:hover{
  color: #e96631;
}
section{
  margin: 100px 0;
}
.title-box h2{
  margin-bottom: 1em;
}
h1.impact-title{
  text-align: right;
  margin-bottom: 30px;
}
.impact-title img{
  height: 80px;
  width: auto;
}
/* ///////////////////////////nav/////////////////////////// */
.nav-bar{
  background: rgba(255,255,255,0.7);
  position: fixed;
  width: 100%;
  z-index: 2;
}
.logo img{
  width: 225px;
}
header .logo{
  flex: 1;
}
header ul{
  margin-right: 20px;
}
header ul li a{
  color: #333;
}
header ul li a:hover{
  color: #e96631;
}
header ul li svg.insta-icon{
  fill: #333;
}
header ul li svg.fb-icon{
  fill: #333;
}
ul li{
  list-style: none;
  display: inline-block;
  padding: 5px 10px;
}
ul li a{
  width: 100%;
}
.nav-block-wrap{
  display: flex;
}
.nav-block{
  width: 90px;
  height: 80px;
  color: #fff;
  display: block;
  text-align: center;
}
.nav-block.recruit-block{
  background: #e96631;
  line-height: 80px;
}
.nav-block.yahoo-block{
  background: #000;
  padding: 14px 10px;
}
.sp-nav{
  display: none;
}
@media screen and (max-width: 980px) {
  .nav-bar .nav-ul-pc{
    display:none;
  }
  .sp-nav{
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid #000;
  }




/*ハンバーガーボタン*/
.hamburger {
  top: 16px;
  margin: 0 auto;
  display : block;
  position: relative;
  z-index : 3;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #000;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span{
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  background: #e96631;
  padding-bottom: 30px;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  width: 100%;
  padding: 50px 0 10px 0;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .3s;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#fff;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li:hover a {
  color: #e96631;
}
nav.globalMenuSp ul li svg{
  fill: #fff;
}
nav.globalMenuSp svg:hover {
  fill: #efefef;
}


/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

}


/* ///////////////////////////header/////////////////////////// */
.top-header{
  padding-top: 80px;
}

.single .page-header-wrap{
  background-image: url(../img/header-contact.jpg);
}


/* ///////////////////////////旧header/////////////////////////// */
.header-img{
  margin: 0 auto;
}
.header-img .flex{
  align-items: flex-start;
}
.header-img .flex a{
  transition: 0.3s;
  width: 18%;
  position: relative;
  text-align: center;
}
.header-img .flex a:nth-child(odd){
  margin-top: 100px;
}
.header-img .flex .header-img-wrap:hover img{
  filter: brightness(0.6);
}
.header-img-wrap p{
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  width: 100%;
  transform: translateY(-50%);
  top: 50%;
  z-index: 1000;
  font-size: 22px;
}
.viewmore-sub{
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100%;
  text-align: right;
}
.viewmore-sub span{
  color: #fff;
  display: inline-block;
  width: 50%;
  text-align: right;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}
.header-img-wrap:hover p ,.header-img-wrap:hover .viewmore-sub{
  opacity: 1;
}
header{
  position: relative;
}
header .btn-wanted{
  position: fixed;
  bottom: 40px;
  right: 50px;
  width: 150px;
  height: 150px;
  z-index: 1000;
}
@media screen and (max-width: 600px) {
  header .btn-wanted{
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .header-img-wrap p{
    font-size: 18px;
  }
}

/* ///////////////////////////bg/////////////////////////// */

.bg-right{
  background-repeat: no-repeat;
  background-position: right;
  background-size: 45%;
}
.bg-left{
  background-repeat: no-repeat;
  background-position: left;
  background-size: 45%;
}
.bg-recruit-1{
  background-image: url(../img/top-recruit-1.png);
}
.bg-recruit-2{
  background-image: url(../img/top-recruit-2.png);
}
.bg-message-1{
  background-image: url(../img/top-message-1.png);
  background-size: 60%;
}
.bg-message-2{
  background-image: url(../img/top-message-2.png);
}
.top-message-2-img{
  display: none;
}
.bg-style{
  background-image: url(../img/top-style-1.png);
  background-size: 40%;
}
.bg-1{
  background-image: url(../img/bg-1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-gray{
  background: #efefef;
}

/* ///////////////////////////top/////////////////////////// */
.news-section{
  padding: 30px 5%;
}
.news-section a:hover{
  color: #e96631;
}
.cat-data{
  font-size: 13px;
  padding: 2px 10px;
  width: 100px;
  display: inline-block;
  text-align: center;
  background: #e96631;
  color: #fff;
  margin-right: 10px;
}
.date-data{
  margin-right: 10px;
  vertical-align: middle;
}
.title-data{
  vertical-align: middle;
}

.news-section .wrap{
  width: fit-content;
}
.business-section .title-box{
  text-align: center;
}
.business-section .business-item{
  margin-bottom: 40px;
}
.business-section .business-item-no{
  height: 60px;
  margin-right: 20px;
}
.business-section .img-box{
  margin-left: 50px;
}
.fixed-bg{
  height: 300px;
  background: url(../img/hr-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  background-attachment: fixed;
}
.recruit-box{
  margin-bottom: 100px;
}
.img-box-right{
  padding-left: 50px;
  margin-right: -100px;
}
.article-wrap.flex{
  align-items: inherit;
}
.recruit-section .article-box{
  border: 1px solid #efefef;
}
.recruit-section .article-box h5{
  color: #e96631;
}
.recruit-section .article-box .excerpt{
  padding: 30px 8%;
}
.recruit-section .article-box .excerpt p{
  line-height: 1.7em;
}
.bg-message-1 .text-box{
  width: 120%;
  margin-bottom: 80px;
}
.bg-style h1.impact-title{
  margin-bottom: 50px;
}
.bg-style .text-box{
  width: 120%;
}
section.about-section{
  text-align: center;
  margin-bottom: 0;
  padding: 100px 0;
}
.about-box img{
  transition: 0.3s;
}

h4.allow-icon{
  text-align: left;
  margin-top: 20px;
  position: relative;
  transition: 0.3s;
}
h4.allow-icon::after{
  content: '〉';
  color: #e96631;
  position: absolute;
  right: 0;
  display: inline-block;
  font-size: 20px;
  top: 3px;
  transition: 0.3s;
}
.about-box:hover img{
  opacity: 0.7;
}
.about-box:hover h4{
  color: #e96631;
}
.about-box:hover h4.allow-icon::after{
  right: -5px;
}

/* ///////////////////////////下層ページfooter/////////////////////////// */

.ft-bnr-sp{
  display: none;
}
.ft-bnr-sp a{
  width: 100%;
}
.ft-bnr{
  background: url(../img/ft-bnr.jpg);
  background-size: cover;
  background-position: center;
}
.ft-bnr a{
  width: 100%;
}
.bnr-recruit,.bnr-business{
  width: 100%;
  height: 300px;
  position: relative;
}
.bnr-wrap{
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
  width: 100%;
}
.bnr-wrap h2{
  margin: 0;
  transition: .3s;
}
.bnr-wrap::after,.bnr-wrap-sp::after{
  top: 12px;
  right: 28px;
  content: '';
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../img/circle-allow.svg)no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.bnr-recruit:hover .bnr-wrap::after,.bnr-business:hover .bnr-wrap::after{
  background: url(../img/circle-allow-w.svg)no-repeat;
  background-size: contain;
}
.bnr-business .bnr-wrap{
  margin-left: 20px;
}
.bnr-recruit:hover .bnr-wrap h2, .bnr-business:hover .bnr-wrap h2 {
  color: #fff;
}







/* ///////////////////////////footer/////////////////////////// */
footer{
  background: #000;
  color: #fff;
}
footer .wrap-wide{
  padding: 50px 0;
}
footer ul li a{
  color: #fff;
}
footer ul li a:hover{
  color: #e96631;
}

svg.insta-icon{
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: 0.3s;
}
svg.insta-icon:hover{
  fill: #e96631;
}
svg.fb-icon{
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: 0.3s;
  margin-right: 0px;
}
footer svg.fb-icon,.globalMenuSp svg.fb-icon{
  margin-right: 20px;
}
svg.fb-icon:hover{
  fill: #e96631;
}

.copyright{
  text-align: center;
  padding-bottom: 10px;
}



/* responsive */
.sp-br{
  display: none;
}
.sp-img{
  display: none;
}
.pc-hide{
  display: none;
}
.yahoo-list{
  display: none;
}
.sp-header{
  display: none;
}
@media screen and (max-width: 980px) {
  .flex.block-980{
    flex-direction: column-reverse;
  }
  .business-section .img-box{
    margin: 0 0 50px 0;
    width: 100%;
    max-width: 500px;
  }
  .viewmore span{
    width: 70%;
  }
  .flex.footer-wrap{
    flex-direction: column;
  }
  .footer-wrap ul{
    padding: 0;
  }
  .bnr-recruit, .bnr-business{
    height: 200px;
  }
}
@media screen and (max-width: 780px) {
  .wrap-wide{
    width: 100%;
  }
  .wrap{
    width: 95%;
  }
  .nav-bar .wrap{
    width: 100%;
  }
  header .nav-bar .logo{
    margin-left: 10px
  }
  header .logo img{
    width: 180px;
  }
  .nav-block{
    width: 70px;
    font-size: 14px;
  }
  .nav-bar{
    background: #fff;
  }
  .sp-nav{
    width: 70px;
  }
  .sp-hide{
    display: none;
  }
  .pc-hide{
    display: block;
  }
  .flex.block-780{
    flex-direction: column;
  }
  .bg-recruit-1,.bg-recruit-2,.bg-message-2{
    background: none;
  }
  .top-message-2-img{
    display: block;
    padding-left: 2.5%;
    margin-bottom: 30px;
  }
  .bg-message-1{
    background-position-y: 30px;
    background-size: 50%;
  }
  .bg-message-1 .impact-title{
    margin-bottom: 20%;
  }
  .bg-style {
    background-color: rgba(255,255,255,0.6);
    background-position-y: 30px;
    background-size: 90%;
    background-blend-mode: overlay;
  }
  .sp-img{
    width: 100%;
    display: block;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  h1{
    font-size: 30px;
  }
  h2{
    font-size: 24px;
  }
  h3{
    font-size: 22px;
  }
  h4{
    font-size: 18px;
  }
  h5{
    font-size: 16px;
  }
  h6{
    font-size: 14px;
  }
  p{
    font-size: 14px;
  }
  .title-box h2{
    font-size: 22px;
  }
  .flex.flex-3{
    flex-direction:column;
  }
  .flex-3 > *{
    width: 100%;
  }
  .recruit-section .article-box:not(:last-child){
    margin-bottom: 30px;
  }
  .impact-title img{
    height: 60px;
    width: auto;
    margin-bottom: 30px;
    margin-right: 3%;
  }
  .bg-message-1 .text-box,.bg-style .text-box{
    width: 100%;
  }
  .about-box{
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto 20px auto;
  }
  .about-box img{
    width: 100px;
  }
  .about-box h4{
    margin: 0 0 0 10px;
    width: 100%;
  }
  section.about-section{
    padding: 60px 0;
  }
  section {
    margin: 60px 0;
  }

  .footer-wrap ul li{
    display: block;
    text-align: center;
  }
  .footer-wrap ul li:last-child{
    margin-top: 20px;
  }

  footer .wrap-wide{
    padding: 50px 0 30px;
  }
  .ft-bnr-sp{
    display: block;
  }
  .bnr-recruit-sp, .bnr-business-sp{
    height: 300px;
    width: 100%;
    padding: 30px 0;
  }
  .bnr-recruit-sp{
    background: url(../img/bnr-recruit.png);
    background-size: cover;
    background-position: 50%;
  }
  .bnr-business-sp{
    background: url(../img/bnr-business.png);
    background-size: cover;
    background-position: 50%;
  }
  .bnr-wrap-sp h2{
    transition: .3s;
    margin: 0;
    font-weight: bold;
  }
  .bnr-recruit-sp:hover .bnr-wrap-sp h2, .bnr-business-sp:hover .bnr-wrap-sp h2{
    color: #fff;
  }
  .bnr-recruit-sp:hover .bnr-wrap-sp::after,.bnr-business-sp:hover .bnr-wrap-sp::after{
    background: url(../img/circle-allow-w.svg)no-repeat;
    background-size: contain;
  }
  .bnr-wrap::after,.bnr-wrap-sp::after{
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .ft-bnr{
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .sp-br{
    display: inline-block;
  }
  .bg-message-1{
    background-size: 60%;
  }
  .bg-message-1 .impact-title{
    margin-bottom: 30%;
  }
  .sp-header{
    display: block;
  }
  .pc-header{
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .yahoo-block{
    display: none;
  }
  .yahoo-list{
    display: list-item;
  }
  header .logo img{
    width: 160px;
  }
  .business-section .business-item-no{
    width: 60px;
  }
  .bg-message-1{
    background-size: 90%;
  }
  .bg-message-1 .impact-title{
    margin-bottom: 55%;
  }
}


/* ///////////////////////////page共通/////////////////////////// */
.page-header-wrap{
  height: 400px;
  width: 100%;
  background-size: cover;
}
.page-title-wrap{
  margin-bottom: 100px;
}
.page-title img{
  height: 90px;
  display: block;
  width: auto;
}
.page-title{
  position: absolute;
  top: -45px;
}
.bread-nav{
  display: none;
  text-align:right;
}
.bread-nav .home-link,.current-link{
  border-bottom: 2px solid #e96631;
}
.home-link{
  transition: .3s;
}
.home-link:hover{
  color: #e96631;
}
@media screen and (max-width: 980px){
  .bread-nav{
    display: block;
  }
  .page-title img{
    height: 70px;
  }
  .page-title{
    top: -35px;
  }
}
@media screen and (max-width: 780px){
  .page-title {
      margin-left: 3%;
  }
  .page-title img{
    height: 50px;
  }
  .page-title{
    top: -25px;
  }
}


.app-badge{
  width: 100%;
  margin: 0 auto;
  max-width:360px;
  display: flex;
  justify-content: space-between;
}
.page-id-27 .app-badge{
  margin-bottom: 30px;
}
.app-badge img{
  height: 50px;
  width: auto;
}
@media screen and (max-width: 425px) {
  .app-badge{
    flex-direction: column;
    text-align: center;
  }
  .app-badge{
    flex-direction: column;
    text-align: center;
  }
  .app-badge a:not(:last-child){
    margin-bottom: 20px;
  }
}
