@charset "UTF-8";
/*===========================================================================*/
/*  media quary  */
/*===========================================================================*/
@import "/css/common.css";
/*==================================================================*/
/* style css　*/
/*==================================================================*/
/* -------------------------------------------- */
/* 〇〇〇〇 */
/* -------------------------------------------- */
.wrapper {
  padding-top: 0;
}

header {
  position: absolute;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: none;
}
header #globalHeader {
  z-index: 5;
}
header .w-logo {
  display: block;
}
header .c-logo {
  display: none;
}
header .h-inner .logo a {
  color: #fff;
}
header .h-inner .nav-area nav .header__menu li a {
  color: #fff;
}
header .h-inner .nav-area nav .header__menu li a:after {
  background: #fff;
}
header.s-header {
  position: fixed;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------- */
/* title */
/* -------------------------------------------- */
#title {
  background: url("/animation/main/test/image/title.jpg") no-repeat center top/cover;
  margin-bottom: 0;
}

/* -------------------------------------------- */
/* main */
/* -------------------------------------------- */
.main-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #000;
}
.main-top .main-top-video {
  position: relative;
  width: 100%;
  height: 100vh;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.main-top .main-top-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-top .main-top-video.filtered {
  -webkit-filter: blur(5px) saturate(80%);
  filter: blur(5px) saturate(80%);
}
.main-top .main-top-video::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}

.main-text {
  height: 80vh;
  position: relative;
}
.main-text .main-text-inner {
  position: absolute;
  opacity: 0;
  -webkit-filter: blur(12px);
  filter: blur(12px);
  left: 10%;
  bottom: -15%;
  color: #fff;
  z-index: 15;
}
.main-text .main-text-inner h1 {
  font-size: 8em;
}
.main-text .main-text-inner .sub {
  font-size: 1.7em;
  font-weight: 400;
}

.about #grad-area {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 35, 58, 0)), to(rgba(29, 35, 58, 0.75)));
  background: linear-gradient(rgba(29, 35, 58, 0), rgba(29, 35, 58, 0.75));
  padding-top: 300px;
}
.about #grad-area .text-wrap h2 {
  margin-bottom: 2.5rem;
  font-size: 3em;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.about #grad-area .text-wrap .asahi-logo {
  margin: 0 auto;
  width: 300px;
  padding-bottom: 3em;
  text-align: center;
}
.about .bg-area {
  position: relative;
  background: rgba(29, 35, 58, 0.75);
  padding: 3em 0 10em;
}
.about .bg-area .f-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about .bg-area .f-block .l-block {
  width: 58%;
}
.about .bg-area .f-block .l-block .read {
  margin-bottom: 3rem;
  color: #fff;
  line-height: 2.2;
}
.about .bg-area .f-block .r-block {
  width: 35%;
  text-align: right;
}

.full-photo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.full-photo .photo {
  width: 25%;
  aspect-ratio: 400/290; /* 幅400pxに対する高さ290pxの比率 */
  height: auto; /* 高さは比率に従う */
  max-height: 300px;
  line-height: 0;
}
.full-photo .photo img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* -------------------------------------------- */
/* company */
/* -------------------------------------------- */
.company {
  position: relative;
  background: url("/image/bg_company.jpg") no-repeat center bottom/cover;
  height: 1200px;
  -webkit-clip-path: url(#mvClipPath);
  clip-path: url(#mvClipPath);
}
.company .inblock {
  padding-top: 12em;
  text-align: center;
}
.company .inblock h2 {
  margin-bottom: 0.5em;
  font-size: 2.6em;
  font-weight: 400;
  color: #1d233a;
}
.company .inblock .read {
  margin-bottom: 3.5rem;
}

/* -------------------------------------------- */
/* recruit */
/* -------------------------------------------- */
.recruit {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.recruit:after {
  content: "";
  position: absolute;
  left: -30%;
  top: 50%;
  width: 150%;
  height: 700px;
  background: #1d233a;
  -webkit-transform: translateY(-50%) rotate(-10deg);
  transform: translateY(-50%) rotate(-10deg);
  z-index: 1;
}
.recruit .outblock {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  z-index: 5;
}
.recruit .outblock .f-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 5rem;
}
.recruit .outblock .f-block .r-block {
  width: 50%;
  text-align: right;
}
.recruit .outblock .f-block .l-block {
  width: 45%;
}
.recruit .outblock .f-block .l-block h2 {
  margin-bottom: 2rem;
  font-size: 9.375rem;
  color: #cbd0e3;
  line-height: 1;
}
.recruit .outblock .f-block .l-block .read-box {
  margin-left: 6.5%;
}
.recruit .outblock .f-block .l-block .read-box .title {
  margin-bottom: 3rem;
}
.recruit .outblock .f-block .l-block .read-box .title p:first-of-type {
  margin-bottom: 1rem;
}
.recruit .outblock .f-block .l-block .read-box .title span {
  display: inline-block;
  padding: 12px 18px;
  font-size: 2.6em;
  font-weight: 400;
  color: #1d233a;
  background: #d8dbe7;
  line-height: 1.2;
}
.recruit .outblock .f-block .l-block .read-box .read {
  max-width: 550px;
  color: #fff;
  line-height: 2;
}
.recruit .outblock .inblock {
  width: 100%;
}
.recruit .outblock .inblock .photo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recruit .outblock .inblock .photo-link li {
  width: 33.3333333333%;
}
.recruit .outblock .inblock .photo-link li a {
  position: relative;
  display: block;
}
.recruit .outblock .inblock .photo-link li a .photo {
  line-height: 0;
}
.recruit .outblock .inblock .photo-link li a .text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.625rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: 2;
}
.recruit .outblock .inblock .photo-link li a .text span {
  position: relative;
  display: block;
  padding-bottom: 68px;
}
.recruit .outblock .inblock .photo-link li a .text span:before {
  content: "\f178";
  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;
  font-size: 1.25rem;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands";
  font-weight: 400;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 61px;
  height: 61px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
.recruit .outblock .inblock .photo-link li a .text span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 61px;
  height: 61px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: -1;
}
.recruit .outblock .inblock .photo-link li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.recruit .outblock .inblock .photo-link li a:hover img {
  opacity: 1;
}
.recruit .outblock .inblock .photo-link li a:hover:before {
  opacity: 0.1;
}
.recruit .outblock .inblock .photo-link li a:hover .text span:before {
  color: #1d233a;
}
.recruit .outblock .inblock .photo-link li a:hover .text span:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact {
  position: relative;
  padding: 6rem 0;
  background: #eff0f4;
}
.contact .inblock {
  padding: 3rem 2rem;
  background: #fff;
  border: 1px solid #1d233a;
}
.contact h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 400;
  color: #1d233a;
  text-align: center;
}
.contact h2 span {
  display: inline-block;
}
.contact .read {
  margin-bottom: 4rem;
  text-align: center;
}
.contact .f-box {
  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;
}
.contact .f-box .tel {
  margin-right: 15%;
}
.contact .f-box .tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.25rem;
  color: #1d233a;
  line-height: 1.1;
}
.contact .f-box .tel span:before {
  content: "\e11b";
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands";
  font-size: 3rem;
  color: #1d233a;
  font-weight: 900;
  margin-right: 0.5rem;
}
.contact .f-box .tel em {
  display: block;
  color: #aaa;
  text-align: right;
}
.contact .f-box .base-btn {
  width: 380px;
}
.contact .f-box .base-btn a {
  color: #fff;
  background: #1d233a;
  padding: 1.5rem 2.8rem 1.5rem 1rem;
  max-width: 380px;
  font-size: 1.125rem;
}

