@charset "utf-8";

/* ==================== 全体設定 ==================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}


body {
  line-height: 1.5;
}

body{
        content: "";
        display: block;
        position: fixed;
        top:0;
        left:0;
        width:100vw;
        height:100vh;
        background:url(../img/background.jpg);
        background-size: cover;
        background-position: center;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

html {
    /* font-size: 62.5%; */
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html,
body {
  color: var(--color-black);
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
}

ul {
  list-style-type: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: var(--color-green);
}

.container {
  max-width: 1440px;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}
.section-title {
  font-weight: 700;
  margin-left: 160px;}

   @media (max-width: 991.98px) {
    .section-title {
    margin-left: 80px;
  }}
  @media (max-width: 767.98px) {
    .section-title {
    margin-left: 40px;
  }}
  @media (max-width: 575.98px) {
    .section-title {
    margin-left: 0;
  }
}

:root {
    --color-black: #000;
    --color-white: #fff;
    --color-green: #00aecc;
    --color-darkblue: #1E2F55;
    --color-red: #d8374e;
    --font-lato: 'Lato', sans-serif;
    --font-noto-san-jp: 'Noto Sans JP', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
    --font-roboto: 'Roboto', sans-serif; 
}

.section-title .en {
  font-family: var(--font-oswald);
  font-size: 60px;
  color: #02aecc;
  opacity: 0.35;
  text-transform: uppercase;
  letter-spacing: 0.1em;}
  @media (max-width: 575.98px) {
    .section-title .en {
    font-size: 40px;
  }
}
.section-title .ja {
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-top: -30px; 
  letter-spacing: 0.06em;
}
  @media (max-width: 575.98px) {
    .section-title .ja {
    margin-top: -20px;

    font-size: 18px;
  }
}

 h1{
  /* position: fixed; */
  margin-bottom: 24px;
  width: 100%;
	height: 100%;
	overflow: hidden; 
} 


/* ==================== HEADER ==================== */

.mv_video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
} 
  @media (max-width: 575.98px) {
    .mv_video {
     visibility:hidden;
  }}


h1{
  position: relative;
}

