@charset "UTF-8";
/* color */
/* font */
/* animation */
/* common */

/* アニメーション定義 */
@keyframes fadeAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnimeLCenter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeUpAnimeSCenter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeUpAnimeL {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnimeS {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes upperCenter {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0);
  }
  60% {
    transform: translateX(-50%) translateY(20px) scale(1.15);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  70% {
    opacity: 0.95;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes upperNonCenter {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0);
  }
  60% {
    transform: translateY(20px) scale(1.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes upperNonCenter2 {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0);
  }
  60% {
    transform: translateY(20px) scale(1.15);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* マスクアニメーション */
.scrollFx__mask {
  --mask-delay: 0s;
  position: relative;
  overflow: hidden;
  display: block;
}

.scrollFx__mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 2px);
  height: 101%;
  /* background-color: rgba(9, 57, 119, 0.7); */
  background-color: #093977;
  z-index: 2;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1) var(--mask-delay);
}

.scrollFx.appear .scrollFx__mask::before {
  transform: scaleX(0);
}

.scrollFx__mask img {
  display: block;
  width: 100%;
  transform: none;
  position: relative;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1) var(--mask-delay);
}

.scrollFx.appear .scrollFx__mask img {
  transform: scale(1);
}

.faq_item {
  border: 1px solid #fff;
  opacity: 0;
  &.show {
    animation: slideInFromRight 0.5s ease-out forwards;
  }
}
.faq_item:not(:last-child) {
  margin-bottom: 3rem;
}

.faq_question {
  display: flex;
  padding: 2rem 1rem 3rem;
  position: relative;
}
.faq_question span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.458;
  margin-right: 1.4rem;
  letter-spacing: 0.1em;
}
.faq_question p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-right: 4.3rem;
}
.faq_question.active .faq_question_toggle .inbox span:nth-child(2) {
  display: none;
}
.faq_question:hover {
  cursor: pointer;
}

.faq_question_toggle {
  position: absolute;
  top: 2.6rem;
  right: 1rem;
  width: 16px;
  height: 16px;
}
.faq_question_toggle .inbox {
  width: 100%;
  height: 100%;
  position: relative;
}
.faq_question_toggle .inbox span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}
.faq_question_toggle .inbox span:nth-child(1) {
  width: 100%;
  height: 1px;
}
.faq_question_toggle .inbox span:nth-child(2) {
  width: 1px;
  height: 100%;
}

.faq_answer {
  padding: 3rem 1rem;
  padding-right: 3rem;
  border-top: 1px dotted #fff;
  display: none;
}
.faq_answer.active {
  display: block;
}
.faq_answer .faq_answer_text {
  display: flex;
}
.faq_answer .faq_answer_link {
  margin-top: 2rem;
  padding-left: 3rem;
}
.faq_answer .faq_answer_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  border: 1px solid #fff;
  height: 50px;
  position: relative;
}
.faq_answer .faq_answer_link a span {
  font-size: 1.4rem;
  font-weight: 500;
}
.faq_answer .faq_answer_link a img {
  position: absolute;
  right: 20px;
}
.faq_answer span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.458;
  margin-right: 1.4rem;
  letter-spacing: 0.1em;
}
.faq_answer p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.service_contents_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: -8rem;
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
  }
}

.service_contents_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
  }
}

.service_l_list_wrap {
  margin: 0 -3rem;
  padding-bottom: 1.1rem;
}

.service_l_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: url(../img/top/service/service_plus.svg) no-repeat;
  background-position-x: 48%;
  background-position-y: 48%;
  margin: 0 1.3rem 0 3rem;
}

.service_l_item {
  width: calc((100% - 10px) / 2);
  opacity: 0;
  &.show {
    animation: bounce 0.5s ease-out forwards;
  }
  &:nth-child(2) {
    animation-delay: 0.15s;
  }
  &:nth-child(3) {
    animation-delay: 0.3s;
  }
  &:nth-child(4) {
    animation-delay: 0.45s;
  }
}

.service_s_list_wrap {
  margin: 0 -3rem;
  padding-bottom: 3.1rem;
}

.service_s_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 1.3rem 0 3rem;
}

