@charset "UTF-8";
/* ------------------------------------------------------------
// index
------------------------------------------------------------ */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader .loader-logo {
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}
#loader .loader-logo img {
  max-width: 200px;
  height: auto;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.main-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* スクロールダウンの位置 */
  /* 線のアニメーション部分 */
  /* 線のアニメーション */
}
.main-visual .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  text-decoration: none;
}
.main-visual .full .img-1 {
  background-image: url(../images/index/slide-img-1.png);
}
.main-visual .full .img-2 {
  background-image: url(../images/index/slide-img-2.png);
}
.main-visual .full .img-3 {
  background-image: url(../images/index/slide-img-3.png);
}
.main-visual .full .bg-zoom {
  animation: zoomEffect 5s ease-in-out forwards;
}
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.main-visual .txt-box {
  position: absolute;
  top: 56%;
  left: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 80px);
  z-index: 2;
}
.main-visual .txt-box .txt-l {
  font-size: 60px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.main-visual .txt-box .txt-s {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  padding-left: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
@media print, screen and (max-width: 991px) {
  .main-visual {
    height: calc(100vh - 108px);
  }
  .main-visual .full div {
    height: calc(100vh - 108px);
  }
  .main-visual .txt-box .txt-l {
    font-size: 50px;
  }
  .main-visual .txt-box .txt-s {
    font-size: 18px;
  }
}
@media print, screen and (max-width: 767px) {
  .main-visual .txt-box {
    left: 20px;
    width: calc(100% - 40px);
  }
  .main-visual .txt-box .txt-l {
    font-size: 24px;
  }
  .main-visual .txt-box .txt-s {
    font-size: 12px;
  }
}
.main-visual .scroll {
  position: absolute;
  right: calc(50% - 12px);
  bottom: 115px;
  font-size: 14px;
  color: #ffffff;
  writing-mode: vertical-rl;
}
.main-visual .scroll::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -115px;
  left: 0;
  height: 100px;
  width: 1px;
  margin: auto;
  background: #ffffff;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.circle-marker {
  width: 12px;
  height: 12px;
  margin: 52px auto 68px;
  background: #c9dfff;
  border-radius: 50%;
  animation: bounce 3s ease-in-out infinite;
}
@media print, screen and (max-width: 767px) {
  .circle-marker {
    margin: 42px auto 58px;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.business-wrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  margin-bottom: 120px;
}
.business-wrap .img {
  display: inline-block;
  width: 50%;
}
.business-wrap .business-box {
  position: absolute;
  top: 0;
  width: 100%;
}
.business-wrap .business-box .txt-box {
  text-align: left;
  width: 50%;
  margin-left: auto;
  padding: 90px 90px 0;
}
.business-wrap .business-box .txt-box p {
  margin-bottom: 50px;
}
@media print, screen and (max-width: 1399px) {
  .business-wrap .business-box .txt-box {
    padding: 60px 0 0 60px;
  }
  .business-wrap .business-box .txt-box p {
    margin-bottom: 30px;
  }
}
@media print, screen and (max-width: 1199px) {
  .business-wrap .img {
    margin-left: -10%;
  }
  .business-wrap .business-box .txt-box {
    width: 60%;
    padding: 40px 0 0 40px;
  }
}
@media print, screen and (max-width: 991px) {
  .business-wrap .img {
    margin-left: -10%;
  }
  .business-wrap .business-box .txt-box {
    width: 60%;
    padding: 60px 0 0 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .business-wrap .img {
    margin-left: -20%;
  }
  .business-wrap .business-box .txt-box {
    width: 70%;
  }
}
@media print, screen and (max-width: 575px) {
  .business-wrap {
    margin-bottom: 100px;
  }
  .business-wrap .img {
    width: 65%;
    margin-left: 0;
  }
  .business-wrap .business-box {
    position: relative;
  }
  .business-wrap .business-box .txt-box {
    width: 90%;
    padding: 20px 0 0 20px;
  }
}

.company-wrap {
  position: relative;
  width: 100%;
  text-align: right;
  overflow-x: hidden;
  overflow-y: visible;
  margin-bottom: 120px;
}
.company-wrap .img {
  display: inline-block;
  width: 50%;
}
.company-wrap .company-box {
  position: absolute;
  top: 0;
  width: 100%;
}
.company-wrap .company-box .txt-box {
  text-align: left;
  width: 50%;
  margin-right: auto;
  padding: 90px 90px 0;
}
.company-wrap .company-box .txt-box p {
  margin-bottom: 50px;
}
@media print, screen and (max-width: 1399px) {
  .company-wrap .company-box .txt-box {
    padding: 60px 60px 0 0;
  }
  .company-wrap .company-box .txt-box p {
    margin-bottom: 30px;
  }
}
@media print, screen and (max-width: 1199px) {
  .company-wrap .img {
    margin-right: -10%;
  }
  .company-wrap .company-box .txt-box {
    width: 60%;
    padding: 40px 40px 0 0;
  }
}
@media print, screen and (max-width: 991px) {
  .company-wrap .img {
    margin-right: -10%;
  }
  .company-wrap .company-box .txt-box {
    width: 60%;
    padding: 60px 40px 0 0;
  }
}
@media print, screen and (max-width: 767px) {
  .company-wrap .img {
    margin-right: -20%;
  }
  .company-wrap .company-box .txt-box {
    width: 70%;
  }
}
@media print, screen and (max-width: 575px) {
  .company-wrap {
    margin-bottom: 100px;
  }
  .company-wrap .img {
    width: 65%;
    margin-right: 0;
  }
  .company-wrap .company-box {
    position: relative;
  }
  .company-wrap .company-box .txt-box {
    width: 90%;
    padding: 20px 20px 0 0;
  }
}

.contact-wrap {
  padding: 120px 0;
  background: url(../images/common/contact-bg.png) no-repeat center center/cover;
}
.contact-wrap p {
  margin-bottom: 1em;
}
.contact-wrap .time {
  display: flex;
  gap: 10px;
}
.contact-wrap .time span {
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .contact-wrap {
    padding: 100px 0;
  }
}
.contact-wrap .tel {
  margin: 40px 0 20px;
}
.contact-wrap .tel a,
.contact-wrap .tel span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  width: 100%;
  max-width: 280px;
  height: 48px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #ffffff;
  border-radius: 24px;
}
.contact-wrap .tel a i,
.contact-wrap .tel span i {
  font-size: 20px;
  padding-top: 4px;
}
@media screen and (max-width: 575px) {
  .contact-wrap .tel a,
  .contact-wrap .tel span {
    font-size: 24px;
    max-width: 240px;
    height: 44px;
    border-radius: 22px;
  }
  .contact-wrap .tel a i,
  .contact-wrap .tel span i {
    font-size: 18px;
  }
}
.contact-wrap .mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1;
  width: 100%;
  max-width: 280px;
  height: 46px;
  background: #005bad;
  border-radius: 23px;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2);
}
.contact-wrap .mail a i {
  padding-top: 4px;
}
.contact-wrap .mail a:hover {
  background: #003462;
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 51, 128, 0.3);
}
@media screen and (max-width: 575px) {
  .contact-wrap .mail a {
    font-size: 16px;
    max-width: 240px;
    height: 44px;
    border-radius: 22px;
  }
}