@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro','Meiryou','sans-serif';
    font-size: 1.5vw;
    background: linear-gradient(#ffffff 15%, #fffdfd 5%, #faffff 60% );
    color: #1e1e1e;
}

a {
    text-decoration: none;
    color: #333;
}
.wrap-body {
  overflow: hidden;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}
.loading {
  display: none;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 40%;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}
#menu-btn-check {
  display: none;
}
.header_logo {
  display: none;
}
.background {
  position: absolute;
  width: 80%;
  height: 150vw;
  margin: 0;
  background-color: #f4f4f4;;
}

.header-box {
  display: block;
    width: 100vw;
    height: 7vw;
    display: flex;
    position: fixed;
    background-color: rgb(0, 18, 39, 0.875);
    z-index: 10;
}

.banner-logo img{
    width: 36%;
    z-index: 1;
    margin-top: -0.1vw;
    margin-left: 0.5%;
}
.menu-content {
  display: block;
    width: 55vw;
    display: flex;
    z-index: 1;
    margin-left: 43%;
    margin-top: -3.5vw;
}

.menu-content ul {
    width: 55vw;
    height: 2vw;
    display: flex;
    text-align: center;
    margin: 0;
}
.menu-content ul li {
    width: 23%;
    list-style: none;
    border-right: solid 0.01vw #f2f2f2;
}
.menu-content ul li:first-child {
    border-left: 0.01vw solid #f2f2f2;
  }
.menu-content a {
  color: #f4f4f4;
}
  .header-img img {
    width: 100%;
    position: relative;
    z-index: 0;
  }
  .img-frame{
     position: relative;
     width: 100%;
     height: 50vw;
     overflow: hidden;
     z-index: 2;
     margin: 0 auto;
  }

  .img-01, .img-02, .img-03{
     position: absolute;
     top:0;
     left:0;
     width: 100%;
     height: auto;
     background-size: cover;
     background-repeat: no-repeat;
  }
  .img-01, .header-text1{
    background-image: url('image/header1.jpg');
    animation: slide-animation-01 22s infinite;
 }
 .img-02, .header-text2{
    background-image: url('image/header2.JPG');
    animation: slide-animation-02 22s infinite;
 }
 .img-03, .header-text3{
    background-image: url('image/header3.JPG');
    animation: slide-animation-03 22s infinite;
 }
 @keyframes slide-animation-01 {
     0% {opacity: 1; transform: scale(1.0);}
   30% {opacity: 1;}
   40% {opacity: 0; transform: scale(1.15);}
   90% {opacity: 0}
 100% {opacity: 1; transform: scale(1.0);}
 }
 @keyframes slide-animation-02 {
     0% {opacity: 0;}
   30% {opacity: 0; transform: scale(1.1);}
   40% {opacity: 1;}
   60% {opacity: 1;}
   70% {opacity: 0; transform: scale(1.0);}
 100% {opacity: 0;}
 }
 @keyframes slide-animation-03 {
   0% {opacity: 0;}
 60% {opacity: 0;  transform: scale(1.0);}
 70% {opacity: 1;}
 90% {opacity: 1;}
 100% {opacity: 0; transform: scale(1.1);}
 }




.access {
    margin: -2.5vw 0% 0% 2%;
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 10vw; /* ボタン幅 */
    padding: 1em 1em;
    background: rgb(222, 202, 142); /* 背景色 */
    text-decoration: none;
    border-radius: 0.5em;
    box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.2);
    text-align: center; /* 文字の太さ */
    font-size: 1.3vw;
    font-family: serif;
  }
  .access a {
    color: #252525;
    letter-spacing: 2px;
    font-weight: bold;
  }
  
  /* マウスオーバーした際のデザイン */
  .access::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(255 255 255) 50%, #314a61 50%, #31506e 60%); /* めくれた色 */
    border-radius: 0 0 0.5em 0;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  .access:hover::before {
    width: 2em;
    height: 2em;
  }
  
  /* クリックした際のデザイン */
  .access:active {
    box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
    transform: translate(1px, 1px);
  }
  .top-box {
    position: relative;
  }

.header-text1, .header-text2, .header-text3 {
  position: absolute;
  top: -20vw;
  left: 10%;
  z-index: 5;
}
  .header-text1 a, .header-text2 a, .header-text3 a{
    font-size: 6.5vw;
    font-weight: bold;
    font-style: italic;
    color: rgb(255, 255, 255);
    font-family: serif;
  }
  .header-text2 {
    position: absolute;
    top: -17vw;
    left: 10%;
  }
  .news-title h1 {
    position: absolute;
    top: -10.5vw;
    left: 40%;
    font-size: 4.5vw;
    font-weight: bold;
    letter-spacing: 3px;
    font-family: serif;
    color: #0d122e;
  }
  .news-title a {
    position: absolute;
    top: -5vw;
    left: 43%;
    letter-spacing: 2px;
  }
  .newslist {
    position: relative;
    top: -1.5vw;
    left: 0%;
    max-width: 70%;
    margin: 30vh auto;
    z-index: 1;
    height: 22vw; /* 3項目分の高さを指定 */
    overflow-y: scroll; /* スクロールを有効化 */
}

.newslist ul {
    padding-left: 0;
    margin: 2vw 1vw 0 0 ; /* 余白を削除 */
}

.newslist li {
    display: flex;
    align-items: flex-start;
    padding: 3% 2%;
    border-top: 2px solid rgb(139, 139, 139);
}

.newslist li:last-child {
    border-bottom: 2px solid rgb(139, 139, 139);
}

.newslist .newslist-box {
    display: flex;
    align-items: center;
    padding-left: 5vw;
}

.newslist .newslist-text {
    margin-left: 10vw;
    font-size: 1.3vw;
}

.newslist .newslist-text a {
    text-decoration: none;
    color: black;
}

.newslist-box time {
    font-size: 1.2vw;
}

/* スクロールバーのスタイルをカスタマイズする場合（オプション） */
.newslist::-webkit-scrollbar {
    width: 12px;
}

.newslist::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.newslist::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

