@charset "UTF-8";
@font-face {
  font-family: "icomoon";
  src: url("/assets/fonts/icomoon.eot?92qpvy");
  src: url("/assets/fonts/icomoon.eot?92qpvy#iefix") format("embedded-opentype"), url("/assets/fonts/icomoon.ttf?92qpvy") format("truetype"), url("/assets/fonts/icomoon.woff?92qpvy") format("woff"), url("/assets/fonts/icomoon.svg?92qpvy#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* ===========================================
    トップページ
    /index.html
=========================================== */
.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation-name: openingbase;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
.opening > div {
  width: 0;
  overflow: hidden;
  animation-name: openinglogo;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
.opening > div img {
  width: 200px;
  max-width: initial;
  height: auto;
}

@keyframes openingbase {
  0% {
    display: flex;
    opacity: 0;
  }
  10% {
    background-color: #004385;
    opacity: 1;
  }
  70% {
    background-color: #004385;
    opacity: 1;
  }
  90% {
    background-color: transparent;
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes openinglogo {
  0% {
    width: 0;
  }
  20% {
    width: 0;
  }
  50% {
    width: 200px;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200px;
  }
}
.main-visual {
  position: relative;
}

.top-slider {
  width: 100%;
  height: calc(100vh - 8rem);
  margin: 0 auto;
  overflow: hidden;
}
.top-slider__item {
  height: calc(100vh - 8rem);
}
.top-slider__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-slider {
    height: calc(100vh - 6rem);
  }
  .top-slider__item {
    height: calc(100vh - 6rem);
  }
}

.add-animation {
  /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
  /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
  animation: zoom-fade 10s both;
}

@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    transform: scale(1.05);
  }
}
.top-copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top-copy__item {
  position: relative;
  height: calc(100vh - 8rem);
}
.top-copy__item p {
  position: absolute;
  top: 10%;
  left: 8%;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-size: min(5vw, 100px);
  letter-spacing: 0.05em;
}
.top-copy__item p.copy02 {
  color: #ffffff;
}
.top-copy__item p.copy03 {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-copy {
    height: calc(100vh - 6rem);
  }
  .top-copy__item {
    height: calc(100vh - 6rem);
  }
  .top-copy__item p {
    font-size: 7vw;
  }
}

.movie {
  position: relative;
}
.movie--header {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  color: #ffffff;
}

/* ===========================================
    加賀産業について
    /about/index.html
=========================================== */
.about-banner {
  position: relative;
}
.about-banner .text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-right: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.about-banner .text p {
  letter-spacing: 0.1em;
}
.about-banner .text p em {
  display: block;
  font-family: "Play", sans-serif;
  font-size: 2.6rem;
  color: #004385;
}
@media screen and (max-width: 767px) {
  .about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .about-banner figure {
    width: 100%;
    height: 80vw;
  }
  .about-banner figure img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .about-banner .text {
    padding-right: 5%;
  }
}

.about-block {
  display: flex;
}
.about-block .title {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #004385;
}
.about-block .title > span {
  display: inline-block;
}
.about-block .subttl {
  margin-bottom: 1em;
  font-size: 1.06em;
  font-weight: 500;
}
.about-block .text {
  width: 60%;
}
.about-block .text p {
  line-height: 1.8;
  text-align: justify;
}
.about-block .text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.about-block .text p > span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .about-block .title {
    margin-bottom: 1em;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
  .about-block .text p > span {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .about-block {
    flex-direction: column;
  }
  .about-block .text {
    width: 100%;
  }
}

/* ===========================================
    代表のごあいさつ | 加賀産業について
    /about/message/index.html
=========================================== */
.img-ceo {
  position: relative;
  margin-bottom: min(10rem, 10vw);
}
.img-ceo figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8% 0 0 5%;
  background-color: #ffffff;
}
.img-ceo figcaption .copy {
  margin-bottom: 1em;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #004385;
}
.img-ceo figcaption .name {
  letter-spacing: 0.1em;
}
.img-ceo figcaption .name span {
  display: block;
}
.img-ceo figcaption .name em {
  margin-right: 1em;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.img-ceo figcaption .name small {
  font-family: "Play", sans-serif;
}
@media screen and (max-width: 767px) {
  .img-ceo {
    display: flex;
    flex-direction: column-reverse;
  }
  .img-ceo figcaption {
    position: static;
    margin-bottom: 1em;
    padding: 0;
  }
  .img-ceo figcaption .copy {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
  .img-ceo figcaption .name {
    font-size: 1.3rem;
  }
  .img-ceo figcaption .name em {
    font-size: 2.6rem;
  }
}

/* ===========================================
    サステナビリティ
    /csr/index.html
=========================================== */
.csr-mission {
  padding-top: min(7rem, 10vw);
}
.csr-mission__table {
  width: 100%;
  margin: 1em 0;
}
.csr-mission__table th, .csr-mission__table td {
  padding: 0.75em 1.5em;
  border: solid 2px #004385;
  vertical-align: middle;
  font-weight: 500;
}
.csr-mission__table th {
  width: 25%;
  background-color: #004385;
  text-align: center;
  color: #ffffff;
}
.csr-mission__table td {
  color: #004385;
}
.csr-mission__table td:not(:last-of-type) {
  background-color: #E5ECF3;
  text-align: center;
}
.csr-mission__table td ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.csr-mission__table td ul li::before {
  content: "■";
}
.csr-mission__copy {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: 500;
  color: #004385;
}
.csr-mission__copy dt {
  width: 10em;
  margin-right: 1em;
  padding: 0.25em 0;
  border: solid 2px #004385;
  background-color: #E5ECF3;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .csr-mission__table {
    border-bottom: solid 2px #004385;
  }
  .csr-mission__table th, .csr-mission__table td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  .csr-mission__table td {
    border-width: 1px 2px 0;
  }
  .csr-mission__table td:not(:last-of-type) {
    border-width: 2px 2px 0;
  }
  .csr-mission__table td ul li:not(:last-child) {
    margin-bottom: 0.5em;
  }
  .csr-mission__copy {
    flex-direction: column;
  }
  .csr-mission__copy dt {
    width: 100%;
    margin: 0 0 1em;
  }
}

.by2050__table01 {
  width: 100%;
  line-height: 1.4;
  font-size: 1.4rem;
  color: #004385;
}
.by2050__table01 th, .by2050__table01 td {
  padding: 0.75em 1em;
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
}
.by2050__table01 thead {
  background-color: #004385;
}
.by2050__table01 thead th {
  border: solid 2px #ffffff;
  color: #ffffff;
}
.by2050__table01 thead th:first-child {
  border-left-color: #004385;
}
.by2050__table01 thead th:last-child {
  border-right-color: #004385;
}
.by2050__table01 thead tr:first-child th {
  border-top-color: #004385;
}
.by2050__table01 thead tr:first-child th:last-child {
  border-bottom-color: #004385;
}
.by2050__table01 thead tr:last-child th {
  border-bottom-color: #004385;
  font-family: "Play", sans-serif;
}
.by2050__table01 tbody th, .by2050__table01 tbody td {
  border: solid #004385;
  border-width: 1px 2px;
}
.by2050__table01 tbody td {
  text-align: right;
}
.by2050__table01 tbody tr:first-child td:last-child {
  border-bottom-width: 2px;
  text-align: center;
}
.by2050__table01 tbody tr:last-child th, .by2050__table01 tbody tr:last-child td {
  border-bottom-width: 2px;
}

.scope {
  padding-bottom: min(10rem, 10vw);
}

.kaga-report {
  padding: min(10em, 10vw) 0;
  border: solid #b2b2b2;
  border-width: 1px 0;
}
.kaga-report__banner a {
  width: min(80%, 40rem);
  margin: 0 auto;
  padding: 2em;
  background: url(/assets/images/csr/bg-report.jpg) center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Play", sans-serif;
  letter-spacing: 0.1em;
  color: #ffffff;
  transition: opacity 0.3s;
}
.kaga-report__banner a:hover {
  opacity: 0.8;
}
.kaga-report__banner a em {
  display: inline-block;
  margin-bottom: 0.25em;
  line-height: 1.2;
  font-size: 2.3rem;
  font-weight: 700;
}

/* ===========================================
    事業紹介 共通
=========================================== */
@media screen and (min-width: 684px) and (max-width: 860px) {
  body.modal-page {
    font-size: 1em;
  }
}

.modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 0.5em 1em;
  text-align: center;
  background-color: #004385;
  color: #ffffff;
}

.modal-title > * {
  display: inline-block;
}
.modal-title em {
  font-size: 1.3em;
  font-weight: 700;
}

.modal-text {
  width: min(80%, 660px);
  margin: 0 auto;
}
.modal-text p {
  margin-top: 1em;
}

.modal-subttl {
  margin: 5rem 0 3rem;
  text-align: center;
  color: #004385;
}
.modal-subttl > * {
  display: inline-block;
}
.modal-subttl em {
  font-size: 1.2em;
  font-weight: 700;
}

.modal-figure {
  width: min(90%, 1100px);
  margin: 5rem auto;
}

.modal-detail {
  width: min(90%, 1100px);
  margin: 5rem auto;
  padding: 2rem 5%;
  border: solid #000000;
  border-width: 1px 0;
  display: flex;
  align-items: center;
}
.modal-detail--text {
  flex: 1;
}
.modal-detail--img {
  width: min(40%, 420px);
  text-align: center;
}
.modal-detail--dlist {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}
.modal-detail--dlist dt {
  width: 8em;
  background-color: #004385;
  text-align: center;
  color: #ffffff;
}
.modal-detail--dlist dd {
  width: calc(100% - 9em);
}
@media screen and (max-width: 683px) {
  .modal-detail {
    display: block;
  }
  .modal-detail--img {
    width: 100%;
  }
  .modal-detail--dlist {
    display: block;
  }
  .modal-detail--dlist dd {
    width: 100%;
    margin: 0.5em 0 1em;
  }
}

/* ===========================================
    航空宇宙事業
    /aerospace/index.html
=========================================== */
/* 航空宇宙事業 トップ
------------------------------------------- */
.aero-strength__bg {
  background: url(/assets/images/aerospace/top/img-strength.webp) center center/cover no-repeat;
}
.aero-strength__inner {
  width: 55%;
  padding: 5%;
}
.aero-strength__title {
  margin-bottom: 0.75em;
  line-height: 1.2;
  font-family: "Play", sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  color: #004385;
}
.aero-strength__text {
  margin-bottom: 3em;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .aero-strength__text {
    font-size: min(1.8rem, 1.3vw);
  }
}
@media screen and (max-width: 767px) {
  .aero-strength__bg {
    background-image: none;
    background-color: #ded2bb;
  }
  .aero-strength__inner {
    width: 100%;
    padding: 10% 5% 0 5%;
  }
  .aero-strength__title {
    margin-bottom: 0.5em;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
  }
  .aero-strength__text {
    text-align: justify;
  }
  .aero-strength__img {
    width: 100%;
    height: 10em;
    background: url(/assets/images/aerospace/top/img-strength.webp) right center/130% auto no-repeat;
  }
}

/* 航空宇宙事業の強み
------------------------------------------- */
.aerospace-strength .strength-box {
  position: relative;
  margin-top: 3rem;
}
.aerospace-strength .strength-box .bg {
  width: 0;
  height: 100%;
  overflow: hidden;
  transition-property: width;
  transition-duration: 0.5s;
}
.aerospace-strength .strength-box .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  transform: scale(1.05);
  transition-property: filter;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.aerospace-strength .strength-box .contents {
  color: #ffffff;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.aerospace-strength .strength-box.visible .bg {
  width: 100%;
}
.aerospace-strength .strength-box.visible .bg img {
  filter: blur(0);
}
.aerospace-strength .strength-box.visible .contents {
  opacity: 1;
}
.aerospace-strength .strength-box:nth-child(odd) .bg {
  margin-left: 100%;
  transition-property: width, margin-left;
  transition-duration: 0.5s, 0.5s;
}
.aerospace-strength .strength-box:nth-child(odd).visible .bg {
  margin-left: 0;
}
.aerospace-strength .strength-box .text p {
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .aerospace-strength .strength-box .contents {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .aerospace-strength .strength-01 {
    height: 600px;
  }
  .aerospace-strength .strength-01 .text {
    width: 55%;
  }
  .aerospace-strength .strength-01 .img {
    flex: 1;
  }
  .aerospace-strength .strength-01 .img img {
    display: block;
    width: min(73%, 396px);
    margin: 0 auto;
  }
  .aerospace-strength .strength-02 {
    height: 850px;
  }
  .aerospace-strength .strength-03 {
    height: 950px;
  }
  .aerospace-strength .strength-04 {
    height: 638px;
  }
}
@media screen and (max-width: 767px) {
  .aerospace-strength .strength-box .contents {
    position: relative;
    padding: 10vw 0;
  }
  .aerospace-strength .strength-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

/* ===========================================
    建産機事業
    /machinery/index.html
=========================================== */
.machin-strength {
  position: relative;
}
.machin-strength figure {
  position: relative;
}
.machin-strength figure img {
  width: 100%;
}
.machin-strength figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
}
.machin-strength__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.machin-strength__inner > * {
  width: 100%;
}
.machin-strength__inner .copy {
  margin: 2em 0;
  padding-left: 0.2em;
  line-height: 2;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-shadow: 0 0 0.3em rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .machin-strength {
    padding-bottom: 7vw;
  }
  .machin-strength figure::after {
    content: none;
  }
  .machin-strength__inner {
    position: static;
  }
  .machin-strength__inner .copy {
    margin: 1.5em 0 2em;
    line-height: 1.8;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #000000;
    text-shadow: none;
  }
}

/* 建産機事業の強み
------------------------------------------- */
.machinery-strength .strength-box {
  position: relative;
  margin-top: 3rem;
}
.machinery-strength .strength-box .bg {
  width: 0;
  height: 100%;
  overflow: hidden;
  transition-property: width;
  transition-duration: 0.5s;
}
.machinery-strength .strength-box .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  transform: scale(1.05);
  transition-property: filter;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.machinery-strength .strength-box .contents {
  color: #ffffff;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.machinery-strength .strength-box.visible .bg {
  width: 100%;
}
.machinery-strength .strength-box.visible .bg img {
  filter: blur(0);
}
.machinery-strength .strength-box.visible .contents {
  opacity: 1;
}
.machinery-strength .strength-box:nth-child(odd) .bg {
  margin-left: 100%;
  transition-property: width, margin-left;
  transition-duration: 0.5s, 0.5s;
}
.machinery-strength .strength-box:nth-child(odd).visible .bg {
  margin-left: 0;
}
.machinery-strength .strength-box .text p {
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .machinery-strength .strength-box .contents {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .machinery-strength .strength-01 {
    height: 600px;
  }
  .machinery-strength .strength-01 .text {
    width: 55%;
  }
  .machinery-strength .strength-01 .img {
    flex: 1;
  }
  .machinery-strength .strength-01 .img img {
    display: block;
    width: min(73%, 396px);
    margin: 0 auto;
  }
  .machinery-strength .strength-02 {
    height: 850px;
  }
  .machinery-strength .strength-03 {
    height: 850px;
  }
}
@media screen and (max-width: 767px) {
  .machinery-strength .strength-box .contents {
    position: relative;
    padding: 10vw 0;
  }
  .machinery-strength .strength-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .machinery-strength .strength-03 .img {
    margin-top: 5vw;
  }
}

/* ===========================================
    DP事業
    /dp/index.html
=========================================== */
.dp-access__gmap iframe {
  width: 100%;
  height: min(65rem, 50vh);
}
@media screen and (max-width: 767px) {
  .dp-access__gmap iframe {
    height: 100vw;
  }
}

.dp-point {
  display: flow-root;
}
.dp-point:not(:last-child) {
  margin-bottom: 2em;
}
.dp-point dt {
  float: left;
  width: 10rem;
  margin-top: 0.2em;
  background-color: #004385;
  text-align: center;
  font-family: "Play", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.dp-point dt + dd {
  padding-left: 12rem;
  font-size: 1.2em;
  font-weight: 700;
  color: #004385;
}
.dp-point dt + dd + dd {
  clear: both;
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .dp-point dt {
    float: none;
    margin-bottom: 0.75em;
  }
  .dp-point dt + dd {
    padding-left: 0;
  }
}

/* ===========================================
    取扱商品 | DP事業
    /dp/products/
=========================================== */
.product-box {
  flex-direction: row-reverse;
}
.product-box--text {
  flex: 1;
  padding-left: 7.5%;
}
.product-box--text .text-inner {
  margin-top: 4rem;
}
.product-box--text .list li {
  padding-left: 1em;
  text-indent: -1em;
}
.product-box--text .list li::before {
  content: "・";
}
.product-box--img {
  width: min(55.8333333333%, 670px);
}
.product-box--img .slide-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.product-box--img .slide-navigation .item {
  position: relative;
  width: 32%;
  margin-bottom: 2%;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.product-box--img .slide-navigation .item:hover {
  opacity: 1;
}
.product-box--img .slide-navigation .item.thumbnail-current {
  opacity: 1;
}
.product-box--img .slide-navigation .item.thumbnail-current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #4c7baa;
}
.product-box .omoiyari--flex {
  align-items: center;
}
.product-box .omoiyari--img {
  width: 3rem;
}
.product-box .omoiyari--text {
  flex: 1;
  padding-left: 2em;
  font-size: 0.9em;
}

/* ===========================================
    NEWS
    /news/index.html
=========================================== */
.cat-list {
  margin-bottom: min(10rem, 10vw);
  display: flex;
}
.cat-list > * {
  flex: 1;
  border: solid #b2b2b2;
  border-width: 1px 1px 1px 0;
}
.cat-list > *:first-child {
  border-left-width: 1px;
}
.cat-list > * a {
  height: 100%;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  text-align: center;
  transition: 0.3s;
}
.cat-list > * a:hover {
  background-color: #E5ECF3;
}
.cat-list > * a.active {
  background-color: #004385;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cat-list {
    flex-wrap: wrap;
    border-bottom: solid 1px #b2b2b2;
  }
  .cat-list > * {
    width: 50%;
    flex: auto;
    border-width: 1px 0 0 1px;
  }
  .cat-list > *:nth-child(even) {
    border-right-width: 1px;
  }
}

.pagenation {
  margin-top: min(5rem, 7vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagenation a,
.pagenation .current_page {
  width: 3em;
  height: 3em;
  margin: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation a {
  background-color: rgba(0, 67, 133, 0.1);
  transition: background-color 0.3s;
}
.pagenation a:hover {
  background-color: rgba(0, 67, 133, 0.3);
}
.pagenation .current_page {
  background-color: rgba(0, 67, 133, 0.7);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .pagenation a,
  .pagenation .current_page {
    width: 2em;
    height: 2em;
    margin: 0.25rem;
  }
}

/* ===========================================
    NEWS Entry
    /news/entry.html
=========================================== */
.news-entry__thumb {
  margin-top: min(5rem, 7vw);
}
.news-entry__thumb img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  margin: 0 auto;
}
.news-entry__body {
  display: flow-root;
  margin-top: min(5rem, 7vw);
  line-height: 2;
}
.news-entry__body p {
  margin-top: 1em;
}
.news-entry__body a {
  text-decoration: underline;
  color: #004385;
}
.news-entry__body a:hover {
  text-decoration: none;
}
.news-entry__body img[class*=mt-image] {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  margin: 1em auto;
}
.news-entry__image {
  margin-top: 5rem;
}
.news-entry__image > figure {
  margin-top: min(3rem, 3vw);
}
.news-entry__button {
  margin-top: min(10rem, 15vw);
}

/* ===========================================
    採用情報
    /recruit/index.html
=========================================== */
.recruit-message {
  position: relative;
  background: url(/assets/images/recruit/bg-message.webp) center center/cover no-repeat;
}

.recruit-arealist li:not(:first-child) {
  margin-top: 1.5em;
}
.recruit-arealist li > * {
  padding: 0.5em 1em;
  border: solid 2px #004385;
  border-radius: 0.4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.recruit-arealist li > * em {
  font-size: 1.1em;
  color: #004385;
  transition: 0.3s;
}
.recruit-arealist li > * span {
  min-width: 15em;
  padding: 0.2em 1em;
  border-radius: 0.4em;
  text-align: center;
  transition: 0.3s;
}
.recruit-arealist li > a {
  transition: 0.3s;
}
.recruit-arealist li > a span {
  background-color: #004385;
  color: #ffffff;
}
.recruit-arealist li > a:hover {
  background-color: #004385;
}
.recruit-arealist li > a:hover em {
  color: #ffffff;
}
.recruit-arealist li > a:hover span {
  background-color: #ffffff;
  color: #004385;
}
.recruit-arealist li > span span {
  background-color: rgba(0, 67, 133, 0.3);
  color: #004385;
}
@media screen and (max-width: 767px) {
  .recruit-arealist li > * {
    padding: 1em;
    flex-direction: column;
  }
  .recruit-arealist li > * span {
    width: 100%;
    margin-top: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .recruit-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .recruit-entry > * {
    margin-bottom: 0;
  }
}

.recruit-entrylist {
  flex: 1;
}
.recruit-entrylist li:not(:first-child) {
  margin-top: 1em;
}
.recruit-entrylist li > * {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  border-bottom: solid 1px #ffffff;
  color: #ffffff;
}
.recruit-entrylist li > a {
  transition: 0.3s;
}
.recruit-entrylist li > a::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
}
.recruit-entrylist li > a:hover {
  padding: 1em;
}
.recruit-entrylist li > span {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .recruit-entrylist {
    max-width: 66.6666666667%;
  }
}

/* ===========================================
    募集要項 | 採用情報
    /recruit/application/
=========================================== */
.recruit-application {
  margin: 7rem 0 10rem;
}
.recruit-application table {
  width: 100%;
}
.recruit-application table th, .recruit-application table td {
  padding: 1em;
  border: solid 1px #b2b2b2;
}
.recruit-application table th {
  min-width: 200px;
  background-color: #E5ECF3;
  color: #004385;
}
@media screen and (max-width: 767px) {
  .recruit-application table {
    border-bottom: solid 1px #b2b2b2;
  }
  .recruit-application table th, .recruit-application table td {
    display: block;
    width: 100%;
  }
  .recruit-application table th {
    min-width: initial;
    border-width: 1px 1px 0;
  }
  .recruit-application table td {
    border-width: 0 1px;
  }
}/*# sourceMappingURL=pages.css.map */