﻿@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, 169, 157, 0.3));
  transform: translateZ(0);
  transition: 0.3s ease-in;
}

.header .logo {
  padding: 0;
  max-width: 700px;
  width: 30vw;
  height: var(--header-height);
}

.header .logo a.logo_mlit {
  display: block;
  margin: 10px 5% 8px 0;
  transition: 0.3s ease-in 0s;
  max-width: 130px;
  width: 18%;
  height: 22px;
}

.header .logo a.logo_tit {
  display: block;
  transition: 0.3s ease-in 0s;
  width: 100%;
  height: calc(var(--header-height) - 50px);
}

.header .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}


.header .header_pickup_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.25;
  width: 100%;
  max-width: 750px;
  color: #808080;
}

.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);
}

.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: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>* .glonavi_link {
  width: 100%;
  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.mainNavi>* {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 4);
  height: var(--header-height);
  position: relative;
  /* border-left: 1px solid #e6e6e6; */
}

.global-navigation ul.mainNavi>* .glonavi_link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.global-navigation ul.mainNavi>* .glonavi_link span {
  position: absolute;
  display: block;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  word-break: keep-all;
}

.global-navigation ul.mainNavi>*::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: var(--header-height);
  background: #e6e6e6;
  transform: translate(0, -50%);
}

.global-navigation ul>* .glonavi_link:hover {
  opacity: 0.8;
}

.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 {
  position: relative;
  z-index: 2;
  padding: 0;
}

.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 .subNavi_wrap {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100vw;
  min-height: 60px;
  display: none;
  transition: .6s ease;
  background: var(--col-green01);
}

.global-navigation ul>* .subnavi_link {
  padding: 0.5em;
}

.global-navigation .mainNavi>li:hover .subNavi_wrap {
  display: block;
  transition: .6s ease;
}

.pc.global-navigation .mainNavi>li:hover .subNavi_wrap {
  color: #fff;
}

.global-navigation .mainNavi>li:hover .subNavi_wrap .subNavi_inner {
  max-width: var(--inner-maxWidth);
  margin: 20px auto;
  padding: var(--inner-padding-LR);
}

.global-navigation .mainNavi>li:hover .subNavi_wrap .subNavi_inner>.subNavi.column4>* {
  width: 23%;
}

.global-navigation .mainNavi>li:hover .subNavi_wrap .subNavi_tit {
  font-size: 125%;
  font-weight: bold;
  letter-spacing: 0.095em;
}

.global-navigation .subNavi_wrap li a {
  display: block;
  position: relative;
  font-size: 1rem;
  padding-left: 0;
  padding-right: 1.5em;
  /* margin: 0.45em 0; */
  text-align: left;
  border-bottom: 1px solid #fff;
}

.global-navigation .subNavi_wrap>li:last-child>a {
  margin-top: 0.15em;
  margin-bottom: 0;
}

.global-navigation .subNavi_wrap li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: .85em;
  height: .85em;
  transform: translate(0, -50%);
  background: url(../img/common/icon_arrow_R_white.svg) center center no-repeat;
  background-size: contain;
}

.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;
  }
}

/*----------------------------------------
フッター
-----------------------------------------*/
/* ページトップボタン */
html {
  scroll-behavior: smooth;
}

#page-top {
  position: fixed;
  right: 40px;
  bottom: 55px;
  z-index: 10;
  width: 75px;
  transition: .5s ease;
}

/* #page-top.change-position {
  bottom: 300px;
  transition: .5s ease;
} */



.footer_contents .column2>* {
  width: 49%;
}

.footer_contents {
  background: linear-gradient(90deg, var(--grade-green01));
}

.footer_contents .innerBox {
  position: relative;
  padding: 50px var(--inner-padding-LR);
  width: 100%;
  max-width: calc(var(--innerWide-maxWidth) / 2);
  margin: auto;
}

.footer_contents .boxL .innerBox {
  margin-left: auto;
  margin-right: 0;
}

.footer_contents .boxR .innerBox {
  margin-left: 0;
  margin-right: auto;
}

.footer_contents .logo_wrap {
  background: #e6e6e6;
}

.footer_contents .logo_wrap .logo {
  width: 100%;
  max-width: 290px;
}

.footer_contents .logo_wrap .logo svg {
  width: 100%;

}

.footer_contents .logo_txt {
  margin-top: 2em;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5;
}

.footer_contents .naviWrap {
  color: #fff;
}

.footer_contents .naviWrap>.flex {
  justify-content: start;
}

.footer_contents .naviWrap>.flex>.flex {
  display: flex;
}

.footer_contents .naviWrap>.flex>.flex>* {
  width: fit-content;
  margin-right: 2.5vw;
  margin-bottom: .5em;
}

.footer_contents .naviWrap>.flex>.flex>*>* {
  margin-bottom: .5em;
}

.footer_contents .naviWrap .subNavi a {
  font-size: .825em;
}



.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 .copo_info_wrap {
  font-weight: 500;
  color: var(--col-gray01);
  justify-content: stretch;
  text-align: center;
  background: #444;
  color: #fff;
  padding: 1em;
}

.footer_contents .copo_info_txt {
  margin-right: 1em;
  letter-spacing: 0.05em;
}


.footer_contents a:hover {
  opacity: 0.8;
}

.footer_contents .copyright {
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.05em;
}



