.kv {
  position: relative;
  padding: 0 5em 5em;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 30px;
  height: calc(100vh - 6em);
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
.kv.kv-visible {
  opacity: 1;
}
.kv__logo {
  grid-column: span 3/span 3;
  grid-row: span 5/span 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.kv__logo h1 {
  width: 80%;
  max-width: 320px;
  margin: 0 auto;
}
.kv__logo h2 {
  width: 70%;
  max-width: 280px;
  margin: 4em auto 0;
}
.kv .p1, .kv .p2, .kv .p3, .kv .p4, .kv .p5 {
  position: relative;
  overflow: hidden;
}
.kv .p1 img, .kv .p2 img, .kv .p3 img, .kv .p4 img, .kv .p5 img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.kv .p1 img.fade-out, .kv .p2 img.fade-out, .kv .p3 img.fade-out, .kv .p4 img.fade-out, .kv .p5 img.fade-out {
  opacity: 0;
}
.kv .p1 img.fade-in, .kv .p2 img.fade-in, .kv .p3 img.fade-in, .kv .p4 img.fade-in, .kv .p5 img.fade-in {
  opacity: 1;
}
.kv .p1 {
  grid-column: span 4/span 4;
  grid-row: span 3/span 3;
  grid-column-start: 4;
}
.kv .p2 {
  grid-column: span 3/span 3;
  grid-row: span 3/span 3;
  grid-column-start: 8;
}
.kv .p3 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 4;
}
.kv .p4 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 6;
  grid-row-start: 4;
}
.kv .p5 {
  grid-column: span 3/span 3;
  grid-row: span 2/span 2;
  grid-column-start: 8;
  grid-row-start: 4;
}
@media screen and (max-width: 1200px) {
  .kv {
    height: auto;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
    padding: 0 3em 3em;
  }
  .kv__logo {
    grid-column: span 7/span 7;
    grid-row: span 2/span 2;
  }
  .kv__logo h1 {
    max-width: 180px;
  }
  .kv__logo h2 {
    margin-top: 3em;
    max-width: 220px;
  }
  .kv .p1 {
    grid-column: span 4/span 4;
    grid-row: span 2/span 2;
    grid-row-start: 3;
  }
  .kv .p2 {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-column-start: 5;
    grid-row-start: 3;
  }
  .kv .p3 {
    grid-column: span 2/span 2;
    grid-row-start: 5;
  }
  .kv .p4 {
    grid-column: span 2/span 2;
    grid-column-start: 3;
    grid-row-start: 5;
  }
  .kv .p5 {
    grid-column: span 3/span 3;
    grid-column-start: 5;
    grid-row-start: 5;
  }
}
@media screen and (max-width: 600px) {
  .kv {
    padding: 1.6em;
    gap: 10px;
  }
  .kv__logo {
    margin-bottom: 2em;
  }
  .kv__logo h1 {
    max-width: 120px;
  }
  .kv__logo h2 {
    margin-top: 2em;
    max-width: 180px;
  }
}

