@charset "UTF-8";
/*共通*/
body {
  width: 100%;
  height: auto;
}

h3 {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: center;
  color: #391e88;
}

h4 {
  font-family: 'Hiragino Sans';
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 32px;
  text-align: center;
  color: #391e88;
  padding-bottom: 2em;
}

a {
  color: inherit;
}

.more_btn {
  width: 200px;
  height: 60px;
  border-radius: 50px;
  background: linear-gradient(to right, #7633a4, #250d65);
  font-family: Montserrat;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 60px;
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.header__inner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

h1 {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  line-height: 3;
  padding-left: 1em;
}

.nav {
  display: flex;
  margin-left: 40%;
}

.nav .main_menu {
  display: flex;
}

.nav .main_menu li {
  padding-right: 20px;
  font-size: 15px;
  line-height: 3;
  font-family: Montserrat;
}

.nav .main_menu a {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

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

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

.nav_change_color {
  background: #21054d;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    visibility: hidden;
    opacity: 0;
    background-image: linear-gradient(135deg, #7633a4, #250d65);
  }
  .nav.show {
    opacity: 1;
    visibility: visible;
  }
  .main_menu {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
    padding: 0;
  }
  .main_menu li {
    padding: 0;
    font-weight: bold;
    font-size: 15px;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .btn-trigger {
    position: relative;
    z-index: 100;
    opacity: 0.9;
    top: 10px;
    width: 35px;
    height: 25px;
    cursor: pointer;
  }
  .btn-trigger span {
    position: absolute;
    right: 20px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
  }
  .btn-trigger,
  .btn-trigger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #btn01.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
}

/* トップ*/
#top {
  position: relative;
  width: 100%;
  min-height: 898px;
  background-image: url("../img/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.top_title {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 308px;
}

.top_title h2 {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 72px;
  line-height: 90px;
  text-align: center;
  color: #fff;
  padding-bottom: 18px;
}

.top_title .sp_br {
  display: none;
}

.top_title span {
  font-family: 'Hiragino Sans';
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.11em;
  line-height: 38px;
  text-align: center;
  color: #fff;
  padding-bottom: 50px;
  text-shadow: 0px 3px 6px rgba(153, 38, 196, 0.16);
}

.top_title .ct_btn {
  width: 220px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 60px;
  text-align: center;
  color: #fff;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  height: auto;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block !important;
  }
  #top {
    width: 100%;
    min-width: 768px;
    margin: 0 auto;
    min-height: 800px;
    height: auto;
  }
  .top_title {
    align-items: flex-start;
    padding-left: 50px;
    padding-top: 30%;
    padding-bottom: 30%;
  }
  .top_title h2 {
    font-family: Montserrat;
    font-weight: bold;
    font-size: calc(3rem + 1vw);
    line-height: 62px;
    text-align: left;
    color: #fff;
  }
  .top_title span {
    font-size: 16px;
  }
}

/*newsページ*/
.top__single_page {
  position: relative;
  width: 100%;
  height: 240px;
  background-image: url("../img/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.single_page__title h3 {
  padding-top: 100px;
  font-size: 36px;
  color: #fff;
}

.single_page__title h4 {
  color: #fff;
}

.l__container {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}

/* お知らせ*/
#news {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

#news .news__container {
  max-width: 917px;
  min-height: 97px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.news-list__list .news-list__item {
  display: flex;
  font-size: 15px;
  margin-bottom: 15px;
}

.news-list__list .news-list__heading {
  display: flex;
}

.news-list__list .news-list__date {
  font-family: Montserrat;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #333;
}

.news-list__list .news-list__label {
  background: #e8e8e8;
  width: 82px;
  height: 22px;
  border-radius: 11px;
  text-align: center;
  margin-right: 20px;
  margin-left: 20px;
}

.news-list__list .news-list__label span {
  font-family: Montserrat;
  font-weight: bold;
  text-align: center;
  color: #333;
  font-size: 12px;
  line-height: 1.5;
}

.news-list__list .news-list__label .news_list__link {
  color: #333;
}

@media screen and (max-width: 768px) {
  .news__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 375px;
    height: auto;
  }
  .news__contents {
    width: 100%;
  }
  .news__contents .news-list__list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0 auto;
  }
  .news__contents .news-list__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .news__contents .news-list__body {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 0;
  }
}

/* サービス*/
#service {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.service__contents {
  padding: 30px;
  min-height: 507px;
}

.card__wrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.serv_img {
  width: 100%;
}

.serv_img img {
  width: 100%;
}

.card__txt h5 {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 16px;
  text-align: center;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
}

