@charset "utf-8";

/*----------------------------------------
	header top
----------------------------------------*/

.top_title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.global_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.top_head {
  display: flex;
}
.top_head li {
  flex: 1;
  text-align: center;
  background-color: #fff;
}

.mv_section {
  position: relative;
  background-image: url("../images/new/top/mv_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 200px 0 100px;
}

.top_head li a {
  display: block;
  color: #000;
  padding: 1.4em 0;
  letter-spacing: -0.02em;
}

.top_head li:nth-child(1) {
  background-color: #3e8ec2;
}

.top_head li:nth-child(1) a {
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .mv_section {
  padding: 100px 0 40px;
}
}

@media screen and (max-width: 1200px) {
  .top_head {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .mv_section {
  padding: 150px 0 80px;
}
}

/*----------------------------------------
	header 共通
----------------------------------------*/

.banner_grid {
    display: grid;
    width: 100%;
    gap: 20px;
    box-sizing: border-box; 
}

.banner_grid a {
    display: block;
    width: 100%;
    transition: opacity 0.3s;
}

.banner_grid a:hover {
    opacity: 0.7;
}

.banner_grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media screen and (min-width: 601px) {
    .banner_grid {
        padding-left: 0;
        padding-right: 0;
        grid-template-columns: repeat(6, 1fr); 
        gap: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 600px) {
    .banner_grid {
        width: 100%;
        margin-inline: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.common_header {
  background: transparent;
  position: relative;
  margin-top: 30px;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 auto;
  padding: 10px 20px 25px;
}

.header_logo img {
  height: 50px;
  width: auto;
}

.header_nav {
  flex: 1 1 auto;
}

.header_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px 20px;
  padding-right: 90px;
}

.header_list li a {
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 0;
}

.menu_btn {
  position: fixed;
  top: 115px;
  right: 25px;
  width: 55px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  opacity: 1;
  transition: opacity 1s ease, mix-blend-mode 0.3s ease;
  mix-blend-mode: normal;
}

.menu_btn.is_scrolled {
  mix-blend-mode: difference;
}
@media screen and (max-width: 1200px) {
.menu_btn {
  top: 52px;
}
}
.menu_btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu_btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 6px);
}

.menu_btn.open span:nth-child(2) {
  transform: rotate(-45deg) translate(0px, -5px);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #459ed6;
  background-image: url("../images/new/common/drawer_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 9999;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  overflow-y: auto;
  box-sizing: border-box;
  height: calc(var(--vh, 1vh) * 100);
}

.drawer a {
  color: #fff;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu_btn.hidden {
  opacity: 0;
}
.menu_btn.open {
  top: 50px;
  opacity: 1;
  mix-blend-mode: normal;
}

.drawer_main {
  display: flex;
  column-gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.drawer_ttl {
  width: 80%;
  max-width: 280px;
  margin-inline: auto;
}

.drawer_headings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.drawer_headings_wrap {
  display: flex;
  justify-content: space-between;
  row-gap: 30px;
  column-gap: 70px;
}

.drawer_headings_col {
  width: 50%;
}

.drawer_deco {
  position: absolute;
  top: -45%;
  left: -5%;
  max-width: 290px;
}
.drawer_headings li {
  margin-bottom: 15px;
  white-space: nowrap;
}

.drawer_headings a {
  color: #fff;
}

.drawer_headings li a {
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.drawer_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}

.drawer_banners {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.drawer_banners div {
  max-width: 410px;
  margin-inline: auto;
}

.drawer_lower {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 16px;
  padding-right: 16px;
}

.drawer_sublinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
}

.drawer_sublinks li a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
}

.drawer_socials {
  display: flex;
  gap: 50px;
  padding: 0;
  justify-content: center;
}

.drawer_socials img {
  width: 40px;
  height: 40px;
}

.point4 {
  position: relative;
  bottom: -5px;
  letter-spacing: 4px;
}

.drawer_content {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pr20 {
  padding-right: 20px;
}
.pr10 {
  padding-right: 10px;
}
.pl10 {
  padding-left: 10px;
}
.pl20 {
  padding-left: 20px;
}

.event_recent_thumbnails {
  display: flex;
  column-gap: 10px;
}

a.disabled_link {
  pointer-events: none;
  cursor: default;
  opacity: 1;
}

@media screen and (max-width: 1360px) {
.common_header {
  margin-top: 20px;
}
}

@media screen and (max-width: 1024px) {
  .drawer_main {
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
    column-gap: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
  }
  .drawer_banners {
    flex-wrap: wrap;
    justify-content: center;
  }
  .drawer_left {
    width: 70%;
  }
  .drawer {
    justify-content: flex-start;
  }
  .drawer_headings_wrap {
    flex-direction: column;
    gap: 30px;
  }
  .drawer_headings_col {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .header_nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }

  .header_inner {
    justify-content: space-between;
  }
  .menu_btn {
    top: 50px;
    right: 25px;
  }
  .drawer_deco {
    position: absolute;
    top: -30%;
    max-width: 220px;
  }
  .common_header {
    margin-top: 20px;
  }
  .drawer_right {
    width: 70%;
  }
}

@media screen and (max-width: 500px) {
  .drawer_left,
  .drawer_right {
    width: 100%;
  }
  .pr20 {
    padding-right: 10px;
  }
  .drawer_deco {
    position: absolute;
    top: -45%;
    left: -2%;
    max-width: 175px;
  }
  .menu_btn {
  position: fixed;
  top: 50px;
  right: 25px;
  width: 55px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  opacity: 1;
  transition: opacity 1s ease;
}
.drawer_sublinks {
  justify-content: left;
  row-gap: 30px;
}
}

/* ドロワー追加 */

.drawer_nav_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-left: 16px;
  padding-right: 16px;
}

.drawer_nav_col {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.drawer_nav_item .en {
  color: #fff;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.drawer_nav_item a {
  color: #fff;
  display: inline-block;
}

.drawer_external_links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.drawer_external_links a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .drawer_nav_wrap {
    flex-direction: column;
    gap: 30px;
  }
  
  .drawer_nav_col {
    width: 100%;
    gap: 30px;
  }
}

@media screen and (max-width: 500px) {
  .drawer_external_links {
    flex-direction: column;
    gap: 30px;
  }
  .drawer_lower{
    gap: 15px;
  }
}

/*----------------------------------------
	top mv
----------------------------------------*/

.mv_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.mv_text {
  display: flex;
  flex-direction: column;
  color: #fff;
  width: 45%; 
  z-index: 2;
}

.mv_en {
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: 0.05em;
  text-shadow: 5px 5px 10px rgba(62, 142, 194, 0.8);
}

.mv_title {
  font-size: clamp(30px, 3.75vw, 42px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-shadow: 5px 5px 10px rgba(62, 142, 194, 0.8);
}

.mv_subtitle {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.01em;
  text-shadow: 5px 5px 10px rgba(62, 142, 194, 0.8);
}

.mv_desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-shadow: 5px 5px 10px rgba(62, 142, 194, 0.8);
}

.mv_graphic {
  width: 50%;
}

.mv_circle_wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.mv_circle_bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.mv_item {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
}

.mv_item img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.mv_item01 {
    top: 2%;
    left: 34%;
    width: 50%;
}
.mv_item02 {
    top: 14%;
    left: 85%;
    width: 50%;
}
.mv_item03 {
    top: 55%;
    left: 99%;
    width: 33%;
}
.mv_item04 {
    top: 88%;
    left: 85%;
    width: 33%;
}
.mv_item05 {
    top: 99%;
    left: 46%;
    width: 45%;
}
.mv_item06 {
    top: 73%;
    left: 5%;
    width: 45%;
}
.mv_item07 {
    top: 31%;
    left: 0%;
    width: 34%;
}

@media screen and (max-width: 900px) {
  .mv_inner {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 100px;
  }
  
  .mv_text {
    width: 100%;
  }

  .mv_graphic {
    width: 100%;
  }
  .mv_circle_wrap {
    width: 65%; 
  }
}

@media screen and (max-width: 599px) {
  .mv_circle_wrap {
    width: 70%;
    margin-top: 30px;
  }
}

/* footer */

.site_footer {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 100px;
  background: #fff;
  color: #000;
  flex-wrap: wrap;
  gap: 2em;
}

.footer_left {
  flex: 1 1 200px;
}

.footer_left a:hover {
  text-decoration: underline;
}

.footer_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 70px;
}

.footer_col {
  flex: 0 1 auto;
  min-width: auto;
}

.footer_block ul {
  padding-left: 0;
  margin: 0;
}

.footer_block ul li {
  margin-bottom: 24px;
}

.footer_block ul li:last-child {
  margin-bottom: 0;
}

.footer_block ul li a {
  text-decoration: none;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .site_footer {
    flex-direction: column;
    gap: 0;
    padding-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .footer_right {
    gap: 20px;
  }

  .footer_col {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media screen and (max-width: 500px) {
  .footer_col {
    flex-direction: column;
    row-gap: 20px;
  }
  .footer_left {
    flex: 1 1 150px;
  }
}

.cdp-copy-alert-success {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -9999 !important;
  visibility: hidden !important;
}

.intro_row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.intro_row.is_reverse {
  flex-direction: row-reverse;
}

.intro_col_text {
  width: 50%;
}

.intro_col_img {
  width: 50%;
}

.intro_section {
  position: relative;
}

.intro_section + .intro_section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1060px; 
  width: calc(100% - 40px);
  border-top: 1px solid #e5e5e5;
}

.company_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.company_grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}

.w80{
  width: 80%;
}

@media screen and (max-width: 820px) {
  .intro_row,
  .intro_row.is_reverse {
    flex-direction: column;
    gap: 50px;
  }
  
  .intro_col_text,
  .intro_col_img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .intro_section + .intro_section::before {
    width: calc(100% - 7%);
  }
  .company_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 599px) {
  .intro_section + .intro_section::before {
    width: calc(100% - 8.6%);
  }
}