@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: '游ゴシック体', serif;
  color: #333;
  background-color: #fffff3;
}
/**************************************/
/*common
/**************************************/
img {
  width: 100%;
}
.center {
  text-align: center;
}
h2 {
  font-size: 3.6rem;
  font-weight: bold;
  padding-bottom: 50px;
}
.h2_white {
  color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  padding-top: 100px;
  padding-bottom: 50px;
}
h3 {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px 0;
}
p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width:880px) {
  h2 {
    font-size: 2.4rem;
  }
  .h2_white {
    font-size: 2.4rem;
    padding-top: 50px;
  }
  h3 {
    font-size: 2rem;
    text-align: center;
    padding: 0 0 20px 0;
  }
  p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
/**************************************/
/*header
/**************************************/
.page-header {
  padding-top: 40%;
  background: url(../images/bg-main_visual.jpg) center top no-repeat;
  background-size: cover;
  position: relative;
}
.page-header__logo {
  position: absolute;
  bottom: 60px;
  left: 60px;
}
@media screen and (max-width:880px) {
  .page-header__logo {
    bottom: 0;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
  }
}
/**************************************/
/*intro 創造しよう
/**************************************/
#intro {
  background-color: #fffff3;
  padding: 100px 20px;
}

@media screen and (max-width:880px) {
  #intro {
    padding: 50px 20px;
  }
}


/**************************************/
/*about
/**************************************/
#about {
  background: url("../images/bg-content@2x.jpg") center top no-repeat;
  background-size: cover;
  padding: 0 40px;
}
.about__background {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
}
.about__contents_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fffff3;
}
.reverse {
  flex-direction: row-reverse;
}
.about__contents_box img {
  object-fit: cover;
}
.about__image_box {
  width: 50%;
  box-sizing: border-box;
}
.about__text_box {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (max-width:880px) {
  .about__contents_box {
    display: block;
  }
  .about__image_box, .about__text_box {
    width: 100%;
  }
}
/**************************************/
/*info 導入企業
/**************************************/
#info {
  background-color: #fffff3;
  padding: 100px 20px;
}

#info img {
  width: 50%;
}
#info ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  padding: 40px 0;
}

@media screen and (max-width:880px) {
#info {
  padding: 50px 20px;
}
  
}

/**************************************/
/*footer
/**************************************/
footer {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
}
footer ul {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
}
footer ul li {
  padding-right: 20px;
}
footer a {
  color: #fff;
}
@media screen and (max-width:880px) {
  footer ul {
    display: flex;
    justify-content: center;
  }
  footer ul li:last-child {
    padding-right: 0;
  }
}