﻿@charset "UTF-8";

/*----------------------------------------
ヘッダーcss
-----------------------------------------*/
.skip {
  /* アクセシビリティ このページの本文へ移動用 */
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  background: #fff;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.25));
  transform: translateZ(0);
  transition: 0.3s ease-in;
}


.header .logo a {
  display: block;
  padding: 3.5% 5% 4% 0;
  transition: 0.3s ease-in 0s;
  max-width: 300px;
  width: 35vw;
  height: var(--header-height);
}

.header .logo a img {
  object-position: left;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.header .header_pickup_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.25;
}

.header .header_pickup_link a img {
  display: block;
  margin: auto;
}

.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--inner-padding-LR);
  /* padding-right: var(--inner-padding-LR); */
}

.hamburger {
  display: block;
  margin-left: auto;
  position: relative;
  width: 72px;
  height: 72px;
  border: none;
  padding: 10px;
  background-color: transparent;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line {
  display: block;
  height: 2.5px;
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #494949;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #494949;
  transition: inherit;
}

.hamburger__line:before {
  top: -10px;
}

.hamburger__line:after {
  top: 10px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.header:has(.-active),
.header.change-color:has(.-active) {
  background: #fff;
}

.header__nav-area {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  min-height: 300px;
  visibility: hidden;
  background: linear-gradient(90deg, var(--grade-red01));
  transition: 0.4s;
  overflow: hidden;
  animation: fadeout 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
  color: #fff;
}

/* .header__nav-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url(../img/common/bg_texture.png) repeat center center;
  background-size: 100%;
  opacity: 0.2;
}

.header__nav-area::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 800px;
  height: 100%;
  background: url(../img/common/footer_bg_japan.png) no-repeat top right;
  background-size: 100%;
  opacity: 0.5;
} */

header:has(.-active) .change-logo a {
  opacity: 1;
  transition: 0.3s ease-in 0s;
}

.header__nav-area.-active {
  left: 0;
  visibility: visible;
  display: block;
  animation: fadein 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
}

.opNone:hover {
  opacity: 1 !important;
}

.header__subnav-area .corporatenavi_wrap {
  width: 100%;
}

.header__subnav-area .corporatenavi_wrap,
.global-navigation,
.global-navigation_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* max-width: var(--inner-maxWidth); */
  padding: 20px;
  margin: auto;
}

.global-navigation ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.global-navigation ul>* {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 6);
  position: relative;
  /* border-left: 1px solid #e6e6e6; */
}

.global-navigation ul>*::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: var(--header-height);
  background: #e6e6e6;
  transform: translate(0, -50%);
}

.global-navigation ul>* a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  display: block;
  font-size: .75vw;
  font-weight: 600;
  padding: 0.5em;
  text-align: center;
}

.global-navigation ul>* a:hover {
  opacity: 0.8;
}

.header__nav-area .conntact {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 250px;
  /* margin-top: 1.95rem; */
  padding: 0.5em 1.5em;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  background: var(--col-blue01);
}

.global-navigation ul>.conntact {
  color: #fff;
}

.global-navigation ul>.conntact::before {
  content: '';
  position: absolute;
  width: 100%;
  height: var(--header-height);
  background: var(--col-green01);
}

.header__subnav-area .title {
  font-size: 1.95rem;
  line-height: 1.25;
  font-family: var(--font-family-poppins);
  font-weight: var(--font-weight-medium);
  text-align: right;
  color: var(--col-blue04);
}

.global-navigation_wrap {
  width: calc(100% - 16vw);
  margin-top: 2em;
  padding: 0px 25px 0;
}

.global-navigation {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0;
  width: 55vw;
}

.global-navigation__link {
  color: var(--col-gray01);
  font-weight: 900;
  transition: color 0.4s;
  font-size: 0.25rem;
}

.global-navigation__list>li+li {
  margin-top: 0px;
}

.global-navigation__list>li a {
  display: block;
  font-size: 1.25rem;
  font-weight: var(--font-weight-regular);
  color: var(--col-gray02);
}

.global-navigation__sublink li a {
  display: block;
  position: relative;
  font-size: 1rem;
  padding-left: 1em;
  margin: 0.45em 0;
  color: var(--col-black);
}

.global-navigation__sublink>li:last-child>a {
  margin-bottom: 0.6em;
}

.global-navigation__sublink>li:first-child>a {
  margin-top: 0.15em;
  margin-bottom: 0;
}

.global-navigation__sublink li a::before {
  content: "\025b6";
  position: absolute;
  top: 0.35em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  color: var(--col-blue03);
  font-size: 0.8em;
}

.global-navigation__thirdlink li a {
  display: block;
  position: relative;
  color: var(--col-black);
  padding-left: 1em;
  margin: 0 0 0 1em;
  margin-bottom: 0;
}

.global-navigation__thirdlink li a::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.35em;
  display: block;
  width: 0.5em;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
}

/* .global-navigation ul>*.sub_pickMenu {
  width: 15%;
} */

.sub_pickMenu .logo_wrap {
  width: 80%;
}

