/* font-family: 'Montserrat', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Roboto', sans-serif; */

.nav-wrap {
  gap: 24px;
  margin-left: auto;
}
.logo {
  width: 100%;
  max-width: 120px;
}
.main-visual {
  width: 100%;
  padding: 80px 0 40px;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  position: relative;
}
.main-visual-img-wrapper {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 20px #8a8a8a;
}
.main-visual-button {
  position: absolute;
  top: 80px;
  right: 30px;
  font-size: 24px;
}
.badge-wrapper {
  background-color: aliceblue;
  padding: 10px 4px;
}
.lg-image-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.container-space {
  padding-top: 60px;
  padding-bottom: 40px;
}

.midashi-h2 {
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 500;
  font-size: 38px;
  padding: 20px 4px;
}
.midashi-h2-space {
  margin-bottom: 30px;
}
.midashi-menu {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 50px;
  padding: 30px 4px 20px;
  color: #6b6b6b;
}

@media (max-width: 768px) {
  .container-space {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .midashi-h2-space {
    margin-bottom: 15px;
  }
  .midashi-h2 {
    font-size: 18px;
  }
  .midashi-menu {
    font-size: 30px;
  }
}
.top-link-wrapper {
  display: flex;
  gap: 20px;
}
.top-link-block {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-link-image {
  max-width: 200px;
}
@media (max-width: 991.98px) {
  .top-link-wrapper {
    flex-direction: column;
  }
}

.grid-menu-parent {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.grid-menu {
  position: relative;
  overflow: hidden;
}

.grid-menu:hover .grid-menu-item-img {
  transform: scale(1.2);
  transition: all 0.4s;
}

.grid-menu1 {
  height: 200px;
  background-color: aqua;
  grid-area: 1 / 1 / 2 / 4;
}
.grid-menu2 {
  height: 200px;
  background-color: aqua;
  grid-area: 1 / 4 / 2 / 7;
}
.grid-menu3 {
  height: 200px;
  background-color: aqua;
  grid-area: 2 / 1 / 3 / 3;
}
.grid-menu4 {
  height: 200px;
  background-color: aqua;
  grid-area: 2 / 3 / 3 / 5;
}
.grid-menu5 {
  height: 200px;
  background-color: aqua;
  grid-area: 2 / 5 / 3 / 7;
}
.grid-menu-item-img {
  width: 100%;
  position: absolute;
  object-fit: cover;
}

.grid-overlay {
  position: absolute;
  color: white;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.grid-menu-item-title {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .grid-menu-parent {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }

  .grid-menu1 {
    height: 180px;
    background-color: aqua;
    grid-area: 1 / 1 / 2 / 3;
  }
  .grid-menu2 {
    height: 180px;
    background-color: aqua;
    grid-area: 2 / 1 / 3 / 3;
  }
  .grid-menu3 {
    height: 180px;
    background-color: aqua;
    grid-area: 3 / 1 / 4 / 3;
  }
  .grid-menu4 {
    height: 180px;
    background-color: aqua;
    grid-area: 4 / 1 / 5 / 3;
  }
  .grid-menu5 {
    height: 180px;
    background-color: aqua;
    grid-area: 5 / 1 / 6 / 3;
  }
}

.reason-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.reacon-content {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #d4d4d4;
}
.reacon-content-reverse {
  flex-flow: row-reverse;
}
.reason-img {
  width: 50%;
  padding: 10px;
}
.reason-img > img {
  width: 100%;
}
.reason-text {
  width: 50%;
  padding: 10px;
  color: #00043d;
  font-weight: bold;
}
.reason-h3 {
  font-weight: bold;
  font-size: 40px;
  font-family: 'Noto Serif JP', serif;
}

@media (max-width: 991.98px) {
  .reacon-content-reverse {
    flex-flow: row;
  }
  .reacon-content {
    flex-direction: column;
  }
  .reason-img {
    width: 100%;
  }
  .reason-text {
    width: 100%;
  }
}
.list-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.list-item-text {
  font-size: 30px;
}
.list-image {
  width: 45%;
}
.blockchain-bg {
  padding: 50px 30px;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 0, 97, 1) 100%
  );
}
.list-item-ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-inner-block {
  color: #20b2aa;
  display: flex;
  gap: 20px;
  align-items: center;
}
.list-item-icon {
  width: 40px;
}
@media (max-width: 991.98px) {
  .list-wrapper {
    flex-direction: column;
  }
  .list-image {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .list-item-text {
    font-size: 18px;
  }
}

.voice-wraper {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.voice-card {
  width: 32%;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 14px;
}

@media (max-width: 991.98px) {
  .voice-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 14px;
    flex: none;
    width: 100%;
  }
}
.voice-img {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  background-color: bisque;
}

.voice-bg-01 {
  background-image: url(../images/voice_bg_01.jpg);
  background-size: cover;
}
.voice-bg-02 {
  background-image: url(../images/voice_bg_02.jpg);
  background-size: cover;
}
.voice-bg-03 {
  background-image: url(../images/voice_bg_03.jpg);
  background-size: cover;
}
.voice-bg-04 {
  background-image: url(../images/voice_bg_04.jpg);
  background-size: cover;
}
.voice-bg-05 {
  background-image: url(../images/voice_bg_05.jpg);
  background-size: cover;
}
.voice-bg-06 {
  background-image: url(../images/voice_bg_06.jpg);
  background-size: cover;
}
.voice-bg-07 {
  background-image: url(../images/voice_bg_07.jpg);
  background-size: cover;
}
.voice-bg-08 {
  background-image: url(../images/voice_bg_08.jpg);
  background-size: cover;
}
.voice-bg-09 {
  background-image: url(../images/voice_bg_09.jpg);
  background-size: cover;
}
.voice-bg-10 {
  background-image: url(../images/voice_bg_10.jpg);
  background-size: cover;
}
.voice-bg-11 {
  background-image: url(../images/voice_bg_11.jpg);
  background-size: cover;
}
.voice-bg-12 {
  background-image: url(../images/voice_bg_12.jpg);
  background-size: cover;
}
.voice-bg-13 {
  background-image: url(../images/voice_bg_13.jpg);
  background-size: cover;
}
.voice-bg-14 {
  background-image: url(../images/voice_bg_14.jpg);
  background-size: cover;
}

.school-img-wrapper {
  overflow: hidden;
}
.school-img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  overflow: hidden;
}

@media (max-width: 768px) {
  .school-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    overflow: hidden;
  }
}

.text-left {
  text-align: left;
}
.block-center {
  margin: 0 auto;
}
.midashi-effect-img {
  width: 100%;
  background-image: url(../images/effect_01.jpg);
  height: 300px;
  background-size: cover;
  margin-bottom: 30px;
}
.effect-01 {
  background-image: url(../images/effect_02.jpg);
  background-position: center, center;
}
@media (max-width: 991.98px) {
  .midashi-effect-img {
    height: 220px;
  }
}
.form_iframe {
  width: 100%;
}

.news_companies {
  width: 100%;
  margin: 0 auto;
}
.news_companies-img {
  width: 100%;
  margin: 0 auto;
}
.news_banners-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.banner-card {
  width: 30%;
}
@media (max-width: 991.98px) {
  .banner-card {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .banner-card {
    width: 100%;
  }
}
