@charset "UTF-8";
/* CSS Document */
/*---------------------------------------------------------------------
	
コーポレート・採用 共通項目

---------------------------------------------------------------------*/
*:focus {
  outline: none;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  font-size: 62.5%;
}
.img-wrap {
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
ul li {
  list-style: none;
}
.flex {
  display: flex;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-r {
  flex-direction: row-reverse;
}
.ai-start {
  align-items: flex-start;
}
.ai-stretch {
  align-items: stretch;
}
.ai-center {
  align-items: center;
}
.ai-end {
  align-items: flex-end;
}
.jc-center {
  justify-content: center;
}
.jc-space {
  justify-content: space-between;
}
.block {
  display: block;
}
.wrap {
  flex-wrap: wrap;
}
.noto {
  font-family: var(--noto);
}
.en {
  font-family: var(--en);
}
.regu {
  font-weight: 400;
}
.medi {
  font-weight: 500;
}
.semi {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.small {
  font-size: 1.4rem;
}
.w-1200 {
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.w-1000 {
  max-width: 1040px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.pc-mb5 {
  margin-bottom: 5px !important;
}
.pc-mb10 {
  margin-bottom: 10px !important;
}
.pc-mb20 {
  margin-bottom: 20px !important;
}
.pc-mb30 {
  margin-bottom: 30px !important;
}
.pc-mb40 {
  margin-bottom: 40px !important;
}
.pc-mb50 {
  margin-bottom: 50px !important;
}
.pc-mb60 {
  margin-bottom: 60px !important;
}
/* 別タブ */
.tab {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.tab.inline {
  display: inline-flex;
}
.tab::after {
  content: "";
  display: block;
  width: 18px;
  height: 17px;
  background-image: url("../img/common/tab_icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header .tab::after {
  background-image: url("../img/common/tab_icon_b.svg");
}
.pc-none {
  display: none !important;
}
.sp-none {
  display: block !important;
}
/*---------------------------------------------------------------------
	ベース
---------------------------------------------------------------------*/ :root {
  --noto: "Noto Sans JP", sans-serif;
  --sm: "Shippori Mincho", serif;
  --en: "Jost", sans-serif;
  --blue: #00256A;
  --sky: #2EB2CF;
  --orange: #FF7300;
  --mura: #F0EFF5;
  --gray: #F2F2F2;
  --opacity: opacity 0.3s ease;
  --all: all 0.3s ease-out;
  --cubic: 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--noto);
  color: var(--blue);
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
}
main {
  overflow-x: clip;
}
.note {
  position: relative;
  padding-left: 18px;
}
.note::before {
  content: "※";
  position: absolute;
  left: 0;
}
.sm {
  font-family: var(--sm);
}
.txt {
  line-height: 2;
  letter-spacing: 0.1em;
}
.nomal_line {
  line-height: 1.75;
}
.txt18 {
  font-size: 1.8rem;
}
.fff {
  color: #ffffff;
}
.blue {
  color: var(--blue);
}
.link {
  color: var(--blue);
  text-decoration: underline;
}
.sec {
  padding-top: 120px;
}
.pb {
  padding-bottom: 100px;
}
.btn {
  background-color: var(--blue);
  border-radius: 10px;
  border: solid 2px var(--blue);
  height: 50px;
  max-width: 230px;
  display: block;
  width: 100%;
  padding: 10px 10px 10px 20px;
}
.btn span {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  transition: color var(--cubic);
}
.btn.center-btn span {
  justify-content: center;
  margin-left: -5px;
}
.btn span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-image: url("../img/common/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -1px;
  transition: background var(--cubic);
}
.btn.center-btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn-h {
  position: relative;
  overflow: hidden;
}
.btn-h span {
  position: relative;
  z-index: 2;
}
.btn-h::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform var(--cubic);
}
@media screen and (min-width:769px) {
  .btn-h:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left top;
  }
  .btn-h:hover span {
    color: var(--blue);
  }
  .btn-h:hover span::after {
    background-image: url("../img/common/arrow_h.svg");
  }
}
.vertical {
  /*-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;*/
  writing-mode: vertical-rl;
}
/* h2 */
.content-ttl {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: var(--sm);
  font-size: 4.0rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  line-height: 1;
}
.content-ttl.row {
  writing-mode: horizontal-tb;
}
/* h3 */
.h3-ttl {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--sm);
}
/* 画像ループ */
.bg-loop-wrap {
  padding: 120px 0;
}
.bg-loop {
  width: 100vw;
  height: 255px;
  background: url('../img/top/loop_img.jpg') repeat-x;
  background-size: auto 100% !important;
  background-position: 0 0;
  animation: bgLoopRight 40s linear infinite;
  position: relative;
  overflow: hidden;
}
.bg-loop.business-loop {
  background: url('../img/business-overview/loop_img.jpg') repeat-x;
}
.bg-loop.company-loop {
  background: url('../img/company/loop_img.jpg') repeat-x;
}
.bg-loop:first-of-type {
  margin-bottom: 20px;
}
.bg-loop.reverse {
  animation-direction: reverse;
  background: url('../img/top/loop_img_r.jpg') repeat-x;
}
.bg-loop.business-loop.reverse {
  background: url('../img/business-overview/loop_img_r.jpg') repeat-x;
}
.bg-loop.company-loop.reverse {
  background: url('../img/company/loop_img_r.jpg') repeat-x;
}
@keyframes bgLoopRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2714px 0;
  }
}
.res-gap {
  column-gap: 80px;
}
/*---------------------------------------------------------------------
	ヘッダー
---------------------------------------------------------------------*/
.header {
  height: 110px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
}
.site-ttl {
  width: 100%;
  height: auto;
  aspect-ratio: 290 / 32;
  max-width: 290px;
  position: relative;
}
.site-ttl a {
  width: 100%;
  height: 100%;
  position: relative;
  align-items: flex-end;
  display: block;
  overflow: hidden;
  background-image: url("../img/common/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.site-ttl a span {
  text-indent: -9999px;
  display: block;
}
.header-inner {
  width: 100%;
  padding: 0 30px;
}
.header .g-nav {
  margin-left: auto;
  margin-right: 30px;
}
.g-nav ul {
  column-gap: 2.7vw;
}
.g-nav ul li a {
  color: #000000;
}
.g-nav ul li a span {
  font-weight: 600;
  ;
}
.header-contact {
  column-gap: 24px;
}
.header-contact .header-contact-tel img {
  width: 50px;
  height: auto;
}
.header-contact .header-contact-tel .flex-column {
  grid-row-gap: 3px;
}
.header-contact .header-contact-tel .tel {
  font-size: 2.2rem;
  margin-left: 8px;
  line-height: 1;
}
.header-contact .header-contact-tel .tel-time {
  font-size: 1.2rem;
  line-height: 1;
}
.header-contact .header-contact-tel .tel-time span {
  font-size: 1.4rem;
}
.header-contact-form {
  background-color: var(--orange);
  width: 100px;
  height: 80px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 8px 0;
  border: solid 2px var(--orange);
}
.header-contact-form span {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  column-gap: 16px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: color var(--cubic);
}
.header-contact-form span::before {
  content: "";
  display: block;
  width: 30px;
  height: 25px;
  min-width: 25px;
  margin-bottom: 8px;
  background-image: url("../img/common/mail_icon.svg");
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  transition: background var(--cubic);
}
@media screen and (min-width:769px) {
  .header-contact-form.btn-h::before {
    background: #ffffff;
  }
  .header-contact-form.btn-h:hover span {
    color: var(--orange);
  }
  .header-contact-form.btn-h:hover span::before {
    background-image: url("../img/common/mail_icon_h.svg");
  }
  .header nav ul li span {
    position: relative;
    transition: color .3s;
  }
  .header nav ul li span::before {
    background: var(--blue);
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -3px;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .header nav ul li a:hover span {
    color: var(--blue);
  }
  .header nav ul li.current a span {
    color: var(--blue);
  }
  .header nav ul li:not(.current) a:hover span::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .header nav ul li.current a span::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
/*---------------------------------------------------------------------
	フッター
---------------------------------------------------------------------*/
.footer {
  padding: 80px 0 100px;
  background-color: var(--blue);
  color: #ffffff;
}
.footer-inner {
  margin-bottom: 30px;
  align-items: stretch;
}
.footer-left .footer-logo {
  width: 195px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 30px;
}
.footer-right {
  position: relative;
  width: 62%;
}
.footer-right .footer-nav {
  column-gap: 40px;
  height: 100%;
}
.footer-right .footer-nav .footer-nav-ul > li > a span {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
}
.footer-right .footer-nav .footer-nav-ul > li > ul li a span {
  color: #ffffff;
  font-weight: 500;
  opacity: 0.6;
  font-size: 1.4rem;
}
.footer-right .footer-nav .footer-nav-ul > li > ul li:not(:last-of-type) {
  margin-bottom: 16px;
}
.footer-right .footer-banner {
  width: 235px;
}
.footer .opa {
  color: #9ba7c5;
}
.footer .privacy {
  text-align: right;
  color: #ffffff;
}
/*---------------------------------------------------------------------
	固定
---------------------------------------------------------------------*/
.fixed-bottom {
  position: fixed;
  display: flex;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.fixed-bottom__tel, .fixed-bottom__form {
  display: none;
}
.fixed-bottom a:last-child {
  background: var(--sky);
  height: 80px;
  padding: 0 10px 0 0;
  position: relative;
  border-top-left-radius: 15px;
}
.fixed-bottom a:last-child .img-wrap {
  width: 80px;
  height: 80px;
  border-top-left-radius: 15px;
}
.fixed-bottom a:last-child span {
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFFFFF;
  width: 230px;
  padding: 0 10px 0 20px;
}
.fixed-bottom a:last-child span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-image: url("../img/common/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -1px;
}
/* 動き */
.fade {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: transform, opacity, filter;
  transition-property: transform, opacity, filter, -webkit-transform, -webkit-filter;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  opacity: 0;
  will-change: transform, opacity;
  position: relative;
}
.fade.action {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.scaledown img {
  -webkit-filter: blur(15px);
  filter: blur(15px);
  -webkit-transition-duration: 1.4s;
  transition-duration: 1.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: transform, opacity, filter;
  transition-property: transform, opacity, filter, -webkit-transform, -webkit-filter;
  will-change: transform, opacity;
}
.scaledown.action img {
  -webkit-filter: blur(0);
  filter: blur(0);
}
@media screen and (min-width:769px) {
  .scale {
    transition: var(--all);
  }
  .scale:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}