@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #222222;
  font-family: 'Noto Sans JP', 'YuGothic', 'Oswald', 'Roboto', "Yu Gothic", 'serif';
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  font-size: 1.6em;
  letter-spacing: .06em;
}
.body {
  overflow: hidden;
}
h2 {
  font-size: 3.2rem;
}
a {
  cursor: pointer;
  text-decoration: none;
  color:  inherit;
}
img {
  max-width: 100%;
}
ul li {
  list-style: none;
}
*, *:before, *:after {
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
@media(max-width:768px){
  .sp{
    display: none;
  }
  .pc {
    display: block;
  }
  h2 {
    font-size: 2.6rem;
  }
}

/* openbtn pc */
.openbtn{
  display: none;
}
.menu p {
  display: none;
}

/* nav sp */
/*==================================================
MENUがCLOSEに
===================================*/
@media screen and (max-width:1100px) {
  /*ボタン外側*/
  .openbtn{
    /*ボタン内側の基点となるためrelativeを指定。
    追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: fixed;
    display: block;
    background:#003F8E;
    cursor: pointer;
    width: 60px;
    height:60px;
    right: 20px;
    top: 10px;
    border-radius: 60px;
    z-index: 1000;
  }
  
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 2px;
    border-radius: 5px;
    background: #FFF;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top:16px;	
  }
  .openbtn span:nth-of-type(2) {
    top:22px;
  }
  .openbtn span:nth-of-type(3) {
    top:28px;
  }
  .openbtn span:nth-of-type(3)::after {
    content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top:6px;
    left:-2px;
    color: #fff;
    font-size: 1.0rem;
    text-transform: uppercase;
  }
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top:5px;
    left:4px;
  }
  #g-nav{
    display: none;
  }
  /*アクティブになったエリア*/
  #g-nav.panelactive{
  display: block;
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width:100%;
  height: 100vh;
  }
  /* 円が拡大する動きと字間 */
  .circle-bg {
    position: fixed;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #003F8E;
    transform: scale(0);
    right: 18px;
    top: 12px;
    transition: all 1.5s
  }
  .circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    display: block; /*クラスが付与されたら出現*/
  }
  /*ナビゲーション*/
  #g-nav ul {
  opacity: 0;/*はじめは透過0*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  }
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
  opacity:1;
  flex-direction: column;
  align-items: flex-start;
  width: 44vw;
  }
  #g-nav.panelactive ul .nav__contact {
  display: inline-block;
  margin-top: 30px;
  }
  #g-nav.panelactive ul .nav__contact::before{
    background-color: #FFF;
    color: #003F8E;
  }
  #g-nav.panelactive ul .nav__contact:hover{
    color: #003F8E;
  }
  /*リストのレイアウト設定*/
  #g-nav.panelactive .menu {
  text-align: center; 
  width: 100%;
  color: #FFF;
  padding-top: 1.2rem;
  }
  #g-nav.panelactive .border {
    position: relative;
    padding:15px 0;
    display: block;
    color: #FFF;
  }
  #g-nav.panelactive .border::after{
    border-bottom: 1px solid #FFFFFF;
    content: "";
    display: block;
    width: 100%;
    }
  #g-nav header{
    background-color: #FFF;
  }
  .menu p {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFF;
    position: relative;
    margin-left: 1.4rem;
    width: 120px;
  }
  .menu p::before {
    content: '';
    width: 8px;
    height: 1px;
    display: inline-block;
    background-color: #FFF;
    position: absolute;
    top: calc(50% - 0px);
    right: calc(50% + 50px);
  }
  #g-nav.panelactive .border::before {
    position: absolute;
    content: "";
    top: 40%;
    right: 10%;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: transparent transparent #FFF #FFF;
    transform: rotate(-135deg);
  }
  #g-nav.panelactive .menu p::after{
    display: none;
  }
  .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
  }
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* スクロールをしたら出現する要素にはじめに透過0を指定*/
  .fadeUpTrigger{
    opacity: 0;
  }
}


