/* 全てのページで共通のCSS */
/* 主にヘッダーとフッター */
body,html{
  width:100%;
  overflow-x: hidden;
  background-color: white;
}
body{
  overflow-y: hidden;
}
*{
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.container{
  max-width:800px;
  width:100%;
  display:flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}


/* ヘッダー */

header{
  position: fixed;
  background-color: #0C1864;
  width:100%;
  height:86px;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index:1000;
  transition: 1.5s;
}
.header-fadein{
  transition-delay: 2.5s;
  opacity:1;
}
.header-logo{
  position: absolute;
  left:100px;
  transition:1.5s;
  transition-delay: 2.5s;
}
.header-logo img{
  width:200px;
  transition:1.5s;
  transition-delay: 2.5s;
}
.header-list > ul{
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom:0;
  right:140px;
  height:46px;
  background-color: white;
}
.header-list > ul > li > a{
  display: block;
  text-align: center;
  line-height:46px;
  font-weight: bold;
  font-size: 28px;
  padding:0 20px;
  transition: .2s;
}
.header-list>ul>li>a:hover{
  transition: .1s;
}
.header-list>ul>li:hover{
  opacity:.5;
  transition:.1s;
}
.header-list>ul>li:nth-child(7):hover{
  opacity:1;
  transition:.1s;
}


.header-list > ul > li:nth-child(1){
  color:white;
  background-color: #3C9FE5;
}
.header-list > ul > li:nth-child(2){
  color: white;
  background-color: #6B3911;
}
.header-list > ul > li:nth-child(3){
  color:white;
  background-color: #E83E33;
}
.header-list > ul > li:nth-child(4){
  color:white;
  background-color: #336B39;
}
.header-list > ul > li:nth-child(5){
  color:white;
  background-color: #8BC438;
}
.header-list > ul > li:nth-child(6){
  color:white;
  background-color: #F19733;
}
.header-list > ul > li:nth-child(7){
  cursor: pointer;
  color:white;
  background-color: #0062AF;
  position: relative;
}

.header-list > ul > li:nth-child(7)>a{
  font-size: 22px;
}
.header-list > ul > li:nth-child(8){
  color:white;
  background-color: rgb(255, 0, 128);
}
.header-list > ul > li:nth-child(8) a{
  font-size: 18px;
  -webkit-text-stroke: 0.5px white;
}

.header-contact{
  position: absolute;
  right:0;
  width:140px;
  letter-spacing: 1px;
}
.header-contact{
  background-color: white;
}
.header-contact a{
  background-color: #93D4F3;
  color: #0C1864;
  display: block;
  text-align: center;
  line-height:86px;
  font-weight: bold;
  transition: .2s;
}
.header-contact a:hover{
  opacity:.5;
  font-size:20px;
  transition: .1s;
}

.header-left-mark{
  position: absolute;
  height:100%;
  left:0;
  top:0;
  transition:1.5s;
  transition-delay: 2.5s;
}
.header-left-mark img{
  height:100%;
}
.header-menu{
  display:none;
  color:white;
  z-index:2000;
  position: absolute;
  right:30px;
  font-size:40px;
  cursor: pointer;
  transition:1.5s;
  transition-delay: 2.5s;
}

/* ハンバーガーメニュー */
#menu{
  position: absolute;
  top:-200vh;
  right:0;
  color:white;
  background-color: #0C1864;
  padding:8px;
  box-sizing: border-box;
  width:100%;
  min-height:100%;
  z-index:10000;
  transition: .6s;
}
#hide{
  position: absolute;
  right:30px;
  top:20px;
  font-size:50px;
  cursor: pointer;
  z-index:12000;
}
body.menu-open #menu{
  top:0;
  position: fixed;
}
body.menu-open{
  overflow-y: hidden;
  overflow-x: hidden;
}

#menu .menu-circle{
  max-width: 700px;
  position: absolute;
  margin:0 auto;
  top:-10%;
  height:90%;
  left:50%;
  transform: translateX(-50%);
}
#menu .element{
  width:100px;
}
#menu .element img{
  width:100%;
}
#menu .link-circle-logo{
  width:200px;
}

#menu .about-btn a{
  position: absolute;
  display: block;
  bottom:105px;
  left:10%;
  width:80%;
  height:60px;
  background-color:rgb(255, 0, 128);
  text-align: center;
  line-height: 60px;
  font-size:24px;
  color: white;
  font-weight: bold;
  transition: .1s;
  letter-spacing: 1px;
}