.lang_wrap {
  width: 100%;
  border-top: 1px solid #e6e6e6;
}

.lang_wrap .active {
  color: var(--col-green01);
}

.lang_wrap span {
  display: inline-block;
  padding: .35em;
  width: fit-content;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.soon {
  opacity: .5;
  pointer-events: none;
}

@keyframes fadein {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: visible;
  }

  100% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }

  100% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
  }
}

.footer_contents {
  background: #f2f2f2;
}

.footer_contents .logo_inner {
  position: relative;
  text-align: center;
  padding: 50px var(--inner-padding-LR);
  width: 80%;
  max-width: 500px;
  margin: auto;
}

.footer_contents .logo_aist {
  width: 100%;
  height: 5rem;
  margin-bottom: 30px;
}


.footer_contents .logo_ct {
  width: 80%;
  height: 4rem;
}

.footer_contents .copo_name {
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  margin-bottom: 0.35em;
}

.footer_contents .logo_aist img,
.footer_contents .logo_ct img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_contents .sitemap ul {
  max-width: var(--inner-minWidth);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_contents .copo_info_wrap {
  font-weight: 500;
  color: var(--col-gray01);
  justify-content: stretch;
  text-align: center;
  background: #444444;
  color: #fff;
  padding: 1em;
}

.footer_contents .copo_info_txt {
  margin-right: 1em;
  letter-spacing: 0.05em;
}

.footer_contents .icon_instagram {
  margin-top: 0.25em;
  width: 2.5em;
  height: 2.5em;
}

.footer_contents a:hover {
  opacity: 0.8;
}

.footer_contents .copyright {
  margin-top: .75em;
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.footer_contents .expo_wrap {
  width: 50%;
  padding-right: 7vw;
}

.footer_contents .expo_wrap a {
  display: block;
  width: 100%;
  max-width: calc(var(--inner-maxWidth) / 1.9);
  margin: 0 40px;
}

.footer_contents .expo_wrap a img {
  width: 100%;
}



@media only screen and (max-width: 1630px) {
  .footer_contents .logo_inner {
    width: 100%;
  }

  .footer_contents .copo_name {
    font-size: 1.65em;
  }

  .footer_contents .copo_info_txt {
    margin-right: 1em;
    letter-spacing: 0.05em;
  }

  .footer_contents .copyright {
    margin-top: 1.5em;
    font-size: 0.75em;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }

  .footer_contents .expo_wrap {
    width: 57%;
  }

  .footer_contents .expo_wrap a {
    width: auto;
    max-width: unset;
    margin: 0.5vw;
  }
}

@media only screen and (max-width: 1350px) {
  .global-navigation ul>* a {
    font-size: 1vw;
  }
}

@media only screen and (max-width: 1200px) {
  .global-navigation {
    width: 100%;
  }
}



@media only screen and (max-width: 959px) {
  .global-navigation ul>* a {
    font-size: 1.25vw;
  }
}


/*==========================================================================================
ここからSP
==========================================================================================*/
@media only screen and (max-width: 767px) {

  /*----------------------------------------
  ヘッターcss
  -----------------------------------------*/
  .header {
    height: var(--header-height);
  }

  .header .header__inner {
    padding-left: var(--inner-padding-LR);
    padding-right: var(--inner-padding-LR);
  }

  .header__nav-area {
    height: calc(100vh - var(--header-height));
    overflow: scroll;
    position: relative;
  }

  .hamburger {
    width: 8vw;
    height: 10vw;
    padding: 4vw;
  }

  .hamburger__line {
    width: 80%;
  }

  .header__subnav-area {
    flex-wrap: wrap;
    height: auto;
    background: var(--col-green01);
  }

  .header .logo {
    width: 75%;
  }

  .header .logo a {
    width: 100%;
    padding: 4vw 4vw 4vw 0;
  }

  .header .logo img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit: contain;
  }

  .header .header_pickup_link a {
    font-size: 3.3vw;
    padding-right: 1.5vw;
  }

  .lang_wrap {
    border-top: unset;
    font-weight: bold;
  }

  .global-navigation ul {
    width: 100%;
  }

  .global-navigation ul>* {
    width: 100%;
  }

  .header__nav-area::after {
    width: 100%;
  }

  .global-navigation ul>*::before {
    content: unset;
  }

  .global-navigation {
    padding: var(--inner-padding-LR);
    width: 100%;
  }

  .global-navigation ul>* a {
    font-size: 4vw;
  }

  .btnTotop {
    position: fixed;
    right: 2vw;
    bottom: 23vw;
    width: 16vw;
    z-index: 9;
  }

  .header__nav-area .conntact {
    max-width: unset;
  }

  /*----------------------------------------
  フッターcss
  -----------------------------------------*/
  footer .footer_contents {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  footer .footer_contents .logo_wrap {
    width: 100%;
    margin: 0;
  }

  .footer_contents .logo_ct {
    width: 100%;
  }

  .footer_contents .sitemap ul {
    max-width: unset;
  }

  .footer_contents .sitemap ul>li {
    width: 50%;
  }

  .footer_contents .copo_name {
    font-size: 5.5vw;
  }


}