@charset "UTF-8";
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2F2F2F;
}

/*アニメーション要素のスタイル*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -ms-transition: 2s;
  -o-transition: 2s;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ========================== 
section共通クラス
===========================*/
section {
  padding: 96px 0;
}

.container {
  width: 1080px;
  margin: auto;
}

h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 48px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #DE5F4C;
  margin-right: 16px;
}

.btn {
  text-align: right;
  margin-top: 48px;
}

.btn-more {
  font-family: 'Lexend', sans-serif;
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5em;
}

.btn-more::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #2F2F2F;
  opacity: 0;
  visibility: inherit;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.btn-more:hover::after {
  bottom: -8px;
  opacity: 1;
  visibility: visible;
}

.logo {
  width: 296px;
  height: 40px;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 48px 24px;
  }
  .container {
    width: 100%;
  }
  h2 {
    font-size: 32px;
  }
  .circle {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
  .btn {
    margin-top: 24px;
  }
}

/* ========================== 
ヘッダー
===========================*/
header {
  width: 100%;
  height: 160px;
  padding: 0 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .nav-pc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .nav-pc ul .nav-menu {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 48px;
}

header .nav-pc ul .nav-menu .nav-main {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  line-height: 1em;
}

header .nav-pc ul .nav-menu .nav-sub {
  font-size: 12px;
  font-weight: 400;
}

header .nav-pc ul .nav-menu:hover {
  color: #53A2A9;
}

header .nav-pc ul .btn-contact {
  background-color: #DE5F4C;
  width: 200px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  color: #FFF;
}

header .nav-pc ul .btn-contact:hover {
  color: #FFF;
  background-color: #53A2A9;
}

header .nav-sp {
  display: none;
}

@media screen and (max-width: 1079px) {
  header {
    height: 96px;
    padding: 0 24px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .logo {
    width: 200px;
  }
  header .nav-pc {
    display: none;
  }
  header .nav-sp {
    display: block;
  }
}

/* ========================== 
トップ
===========================*/
.top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-wrapper .content-l {
  width: calc(100% / 2 - 24px);
}

.top-wrapper .content-l .main-text {
  font-family: 'Lexend', sans-serif;
  font-size: 80px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.top-wrapper .content-l .sub-text {
  font-size: 16px;
}

.top-wrapper .content-r {
  width: calc(100% / 2 - 24px);
}

.top-wrapper .content-r .main-img {
  width: 100%;
}

@media screen and (max-width: 1079px) {
  .top-wrapper .content-l .main-text {
    font-size: 56px;
  }
}

@media screen and (max-width: 640px) {
  .top-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top-wrapper .content-l {
    width: 100%;
    margin-top: 24px;
  }
  .top-wrapper .content-l .main-text {
    font-size: 48px;
    margin: 24px 0 16px 0;
    line-height: 1.3;
  }
  .top-wrapper .content-l .sub-text {
    font-size: 14px;
  }
  .top-wrapper .content-r {
    width: 80%;
  }
}

/* ========================== 
私たちについて
===========================*/
.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-wrapper .content-l {
  width: calc(100% / 2 - 32px);
}

.about-wrapper .content-l .about-img {
  width: 100%;
}

.about-wrapper .content-r {
  width: calc(100% / 2 - 32px);
}

.about-wrapper .content-r p {
  text-align: left;
  margin: 24px 0;
}

@media screen and (max-width: 640px) {
  .about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-wrapper .content-l {
    width: 100%;
  }
  .about-wrapper .content-l .about-img {
    width: 100%;
  }
  .about-wrapper .content-r {
    width: 100%;
    margin-top: 24px;
  }
  .about-wrapper .content-r p {
    text-align: left;
    margin: 8px 0;
  }
}

/* ========================== 
サービス
===========================*/
.service {
  background-color: #F6F6F6;
}

.service-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}

.service-wrapper .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% / 3 - 32px);
}

.service-wrapper .card .service-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 240px;
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 24px;
}

.service-wrapper .card .card-text .title {
  font-size: 16px;
  margin-bottom: 8px;
  text-align: center;
}

.service-wrapper .card .card-text p {
  text-align: left;
  text-align: center;
}

.service-wrapper .card .card-text .btn {
  text-align: center;
  margin-top: 16px;
}

