@charset "UTF-8";

:root {
  --main-color: rgb(86, 171, 255);
  --sub-color: rgb(5, 93, 255);
  --bg-gradation: linear-gradient(
    90deg,
    rgb(245, 250, 255),
    rgb(158, 206, 255)
  );
}

html {
  font-size: 100%;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  color: black;
}

a {
  color: black;
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

li {
  list-style-type: none;
}

.wrapper {
  width: 100%;
  max-width: calc(1080px + 30px);
  padding: 0 15px;
  margin-inline: auto;
}

.sp-newline {
  display: none;
}

@media screen and (max-width: 576px) {
  .sp-newline {
    display: block;
  }
}

/* ------------------------------------------------------------------ */
/* ローディング画面*/
/* ------------------------------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3fc7f3 0%, #0068de 64%);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 999999999999;
}

/* メーター */
.loader {
  text-align: center;
}

.loading-image {
  width: 250px;
  margin: 0 auto 16px;
  display: block;
}

.progress {
  width: 300px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: #e6ff02;
  transition: all 0.2s ease;
}

.progress-text {
  font-size: 1.5rem;
}

/* ローディング終了時のフェードアウト */
.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}

/* ----------------------------------------------------
header
-------------------------------------------------------*/
header {
  width: 100%;
  height: 80px;
  box-shadow: 0 1px 5px rgba(217, 217, 217, 0.851);
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 9999;
  background-color: white;
  transition: all 0.5s ease;
}

header.is-active {
  top: 0;
  transition: all 0.5s ease;
}