.newslist::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}


  .aboutus {
    max-width: 100vw;
    height: 55vw;
    margin-top: -7vw;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .aboutus img {
    position: relative;
    width: 75vw;
    height: 50vw;
    margin-left: 25vw;
    padding: 0;
    display: block;
  }
  .aboutus:after{
    position: absolute;
    top: 0;
    left: 25vw;
    content: "";
    width: 100vw;
    height: 50vw;
    background: linear-gradient(90deg,  #f4f4f4 , transparent 100%);
  }
  .aboutus-title {
    position: absolute;
    top: -2vw;
    left: 12%;
    font-size: 8vw;
    letter-spacing: -5px;
    font-weight: bold;
    color: #3d9ec84e;
    font-family: serif;
    z-index: 1;
  }
  .aboutus-title h1 {
    position: absolute;
    top: 7vw;
    left: 6%;
    font-weight: normal;
    font-size: 3.5vw;
    color: black;
    letter-spacing: 1px;
  }
  .aboutus-text {
    position: absolute;
    top: 15vw;
    left: 14.3%;
    letter-spacing: 2px;
    font-size: 1.7vw;
    font-family: serif;
    z-index: 1;
  }
  .aboutus-box .more-btn  {
    margin-top: -16vw;
    margin-bottom: 10vw;
  }
  .service-box {
    position: relative;
  }
  .service-title h1 {
    position: absolute;
    top: 13vw;
    left: 40%;
    font-size: 4.8vw;
    font-weight: bold;
    letter-spacing: 3px;
    font-family: serif;
    color: #0d122e;
  }
  .service-title a {
    position: absolute;
    top: 18.5vw;
    left: 39%;
    letter-spacing: 2px;
  }
  .service-container {
    width: 100vw;
    margin-top: 22vw;
  }
  .service-container h1 {
    font-weight: normal;
    font-family: serif;
    margin: 0 3%;
    letter-spacing: 1.5px;
  }
  .service-container img {
    width: 100vw;
    height: 27.1vw;
    opacity: 0.9;
    margin-bottom: 0%;
  }
  .service {
    display: flex;
    margin-bottom: 0.2vw;
  }
  .service a, h1, h2 {
    display: inline-block;
  }

  .service1-text a, .service3-text a {
    font-family: cursive;
    border-right: solid 1px #1e1e1e;
    height: 4vw;
    line-height: 4;
    font-size: 1.3vw;
    padding-right: 5%;
  }
  .service2-text a {
    font-family: cursive;
    border-left: solid 1px #1e1e1e;
    height: 4vw;
    line-height: 4;
    font-size: 1.3vw;
    padding-left: 5%;
  }
  
  .service1-text, .service2-text, .service3-text{
    width: 40%;
    height: 21.8vw;
    margin: 1.3vw 0 0 -50%;
    padding: 2% 2%;
    z-index: 1;
    background-color: #fffff8;
  }
  .service2-text {
    margin-right: -50%;
  }

  .service p {
    margin-top: 1.5vw;
  }
  .service.reverse {
    flex-direction: row-reverse;
  }

  .service .more-btn {
    display: block;
    max-width: 100%;
    margin: 20vw 5% 0 60%;
  }
  .service .more-btn a {
    border-style: none;
    white-space: nowrap;
    width: 100%;
    height: 1.2vw;
  }
  .service1-text .more-btn {
    margin-top: 18vw;
  }
  .more-btn a {
    z-index: 3;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 1em 1em;
    width: 15%;
    color: #333;
    font-size: 1.2vw;
    font-weight: 500;
    background-color: #ffffff;
    transition: 0.5s;
    margin-top: -12vw;
    margin-right: 68.5%;
  }
  
  .more-btn a::before {
    content: '';
    position: absolute;
    top: -0.7vw;
    left: -7px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #00203d;
    transition: 0.2s;
  }
  
  .more-btn a::after {
    content: '';
    width: 0.6vw;
    height: 0.6vw;
    margin-left: 5%;
    border-top: 0.2vw solid #333333;
    border-right: 0.2vw solid #333333;
    transform: rotate(45deg);
  }
  
  .more-btn a:hover::before {
    top: 0;
    left: 0;
  }
  
  .more-btn a:hover {
    text-decoration: none;
    background-color: #00203d;
    color: #fdfdfd;
  }
  .background2 {
    position: absolute;
    width: 85vw;
    height: 60vw;
    margin: 0;
    background-color: #f4f4f4;
  } 
  .job-container {
    position: relative;
    margin-bottom: 15vw;
  }
  .job-box {
    max-width: 100%;
    height: 50vw;
    margin-top: 0%;
    display: inline-block;
    padding: 8% 0 10% 0;
  }
  .job-box img {
    position: relative;
    max-width: 98%;
    height: 45vw;
    margin-left: 50%;
    display: block;
    opacity: 0.8;
    z-index: 1;
  }
  .job-box:after{
    position: absolute;
    top: 8vw;
    left: 33%;
    content: "";
    width: 60%;
    height: 45vw;
    background: linear-gradient(90deg, #f4f4f4,transparent 80%);
    z-index: 1;
  }
  .job-title {
    position: absolute;
    top: 10vw;
    left: 13%;
    z-index: 3;
    font-size: 8vw;
    font-weight: bold;
    font-family: serif;
    color: #3d9ec864;
  }
  .job-title h1 {
    width: 100%;
    position: absolute;
    top: 6vw;
    left: 5%;
    font-weight: normal;
    font-family: serif;
    font-size: 3.5vw;
    color: #1e1e1e;
  }
  .job-text {
    position: absolute;
    z-index: 3;
    top: 23vw;
    left: 15%;
    letter-spacing: 2px;
    font-size: 1.5vw;
    font-family: serif;
  }
  .job-container .more-btn {
    display: block;
    margin: 0;
    margin-top: -30vw;
  } 
   .fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
  }
  
  .fade-in-up {
    transform: translate(0, 250px);
  }
  
  .fade-in-down {
    transform: translate(0, -50px);
  }
  
  .fade-in-left {
    transform: translate(-50px, 0);
  }
  
  .fade-in-right {
    transform: translate(50px, 0);
  }
  
  .scroll-in {
    opacity: 1;
    transform: translate(0, 0);
  }  

  .footer {
    position: relative;
    font-family: serif;
    margin-bottom: -0.6vw;
  }
  .footer img {
    position: relative;
    width: 100%;
    height: 41vw;
    opacity: 0.5;
  }
  .footer h1 {
    position: absolute;
    width: 100%;
    height: 7vw;
    text-align: center;
    line-height: 2.5;
    font-weight: normal;
    background-color: #00203d;
    color: #fff;
    letter-spacing: 3px;
    opacity: 1;
    z-index: 3;
  }
  .footer-box {
    position: absolute;
    top: 0vw;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 41vw;
    align-items: center;
    text-align: center;
    background-color: #001f3d5d;
    color: black;
  }

  .footer-box img {
    margin-bottom: -1vh;
    width: 55%;
    height: 6vw;
    opacity: 1;
  }
  .footer-box a {
    display: block;
    font-size: 1.6vw;
    color: #fdfdfd;
    letter-spacing: 2px;
  }
  .address {
    width: 100%;
    margin-top: 3vw;
  }
  .address iframe {
    margin-top: 8vw;
    width: 40vw;
    height: 25vw;
  }
  .footer-access::before {
	position: absolute; /*--positionを追加--*/
	top: 0%;
	left: 50%;
	margin: 0 1rem;
	content: "";
	width: 1px; /*--縦線の太さ(幅)--*/
	height: 27.5vw;
    margin-top: 12vw;
	background-color: #333; /*--縦線の色--*/
    opacity: 1;
    z-index: 5;
  }
  .footer-access {
    width: 100%;
    margin-top: 9vw;
  }
  .footer-access .tel {
    margin-top: 1vw;
    font-size: 1.8vw;
  }
  .footer-access a {
    display: inline-block;
    margin-left: 2%;
    font-size: 1.5vw;
  }
  .footer-access p {
    color: #fdfdfd;
    margin-left: 2%;
    font-size: 1.8vw;
    letter-spacing: 2px;
    text-decoration-line: none;
  }

  .access-btn a {
    margin: 2vw 0 0 27%;
    position: relative;
    display: inline-block;
    display: block;
    width: 100%;
    max-width: 42%; /* ボタン幅 */
    padding: 1em 1em;
    background: #e4da77; /* 背景色 */
    text-decoration: none;
    border-radius: 3em;
    color: #000000; /* 文字色 */
    box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.2);
    font-weight: normal;
    text-align: center; /* 文字の太さ */
    font-size: 1.5vw;
  }
  .copy {
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 0.9vw;
    background-color: #020527;
    padding: 7px 0 4px;
    z-index: 1;
  }

  div.animation_box {
    padding: 10px;
    animation: fadeIn 5s ease 1s 1 normal backwards;
  }
   
  @media only screen and (max-width: 600px) {
    * {
      font-weight: bold;
    }

    .wrap-body {
      overflow: hidden;
    }
    .loading {
      display: none;
    }
    .loading__logo {
      width: 70%;
      margin-bottom: 40%;
    }
    .header-box {
      display: none;
    }
    .menu-content {
      display: none;
    }

.background {
  height: 800vw;
}
  .header_logo {
    display: block;
    width: 100%;
    height: 16vw;
    display: flex;
    background-color: rgba(13, 24, 70, 0.93);
    position: fixed;
    z-index: 90;
  }
 .header_logo img {
    max-width: 75%;
    height: auto;
    margin-left: 1%;
    margin-top: 0.5vw;
    z-index: 100;
 }
  .menu-btn {
  position: fixed;
  top: 5vw;
  right: 5vw;
  display: flex;
  height: 6vw;
  width: 8vw;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: '';
  display: block;
  height: 0.4vw;
  width: 7vw;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  z-index: 90;
}
.menu-btn span::before {
  bottom: 1.8vw;
}
.menu-btn span::after {
  top: 1.8vw;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-contentsp {
  display: block;
  width: 100%;
  height: 200vw;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: rgba(13, 24, 70, 0.93);
  transition: all 0.5s;
  color: #f4f4f4;
}
  
.menu-contentsp ul:first-child {
  padding: 80px 10px 50px;
  font-size: 4.8vw;
}

.menu-contentsp ul {
  margin: 1vw 8px 2vw 8px;
  font-size: 4vw;
  text-align: center;
}

  
.menu-contentsp ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
  padding-bottom: 8px;
}

.menu-contentsp ul li a {
  display: block;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 20px 15px 0px 0px;
  position: relative;
  z-index: 95;
  font-weight: normal;
}

.menu-contentsp ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right:  solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  z-index: 90;
  right: 11px;
  top: 28px;
}
  
#menu-btn-check:checked ~ .menu-contentsp {
  left: 0;
} 
.access {
  display: inline;
  margin-left: 13%;
  background-color: rgb(222, 202, 142);
  padding: 9.7vw 20vw 6.5vw 20vw;
  border-radius: 100px;
}
.access a {
  color: #001c29;
  font-weight: bold;
  font-size: 5vw;
}
.menu-box {
  display: none;
}
.header-img {
  max-width: 100%;
  padding-top: 16%;
}

.img-frame {
  position: relative;
  width: 100%;
  height: 100vw; /* ビューポートの高さの60%に設定 */
  overflow: hidden; /* 画像が枠を超える部分を隠す */
}

.img-frame img {
  width: 100%; /* 幅を100%に設定 */
  height: 100vw; /* 親要素の高さに合わせる */
  object-fit: cover; /* アスペクト比を保ちながら、画像を枠内にフィット */
}

.header-text1, .header-text2, .header-text3 {
  background-color: #3a39395c;
  width: 100%;
  left: 0;
  position: absolute;
}

.header-text1 {
  top: -40vw;
  padding-left: 10vw;
}

.header-text2 {
  top: -35vw;
}

.header-text3 {
  top: -35vw;
}

.header-text1 a, .header-text2 a, .header-text3 a {
  font-size: 9vw;
  font-weight: bold;
  margin-left: 4vw;
}


.news-title {
  margin-bottom: 10vw;
}
.news-title h1 {
  font-size: 10vw;
  top: -22vw;
  left: 35%;
}
.news-title a {
  font-size: 4vw;
  top: -10vw;
  left: 40%;
}
.newslist {
  height: 69vw;
  margin: 40vw auto;
}

  .newslist li {
      display: block;
  }
  .newslist .newslist-box {
      max-width: 100%;
      padding: 0;
      justify-content: space-between;
      margin-bottom: 3vw;
  }
  .newslist-box time {
    font-size: 4vw;
    font-family: serif;
  }
