@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
}

body {
  font-family: "Noto Sans JP", "Berlin Sans FB", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-break: strict;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

a {
  text-decoration: none;
  color: #fff;
}

a > span {
  color: #333;
}

div {
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

.header {
  width: 100%;
  height: 89px;
  position: fixed;
  z-index: 100;
  background: rgba(33, 5, 77, 0);
}

@media screen and (max-width: 768px) {
  .header {
    height: 62px;
  }
}

.header.-scroll {
  background: #21054d;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.header__inner {
  width: 96%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header__inner {
    width: 90%;
    height: 62px;
  }
}

.logo {
  line-height: 77px;
  width: 161px;
}

@media screen and (max-width: 768px) {
  .logo {
    width: 120px;
    line-height: 62px;
  }
}

.logo-img {
  width: 100%;
  height: auto;
}

.header__nav {
  width: 558px;
  line-height: 77px;
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  justify-content: space-between;
  padding-right: 2px;
}

.header__list > .menu-item {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.header__list > .menu-item::after {
  position: absolute;
  bottom: 22px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.header__list > .menu-item:hover::after {
  transform: scale(1, 1);
}

.drawer__nav {
  display: none;
}

.drawer__nav.open {
  display: block;
}

.drawer__list {
  line-height: 83px;
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 900px;
  background-color: #120E19;
  z-index: 300;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .drawer__list.open {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    line-height: 40px;
    z-index: 300;
    text-align: center;
    transition: ease .5s;
    width: 100%;
  }
}

.navbar_toggle {
  position: absolute;
  z-index: 9999;
  display: none;
  transition: right 0.3s linear;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .navbar_toggle {
    display: block;
    right: 15px;
    top: 21px;
  }
}

.navbar_toggle.open {
  position: fixed;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .navbar_toggle.open {
    right: 15px;
    top: 21px;
  }
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 3px;
  width: 26px;
  border-radius: 2px;
  background: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s;
  z-index: 9999;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 6px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  background-color: #fff;
  pointer-events: auto;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  background-color: #fff;
  pointer-events: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.section__title {
  font-family: "Montserrat", sans-serif;
  color: #391E88;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .section__title {
    font-size: 1.875rem;
  }
}

.button {
  width: 200px;
  height: 60px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  z-index: 0;
  position: relative;
}

.button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 30px;
  left: 0;
  top: 0%;
  z-index: -1;
  transition: 0.5s;
  background: linear-gradient(to right, #7633A4, #250D65);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.button:hover::before {
  opacity: 0;
}

.button::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  transition: 0.5s;
  border-radius: 30px;
  background: linear-gradient(to right, #a574c5, #862cc2);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.btn__link {
  display: block;
  line-height: 60px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.breadcrumb {
  width: 100%;
  height: 45px;
  background-color: #F7F7F7;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    height: 25px;
  }
}

.breadcrumb__box {
  width: 77%;
  margin-left: auto;
  margin-right: auto;
  line-height: 45px;
}

@media screen and (max-width: 768px) {
  .breadcrumb__box {
    line-height: 25px;
  }
}

.breadcrumb__page {
  line-height: 45px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  margin-left: 11.5%;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .breadcrumb__page {
    height: 25px;
    line-height: 25px;
    margin-left: 5.5%;
    font-size: 0.6875rem;
    overflow: hidden;
  }
}

.home {
  color: #333;
}

.pagination {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
}

.pagenation__page--active {
  width: 45px;
  height: 45px;
  background-color: #F1EBF8;
  text-align: center;
  line-height: 45px;
  border-radius: 25px;
  margin-left: 5px;
  margin-right: 5px;
}

.page-numbers {
  width: 45px;
  height: 45px;
  color: #fff;
  background: linear-gradient(to bottom, #7633A4, #250D65);
  text-align: center;
  line-height: 45px;
  border-radius: 25px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}

.current {
  width: 45px;
  height: 45px;
  background: #F1EBF8;
  text-align: center;
  line-height: 45px;
  border-radius: 25px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  color: #4F31A5;
  font-size: 1.25rem;
  font-weight: bold;
}

.top {
  background-image: url(../img/hero@2x.png);
  width: 100%;
  height: 767.5px;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  .top {
    height: 820px;
    background-position: center right 41%;
  }
}

.top__container {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .top__container {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top__title {
  color: #fff;
  font-size: 4.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  padding-top: 271px;
  margin-left: 17%;
}

@media screen and (max-width: 768px) {
  .top__title {
    width: 100%;
    font-size: 3rem;
    margin-left: 0;
    padding-top: 225px;
    line-height: 62px;
  }
}

.smart {
  display: none;
}

@media screen and (max-width: 768px) {
  .smart {
    display: block;
  }
}

.top__catch {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 34%;
  font-weight: 400;
  margin-top: 28px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .top__catch {
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
    margin-left: 3%;
    line-height: 2rem;
  }
}

.top__contact-btn {
  width: 220px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 30px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
  text-align: center;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  line-height: 58px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.top__contact-btn:hover {
  background: #F1EBF8;
  border: #4F31A5;
}

@media screen and (max-width: 768px) {
  .top__contact-btn {
    margin-top: 40px;
    margin-left: 0;
  }
}

.contact-btn__link {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.contact-btn__link:hover {
  color: #4F31A5;
}

.sub-top {
  background-image: url(../img/hero-sub@2x.png);
  width: 100%;
  height: 240px;
  background-size: cover;
  position: relative;
}

.sub-top__title {
  width: 200px;
  color: #fff;
  font-size: 2.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  padding-top: 110px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  text-align: center;
}

.sub-top__catch {
  width: 100px;
  color: #fff;
  font-size: 0.8125rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.news {
  width: 64%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 71px;
  display: flex;
  justify-content: start;
  margin-bottom: 74px;
}

@media screen and (max-width: 768px) {
  .news {
    width: 100%;
    flex-direction: column;
    padding-top: 35px;
    margin-bottom: 42px;
  }
}

.news__archive {
  width: 63.5%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 61px;
  display: flex;
  justify-content: start;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .news__archive {
    width: 89%;
  }
}

.news__title {
  margin-right: 56px;
  margin-top: 2px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .news__title {
    margin-left: auto;
    margin-right: auto;
  }
}

.news__title::after {
  content: "お知らせ";
  font-size: 0.8125rem;
  position: absolute;
  left: 0;
  top: 46px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .news__title::after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: 36px;
  }
}

.news__container {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .news__container {
    width: 90%;
    margin-top: 51px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news__container > a:hover {
  opacity: 0.6;
}

.news__item {
  display: flex;
  justify-content: start;
  margin-bottom: 16px;
  color: #333;
}

@media screen and (max-width: 768px) {
  .news__item {
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
  }
}

.news__item-date {
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  margin-right: 18px;
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
  .news__item-date {
    letter-spacing: 2px;
    margin-right: 10px;
    line-height: 22px;
  }
}

.news__item-category {
  width: 82px;
  height: 22px;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  background-color: #e8e8e8;
  text-align: center;
  line-height: 22px;
  letter-spacing: -1px;
  margin-right: 22px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}

@media screen and (max-width: 768px) {
  .news__item-category {
    height: 19px;
    line-height: 19px;
    font-size: 0.6875rem;
  }
}

.news__item-text {
  flex: 1;
  max-width: 703px;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: -1px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .news__item-text {
    font-size: 0.875rem;
    line-height: 1.8rem;
    letter-spacing: -0.5px;
    margin-top: 0;
    min-width: 336px;
  }
}

.news__span {
  letter-spacing: -4.5px;
}

.news__span-breadcrumb {
  letter-spacing: -2px;
}

.news__single {
  width: 100%;
}

.news__single-container {
  width: 52%;
  margin-left: 24.7%;
  margin-right: auto;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .news__single-container {
    width: 89%;
    margin-left: auto;
    margin-top: 40px;
  }
}

.news__single-container > a:hover {
  opacity: 0.6;
}

.news__single-title {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -5.5px;
  line-height: 46px;
}

@media screen and (max-width: 768px) {
  .news__single-title {
    font-size: 1.375rem;
    letter-spacing: -3px;
  }
}

.news__single-inner {
  display: flex;
}

.news__single-date {
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  margin-right: 12px;
  margin-top: 10px;
}

.news__single-category {
  width: 82px;
  height: 22px;
  font-size: 0.75rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  background-color: #e8e8e8;
  text-align: center;
  line-height: 22px;
  letter-spacing: -1px;
  margin-right: 22px;
  border-radius: 11px;
  margin-top: 5px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}

.news__single-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  max-height: 400px;
  margin-top: 26px;
  margin-bottom: 50px;
}

.news__single-img > .wp-post-image {
  width: 100%;
  max-width: 750px;
  height: auto;
  max-height: 400px;
  margin-top: 26px;
  margin-bottom: 50px;
}

.news__single-excerpt {
  font-size: 0.9375rem;
  font-weight: 300;
  margin-top: 26px;
  line-height: 26px;
  letter-spacing: -2.5px;
}

.news__single-heading1 {
  font-size: 1.5rem;
  height: 44px;
  margin-top: 72px;
  margin-bottom: 17px;
  line-height: 44px;
}

.news__single-heading1::before {
  background-color: #391E88;
  /* 線色 */
  border-radius: 3px;
  /* 線幅の半分 */
  content: "";
  display: inline-block;
  height: 44px;
  /* 線の長さ */
  margin-right: 14px;
  /* 線右の余白 */
  vertical-align: middle;
  width: 6px;
  /* 線幅 */
}

.news__single-heading2 {
  font-size: 1.125rem;
  margin-top: 56px;
  margin-bottom: 17px;
}

.news__single-text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2rem;
  letter-spacing: -2.5px;
  margin-bottom: 44px;
}

.news__single-text > h2, h3, h4 {
  line-height: 3rem;
}

.post-page-numbers {
  width: 45px;
  height: 45px;
  color: #fff;
  background: linear-gradient(to bottom, #7633A4, #250D65);
  text-align: center;
  line-height: 45px;
  border-radius: 25px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}

.post-page-numbers.current {
  width: 45px;
  height: 45px;
  color: #391E88;
  background: #F1EBF8;
  text-align: center;
  line-height: 45px;
  border-radius: 25px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}

.sns-btn {
  max-width: 395px;
  height: 30px;
  margin-top: 14px;
  background-image: url(../img/btn-sns@2x.png);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .sns-btn {
    max-width: 267px;
    height: 63px;
    background-image: url(../img/btn-sns-sp@2x.png);
  }
}

.news__single-pagenation {
  max-width: 730px;
  display: flex;
  justify-content: center;
  height: 94px;
  border-top: 1px solid #B8AED5;
  border-bottom: 1px solid #B8AED5;
  padding-top: 12px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .news__single-pagenation {
    justify-content: center;
  }
}

.news__single-preview {
  width: 45%;
  font-size: 0.875rem;
  font-weight: 300;
  height: 70px;
  color: #391E88;
  line-height: 70px;
  letter-spacing: -0.8px;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news__single-preview {
    font-size: 0.75rem;
    line-height: 18px;
    margin-left: 10px;
    max-width: 136px;
  }
}

.news__single-preview > a {
  width: 45%;
  font-size: 0.875rem;
  font-weight: 300;
  height: 70px;
  color: #391E88;
  line-height: 70px;
  letter-spacing: -0.8px;
  margin-left: 34px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .news__single-preview > a {
    font-size: 0.75rem;
    line-height: 18px;
    margin-left: 10px;
    max-width: 136px;
  }
}

.news__single-next {
  width: 45%;
  font-size: 0.875rem;
  font-weight: 300;
  height: 70px;
  color: #391E88;
  line-height: 70px;
  letter-spacing: -2px;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news__single-next {
    font-size: 0.75rem;
    line-height: 18px;
    max-width: 136px;
  }
}

.news__single-next > a {
  width: 45%;
  font-size: 0.875rem;
  font-weight: 300;
  height: 70px;
  color: #391E88;
  line-height: 70px;
  letter-spacing: -2px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .news__single-next > a {
    font-size: 0.75rem;
    line-height: 18px;
    max-width: 136px;
  }
}

.separate-line {
  width: 1px;
  height: 70px;
  border-left: 1px solid #B8AED5;
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .separate-line {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 576px) {
  .separate-line {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.news__single-link {
  width: 80px;
  font-size: 0.875rem;
  color: #391E88;
  display: block;
  margin-top: 20px;
  letter-spacing: 1px;
  margin-left: auto;
  margin-right: auto;
}

.service {
  width: 77%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service {
    width: 100%;
  }
}

.service__title {
  position: relative;
  margin-bottom: 52px;
  letter-spacing: 1px;
}

.service__title::after {
  content: "事業内容";
  font-size: 0.8125rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 44px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .service__title::after {
    top: 36px;
  }
}

.service__container {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .service__container {
    width: 89%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}

.service__item {
  width: calc(33.3333333% - 60px / 3);
}

@media screen and (max-width: 768px) {
  .service__item {
    width: 100%;
    margin-bottom: 60px;
  }
}

.service__item-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 220px;
}

.service__item-catch {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 17px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .service__item-catch {
    margin-top: 12px;
    margin-bottom: 8px;
  }
}

.service__item-text {
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: -1.5px;
}

@media screen and (max-width: 768px) {
  .service__item-text {
    overflow: hidden;
    height: 27px;
    text-align: center;
  }
}

.service-btn {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .service-btn {
    display: none;
  }
}

.service-archive {
  width: 77%;
  height: 1141px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .service-archive {
    width: 89%;
  }
}

.service-archive__container {
  margin-top: 70px;
}

.service-archive__item {
  display: flex;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .service-archive__item {
    flex-direction: column;
  }
}

.service-archive__item-img {
  width: 40%;
  max-width: 445px;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .service-archive__item-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.service-archive__item-content {
  margin-left: 50px;
}

@media screen and (max-width: 768px) {
  .service-archive__item-content {
    margin-left: 0;
  }
}

.service-archive__item-catch {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1.5px;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .service-archive__item-catch {
    text-align: center;
    margin-top: 18px;
  }
}

.service-archive__item-text {
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  margin-top: 17px;
  line-height: 27px;
  letter-spacing: -2px;
  white-space: pre-wrap;
}

@media screen and (max-width: 768px) {
  .service-archive__item-text {
    margin-top: 15px;
  }
}

.works {
  width: 87.5%;
  max-width: 1340px;
  height: 651px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 140px;
  position: relative;
}

@media screen and (max-width: 992px) {
  .works {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    height: 821px;
  }
}

@media screen and (max-width: 768px) {
  .works {
    height: 921px;
  }
}

@media screen and (max-width: 576px) {
  .works {
    height: 651px;
  }
}

.swiper-container {
  width: 60%;
  max-width: 750px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 20px;
}

@media screen and (max-width: 992px) {
  .swiper-container {
    width: 88%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}

.swiper-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.works__item-img {
  width: 100%;
  height: auto;
  max-height: 510px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .works__item-img {
    margin-top: 56px;
  }
}

@media screen and (max-width: 576px) {
  .works__item-img {
    margin-top: 56px;
    max-height: 231px;
  }
}

.works__container {
  width: 58%;
  height: 651px;
  background-color: #F0F0F0;
  margin-left: 6%;
  margin-right: auto;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 992px) {
  .works__container {
    width: 100%;
    height: 650px;
    top: 230px;
  }
}

@media screen and (max-width: 576px) {
  .works__container {
    width: 100%;
    height: 450px;
    top: 160px;
  }
}

.works__inner {
  width: 315px;
  text-align: center;
  margin-top: 216px;
  margin-left: 6%;
  margin-right: auto;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 14%;
}

@media screen and (max-width: 992px) {
  .works__inner {
    width: 335px;
    margin-top: 375px;
    position: static;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .works__inner {
    width: 335px;
    margin-top: 345px;
    position: static;
    margin-left: auto;
  }
}

@media screen and (max-width: 576px) {
  .works__inner {
    width: 335px;
    margin-top: 175px;
    position: static;
  }
}

.works__title {
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .works__title {
    margin-bottom: 45px;
  }
}

.works__title::after {
  content: "制作実績";
  font-size: 0.8125rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 46px;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 768px) {
  .works__title::after {
    top: 36px;
  }
}

.works__inner-text {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: -0.7px;
}

@media screen and (max-width: 768px) {
  .works__inner-text {
    letter-spacing: -2px;
  }
}

.works-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.swiper-slide {
  width: 100% !important;
  height: auto;
}

.works-archive {
  width: 100%;
  padding-top: 70px;
}

.works-archive__container {
  width: 77%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .works-archive__container {
    width: 92%;
    flex-direction: column;
  }
}

.works-archive__container::after {
  display: block;
  width: calc(33.3333333% - 60px / 3);
  content: "";
}

.works-archive__item {
  width: calc(33.3333333% - 60px / 3);
  height: 300px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .works-archive__item {
    width: calc(50% - 60px / 2);
  }
}

@media screen and (max-width: 768px) {
  .works-archive__item {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.works-archive__item-img {
  width: 100%;
  height: 238px;
  box-shadow: 1px 1px 10px 1px rgba(27, 19, 16, 0.2);
}

.works-name {
  font-family: "Montserrat", sans-serif;
  margin-top: 12px;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.name-sama {
  font-family: "Noto Sans JP", "Berlin Sans FB", "メイリオ", Meiryo, sans-serif;
}

.company {
  width: 90%;
  height: 615px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .company {
    width: 100%;
    height: 517px;
  }
}

.company__container {
  width: 66.5%;
  height: 615px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  background-image: url(../img/bg-circle@2x.png);
  background-size: cover;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company__container {
    width: 100%;
    background-size: contain;
    margin-top: 40px;
    height: 517px;
  }
}

.company__title {
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 2px;
  padding-top: 138px;
}

@media screen and (max-width: 768px) {
  .company__title {
    padding-top: 0px;
    margin-bottom: 30px;
  }
}

.company__title::after {
  content: "私たちについて";
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 186px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .company__title::after {
    top: 36px;
  }
}

.company__catch {
  width: 61%;
  font-size: 2.25rem;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .company__catch {
    width: 74%;
    font-size: 2rem;
    letter-spacing: -3px;
  }
}

.under-line {
  width: 77%;
  height: 12px;
  margin-left: auto;
  margin-right: auto;
  background-color: #F5F534;
}

@media screen and (max-width: 768px) {
  .under-line {
    height: 8px;
  }
}

.under-line2 {
  display: none;
}

@media screen and (max-width: 768px) {
  .under-line2 {
    width: 64%;
    display: block;
    height: 8px;
    margin-left: auto;
    margin-right: auto;
    background-color: #F5F534;
  }
}

.company__text {
  width: 43%;
  font-size: 0.9375rem;
  font-weight: 300;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  letter-spacing: -2px;
  line-height: 27px;
}

@media screen and (max-width: 768px) {
  .company__text {
    width: 63%;
    font-size: 0.875rem;
    margin-top: 30px;
    line-height: 25px;
  }
}

.company-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 51px;
}

@media screen and (max-width: 768px) {
  .company-btn {
    margin-top: 24px;
  }
}

.member-img1 {
  width: 210px;
  height: 210px;
  position: absolute;
  top: 142px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .member-img1 {
    display: none;
  }
}

.member-img2 {
  width: 210px;
  height: 210px;
  position: absolute;
  top: 142px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .member-img2 {
    display: none;
  }
}

.member-img3 {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 400px;
  left: 11.5%;
}

@media screen and (max-width: 768px) {
  .member-img3 {
    display: none;
  }
}

.member-img4 {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 400px;
  right: 12.5%;
}

@media screen and (max-width: 768px) {
  .member-img4 {
    display: none;
  }
}

.company-archive {
  width: 90%;
  height: 501px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .company-archive {
    width: 100%;
  }
}

.company-archive__container {
  height: 416px;
  width: 66.5%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  background-image: url(../img/bg-circle@2x.png);
  background-size: cover;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company-archive__container {
    width: 100%;
  }
}

.company-archive__title {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #391E88;
  padding-top: 96px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .company-archive__title {
    padding-top: 55px;
  }
}

.company-archive__text {
  width: 46%;
  font-size: 0.9375rem;
  font-weight: 300;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  letter-spacing: -1.5px;
  line-height: 25px;
  white-space: pre-wrap;
}

@media screen and (max-width: 768px) {
  .company-archive__text {
    font-size: 0.875rem;
  }
}

.member-archive-img1 {
  width: 210px;
  height: 210px;
  position: absolute;
  top: 30px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .member-archive-img1 {
    display: none;
  }
}

.member-archive-img2 {
  width: 210px;
  height: 210px;
  position: absolute;
  top: 30px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .member-archive-img2 {
    display: none;
  }
}

.member-archive-img3 {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 286px;
  left: 11%;
}

@media screen and (max-width: 768px) {
  .member-archive-img3 {
    display: none;
  }
}

.member-archive-img4 {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 286px;
  right: 12.5%;
}

@media screen and (max-width: 768px) {
  .member-archive-img4 {
    display: none;
  }
}

.company__ceo {
  width: 77%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .company__ceo {
    width: 89%;
    flex-direction: column;
  }
}

.ceo-img {
  width: 34%;
  max-width: 445px;
  height: auto;
  max-height: 330px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .ceo-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.ceo-text {
  width: 55.5%;
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  line-height: 25px;
  letter-spacing: -2px;
  white-space: pre-wrap;
}

@media screen and (max-width: 768px) {
  .ceo-text {
    width: 89%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

.overview {
  width: 77%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 143px;
}

.overview__title {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
}

.overview__table {
  width: 100%;
  height: 444px;
  margin-top: 30px;
}

.overview-item {
  width: 100%;
  height: 77px;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ddd;
  line-height: 78px;
}

@media screen and (max-width: 768px) {
  .overview-item {
    flex-direction: column;
  }
}

.overview-item__label {
  width: 84px;
  margin-left: 30px;
  font-size: 0.9375rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .overview-item__label {
    line-height: 39px;
    font-size: 1rem;
  }
}

.overview-item__content {
  margin-left: 90px;
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 768px) {
  .overview-item__content {
    line-height: 1rem;
    margin-left: 30px;
    font-size: 1rem;
  }
}

.googlemap-img {
  width: 100%;
  height: 35.5vw;
  max-height: 394px;
  margin-bottom: 8px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .googlemap-img {
    height: 71.6vw;
  }
}

.googlemap-img > iframe {
  width: 100%;
  height: 100%;
}

.googlebtn {
  font-weight: 300;
  color: #391E88;
}

.recruit {
  width: 77%;
  height: 340px;
  max-height: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin-top: 65px;
  background-color: #F7F7F7;
}

@media screen and (max-width: 992px) {
  .recruit {
    height: 35vw;
  }
}

@media screen and (max-width: 768px) {
  .recruit {
    width: 100%;
    flex-direction: column-reverse;
    justify-content: center;
    margin-top: 0;
    min-height: 440px;
    height: 440px;
  }
}

.recruit__container {
  width: 40%;
  text-align: center;
  background-color: #F7F7F7;
}

@media screen and (max-width: 768px) {
  .recruit__container {
    width: 100%;
  }
}

.recruit__title {
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 2px;
  padding-top: 73px;
}

@media screen and (max-width: 992px) {
  .recruit__title {
    padding-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .recruit__title {
    padding-top: 65px;
  }
}

.recruit__title::after {
  content: "採用情報";
  font-size: 0.8125rem;
  font-weight: 600;
  position: absolute;
  left: 50%;
  top: 119px;
  transform: translateX(-50%);
  letter-spacing: 1.5px;
}

@media screen and (max-width: 992px) {
  .recruit__title::after {
    top: 89px;
  }
}

@media screen and (max-width: 768px) {
  .recruit__title::after {
    top: 104px;
  }
}

.recruit__text {
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 56px;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 768px) {
  .recruit__text {
    letter-spacing: -1.5px;
    margin-top: 36px;
  }
}

.recruit-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.recruit-img {
  width: 60%;
  max-width: 665px;
  height: auto;
  max-height: 340px;
}

@media screen and (max-width: 768px) {
  .recruit-img {
    width: 100%;
    object-fit: cover;
    height: auto;
    max-height: 140px;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn__text {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 8px;
}

.recruit-archive {
  width: 100%;
  background-image: url(../img/recruit-back@2x.png);
  background-size: cover;
  padding-bottom: 100px;
}

.recruit-archive__container {
  text-align: center;
  padding-top: 124px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .recruit-archive__container {
    padding-top: 40px;
  }
}

.recruit-archive__title {
  font-size: 4.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .recruit-archive__title {
    font-size: 3rem;
  }
}

.recruit-archive__catch {
  font-size: 2rem;
  font-weight: 300;
  color: #391E88;
  letter-spacing: -3px;
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .recruit-archive__catch {
    font-size: 1.125rem;
  }
}

.recruit-archive__text {
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  width: 388px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  line-height: 28px;
  letter-spacing: -1px;
  white-space: pre-wrap;
}

.recruit-archive__main-img {
  width: 100%;
  margin-bottom: 68px;
}

.recruit-job {
  width: 77%;
  height: 883px;
  margin-left: auto;
  margin-right: auto;
}

.recruit-job__title {
  font-size: 2rem;
  font-weight: 400;
  color: #391E88;
  text-align: center;
  margin-bottom: 42px;
}

@media screen and (max-width: 768px) {
  .recruit-job__title {
    font-size: 1.5rem;
  }
}

.recruit-job__container {
  width: 100%;
  background-color: #fff;
  border: 1px solid #B8AED5;
  border-radius: 10px;
  padding-bottom: 58px;
}

.recruit-job__container-title {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
  margin-top: 62px;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.recruit__table {
  width: 83%;
  margin-left: auto;
  margin-right: auto;
}

.recruit-item {
  display: flex;
  height: auto;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  .recruit-item {
    flex-direction: column;
  }
}

.recruit-qualification {
  display: flex;
  height: auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .recruit-qualification {
    flex-direction: column;
    padding-bottom: 14px;
  }
}

.recruit-item__label {
  width: 80px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 77px;
  margin-left: 20px;
  margin-right: 80px;
}

@media screen and (max-width: 768px) {
  .recruit-item__label {
    line-height: 39px;
    font-size: 0.875rem;
  }
}

.recruit-qualification__label {
  width: 80px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 82px;
  margin-left: 20px;
  margin-right: 80px;
}

@media screen and (max-width: 768px) {
  .recruit-qualification__label {
    font-size: 0.875rem;
    line-height: 61px;
  }
}

.recruit-item__content {
  max-width: 780px;
  line-height: 77px;
  font-size: 0.9375rem;
  flex: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .recruit-item__content {
    line-height: 39px;
    margin-left: 20px;
    font-size: 0.875rem;
  }
}

.recruit-qualification__content {
  max-width: 780px;
  font-size: 0.9375rem;
  white-space: pre-wrap;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .recruit-qualification__content {
    font-size: 0.875rem;
    margin-left: 20px;
  }
}

.recruit-qualification__content-text1 {
  line-height: 28px;
  font-weight: 300;
  margin-top: 30px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .recruit-qualification__content-text1 {
    line-height: 14px;
    margin-top: 14px;
  }
}

.recruit-qualification__content-text2 {
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
  margin-top: 8px;
  font-size: 0.875rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .recruit-qualification__content-text2 {
    line-height: 14px;
  }
}

.recruit-movie {
  width: 77%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 133px;
}

@media screen and (max-width: 768px) {
  .recruit-movie {
    margin-top: 73px;
  }
}

.recruit-movie__title {
  font-size: 2rem;
  font-weight: 700;
  color: #391E88;
  margin-bottom: 36px;
}

.recruit-movie__container {
  width: 100%;
  height: 56vw;
  max-height: 624px;
}

@media screen and (max-width: 768px) {
  .recruit-movie__container {
    max-height: 247px;
  }
}

.contact {
  width: 100%;
  height: 361px;
  padding-top: 100px;
  text-align: center;
  background-color: #F7F7F7;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .contact {
    padding-top: 95px;
    height: 366px;
  }
}

.contact-archive {
  width: 100%;
  height: 371px;
  padding-top: 100px;
  text-align: center;
  background-color: #F7F7F7;
}

.contact__title {
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .contact__title {
    margin-bottom: 44px;
  }
}

.contact__title-archive {
  position: relative;
  margin-bottom: 50px;
  letter-spacing: 0;
  margin-top: -18px;
}

.contact__title::after {
  content: "お問い合わせ";
  font-size: 0.8125rem;
  font-weight: 600;
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  letter-spacing: 1px;
}

.contact__title-archive::after {
  content: "お問い合わせ";
  font-size: 0.8125rem;
  font-weight: 600;
  position: absolute;
  left: 50%;
  top: 46px;
  transform: translateX(-50%);
  letter-spacing: 1px;
}

.contact__text {
  font-size: 0.9375rem;
  font-weight: 300;
  margin-top: 56px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 0.875rem;
    line-height: 26px;
    margin-top: 14px;
  }
}

.contact-btn {
  width: 200px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .contact-btn {
    margin-top: 24px;
  }
}

.contact-archive {
  width: 100%;
  background-color: #fff;
  padding-top: 67px;
}

@media screen and (max-width: 768px) {
  .contact-archive {
    padding-top: 37px;
  }
}

.long {
  height: 1326px;
}

.contact-archive__catch {
  font-weight: 300;
  margin-bottom: 38px;
  letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
  .contact-archive__catch {
    font-size: 0.875rem;
    margin-bottom: 28px;
  }
}

.contact-archive__container {
  width: 77%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .contact-archive__container {
    width: 89%;
  }
}

.contact-main {
  width: 100%;
  height: 1130px;
  background-color: #F7F7F7;
}

@media screen and (max-width: 768px) {
  .contact-main {
    height: 1200px;
  }
}

.form {
  width: 100%;
  text-align: left;
  padding-top: 92px;
}

@media screen and (max-width: 768px) {
  .form {
    padding-top: 27px;
  }
}

form p {
  margin-left: 8%;
  text-align: left;
  margin-bottom: 12px;
  padding-top: 30px;
}

form > p > span {
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 20px;
  line-height: 25px;
}

.mandatory {
  font-size: 0.75rem;
  font-weight: 600;
  color: #391E88;
  margin-left: 20px;
  line-height: 25px;
}

.contact-item__radio {
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .contact-item__radio {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__radio-title, form > p {
  font-weight: 600;
  letter-spacing: -1px;
}

.wpcf7-form-control-wrap {
  margin-left: 0;
}

.radio__container, .wpcf7-form-control.wpcf7-radio {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .radio__container, .wpcf7-form-control.wpcf7-radio {
    display: flex;
    flex-direction: column;
  }
}

.wpcf7-form-control {
  margin-top: 12px;
}

.radio-label, .wpcf7-list-item {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin-left: 20px;
  margin-right: 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .radio-label, .wpcf7-list-item {
    line-height: 18px;
    margin-bottom: 10px;
  }
}

input[type="radio"] {
  display: none;
}

.radio-circle, .wpcf7-list-item-label:before {
  color: #fff;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 15px;
  border: 1px solid #707070;
  background-color: #fff;
  text-align: left;
  line-height: 29px;
  font-size: 18px;
  margin-left: 0;
  position: absolute;
  top: 2px;
  left: -20px;
}

input[type="radio"]:checked + .radio-circle, input[type="radio"]:checked + .wpcf7-list-item-label:before {
  display: inline-block;
  width: 12px;
  height: 12px;
  line-height: 29px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #707070;
  border: 4px solid #fff;
  background-color: #391E88;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.contact-item__name {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .contact-item__name {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__name-title {
  font-weight: 600;
}

.input-name, input[type="text"], input[type="email"] {
  max-width: 300px;
  height: 40px;
  border: 1px solid #aaa;
  margin-top: 4px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.contact-item__company {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .contact-item__company {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__company-title {
  font-weight: 600;
}

.input-company {
  max-width: 300px;
  height: 40px;
  border: 1px solid #aaa;
  margin-top: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.contact-item__email {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .contact-item__email {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__email-title {
  font-weight: 600;
  letter-spacing: -2px;
}

.input-email {
  max-width: 300px;
  height: 40px;
  border: 1px solid #aaa;
  margin-top: 3px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.contact-item__tell {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .contact-item__tell {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__tell-title {
  font-weight: 600;
  position: relative;
}

.hihun {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin-left: 25px;
  position: absolute;
  bottom: 2px;
}

.input-tell, input[type="tel"] {
  max-width: 200px;
  height: 40px;
  border: 1px solid #aaa;
  margin-top: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.contact-item__message {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  margin-left: 8%;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .contact-item__message {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__message-title {
  font-weight: 600;
  letter-spacing: -0.5px;
}

.input-message, textarea {
  width: 100%;
  max-width: 601px;
  height: 255px;
  border: 1px solid #aaa;
  margin-top: 5px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

@media screen and (max-width: 992px) {
  .input-message, textarea {
    width: 90%;
  }
}

.contact-item__select {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  margin-left: 8%;
}

@media screen and (max-width: 768px) {
  .contact-item__select {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form__select-title {
  font-weight: 600;
  letter-spacing: -1.5px;
}

.input-select, select {
  width: 100%;
  max-width: 300px;
  height: 40px;
  border: 1px solid #aaa;
  margin-top: 3px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.wpcf7-submit {
  width: 200px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  background: linear-gradient(to right, #7633A4, #250D65);
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: "Noto Sans JP", "Berlin Sans FB", "メイリオ", Meiryo, sans-serif;
  border: none;
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  z-index: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.wpcf7-submit:hover {
  opacity: 0.8;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  display: flex;
}

.wpcf7 .ajax-loader {
  display: none;
}

.unknown {
  height: 490px;
}

.unknown__title {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #391E88;
}

.unknown-btn {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  width: 100%;
  height: 173px;
  background-color: #120E19;
  text-align: center;
  position: relative;
}

.footer__nav {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 58px;
}

@media screen and (max-width: 768px) {
  .footer__nav {
    width: 85%;
    padding-top: 50px;
  }
}

.footer__list {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__list {
    display: none;
  }
}

.footer__list-sm {
  display: none;
}

@media screen and (max-width: 768px) {
  .footer__list-sm {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .footer__list-sm > li {
    font-size: 0.75rem;
    margin-right: 20px;
    line-height: 36px;
  }
}

.footer__link {
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: bold;
}

.footer__copyright {
  color: #a79887;
  font-family: "Montserrat", sans-serif;
  font-size: 0.625rem;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}

.top-btn {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #391E88;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  text-align: center;
  line-height: 50px;
  font-size: 1.25rem;
  font-weight: bold;
  position: absolute;
  bottom: 47px;
  right: 45px;
  cursor: pointer;
}