@media only screen and (max-width: 1350px) {
  .global-navigation ul>* .glonavi_link {
    font-size: 1vw;
  }

  .header .logo {
    width: 35vw;
  }

  header .header_pickup_link {
    width: 55vw !important;
  }

  .footer_contents .naviWrap>.flex {
    justify-content: space-between;
  }

  .footer_contents .naviWrap>.flex>.flex {
    display: unset;
    width: 50%;
  }

  .footer_contents .naviWrap>.flex>.flex>* {
    margin-right: 0;
    margin-bottom: .5em;
  }

  .footer_contents .naviWrap>.flex>.flex>*>* {
    margin-right: 0;
    margin-bottom: .5em;
  }

}

@media only screen and (max-width: 1200px) {
  .global-navigation {
    width: 100%;
  }

  .global-navigation ul>* .glonavi_link {
    font-size: 1.25vw;
  }

  .header .logo {
    width: 40vw;
  }

  header .header_pickup_link {
    width: 56vw !important;
  }

  .footer_contents .naviWrap>.flex>.flex>* {
    font-size: 1.65vw;
  }

}



@media only screen and (max-width: 959px) {

  .header .logo {
    width: 45vw;
  }

  header .header_pickup_link {
    width: 50vw !important;
  }
}


/*==========================================================================================
ここからSP
==========================================================================================*/
@media only screen and (max-width: 767px) {
  :root {
    --header-height: 15vw;
  }

  /*----------------------------------------
  ヘッター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: 10vw;
    height: 10vw;
    padding: 4vw;
  }

  .hamburger__line {
    width: 80%;
  }

  .header__subnav-area {
    flex-wrap: wrap;
    height: 100%;
    background: var(--col-green01);
    padding: 0;
  }

  .header .logo {
    width: 85%;
  }

  header .header_pickup_link {
    width: 10% !important;
  }

  .header .logo a.logo_mlit {
    width: 20%;
    height: 4vw;
    margin-right: 3vw;
    margin-bottom: 1vw;
  }

  .header .logo a.logo_tit {
    width: 100%;
    height: calc(var(--header-height) - 10vw);
  }

  .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: 2vw;
  }


  .header__nav-area::after {
    width: 100%;
  }

  .global-navigation ul {
    width: 100%;
  }

  .global-navigation ul.mainNavi>* {
    width: 100%;
    height: auto;
  }

  .global-navigation ul>* .glonavi_link:hover {
    opacity: 1;
  }

  .global-navigation ul.mainNavi>* a {
    height: unset;
    border-bottom: 1px solid var(--col-green01);
  }

  .global-navigation ul.mainNavi>* .glonavi_link {
    height: auto;
    padding: var(--inner-padding-LR);
    border-bottom: 1px solid #fff;
    font-size: 4.25vw;
  }

  .global-navigation ul.mainNavi>*::before {
    content: unset;
  }

  .global-navigation .mainNavi>li:hover .subNavi_wrap .subNavi_inner {
    margin: auto;
    padding: 0;
  }

  .global-navigation .mainNavi>li:hover .subNavi_wrap .column4 {
    flex-wrap: wrap;
  }


  .global-navigation .subNavi_wrap {
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    display: block;
    min-height: unset;
    background: var(--col-green02);
    padding: var(--inner-padding-LR);
    color: var(--col-black);
  }

  .global-navigation .subNavi_wrap li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: .85em;
    height: .85em;
    transform: translate(0, -50%);
    background: url(../img/common/icon_arrow_R.svg) center center no-repeat;
    background-size: contain;
  }

  .global-navigation .subNavi_wrap .subNavi_tit {
    font-size: 110%;
    font-weight: bold;
  }

  .global-navigation .subNavi_wrap a {
    width: 100%;
    font-size: 0.85em;
    color: var(--col-black);
  }

  .global-navigation .mainNavi>li:hover .subNavi_wrap .subNavi_inner>.subNavi.column4>*,
  .global-navigation ul.subNavi>* {
    width: 47.5%;
  }

  .global-navigation ul.mainNavi>* .boxR {
    margin-top: 4vw;
  }

  .global-navigation ul.mainNavi>* .glonavi_link span {
    position: relative;
    top: unset;
    left: unset;
    transform: translate(0, 0);
  }

  .global-navigation {
    width: 100%;
  }

  .global-navigation ul>* .glonavi_link {
    font-size: 4vw;
  }

  .global-navigation ul>* .subnavi_link {
    padding: 0.5em;
    letter-spacing: 0;
  }



  /*----------------------------------------
  フッターcss
  -----------------------------------------*/
  footer .footer_contents {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .footer_contents>.flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .footer_contents .column2>* {
    width: 100%;
  }

  footer .footer_contents .logo_wrap {
    width: 100%;
    margin: 0;
  }

  .footer_contents .logo_wrap .logo {
    width: 70%;
  }

  .footer_contents .naviWrap>.flex>.flex>* {
    font-size: 3.75vw;
  }

  .footer_contents .innerBox {
    padding: 8vw var(--inner-padding-LR);
  }

  .footer_contents .logo_mlit {
    width: 45%;
  }

  .footer_contents .logo_txt {
    width: 100%;
  }

  .footer_contents .sitemap ul {
    max-width: unset;
  }

  .footer_contents .sitemap ul>li {
    width: 50%;
  }

  .footer_contents .copo_name {
    font-size: 5.5vw;
  }

  .btnTotop {
    position: fixed;
    right: 2vw;
    bottom: 23vw;
    width: 16vw;
    z-index: 9;
  }

  #page-top.change-position {
    width: 14vw;
    right: 2vw;
    bottom: 13vw;
  }

}