@media screen and (max-width: 1079px) {
  .service-wrapper {
    margin-top: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-wrapper .card {
    width: 100%;
    margin-bottom: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-wrapper .card .service-box {
    margin-right: 24px;
    width: 120px;
    height: 120px;
  }
  .service-wrapper .card .service-box .service-img {
    width: 60%;
  }
  .service-wrapper .card .card-text {
    width: calc(100% - 144px);
  }
  .service-wrapper .card .card-text .title {
    text-align: left;
  }
  .service-wrapper .card .card-text p {
    text-align: left;
    line-height: 1.5em;
  }
  .service-wrapper .card .card-text .btn {
    text-align: right;
  }
}

/* ========================== 
ブログ
===========================*/
.blog-wrapper {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog-wrapper .card {
  width: calc(100% / 3 - 32px);
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 24px;
}

.blog-wrapper .card .blog-thumnail-box {
  height: 200px;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-wrapper .card .blog-thumnail-box .blog-thumbnail {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-wrapper .card .blog-item .blog-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}

.blog-wrapper .card .blog-item .blog-detail .blog-category {
  background-color: #53A2A9;
  color: #FFF;
  font-size: 10px;
  padding: 4px 8px;
  margin-right: 8px;
}

.blog-wrapper .card .blog-item .blog-detail .blog-date {
  color: #C4C4C4;
}

.blog-wrapper .card .blog-item .blog-title {
  font-size: 16px;
  line-height: 1.5;
}

.blog-wrapper .card:hover .blog-thumbnail {
  transform: scale(1.3);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

@media screen and (max-width: 1079px) {
  .blog-wrapper {
    margin-top: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-wrapper .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 24px;
  }
  .blog-wrapper .card .blog-thumnail-box {
    width: 120px;
    height: 80px;
    margin: 0 16px 0 0;
  }
  .blog-wrapper .card .blog-thumnail-box .blog-thumbnail {
    height: 80px;
  }
  .blog-wrapper .card .blog-item .blog-title {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ========================== 
採用情報
===========================*/
.recruit {
  margin-bottom: 96px;
}

.recruit-wrapper {
  background-color: #53A2A9;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 48px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 20%, transparent 20%), radial-gradient(rgba(255, 255, 255, 0.05) 20%, transparent 20%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.recruit-wrapper .content-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 196px);
}

.recruit-wrapper .content-l h2 {
  color: #FFF;
  margin-right: 24px;
}

.recruit-wrapper .content-l p {
  color: #FFF;
  font-size: 12px;
}

.recruit-wrapper .content-r {
  width: 100px;
}

.recruit-wrapper .content-r .btn-more {
  color: #FFF;
}

.recruit-wrapper .content-r .btn-more::after {
  background-color: #FFF;
}

@media screen and (max-width: 1079px) {
  .recruit {
    margin-bottom: 48px;
  }
  .recruit-wrapper .content-l {
    width: calc(100% - 148px);
  }
}

@media screen and (max-width: 640px) {
  .recruit-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 48px;
  }
  .recruit-wrapper .content-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-column-align: start;
        justify-self: start;
    margin-bottom: 24px;
    width: 100%;
  }
  .recruit-wrapper .content-l .section-title {
    margin-bottom: 0px;
  }
  .recruit-wrapper .content-l h2 {
    color: #FFF;
    margin-right: 0px;
    margin-bottom: 16px;
  }
  .recruit-wrapper .content-r {
    width: 100%;
    margin-right: 0;
    text-align: right;
  }
}

/* ========================== 
フッター
===========================*/
footer {
  width: 100%;
  background-color: #F6F6F6;
  padding: 96px 0;
}

footer .nav-pc {
  margin-top: 48px;
}

footer .nav-pc ul {
  width: 100%;
  display: block;
}

footer .nav-pc ul .footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .nav-pc ul .footer-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .nav-pc ul .nav-menu {
  text-align: left;
  margin: 0 24px 24px 0;
}

footer .nav-pc .sns {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1079px) {
  footer {
    padding: 48px 24px;
  }
  footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .logo {
    width: 200px;
  }
  footer .container .nav-pc {
    margin-top: 0;
  }
  footer .container .nav-pc ul {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */