@charset "UTF-8";
.title-wrapper {
  position: relative;
  border-bottom: #37aa05 5px solid;
  margin-bottom: 5vw;
  margin-top: 5vw;
}
.title-wrapper .title {
  display: flex;
  flex-direction: column;
  padding-left: 10vw;
}
.title-wrapper .title h6 {
  color: #37aa05;
}
.title-wrapper h1 {
  position: absolute;
  top: 0;
  left: 0;
  color: #002331;
  text-align: left;
  display: inline-block;
  filter: blur(6px);
  opacity: 0.2;
}

.more-btn {
  background-color: #056baa;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 1% 4%;
  margin-top: 5vw;
}
.more-btn h6 {
  color: #fff;
}
.more-btn:hover {
  background-color: #82cddd;
}
.more-btn svg {
  width: 67px;
  color: white;
  padding-left: 10px;
}

.top-section {
  height: 810px;
}
.top-section .top-image {
  position: relative;
}
.top-section .top-image h3 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
  letter-spacing: 0.3em;
}
.top-section video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 810px;
  width: 100%;
}

.link-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background-image: url(../image/link-section-back.png);
  height: 100%;
  width: 100%;
  background-size: cover;
}
.link-section p {
  position: relative;
  z-index: 10;
}
.link-section .content-wrapper {
  align-items: center;
  flex-direction: row;
  padding: 5%;
  justify-content: space-around;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.link-section h3 {
  font-family: "Mitr";
  font-style: normal;
  font-weight: 400;
}
.link-section .office {
  position: relative;
}
.link-section .office .g-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2%;
  justify-items: stretch;
  align-items: center;
  justify-content: center;
}
.link-section .office::before {
  content: "";
  position: absolute;
  background-color: #37aa05;
  mix-blend-mode: overlay;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.link-section .office a {
  color: #fff;
}
.link-section .recruit {
  position: relative;
  color: #fff;
}
.link-section .recruit::before {
  content: "";
  position: absolute;
  background-color: #056baa;
  mix-blend-mode: overlay;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-section .white-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.about-section .white-card .hed-text {
  background-color: white;
  text-align: center;
  margin: auto;
}
.about-section .white-card .hed-text .wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 2vw;
}
.about-section .content-set {
  display: flex;
  width: 100%;
  transition: all 0.6s;
}
.about-section .content-set .content {
  position: relative;
  flex: 1;
  transition: flex 0.5s ease-in-out;
  min-width: 300px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.about-section .content-set .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #696969;
  mix-blend-mode: multiply; /* 背景にのみ適用 */
  z-index: 1; /* 背景を下に */
}
.about-section .content-set .content .card {
  position: absolute;
  display: flex;
  background-size: cover;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: flex-end;
  flex-direction: column;
  padding: 5%;
  gap: 10px;
  width: 100%;
  align-items: center;
  bottom: 0;
}
.about-section .content-set .content .card .title {
  z-index: 2;
}
.about-section .content-set .content .card .title p {
  letter-spacing: 0.2em;
  color: #fff;
  font-weight: 700;
}
.about-section .content-set .content .card .text {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 430px;
}
.about-section .content-set .content .card .text p {
  color: white;
}
.about-section .content-set .content .card .text a {
  background-color: #fff;
  color: #091d3a;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 20px;
}
.about-section .content-set .content .card .text a svg {
  width: 9px;
}
.about-section .content-set .content .card .text a:hover {
  background-color: #091d3a;
  color: #fff;
}
.about-section .content-set .content.one {
  background: url(../image/top-slide01.png) no-repeat center center;
  background-size: inherit;
}
.about-section .content-set .content.two {
  background: url(../image/top-slide02.png) no-repeat center center;
  background-size: inherit;
}
.about-section .content-set .content.three {
  background: url(../image/top-slide03.png) no-repeat center center;
  background-size: inherit;
}
.about-section .content-set .content.active {
  flex-grow: 4;
  min-height: 540px;
}
.about-section .content-set .content.active:before {
  content: none;
}
.about-section .content-set .content.active .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #696969;
  mix-blend-mode: multiply; /* 背景にのみ適用 */
  z-index: 1; /* 背景を下に */
}
.about-section .content-set .content.active .card .title {
  z-index: 2;
}
.about-section .content-set .content.active .card .text {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.office-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: #f2f2f2;
}
.office-section .title-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 15vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  padding-left: 30vw;
}
.office-section .title-wrapper .title {
  text-align: right;
}
.office-section .title-wrapper .title h6 {
  color: #37aa05;
}
.office-section .title-wrapper h1 {
  left: auto;
  right: 0;
}
.office-section .video-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}
.office-section .video-wrapper .video-card {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.office-section .video-wrapper .video-card iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.office-section .more-btn {
  color: #056baa;
}
.office-section .more-btn:hover {
  background-color: #82cddd;
}

.catch-section {
  background-image: url(../image/catch-back.png);
  background-size: cover;
  width: 100%;
  height: 100%;
  color: #fff;
  max-height: 904px;
  padding-top: 25vw;
  padding-bottom: 10vw;
  padding-left: 3vw;
}
.catch-section h1 {
  margin-bottom: 10px;
}
.catch-section h6 {
  font-family: ヒラギノ角ゴ ProN W3;
  letter-spacing: 0.5rem;
  line-height: 2.5rem;
}

.message-section {
  padding: 5vw;
}
.message-section .message-box {
  box-shadow: 0px 0px 9.9px rgba(0, 0, 0, 0.25);
  padding-top: 5vw;
}
.message-section .message-box .title-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 15vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 0;
}
.message-section .message-box .title-wrapper .title {
  text-align: left;
  padding-right: 10vw;
}
.message-section .message-box .title-wrapper .title h6 {
  color: #37aa05;
}
.message-section .message-box .title-wrapper h1 {
  left: auto;
  right: 5vw;
}
.message-section .message-box .wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  justify-items: stretch;
  align-items: end;
  padding: 5vw;
  gap: 4vw;
}
.message-section .message-box .wrapper .ceo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.message-section .message-box .wrapper .text-set {
  max-width: 750px;
  margin-bottom: 1vw;
}
.message-section .message-box .wrapper .text-set .text {
  margin-bottom: 2vw;
}
.message-section .message-box .wrapper .ceo-name {
  display: flex;
  gap: 5vw;
  align-items: center;
  margin-bottom: 2vw;
}
.message-section .message-box .wrapper .ceo-name p,
.message-section .message-box .wrapper .ceo-name h6 {
  font-family: "FP-ヒラギノ角ゴ ProN W3";
}
.message-section .message-box .wrapper .more-btn {
  margin: 0;
  background-color: #37aa05;
}
.message-section .message-box .wrapper .more-btn:hover {
  background-color: #ddff88;
}
.message-section .message-box .wrapper .more-btn:hover h6 {
  color: #37aa05;
}
.message-section .message-box .wrapper .more-btn:hover svg {
  color: #37aa05;
}

.recruit-section {
  padding: 0 10vw;
}
.recruit-section .title-wrapper {
  text-align: center;
  border-color: #056baa;
}
.recruit-section .title-wrapper .title {
  padding-left: 0;
}
.recruit-section .title-wrapper .title h6 {
  color: #056baa;
}
.recruit-section .title-wrapper h1 {
  left: 30%;
}
.recruit-section .wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 1vw;
}
.recruit-section .wrapper .card {
  text-align: center;
  color: black;
  transition: transform 0.2s ease-out, filter 0.2s ease-out;
}
.recruit-section .wrapper .card h6 {
  font-family: "FP-ヒラギノ角ゴ ProN W3";
}
.recruit-section .wrapper .card:hover {
  transform: scale(1.1) rotate(3deg);
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .title-wrapper h1 {
    filter: blur(3px);
  }
  .more-btn {
    padding: 3% 10%;
    gap: 2vw;
  }
  .top-section {
    height: 492px;
  }
  .top-section video {
    height: 492px;
  }
  .link-section {
    grid-template-columns: auto;
  }
  .link-section .content-wrapper {
    padding: 1%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }
  .link-section h3 {
    padding-left: 5vw;
  }
  .about-section .white-card {
    grid-template-columns: auto;
  }
  .about-section .white-card .hed-text img {
    display: none;
  }
  .about-section .content-set {
    flex-direction: column;
  }
  .about-section .content-set .content {
    flex-grow: 4;
    max-height: 114px;
    min-height: 250px;
    height: 100%;
  }
  .about-section .content-set .content:before {
    content: none;
  }
  .about-section .content-set .content .card {
    justify-content: center;
    height: 100%;
  }
  .about-section .content-set .content .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #696969;
    mix-blend-mode: multiply;
    z-index: 1;
  }
  .about-section .content-set .content .card .title {
    z-index: 2;
  }
  .about-section .content-set .content .card .title p {
    font-size: 32px;
  }
  .about-section .content-set .content .card .text {
    z-index: 2;
    opacity: 1;
    visibility: visible;
  }
  .about-section .content-set .content .card .text a {
    margin-top: 20px;
  }
  .about-section .content-set .content .card .text p {
    font-size: 16px;
  }
  .about-section .content-set .content.active {
    flex-grow: 4;
    max-height: 114px;
    min-height: 250px;
    height: 100%;
  }
  .about-section .content-set .content.active:before {
    content: none;
  }
  .about-section .content-set .content.active .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #696969;
    mix-blend-mode: multiply; /* 背景にのみ適用 */
    z-index: 1; /* 背景を下に */
  }
  .about-section .content-set .content.active .card .title {
    z-index: 2;
  }
  .about-section .content-set .content.active .card .title p {
    font-size: 32px;
  }
  .about-section .content-set .content.active .card .text {
    z-index: 2;
    opacity: 1;
    visibility: visible;
  }
  .about-section .content-set .content.active .card .text p {
    font-size: 16px;
  }
  .office-section .video-wrapper {
    display: flex;
    flex-direction: column;
  }
  .office-section .video-wrapper .video-card {
    aspect-ratio: auto;
  }
  .office-section .video-wrapper .video-card iframe {
    aspect-ratio: 16/9;
  }
  .catch-section {
    padding-top: 60vw;
  }
  .message-section {
    padding: 1vw;
  }
  .message-section .message-box .title-wrapper {
    padding-right: 0%;
  }
  .message-section .message-box .wrapper {
    grid-template-columns: auto;
  }
  .message-section .message-box .wrapper .more-btn {
    margin: auto;
  }
  .recruit-section .wrapper {
    grid-template-columns: auto;
    text-align: center;
  }
}/*# sourceMappingURL=index.css.map */