.our-business {
  padding: 12em 0 8em;
  text-align: center;
}
.our-business .container {
  position: relative;
}
.our-business .container:before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  width: 100%;
  max-width: 1480px;
  height: 150%;
  background-color: #005EAC;
  z-index: 1;
}
.our-business h3 {
  position: relative;
  z-index: 2;
  font-size: 9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  top: -42px;
}
.our-business h3 span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
.our-business .flex {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
  z-index: 1;
  gap: 3em;
}
@media screen and (max-width: 1200px) {
  .our-business .container:before {
    max-width: 1100px;
  }
  .our-business h3 {
    font-size: 7rem;
  }
  .our-business h3 span {
    font-size: 1rem;
  }
  .our-business .flex {
    gap: 2em;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media screen and (max-width: 1024px) {
  .our-business {
    padding: 6em 0;
    margin: 6em auto;
  }
  .our-business .container {
    width: 100%;
    margin: auto;
  }
  .our-business .container:before {
    top: 20%;
    height: 120%;
    width: 100%;
    max-width: auto;
  }
  .our-business .container .flex {
    margin: 0 1.6em;
    gap: 1em;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .our-business h3 {
    font-size: 5rem;
  }
  .our-business h3 span {
    letter-spacing: 0;
    margin-top: 10px;
    font-size: 0.8rem;
  }
  .our-business .flex {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media screen and (max-width: 600px) {
  .our-business {
    margin: 3em auto 2em;
    padding: 0;
  }
  .our-business .container {
    padding: 4em 0 2em;
  }
  .our-business .container:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 16%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .our-business h3 {
    font-size: 2.8rem;
  }
  .our-business .flex {
    display: block;
  }
}

.section-block {
  margin: 26em auto 12em;
  position: relative;
}
.section-block:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: -25%;
  left: 0%;
  background-color: #005EAC;
  width: 65%;
  height: 120%;
}
.section-block:nth-child(odd):before {
  right: 0%;
  left: auto;
}
.section-block:nth-child(odd) .photo {
  right: auto;
  left: 0;
}
.section-block:nth-child(odd) .title {
  margin-left: auto;
  text-align: right;
}
.section-block:nth-child(odd) .title h4, .section-block:nth-child(odd) .title p {
  margin-left: auto;
  text-align: right;
}
.section-block .photo {
  position: absolute;
  z-index: 1;
  width: 62%;
  top: -10%;
  right: 0;
}
.section-block .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-block .title {
  position: relative;
  z-index: 999;
  color: #fff;
  width: 80%;
}
.section-block .title h3 {
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
}
.section-block .title h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2em 0 1em;
  line-height: 1.6;
  width: 60%;
}
.section-block .title p {
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2em;
  width: 60%;
}
.section-block .menu {
  background: #fff;
  margin: 8em auto 0;
  padding: 4em;
}
.section-block .menu .flex {
  gap: 3em;
}
@media screen and (max-width: 1200px) {
  .section-block {
    margin: 20em auto 8em;
  }
  .section-block .photo {
    width: 60%;
  }
  .section-block .title h3 {
    font-size: 7rem;
  }
  .section-block .title h4 {
    font-size: 1.2rem;
  }
  .section-block .title p {
    font-size: 1rem;
  }
  .section-block .menu {
    margin: 4em auto 0;
    padding: 3em;
  }
  .section-block .menu .flex {
    gap: 2em;
  }
}
@media screen and (max-width: 1024px) {
  .section-block {
    margin: 10em auto 4em;
    padding-bottom: 2em;
  }
  .section-block:before {
    top: -10%;
    height: 100%;
    width: 100%;
  }
  .section-block .photo {
    top: -7em;
    width: 55%;
  }
  .section-block .title {
    width: 100%;
  }
  .section-block .title h3 {
    font-size: 5rem;
  }
  .section-block .title h4 {
    width: 100%;
    font-size: 1rem;
  }
  .section-block .title p {
    width: 100%;
    font-size: 0.9rem;
  }
  .section-block .menu {
    margin: 2em auto 0;
    padding: 1.6em;
  }
  .section-block .menu .flex {
    gap: 1.6em;
  }
}
@media screen and (max-width: 600px) {
  .section-block {
    margin: 0 auto;
    padding: 4em 0 2em;
    background-color: #005EAC;
  }
  .section-block:before {
    display: none !important;
  }
  .section-block .photo {
    display: none;
  }
  .section-block .title h3 {
    font-size: 3rem;
  }
  .section-block .title h4 {
    margin: 1em 0 0.5em;
  }
  .section-block .title p {
    font-size: 0.8rem;
  }
  .section-block .menu {
    margin: 2em auto 0;
    padding: 1em;
  }
  .section-block .menu .flex {
    display: block;
  }
}

.information {
  margin: 0 auto;
}
.information .container h3 {
  line-height: 1.2;
  text-align: center;
  font-size: 4.8rem;
  color: #005EAC;
  margin-bottom: 1.2em;
}
.information .container h3 span {
  letter-spacing: 0px;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}
.information .container .info-list h4 {
  color: #005EAC;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1em;
  border-bottom: 1px solid #005EAC;
  padding-bottom: 0.5em;
}
.information .container .info-list ul {
  border-top: 1px solid #ddd;
  padding-top: 1.5em;
}
.information .container .info-list ul li {
  padding: 0 0.5em 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ddd;
}
.information .container .info-list ul li .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.information .container .info-list ul li .meta .date {
  margin-right: 1em;
  font-size: 0.9rem;
  color: #999;
  font-family: "Century Gothic", "Avenir-Book", sans-serif;
}
.information .container .info-list ul li .meta .category a {
  padding: 0.2em 0.8em;
  font-size: 0.7rem;
  color: #005EAC;
}
.information .container .info-list ul li .title {
  margin-top: 0.5em;
}
.information .container .info-list ul li .title a {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
.information .container .info-list ul li .title a:hover {
  opacity: 1;
  text-decoration: underline;
}
.information .container .info-list .more {
  margin: 2em auto 0;
  text-align: right;
}
.information .container .info-list .more .en {
  letter-spacing: 0;
  font-weight: 550;
}
.information .container .info-list .more .arrow {
  color: #005EAC;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.information .container .info-list .more .arrow .arrow-icon {
  margin-left: 1em;
  border-color: #005EAC;
}
.information .container .info-list .more .arrow .arrow-icon:before, .information .container .info-list .more .arrow .arrow-icon:after {
  background-color: #005EAC;
}
@media screen and (max-width: 1200px) {
  .information .container h3 {
    font-size: 4rem;
  }
  .information .container h3 span {
    font-size: 0.9rem;
  }
  .information .container .info-list h4 {
    font-size: 1.2rem;
  }
  .information .container .info-list ul li .meta .date {
    font-size: 0.8rem;
  }
  .information .container .info-list ul li .meta .category a {
    font-size: 0.6rem;
  }
  .information .container .info-list ul li .title a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .information .container h3 {
    font-size: 3rem;
  }
  .information .container h3 span {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .information {
    margin-top: 4em;
  }
  .information .container h3 {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
  .information .container h3 span {
    font-size: 0.6rem;
  }
  .information .container .info-list {
    margin-bottom: 4em;
  }
  .information .container .info-list h4 {
    text-align: center;
  }
  .information .container .info-list ul li .title {
    margin-top: 0;
  }
  .information .container .info-list ul li .title a {
    line-height: 1;
  }
}

.banners {
  margin: 10em auto;
}
.banners .container .flex {
  gap: 3em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.banners .container .flex .banner-item {
  width: 33.3333333333%;
}
.banners .container .flex .banner-item a img {
  width: 100%;
  height: auto;
}
.banners .container .flex .banner-item:last-child {
  position: relative;
  top: -27px;
}
.banners .container .flex .banner-item:last-child a.note {
  font-size: 0.9rem;
  display: block;
  margin-top: 12px;
  text-align: right;
  color: #005EAC;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .banners {
    margin: 5em auto;
  }
  .banners .container .flex {
    gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  .banners {
    margin: 3em auto 0;
  }
  .banners .container .flex {
    display: block;
  }
  .banners .container .flex .banner-item {
    width: 100%;
    margin-top: 2em;
  }
  .banners .container .flex .banner-item:last-child {
    margin-top: 1em;
  }
  .banners .container .flex .banner-item:last-child {
    top: 0;
  }
}/*# sourceMappingURL=index.css.map */