@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;
}

/*
******************************
    共通部分
*******************************
*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 479px) {
  html {
    font-size: 50%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  html {
    font-size: 50%;
  }
}

* {
  font-family: "Oswald", sans-serif;
  box-sizing: border-box;
}

input:not([type=checkbox]),
select {
  -webkit-appearance: none;
  appearance: none;
}

select {
  background: #fff url("../../img/bottomArrow.svg") no-repeat right 5px top 55%;
  background-size: 16px 16px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*
******************************
    header
*******************************
*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0);
}
@media screen and (max-width: 479px) {
  .header {
    background: unset;
    position: absolute;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header {
    background: #fff;
  }
}

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

.header__wrapper {
  width: 1180px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .header__wrapper {
    width: 100%;
    align-items: center;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .header__wrapper {
    width: 90%;
  }
}

.header__navLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 479px) {
  .header__navLink {
    flex-direction: row;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header__navLink {
    flex-direction: row;
  }
}

.header__navLink::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
@media screen and (max-width: 479px) {
  .header__navLink::after {
    display: none;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header__navLink::after {
    display: none;
  }
}

.header__navLink:hover::after {
  transform: scale(1.5, 1);
}

.header__navLink-ja {
  font-size: 1.1rem;
}
@media screen and (max-width: 479px) {
  .header__navLink-ja {
    font-weight: unset;
    font-size: 1.4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header__navLink-ja {
    font-weight: unset;
  }
}

.header__navLink-en {
  font-size: 1.9rem;
}
@media screen and (max-width: 479px) {
  .header__navLink-en {
    font-size: 3.5rem;
    font-weight: 800;
    margin-right: 24px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header__navLink-en {
    font-size: 3.5rem;
    font-weight: 800;
    margin-right: 24px;
  }
}

.header__logo {
  width: 320px;
  transition: 0.4s;
  display: flex;
}
@media screen and (max-width: 479px) {
  .header__logo {
    width: 60%;
    max-width: 250px;
    margin-left: 20px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header__logo {
    width: 60%;
    max-width: 300px;
    margin-left: 20px;
  }
}

.header__logo:hover {
  opacity: 0.6;
}

.header__logo a {
  display: flex;
}

.header__logoImg {
  width: 100%;
  object-fit: contain;
}

.header__navMenu {
  display: flex;
  align-items: center;
}

.header__navLists {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__navItem {
  font-size: 1.6rem;
  color: #fff;
  transition: 0.4s;
}

.header__navItem:hover {
  opacity: 0.8;
}

@media screen and (min-width:960px) and (max-width:1279px) {
  nav.header__navMenu.pc {
    display: flex;
  }
}

/*
******************************
    ハンバーガーメニュー
*******************************
*/
@media screen and (max-width: 479px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    right: 20px;
    top: 19px;
    width: 65px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    right: 20px;
    top: 19px;
    width: 65px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span {
    display: block;
    position: absolute;
    width: 55px;
    height: 1px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span {
    display: block;
    position: absolute;
    width: 55px;
    height: 1px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span:nth-child(1) {
    top: 13px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span:nth-child(1) {
    top: 13px;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span:nth-child(2) {
    top: 20px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span:nth-child(2) {
    top: 20px;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span:nth-child(3) {
    top: 27px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span:nth-child(3) {
    top: 27px;
  }
}

/* 
    ナビ開いてる時のボタン 
*/
@media screen and (max-width: 479px) {
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 20px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
    width: 35px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 20px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
    width: 35px;
  }
}

@media screen and (max-width: 479px) {
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    width: 35px;
    top: 16px;
    left: 20px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    width: 35px;
    top: 16px;
    left: 20px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
}

@media screen and (max-width: 479px) {
  .globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    background: linear-gradient(to right, #054A91, #6695c5);
    height: 100vh;
    overflow-y: scroll;
    opacity: 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    background: linear-gradient(to right, #054A91, #6695c5);
    height: 100vh;
    overflow-y: scroll;
    opacity: 0;
  }
}

@media screen and (max-width: 479px) {
  .globalMenuSp ul {
    background: unset;
    color: #fff;
    margin: 0 auto;
    padding: 108px 0;
    width: 80%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp ul {
    background: unset;
    color: #fff;
    margin: 0 auto;
    padding: 108px 0;
    width: 80%;
  }
}

@media screen and (max-width: 479px) {
  .globalMenuSp ul li {
    background: unset;
    color: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp ul li {
    background: unset;
    color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .globalMenuSp ul li a {
    color: #fff;
    padding: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp ul li a {
    color: #fff;
    padding: 10px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 479px) {
  .globalMenuSp.active {
    /* このクラスを、jQueryで付与・削除する */
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp.active {
    /* このクラスを、jQueryで付与・削除する */
    transform: translateY(80px);
    opacity: 1;
  }
}

@media screen and (max-width: 479px) {
  .hamburgerBtns {
    margin-top: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburgerBtns {
    margin-top: 16px;
  }
}

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

@media screen and (max-width: 479px) {
  .globalMenuSp__item-link a::before {
    content: "\f105";
    font-family: FontAwesome;
    padding-right: 5px;
    color: #fff;
    margin-top: -8px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-link a::before {
    content: "\f105";
    font-family: FontAwesome;
    padding-right: 5px;
    color: #fff;
    margin-top: -8px;
  }
}

@media screen and (max-width: 479px) {
  .globalMenuSp__item-link {
    padding-left: 6px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-link {
    padding-left: 6px;
  }
}

/*
**************************************************************
    お問い合わせ/採用情報 - contactAndRecruit__contactBlock
**************************************************************
*/
.contactAndRecruit {
  padding: 128px 0;
}
@media screen and (max-width: 479px) {
  .contactAndRecruit {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactAndRecruit {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}

.contactAndRecruit__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
}

.contactAndRecruit__sectionTitle {
  background: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background: -webkit-linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contactAndRecruit__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: black;
}

.contactAndRecruit__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: black;
  margin-bottom: 48px;
}
@media screen and (max-width: 479px) {
  .contactAndRecruit__sectionTitle-sub {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactAndRecruit__sectionTitle-sub {
    margin-bottom: 32px;
  }
}

.contactAndRecruit__wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 479px) {
  .contactAndRecruit__wrapper {
    padding: 0;
    flex-direction: column;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactAndRecruit__wrapper {
    width: 90%;
    max-width: 700px;
    padding: 0;
    flex-direction: column;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .contactAndRecruit__wrapper {
    width: 90%;
    flex-direction: row;
  }
}

@media screen and (max-width: 479px) {
  .contactAndRecruit__contactBlock {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactAndRecruit__contactBlock {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .contactAndRecruit__contactBlock {
    margin-bottom: 0px;
  }
}

.contactAndRecruit__contactBlock,
.contactAndRecruit__recruitBlock {
  width: 45%;
  height: 275px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 479px) {
  .contactAndRecruit__contactBlock,
  .contactAndRecruit__recruitBlock {
    width: 100%;
    height: 200px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactAndRecruit__contactBlock,
  .contactAndRecruit__recruitBlock {
    width: 100%;
    height: 250px;
  }
}

.contactAndRecruit__contactBlock a:before,
.contactAndRecruit__recruitBlock a:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 220px;
  border: 0.1px solid #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .contactAndRecruit__contactBlock a:before,
  .contactAndRecruit__recruitBlock a:before {
    height: 150px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactAndRecruit__contactBlock a:before,
  .contactAndRecruit__recruitBlock a:before {
    height: 200px;
  }
}

.contactAndRecruit__contactBg {
  background: url(../../img/webp/contact.webp) center;
  background-size: cover;
}

.contactAndRecruit__recruitBg {
  background: url(../../img/webp/recruit.webp) center;
  background-size: cover;
}

.contactAndRecruit__contactBg,
.contactAndRecruit__recruitBg {
  height: 100%;
  width: 100%;
  transition: 0.4s;
  top: 0;
  left: 0;
}

.contactAndRecruit__contactBlock a:hover:before,
.contactAndRecruit__recruitBlock a:hover:before {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.contactAndRecruit__contactBlock a:hover .contactAndRecruit__contactBg,
.contactAndRecruit__recruitBlock a:hover .contactAndRecruit__recruitBg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.contactAndRecruit__blockTtile {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) translateY(-45%);
  z-index: 2;
}

.contactAndRecruit__blockTtile-sub {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
  z-index: 2;
}

/*
******************************
    footer
*******************************
*/
footer {
  background: #1c1c1c;
  position: relative;
}

.footer__wrapper {
  width: 1180px;
  margin: 0 auto;
  padding: 56px 0;
}
@media screen and (max-width: 479px) {
  .footer__wrapper {
    width: 90%;
    padding: 32px 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__wrapper {
    width: 90%;
    padding: 32px 0;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .footer__wrapper {
    width: 90%;
  }
}

.footer__firstContent,
.footer__secondContent {
  display: flex;
  justify-content: space-between;
}

.footer__firstContent {
  margin-bottom: 40px;
}
@media screen and (max-width: 479px) {
  .footer__firstContent {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__firstContent {
    flex-direction: column;
    margin-bottom: 16px;
  }
}

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

.footer__logo {
  width: 300px;
  margin-bottom: 16px;
}
@media screen and (max-width: 479px) {
  .footer__logo {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__logo {
    width: 100%;
  }
}

.footer__logo img {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 479px) {
  .footer__logo img {
    width: 80%;
    margin-bottom: 24px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__logo img {
    width: 350px;
    margin-bottom: 32px;
  }
}

.footer__navMenu {
  display: flex;
  align-items: center;
}

.footer__navLists {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 479px) {
  .footer__navLists {
    flex-direction: column;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__navLists {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
  }
}

.footer__navItem {
  margin-right: 40px;
  font-size: 1.6rem;
  color: white;
}
@media screen and (max-width: 479px) {
  .footer__navItem {
    font-size: 2rem;
    line-height: 2.5rem;
    width: 48%;
    margin: 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__navItem {
    font-size: 2rem;
    line-height: 4rem;
    width: 150px;
    margin: 0;
  }
}

.footer__copyright,
.footer__secondContent .footer__navItem {
  font-size: 1.2rem;
  color: #8f8f8f;
}
@media screen and (max-width: 479px) {
  .footer__copyright,
  .footer__secondContent .footer__navItem {
    font-size: 1.4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__copyright,
  .footer__secondContent .footer__navItem {
    font-size: 1.6rem;
    width: unset;
  }
}

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

@media screen and (max-width: 479px) {
  .footer__secondContent .footer__navLists {
    margin-bottom: 16px;
    justify-content: flex-start;
    gap: 20px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__secondContent .footer__navLists {
    margin-bottom: 16px;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .footer__secondContent .footer__navItem {
    width: unset;
  }
}

i.fa-solid.fa-arrow-up-right-from-square {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  margin-left: 6px;
  color: #fff;
}

footer a {
  transition: 0.4s;
}

footer a:hover {
  opacity: 0.6;
}

.footer__address {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}
@media screen and (max-width: 479px) {
  .footer__address {
    font-size: 1.6rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .footer__address {
    font-size: 1.6rem;
    margin-bottom: 0px;
  }
}

.footer__subList {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__subListTitle {
  font-size: 1.6rem;
  border-bottom: 1px solid;
  padding-right: 40px;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.footer__subItem {
  font-size: 1.4rem;
  padding-left: 16px;
  display: flex;
  align-items: center;
}

.footer__subItem::before {
  content: "";
  width: 9px;
  margin-right: 8px;
  height: 1px;
  display: inline-block;
  background: #fff;
  position: relative;
  top: 1px;
  transition: 0.4s;
}

.footer__subItem:hover .footer__subItem::before {
  margin-right: 12px;
}

/*
******************************
    404ページ
*******************************
*/
.notFound {
  margin-top: 80px;
}

.notFound__wrapper {
  width: 1180px;
  max-width: 90%;
  margin-inline: auto;
  padding-block: 140px;
}
@media screen and (max-width: 479px) {
  .notFound__wrapper {
    padding-block: 90px;
  }
}

.notFound__messeage-en {
  text-align: center;
  font-size: 3.2rem;
}

.notFound__messeage-ja {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1em;
}

.notFound .readBtn {
  display: flex;
  justify-content: space-around;
  margin-top: 6em;
}

.notFound .readBtn a {
  background: unset;
  color: black;
}

/*
******************************
    端末ごとの表示切替
*******************************
*/
@media screen and (max-width: 479px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 479px) {
  .sp {
    display: block;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .sp {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */