@charset "UTF-8";
/*
******************************
    fadeアニメーション
*******************************
*/
/* 初期状態 */
.js-fadeInTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeLeftTrigger,
.js-fadeRightTrigger {
  opacity: 0;
}

/* その場でfade */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からfade */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上からfade */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からfade */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からfade */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
******************************
    背景が徐々に透明度が濃くなるアニメーション 
*******************************
*/
@keyframes moveanime {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 35px;
  }
}
/*
******************************
    画像やテキストのワイプ表示アニメーション 
*******************************
*/
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative !important;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: black;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* 画像やテキストのワイプ表示のアニメーション1 */
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* 画像やテキストのワイプ表示のアニメーション2 */
@keyframes img-animation {
  99% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*
******************************
    メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション
*******************************
*/
@keyframes img-expansion {
  100% {
    transform: scale(1.2, 1.2);
  }
}
/*
******************************
    スクロールダウンで高さ・位置・透過が変化して線が上から下に動くアニメーション 
*******************************
*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
/*
******************************
    セクションの横棒が伸びるアニメーション
*******************************
*/
.js-lineExtend.is-animated {
  border-top: 1px solid black;
  animation: lineExtend 1s ease-in-out forwards;
  display: inline-block;
  position: relative;
  top: 3px;
}

@keyframes lineExtend {
  0% {
    width: 0;
  }
  100% {
    width: 220px;
  }
}
/*
******************************
    画像がblurしながら浮かび上がるアニメーション
*******************************
*/
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*
******************************
    readButton
*******************************
*/
.readBtn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 220px;
  max-width: 220px;
  padding: 20px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  transform: skew(-10deg, 0deg);
  background: #054A91;
  color: #fff;
  border: 1px solid #787878;
}

.readBtn a span {
  transform: skewX(10deg);
}

.readBtn a:before {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  right: -20px;
  background: #313131;
  top: 35%;
  transition: 0.2s ease-in-out;
}

.readBtn a:after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  right: -5px;
  background: #313131;
  top: 55%;
  transition: 0.2s ease-in-out;
}

.readBtn a:hover {
  background: #054A91;
  color: #fff;
  background: #fff;
  color: #313131;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
  transform: translateX(10px);
}

/*
******************************
    トップへ戻るボタン 
*******************************
*/
#page-top {
  position: absolute;
  right: 35px;
  bottom: 35px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 2rem;
  color: #fff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  animation: moveanime 2s ease-in-out infinite;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*
******************************
    header
