@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.8;
  text-align: center;
}
section h2 {
  font-size: 10.4rem;
  color: #BCBCBC;
  display: inline-block;
}
section h3 {
  font-size: 2.2rem;
}

a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

.main {
  z-index: 1;
  position: relative;
}





/*
.pagetop-button_top-wrap {
  padding: 20px 15px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 996;
}
.pagetop-button_top {
  margin: 0 auto;
  padding-top:15px;
  display: none;
}
.pagetop-button_top a {
  opacity: 1.0;
}
*/

h1 {
  width: 10%;
}


.header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(255,255,255,0.8);
  border-bottom: #333 25px solid;
  height: 100px;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1126px;
  margin: 0 auto;
}

.header-logo img {
  width: 65px;
  min-width: 57%;
}















/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
.header_nav {
	background:#fff;
	color:#fff;
	text-align: center;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
.header_nav-list a{
	display: block;
	text-decoration: none;
	color: #333;
  font-weight: 600;
	padding:20px 35px;
	transition:all .3s;
}

nav ul li a:hover{
	color:#1ed3ce;	
}





/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:79px;
	z-index: 4;
    /*形状を指定*/
	background:#333;
	width:340px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#1ed3ce;
}





/*==768px以下の形状*/



@media screen and (max-width:768px){
  
/*
  .nav {
    display: none;
  }
*/
  
  
  
  
  /*　ハンバーガーボタン　*/

  /*========= ナビゲーションのためのCSS ===============*/

  #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 2;
    /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#333;
    /*動き*/
    transition: all 0.6s;
    /*表示させる */
    display: block;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive{
    right: 0;
  }





  /*========= ボタンのためのCSS ===============*/
  .openbtn1{
    position:fixed;
    z-index: 997;/*ボタンを最前面に*/
    top:10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height:50px;
  }

  /*×に変化*/	
  .openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
    }

  .openbtn1 span:nth-of-type(1) {
    top:15px;	
  }

  .openbtn1 span:nth-of-type(2) {
    top:23px;
  }

  .openbtn1 span:nth-of-type(3) {
    top:31px;
  }

  .openbtn1.active1 span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn1.active1 span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active1 span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
	.header_nav {
		padding: 0;
	}
	
	.header_nav-list_wrap {
		display: block;
    top: 60px;
    position: relative;
	}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
    position: relative;
    left:0;
    top:0;
    width:100%;
    min-width: 320px;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
  }

  .header_nav-list a{
    border-bottom:1px solid #ccc;
  }

  .header_nav-list a {
    color: #fff;
  }  
  
  .header_nav-list_box {
    background-color: #777;
  }
  
}








/*footer*/

.footer {
  background-color: #333333;
  padding-top: 70px;
}
.footer img {
  width: 60px;
  height: 60px;
  margin-right: 10%;
}
.footer-copy {
  padding: 80px 0 20px;
  color: #fff;
  font-size: 1.0rem;
}
.footer-nav {
  display: flex;
  color: #fff;
  justify-content: center;
}
.footer-content_nav {
  border-bottom: #fff 2px solid;
}
.footer-nav ul {
  display: flex;
  padding-bottom: 10px;
}
.footer-nav li {
  text-align: left;
}
.footer-nav a {
  text-decoration: none;
}
.footer-service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-service_list ,.footer-company_list {
  display: flex;
  flex-direction: column;
}
.footer-nav_name {
  font-size: 1.4rem;
  font-weight: 600;
  padding-bottom: 10px;
}
.footer-content_nav-list {
  padding-right: 50px;
}
.footer-nav_link {
  font-size: 1.2rem;
  padding-bottom: 5px;
}
.footer-content_check {
  display: flex;
  justify-content: space-evenly;
  padding-top: 25px;
}

.footer-nav_link a {
  color: #fff;
}
.footer-nav_link-line ,.footer-nav_arrow {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
}
.footer-nav_link-line::before {
  background-color: #fff; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 10px; /* 横線の長さ */
}
.footer-nav_link-line::before {
  margin-right: 15px; /* 文字との余白 */
}
.footer-nav_arrow::after {
  content: "";
  background-image: url("../images/top/nav-arrow_img.png");  
  vertical-align: middle;
  margin-left: 5px;
  width: 13px;
  height: 17px;
}
.footer-contact {
  border: #fff 1px solid;
  background-color: #fff;
  padding: 5px 10px;
  color: #333;
  margin-top: -5px;
}
.footer-nav_name-company a ,.footer-nav_name-news a {
  color: #fff;
}
.footer-nav_check {
  border: 1px #fff solid;
  padding: 5px 15px;
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 8% 30px;
  }
  .footer-nav {
    display: flex;
    color: #fff;
    flex-direction: column;
  }
  .footer-content_nav {
    display: flex;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav_name {
    font-size: 1.6rem;
  }
  .footer-nav_link {
    font-size: 1.4rem;
  }
  .footer-content_nav-list {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .footer-contact {
    padding: 10px 20px;
    margin-top: 10px;
  }
  .footer-content_check {
    display: flex;
    flex-direction: column;
  }
  .footer-nav_check {
    margin-bottom: 30px;
    padding: 13px 15px;
    font-size: 1.6rem;
  }
  .footer-copy {
    padding-top: 50px;
  }
}


@media (max-width: 1210px) {
  .footer-nav {
    display: flex;
    flex-direction: column;
    padding: 0 4%;
  }
  .footer-nav ul {
    display: flex;
    padding-bottom: 10px;
    justify-content: space-evenly;
  }
  .footer img {
    margin-bottom: 20px;
  }
  
  .footer-content_nav-list {
    padding-right: 0;
  }
  
  
}






/*トップへ戻るボタン*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}








/* フワッと下から */



.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}