/* header pc */
/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
header {
	position: fixed;
	z-index: 110;
	transition: .3s;
}
.header {
  height: 80px;
  width: 100%;
  background-color: #FFF;
}
.header_wrap {
  height: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrap h1 {
  width: 20vw;
  min-width: 240px;
  line-height: 0;
}
.logo {
  display: inline-block;
  line-height: 0;
  width: 100%;
}
.logo img {
  width: 100%;
}
.header nav {
  display: block;
  margin-left: auto;
}
.header nav ul {
  display: flex;
  font-weight: 500;
}
.header nav ul a {
  display: block;
  font-size: 1.5rem;
  text-align: left;
  padding: 8px 20px;
  width: 100%;
  height: 100%;
}
/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/
@media screen and (min-width:1100px)  {
  .gnavi .menu a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
  }
  .gnavi .menu a:hover{
  color:#003F8E;
  }
  .gnavi .menu a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#003F8E;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
  }
  /*hoverの設定*/
  .gnavi .menu a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
  }
}
.nav__contact{
  position: relative;
  background-color: #CC0410;
  border-radius: 50px;
  color: #FFF;
  z-index: 0;
  overflow: hidden;
}
/* headerお問い合わせをhoverしたときのアニメーション */
.nav__contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 50px;
  background-color: #003F8E;
  z-index: -1;
  -webkit-transition: .5s;
  transition:  .5s;
}
.nav__contact:hover::before {
  width:100%;
}
.nav__contact a {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  padding: 8px 20px;
  width: 100%;
  height: 100%;
}
.more__button{
  background-color: #F6F6F4;
  width: 220px;
  line-height: 5.7rem;
  display: inline-block;
  text-align: center;
  letter-spacing: .04em;
  font-weight: 700;
  position: relative;
  border-left: 0.6rem solid #003F8E;
  color: #011F44;
  z-index: 0;
  padding-right: 1.2rem;
  margin-top: 4.0rem;
}
/* 詳細ボタンをhoverしたときのアニメーション */
.more__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background-color: #003F8E;
  z-index: -1;
  -webkit-transition: .4s;
  transition: .4s;
}
.more__button:hover {
  color: #FFf;
}
.more__button:hover::before {
  width:100%;
}
.more__button a {
  display: block;
  width: 100%;
  height: 100%;
}
/*矢印が縮む*/
.more__arrow{
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
}
.more__arrow::after{
  position: absolute;
  content: "";
  top: calc(50% - 4px);
  right: 24px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: transparent transparent #003F8E #003F8E;
  transform: rotate(-135deg);
  transition: .7s;
  z-index: -1;
}
.more__arrow:hover::after{
  right: 14px;
  border-color: transparent transparent #FFF #FFF;
}
/* 製品案内のhoverアニメーション */
/*== ボタン共通設定 */
.productList a {
  display: block;
  text-align: right;
}
.detail__btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 2px solid #003F8E;/* ボーダーの色と太さ */
  border-radius: 50px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
}
/*ボタン内pの形状*/
.detail__btn p {
  font-size: 1.6rem;
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#011F44;
  width: 100%;
  height: 100%;
  padding: 0.6rem 3.4rem 0.6rem 2.6rem;
  font-weight: 400;
}
.detail__btn:hover p {
	color:#FFF;
  font-weight: 500;
}
/*== ボタンの背景が流れる（斜め） */
.bgskew2::before {
	content: '';
  /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
  /*色や形状*/
	background:#003F8E;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.bgskew2:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}
/* 矢印の共通設定 */
.detail__arrow {
  position: relative;
}
.detail__arrow::before {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: transparent transparent #003F8E #003F8E;
  transform: rotate(-135deg);
  transition: .7s;
  z-index: 1;
}
/* 矢印のホバーアニメーション */
.detail__arrow:hover::before {
  border-color: transparent transparent #FFF #FFF;
  z-index: 1;
}
/* topふわぅとアニメーション*/
.imgFadeUp {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.loadImgFadeUp {
  display: none;
}
/* contact */
.contact {
  background-color: #043D85;
  color: #FFF;
  text-align: center;
  margin-top: 15.0rem;
}
.contact_inner {
  padding: 90px 20px 140px;
}
.contact__title {
  white-space: nowrap;
  font-size: 5.4rem;
  padding-bottom: 10px;
  font-weight: 800;
}
.contact__text {
  font-weight: 500;
  padding-bottom: 44px;
}
@media screen and (max-width: 768px){
  .contact {
    margin-top: 12.0rem;
  }
}
/*== コンタクトボタン共通設定 */
.contact_btn{
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 3px solid #FFF;/* ボーダーの色と太さ */
  border-radius: 50px;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
}
/*ボタン内pの形状*/
.contact_btn p {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFFFFF;
  font-weight: 400;
}
.contact_btn:hover p {
	color:#003F8E;
  font-weight: 500;
}
/*== 背景が流れる（斜め） */
.bgskew::before {
	content: '';
  /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
  /*色や形状*/
	background:#FFF;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}
@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}
/* footer */
.footer {
  width: 100%;
  background-color: #E7F6FF;
  /* padding: 8%; */
  padding: 7.5rem 4.6rem 2rem;
}
.footer__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 40px;
}
.footer__logo {
  margin-bottom: 24px;
  min-width: 300px;
}
.mgr-6 {
  margin-right: 6px;
}
.footer__address ul {
  font-family: Helvetica;
  margin-bottom: 50px;
}
.footer__address p {
  margin-bottom: 10px;
}
.footerNavigation {
  margin: 0 30px;
  color: #003F8E;
  font-weight: 500;
}
.footerNavigation span {
  color: #003F8E;
  font-weight: 600;
}
.footerNavigation p::before {
  content: '';
  width: 8px;
  height: 1px;
  display: inline-block;
  background-color: #222;
  position: absolute;
  top: calc(50% - 0px);
  right: calc(50% + 36px);
}
.footer__contact{
  position: relative;
  background-color: #CC0410;
  border-radius: 50px;
  color: #FFF;
  width: 138px;
  z-index: 0;
  overflow: hidden;
  margin-top: 4rem;
}
/* footerお問い合わせをhoverしたときのアニメーション */
.footer__contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 50px;
  background-color: #003F8E;
  z-index: -1;
  -webkit-transition: .5s;
  transition:  .5s;
}
.footer__contact:hover::before {
  width:100%;
}
.footer__contact a {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  padding: 8px 20px;
  width: 100%;
  height: 100%;
}
.footerContact__text {
  font-size: 1.5rem;
}
.footer__navigation {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}
.footerNavigation a:hover {
  border-bottom: 1.8px solid #003F8E;
}
/*スクロールリンクの形状*/
.scroll-top {
	/*表示位置*/
	position: fixed;
	right: 20px;
	bottom: 10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	visibility: hidden; 
	transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
	/*縦書き*/
	-webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	/*改行禁止*/
  white-space: nowrap;
	/*矢印の動き*/
	animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove{
  0%{bottom:20px;}
  50%{bottom:25px;}
  100%{bottom:20px;}
}
/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
	opacity: 1;
	visibility: visible;
}
/*リンク全体の aタグの形状*/
.scroll-top a {
	text-decoration: none;
	color: #666;
	text-transform: uppercase;
	font-size:0.9rem;
    display: block;
}
/*スクロールリンクの形状*/
.js-scroll a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 50px;
	background:#666;
}
.js-scroll a::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #666;
    transform: skewX(-31deg);
}
/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before{
	right:-11px;
}
/*ページトップリンクの形状*/
.js-pagetop a::after{
	content:"";
	position: absolute;
	top:0;
	right:0;
	width:1px;
	height: 50px;
	background:#666;
}
.js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}
/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before{
	right:0;
}
.footer__copyright {
  font-size: 1.3rem;
  font-family: helvetica;
  font-weight: 400;
  text-align: center;
  margin-top: 80px;
  color: #999;
}
@media screen and (max-width:970px) {
  .footer {
    padding: 5.5rem 2.6rem 2rem;
  }
  .footer__flex {
    flex-direction: column;
  }
  .footer__navigation {
    flex-direction: column;
    margin: 60px 0 20px;
  }
  .footerNavigation {
    margin: 10px 0;
  }
  .footerNavigation p::before {
    left: -18px
  }
}