.newslist-text a {
  font-size: 3.8vw;
  font-family: sans-serif;
  font-weight: 600;
  color: #2d373d;
}
.aboutus-box {
  margin-bottom: 25vw;
}
.aboutus-box {
  max-width: 100%;
}
.aboutus img {
  width: 90%;
  height: 90vw;
  margin: auto;
  margin-left: 9%;
}
.aboutus::after {
  width: 100%;
  height: 90vw;
  left: 9%;
}
.aboutus-title {
  font-size: 15vw;
  top: 1vw;
  left: 12%;
}
.aboutus-title h1 {
  font-size: 7vw;
  top: 13vw;
  font-weight: bold;
  color: #2e2e36;
}
.aboutus-text {
  font-size: 4vw;
  top: 30vw;
  left: 18%;
  font-family: sans-serif;
  color: #2d373d;
  font-weight: 600;
}
.aboutus-box .more-btn a  {
  margin-top: 32vw;
  margin-left: 6%;
  font-family: sans-serif;
}
.more-btn,.more-btn a {
  width: 65%;
  font-size: 3vw;
  margin: 0 auto;
  white-space: nowrap;
  padding: 3% 10% 5% 0;
  font-family: sans-serif;
  font-weight: 600;
 }
 .more-btn a::after {
  content: '';
  width: 1.6vw;
  height: 1.6vw;
  margin-left: 5%;
  border-top: 0.6vw solid #333333;
  border-right: 0.6vw solid #333333;
  transform: rotate(45deg);
}
 .service-box {
  margin-top: 20vw;
  max-width: 100vw;
 }
 .service img {
  width: 90vw;
 }
 .service-title {
  padding-bottom: 0%;
 }
 .service-title h1 {
  font-size: 10vw;
  top: -20vw;
  left: 26%;
 }
 .service-title a {
  top: -8vw;
  left: 23vw;
  font-size: 3vw;
 }