.service_s_item {
  width: calc((100% - 10px) / 3);
  opacity: 0;
  &.show {
    animation: bounce 0.5s ease-out forwards;
  }
  &:nth-child(2) {
    animation-delay: 0.15s;
  }
  &:nth-child(3) {
    animation-delay: 0.3s;
  }
  &:nth-child(5) {
    animation-delay: 0.15s;
  }
  &:nth-child(6) {
    animation-delay: 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .readMoreBtn,
  .close_btn {
    max-width: 400px;
    width: 40%;
    margin: 0 auto;
    font-size: 1.8rem;
    height: 80px;
  }
  .readMoreBtn img,
  .close_btn img {
    top: 34px;
  }
  .btn-black {
    width: 300px;
    height: 60px;
  }
  .nav_section {
    padding-bottom: 15rem;
  }
  .special_nav {
    margin-bottom: 8rem;
  }
  .sns_nav_list {
    display: flex;
    justify-content: space-between;
  }
  .sns_nav_item {
    width: 31.25%;
  }
  .sns_nav_item:not(:last-child) {
    margin-bottom: 0;
  }
  .faq_question {
    padding: 4rem 2rem;
  }
  .faq_question p {
    font-size: 1.6rem;
  }
  .faq_question_toggle {
    width: 2rem;
    height: 2rem;
    right: 2rem;
    top: 4.5rem;
  }
  .faq_answer {
    padding: 3rem 2rem;
  }
  .faq_answer p {
    font-size: 1.6rem;
  }
  .service_contents_ttl {
    font-size: 2rem;
  }
  .service_contents_txt {
    font-size: 1.6rem;
  }
  .service_l_list {
    flex-wrap: nowrap;
    margin: 0;
    background: url(../img/top/service/service_plus.svg) no-repeat,
      url(../img/top/service/service_plus.svg) no-repeat,
      url(../img/top/service/service_plus.svg) no-repeat;
    background-position-x: 22.5%, 49%, 75.5%;
    background-position-y: 46%;
    background-size: 3%;
  }
  .service_l_item {
    width: 23%;
  }
  .service_s_list {
    margin: 0;
    flex-wrap: nowrap;
  }
  .service_s_item {
    width: auto;
    &:nth-child(4) {
      animation-delay: 0.45s;
    }
    &:nth-child(5) {
      animation-delay: 0.6s;
    }
    &:nth-child(6) {
      animation-delay: 0.75s;
    }
  }
}
@media screen and (min-width: 1000px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  [id] {
    scroll-margin-top: 70px;
  }
  .section_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .ttl_top {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
  }
  .readMoreBtn,
  .close_btn {
    width: 400px;
    height: 100px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .readMoreBtn img,
  .close_btn img {
    top: 46px;
    right: 30px;
  }
  .img_arrow {
    width: 6.1rem;
    height: auto;
  }
  .faq_section {
    padding-top: 28rem;
    padding-bottom: 20rem;
  }
  .faq_ttl {
    margin-bottom: 5rem;
  }
  .faq_question {
    padding: 4rem 8rem 4rem 3rem;
  }
  .faq_question span {
    font-size: 3rem;
    line-height: 1.5333;
  }
  .faq_question p {
    line-height: 2.125;
    margin-top: 0.5rem;
  }
  .faq_question_toggle {
    top: 5rem;
    right: 3rem;
  }
  .faq_answer {
    padding: 3rem 8rem 3rem 3rem;
  }
  .faq_answer span {
    font-size: 3rem;
    line-height: 1.5333;
  }
  .faq_answer p {
    line-height: 2.125;
    margin-top: 0.5rem;
  }
  .service_contents_ttl {
    font-size: 2.6rem;
  }
  .service_contents_txt {
    margin-bottom: 7rem;
  }
  .service_l_list_wrap {
    margin: 0 auto;
    padding-bottom: 2.5rem;
  }
  .service_s_list_wrap {
    padding-bottom: 4.4rem;
  }
  .service_bg-darknavy {
    padding-bottom: 23.8rem;
  }
}
@media screen and (min-width: 1260px) {
  .service_contents_ttl,
  .service_contents_txt {
    padding-right: 7.5rem;
    padding-left: 6.3rem;
  }
  .service_l_list_wrap {
    padding-left: 6.3rem;
    padding-right: 6.3rem;
  }
}
.ttl_top {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
}
.ttl_top.center {
  text-align: center;
}

.mv_section {
  padding-top: 6rem;
  margin-bottom: 6rem;
}
.mv_section_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 520;
  overflow: hidden;
}

.mv_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.35s;
  animation-fill-mode: forwards;
}

.mv_ink,
.mv_people {
  width: 100vw;
  max-width: none;
}

.mv_maincatch {
  width: 132vw;
  top: 16.7%;
}

.mv_subcatch {
  width: 55.89vw;
  top: 46%;
  left: 49%;
}

.mv_maincatch img,
.mv_subcatch img,
.mv_people picture img,
.mv_ink picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* アニメーションタイミング */
.animation-mv--ink {
  animation-name: fadeAnime;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

.animation-mv--people {
  animation-name: upperCenter;
  animation-duration: 0.6s;
  animation-delay: 1.5s;
}

.animation-mv--maincatch {
  animation-name: fadeUpAnimeLCenter;
  animation-duration: 1s;
  animation-delay: 2s;
}

.animation-mv--subcatch {
  animation-name: fadeUpAnimeSCenter;
  animation-duration: 1s;
  animation-delay: 2.3s;
}

.intro_contents_wrap {
  display: grid;
  grid-template-areas:
    "ttl"
    "img"
    "txt";
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* Grid エリアに割り当て */
.intro_ttl {
  grid-area: ttl;
  margin-bottom: 4rem;
  text-align: center;
}
.intro_image {
  grid-area: img;
}
.intro_txt_wrap {
  grid-area: txt;
}
.intro_txt {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  opacity: 0;
}

/* 各要素の共通 */
.intro_ttl,
.intro_txt {
  opacity: 0;
}
.intro_ttl,
.intro_contents .intro_image,
.intro_contents .intro_txt {
  opacity: 0;
  transition: all 0.35s ease-out;
}

/* アニメーション */
.intro_ttl.show {
  animation: slideInFromRight 0.5s ease-in-out forwards;
}
.intro_image .scrollFx__mask::before,
.intro_image .scrollFx__mask img {
  transition-delay: 0.5s;
}
.intro_txt.show {
  animation: fadeUpAnimeL 1.2s ease-out forwards;
}

.backup_section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
.backup_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 434px;
  background: linear-gradient(to top, rgb(9, 57, 119), rgba(0, 0, 0, 0)),
    url("../img/common/blur_bg.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.backup_ttl {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}

.backup_list {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}

.backup_item:not(:last-child) {
  margin-bottom: 6rem;
}

.backup_item_img {
  display: block;
  margin-bottom: 2rem;
}

.backup_item_ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.backup_item_txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 500;
}
.backup_item_ttl,
.backup_item_txt,
.backup_section .btn_box {
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
  }
}

.recruitment_section {
  padding-top: 10rem;
  padding-bottom: 20rem;
}

.recruitment_ttl {
  margin-bottom: 2rem;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}

.ttl_bottom {
  margin-bottom: 6rem;
}

.ttl_bottom_headeline {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ttl_bottom_txt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 2;
}

.ttl_bottom_headeline,
.ttl_bottom_txt {
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
    animation-delay: 0.3s;
  }
}

.recruitment_list {
  margin: 0 0 6rem;
  display: flex;
  flex-wrap: wrap;
}

.recruitment_item {
  width: 50%;
}

.catch_section {
  padding-top: 11.7rem;
  background: url(../img/top/catch_bg-sp.jpg) no-repeat;
  background-size: cover;
}

.catch_ttl {
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 4rem;
  min-height: 114px;
}

.catch_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: #000;
  margin-bottom: 4rem;
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
  }
}

.catch_img {
  opacity: 0;
  &.show {
    animation: slideInFromLeft 0.5s ease-out forwards;
  }
}

.data_section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
.data_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 381px;
  background: linear-gradient(to top, rgb(9, 57, 119), rgba(0, 0, 0, 0)),
    url("../img/common/blur_bg.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.data_ttl {
  margin-bottom: 4rem;
  text-align: center;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}

.data_list {
  display: flex;
  flex-direction: column;
  max-width: 330px;
  margin: -0.1rem auto 6rem;
}

