@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Noto_Sans_JP;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

@font-face {
  font-family: Noto_Sans_light;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Light.ttf);
}

@font-face {
  font-family: Zen_Old_Mincho;
  src: url(../font/Zen_Old_Mincho/ZenOldMincho-Regular.ttf);
}

/* グローバルナビゲーション */

header {
  position: fixed;
  width: 15%;
  height: 44vw;
}

header h1 {
  height: 16vw;
  padding-top: 20%;
}


header h1 a {
  display: block;
  width: 35%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
}

header h1 a img {
  height: 100%;

}

header nav ul {
  list-style: none;
  width: 100%;
  height: 20vw;
}

header nav ul li {
  width: 100%;
  height: 4vw;
}

header nav ul li a {
  display: inline-block;
  width: 70%;
  height: 2.7vw;
  padding-top: 1.3vw;
  padding-left: 30%;
  text-decoration: none;
  color: #202020;
  font-size: 1vw;
  font-family: Noto_Sans_JP;
  font-weight: bold;
  transition: 0.5s;
}

header nav ul li a:hover {
  background-color: #17184b;
  color: #fff;
  transition: 0.5s;
}


.sns-icon {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 6vw;
}

.fa-brands {
  display: inline-block;
  font-size: 2.5vw;
  color: #202020;
  transition: 1s;
}


.fa-square-x-twitter:hover {
  color: #000;
  transition: 1s;
}

.fa-facebook:hover {
  color: #3B5998;
  transition: 1s;
}

.fa-instagram:hover {
  color: #CF2E92;
  transition: 1s;
}

.fa-youtube:hover {
  color: #FF0000;
  transition: 1s;
}


/* セクション  */

main {
  width: 85%;
  margin-left: auto;
  padding-top: 3%;
  background-image: url(../images/BGC-Jupiter.jpg);
  background-attachment: fixed;
  font-family: Noto_Sans_JP;
}

section {
  width: 100%;
  height: 70vw;
}



section h2 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2%;
  text-align: center;
  color: #fff;
  font-size: 2vw;
}

.img {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;
}


.img img {
  vertical-align: bottom;
  width: 100%;
  border-radius: 2vw;
}

main section .main-content {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8vw;
  line-height: 2;
}


section h3 {
  width: 70%;
  margin-bottom: 3%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

section h3::before {
  content: url(../images/ochoko.png);
  margin-right: 0.5em;
}


section p {
  width: 70%;
  margin: 0 auto;
  font-size: 1vw;
  color: #fff;
}



/* フッター部分 */
footer {
  width: 85%;
  height: 30vw;
  margin-left: 15%;
}

.footer-nav-container {
  display: flex;
  width: 100%;
  height: 18vw;
  margin-right: auto;
}

.footer-nav1 {
  width: 20%;
  height: 13vw;
  margin-top: 6%;
  margin-left: 5%;
  font-family: NotoSerifJP-Regular;
}

.footer-nav1 ul li {
  display: block;
  list-style: none;
  margin-top: 1.5vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 1vw;
}

.footer-nav1 ul li a {
  display: block;
  text-decoration: none;
  width: 10vw;
  font-family: NotoSerifJP-Regular;
  font-weight: bold;
  color: #202020;
  margin-right: auto;
}

.footer-nav1 ul li a::after {
  display: block;
  content: "";
  width: 0%;
  height: 0.2vw;
  background-color: #838B0D;
  transition: 1s;
}

.footer-nav1 ul li a:hover::after {
  width: 100%;
  transition: 1s;
}

address {
  width: 95%;
  height: 7vw;
  margin-top: 3%;
  margin-left: 5%;
  font-style: normal;
  font-size: 1.3vw;
  font-family: NotoSerifJP-Regular;
  line-height: 1.5;
  font-weight: bold;
  color: #202020;
}

footer p {
  width: 100%;
  line-height: 1.7;
  text-align: center;
  color: #202020;
}