*******************************
*/
.header {
  background: #fff;
}
@media screen and (max-width: 479px) {
  .header {
    position: fixed;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header {
    position: fixed;
  }
}

.header * {
  color: black;
}
@media screen and (max-width: 479px) {
  .header * {
    color: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header * {
    color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span {
    background: black;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span {
    background: black;
  }
}

@media screen and (max-width: 479px) {
  .hamburger.active span {
    background: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span {
    background: black;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-head {
    border-top: 1px solid #fff;
  }
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeader {
  position: relative;
}

.pageHeader__bgImg {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}

.pageHeader__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
  background: -webkit-linear-gradient(180deg, rgb(0, 63, 255), rgb(255, 255, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 99;
}
@media screen and (max-width: 479px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}

.pageHeader__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  z-index: 99;
}

.pageHeader__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  z-index: 99;
}

.pageHeader__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .pageHeader__mask {
    height: 200px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__mask {
    height: 200px;
  }
}

.pageHeader__mask-mask1 {
  height: 300px;
  z-index: 15;
  background: rgba(1, 63, 147, 0.35);
}

/*
******************************
    本ページ共通
*******************************
*/
@media screen and (max-width: 479px) {
  table td,
  table th {
    width: 100%;
    padding: 16px;
    display: block;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  table td,
  table th {
    width: 100%;
    padding: 16px;
    display: block;
  }
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeader__bgImg {
  background-image: url("../../img/webp/com_header.webp");
}

.pageHeader__guidance {
  background-color: #f5f5f5;
}

.pageHeader__guidanceWrapper {
  display: flex;
  justify-content: space-around;
  width: 1180px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .pageHeader__guidanceWrapper {
    justify-content: space-between;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__guidanceWrapper {
    justify-content: space-between;
  }
}

.pageHeader__guidanceBtn {
  width: 30%;
  text-align: center;
  margin: 25px 0;
  background: #fff;
  border: none;
  transition: 0.4s;
  padding: 16px 0;
}
@media screen and (max-width: 479px) {
  .pageHeader__guidanceBtn {
    padding: 10px 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__guidanceBtn {
    padding: 16px 0;
  }
}

.pageHeader__guidanceBtn:hover {
  opacity: 0.5;
}

.pageHeader__guidanceBtn a {
  color: #054A91;
  font-weight: 800;
  font-size: 17px;
}
@media screen and (max-width: 479px) {
  .pageHeader__guidanceBtn a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__guidanceBtn a {
    font-size: 1.6rem;
  }
}

i.fas.fa-angle-down {
  margin-right: 15px;
  font-size: 20px;
  vertical-align: unset;
}
@media screen and (max-width: 479px) {
  i.fas.fa-angle-down {
    margin-right: 11px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  i.fas.fa-angle-down {
    margin-right: 11px;
    font-size: 1.6rem;
  }
}

/*
******************************
    会社案内
*******************************
*/
.companyProfile {
  padding: 128px 0;
}
@media screen and (max-width: 479px) {
  .companyProfile {
    padding: 40px 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .companyProfile {
    padding: 40px 0;
  }
}

.companyProfile__wrapper {
  width: 1180px;
  max-width: 90%;
  margin: 0px auto;
  background-image: url(../../img/com_bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-position-x: 60px;
  background-position-y: 14px;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .companyProfile__wrapper {
    background-size: 80%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .companyProfile__wrapper {
    background-size: 325px;
  }
}

.companyProfile__sectionTitle {
  font-size: 2.6rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 479px) {
  .companyProfile__sectionTitle {
    margin-bottom: 48px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .companyProfile__sectionTitle {
    margin-bottom: 48px;
  }
}

.companyProfile__sectionTitle-en {
  font-size: 1.3rem;
  padding-left: 10px;
}

.companyProfile__table {
  border-collapse: collapse;
  width: 100%;
}

.companyProfile__table .column-01 {
  width: 250px;
  font-size: 1.4rem;
  padding: 25px 80px;
  vertical-align: middle;
  text-align: justify;
  text-align-last: justify;
}
@media screen and (max-width: 479px) {
  .companyProfile__table .column-01 {
    width: 100%;
    padding: 16px;
    text-align: unset;
    text-align-last: unset;
    background-color: #eee;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .companyProfile__table .column-01 {
    width: 100%;
    padding: 16px;
    text-align: unset;
    text-align-last: unset;
    background-color: #eee;
  }
}

@media screen and (max-width: 479px) {
  .companyProfile .companyProfile__table tr {
    border-top: 0px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .companyProfile .companyProfile__table tr {
    border-top: 0px;
  }
}

.companyProfile__table .column-02 {
  font-size: 1.4rem;
  vertical-align: middle;
}
@media screen and (max-width: 479px) {
  .companyProfile__table .column-02 {
    padding: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .companyProfile__table .column-02 {
    padding: 16px;
  }
}

.companyProfile__table tr:not(:first-child) {
  border-top: 1px solid #d2d2d2;
}

/*
******************************
    事業拠点
*******************************
*/
.businessBase {
  padding: 128px 0;
  background-color: #fbfbfb;
}
@media screen and (max-width: 479px) {
  .businessBase {
    padding: 40px 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase {
    padding: 40px 0;
  }
}

.businessBase__wrapper {
  width: 1180px;
  max-width: 90%;
  margin: 0% auto;
  background-image: url(../../img/bus_bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-position-x: 60px;
  background-position-y: 14px;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .businessBase__wrapper {
    background-size: 80%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__wrapper {
    background-size: 80%;
  }
}

.businessBase__sectionTitle {
  font-size: 2.6rem;
  margin-bottom: 32px;
}

.businessBase__sectionTitle-en {
  font-size: 1.3rem;
  padding-left: 10px;
}

@media screen and (max-width: 479px) {
  .businessBase__baseMapImage img {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__baseMapImage img {
    width: 100%;
  }
}

.businessBase__table {
  border-collapse: collapse;
  width: 100%;
}

.base {
  background: #054A91;
  color: #fff;
  padding: 4px 24px;
}

.businessBase__groupList {
  background: #fff;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #dbdbdb;
  margin-block: 8px;
  list-style: inside;
}
@media screen and (max-width: 479px) {
  .businessBase__groupList {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__groupList {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 479px) {
  .businessBase__groupItem {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__groupItem {
    display: flex;
    flex-direction: column;
  }
}

.businessBase__groupItem-groupName {
  display: inline-block;
  width: 185px;
}

.businessBase__table .column-01 {
  width: 250px;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 25px 70px;
  vertical-align: middle;
  text-align: justify;
  text-align-last: justify;
}
@media screen and (max-width: 479px) {
  .businessBase__table .column-01 {
    width: 100%;
    padding: 16px;
    text-align: unset;
    text-align-last: unset;
    background-color: #eee;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__table .column-01 {
    width: 100%;
    padding: 16px;
    text-align: unset;
    text-align-last: unset;
    background-color: #eee;
  }
}

.businessBase__table .column-02 {
  font-size: 1.4rem;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
  padding: 20px 0px;
}
@media screen and (max-width: 479px) {
  .businessBase__table .column-02 {
    padding: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__table .column-02 {
    padding: 16px;
  }
}

.businessBase__table tr:not(:first-child) {
  border-top: 1px solid #d2d2d2;
}

.businessBase__baseMapImage {
  text-align: center;
  padding: 32px 0;
}

.businessBase__mapContent iframe {
  width: 100%;
}

.businessBase__mapSummary {
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  background: #054A91;
  padding: 2px 24px;
  border-radius: 16px;
  margin-top: 8px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 479px) {
  .businessBase__mapSummary {
    padding: 8px 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .businessBase__mapSummary {
    padding: 8px 32px;
  }
}

.businessBase__mapSummary:hover {
  cursor: pointer;
  opacity: 0.8;
}

.businessBase__mapSummary::-webkit-details-marker {
  display: none;
}

.businessBase__mapContent {
  padding-top: 20px;
}

.businessBase__mapContent p:last-of-type {
  margin: 0;
}

/*
******************************
    沿革
*******************************
*/
.history {
  padding: 128px 0;
  padding-bottom: 0;
}
@media screen and (max-width: 479px) {
  .history {
    padding: 40px 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history {
    padding: 40px 0;
  }
}

.history__wrapper {
  width: 1180px;
  max-width: 90%;
  margin: 0% auto;
  background-image: url(../../img/his_bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-position-x: 60px;
  background-position-y: 14px;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .history__wrapper {
    background-size: 80%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__wrapper {
    background-size: 80%;
  }
}

.history__sectionTitle {
  font-size: 2.6rem;
  margin-bottom: 64px;
}

.history__sectionTitle-en {
  font-size: 1.3rem;
  padding-left: 10px;
}

.history__table {
  border-collapse: collapse;
  width: 100%;
}

.history__table .column-01,
.history__table .column-02 {
  font-size: 1.4rem;
  vertical-align: middle;
}

.history__table .column-01 {
  width: 200px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .history__table .column-01 {
    width: 100px;
    padding: 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__table .column-01 {
    width: 100px;
    padding: 0;
  }
}

@media screen and (max-width: 479px) {
  .history__table .column-02 {
    padding: 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__table .column-02 {
    padding: 0;
  }
}

.history__table tbody {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.history__circle {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #054A91;
}
@media screen and (max-width: 479px) {
  .history__circle {
    width: 65px;
    height: 65px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__circle {
    width: 65px;
    height: 65px;
  }
}

.history__table tr:not(:last-child) .history__circle::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  bottom: -30px;
  background-color: #e6e6e6;
  width: 3px;
  z-index: -1;
}
@media screen and (max-width: 479px) {
  .history__table tr:not(:last-child) .history__circle::after {
    left: 32.5px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__table tr:not(:last-child) .history__circle::after {
    left: 32.5px;
  }
}

.history__circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media screen and (max-width: 479px) {
  .history__circle span {
    width: 65px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__circle span {
    width: 65px;
    font-size: 1.4rem;
  }
}

.history__tableWrapper {
  background: #fbfbfb;
  padding: 48px 24px;
  border-radius: 17px;
}

@media screen and (max-width: 479px) {
  .history__table tr {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .history__table tr {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}/*# sourceMappingURL=company.css.map */