#menu .contact-btn a{
  position: absolute;
  display: block;
  bottom:30px;
  left:10%;
  width:80%;
  height:60px;
  background-color:#93D4F3;
  text-align: center;
  line-height: 60px;
  font-size:24px;
  color: #0C1864;
  font-weight: bold;
  transition: .1s;
  letter-spacing: 1px;
}
#menu .contact-btn a:hover{
  background-color: #aeddf3;
  transition: .1s;
}
#menu .technology-menu {
  display: flex;
  align-items: baseline;
  background: #019ee5;
  position: absolute;
  font-size:24px;
  justify-content: center;
  left: 10%;
  width: 80%;
  text-align: center;
  bottom: 180px;
  padding: 10px 15px;
}
#menu .technology-menu ul {
  text-align: left;
  margin-left: 1.4rem;
}
#menu .technology-menu ul li a,
#menu .technology-menu ul li a i {
  font-size: 20px;
}

/* フッター */
footer{
  position: relative;
  background-color: #0C1864;
  width:100%;
  height:125px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-logo{
  margin-bottom: 15px;
}
.footer-address{
  display: flex;
  flex-direction: row;
}
.footer-address p{
  color:white;
  font-weight: bold;
  font-size: 14px;
  margin:5px 10px;
}
.footer-content small{
  font-size: 10px;
  color:#fff;
}

.footer-left-mark{
  position: absolute;
  left:0;
}
.footer-right-mark{
  position: absolute;
  right:0;
}
.footer-link-list{
  margin: 10px 0 30px;
}
.footer-link-list ul{
  display: flex;
  justify-self: center;
  align-items: center;
  color:white;
  font-size: 24px;
}
.footer-link-list ul li a i{
  font-size: 16px;
  padding-right: 3px;
}
.footer-link-list ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-link-list ul li{
  margin: 0 10px;
}

.bottom-section{
  width:100%;
  background-color: #7CCCF1;
}

/* 技術セクション */
.technology{
  background-color: #7CCCF1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top:50px;
  box-sizing: border-box;
}
.technology h1{
  font-size:44px;
  font-weight: 900;
  color:white;
  padding:30px 0;
}
.technology-link{
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width:650px;
}
.technology-link a{
  margin:14px;
}
.technology-link a img{
  width:188px;
  height:70px;
}
.technology-link a img:hover{
  opacity:.7;
  transition: .2s;
}
/* link-listセクション */
.link-list{
  background-color: #7CCCF1;
  width:100%;
  min-height:300px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  box-sizing: border-box;
}
.link-list h1{
  font-size:44px;
  font-weight: 900;
  color:white;
  padding:16px 0 30px;
}

.link-list-section{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width:800px;
  height:100%;
}

.link-list-section a{
  margin:14px;
  background-color: white;
  border: solid 1px #000;
}

.link-list-section a img{
  width:188px;
  height:70px;
  border-radius: 3px;
  transition: .2s;
}
.link-list-section a img:hover{
  opacity:.5;
  transition: .2s;
}
/* link-circleセクション */
.link-circle-section{
  max-width:800px;
  width:100%;
  height:900px;
  position: relative;
  margin-top: -50px;
}
.link-circle-section i{
  transition:.2s;
}
.link-circle-section i:hover{
  transform: scale(1.2);
  opacity:.7;
  transition:.2s;
}
.element{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width:120px;
}
.element img{
  width:100%;
}
.link-circle-logo{
  width:250px;
  top:51%
}
.link-circle-water{
  top:26%;
  width:110px;
}
.link-circle-light{
  top:40%;
  left:75%;
}
.link-circle-green{
  top:62%;
  left:75%;
}
.link-circle-tree{
  top:76%;
}
.link-circle-fire{
  top:62%;
  left:25%;
  width:110px;
}
.link-circle-soil{
  top:40%;
  left:25%;
}



.header-list ul li.menu__single {
  position: relative;
}
.menu__second-level li a{
  font-size:16px;
  line-height: 22px;
}
.menu__second-level>li>a:hover{
  opacity:.5;
}
.menu__second-level li a i{
  padding:2px;
  font-size:12px;
}
li.menu__single ul.menu__second-level {
  max-height: fit-content;
  display: none;
  width:auto;
  height:auto;
  position: absolute;
  background: #0062AF;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width:200px;
  padding:5px;
}

li.menu__single:hover ul.menu__second-level {
  display: block;
  opacity: 1;
}


@media(max-width:650px){
  .footer-link-list ul{
    font-size: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-link-list ul li a i{
    padding-right: 3px;
  }
  .footer-link-list ul li{
    margin: 0 5px;
    white-space: nowrap;
    line-height: 30px;
  }
}