/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* ここから */

.container{
  background-color: #eeeeee;
  padding: 0 0 100px 0;
  position: relative;
}

.img01{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 450px;
  z-index: 10;
}

.container::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 65% 50%, #d6e2efd9, transparent 30%); */
  pointer-events: none;
  z-index: 0;
}

.container > *{
  position: relative;
  z-index: 1;
}

/* .top-wrapper{
  position: relative;
  width: 100%; 
  overflow: hidden;
} */

img.topimg{
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 100vh;
  display: block;
}

img.logo{
    position: absolute;
    top: 50vh;
    left: 50%;
    max-width: 500px;
    transform: translate(-50%, -50%);
    -webkit-animation: text-focus-in 1.5s ease-out both;
    animation: text-focus-in 1.5s ease-out both;
    z-index: 1000;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.mission{
  text-align: center;
  margin: 50px 0 100px 0;
}

.anime-fadein img.fadein{
  opacity: 0;
}

.anime-fadein img.fadein.is-animated{
  animation: fadeInSlideDown 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeInSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
   
.company{
  margin: 120px 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.company > img.fadein{
  opacity: 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

.company > img.fadein.is-animated{
  animation: fadeInSlideDown 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.company-content{
  display: flex;
  gap: 40px;
  margin-left: 50%;
  align-items: flex-start;
}

.company-info{
  max-width: 800px;
}

.company-info.fadein{
  opacity: 0;
}

.company-info.fadein.is-animated{
  animation: fadeInSlideDown 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.company-info table{
  width: 100%;
  border-collapse: collapse;
  color:#777c8c;
}

.company-info th,
.company-info td{
  padding: 20px;
  border-bottom: 1px solid #777c8c;
  text-align: left;
}

.company-info th{
  width: 180px;
  font-weight: bold;
}

.vietnam-wrapper{
  position: relative;
  margin-top: -300px;
}

.vietnam-img{
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
}

.img02{
  position: absolute;
  bottom: -8%;
  right: 2%;
  max-width: 300px;
  z-index: 10;
}

.vietnam-img.fadein{
  opacity: 0;
}

.vietnam-img.fadein.is-animated{
  animation: fadeInSlideDown 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

  .logo{
    max-width: 70% !important;
    margin-top: 0;
  }

  .img01{
    max-width: 70%;
    margin-top: 0;
  }

  .mission .fadein{
    max-width: 92% !important;
  }


  .container{
    padding: 0px 0px 170px 0px;
  }

  .mission{
    margin: 300px 0 170px 0;
  }

  .company{
    margin: 100px 0 50px 0;
    padding: 0 20px;
    gap:20px;
  }

  .company > img.fadein{
    margin-left: 0;
    transform: translateX(0);
    max-width: 45% !important;
  }

  .company-content{
    flex-direction: column;
    margin-left: 0;
    gap: 30px;
  }

  .vietnam-wrapper{
   display: none;
  }

  .vietnam-img{
    max-width: 100%;
    margin-top: 0;
  }

  .company-info{
    max-width: 100%;
    padding: 0;
  }

  .company-info th{
    width: 100px;
    font-size: 14px;
    padding: 15px 10px;
  }

  .company-info td{
    font-size: 14px;
    padding: 15px 10px;
  }

  .header img{
    display: block;
    width: 100%;
  }

  .vision .anime-fadein img{
    display: block;
    width: 100%;
  }

  .vision{
    padding-top: 20px !important;
  }

  .header{
    margin-top:0px !important;
  }


  .img02{
    top: -195%;
    right: -10%;
    max-width: 160px;
  }
}

.vision{
  background-color: #eeeeee;
  padding-top: 100px;
  text-align: center;
}

.vision .anime-fadein{
  margin-bottom: 0;
}

.header{
  background-color: #eeeeee;
  margin-top: -70px;
}

.header .anime-fadein{
  margin-bottom: 0;
}

.header img{
  width: 100%;
}