#hero {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
}
#hero .movie {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#hero .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .movie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#hero .heroConts {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--color-white);
  position: relative;
  padding: 120px 5vw;
}
#hero .heroConts h2 {
  font-size: 70px;
  font-weight: 700;
  font-style: italic;
}
#hero .heroConts p {
  color: var(--color-white);
  margin-top: 24px;
  padding: 0 40px;
  max-width: 640px;
  text-align: center;
}
#hero .heroConts ul {
  margin: 80px auto 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#hero .heroConts ul li {
  width: 80%;
  max-width: 300px;
}
#hero .heroConts ul a {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #hero {
    min-height: 50vh;
  }
  #hero .heroConts {
    min-height: 50vh;
  }
  #hero .heroConts h2 {
    font-size: 40px;
  }
  #hero .heroConts ul {
    margin-top: 50px;
    gap: 30px;
  }
}

#why ul.dial {
  margin: 40px 0 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#why ul.dial li {
  width: 32%;
  height: auto;
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-bg);
  border-radius: 4px;
}
#why ul.dial li h3 {
  font-size: 80px;
  font-weight: 700;
  color: var(--color-main);
}
#why ul.dial li h3 .dialPlus {
  transform: translateY(7px);
  display: inline-block;
}
#why .mapCase {
  width: calc(100% + 9vw);
  height: auto;
  aspect-ratio: 3207/1600;
  transform: translateX(-4vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
#why .mapCase ul.map {
  width: 100%;
  height: auto;
  aspect-ratio: 3207/958;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(../img/map.webp);
  position: relative;
}
#why .mapCase ul.map li {
  position: absolute;
  transform: translateY(-200px);
  opacity: 0;
}
#why .mapCase ul.map li::after {
  content: "";
  width: 40px;
  height: auto;
  aspect-ratio: 112/155;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/map_point.png);
  transform-origin: center bottom;
  position: absolute;
  left: -20px;
  bottom: 0;
}
#why .mapCase ul.map li.spot1 {
  left: 10.3%;
  top: 29%;
}
#why .mapCase ul.map li.spot2 {
  left: 18.8%;
  top: 20%;
}
#why .mapCase ul.map li.spot3 {
  left: 23.9%;
  top: 23.2%;
}
#why .mapCase ul.map li.spot4 {
  left: 41%;
  top: 22%;
}
#why .mapCase ul.map li.spot5 {
  left: 49.2%;
  top: 29.6%;
}
#why .mapCase ul.map li.spot6 {
  left: 73.6%;
  top: 28.2%;
}
#why .mapCase ul.map .fuki {
  position: absolute;
  left: -90px;
  bottom: -130px;
  width: 180px;
  height: 130px;
  border-radius: 10px;
  transition-duration: 0.3s;
  opacity: 0;
}
#why .mapCase ul.map .fuki .cardHead {
  width: 100%;
  height: 28px;
  background-color: var(--color-main);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
  position: relative;
}
#why .mapCase ul.map .fuki .cardVisual {
  width: 100%;
  height: 102px;
  background-color: #EEE;
  border-radius: 0 0 10px 10px;
}
#why .mapCase ul.map .fuki span {
  width: 200px;
  height: 22px;
  position: absolute;
  left: -10px;
  top: -11px;
  transform: scaleX(0.6);
}
#why .mapCase ul.map .fuki span::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 90px;
  top: 4px;
  background-color: var(--color-main);
  transform: rotate(45deg);
}
#why .mapCase ul.map li.open .fuki {
  opacity: 1;
  bottom: -145px;
}
#why .mapCase.on ul.map li {
  animation: drop 0.8s ease-out forwards;
}
#why .mapCase.on ul.map li.spot2 {
  animation-delay: 0.1s;
}
#why .mapCase.on ul.map li.spot3 {
  animation-delay: 0.2s;
}
#why .mapCase.on ul.map li.spot4 {
  animation-delay: 0.3s;
}
#why .mapCase.on ul.map li.spot5 {
  animation-delay: 0.4s;
}
#why .mapCase.on ul.map li.spot6 {
  animation-delay: 0.5s;
}
@keyframes drop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#why .copy {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
#why .copy img {
  width: 25vw;
}
#why .copy p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #why ul.dial {
    flex-direction: column;
    gap: 40px;
  }
  #why ul.dial li {
    width: 100%;
  }
  #why .mapCase {
    margin-top: 60px;
  }
  #why .mapCase ul.map li::after {
    width: 20px;
    left: -10px;
  }
  #why .mapCase ul.map .spot1 .fuki {
    left: -25px;
  }
  #why .mapCase ul.map .spot1 .fuki span {
    left: -75px;
  }
  #why .mapCase ul.map .spot2 .fuki {
    left: -60px;
  }
  #why .mapCase ul.map .spot2 .fuki span {
    left: -40px;
  }
  #why .copy {
    flex-direction: column;
  }
  #why .copy img {
    width: 70vw;
    margin: 0 auto;
  }
}