.header__wrapper {
  width: 100%;
  max-width: calc(1280px + 30px);
  height: 100%;
  padding: 0 15px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.header__logo {
  width: 250px;
  line-height: 1;
}

@media (any-hover: hover) {
  .header__logo:hover svg circle:nth-child(1) {
    transform: translate(-80px, 0px);
  }

  .header__logo:hover svg circle:nth-child(2) {
    transform: translate(-60px, 0px);
  }

  .header__logo:hover svg circle:nth-child(3) {
    transform: translate(-40px, 0px);
  }

  .header__logo:hover svg circle:nth-child(4) {
    transform: translate(-20px, 0px);
  }

  circle {
    transition: all 0.5s ease;
  }

  .header__logo:hover .cls-1 {
    fill: #f3ffbb;
    transition: all 0.5s ease;
  }

  .header__logo:hover .cls-2 {
    fill: #e8ff80;
    transition: all 0.5s ease;
  }

  .header__logo:hover .cls-3 {
    fill: #e0ff57;
    transition: all 0.5s ease;
  }

  .header__logo:hover .cls-4 {
    fill: #d0ff00;
    transition: all 0.5s ease;
  }
}

.header__pc-navi {
  height: 100%;
  margin-left: auto;
}

.header__pc-navi ul {
  height: 100%;
  display: flex;
  column-gap: 15px;
}

.header__pc-navi ul li {
  height: 100%;
  transition: all 0.3s;
}

.header__pc-navi ul li a {
  width: 100%;
  height: 100%;
  padding: 5px;
  display: grid;
  place-content: center;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .header__pc-navi ul li:hover {
    border-bottom: 3px solid rgb(37, 119, 227);
  }

  .header__pc-navi ul li a:hover {
    transform: translateY(-3px);
  }
}

.header__sp-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.header__sp-menu.is-opened {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
}

.header__sp-navi {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3fc7f3 0%, #0068de 64%);
  overflow-y: auto;
  display: grid;
  place-items: center;
}

.header__sp-logo {
  width: 200px;
  height: auto;
}

.header__sp-navi ul {
  width: fit-content;
  height: fit-content;
}

.header__sp-navi ul li {
  padding: 5px;
}

.header__sp-navi ul li a {
  color: white;
  font-size: 2rem;
}

.header__sp-button {
  font-size: 2rem;
  padding: 5px 25px;
  border-radius: 999px;
  background-color: white;
}

.header__sp-button .fa-circle-arrow-right {
  color: rgb(86, 171, 255);
}

.header__button {
  width: fit-content;
  color: white;
  border-radius: 999px;
  background-color: var(--sub-color);
  padding: 5px 15px 5px 25px;
  margin-left: 15px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.header__button .fa-circle-arrow-right {
  color: rgb(86, 171, 255);
  font-size: 1rem;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  margin-left: 8px;
  transition: all 0.5s ease;
}

@media (any-hover: hover) {
  .header__button:hover {
    background-color: rgb(86, 171, 255);
  }

  .header__button:hover .fa-circle-arrow-right {
    color: rgb(37, 119, 227);
  }
}

.hamburger {
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 999999999;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: none;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: rgb(255, 255, 255);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.hamburger span:nth-of-type(1) {
  top: 15px;
}

.hamburger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.hamburger span:nth-of-type(3) {
  bottom: 15px;
}

.hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  header {
    position: initial;
  }

  .header__logo {
    width: 200px;
  }

  .header__pc-navi {
    display: none;
  }

  .header__sp-navi.is-opened {
    display: block;
  }

  .header__button {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .header__sp-logo {
    width: 180px;
    top: 20px;
  }

  .header__sp-navi ul {
    gap: 10px;
    margin: 30px;
  }

  .header__sp-navi ul li a {
    font-size: 1.75rem;
  }

  .header__sp-button {
    font-size: 1.75rem;
    margin-top: 30px;
  }

  .header__sp-button .fa-circle-arrow-right {
    color: rgb(86, 171, 255);
  }
}

/* --------------------------------------------------
共通
-----------------------------------------------------*/
.box-shadow {
  box-shadow: 0 0 4px 4px rgb(232, 232, 232);
}

.home-common__heading {
  color: rgb(0, 0, 0);
  font-size: 3rem;
  font-family: "DM Serif Text", serif;
  font-weight: 500;
  text-align: center;
  position: relative;
}

.home-common__heading::after {
  content: "";
  width: 82px;
  height: 4px;
  background-color: var(--sub-color);
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin-inline: auto;
  border-radius: 9999px;
}

.common__button {
  width: fit-content;
  color: white;
  font-size: 1.5rem;
  border-radius: 999px;
  background-color: var(--sub-color);
  border: 2px solid var(--sub-color);
  padding: 5px 15px 5px 25px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.common__button .fa-circle-arrow-right {
  color: rgb(86, 171, 255);
  font-size: 1.5rem;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  margin-left: 8px;
  transition: all 0.5s ease;
}

@media (any-hover: hover) {
  .common__button:hover {
    color: var(--sub-color);
    background-color: rgb(255, 255, 255);
  }

  .common__button:hover .fa-circle-arrow-right {
    color: rgb(37, 119, 227);
  }
}

@media screen and (max-width: 576px) {
  .home-business__wrapper {
    padding-top: 80px;
  }

  .home-common__heading {
    font-size: 3rem;
  }

  .home-common__heading span {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------
mv
-----------------------------------------------------*/
.home-mv {
  width: 100%;
  padding-top: 80px;
}

.home-mv__top {
  width: 100%;
  height: 800px;
  position: relative;
}

.home-mv__slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-mv__slider .swiper {
  width: 100%;
  height: 50%;
}

.home-mv__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.home-mv__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-mv__slider img {
  object-fit: cover;
}

.home-mv__heading {
  width: fit-content;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

.home-mv__heading h2 {
  color: white;
  font-size: min(5.42vw, 104px);
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 0 0 4px black;
}

.home-mv__heading > span {
  color: white;
  font-size: min(1.25vw, 24px);
  text-align: center;
  display: block;
  text-shadow: 0 0 2px black;
}

.home-mv__bottom {
  width: 100%;
  height: 482px;
  display: grid;
  place-content: center;
  position: relative;
  overflow-x: hidden;
}

.home-mv__bottom--object1 {
  width: 156px;
  height: 156px;
  background-image: url("../images/Polygon\ 3.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 117px;
  left: 3.1%;
}

.home-mv__bottom--object2 {
  width: 116px;
  height: 116px;
  background-image: url("../images/Rectangle\ 35.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 21px;
  left: 13.7%;
}

.home-mv__bottom--object3 {
  width: 194px;
  height: 194px;
  background-image: url("../images/Polygon\ 2.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 21px;
  right: 14.9%;
}

.home-mv__bottom--object4 {
  width: 103px;
  height: 103px;
  background-image: url("../images/Polygon\ 4.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 43px;
  right: 19%;
}

.home-mv__bottom--object5 {
  width: 177px;
  height: 177px;
  background-image: url("../images/Rectangle\ 36.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 124px;
  right: 4.8%;
}

.home-mv__bottom > div {
  color: black;
  font-size: 3rem;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {
  .home-mv {
    padding-top: 0;
  }

  .home-mv__heading {
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .home-mv__bottom > div {
    font-size: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .home-mv__top {
    height: 500px;
  }

  .home-mv__heading {
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .home-mv__heading h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 2;
  }

  .home-mv__heading > span {
    font-size: 1rem;
  }

  .home-mv__bottom {
    height: 482px;
  }

  .home-mv__bottom--object1 {
    width: 110px;
    height: 110px;
    top: 68px;
    left: -5px;
  }

  .home-mv__bottom--object2 {
    width: 95px;
    height: 95px;
    bottom: 53px;
    left: 0;
  }

  .home-mv__bottom--object3 {
    width: 100px;
    height: 100px;
    top: 35px;
    right: 20px;
  }

  .home-mv__bottom--object4 {
    width: 88px;
    height: 88px;
    bottom: 20px;
    right: 118px;
  }

  .home-mv__bottom--object5 {
    width: 82px;
    height: 82px;
    bottom: 84px;
    right: -32px;
  }

  .home-mv__bottom > div {
    font-size: 1.5rem;
  }
}

/* -----------------------------------------------------------
business
--------------------------------------------------------------*/
.home-business {
  width: 100%;
}

.home-business__wrapper {
  padding-top: 16px;
  padding-bottom: 27px;
}

.home-business__container {
  padding-top: 40px;
  display: grid;
  grid-template:
    "top-left --- top-right" auto
    "left     --- top-right" auto
    "left     --- bottom-right" auto
    "left     --- bottom-rihgt" auto
    / 5fr 8% 3fr;
  row-gap: 40px;
}

.home-business__container > p {
  grid-area: top-left;
  font-size: 1.5rem;
}

.home-business__card {
  height: fit-content;
  background-color: rgb(244, 244, 244);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home-business__card dt {
  order: 2;
  color: var(--sub-color);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 24px 0 24px;
}

.home-business__card dt::before {
  content: "";
  display: block;
  color: rgb(168, 199, 254);
  font-style: italic;
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 8px;
}

.home-business__card:nth-of-type(1) dt::before {
  content: "01";
}

.home-business__card:nth-of-type(2) dt::before {
  content: "02";
}

.home-business__card:nth-of-type(3) dt::before {
  content: "03";
}

.home-business__card dt img {
  width: 240px;
}

.home-business__card dd:nth-of-type(1) {
  order: 3;
  font-size: 1.25rem;
  padding: 8px 24px 24px 24px;
}

.home-business__card dd:nth-of-type(2) {
  order: 1;
  height: auto;
}

.home-business__card dd:nth-of-type(2) img {
  object-fit: cover;
}

.home-business__card dd:nth-of-type(3) {
  order: 4;
  display: flex;
  align-items: center;
  margin: 0 0 16px 16px;
}

.home-business__card dd:nth-of-type(3) a {
  color: black;
  font-size: 1.25rem;
  display: inline-block;
  position: relative;
}

.home-business__card dd:nth-of-type(3) a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  transform: scaleX(0);
  transform-origin: center left;
  transition: all 0.2s ease;
}

.home-business__card dd:nth-of-type(3) a span {
  width: 48px;
  height: 48px;
  border: 2px solid black;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  bottom: -10px;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.home-business__card dd:nth-of-type(3) a span::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.home-business__card dd:nth-of-type(3) a span::after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .home-business__card dd:nth-of-type(3) a:hover::after {
    transform: scaleX(1);
  }

  .home-business__card dd:nth-of-type(3) a:hover span {
    background-color: rgb(37, 119, 227);
    border: initial;
  }

  .home-business__card dd:nth-of-type(3) a:hover span::before {
    background-color: rgb(255, 255, 255);
  }

  .home-business__card dd:nth-of-type(3) a:hover span::after {
    background-color: rgb(255, 255, 255);
  }
}

.home-business__container--left {
  grid-area: left;
}

.home-business__container--righttop {
  grid-area: top-right;
}

.home-business__container--rightbottom {
  grid-area: bottom-right;
}

.home-business__bottom {
  width: 100%;
  height: auto;
  padding: 90px 0;
  background-color: #699eff;
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.home-business__bottom::before {
  content: "";
  width: 663px;
  height: 663px;
  display: block;
  background-image: url("../images/Polygon\ 5.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -72px;
  left: 7.6%;
  z-index: -1;
}

.home-business__bottom::after {
  content: "";
  width: 275px;
  height: 275px;
  display: block;
  background-image: url("../images/Rectangle\ 40.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -51px;
  right: 6.4%;
  z-index: -1;
}

.home-business__inner {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14.7%;
  margin-inline: auto;
}

.home-business__inner img {
  width: 100%;
  border-radius: 20px;
}

.home-business__inner--left {
  color: white;
  font-size: 1.5rem;
}

.home-business__inner--left img {
  width: 100%;
  margin-top: 18px;
}

.home-business__inner--right {
  color: white;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column-reverse;
  margin-top: -66px;
}

.home-business__inner--right p {
  margin-top: 53px;
}

@media screen and (max-width: 1024px) {
  .home-business__inner {
    width: 80%;
  }
}

@media screen and (max-width: 576px) {
  .home-business__wrapper {
    padding-top: 8px;
  }

  .home-business__container {
    grid-template:
      "top-left" auto
      "left" auto
      "top-right" auto
      "bottom-right" auto
      / 1fr;
  }

  .home-business__container > p {
    font-size: 1rem;
  }

  .home-business__card dd:nth-of-type(1) {
    font-size: 1rem;
  }

  .home-business__bottom::before {
    width: 327px;
    height: 327px;
    top: -40px;
    left: -24px;
  }

  .home-business__bottom::after {
    width: 182px;
    height: 182px;
    bottom: -72px;
    right: 0;
  }

  .home-business__inner {
    width: 95%;
    flex-direction: column;
    gap: 63px;
  }

  .home-business__inner--left {
    font-size: 1rem;
  }

  .home-business__inner--left img {
    margin-top: 24px;
  }

  .home-business__inner--right {
    font-size: 1rem;
    margin-top: 0;
    flex-direction: column;
  }

  .home-business__inner--right p {
    margin-top: 0;
  }

  .home-business__inner--right img {
    margin-top: 24px;
  }
}

/* -------------------------------------------------------
concept
----------------------------------------------------------*/
.home-concept {
  position: relative;
}

.home-concept::after {
  content: "";
  display: inline-block;
  box-shadow: 0 0 250px 223px #699eff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  width: 0.1px;
  height: 0.1px;
}

.home-concept__wrapper {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 142px;
}

.home-concept__wrapper p {
  width: 38.6%;
  font-size: 1rem;
  margin-top: 52px;
  margin-left: 57px;
}

.home-concept__container {
  grid-area: center;
  margin-top: 28px;
}

.home-concept__container ul {
  display: flex;
  justify-content: center;
}

.home-concept__container ul li {
  width: min(18.5%, 230px);
  aspect-ratio: 1 / 1;
  color: white;
  text-align: center;
  display: grid;
  justify-content: center;
  align-content: center;
  background-image: url("../images/Rectangle\ 41.png");
  background-position: center;
  background-size: contain;
  margin-left: -16px;
}

.home-concept__container ul li span {
  display: block;
}

@media screen and (max-width: 1024px) {
  .home-concept__container ul {
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .home-concept__container ul li {
    width: 150px;
  }
}

@media screen and (max-width: 576px) {
  .home-concept__wrapper {
    padding-top: 81px;
    padding-bottom: 20px;
  }

  .home-concept__wrapper p {
    width: 100%;
    font-size: 1rem;
    margin-left: initial;
    margin-top: 24px;
  }

  .home-concept__container ul {
    width: 100%;
  }

  .home-concept__container ul li {
    width: 150px;
    margin: 0 -16px;
  }
}

/* --------------------------------------------------------------------
history
----------------------------------------------------------------------*/

.home-history__wrapper {
  width: 100%;
  padding: 80px 15px 0;
  margin-inline: auto;
}

.home-history__container {
  width: 100%;
  display: flex;
  gap: 9.6%;
  padding: 30px 43px;
  margin-top: 62px;
  border-radius: 16px;
  background-color: #e6f3ff;
  position: relative;
}

.home-history__container::before {
  content: "";
  width: 398px;
  height: 405px;
  background-image: url("../images/Vector\ 4.png");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 39px;
  left: 0;
}

.home-history__container::after {
  content: "";
  width: 264px;
  height: 269px;
  background-image: url("../images/Vector\ 5.png");
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0;
  left: 158px;
}

.home-history__container > p {
  width: 42.2%;
  margin-top: 175px;
}

.home-history__inner {
  flex: 1;
}

.home-history__inner ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.home-history__inner ul::before {
  content: "";
  width: 4px;
  height: calc(100% - 8px);
  background-color: var(--sub-color);
  border-radius: 9999px;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 89px;
}

.home-history__box {
  display: grid;
  grid-template-columns: 50px 80px 1fr;
}

.home-history__year {
  width: 50px;
  color: var(--sub-color);
  font-style: italic;
  margin: auto;
}

.home-history__circle {
  width: 35px;
  height: 35px;
  display: block;
  background-image: url("../images/Polygon 7.png");
  background-position: center;
  background-size: contain;
  margin: auto;
  position: relative;
  z-index: 1;
}

.home-history__desc {
  padding: 15px;
  border-radius: 16px;
  background-color: white;
}

@media screen and (max-width: 1024px) {
  .home-history__container {
    padding: 40px;
  }

  .home-history__inner {
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  .home-history__container {
    flex-direction: column;
    gap: 0;
    padding: 0 15px 75px;
    margin-top: 23px;
    overflow: hidden;
  }

  .home-history__container > p {
    width: 100%;
    margin-top: 78px;
  }

  .home-history__inner ul {
    gap: 23px;
  }

  .home-history__inner {
    margin-top: 40px;
  }

  .home-history__inner ul::before {
    left: 58px;
  }

  .home-history__box {
    grid-template-columns: 40px 40px 1fr;
  }
}

/* -----------------------------------------------------
achievement
--------------------------------------------------------*/
.home-achievement {
  width: 100%;
  margin-top: 74px;
  background: linear-gradient(to top right, #a7daff, #0059ff);
}

.home-achievement__wrapper {
  width: 100%;
  max-width: calc(1200px + 30px);
  padding: 80px 15px 0;
  margin-inline: auto;
}

.home-achievement__wrapper .home-common__heading {
  color: white;
}

.home-achievement__wrapper .home-common__heading::after {
  background-color: white;
}

.home-achievement__container {
  padding: 80px;
  border-radius: 16px;
  display: flex;
  gap: 8.1%;
  justify-content: center;
}

.home-achievement__container > p {
  flex: 1;
  color: white;
  margin-top: 16px;
}

.home-achievement__inner {
  width: 57%;
}

.home-achievement__inner ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.home-achievement__box {
  width: 100%;
  padding: 16px;
  border: 5px solid var(--sub-color);
  border-radius: 16px;
  background-color: white;
}

.home-achievement__box > span:nth-of-type(1) {
  color: rgb(0, 0, 0);
  font-size: 1.25rem;
  border-bottom: 2px solid rgb(0, 0, 0);
  display: block;
}

.home-achievement__box > div {
  color: rgb(0, 0, 0);
  font-size: 0.75rem;
  text-align: center;
}

.home-achievement__box > div span {
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 8px;
}

.home-achievement__box:nth-of-type(3) > div span {
  letter-spacing: 4px;
}

.home-achievement__box > span:nth-of-type(2) {
  color: rgb(0, 0, 0);
  font-size: 0.75rem;
  text-align: right;
  display: block;
}

@media screen and (max-width: 1024px) {
  .home-achievement__container {
    padding: 40px;
    flex-direction: column-reverse;
    gap: 0;
  }

  .home-achievement__inner {
    width: 90%;
    margin-top: 40px;
  }

  .home-achievement__inner ul {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    place-items: center;
  }

  .home-achievement__box {
    max-width: 300px;
  }
}

@media screen and (max-width: 576px) {
  .home-achievement__inner {
    margin-top: 40px;
  }

  .home-achievement__inner {
    width: 95%;
  }
  .home-achievement__inner ul {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* ----------------------------------------------------
people
-------------------------------------------------------*/
.home-people__wrapper {
  padding-top: 80px;
}

.home-people__buttons {
  width: fit-content;
  height: fit-content;
  margin-left: auto;
  margin-right: 24px;
}

.home-people__button {
  width: 56px;
  height: 56px;
}

.home-people__container {
  margin-top: 32px;
  overflow: hidden;
}

.home-people__card {
  width: 100%;
  height: 327px;
  border: 2px solid black;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.home-people__image {
  width: 100%;
  height: 218px;
  overflow: hidden;
  position: relative;
}

.home-people__image > div {
  width: 100%;
  height: 100%;
}

.home-people__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.5s ease;
}

@media (any-hover: hover) {
  .home-people__card:hover {
    opacity: 0.8;
  }

  @media (any-hover: hover) {
    .home-people__card:hover .home-people__image img {
      transform: scale(1.1);
    }
  }
}

.home-people__image span {
  width: 160px;
  height: 34px;
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  letter-spacing: 3px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 16px;
  display: block;
  background-color: var(--sub-color);
}

.home-people__sentence {
  font-size: 1rem;
  padding: 8px;
  margin-top: 8px;
}

.home-people__buttons {
  margin-top: 24px;
}

@media screen and (max-width: 576px) {
  .home-people__wrapper {
    padding: 80px 16px 0;
  }

  .home-people__card {
    height: 354px;
  }
}

/* ---------------------------------------------------
ceo
------------------------------------------------------*/
.home-ceo__wrapper {
  padding-top: 80px;
}

.home-ceo__container {
  width: 100%;
  aspect-ratio: 5/ 2;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.home-ceo__sentence {
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgb(232, 232, 232) 90%,
    rgba(255, 255, 255, 0)
  );
  display: grid;
  grid-template:
    "left --- top-right" auto
    "left --- bottom-right" auto
    / 60px 5% 1fr;
  place-content: center;
  padding-left: 40px;
  padding-right: 36px;
}

.home-ceo__icon {
  grid-area: left;
  width: 56px;
  height: 56px;
  border: 2px solid black;
  border-radius: 50%;
  display: block;
  margin: auto;
  position: relative;
  transition: all 0.3s ease;
}

.home-ceo__icon::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.home-ceo__icon::after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .home-ceo__container:hover .home-ceo__icon {
    background-color: rgb(37, 119, 227);
    border: initial;
  }

  .home-ceo__container:hover .home-ceo__icon::before {
    background-color: rgb(255, 255, 255);
  }

  .home-ceo__container:hover .home-ceo__icon::after {
    background-color: rgb(255, 255, 255);
  }

  .home-ceo__container:hover .home-ceo__image img {
    transform: scale(1.1);
  }
}

.home-ceo__message {
  grid-area: top-right;
  font-size: 2rem;
}

.home-ceo__sentence p {
  grid-area: bottom-right;
  margin-top: 16px;
}

.home-ceo__image {
  width: 50%;
  height: 100%;
  margin-left: auto;
}

.home-ceo__image img {
  object-fit: cover;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .home-ceo__container {
    width: 80%;
    aspect-ratio: initial;
    height: 500px;
    margin-inline: auto;
  }

  .home-ceo__container a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
  }

  .home-ceo__sentence {
    width: 100%;
    position: initial;
    background: initial;
    background-color: rgb(232, 232, 232);
    grid-template:
      "top-right top-right" auto
      "bottom-right bottom-right" auto
      "--- left" auto
      / 80% 1fr;
    place-content: center;
    padding: 36px;
  }

  .home-ceo__icon {
    margin-left: auto;
  }

  .home-ceo__message {
    font-size: 1.5rem;
  }

  .home-ceo__image {
    width: 100%;
    height: 50%;
    margin-left: initial;
  }

  .home-ceo__image img {
    object-position: top;
  }
}

@media screen and (max-width: 576px) {
  .home-ceo__wrapper {
    padding-top: 40px;
  }

  .home-ceo__container {
    width: 90%;
  }

  .home-ceo__sentence {
    padding: 24px;
  }

  .home-ceo__message {
    font-size: 1.25rem;
  }
}

/* -------------------------------------------------------
news
----------------------------------------------------------*/
.home-news__wrapper {
  padding-top: 80px;
}

.home-news__container {
  margin-top: 40px;
}

.home-news__inner {
  width: 100%;
}

.home-news__inner li {
  padding: 12px 0;
  position: relative;
  border-bottom: 2px solid black;
}

.home-news__inner li::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../images/Group.png");
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: all 0.3s ease;
}

.home-news__inner li a {
  width: 100%;
  padding: 16px 32px 16px 8px;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto;
}

@media (any-hover: hover) {
  .home-news__inner li a:hover > span {
    text-decoration: underline;
  }

  .home-news__inner li a:hover > div {
    text-decoration: underline;
  }

  .home-news__inner li:hover::after {
    right: -8px;
  }
}

.home-news__inner li a > span {
  font-size: 1.25rem;
  display: block;
}

.home-news__inner li a > div {
  font-size: 1.25rem;
}

.home-news__button {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 16px 0 16px auto;
}

.home-news__button a {
  color: black;
  font-size: 1.25rem;
  display: block;
  position: relative;
}

.home-news__button a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  transform: scaleX(0);
  transform-origin: center left;
  transition: all 0.2s ease;
}

.home-news__button a span {
  width: 48px;
  height: 48px;
  border: 2px solid black;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  bottom: -10px;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.home-news__button a span::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.home-news__button a span::after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: black;
  display: block;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .home-news__button a:hover::after {
    transform: scaleX(1);
  }

  .home-news__button a:hover span {
    background-color: rgb(37, 119, 227);
    border: initial;
  }

  .home-news__button a:hover span::before {
    background-color: rgb(255, 255, 255);
  }

  .home-news__button a:hover span::after {
    background-color: rgb(255, 255, 255);
  }
}

@media screen and (max-width: 576px) {
  .home-news__inner li {
    padding: 8px 0;
  }

  .home-news__inner li a {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }

  .home-news__inner li a > span {
    font-size: 1rem;
  }

  .home-news__inner li a > div {
    font-size: 1rem;
  }

  .home-news__button a span {
    margin-right: 8px;
  }
}

/* --------------------------------------------------------
recruit
----------------------------------------------------------*/
.home-recruit__wrapper {
  width: 100%;
  height: 400px;
  position: relative;
}

.home-recruit__container {
  width: 100%;
  position: absolute;
  top: 30%;
  left: 0;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
}

.home-recruit__container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/recruit.jpeg");
  background-position: center -50px;
  background-size: cover;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.home-recruit__container::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #87d7f1 0%, #0068de 100%);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-recruit__container h2 {
  color: white;
  font-family: "Lugrasimo", serif;
  font-size: 5rem;
}

.home-recruit__container p {
  color: white;
  font-size: 2rem;
  margin-top: 56px;
}

.home-recruit__container .common__button {
  color: var(--sub-color);
  margin-top: 56px;
  background-color: white;
}

@media (any-hover: hover) {
  .home-recruit__container .common__button:hover {
    color: white;
    background-color: var(--sub-color);
  }

  .common__button:hover .fa-circle-arrow-right {
    color: white;
    background-color: var(--sub-color);
  }
}

@media screen and (max-width: 1024px) {
  .home-recruit__wrapper {
    height: 320px;
  }

  .home-recruit__container {
    width: 90%;
    right: 0;
    margin: 0 auto;
    padding: 40px;
  }

  .home-recruit__container h2 {
    font-size: 2.5rem;
  }

  .home-recruit__container p {
    font-size: 1.5rem;
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  .home-recruit__wrapper {
    height: 200px;
  }

  .home-recruit__container {
    padding: 24px;
  }

  .home-recruit__container h2 {
    font-size: 2rem;
    text-align: center;
  }

  .home-recruit__container p {
    font-size: 1.25rem;
    margin-top: 24px;
  }

  .home-recruit__container .common__button {
    font-size: 1rem;
    margin-top: 24px;
  }
}

/* -------------------------------------------------------
footer
----------------------------------------------------------*/

footer {
  width: 100%;
  padding-bottom: 40px;
}

.footer__bg {
  width: 100%;
  position: relative;
  background-color: #d9d9d9;
  padding-top: 320px;
}

.footer__bg::before {
  content: "";
  width: 100%;
  height: 156px;
  background-image: url("../images/footertop.svg");
  background-position: center;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  top: -155px;
  left: 0;
  z-index: 0;
}

.footer__bg::after {
  content: "";
  width: 100%;
  height: 156px;
  background-image: url("../images/footerbottom.svg");
  background-position: center;
  background-size: 100% 100%;
  display: block;
  position: absolute;
  bottom: -154px;
  left: 0;
  z-index: 0;
}

.footer__wrapper {
  width: 100%;
  max-width: calc(1200px + 30px);
  padding: 0 15px;
  margin-inline: auto;
}

.footer__container {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
}

.footer__logo {
  width: 250px;
  height: fit-content;
  line-height: 1;
}

.footer__logo a {
  width: 100%;
  display: block;
}

.footer__info {
  font-size: 1.25rem;
}

.footer__navi {
  padding: 16px;
  border-radius: 16px;
  background-color: #ffffff;
}

.footer__navi ul {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  gap: 16px;
}

.footer__navi ul li {
  width: fit-content;
  margin: 0 auto;
}

.footer__navi ul li a {
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  text-align: center;
  display: block;
}

footer small {
  text-align: center;
  padding: 16px 0;
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 84px;
}

.scroll-top {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 2px solid black;
  background-color: white;
  display: grid;
  place-items: center;
  position: fixed;
  right: 150px;
  bottom: -150px;
  z-index: 99999;
  transition: all 0.5s ease;
}

.scroll-top.is-opened {
  right: 150px;
  bottom: 50px;
}

.scroll-top .fa-caret-up {
  font-size: 1.5rem;
  color: black;
}

@media screen and (max-width: 1024px) {
  .footer__bg {
    padding-top: 160px;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
    right: 24px;
  }

  .scroll-top.is-opened {
    right: 24px;
    bottom: 24px;
  }
}

@media screen and (max-width: 576px) {
  .footer__bg {
    padding-top: 240px;
  }
  .footer__container {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    row-gap: 24px;
  }

  .footer__navi ul {
    grid-template-columns: auto auto;
    grid-template-rows: initial;
  }
}
