@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

@font-face {
	font-family: 'Moonlite';
	src: url(/font/MoonliteSolid.otf);
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

h2 {
  font-size: 4.7rem;
}

@media screen and (max-width: 1079px) {
  h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
}

@media screen and (max-width: 1079px) {
  h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.8rem;
  }
}

section {
  padding-top: 8rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 5rem 5rem 6rem 5rem;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
  }
}

img {
  width: 100%;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1079px) {
  .inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  /* background: #F5F5F2; */
  background: #FFFFFF;
}

.-name {
  font-size: 3.5rem;
}

.-bold {
  font-weight: 700;
}

.-semibold {
  font-weight: 600;
}

.-medium {
  font-weight: 500;
}

.-light {
  font-weight: 300;
}

.-exlight {
  font-weight: 200;
  font-style: italic;
}

.-white {
  color: #fff;
}

.-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.-en {
  font-family: "sofia-pro", "sans-serif";
  /* font-family: "Moonlite", sans-serif; */
  font-weight: normal;
}

.-tr {
  /* font-family: "Train One", "cursive"; */
  font-family: "Moonlite", sans-serif;
  color: #06285f;
}

.-right {
  text-align: right;
  margin-top: 4rem;
  margin-right: 5rem;
}

@media screen and (max-width: 1079px) {
  .-right {
    margin-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .-right {
    margin-right: 5rem;
  }
}

.page-title {
  /* font-size: 4.7rem; */
  font-size: 8rem;
  color: #06285f;
  /* color: #2A5CAA; */
  letter-spacing: 2.5px;
}

@media screen and (max-width: 1079px) {
  .page-title {
    font-size: 8rem;
    /* font-size: 3.6rem; */
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 8rem;
    /* font-size: 2.4rem; */
  }
}

.util-title {
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .util-title {
    margin-bottom: 1rem;
  }
}

/* アニメーション前 */
.u-fade-type-up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

.u-fade-type-up-slow {
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 下からフェードイン */
.u-fade-type-up.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.u-fade-type-up-slow.is-active {
  -webkit-transition: 1.6s;
  transition: 1.6s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* アニメーション前 */
.u-fade-type-left {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-left.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* アニメーション前 */
.u-fade-type-right {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-right.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

header {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
}

@media screen and (max-width: 1079px) {
  header {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding: 10px 0;
  }
}

.header__logo {
  max-width: 80px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 60px;
    margin-left: 10px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  font-family: 'Moonlite', sans-serif;
  letter-spacing: 1.8px;
  font-size: 2.2rem;
  color: #06285f;
  
}

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

.header__nav__li:not(:first-child) {
  margin-left: 5rem;
}

.header__nav__li a {
  position: relative;
}

.header__nav__li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header__nav__li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.drawer__icon {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
    top: 25px;
    right: 15px;
  }
}

.drawer__icon.is-active {
  /* -webkit-transform: translateX(-300px);
          transform: translateX(-300px); */
}

.drawer__icon.is-active .drawer__icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}

.drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}

.drawer__icon.is-active .drawer__icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
}

.drawer__icon-bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
  border-radius: 999px;
}

.drawer__icon-bars:hover {
  cursor: pointer;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #06285f;
  top: 0;
  left: 0;
  border-radius: 999px;
  z-index: 41;
}

.drawer__icon-bar1 {
  top: 0;
}

.drawer__icon-bar2 {
  top: 8px;
}

.drawer__icon-bar3 {
  top: 16px;
}

.drawer__content {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  padding-top: 161px;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__content-items {
  z-index: 40;
  font-family: 'Moonlite', sans-serif;
}

.drawer__content-item p {
  text-align: center;
}

.drawer__content-item a {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 400;
  padding-bottom: 32px;
  text-align: center;
}

.drawer__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #06285f;
  opacity: 0.7;
  z-index: 39;
  display: none;
}

.drawer__background.is-active {
  display: block;
}

footer {
  /* background: #191B1F; */
  background: #06285f;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  footer {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.footer__inner {
  margin-bottom: 60px;
  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;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    margin-bottom: 30px;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.footer__logo {
  max-width: 120px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 60px;
    margin-left: 10px;
    max-width: 100px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-family: 'Moonlite', sans-serif;
  letter-spacing: 1.8px;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
  }
}

.footer__nav__li:not(:first-child) {
  margin-left: 5rem;
}

@media screen and (max-width: 767px) {
  .footer__nav__li:not(:first-child) {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.footer__nav__li a {
  position: relative;
}

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

.footer__nav__li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.footer__copy {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1.3rem;
}

.mv {
  padding-top: 33rem;
  padding-bottom: 33rem;
  height: 100vh;
  position: relative;
}

.video-wrap {
  width: 100%;
  height: 100vh;
  background: url(/img/airtop-min.jpg) no-repeat center/cover;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  top: 0%;
  left: 0%;
}

@media screen and (max-width: 767px) {
  .video-wrap {
    display: none;
  }
}

.video-wrap::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}

.video-wrap video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.video-wrap-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .video-wrap-sp {
    display: block;
    width: 100%;
    height: 100vh;
    background: url(/img/airtop-min.jpg) no-repeat center/cover;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    top: 0%;
    left: 0%;
  }
  .video-wrap-sp::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #10394b;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .3;
  }
  .video-wrap-sp video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
}