#philosophy {
  background-color: var(--color-bg);
}
#philosophy .pholoImg {
  margin: 40px auto;
  width: -moz-fit-content;
  width: fit-content;
}
#philosophy .pholoImg img {
  width: 100%;
  max-width: 800px;
}
#philosophy .slide-date {
  font-size: 24px;
  font-weight: 700;
}
#philosophy .president {
  display: flex;
  gap: 40px;
  margin-bottom: 120px;
}
#philosophy .president .cardVisual {
  width: 276px;
  border-radius: 4px;
}
#philosophy .president .cardBody {
  width: calc(100% - 316px);
}
#philosophy .graph {
  margin: 40px auto;
  display: flex;
  justify-content: center;
}
#philosophy .graph img {
  width: 100%;
  max-width: 400px;
}
#philosophy .innerFull {
  padding-top: 0;
  padding-bottom: 0;
}
#philosophy .inner:last-child > p {
  margin-top: 20px;
}
#philosophy .column {
  margin-top: 40px;
  margin-bottom: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#philosophy .column .cardBody {
  width: 48%;
  height: auto;
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  #philosophy .president {
    flex-direction: column;
  }
  #philosophy .president .cardVisual,
  #philosophy .president .cardBody {
    width: 100%;
  }
  #philosophy .column {
    flex-direction: column;
  }
  #philosophy .column .cardBody {
    width: 100%;
  }
}

#portfolio ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 64px 0px 0px;
  gap: 24px;
}
#portfolio ul li {
  list-style-type: none;
  box-sizing: border-box;
  display: block;
  height: auto;
  aspect-ratio: 437/333;
  overflow: hidden;
}
#portfolio ul li a {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  transition-duration: 0.2s;
  transform-origin: center center;
  transform: scale(0.9);
}
#portfolio ul li a::hover {
  transform: scale(1);
}

#team {
  background-color: var(--color-bg);
}
#team .teamBelt {
  width: 100%;
  height: 200px;
  background-repeat: repeat-x;
  background-image: url(../img/team_belt.webp);
  animation: beltMove 60s linear 0s infinite;
}
@keyframes beltMove {
  0% {
    background-position: 0px bottom;
  }
  100% {
    background-position: -1422px bottom;
  }
}
#team .innerFull {
  padding-bottom: 0;
}
#team .inner {
  padding-top: 80px;
}
#team .teamLink {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
#team .teamLink a {
  width: 40%;
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  border-radius: 4px;
  transition: var(--anim-mouseOver);
}
#team .teamLink a:hover {
  transform: translate(-5px, -5px);
}
@media screen and (max-width: 767px) {
  #team .teamLink {
    margin-top: 40px;
    gap: 20px;
    flex-direction: column;
  }
  #team .teamLink a {
    width: 80%;
  }
}

#career .careers-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#career .careers-list .career-item {
  background: var(--color-bg);
  padding: 50px 100px;
  padding-right: 350px;
  position: relative;
}
#career .careers-list .career-item .career-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
  margin-bottom: 10px;
}
#career .careers-list .career-item .career-item-text {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.43;
}
#career .careers-list .career-item .career-item-button {
  position: absolute;
  right: 100px;
  bottom: 50px;
}
#career .careers-list .career-item .career-item-button .btn-transparent {
  padding: 12px 25px;
  border-radius: 50px;
  background-color: transparent;
  border: 3px solid var(--color-main);
  font-size: 16px;
  color: var(--color-black);
  text-transform: uppercase;
  transition: 0.5s all ease-in-out;
  min-width: 190px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: var(--anim-mouseOver);
}
#career .careers-list .career-item .career-item-button .btn-transparent:hover {
  transform: translate(-5px, -5px);
}
@media screen and (max-width: 767px) {
  #career .careers-list .career-item {
    padding: 30px 5vw;
  }
  #career .careers-list .career-item .career-item-button {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

#news {
  background-color: var(--color-bg);
  overflow-x: hidden;
}
#news h3.h3main {
  margin-top: 80px;
}
#news .slider-case {
  padding: 0;
}
#news .showAll {
  display: flex;
  justify-content: flex-end;
}

#contact .contactCase {
  margin-top: 64px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}
#contact .contactCase .contactBox {
  background-color: var(--color-bg);
  border-radius: 4px;
  padding: 33px;
}
#contact .contactCase .contactBox h3 {
  font-size: 24px;
  font-weight: 900;
  color: #7A777A;
}
#contact .contactCase .contactBox .contactPlace {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
}
#contact .contactCase .contactBox .contactPlace li {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 7px;
}
#contact .contactCase .contactBox .contactPlace li::before {
  content: "";
  width: 19px;
  height: auto;
  aspect-ratio: 19/24;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_place.svg);
}
#contact .contactCase .contactBox .formBox2 {
  display: flex;
  gap: 20px;
}
#contact .contactCase .contactBox .formBox2 > p {
  width: calc((100% - 20px) / 2);
}
#contact .contactCase .contactBox label {
  font-weight: 700;
}
#contact .contactCase .contactBox label span {
  color: var(--color-main);
}
#contact .contactCase .contactBox label span input,
#contact .contactCase .contactBox label span textarea {
  margin-top: 6px;
  width: 100%;
  font-weight: 400;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: var(--color-white);
}
#contact .contactCase .contactBox input[type=submit] {
  padding: 10px 60px;
  border: none;
  border-radius: 4px;
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #contact .contactCase {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}/*# sourceMappingURL=toptest.css.map */