@charset "UTF-8";

#header #topNav ul li a .blank01 {
	padding-bottom: 1px;
	display: flex;
}

#ftNav ul li a .blank01 {
	padding-top: 2px;
}

#ftNav ul li {
    padding-bottom: 2px;
}

#ftNav ul li a {
	padding-bottom: 0px;
}

.l-header {
  padding-inline: 3%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ababab;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.l-header + * {
  margin-top: 60px;
}

.p-navigation-global a {
	color: #0074c1;
	text-decoration: none;
}

.p-navigation-global__list {
  gap: 15px;
  align-items: center;
  display: flex;
  justify-content: right;
  padding-top: 10px;
}

.p-navigation-global__list-item a {
  font-weight: 600;
  font-family: auto;
  font-size: 15px;
  /*  padding: 20px 5px;*/
}

.p-megaMenu.is-open .p-megaMenu__navigation {
  -webkit-clip-path: inset(0 -50vw);
  clip-path: inset(0 -50vw);
  visibility: visible;
}

.p-megaMenu.is-open .p-megaMenu__open::after {
/*  rotate: 180deg;*/
}

.p-megaMenu__open {
  gap: 0.5em;
  align-items: center;
  cursor: pointer;
/*  display: flex;*/
  font-weight: 600;
  justify-content: center;
  line-height: 1;
/*  padding: 20px 5px;*/
}

/*
.p-megaMenu__open::after {
  content: "∨";
  padding-bottom: 0.2em;
  transition: rotate 0.3s;
}
*/

.p-megaMenu__navigation {
  -webkit-clip-path: inset(0 -50vw 100%);
  background-color: rgb(0 144 220);
  clip-path: inset(0 -50vw 100%);
  left: 0;
  padding: 20px;
  position: absolute;
  top: 100%;
  transition: all 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}

.p-megaMenu__list {
  gap: 0;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: -moz-fit-content;
  width: fit-content;
}

.p-megaMenu__list-item a {
  color: #fff;
  gap: 0.5em;
  align-items: center;
  display: inline-flex;
/*  padding: 5px 10px;*/
}

/*
.p-megaMenu__list-item a::before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 3px;
  width: 0.5em;
}
*/

@media (min-width: 768px) {
/*
  .p-navigation-global__list {
    gap: 40px;
  }
*/

/*
  .p-navigation-global__list-item a {
    padding: 20px 10px;
  }
*/

/*
  .p-megaMenu__open {
    padding: 20px 10px;
  }
*/

  .p-megaMenu__navigation {
    padding: 45px 30px;
  }

  .p-megaMenu__list {
    gap: 10px 45px;
    flex-direction: row;
  }

  .p-megaMenu__list-item a {
    /* padding: 20px 20px; */
  }
}

@media (hover: hover) {
  .p-navigation-global__list-item a:hover {
	  
  }
}

.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	/* vertical-align: middle; */
	text-decoration: none;
	font-size: 15px;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.nav-icon::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #0074c1;
}

.nav-icon::after{
	left: 4px;
	box-sizing: border-box;
	width: 3px;
	height: 3px;
	border: 4px solid transparent;
	border-left: 4px solid #fff;
}

.nav-icon:hover::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
}

.nav-icon:hover::after{
	left: 1px;
	top: 3px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 4px solid transparent;
	border-top: 4px solid #0074c1;
}

.nav-icon__open::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #0074c1;
}

.nav-icon__open::after{
	left: 4px;
	box-sizing: border-box;
	width: 3px;
	height: 3px;
	border: 4px solid transparent;
	border-left: 4px solid #fff;
}

.p-megaMenu.is-open .nav-icon__open::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
}

.p-megaMenu.is-open .nav-icon__open::after{
	left: 1px;
	top: 3px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 4px solid transparent;
	border-top: 4px solid #0074c1;
}

.text-underline::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #0074c1;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.2s;   /*変形の時間*/
}

.text-underline:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.text-underline-wh::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #fff;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.2s;   /*変形の時間*/
}

.text-underline-wh:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

@media screen and (max-width:767px) {
	#globalmenu {
		display: none;
	}
}