.card__txt p {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #service {
    width: 90%;
  }
  .card__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .card {
    width: 100%;
    margin-bottom: 30px;
  }
  .serv_img {
    width: 100%;
  }
  .serv_img img {
    width: 100%;
  }
  .card__txt {
    width: 100%;
  }
  .card__txt h5 {
    margin-top: 10px;
  }
  .card__txt p {
    height: 43px;
    font-family: 'Hiragino Sans';
    font-weight: 200;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
  }
}

/* 制作実績*/
#works {
  width: 100%;
  min-height: 651px;
  height: auto;
  padding: 60px 0 40px 0;
}

.l-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  position: relative;
  align-items: center;
  padding: 60px 20px;
}

.l-inner::after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  display: block;
  width: 60%;
  height: 100%;
  content: '';
  transform: translateY(-50%);
  background-color: #f0f0f0;
}

.works__img-wrapper {
  width: 59%;
  margin-right: 30px;
}

.swiper-container {
  max-width: 750px;
  max-height: 510px;
}

.swiper-slide {
  width: 90%;
}

.swiper-slide img {
  width: 100%;
  max-width: 750px;
  max-height: 510px;
}

.works__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.works_txt {
  flex: 1;
  text-align: center;
}

.works_txt h4 {
  margin-bottom: 30px;
}

.works_txt p {
  line-height: 2;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.works__link {
  width: 200px;
  height: 60px;
  border-radius: 50px;
  background: linear-gradient(to right, #7633a4, #250d65);
  font-family: Montserrat;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 60px;
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #works {
    width: 100%;
    margin: 0 auto;
  }
  .l-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .l-inner::after {
    top: 70%;
    right: 0;
    width: 100%;
    height: 60%;
  }
  .works__img-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .swiper-container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
  }
  .swiper-slide {
    width: 100%;
  }
  .swiper-slide img {
    width: 100%;
    min-width: 335px;
    min-height: 231px;
  }
  .works__contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  .works__contents h4 {
    margin-bottom: 15px;
  }
  .works__contents p {
    padding: 0;
    line-height: 2;
  }
}

#company {
  width: 100%;
  min-height: 615px;
  height: auto;
  margin: 0 auto;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  background-image: url("../img/bg-circle.png");
  position: relative;
}

.company__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: auto;
}

.company__txt span {
  font-size: 40px;
  display: inline;
  background: linear-gradient(transparent 80%, #f5f534 50%);
}

.company__txt .sp_br {
  display: none;
}

.company__txt p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: lighter;
  padding-bottom: 1em;
}

.member_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  position: relative;
}

.member-big-img {
  width: 210px;
  height: 210px;
  margin-bottom: 46px;
  position: absolute;
  top: 0;
}

.member-small-img {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 50%;
}

.member-small-men-img {
  left: 50%;
}

.member-small-lady-img {
  right: 50%;
}

@media screen and (max-width: 768px) {
  #company {
    position: unset;
  }
  .company__txt {
    width: 100%;
    height: auto;
  }
  .company__txt span {
    display: inline;
    background: linear-gradient(transparent 80%, #f5f534 50%);
  }
  .company__txt .sp_br {
    display: block;
  }
  .member_img {
    display: none;
  }
  .company_txt {
    width: 100%;
  }
}

/*リクルート*/
#recruit {
  width: 100%;
  padding: 90px;
}

.recruit__container {
  display: flex;
  width: 80%;
  max-width: 1110px;
  height: 340px;
  margin: 0 auto;
}

.recruit__container .recruit__desc {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #f7f7f7;
}

.recruit__container .recruit__img {
  width: 60%;
}

.recruit__container .recruit__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #recruit {
    padding: 0;
  }
  .recruit__container {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
  .recruit__container .recruit__desc {
    width: 100%;
    padding: 80px 0;
  }
  .recruit__container .recruit__img {
    width: 100%;
  }
  .recruit__container .recruit__img img {
    width: 100%;
  }
}

/*コンタクト*/
#contact {
  width: 100%;
  height: 361px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}

@media screen and (max-width: 768px) {
  #contact {
    width: 100%;
    height: auto;
    margin-top: 80px;
    padding: 80px 0;
  }
}

/*フッター*/
footer {
  width: 100%;
  min-height: 173px;
  height: auto;
  background: #120e19;
  text-align: center;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 20px;
}

footer li {
  padding: 0 15px;
}

footer a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

small {
  color: #ccc;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  footer {
    height: auto;
  }
  ul {
    width: 80%;
    flex-wrap: wrap;
    justify-content: start !important;
    align-items: center;
    padding-top: 0;
  }
  ul li {
    padding: 20px 15px;
  }
  ul a {
    font-size: 12px;
  }
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  background: #391e88;
  opacity: 1;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */