@charset "UTF-8";
/*!
 * shu - アニメーション用CSS
 */

 /* 展開アニメーション */
.js-expand[aria-expanded=false] [class*=__header] {
  cursor: pointer;
}

.js-expand[aria-expanded=false] [class*=__contents] * {
  opacity: 0;
}

.js-expand[aria-expanded=true] [class*=__contents] * {
  opacity: 1;
  transition: opacity 0.6s 0.2s;
}

.js-expand [class*=__contents][aria-hidden=true] {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
  height: 0;
}

.js-expand [class*=__contents][aria-hidden=false] {
  transition: padding 0.3s;
}

/* 共通アニメーション */
/* グローバルナビゲーション */
.p-header__nav .nav__label, .p-footer__nav .nav__label {
  position: relative;
  text-decoration: none;
  transition: .2s;
}

.p-header__nav .nav__label::after, .p-footer__nav .nav__label::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  transform: scale(0, 0.5);
  transform-origin: left top;
  transition: transform .3s;
  background-color: #002E54;
}

.p-header__nav .nav__label::after {
  background-color: #002E54;
}

.p-footer__nav .nav__label::after {
  background-color: currentColor;
  transform: scale(0, 1);
}

.p-footer__nav .nav__label::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: clamp( 10px, 0.6770833333vw, 17.33333329px );
  height: 2px;
  transform-origin: left top;
  transition: transform .3s;
  background-color: currentColor;
}

.p-header__nav .nav__label:hover::after {
  transform: scale(1, 1);
}

.p-footer__nav .nav__label:hover::after {
  transform: scale(1, 1);
}

.p-footer__nav .nav__label {
  width: fit-content;
}

.dropdown__list {
  position: relative;
  left: 0;
  top: -5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 99;
  padding: 0;
  text-align: center;
}
.nav__item:last-child:hover .dropdown__list {
  opacity: 1;
  visibility: visible;
}
.dropdown__list .dropdown__item {
  list-style: none;
  line-height: clamp(5px, 4.25vw, 79px );
  padding: 0;
  font-size: 1.2rem;
  background-color: #0061B1;
  transition: all 0.2s;
  margin-bottom: 1px;
}

.dropdown__list .dropdown__item:hover {
  background-color: #055495;
}

.dropdown__list .dropdown__item  a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

/* トップページ */

@media (min-width: 62.5rem) {
  .p-home-nav .nav__label:hover {
      background-color: #dee5ec;
  }
}

/* フェードイン */
.is-fadein {
  animation: fadeIn 1s ease 0s 1 normal forwards;
}

.p-home-mainvisual__container .is-fadein {
  animation: fadeIn 1s ease 0.5s 1 normal forwards;
}

.is-fadein-left {
  animation: fadeInLeft 1s ease 0s 1 normal forwards;
}

.is-fadein-right {
  animation: fadeInRight 1s ease 0s 1 normal forwards;
}

.p-interview-article__cover.is-fadein-left {
  animation: fadeInLeftInterview 1s ease 0s 1 normal forwards;
}

.p-interview-article__cover.is-fadein-right {
  animation: fadeInRightInterview 1s ease 0s 1 normal forwards;
}

.is-common-fadein {
  opacity: 0;
  bottom:  -1.5rem;
  position: relative;
}

.is-common-fadein-left {
  opacity: 0;
  left:  -1.5rem;
}

.is-common-fadein-right {
  opacity: 0;
  right:  -1.5rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    bottom:  -1.5rem;
}
100% {
    opacity: 1;
    bottom: 0;
}
}

@keyframes fadeInLeftInterview {
  0% {
    opacity: 0;
    left: 0;
}
100% {
    opacity: 1;
    left: clamp( 10px, 3.5104166667vw, 166.66666625px );
}
}

@keyframes fadeInRightInterview {
  0% {
    opacity: 0;
    right: 0;
}
100% {
    opacity: 1;
    left: auto;
    right: clamp( 10px, 4.5104166667vw, 166.66666625px );
}
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    left:  -1.5rem;
}
100% {
    opacity: 1;
    left: 0;
}
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    right:  -1.5rem;
}
100% {
    opacity: 1;
    left: auto;
    right: 0;
}
}

@media (max-width: 62.4rem) {
  @keyframes fadeInLeftInterview {
    0% {
      opacity: 0;
      left: -1.5rem;
  }
  100% {
      opacity: 1;
      left: 0;
  }
  }

  @keyframes fadeInRightInterview {
    0% {
      opacity: 0;
      right: -1.5rem;
  }
  100% {
      opacity: 1;
      left: auto;
      right: 0;
  }
  }
}


/* ボタンホバー */
.button--more, .button--guide, .button--entry, .button--submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button--more:hover {
  border: 0.01rem solid #0061B1;
  transition: 0.1s ease-in-out;
}

.button--guide:hover, .button--entry:hover, .button--arrow:hover {
  transition: 0.1s ease-in-out;
}

.button--more:hover .button__label {
  color: #ffffff;
  transition: 0.2s ease-in-out;
}

.button--arrow, .button--arrow svg {
  transition: 0.2s ease-in-out;
}

.button--arrow {
  position: relative;
}

.button--arrow:hover {
  background-color: #0061B1;
  border: none;
}

.button--arrow svg {
  position: absolute;
}

.button--arrow:hover.button--arrow svg {
  transition: 0.2s ease-in-out;
  stroke: #FFFFFF;
}

.serial__item--next .button--arrow svg {
  right: 25%
}

.serial__item--prev .button--arrow svg {
  left: 25%
}

.serial__item--next .button--arrow:hover.button--arrow svg {
  right: 22%;
  transition: 0.1s ease-in-out;
}

.serial__item--prev .button--arrow:hover.button--arrow svg {
  left: 22%;
  transition: 0.1s ease-in-out;
}

.button--more:before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #0061B1;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
}

.button--guide:before, .button--entry:before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #ffffff;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
}

.button--guide:hover, .button--entry:hover {
  background-color: #9A9A9A;
  color: #000;
}

.button--submit:hover {
  background-color: #ffffff;
  color: #C90000;
  transition: .2s;
}

.button--more:hover::before, .button--guide:hover::before, .button--entry:hover::before {
  transform: translateX(0);
}

.button--more .button__label, .button--guide .button__label, .button--entry .button__label {
  position: relative;
  transition: 0.2s ease-in-out;
}

/* マスクスライドイン */
.is-mask {
  width: 100%;
  height: auto;
  overflow: hidden;
  isolation: isolate;
}

.is-mask-inner {
  width: inherit;
  height: inherit;
  background-color: #fff;
  opacity: 0;
  overflow: hidden;
}

.p-interview-posts .p-interview-media, .p-interview-header .media__inner  {
  background-color: #F8F8F8;
}

.is-mask-head {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.is-mask-head-inner {
  width: inherit;
  height: inherit;
  opacity: 0;
  overflow: hidden;
  background-color: #0061B1;
}

.is-mask-head-message {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.is-mask-head-message-inner {
  height: inherit;
  opacity: 0;
  overflow: hidden;
  background-color: #0061B1;
}


.is-mask-head-sub {
  width: auto;
  height: auto;
}

.is-mask-head-sub-inner {
  width: inherit;
  height: inherit;
  opacity: 0;
  overflow: hidden;
}

.eyecatch__contents {
  overflow: hidden;
}

.isPlay {
  animation-name: play;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:after {
  animation-name: maskOut;
  animation-duration: .3s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 1px;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #0061B1;
}

.p-interview-header .isPlay:after, .p-interview-posts .isPlay:after {
  background-color: #ffffff;
}

.section__header.isPlay:after {
  background-color: transparent;
}

.isPlayHead {
  animation-name: play;
  animation-duration: .3s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}

.isPlayHead:after {
  animation-name: maskOut;
  animation-duration: .3s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #0061B1;
}

.isPlayHeadMessage {
  animation-name: play;
  animation-duration: .3s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: absolute;
  opacity: 1 !important;
}

.isPlayHeadMessage:after {
  animation-name: maskOut;
  animation-duration: .3s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #002E54;
}

.isPlayHead:before {
  animation-name: maskOut;
  animation-duration: .3s;
  animation-delay: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.p-company-eyecatch .isPlayHead:before {
  animation-duration: .3s;
  animation-delay: .3s;
}

.isPlayHeadSub {
  animation-name: play;
  animation-duration: .3s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
  transform: translateX(-100%);
}

.p-company-eyecatch .isPlayHead:after {
  content: none;
}

.isPlayHeadSub:before {
  animation-name: maskOut;
  animation-duration: .3s;
  animation-delay: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}


@keyframes play {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

/* NEWSセクション */
.p-home-news a.headline__inner {
	overflow: hidden;
  position: relative;
}

.headline__icon {
  width: clamp( 10px, 1.5625vw, 39.9999999px );
  height: clamp( 10px, 1.5625vw, 39.9999999px );
}


.headline__icon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out;
  z-index: 11;
  right: 2%;
  width: clamp( 10px, 1.5625vw, 39.9999999px );
  height: clamp( 10px, 1.5625vw, 39.9999999px );
  background-color: #0061B1;
  transform: scale(0);
  transition: all 0.3s;
  opacity: 0;
}

.headline__icon::before {
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
}

.headline__inner:hover .headline__icon::after {
  transform: scale(1);
  opacity: 1;
}

.headline__inner:hover .headline__icon::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

/*
.headline__icon {
  transform: scale(0);
  top: 37%;
  transition: all 0.3s;
}

.p-home-news a.headline__inner:hover .headline__icon {
	opacity: 1;
  transform: scale(1);
  transition: all 0.3s;
} */

.headline__icon {
  background-color: unset;
  opacity: 1;
  border-radius: 0;
}

.p-home-news a.headline__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 97, 177, 0.08);
  transition: 0.4s ease-in-out;
  transform: translateX(-100%);
}

.p-home-news a.headline__inner:hover:before {
  width: 100%;
  transform: translateX(0%);
  transition: 0.4s ease-in-out;
  animation-duration: .5s;
}

.p-home-news a.headline__inner:hover {
  background-color: unset;
}

.p-home-news .section__link {
  position: relative;
}
.p-home-news .section__link::after {
  position: absolute;
  left: 0;
  bottom: 1rem;
  content: '';
  width: 100%;
  height: 1px;
  transform: scale(0, 0.5);
  transform-origin: left top;
  transition: transform .3s;
  background-color: #929292;
}

.p-home-news .section__link:hover::after {
  transform: scale(1, 1);
}

.headline, .headline:first-of-type {
  position: relative;
  border: none;
}

.headline:first-of-type::before, .headline::after {
  content:"";
  display:block;
  width: 0;
  height:1px;
  background-color:#929292;
  position:absolute;
}

.headline:first-of-type::before {
  top:0;
}

.headline::after {
  bottom: 0;
}

.headline.is-border-anim::after, .headline.is-border-anim:first-of-type::before {
  width: 100%;
  transition: all 1s;
}

.p-news-post .post__date {
  border-bottom: none;
  position: relative;
}

.p-news-post .post__date::after {
  content:"";
  display:block;
  width: 0;
  height:1px;
  background-color:#929292;
  position:absolute;
  bottom: 0;
}

.p-news-post .post__date.is-border-anim::after {
  width: 100%;
  transition: all 1s;
}

/* トップページ */
.trigger-fadein-text {
  opacity: 0;
  width: fit-content;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.trigger-fadein-text.is-fadein-text {
  opacity: 1;
  webkit-clip-path: inset(0);
  clip-path: inset(0);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}



/* 見出しラインアニメーション */
.pageheader {
  overflow: hidden;
}

.pageheader__line::before, .pageheader__line::after, .pageheader__deco::before {
  transform: translateX(-100%);
}

.pageheader__line:nth-child(3)::before, .pageheader__line:nth-child(3)::after {
  animation: border_anim_head 0.75s linear forwards;
}

.pageheader__line:nth-child(2)::before, .pageheader__line:nth-child(2)::after {
  animation: border_anim_head 0.75s 0.2s linear forwards;
}

.pageheader__line::before, .pageheader__line::after {
  animation: border_anim_head 0.75s 0.4s linear forwards;
}

.pageheader__deco::before {
  animation: border_anim_head 0.75s 0.6s linear forwards;
}


@keyframes border_anim_head {
	0%{
    transform: translateX(-100%);
	}
	100%{
		transform: translateX(0);
	}
}

.pageheader__container {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease 0s 1 normal forwards;
  bottom:  -1.5rem;
}

.p-interview-media .media__contents, .p-interview-header .media__contents {
  overflow: hidden;
}

.p-interview-media a.media__inner:before {
  left: 0;
  width: 66.3%;
  transition: 0.4s ease-in-out;
  transform: translateX(-100%);
}

@media (max-width: 62.4rem) {
  .p-home-mainvisual__cover.is-mask-inner {
    height: calc( 100vh - 3.75rem );
  }
}

@media (min-width: 62.5rem) {
  .p-home-mainvisual__cover.is-mask-inner {
    height: clamp(300px, 50vw, 200vw);
  }
}

.p-interview-media.media--reverse a.media__inner:before{
  left: 33.7%;
  width: 67%;
}

.p-interview-media a.media__inner:hover:before {
  width: 100%;
  transform: translateX(0%);
  transition: 0.4s ease-in-out;
  animation-duration: .5s;
}

.p-interview-media__bg:nth-child(2) {
  width: 100%;
  animation-name: interview_mask_01;
  animation-duration: .3s;
  animation-delay: 0;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  background-color: #0061B1;
}

.p-interview-media__bg:nth-child(3)  {
  opacity: 0;
  width: 100%;
  animation-name: interview_mask_02;
  animation-duration: .3s;
  animation-delay: .4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  background-color: #00549A;
}

.p-interview-media__bg:nth-child(4)  {
  opacity: 0;
  width: 100%;
  animation-name: interview_mask_03;
  animation-duration: .3s;
  animation-delay: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  background-color: #004884;
}

.p-interview-media__bg:nth-child(5)  {
  opacity: 0;
  width: 100%;
  animation-name: interview_mask_04;
  animation-duration: .3s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  background-color: #002E54;
}

@keyframes interview_mask_01 {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes interview_mask_02 {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(-25%);
  }
}

@keyframes interview_mask_03 {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes interview_mask_04 {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(-75%);
  }
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
  opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
  opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:1s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
  opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
  opacity: 1;
  }
}

.p-home-others__item__link, .p-home-feature__cover a, .p-home-company__figure a {
  transition: .2s;
}

.p-home-others__item__link:hover, .p-home-feature__cover a:hover, .p-home-company__figure a:hover {
  opacity: .6;
  transition: .2s;
}

/* インタビューページ */
.p-interview-media__inner {
  height: clamp( 10px, 7.0833333333vw, 181.33333288px );
  position: absolute;
  width: 100%;
}

.p-interview-posts .p-interview-media__box {
  border: none;
  overflow: hidden;
}

.is-border-box {
  overflow: hidden;
  width: 100%;
}

.is-border-box .border, .is-border-bold-box .border-bold {
  position: absolute;
  display: block;
  width: 1px;
  height: 1px;
  background-color: #D4D4D4;
  overflow: hidden;
  transition: 1s;
}

/* 上ボーダー */
.is-border-box .border.top {
  width: 100%;
  top: 0;
  left: -1px;
  transform: translate3d(-100%, 0, 0);
}
/* 右ボーダー */
.is-border-box .border.right {
  height: 101%;
  top: 0;
  right: 0;
  transform: translate3d(0, 100%, 0);
}
/* 下ボーダー */
.is-border-box .border.bottom {
  width: 101%;
  right: -1px;
  bottom: 0;
  transform: translate3d(100%, 0, 0);
}
/* 左ボーダー */
.is-border-box .border.left {
  height: 100%;
  bottom: 1px;
  left: 0;
  transform: translate3d(0, -100%, 0);
}

/* ボーダーbold */
.is-border-bold-box {
  overflow: hidden;
  height: inherit;
  width: 100%;
  position: absolute;
}
.is-border-bold-box .border-bold {
  height: 3px;
}
/* 上ボーダー */
.is-border-bold-box .border-bold.top {
  width: 2rem;
  top: 0;
  left: -1px;
  transform: translate3d(-100%, 0, 0);
}
/* 右ボーダー */
.is-border-bold-box .border-bold.right {
  width: 3px;
  height: 2rem;
  bottom: -1%;
  right: 0;
  transform: translate3d(0, 100%, 0);
}
/* 下ボーダー */
.is-border-bold-box .border-bold.bottom {
  width: 2rem;
  right: -1px;
  bottom: 0;
  transform: translate3d(100%, 0, 0);
}
/* 左ボーダー */
.is-border-bold-box .border-bold.left {
  width: 3px;
  height: 2rem;
  bottom: 78%;
  left: 0;
  transform: translate3d(0, -100%, 0);
}

.border-box .border, .border-bold-box .border-bold {
  transform: translate3d(0, 0, 0)!important;
}

.border-bold-box .border-bold {
  transition-delay: 0.4s
}

.p-interview-media a.media__inner {
  overflow: hidden;
}

/* テーブルボーダー */
.p-company-section .table--ruled th, .table--ruled td {
  border: none;
}

.p-company-section .table tr:last-child::after {
  content:"";
  display:block;
  width: 0;
  height: 1px;
  background-color:#D4D4D4;
  position:absolute;
  bottom: 0;
  left: 0;
}

.p-company-section .table tr::before {
  content:"";
  display:block;
  width: 0;
  height: 1px;
  background-color:#D4D4D4;
  position:absolute;
}

.p-company-section .table tr {
  position: relative;
  display: block;
}

.p-company-section .table tr.is-border-anim::before, .p-company-section .table tr.is-border-anim:last-child::after {
  width: 100%;
  transition: all 1s;
}

.p-company-section .table--ruled {
  border: none;
  overflow: hidden;
}

.p-information-post .table--ruled th, .table--ruled td {
  border: none;
}

.p-information-post .table tr:last-child::after {
  content:"";
  display:block;
  width: 0;
  height: 1px;
  background-color:#D4D4D4;
  position:absolute;
  bottom: 0;
  left: 0;
}

.p-information-post .table tr::before {
  content:"";
  display:block;
  width: 0;
  height: 1px;
  background-color:#D4D4D4;
  position:absolute;
}

.p-information-post .table tr {
  position: relative;
  display: block;
}

.p-information-post .table tr.is-border-anim::before, .p-information-post .table tr.is-border-anim:last-child::after {
  width: 100%;
  transition: all 1s;
}

.p-information-post .table--ruled {
  border: none;
  overflow: hidden;
}

.p-entry-preview .table--ruled th, .table--ruled td {
  border: none;
}

.p-entry-preview .table tr:last-child::after {
  content:"";
  display:block;
  width: 0;
  height: 1px;
  background-color:#D4D4D4;
  position:absolute;
  bottom: 0;
  left: 0;
}

.p-entry-preview .table tr::before {
  content:"";
  display:block;
  width: 0;
  height: 1px;
  background-color:#D4D4D4;
  position:absolute;
}

.p-entry-preview .table tr {
  position: relative;
  display: block;
}

.p-entry-preview .table tr.is-border-anim::before, .p-entry-preview .table tr.is-border-anim:last-child::after {
  width: 100%;
  transition: all 1s;
}

.p-entry-preview .table--ruled {
  border: none;
  overflow: hidden;
}

/* 動画ページ */
.p-movie-section .section__container {
  position: relative;
}

/* 仕事紹介 */
.section--style-c .section__container::after {
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
 clip-path: polygon(0 0, 0 0, 0 0);
}

.trigger-job-border.animation-on .section__container::after {
 transition: 1.5s ease-in;
 -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
 clip-path: polygon(0 0, 200% 0, 0 200%);
}

/* メッセージ */
.p-message-header__caption {
  position: absolute;
}
.p-message-header__caption::before {
  content:"";
  display:block;
  width: 0;
  transition: all 0.5s;
}

.p-message-header__caption.is-border-anim span {
  animation: fadeIn 0.6s ease 0.4s 1 normal forwards;
}

.p-message-header__caption.is-border-anim::before {
  width: clamp( 10px, 5.3333333333vw, 54.6133334px );
}

@media (min-width: 62.5rem) {
  .p-message-header__caption.is-border-anim::before {
    width: clamp( 10px, 9.5833333333vw, 245.33333272px );
  }
}

@media (max-width: 62.4rem) {
  .p-message-section__cover {
      margin-left: auto;
      margin-right: auto;
  }
}

/* 追加 */
.p-message-header__caption {
  bottom: clamp( 10px, 8.5333333333vw, 56.381333px );
}

.qa__header {
  cursor: pointer;
}

.qa__header .qa__icon {
  color: #0061B1;
  border: 0.0625rem solid #0061B1;
}

.qa__contents .qa__icon {
  color: #FF0000;
  border: 0.0625rem solid #FF0000;
}

.p-qa-qa.ui-accordion .ui-accordion-header, .p-qa-qa.ui-accordion .ui-accordion-content {
  display: flex;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  padding-right: 0;
  padding-left: 0;
  border-bottom: 0.25rem solid #0061B1;
  border: none;
  background: #F8F8F8;
  color: #454545;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Bookman Old Style", "Times New Roman", "-apple-system", "BlinkMacSystemFont", serif;
}

.p-qa-qa.ui-accordion .ui-accordion-content {
  border-top: 0.0625rem solid #D4D4D4;
}

.p-qa-qa .ui-helper-reset {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.p-qa-qa .ui-state-active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.p-qa-qa .ui-widget-content a {
  color: #B5B5B5;
}

article.qa.ui-helper-reset {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-bottom: 0.25rem solid #0061B1;
}

@media (min-width: 62.5rem) {
  article.qa.ui-helper-reset {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

span.ui-accordion-header-icon {
  display: none;;
}