.mv__inner {
  color: #fff;
}

.mv__sub {
  font-size: 2.4rem;
  margin-left: 2rem;
}

@media screen and (max-width: 767px) {
  .mv__sub {
    font-size: 1.8rem;
    margin-left: 1.3rem;
  }
}

.mv__catch {
  margin-top: 23px;
  font-size: 3.5rem;
}

@media screen and (max-width: 767px) {
  .mv__catch {
    font-size: 2.4rem;
  }
}

.logo_slider {
  width: 90%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  margin: auto;
}

.logo__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo__swiper-slide {
  width: 18%;
  height: 8rem;
  margin-right: 5rem;
  background-color: #ffffffc1;
  object-fit: contain;
  object-position: 50% 50%;
}

.logo__swiper-slide img{
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.about {
  padding-top: 6rem;
  overflow: hidden;
}

.about__inner {
  position: relative;
}

.about__title, .service__title, .case__title, .company__title {
  margin-bottom: 1.3rem;
  letter-spacing: 3px;
}

.about__title__sub, .service__title__sub, .case__title__sub, .company__title__sub, .page__member__title__sub, .page__about__title__sub{
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .logo__swiper-slide {
    width: 100px;
    height: 8rem;
    margin-right: 2rem;
  }

  .about__title {
    margin-bottom: 1rem;
  }
}

.about__info__title {
  margin-top: 4.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.about__info__text {
  line-height: 1.6875;
  max-width: 48.4rem;
  margin-bottom: 6.6rem;
}

@media screen and (max-width: 1079px) {
  .about__info__text {
    max-width: 31.4rem;
  }
}

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

.about__info__btn a {
  position: relative;
}

.about__info__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 36px;
  height: 1px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.about__info__btn a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.about__info__btn a:hover::before {
  right: -75%;
}

.about__info__btn a:hover::after {
  right: -75%;
}

.about__info__btn a span {
  position: absolute;
  top: 0%;
  right: -80%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.about__info__btn a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -25%;
  right: -86%;
  opacity: 0;
}

.about__img__wrap {
  overflow: hidden;
}

.about__img {
  max-width: 28.5%;
}

.about__img img {
  border-radius: 12px;
}

.ai-1 {
  position: absolute;
  top: 22%;
  right: 20%;
}

@media screen and (max-width: 1079px) {
  .ai-1 {
    top: 37%;
    right: 15%;
  }
}

@media screen and (max-width: 767px) {
  .ai-1 {
    display: none;
  }
}

.ai-2 {
  position: absolute;
  top: 10%;
  right: -9%;
}

@media screen and (max-width: 1079px) {
  .ai-2 {
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .ai-2 {
    top: -10%;
    display: none;
  }
}

.service {
  padding-right: 0;
}

.service__inner{
  margin-bottom: 300px;
}

.service__img__venn{
  position: absolute;
  top: 2%;
  right: 10%;
  max-width: 37.5%;
}

@media screen and (max-width: 767px) {

  .service__inner{
    margin-bottom: 430px;
    width: 90%;
    margin-left: 0;
  }

  
  .service__img__venn{
    position: absolute;
    top: 120px;
    right: 50%;
    translate: 50% 50%;
    width: 90%;
    max-width: 400px;
    background-color: #ffffff85;
  }
}

.service__contents {
  margin-top: 3rem;
}

.service__info__wrap {
  margin-bottom: 8.5rem;
  max-width: 44.1rem;
}

@media screen and (max-width: 767px) {
  .service__info__wrap {
    margin-bottom: 3.5rem;
  }
}

.service__info__text {
  line-height: 1.625;
}

.service__img__swiper {
  padding-left: 12rem;
  height: 50rem;
}

@media screen and (max-width: 1079px) {
  .service__img__swiper {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .service__img__swiper {
    padding-left: 0;
    height: 35rem;
  }
}

.service__img__swiper-slide {
  max-width: 42rem;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  background: #fff;
  padding-top: 10rem;
}

@media screen and (max-width: 1079px) {
  .service__img__swiper-slide {
    width: 36rem;
    height: 36rem;
  }
}

@media screen and (max-width: 767px) {
  .service__img__swiper-slide {
    width: 27rem;
    height: 27rem;
    padding-top: 5rem;
  }
}

.service__img__swiper-slide_bg_1 {
  background: url(/img/service_img_1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.service__img__swiper-slide_bg_1::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 999px;
  z-index: -1;
}

.service__img__swiper-slide_bg_2 {
  background-image: url(/img/service_img_2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.service__img__swiper-slide_bg_2::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 999px;
  z-index: -1;
}

.service__img__swiper-slide_bg_3 {
  background-image: url(/img/service_img_3.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.service__img__swiper-slide_bg_3::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 999px;
  z-index: -1;
}

.service__img__swiper-slide_bg_4 {
  background-image: url(/img/service_img_4.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.service__img__swiper-slide_bg_4::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 999px;
  z-index: -1;
}

.sis-number {
  font-size: 2.7rem;
}

@media screen and (max-width: 1079px) {
  .sis-number {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .sis-number {
    font-size: 1.8rem;
  }
}

.sis-title {
  font-size: 4.3rem;
  margin-top: -1.5rem;
}

@media screen and (max-width: 1079px) {
  .sis-title {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  .sis-title {
    font-size: 2.4rem;
    margin-top: -.5rem;
  }
}

.sis-info {
  margin-top: 5rem;
  margin-bottom: 5rem;
  max-width: 34rem;
}

@media screen and (max-width: 1079px) {
  .sis-info {
    max-width: 31rem;
  }
}

@media screen and (max-width: 767px) {
  .sis-info {
    max-width: 24rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.sis-btn {
  font-size: 1.4rem;
}

.sis-btn a {
  position: relative;
}

.sis-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 29px;
  height: 1px;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sis-btn a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sis-btn a:hover::before {
  right: -75%;
}

.sis-btn a:hover::after {
  right: -75%;
}

.sis-btn a span {
  position: absolute;
  top: 2%;
  right: -78%;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sis-btn a:hover span {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -25%;
  right: -86%;
  opacity: 0;
}

.service__img__swiper-button-prev {
  padding: 20px;
  top: 94%;
  left: 84%;
  border: 1px solid #000;
  border-radius: 999px;
  --swiper-navigation-size: 24px;
  --swiper-theme-color: #000;
}

.service__img__swiper-button-prev::after {
  font-family: serif;
  content: "<";
}

@media screen and (max-width: 1079px) {
  .service__img__swiper-button-prev {
    left: 73%;
  }
}

@media screen and (max-width: 767px) {
  .service__img__swiper-button-prev {
    top: 85%;
    left: 55%;
  }
}

.service__img__swiper-button-next {
  padding: 20px;
  top: 94%;
  right: 8%;
  border: 1px solid #000;
  border-radius: 999px;
  --swiper-navigation-size: 24px;
  --swiper-theme-color: #000;
}

.service__img__swiper-button-next::after {
  font-family: serif;
  content: ">";
}

@media screen and (max-width: 767px) {
  .service__img__swiper-button-next {
    top: 85%;
  }
}

.swiper-horizontal .service__img__swiper-scrollbar {
  width: 70%;
  height: 1px;
  left: 12rem;
  bottom: 4%;
}

@media screen and (max-width: 1079px) {
  .swiper-horizontal .service__img__swiper-scrollbar {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .swiper-horizontal .service__img__swiper-scrollbar {
    left: 0;
    bottom: 12%;
    width: 50%;
  }
}

.swiper-horizontal .service__img__swiper-scrollbar .swiper-scrollbar-drag {
  background: #0C53B4;
}

@media screen and (max-width: 1079px) {
  .swiper-horizontal .service__img__swiper-scrollbar .swiper-scrollbar-drag {
    width: 53% !important;
  }
}

@media screen and (max-width: 767px) {
  .swiper-horizontal .service__img__swiper-scrollbar .swiper-scrollbar-drag {
    width: 30% !important;
  }
}

.case__contents {
  margin-top: 4rem;
  border-top: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .case__contents {
    margin-top: 2rem;
  }
}

.case__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #707070;
  padding-bottom: 4rem;
  padding-top: 4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.case__card:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .case__card {
    padding-top: 6rem;
    display: block;
    padding-bottom: 2rem;
  }
}

.case__img {
  max-width: 304px;
}

.case__img img {
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .case__img {
    margin: 0 auto 2rem;
    max-width: 340px;
  }
}

.case__card__text_wrap {
  margin-left: 3.7rem;
}

@media screen and (max-width: 767px) {
  .case__card__text_wrap {
    margin: 4rem auto;
    max-width: 340px;
  }
}

.case__card__title {
  margin-bottom: 10px;
  font-size: 3.5rem;
}

.case__card__subtitle{
  margin-bottom: 1rem;
  font-size: 24px;
}

.case__card__logo{
  width: 200px;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 1079px) {
  .case__card__title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .case__card__title {
    font-size: 2.4rem;
  }
  .case__card__logo{
    width: 200px;
    margin: 60px auto;
  }
}

.case__card__info{
  margin: 20px 0px;
}

.case__card__text {
  margin-bottom: 3rem;
  font-size: 3rem;
}

#case__card__text__s{
  font-size: 18px;
  margin-top: 20px;
}

@media screen and (max-width: 1079px) {
  .case__card__text {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .case__card__text {
    margin: 1rem 0;
    font-size: 2rem;
  }

  #case__card__text__s{
    font-size: 1.8rem;
  }
  

  .case__card__info{
    margin-top: 0;
  }
}

.case__btn {
  margin-top: 4rem;
}

.case__btn a {
  position: relative;
}

.case__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 36px;
  height: 1px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.case__btn a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.case__btn a:hover::before {
  right: -75%;
}

.case__btn a:hover::after {
  right: -75%;
}

.case__btn a span {
  position: absolute;
  top: 0%;
  right: -80%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.case__btn a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -25%;
  right: -86%;
  opacity: 0;
}

.company__contents {
  margin-top: 6.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .company__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    /* -webkit-box-direction: reverse; */
        -ms-flex-direction: column;
            flex-direction: column;
            /* -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; */
    margin-top: 2.5rem;
  }
}

.company__table__wrap {
  max-width: 50%;
  width: 100%;
}

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

.company__table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 50%;
}

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

.company__tr {
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  letter-spacing: 2px;
  line-height: 10px;
  vertical-align:middle
}

.company__tr:nth-child(1) {
  border-top: 1px solid #D9D9D9;
}

@media screen and (max-width: 767px) {
  .company__tr {
    padding-left: 10%;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}

.company__th {
  font-size: 1.8rem;
  font-weight: 400;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .company__th {
    font-size: 1.6rem;
  }
}

.company__td {
  padding-left: 6rem;
}

@media screen and (max-width: 767px) {

  .company__td {
    padding-left: 1rem;
  }
  
  #company__td__content{
    font-size: 12px;
  }

  .company__img__wrap {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 390px) {  
  #company__td__content{
    font-size: 10px;
  }
}

.company__img {
  max-width: 500px;
}

.company__img img {
  border-radius: 12px;
}

@media screen and (max-width: 1079px) {
  .company__img {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .company__img {
    margin-left: 0;
  }
}

.company__btn {
  text-align: center;
  margin-top: 11rem;
}

.company__btn a {
  padding: 1.5rem 4rem;
  border: 1px solid #707070;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.company__btn a:hover {
  color: #fff;
  /* background-color: #191B1F; */
  background-color: #2A5CAA;
}

@media screen and (max-width: 767px) {
  .company__btn {
    margin-top: 4rem;
  }
}

.img_slider {
  padding-top: 8rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 1079px) {
  .img_slider {
    padding: 5rem 5rem 6rem 5rem;
  }
}

@media screen and (max-width: 767px) {
  .img_slider {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
  }
}

.img__swiper .swiper-wrapper .swiper-slide {
  max-width: 380px;
  margin-left: 24px;
}

.img__swiper .swiper-wrapper .swiper-slide img {
  border-radius: 12px;
}

.page__about {
  position: relative;
  margin-top: 5rem;
}

.page__about__inner {
  padding-top: 10rem;
}

.page__about__img {
  width: 50%;
  position: absolute;
  top: 30%;
  right: 0;
}

.page__about__img img {
  border-radius: 12px 0 0 12px;
}

@media screen and (max-width: 767px) {
  .page__about__img img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .page__about__img {
    position: unset;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__inner {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.page__about__ceo__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.page__about__ceo__img {
  max-width: 50rem;
}

.page__about__ceo__img img {
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .page__about__ceo__img {
    margin: 0 auto 2rem;
  }
}

.page__about__ceo__profile {
  max-width: 48.4rem;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__profile {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__profile {
    margin-left: 0;
    margin: 0 auto;
  }
}

.page__about__ceo__sub {
  font-size: 2.4rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__sub {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__sub {
    font-size: 1.8rem;
  }
}

.page__about__ceo__name {
  font-size: 3.5rem;
  margin-top: 2.5rem;
  margin-bottom: 4.4rem;
  color: #06285f;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__name {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__name {
    font-size: 2.4rem;
  }
}

.page__about__ceo__catch {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  color: #06285f;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__catch {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__catch {
    font-size: 1.8rem;
  }
}

.page__about__ceo__text {
  line-height: 1.75;
}

.page__about__info {
  padding-top: 6rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .page__about__info {
    margin-bottom: 2rem;
  }
}

.page__about__info__inner {
  position: relative;
}

.page__about__info__title {
  margin-left: -2.5rem;
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .page__about__info__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page__about__info__wrap {
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .page__about__info__wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

.page__about__info__title {
  margin-top: 4.3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page__about__info__text {
  line-height: 1.6875;
  max-width: 48.4rem;
  margin-bottom: 6.6rem;
}

@media screen and (max-width: 767px) {
  .page__about__info__text {
    margin-bottom: 2.6rem;
  }
}

.page__about__info__img__wrap {
  overflow: hidden;
}

.page__about__info__img {
  border-radius: 12px;
  object-fit: cover;
}

.page__about__info__img img {
  border-radius: 12px;
}

.pai-1 {
  position: absolute;
  top: 45%;
  right: 20%;
  max-width: 25%;
}

@media screen and (max-width: 767px) {
  .pai-1 {
    display: none;
  }
}

.pai-2 {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 40%;
  z-index: -1;
}


@media screen and (max-width: 767px) {
  .pai-2 {
    position: unset;
    max-width: 100%;
  }
  .pai-2 img {
    height: 300px;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.btn__container {
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .btn__container {
    margin-bottom: 6rem;
  }
}

.page__member {
  position: relative;
  margin-top: 5rem;
}

.page__member__inner {
  padding-top: 10rem;
}

.page__member__img {
  width: 50%;
  position: absolute;
  top: 30%;
  right: 0;
  max-height: 300px;
}

.page__member__img img {
  border-radius: 12px 0 0 12px;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .page__member__img img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .page__member__img {
    /* position: unset;
    width: 100%;
    margin-top: 1.5rem; */
    display: none;
  }
}

.page__member__introduction {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .page__member__introduction__inner {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.page__member__introduction__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

@media screen and (max-width: 1079px) {
  .page__member__introduction__wrap {
    width: 40%;
  }
}

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

.page__member__introduction__wrap:nth-child(2) {
  margin-top: 5rem;
}

.page__member__introduction__wrap:nth-child(odd) {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .page__member__introduction__wrap:nth-child(odd) {
    margin-top: 5rem;
  }
}

.page__member__introduction__wrap:nth-child(even) {
  margin-top: 13rem;
}

@media screen and (max-width: 767px) {
  .page__member__introduction__wrap:nth-child(even) {
    margin-top: 5rem;
  }
}

.page__member__introduction__wrap:nth-child(1) {
  margin-top: 0rem;
}

.page__member__introduction__wrap:nth-child(2) {
  margin-top: 5rem;
}
/* 
.page__member__introduction__wrap:nth-child(5) {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .page__member__introduction__wrap:nth-child(5) {
    margin-top: 5rem;
  }
}

.page__member__introduction__wrap:nth-child(6) {
  margin-top: 13rem;
}

@media screen and (max-width: 767px) {
  .page__member__introduction__wrap:nth-child(6) {
    margin-top: 5rem;
  }
} */

.page__member__introduction__img {
  max-width: 40rem;
  max-height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.page__member__introduction__img img {
  height: 100%;
  max-width: 40rem;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 42%;
     object-position: 50% 42%;
}

@media screen and (max-width: 767px) {
  .page__member__introduction__img {
    max-width: 30rem;
    margin: 0 auto 2rem;
  }
}

.page__member__introduction__profile {
  max-width: 48.4rem;
  padding: 24px 10px 24px 10px;
}

@media screen and (max-width: 1079px) {
  .page__member__introduction__profile {
    margin-left: 2rem;
    padding: 24px 15px 24px 15px;
  }
}

@media screen and (max-width: 767px) {
  .page__member__introduction__profile {
    margin-left: 0;
    margin: 0 auto;
  }
}

.page__member__introduction__profile div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.icon__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon__wrap a {
  font-size: 3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon__wrap a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1079px) {
  .icon__wrap a {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .icon__wrap a {
    font-size: 2.2rem;
  }
}

.icon__wrap a:nth-child(2) {
  margin-left: 2rem;
}

@media screen and (max-width: 767px) {
  .icon__wrap a:nth-child(2) {
    margin-left: 1.2rem;
  }
}

.page__member__introduction__name {
  font-size: 2.6rem;
  color: #06285f;
  font-weight: bold;
  /* font-family: 'Moonlite', sans-serif; */
}

@media screen and (max-width: 1079px) {
  .page__member__introduction__name {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .page__member__introduction__name {
    font-size: 2.0rem;
  }
}

.page__member__introduction__sub {
  font-size: 1.4rem;
}

@media screen and (max-width: 1079px) {
  .page__member__introduction__sub {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .page__member__introduction__sub {
    font-size: 1.2rem;
  }
}

.page__member__introduction__text {
  margin-top: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.48px;
}

.page__member__info {
  padding-top: 6rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .page__member__info {
    margin-bottom: 2rem;
  }
}

.page__member__info__inner {
  position: relative;
}

.page__member__info__title {
  margin-left: -2.5rem;
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .page__member__info__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page__member__info__wrap {
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .page__member__info__wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

.page__member__info__title {
  margin-top: 4.3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page__member__info__text {
  line-height: 1.6875;
  max-width: 48.4rem;
  margin-bottom: 6.6rem;
}

@media screen and (max-width: 767px) {
  .page__member__info__text {
    margin-bottom: 2.6rem;
  }
}

.page__member__info__img__wrap {
  overflow: hidden;
}

.page__member__info__img {
  border-radius: 12px;
}

.page__member__info__img img {
  border-radius: 12px;
}

.pai-1 {
  position: absolute;
  top: 45%;
  right: 20%;
  max-width: 25%;
}

@media screen and (max-width: 767px) {
  .pai-1 {
    display: none;
  }
}

.pai-2 {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 40%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .pai-2 {
    position: unset;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pai-2 img {
    height: 300px;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.btn__container {
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .btn__container {
    margin-bottom: 6rem;
  }
}

.page__contact {
  margin-top: 5rem;
}

.page__contact-title {
  margin-left: 0;
  text-align: center;
}

.page__contact-sub {
  text-align: center;
  display: block;
}

.page__contact-text {
  text-align: center;
  line-height: 1.625;
  margin-top: 12rem;
}

@media screen and (max-width: 767px) {
  .page__contact-text {
    margin-top: 6rem;
  }
}

.page__contact__contents {
  margin-top: 12rem;
  margin-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .page__contact__contents {
    margin-top: 6rem;
  }
}

form {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  padding: 90px 160px;
}

@media screen and (max-width: 1079px) {
  form {
    padding: 90px 120px;
  }
}

@media screen and (max-width: 767px) {
  form {
    padding: 40px 20px;
  }
}

.input-wrap:not(:first-child) {
  margin-top: 20px;
}

.input-wrap label {
  display: block;
  margin-bottom: 2px;
}

.input-wrap input {
  width: 100%;
  height: 40px;
  background: #E6E6E6;
  padding-left: 10px;
  border-radius: 5px;
}

.input-wrap input:focus {
  background: #e0f1ff;
}

@media screen and (max-width: 767px) {
  .input-wrap input {
    height: 34px;
  }
}

.input-wrap select {
  width: 100%;
  height: 40px;
  background: #E6E6E6;
  padding-left: 10px;
  border-radius: 5px;
}

.input-wrap select:focus {
  background: #e0f1ff;
}

@media screen and (max-width: 767px) {
  .input-wrap select {
    height: 34px;
  }
}

.input-wrap textarea {
  width: 100%;
  background: #E6E6E6;
  padding: 10px 5px;
  border-radius: 5px;
}

.input-wrap textarea:focus {
  background: #e0f1ff;
}

.radio__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

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

.radio-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio-btn input {
  width: auto;
  height: 20px;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.radio-btn label {
  margin-left: 1rem;
  line-height: 1.65em;
}

.privacy-wrap {
  margin-top: 6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .privacy-wrap {
    margin-top: 3rem;
  }
}

.privacy-text {
  margin-bottom: 8px;
}

.privacy-text a {
  color: #005698;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.privacy-text a:hover {
  opacity: 0.5;
}

.check-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.check-box {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.check-box:hover {
  cursor: pointer;
}

.check-box:checked + .check-box-part {
  width: 10px;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-left: 0px solid rgba(0, 0, 0, 0);
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}

.check-box:focus + .check-box-part {
  background: #e0f1ff;
}

.check-box:checked:focus + .check-box-part {
  background: transparent;
}

.check-box-part {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .check-text {
    font-size: 12px;
  }
}

.submit-btn {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  width: 50%;
  border-radius: 999px;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
  background: #e6e6e6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1079px) {
  .submit-btn {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .submit-btn {
    height: 45px;
    width: 70%;
    font-size: 2rem;
  }
}

.submit-btn.-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #bad3ff;
  background: linear-gradient(40deg, #bad3ff 0%, #5099ff 45%);
}

.required {
  font-size: 1rem;
  color: #ad0101;
}

.contact__message {
  text-align: center;
  margin-top: 6rem;
  display: none;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .contact__message {
    font-size: 2rem;
  }
}

.contact__message.-error {
  color: #ad0101;
}

.page__service {
  position: relative;
  margin-top: 5rem;
}

.page__service__inner {
  padding-top: 10rem;
}

.page__service__img {
  width: 50%;
  position: absolute;
  top: 30%;
  right: 0;
}

.page__service__img img {
  border-radius: 12px 0 0 12px;
}

@media screen and (max-width: 767px) {
  .page__service__img img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .page__service__img {
    position: unset;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__inner {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.page__service__menu__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page__service__menu__card:not(:first-child) {
  margin-top: 12rem;
}

.page__service__menu__card:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1079px) {
  .page__service__menu__card:nth-child(2n) .page__service__menu__info {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__card:nth-child(2n) .page__service__menu__info {
    margin-right: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1079px) {
  .page__service__menu__card:nth-child(odd) .page__service__menu__info {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__card:nth-child(odd) .page__service__menu__info {
    margin-left: 0;
    margin: 0 auto;
  }
}

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

.page__service__menu__img {
  max-width: 50rem;
}

.page__service__menu__img img {
  border-radius: 12px;
}

@media screen and (max-width: 1079px) {
  .page__service__menu__img {
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__img {
    margin: 0 auto 2rem;
    max-width: 100%;
  }
}

.page__service__menu__info {
  max-width: 48.4rem;
}

.page__service__menu__sub {
  font-size: 2.4rem;
}

@media screen and (max-width: 1079px) {
  .page__service__menu__sub {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__sub {
    font-size: 1.8rem;
  }
}

.page__service__menu__title {
  font-size: 3.5rem;
  margin-top: 2.5rem;
  margin-bottom: 4.4rem;
  color: #06285f;
}

@media screen and (max-width: 1079px) {
  .page__service__menu__title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__title {
    font-size: 2.4rem;
  }
}

.page__service__menu__catch {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 1079px) {
  .page__service__menu__catch {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__service__menu__catch {
    font-size: 1.8rem;
  }
}

.page__service__menu__text {
  line-height: 1.75;
}

.page__service__menu__btn {
  margin-top: 1rem;
}

.page__service__menu__btn a {
  position: relative;
}

.page__service__menu__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 36px;
  height: 1px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.page__service__menu__btn a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.page__service__menu__btn a:hover::before {
  right: -75%;
}

.page__service__menu__btn a:hover::after {
  right: -75%;
}

.page__service__menu__btn a span {
  position: absolute;
  top: 0%;
  right: -80%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.page__service__menu__btn a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -25%;
  right: -86%;
  opacity: 0;
}

.page__service__info {
  padding-top: 6rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .page__service__info {
    margin-bottom: 2rem;
  }
}

.page__service__info__inner {
  position: relative;
}

.page__service__info__title {
  margin-left: -2.5rem;
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .page__service__info__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page__service__info__wrap {
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .page__service__info__wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

.page__service__info__title {
  margin-top: 4.3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page__service__info__text {
  line-height: 1.6875;
  max-width: 48.4rem;
  margin-bottom: 6.6rem;
}

@media screen and (max-width: 767px) {
  .page__service__info__text {
    margin-bottom: 2.6rem;
  }
}

.page__service__info__img__wrap {
  overflow: hidden;
}

.page__service__info__img {
  border-radius: 12px;
}

.page__service__info__img img {
  border-radius: 12px;
}

.pai-1 {
  position: absolute;
  top: 45%;
  right: 20%;
  max-width: 25%;
}

@media screen and (max-width: 767px) {
  .pai-1 {
    display: none;
  }
}

.pai-2 {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 40%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .pai-2 {
    position: unset;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pai-2 img {
    height: 300px;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.btn__container {
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .btn__container {
    margin-bottom: 6rem;
  }
}

.page__production {
  position: relative;
  margin-top: 5rem;
}

.page__production__inner {
  padding-top: 10rem;
}

.page__production__img {
  width: 50%;
  position: absolute;
  top: 30%;
  right: 0;
}

.page__production__img img {
  border-radius: 12px 0 0 12px;
}

@media screen and (max-width: 767px) {
  .page__production__img img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .page__production__img {
    position: unset;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page__production__overview__inner {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.page__production__overview__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .page__production__overview__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page__production__overview__img {
  max-width: 50rem;
}

.page__production__overview__img img {
  border-radius: 12px;
}

@media screen and (max-width: 1079px) {
  .page__production__overview__img {
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .page__production__overview__img {
    margin: 0 auto 2rem;
    max-width: 100%;
  }
}

.page__production__overview__info {
  max-width: 48.4rem;
}

@media screen and (max-width: 1079px) {
  .page__production__overview__info {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__production__overview__info {
    margin-right: 0;
    margin: 0 auto;
  }
}

.page__production__overview__sub {
  font-size: 2.4rem;
}

@media screen and (max-width: 1079px) {
  .page__production__overview__sub {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__production__overview__sub {
    font-size: 1.8rem;
  }
}

.page__production__overview__title {
  font-size: 3.5rem;
  margin-top: 2.5rem;
  margin-bottom: 4.4rem;
}

@media screen and (max-width: 1079px) {
  .page__production__overview__title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .page__production__overview__title {
    font-size: 2.4rem;
  }
}

.page__production__overview__catch {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

@media screen and (max-width: 1079px) {
  .page__production__overview__catch {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__production__overview__catch {
    font-size: 1.8rem;
  }
}

.page__production__overview__text {
  line-height: 1.75;
}

.production__range__contents {
  margin-top: 4rem;
}

.production__range__contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4rem;
}

@media screen and (max-width: 1079px) {
  .production__range__contents-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .production__range__contents-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
}

.production__range__contents-list {
  background-color: #e6e6e6;
  padding: 10px 15px;
  white-space: nowrap;
}

.production__range__contents-list:not(:first-child) {
  margin-left: 2rem;
}

@media screen and (max-width: 1079px) {
  .production__range__contents-list:not(:first-child) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .production__range__contents-list:not(:first-child) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .production__range__contents-list {
    white-space: inherit;
  }
}

.production__process__contents {
  margin-top: 4rem;
}

.production__process__contents-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 1079px) {
  .production__process__contents-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .production__process__contents-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
}

.production__process__contents-list {
  background-color: #e6e6e6;
  padding: 10px 15px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .production__process__contents-list {
    white-space: inherit;
  }
}

.page__production__info {
  padding-top: 6rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .page__production__info {
    margin-bottom: 2rem;
  }
}

.page__production__info__inner {
  position: relative;
}

.page__production__info__title {
  margin-left: -2.5rem;
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .page__production__info__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page__production__info__wrap {
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .page__production__info__wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

.page__production__info__title {
  margin-top: 4.3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page__production__info__text {
  line-height: 1.6875;
  max-width: 48.4rem;
  margin-bottom: 6.6rem;
}

@media screen and (max-width: 767px) {
  .page__production__info__text {
    margin-bottom: 2.6rem;
  }
}

.page__production__info__img__wrap {
  overflow: hidden;
}

.page__production__info__img {
  border-radius: 12px;
}

.page__production__info__img img {
  border-radius: 12px;
}

.pai-1 {
  position: absolute;
  top: 45%;
  right: 20%;
  max-width: 25%;
}

@media screen and (max-width: 767px) {
  .pai-1 {
    display: none;
  }
}

.pai-2 {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 40%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .pai-2 {
    position: unset;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pai-2 img {
    height: 300px;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.btn__container {
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .btn__container {
    margin-bottom: 6rem;
  }
}

.page__tiktok {
  position: relative;
  margin-top: 5rem;
}

.page__tiktok__inner {
  padding-top: 10rem;
}

.page__tiktok__img {
  width: 50%;
  position: absolute;
  top: 30%;
  right: 0;
}

.page__tiktok__img img {
  border-radius: 12px 0 0 12px;
}

@media screen and (max-width: 767px) {
  .page__tiktok__img img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__img {
    position: unset;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__inner {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.page__tiktok__overview__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page__tiktok__overview__img {
  max-width: 50rem;
}

.page__tiktok__overview__img img {
  border-radius: 12px;
}

@media screen and (max-width: 1079px) {
  .page__tiktok__overview__img {
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__img {
    margin: 0 auto 2rem;
    max-width: 100%;
  }
}

.page__tiktok__overview__info {
  max-width: 48.4rem;
}

@media screen and (max-width: 1079px) {
  .page__tiktok__overview__info {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__info {
    margin-right: 0;
    margin: 0 auto;
  }
}

.page__tiktok__overview__sub {
  font-size: 2.4rem;
}

@media screen and (max-width: 1079px) {
  .page__tiktok__overview__sub {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__sub {
    font-size: 1.8rem;
  }
}

.page__tiktok__overview__title {
  font-size: 3.5rem;
  margin-top: 2.5rem;
  margin-bottom: 4.4rem;
}

@media screen and (max-width: 1079px) {
  .page__tiktok__overview__title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__title {
    font-size: 2.4rem;
  }
}

.page__tiktok__overview__catch {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

@media screen and (max-width: 1079px) {
  .page__tiktok__overview__catch {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__tiktok__overview__catch {
    font-size: 1.8rem;
  }
}

.page__tiktok__overview__text {
  line-height: 1.75;
}

.tik__price__contents {
  margin-top: 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1079px) {
  .tik__price__contents {
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  .tik__price__contents {
    display: block;
    margin-top: 2rem;
  }
}

.tik__price__card {
  max-width: 32rem;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .tik__price__card {
    margin: 0 auto;
  }
  .tik__price__card:not(:first-child) {
    margin-top: 4rem;
  }
}

.tik__price__card-title {
  line-height: 6rem;
  background-color: #bcbcbc;
  color: #fff;
  font-weight: 600;
  border-radius: 12px 12px 0 0;
}

.tik__price__card-price {
  font-size: 2.4rem;
  line-height: 6rem;
  background-color: #e6e6e6;
  font-weight: 600;
}

.tik__price__card-info {
  padding: 3rem 3rem;
  line-height: 1.65em;
  text-align: left;
}

.text-height {
  line-height: 1.65;
}

.privacy__content {
  padding: 12rem 0;
  overflow: hidden;
}

.privacy__content h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .privacy__content h1 {
    font-size: 2.4rem;
  }
}

.privacy__content h2 {
  display: inline-block;
  font-size: 2.4rem;
  margin-top: 6rem;
  font-weight: 600;
  margin-left: 70px;
  position: relative;
}

.privacy__content h2::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 105%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #0072ee;
}

@media screen and (max-width: 767px) {
  .privacy__content h2::before {
    display: none;
  }
}

.privacy__content h2::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 105%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #0072ee;
}

@media screen and (max-width: 767px) {
  .privacy__content h2 {
    font-size: 2.0rem;
    margin-top: 3rem;
    margin-left: 0;
  }
}

.privacy__content p {
  margin-top: 2rem;
  line-height: 1.65;
  padding-left: 2rem;
}

.privacy__content ul {
  margin-top: 2rem;
  padding-left: 4rem;
}

.privacy__content ul li {
  list-style: disc;
  line-height: 1.65;
}

.privacy__content a {
  display: block;
  margin-top: 1rem;
}

.privacy__content h3 {
  font-size: 2.0rem;
  margin-top: 4rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .privacy__content h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
}





/* 固定背景 */

#logo_bg{
  position:fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 200px;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}

#logo_bg img{
  opacity: 0.15;
}

body{
  background-image: url(/img/air_R.png);
  background-size: 150px auto;
  background-color:rgba(255,255,255,0.8);
  background-blend-mode:lighten;
  background-attachment: fixed;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

h2{
  font-size: 8rem;
}

h3{
  color: #06285f;
}

.sis-title{
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  h2{
    font-size: 6rem;
  }
}

.footer__contact{
  background-color: white;
  border-radius: 30px;
  padding: 10px 0px;
  color: #06285f;
  overflow: hidden;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.footer__contact::after {
  background-color: #2A5CAA;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
transform: scale(0, 1);
transform-origin: left top;
transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
z-index: -1;
}
.footer__contact:hover {
  color: white;
}
.footer__contact:hover::after {
transform: scale(1, 1);
}

.footer__contact a{
  padding: 25px;
}

.side__copy{
    position: fixed;
    right: 32px;
    top: 40%;
    font-size: 10px;
    font-weight: bold;
    -webkit-transform: rotate(-90deg) translateX(50%);
    transform: rotate(-90deg) translateX(50%);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: 11;
    color: #06285f;
    text-shadow: 1px 1px 2px #FFF;
}

@media screen and (max-width: 767px) {
  .side__copy{
    right: 20px;
  }
}

.gmap{
  width: 500px;
  height: 450px;
}

.nopc{
  display: none;
}

.pc{
  display: block;
}

@media screen and (max-width: 767px) {
  .gmap{
    width: 100%;
    height: 450px;
    margin-top: 60px;
  }

  .nopc{
    display: block;
  }

  .pc{
    display: none;
  }
}


.news__contents{
  margin-top: 80px;
}

.news__article{
  width: 90%;
  margin: 50px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.news__article .article__txt{
  min-width: 600px;

}

.news__article .article__date{
  font-size: 12px;
  margin-bottom: 30px;
}

.news__article .article__title{
  font-size: 18px;
}

.article__line{
  width: 80%;
  height: 1px;
  margin: 0 auto;
  background-color: #D9D9D9;
}


.news__article {
  margin-top: 4rem;
}

.news__article a {
  position: relative;
}

.news__article a::before {
  content: "";
  position: absolute;
  top: 77%;
  right: -0%;
  width: 36px;
  height: 1px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.news__article a::after {
  content: "";
  position: absolute;
  top: 75%;
  right: 0%;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.news__article a:hover::before {
  right: -2%;
}

.news__article a:hover::after {
  right: -2%;
}

.news__article a span {
  position: absolute;
  top: 58%;
  right: -2.1%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.news__article a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 51%;
  right: -6%;
  opacity: 0;
}


@media screen and (max-width: 767px) {
  .news__contents{
    margin-top: 30px;
  }
  
  .news__article{
    width: 80%;
    margin: 20px auto 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .news__article a{
    width: 100%;
  }
  
  .news__article .article__txt{
    width: 100%;
    min-width: 300px;
    text-align: left;  
  }
  
  .news__article .article__date{
    font-size: 10px;
  }
  
  .news__article .article__title{
    font-size: 14px;
  }
  
  .article__line{
    width: 90%;
  }
}