.data_item {
  background: #fff;
  padding: 8% 1.5rem;
  text-align: center;
  color: #093977;
  margin-top: 0.1rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.data_item_ttl {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.data_item_img {
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-in-out forwards;
  }
}

.data_item_num {
  font-family: "Poppins", sans-serif;
  font-size: 6.4em;
  font-weight: 700;
  line-height: 1.48;
  white-space: nowrap;
}
.data_item_num img {
  vertical-align: middle;
  margin-top: -0.6rem;
  margin-right: -1rem;
  margin-left: -1rem;
}

.data_item_num_unit {
  margin-left: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.75;
  vertical-align: middle;
}

.data_item_txt {
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.service_section {
  padding-top: 10rem;
  overflow: visible;
  position: relative;
}
.service_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: linear-gradient(to top, rgb(0, 19, 44), rgba(0, 0, 0, 0)),
    url("../img/common/blur_bg.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.service_ttl {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}

.service_bg-navy {
  background: #093977;
}

.service_catch_people {
  opacity: 0;
  &.show {
    animation: fadeUpAnimeL 0.8s ease-out forwards;
    animation-delay: 1s;
  }
}
.service_catch_phrase_1 {
  & img {
    display: block;
    transform: translateX(100%);
  }
  &.show {
    img {
      animation: slideInFromRight-service_catch_phrase 0.5s ease-out both;
    }
  }
}
.service_catch_phrase_2 {
  & img {
    display: block;
    transform: translateX(100%);
  }
  &.show {
    img {
      animation: slideInFromRight-service_catch_phrase 0.5s ease-out both;
      animation-delay: 0.5s;
    }
  }
}

@keyframes slideInFromBottom-service_people {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromRight-service_catch_phrase {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.service_contents {
  margin-bottom: 4.1rem;
}

.vision_section {
  padding-top: 10rem;
}

.vision_ttl {
  text-align: center;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}
.vision_ttl img {
  width: 204px;
  height: auto;
}

.vision_contents_wrap {
  margin: -17% 0 0;
  position: relative;
  .section_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    .btn_box-vision {
      margin: 0 auto;
      width: 100%;
      padding-bottom: 20%;
      &.show {
        animation-delay: 1s;
      }
    }
  }
}
.no-webp .vision_contents {
  background: url(../img/top/vision/vision_bk-sp.png) no-repeat;
  background-size: 185%;
  background-position-x: center;
  background-position-y: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 390/550;
}
.webp .vision_contents {
  background: url(../img/top/vision/vision_bk-sp.webp) no-repeat;
  background-size: 185%;
  background-position-x: center;
  background-position-y: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 390/550;
}
.vision_contents_dust {
  position: absolute;
  top: 0;
  aspect-ratio: 390 / 550;
  width: 185%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  & img {
    width: 100%;
    max-width: none;
  }
  &.show {
    animation: fadeAnime 2s ease-out forwards;
  }
}
.vision_contents_people {
  position: absolute;
  top: 0;
  aspect-ratio: 390 / 550;
  width: 185%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  & img {
    width: 100%;
    max-width: none;
  }
  &.show {
    animation: fadeAnime 0.6s ease-out forwards;
    animation-delay: 0.5s;
  }
}
.vision_contents_txt {
  position: absolute;
  top: 24.5%;
  left: -1%;
  width: 100%;
  text-align: center;
  opacity: 0;
  & img {
    width: 91%;
    max-width: none;
  }
  &.show {
    animation: fadeUpAnimeL 0.6s ease-out forwards;
    animation-delay: 0.8s;
  }
}
.vision_txt_wrap {
  margin-bottom: 9%;
}
.vision_txt-sp {
  overflow: hidden;
  img {
    display: block;
    margin: 0 auto;
    max-width: none;
    transform: translateY(100%);
  }
  &.show img {
    animation: slideInFromBottom-mask 0.5s ease-out forwards;
  }
  &:nth-child(1) {
    margin-bottom: 2%;
    img {
      width: 76%;
    }
  }
  &:nth-child(2) {
    img {
      width: 96.6666%;
      animation-delay: 0.5s;
    }
  }
}
@keyframes slideInFromBottom-mask {
  0% {
    opacity: 1;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.messeage_section {
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.message_ttl {
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}

.message_img {
  margin-bottom: 4rem;
  .scrollFx__mask img {
    transition-delay: 0.5s;
  }
}

.message_txt p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-in-out forwards;
  }
}
.message_txt p:not(:last-child) {
  margin-bottom: 2rem;
}
.message_txt .btn_box {
  margin-top: 6rem;
}

.interview_section {
  padding-top: 8rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
.interview_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 512px;
  background: linear-gradient(to top, rgb(9, 57, 119), rgba(0, 0, 0, 0)),
    url("../img/common/blur_bg.png");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.interview_ttl {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-in-out forwards;
  }
}

.interview_list {
  margin: 0 -2.4rem;
  margin-bottom: 6rem;
}

.interview_item a {
  display: block;
}
.interview_item:not(:last-child) {
  margin-bottom: 6rem;
}

.interview_item_ttl {
  margin: 0 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666;
  letter-spacing: 0.1em;
  margin-bottom: 2.8rem;
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
  }
}

.interview_info {
  margin: 0 2.4rem;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  &.show {
    animation: fadeUpAnimeS 0.5s ease-out forwards;
  }
}

.faq_section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.faq_ttl {
  margin-bottom: 4rem;
  text-align: center;
  opacity: 0;
  &.show {
    animation: upperNonCenter2 0.5s ease-out forwards;
  }
}

.faq_list {
  margin-bottom: 6rem;
}

@media screen and (max-width: 400px) {
  .catch_ttl {
    letter-spacing: -0.02em;
  }
}

@media screen and (min-width: 768px) {
  .ttl_top {
    font-size: 2rem;
  }
  .webp .mv_section {
    padding-top: 0;
    margin-bottom: 20rem;
    background: url("../img/top/mv_bg-pc.webp") no-repeat;
    background-position: center bottom;
    background-color: #093977;
    background-blend-mode: multiply;
  }
  .no-webp .mv_section {
    padding-top: 0;
    margin-bottom: 20rem;
    background: url("../img/top/mv_bg-pc.png") no-repeat;
    background-position: center bottom;
    background-color: #093977;
    background-blend-mode: multiply;
  }
  .mv_ink,
  .mv_people {
    width: 120vw;
  }
  .mv_maincatch {
    width: 61vw;
    top: 38.7%;
  }

  .mv_subcatch {
    width: 39.89vw;
    top: 58%;
    left: 49%;
  }
  .mv_section_inner {
    aspect-ratio: 1600 / 1080;
  }

  .intro_contents_wrap {
    grid-template-columns: 52.8% 46%;
    grid-template-areas:
      "img ttl"
      "img txt";
    gap: 6rem 0;
  }

  /* 画像エリアだけ縦中央揃え */
  .intro_image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* タイトルは左寄せ */
  .intro_ttl {
    text-align: left;
    margin-bottom: 0;
  }
  /* テキストブロックは余白をリセット */
  .intro_txt_wrap {
    padding: 0;
  }
  .intro_txt {
    margin-bottom: 4rem;
  }
  .backup_section {
    margin-top: 22.3rem;
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .backup_section::before {
    background: linear-gradient(to top, rgb(9, 57, 119), rgba(0, 0, 0, 0)),
      url(../img/common/blur_bg.png);
    height: 500px;
  }
  .backup_ttl img {
    width: 70%;
    max-width: 798px;
  }
  .backup_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -6rem;
  }
  .backup_item {
    width: 46%;
    margin-top: 6rem;
  }
  .backup_item:not(:last-child) {
    margin-bottom: 0;
  }
  .backup_item_ttl {
    font-size: 2rem;
  }

  /* マスクアニメーションの遅延 */
  .backup_list > li:nth-child(1) .scrollFx__mask::before,
  .backup_list > li:nth-child(1) .scrollFx__mask img {
    transition-delay: 0s;
  }

  .backup_list > li:nth-child(2) .scrollFx__mask::before,
  .backup_list > li:nth-child(2) .scrollFx__mask img {
    transition-delay: 0.3s;
  }

  .backup_list > li:nth-child(3) .scrollFx__mask::before,
  .backup_list > li:nth-child(3) .scrollFx__mask img {
    transition-delay: 0s;
  }

  .backup_list > li:nth-child(4) .scrollFx__mask::before,
  .backup_list > li:nth-child(4) .scrollFx__mask img {
    transition-delay: 0.3s;
  }

  .recruitment_section {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .recruitment_head {
    display: flex;
    justify-content: space-between;
  }
  .recruitment_ttl,
  .ttl_bottom {
    width: 49%;
  }
  .ttl_bottom {
    padding-top: 4.5rem;
    padding-left: 2.5rem;
  }
  .recruitment_item {
    width: 20%;
  }
  .catch_section {
    padding-top: 15rem;
  }
  .catch_ttl {
    font-size: 3rem;
    min-height: 171px;
  }
  .catch_txt {
    font-size: 1.6rem;
  }
  .data_section {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .data_section::before {
    height: 47%;
  }
  .data_ttl img {
    width: 90%;
    max-width: 1088px;
  }
  .service_section {
    padding-top: 15rem;
    .service_bg-darknavy {
      .section_inner {
        .btn_box {
          margin: 0 -30px;
        }
      }
    }
  }
  .service_ttl img {
    max-width: 681px;
    width: 55%;
  }
  .service_bg-darknavy {
    padding: 7rem 3rem 15rem;
  }
  .vision_section {
    padding-top: 15rem;
  }
  .vision_ttl img {
    width: 30%;
    max-width: 368px;
  }
  .vision_contents_wrap {
    margin: -16% 0 0;
    .section_inner {
      .btn_box-vision {
        padding-bottom: calc(200px + (100vw - 1600px) * (92 / 832));
        &.show {
          animation-delay: 0.5s;
        }
      }
    }
  }
  .no-webp .vision_contents {
    background: url(../img/top/vision/vision_bk-pc.png) no-repeat;
    background-position-x: center;
    background-size: 120%;
    aspect-ratio: 1600 / 1349;
    overflow: hidden;
  }
  .webp .vision_contents {
    background: url(../img/top/vision/vision_bk-pc.webp) no-repeat;
    background-position-x: center;
    background-size: 120%;
    aspect-ratio: 1600 / 1349;
    overflow: hidden;
  }
  .vision_contents_dust {
    aspect-ratio: 1600 / 1349;
    width: 120%;
  }
  .vision_contents_people {
    aspect-ratio: 1600 / 1349;
    width: 120%;
  }
  .vision_contents_txt {
    top: 29.5%;
    left: -0.5%;
    & img {
      width: 56.6%;
    }
  }
  .vision_txt_wrap {
    margin-bottom: calc(40px + (100 - 40) * ((100vw - 768px) / (1600 - 768)));
  }
  .vision_txt-sp {
    display: none;
  }
  .vision_txt-pc {
    display: block;
    overflow: hidden;
    img {
      display: block;
      margin: 0 auto;
      max-width: none;
      transform: translateY(100%);
      width: 75.9%;
    }
    &.show img {
      animation: slideInFromBottom-mask 0.5s ease-out forwards;
    }
  }

  .messeage_section {
    padding-top: 15rem;
  }
  .message_ttl img {
    width: 70%;
    max-width: 718px;
  }
  .message_contents {
    display: flex;
  }
  .message_txt {
    order: 1;
    width: 50%;
    margin-top: 6%;
  }
  .message_txt p {
    font-size: 1.6rem;
    padding-right: 1.5rem;
  }
  .message_txt .btn_box .readMoreBtn {
    width: 66.6666%;
    margin: 0;
  }
  .message_img {
    order: 2;
    width: 50%;
    margin-bottom: 0;
  }
  .interview_section::before {
    height: 63%;
  }
  .interview_ttl {
    text-align: center;
  }
  .interview_ttl img {
    max-width: 537px;
    width: 50%;
  }
  .interview_list {
    display: flex;
  }
  .interview_item {
    margin-bottom: 0;
  }
  .interview_item:not(:last-child) {
    margin-bottom: 0;
  }
  .interview_item_ttl {
    text-align: left;
  }

  /* マスクアニメーションの遅延 */
  .interview_list > li:nth-child(1) .scrollFx__mask::before,
  .interview_list > li:nth-child(1) .scrollFx__mask img {
    transition-delay: 0s;
  }
  .interview_list > li:nth-child(2) .scrollFx__mask::before,
  .interview_list > li:nth-child(2) .scrollFx__mask img {
    transition-delay: 0.3s;
  }
  .interview_list > li:nth-child(3) .scrollFx__mask::before,
  .interview_list > li:nth-child(3) .scrollFx__mask img {
    transition-delay: 0.6s;
  }
  .faq_section {
    padding-top: 20rem;
    padding-bottom: 15rem;
  }
  .faq_ttl img {
    width: 60%;
    max-width: 738px;
  }
  .faq_list {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1000px) {
  .intro_section {
    .section_inner {
      max-width: 1304px;
    }
  }
  .ttl_top {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .intro_txt {
    font-size: 1.6rem;
  }
  .backup_section {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
  .backup_ttl {
    margin-bottom: 5rem;
  }
  .backup_item_ttl {
    margin-bottom: 2.4rem;
  }
  .backup_list {
    margin-bottom: 10rem;
  }
  .recruitment_section {
    padding-top: 20rem;
    padding-bottom: 26rem;
  }
  .recruitment_ttl {
    margin-bottom: 0;
  }
  .recruitment_ttl .ttl_top {
    text-align: left;
  }
  .recruitment_head {
    margin-bottom: 5rem;
  }
  .ttl_bottom {
    padding-top: 7.5rem;
  }
  .ttl_bottom_headeline {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    line-height: 1.38;
  }
  .recruitment_list {
    margin: 0 auto 10rem;
  }
  .recruitment_item img {
    width: 100%;
    max-width: auto;
  }
  .catch_section {
    padding-top: 0;
  }
  .catch_contents {
    display: flex;
    align-items: end;
  }
  .catch_img {
    order: 1;
    width: 110%;
    margin-top: -5%;
    margin-left: -24%;
  }
  .catch_txtarea {
    order: 2;
    width: 50%;
  }
  .catch_ttl {
    margin-left: -50%;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .catch_txt {
    margin-left: -40%;
    margin-bottom: 6rem;
  }
  .data_section {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
  .data_ttl {
    margin-bottom: 5rem;
  }
  .data_item_ttl {
    margin-bottom: 1.7rem;
  }
  .data_item_num {
    font-size: 6rem;
    line-height: 1.5;
  }
  .data_item_num .data_item_num_unit {
    font-size: 3rem;
  }
  .data_list {
    margin-bottom: 10rem;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
  }
  .data_item {
    width: 33.3333333333%;
    padding: 4% 1.5rem;
  }
  .data_item:not(:last-child) {
    border-right: 1px solid #093977;
  }
  .service_section {
    padding-top: 20rem;
  }
  .service_ttl {
    margin-bottom: 5rem;
  }
  .vision_section {
    padding-top: 20rem;
  }
  .vision_contents_wrap {
    .section_inner {
      max-width: none;
    }
  }
  .messeage_section {
    padding-top: 20rem;
    padding-bottom: 10rem;
  }
  .message_ttl {
    margin-bottom: 0;
  }
  .interview_section {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
  .interview_ttl {
    margin-bottom: 5rem;
  }
  .interview_list {
    margin-bottom: 10rem;
  }
  .faq_section {
    padding-top: 28rem;
    padding-bottom: 20rem;
  }
  .faq_ttl {
    margin-bottom: 5rem;
  }
  .faq_list {
    margin-bottom: 10rem;
  }
  .faq_question {
    padding: 4rem 8rem 4rem 3rem;
  }
  .faq_question span {
    font-size: 3rem;
    line-height: 1.5333;
  }
  .faq_question p {
    line-height: 2.125;
    margin-top: 0.5rem;
  }
  .faq_question_toggle {
    top: 5rem;
    right: 3rem;
  }
  .faq_answer {
    padding: 3rem 8rem 3rem 3rem;
  }
  .faq_answer span {
    font-size: 3rem;
    line-height: 1.5333;
  }
  .faq_answer p {
    line-height: 2.125;
    margin-top: 0.5rem;
  }
  .faq_list {
    margin-bottom: 10rem;
  }
}
@media screen and (min-width: 1034px) {
  .catch_ttl {
    margin-bottom: 3.8rem;
  }
}
@media screen and (min-width: 1196px) {
  .pc1196 {
    display: block;
  }
}
@media screen and (max-width: 1195px) {
  .pc1196 {
    display: none;
  }
}
@media screen and (min-width: 1260px) {
  .section_inner {
    padding: 0;
  }

  .catch_img {
    margin-left: -20%;
  }
  .catch_ttl {
    margin-left: -50%;
    font-size: 4rem;
    line-height: 1.5;
    min-height: 180px;
  }
  .catch_txt {
    margin-bottom: 10rem;
  }
  .data_item {
    padding: 5rem 2rem;
  }
  .data_item_num {
    font-size: 8rem;
  }
  .data_item_num .data_item_num_unit {
    font-size: 3.6rem;
  }

  .message_txt p {
    padding-right: 0;
  }
  .message_txt .btn_box {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1600px) {
  .ttl_top {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