.logo{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

/* ==================== nav ==================== */
.nav-btn{
    width: 48px;
    height: 48px;
    top: 0;
    right: 1rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    border-radius: 100px;
    position:fixed;
    z-index: 999;

    }
    
    .nav-btn span{
    width: 4px;
    height: 4px;
    position: absolute;
    top: 50%;
    background: #1e2f55;
    border-radius: 100px;
    display: block;
    }
      .nav-btn span:nth-child(1){
    left: 30%;
    transform: translateY(-50%);
    }
    .nav-btn span:nth-child(2){
    left: 50%;
    transform: translate(-50%,-50%);
    }
    .nav-btn span:nth-child(3){
    right: 30%;
    transform: translateY(-50%);
    }
    .nav-btn.close span:nth-child(1){
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    transform-origin: center;
    width: 20px;
    height: 2px;
    }
      .nav-btn.close span:nth-child(2){
    opacity: 0;
    }
     .nav-btn.close span:nth-child(3){
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%) rotate(-45deg);
    transform-origin: center;
    width: 20px;
    height: 2px;
    }
    
   nav{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,.9);
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(5px);
    }
    
    nav.on{
    display: block;
    animation-name: fadeIn;
    animation-fill-mode:forwards;
    animation-duration:0.2s;
    }
    @keyframes fadeIn{
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  nav ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  nav li{
    margin-left: 0px;
    margin: 16px 0;
  }

    nav li a{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    justify-content: space-between;
  }

  nav li a span{
    font-size: 14px;
    display: block;
  }

  nav li:last-child a:nth-child(1){
    margin-right: 12px;
}
/* ==================== FOOTER ==================== */

.footer {
  padding-top: 30px;
  padding-bottom: 36px;
  border-top: 1px solid #c1c1c1;
  background-color: var(--color-white);
}

footer p{
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 14px;
    color:var(--color-darkblue);
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 20px;
}
footer .footer-btn-1{
    width: 300px;
    height: 40px;
    border:  1px solid var(--color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 36px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    background-color: var(--color-white);
    color: var(--color-green);
}

footer .footer-btn-1:hover{
  color: var(--color-white);
  background-color: rgba(0, 174, 204,.7); 
}

footer .footer-btn-1:hover::after {
  color: var(--color-black);
  background-color: var(--color-white);
}

/* ==================== NEWS ==================== */

.news {
  padding-top: 88px;
  padding-bottom: 50px;
}
  @media (max-width: 575.98px) {
    .news {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.news .section-title {
  margin-bottom: 22.5px;
}
  @media (max-width: 575.98px) {
    .news .section-title {
    margin-bottom: 0;
  }
}

.news-list {
  max-width: 1000px;
  margin: auto;
}

.news-items {
  padding-top: 19.5px;
  padding-bottom: 16.5px;
  padding-left: 19.5px;
  padding-right: 10.5px;
  border-bottom: 1px solid #1a879a;
}
  @media (max-width: 575.98px) {
    .news-items {
    padding-left: 0;

    padding-right: 0;

    padding-top: 16px;

    padding-bottom: 16px;
  }
}

.news-link {
  color: var(--color-black);
  display: flex;
  gap: 45px;
  align-items: flex-start;}

  @media (width <575.98px) {
  .news-link {
    flex-direction: column;
    gap: 6px;
  }
  
}
.news-time {
  width: 84px;
  font-weight: 500;
}
.news-title {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}
  @media (max-width: 575.98px) {
    .news-title {
    font-size: 13px;
  }
}
.news-button {
  position: relative;
  max-width: 240px;
  width: 100%;
  height: 60px;
  margin: auto;
  margin-top: 49.5px;
  border-radius: 6px;
  border: 2px solid var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background-color: var(--color-green);
  font-weight: 900;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
  @media (max-width: 575.98px) {
    .news-button {
    margin-top: 52px;
  }
}
.news-button::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url(../img/reshot-icon-arrow-right-ZP2WDL9B8N.svg); 
  background-repeat: no-repeat;
  background-position: center;
  right: 9px;
  transition: background-color 0.2s ease-in-out;
}
.news-button:hover {
  color: var(--color-darkblue);
  background-color:rgba(0, 174, 204,.7);
}
.news-button:hover::after {
  color: var(--color-black);
  background-color: var(--color-white);
}

/* ==================== TALENTS PROFILE ====================*/

.talent-plofile {
  padding-top: 50px;
  padding-bottom: 50px;

}
  @media (max-width: 575.98px) {
    talent-plofile {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.talent-plofile .section-title{
  margin-bottom: 48px;
}
  @media (max-width: 575.98px) {
    .talent-plofile .section-title{
    margin-bottom: 30px;
  }
}

.talents-list {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

@media (max-width: 991.98px) {
  .talents-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width:575.98px) {
  .talents-list {
    grid-template-columns:repeat(1, 1fr);
    gap: 63px;
    padding-left: 20px;
    padding-right: 20px;
  }
}


.talents-img {
  max-width: 310px;
  height: auto;
  overflow: hidden;
}

.talents-img img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.talents-img:hover img {
  transform: scale(1.1);
}

.talents-name {
  margin-top: 30px;
  text-align: center;
  font-weight: 900;
}
  @media (max-width: 575.98px) {
    .talents-name {
    margin-top: 22px;
  }
}

.talents-name .ja {
  margin-bottom: 7px;
  font-size: 18px;
  color: #0b0b0b;
  transition: color 0.2s ease-in-out;
}
  @media (max-width: 575.98px) {
    .talents-name .ja {
    font-size: 16px;

    margin-bottom: 4px;
  }
}

.talents-name .en {
  font-size: 14px;
  color: #676767;
  transition: color 0.2s ease-in-out;
}
  @media (max-width: 575.98px) {
    .talents-name .en {
    font-size: 12px;
  }
}

.talents-link:hover .talents-name .ja,
.talents-link:hover .talents-name .en {
  color: var(--color-green);
}

.talents-img {
  max-width: 310px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.talents-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.talents-img img,
.talent-image img {
  image-rendering: -webkit-optimize-contrast;
  /* Safari */
  image-rendering: crisp-edges;
  /* Chrome/Firefox */
  image-rendering: optimizeQuality;
  /* General */
  backface-visibility: hidden;
  /* Fix cho animation */
  transform: translateZ(0);
  /* GPU acceleration */
}
/* ==================== COMPANY ====================*/

.company {
  padding-top: 50px;
  padding-bottom: 50px;
}
  @media (max-width: 575.98px) {
  .company{
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.company .section-title{
  margin-bottom: 48px;
  background-color: var(--color-gray);
}
  @media (max-width: 575.98px) {
   .company .section-title{
    margin-bottom: 30px;
  }
}

.company-detail {
  max-width: 1000px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

.company-item {
  display: flex;
  margin-bottom: 17px;
}
@media (width<576px) {
  .company-item {
  flex-direction: column;

}}

.company-item:last-of-type {
  margin-bottom: 0;
}


.company-detail .title {
  width: 160px;
  border-bottom: 1px solid var(--color-green);
  padding-left: 29.5px;
  padding-bottom: 19.5px;
  padding-top: 19.5px;
  font-weight: 700;
}
  @media (max-width: 575.98px) {
    .company-detail .title {
    width: 100%;

    padding-left: 0;

    padding-bottom: 10px;

    padding-top: 16px;

    font-size: 14px;
  }
}

.company-detail .title :nth-of-type(4){
  margin-top: 20px;
}

.company-detail .description {
  vertical-align: top;
  flex: 1;
  padding-left: 69.5px;
  padding-bottom: 19.5px;
  padding-top: 19.5px;
  font-weight: 500;
}
  @media (max-width: 575.98px) {
    .company-detail .description {
    border: 0;

    padding-left: 0;

    padding-bottom: 22px;

    padding-top: 16px;

    font-size: 13px;
  }
}

.company-info {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}

  @media (max-width: 575.98px) {
    .company-info  {
  margin-top: 50px;
}
}

.map{
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.map iframe{
 position: absolute;
 left: 0;
 top: 0;
 height: 100%;
 width: 100%;
 padding-left: 50px;
 padding-right: 50px;
}

  @media (max-width: 575.98px) {
    .company-info iframe {
      padding-left: 20px;
      padding-right: 20px;
}
}

/* ==================== CONTACT ====================*/

.contact {
 padding-top: 50px;
  padding-bottom: 50px;
}
  @media (max-width: 575.98px) {
    .contact {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.contact .section-title {
  margin-bottom: 57px;
}
  @media (max-width: 575.98px) {
    .contact .section-title {
    margin-bottom: 37px;
  }
}

.form-items{
  max-width: 1000px;
  margin: auto;
}

/* form{
  width: 90%;
  margin: 0 auto 40px;
  padding: 40px 0;
} */

dl{
  margin: 0 auto;
  /* width: 500px; */
}

dt{
  /* width: 200px; */
  display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-black);
}
@media (max-width: 575.98px) {
  dt {
    font-size: 14px;
    margin-bottom: 17px;
  }}

  dd{margin-bottom: 40px;
} 


input[type="text"],input[type="email"],select,textarea{
  display: block;
  width: 100%;
  font-size: 14px;
}
.form-submit{
  text-align: center;
}
@media screen and (max-width: 575.98px){
  form{padding: 20px 0;}
  dl{width: 90%;}
  .form-items{display: block;}
  dt{width: 100%;}
  dd{width: 100%;}
}

dt::after {
    content: '必須';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 24px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 21px;}
   @media (max-width: 575.98px){
   dt::after {
   width: 40px;
   height: 18px;
   font-size: 9px;
   margin-left: 16px;
  }
}

input[type="text"],input[type="email"],select,textarea{
  width: 100%;
  font-size: 16px;
  padding: 28px 30px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-noto-san-jp);
  outline: none;
  border: 1px solid #ccc;
  transition: box-shadow 0.3s ease;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media (max-width: 575.98px) {
  input[type="text"],input[type="email"],select,textarea{
    padding: 15.5px 20px 15px;
    font-size: 13px;
  }
}

textarea{
  resize: vertical;}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 2px var(--color-green);
}
/* 
.messageType{
  display: inline-flex;
  align-items: center;
  position: relative;
}

.messageType::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.messageType select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
} */

input[type="button"]{
  font-size: 20px;
  font-weight: 900;
  max-width: 320px;
  width: 100%;
  height: 80px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 60px;
  transition: background-color 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-color: var(--color-green);
  color: var(--color-white);
}

@media (max-width: 575.98px) {
  input[type="button"] {
    height: 60px;
    margin-top: 50px;
    font-size: 16px;
  }
}