.service-container {
  display: inline;
  max-width: 100%;
  margin: 0 auto;
}
.service {
  display: block;
  margin: 0 5% 0 5%;
}

.service img {
  height: 50vw;
}
.service1-text,.service2-text, .service3-text {
  margin: 0 auto;
  background-color: #fdfdfd00;
}

.service-container h1 {
  font-size: 7vw;
  font-weight: bold;
  color: #252525;
}
.service-container h2 {
  font-size: 5vw;
}
.service-container a {
  font-size: 5vw;
  line-height: 3;
  height: 11vw;
}
.service1-text h1, .service2-text h1, .service3-text h1 {
  margin-top: 4vw;
  font-size: 6.5vw;
}
.service1-text a, .service2-text a, .service3-text a {
  font-size: 3.3vw;
  line-height: 5.5;
  font-weight: bold;
}
.service2-text a {
  padding-left: 2%;
}
.service2-text h1 {
  margin-left: 0%;
}

.service-container p {
  font-size: 4vw;
  color: #2d373d;
  font-family: sans-serif;
  font-weight: 600;
}
.service .more-btn {
  margin: 0;
}
.service .more-btn a {
  margin: 10vw 0 8vw 30vw;
  max-width: 43vw;
  height: 6vw;
  font-size: 3vw;
}
.background2 {
  width: 70%;
}
.job-box {
  padding: 0;
  margin-bottom: 50vw;
  margin-top: 10vw;
}
.job-box img {
  width: 100%;
  height: 90vw;
  margin: 0 auto;
  opacity: 0.6;
}
.job-box:after {
  width: 100%;
  height: 90vw;
  top: 10vw;
  left: 0%;
}
.job-title {
  font-size: 15vw;
  top: 24vw;
}
.job-title h1 {
  font-size: 8vw;
  top: 11vw;
  font-weight: bold;
  color: #2e2e36;
}
.job-text {
  font-size: 4vw;
  top: 53vw;
  font-family: sans-serif;
  font-weight: 600;
  color: #2d373d;
}
.job-container .more-btn {
  margin-left: 8%;
}
.fade-in, .scroll-in{
  opacity: 1;
}

.fade-in-up, .fade-in-down, .fade-in-left, .fade-in-right{
  transform: translate(0, 0px);
}
.footer img {
  height: 130vw;
  object-fit: cover; 
}
.footer h1 {
  font-size: 25px;
  height: 60px;
  font-weight: bold;
}
.footer-box {
  display: block;
  width: 100%;
  height: 130vw;
}
.footer-access a {
  font-size: vw;
}
.address a {
  margin-bottom: 2vw;
}
.footer-box .tel {
  font-size: 5vw;
}
.footer-box a{
  font-size: 4vw;
  margin-bottom: 1.5vw;
}
.footer-box p  {
  font-size: 5vw;
}
.footer-box img {
  width: 70%;
  height: auto;
  margin-top: 20vw;
}
.address iframe {
  width: 95%;
  height: 46vw;
  margin-top: 5vw;
}

.access-btn a {
  max-width: 70%;
  margin: 3vw 0 0 10%;
  color: #2c2c3d;
  font-weight: bold;
}
.footer-access::before {
  display: none;
}
.footer-box .access-btn {
  margin: 0 auto;
}
.copy {
  height: 5vw;
  font-size: 2.5vw;
  margin-top: -1vw;
}

  }