/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
@media screen and (max-width: 1450px) {
  .company {
    height: 1100px;
  }
  .recruit .outblock .f-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .recruit .outblock .f-block .l-block {
    width: 50%;
  }
  .recruit .outblock .f-block .l-block h2 {
    font-size: 8.75rem;
  }
  .recruit .outblock .f-block .l-block .read-box {
    margin-left: 0;
  }
  .recruit .outblock .f-block .r-block {
    width: 45%;
  }
}
/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
@media screen and (max-width: 1200px) {
  .company {
    height: 1000px;
  }
  .company .inblock {
    padding-top: 9rem;
  }
  .recruit .outblock .f-block .l-block {
    width: 50%;
  }
  .recruit .outblock .f-block .l-block h2 {
    font-size: 7.25rem;
  }
  .recruit .outblock .f-block .l-block .read-box {
    margin-left: 0;
  }
  .recruit .outblock .f-block .l-block .read-box .title span {
    font-size: 2.2rem;
  }
  .recruit .outblock .f-block .r-block {
    width: 45%;
  }
}
/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
@media screen and (max-width: 1025px) {
  header {
    position: fixed;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .main-text .main-text-inner {
    left: 5%;
  }
  .main-text .main-text-inner h1 {
    font-size: 7.25rem;
  }
  .main-text .main-text-inner .sub {
    font-size: 1.5rem;
  }
  .about #grad-area .text-wrap h2 {
    font-size: 2.875rem;
  }
  .about #grad-area .text-wrap h2 span {
    display: inline-block;
  }
  .company {
    height: 800px;
  }
  .company .inblock {
    padding-top: 6rem;
  }
  .recruit:after {
    height: 700px;
  }
  .recruit .outblock .f-block .l-block h2 {
    font-size: 5.5rem;
  }
  .recruit .outblock .f-block .l-block .read-box {
    margin-left: 0;
  }
  .recruit .outblock .f-block .l-block .read-box .title span {
    font-size: 1.6rem;
    padding: 12px 15px;
  }
  .recruit .outblock .inblock .photo-link li a .text {
    font-size: 1.375rem;
  }
  .recruit .outblock .inblock .photo-link li a .text span {
    padding-bottom: 58px;
  }
  .recruit .outblock .inblock .photo-link li a .text span:before {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
  .recruit .outblock .inblock .photo-link li a .text span:after {
    width: 50px;
    height: 50px;
  }
  .contact {
    padding: 4rem 0;
  }
  .contact .inblock {
    padding: 2rem 1.5rem;
  }
  .contact .f-box .base-btn {
    width: 320px;
  }
  .contact .f-box .tel {
    margin-right: 5%;
  }
  .contact .f-box .tel span {
    font-size: 1.875rem;
  }
  .contact .f-box .tel span:before {
    font-size: 2.875rem;
  }
}
/*===========================================================================*/
/*  media quary:767px  */
/*===========================================================================*/
@media screen and (max-width: 769px) {
  /* -------------------------------------------- */
  /* 〇〇〇〇 */
  /* -------------------------------------------- */
  .main-text {
    height: 80vh;
  }
  .main-text .main-text-inner h1 {
    font-size: 5rem;
  }
  .main-text #grad-area {
    padding-top: 230px;
  }
  .about #grad-area .text-wrap h2 {
    font-size: 2.125rem;
  }
  .about #grad-area .text-wrap .asahi-logo {
    width: 270px;
  }
  .about .bg-area {
    padding-bottom: 8rem;
  }
  .about .bg-area .f-block {
    position: relative;
    padding-bottom: 7.5rem;
    display: block;
  }
  .about .bg-area .f-block .l-block {
    width: 100%;
  }
  .about .bg-area .f-block .l-block .base-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .about .bg-area .f-block .r-block {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  .company {
    height: 650px;
  }
  .company .inblock h2 {
    font-size: 2.125rem;
  }
  .company .inblock .read {
    text-align: left;
  }
  .recruit:after {
    height: 850px;
  }
  .recruit .outblock .f-block {
    display: block;
    margin-bottom: 0;
  }
  .recruit .outblock .f-block .l-block {
    width: 100%;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  .recruit .outblock .f-block .l-block h2 {
    font-size: 6.5rem;
    text-align: right;
  }
  .recruit .outblock .f-block .l-block .read-box {
    margin-left: 0;
  }
  .recruit .outblock .f-block .l-block .read-box .title span {
    font-size: 1.8rem;
  }
  .recruit .outblock .f-block .r-block {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .recruit .outblock .inblock .photo-link li a .text {
    font-size: 1.125rem;
  }
  .contact .inblock h2 {
    font-size: 1.875rem;
  }
  .contact .inblock .read {
    margin-bottom: 2rem;
  }
  .contact .inblock .f-box {
    display: block;
  }
  .contact .inblock .f-box .tel {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem;
  }
  .contact .inblock .f-box .tel span:before {
    font-size: 2.5rem;
  }
  .contact .inblock .f-box .base-btn {
    width: 100%;
    text-align: center;
  }
  .contact .inblock .f-box .base-btn a {
    padding: 1rem 2.8rem 1rem 1rem;
  }
}
/*===========================================================================*/
/*  media quary:510px  */
/*===========================================================================*/
@media screen and (max-width: 510px) {
  .main-text .main-text-inner h1 {
    font-size: 4rem;
  }
  .main-text .main-text-inner .sub {
    font-size: 1.375rem;
  }
  .recruit .outblock .inblock .photo-link {
    display: block;
  }
  .recruit .outblock .inblock .photo-link li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .recruit .outblock .inblock .photo-link li:last-child {
    margin-bottom: 0;
  }
  .recruit .outblock .inblock .photo-link li a .photo {
    width: 100%;
    height: 150px;
  }
  .recruit .outblock .inblock .photo-link li a .photo img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/*===========================================================================*/
/*  media quary:479px  */
/*===========================================================================*/
@media screen and (max-width: 479px) {
  /* -------------------------------------------- */
  /* 〇〇〇〇 */
  /* -------------------------------------------- */
  .main-top .main-top-video {
    height: 100vh;
  }
  .main-text .main-text-inner {
    bottom: -5%;
    left: 2%;
  }
  .main-text .main-text-inner h1 {
    margin-bottom: 0.5rem;
    font-size: 3rem;
  }
  .main-text .main-text-inner .sub {
    font-size: 1.1rem;
  }
  .about #grad-area .text-wrap h2 {
    font-size: 1.5rem;
  }
  .about #grad-area .text-wrap .asahi-logo {
    width: 200px;
    padding-bottom: 0;
  }
  .about .bg-area {
    padding-bottom: 5rem;
  }
  .about .bg-area .f-block .r-block {
    max-width: 250px;
  }
  .full-photo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .full-photo .photo {
    width: 50%;
  }
  .company .inblock {
    padding-top: 4rem;
  }
  .company .inblock h2 {
    font-size: 1.5rem;
  }
  .recruit {
    padding: 3rem 0;
  }
  .recruit:after {
    left: -25%;
  }
  .recruit .outblock .f-block .l-block {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
  .recruit .outblock .f-block .l-block h2 {
    margin-bottom: 1.5rem;
    font-size: 4.5rem;
  }
  .recruit .outblock .f-block .l-block .read-box .title {
    margin-bottom: 1rem;
  }
  .recruit .outblock .f-block .l-block .read-box .title span {
    padding: 10px;
    font-size: 1.5rem;
  }
  .contact .inblock {
    padding: 1.5rem 1rem;
  }
  .contact .inblock h2 {
    font-size: 1.45rem;
  }
  .contact .f-box .base-btn a {
    font-size: 1rem;
  }
}