@charset "UTF-8";

@media screen and (min-width: 1921px) {
  body {
    max-width: unset;
    margin: 0 auto;
  }
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
  opacity: 0.7;
}

body {
  max-width: 1920px;
  display: block;
  margin: 0 auto;
  font-family: serif;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic" , "Kaku Gothic ProN", "sans-serif";
  color: #0d1f38;
  font-size: 16px;
}
h2 {
  font-weight: bold;
}


/* ローディング */

.loading,
.loading::before,
.loading::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
}


.loading {
  margin: -25px 0 0 -25px;
  height: 50px;
  width: 50px;
  -webkit-animation: animation-rotate 1000ms linear infinite;
  -moz-animation: animation-rotate 1000ms linear infinite;
  -o-animation: animation-rotate 1000ms linear infinite;
  animation: animation-rotate 1000ms linear infinite;
}

.loading::before {
  content: "";
  margin: -23px 0 0 -23px;
  height: 44px;
  width: 44px;
  -webkit-animation: animation-rotate 1000ms linear infinite;
  -moz-animation: animation-rotate 1000ms linear infinite;
  -o-animation: animation-rotate 1000ms linear infinite;
  animation: animation-rotate 1000ms linear infinite;
}

.loading::after {
  content: "";
  margin: -29px 0 0 -29px;
  height: 56px;
  width: 56px;
  -webkit-animation: animation-rotate 2000ms linear infinite;
  -moz-animation: animation-rotate 2000ms linear infinite;
  -o-animation: animation-rotate 2000ms linear infinite;
  animation: animation-rotate 2000ms linear infinite;
}



@-webkit-keyframes animation-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes animation-rotate {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes animation-rotate {
  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes animation-rotate {
  100% {
    transform: rotate(360deg);
  }
}

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 2s;
  background-color: #000000;
  /* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 0s infinite ease-in-out;
}
p.loading-text{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 14px;
  width:fit-content;
  color: #4D4D4D;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
 

/* ローディングend */

header {
  background: #ffffff;
  margin: 0px auto;
  height: 100px;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.header__inner {
  margin: 0 auto;
  width: 1400px;
  max-width: 94%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
h1.logo {
  top: 13px;
  left: 14px;
  width: 460px;
  height: 76px;
  line-height: 1.4;
}
h1.logo a {
  display: flex;
  height: 100%;
  align-items: center;
}
h1.logo img {
  width: 75px;
  height: 75.3px;
}
h1.logo p {
  font-size: 25px;
  font-weight: bold;
  color: #0d1f38;
  margin-left: 22px;
  margin-top: 10px;
  width: 365px;
  line-height: 1.4;
}
h1 p span {
  display: block;
  font-size: 18px;
  color: #0d1f38;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.header-nav {
  width: 55%;
  justify-content: space-around;
  align-items: center;
}
.header-nav li a {
  color: #0d1f38;
  font-weight: bold;
}
ul.gnavi li a:hover {
  color: #0089ff;
  position: relative;
}
ul.gnavi li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: auto;
  height: 2px;
  background: #0089ff;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
ul.gnavi li a:hover::after {
  position: relative;
  content: " ";
  display: block;
  z-index: 10;
}
ul.gnavi {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
/*  list-style: none; */
}
ul.gnavi li {
  margin: 0 4px;
}
ul.gnavi li a {
  display: block;
  padding: 0px;
  text-decoration: none;
  color: #333;
}

/* ドロップダウンメニュー */
li.item:hover .child,
li.item:hover .child2 {
  visibility: visible;
}
li.nav-list {
  position: relative;
  z-index: 10;
  line-height: 1.4;
}
.globalMenuPc-in ul.h_nav {
  display: flex;
  justify-content: space-between;
  flex: 1;
  white-space: nowrap;
  padding-top: 30px;
}

ul.child {
  visibility: hidden;
  width: 450px;
  padding: 32px 0 30px 26%;
  position: absolute;
  left: -30px;
  background: #fff;
  z-index: 5;
}
ul.child2 {
  visibility: hidden;
  width: 170px;
  padding: 32px 0 12px 26%;
  position: absolute;
  left: -30px;
  background: #fff;
  z-index: 5;
}
ul.child li a {
  width: fit-content;
}
ul.child2 li a {
  width: fit-content;
}
ul.child li,
ul.child2 li {
  border-left: unset !important;
  border-radius: unset;
  padding: 10px 0;
}
ul.child li a:hover::after,
ul.child2 li a:hover::after {
  position: relative;
  content: " ";
  display: block;
  z-index: 10;
}
a.list-link {
  font-size: 15px;
  font-weight: bold;
  color: #0089ff !important;
}

/* ドロップダウンメニュー end*/
div.content {
  width: 1100px;
  max-width: 94%;
  margin: 0 auto;
}

section.main {
  position: relative;
}
section.main div.first_view {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: calc((100vh - 90px));
  overflow: hidden;
}
section.main div.first_view::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-image: radial-gradient(#111 30%, transparent 31%),
    radial-gradient(#111 30%, transparent 31%);
  background-size: 3px 3px;
  background-position: 0 0, 2px 2px;
  overflow: hidden;
}
section.main div.first_view video {
  object-fit: cover; /* 要素いっぱいに画像を表示（はみ出た部分は削除） */
  width: 100%; /* 親要素の幅いっぱい */
  height: 100%;
}
section.main div.first_view_sp{
  display: none;
}
div.top-title {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white; /* 仮 */
}
div.top-title p.phrase {
  font-size: 68px;
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
  z-index: 10;
  position: relative;
  left: -18px;
  letter-spacing: 0.1em;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
}
div.top-title p.phrase span {
  background: rgba(0, 157, 255, 0.6) 0% 0% no-repeat padding-box;
  display: inline-block;
  height: 50px;
  line-height: 20px;
}
div.top-title p.title-1 {
  font-size: 29px;
  position: relative;
  margin-top: 50px;
  text-align: center;
  left: 20px;
}
div.top-line {
  position: relative;
}
div.top-line p span.le {
  display: inline-block;
  position: absolute;
  top: 22px;
  left: 85px;
  width: 110px;
  height: 1px;
  background-color: #fff;
}
div.top-line p span.ri {
  display: inline-block;
  position: absolute;
  top: 22px;
  right: 85px;
  width: 110px;
  height: 1px;
  background-color: #fff;
}

/* div.top-title p.title-1::before {
  content: "";
  width: 110px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% + 138px);
}
div.top-title p.title-1::after {
  content: "";
  width: 110px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 2px);
  right: calc(50% + 142px);
} */
div.top-title p.title-2 {
  font-size: 32px;
  font-weight: bold;
  padding-top: 90px;
}
div.top-title p.title-3 {
  font-size: 25px;
  font-weight: bold;
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -27px;
  top: -20px;
  /*テキストの形状*/
  color: #eee;
  font-size: 20px;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.2s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

main {
  padding-top: 100px;
}
section.team {
  background: no-repeat url(img/earth_3.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 calc(50% - 50vw);
  object-fit: contain;
  background-size: 100% 100%;
}
section.team p {
  color: #fff;
}
section.team p.title-2 {
  margin: 0 auto;
  width: fit-content;
  padding: 111px 0 18.5px 0;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}
.line {
  display: block;
  position: relative;
}
.line::after {
  background: linear-gradient(to right, #fff 0%, #fdfdfd 50%, #f9fafa 100%);
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  transform: translateX(-50%);
  transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  bottom: 0px;
  left: 50%;
}
.line.is-animated::after {
  width: 50%;
}

section.team p.title-3 {
  margin: 0 auto;
  width: fit-content;
  padding: 16px 0 193px 0;
  font-size: 20px;
  position: relative;
  font-weight: 400;
  color: #0089ff;
}

br.sp {
  display: none;
}
section.news {
  padding: 50px 0;
  background: #f4f4f4;
}
section.news div.post {
  width: fit-content;
  max-width: 96%;
  margin: 0px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
}
section.news div.post h3 {
  font-size: 33px;
  line-height: 1;
  padding: 60px 33px 66px 60px;
  position: relative;
}
section.news div.post h3 span {
  font-size: 16px;
}
section.news div.post h3::after {
  content: "";
  display: block;
  width: 1px;
  height: 120px;
  background-color: #142733;
  position: absolute;
  top: calc((50% - 60px));
  right: 0px;
}
section.news div.post ul {
  padding: 36px 71px 36px 33px;
  line-height: 3;
}
section.news div.post ul li {
  font-size: 16px;
  font-weight: bold;
}
section.news div.post ul li span {
  margin-left: 30px;
}
a.loop-link {
  text-align: center;
  display: block;
  margin: 0 auto;
  padding-top: 40px;
  width: fit-content;
  border-bottom: 1px solid #142733;
  font-size: 14px;
  font-weight: bold;
  color: #0d1f38;
  line-height: 1em;
}

section.theme-1 {
  position: relative;
  background: linear-gradient(
    180deg,
    #f4f4f4 0%,
    #f4f4f4 50%,
    #fff 50%,
    #fff 100%
  );
  overflow-x: hidden;
}
img.sp-bg-ti {
  display: none!important;
}

section.theme-1 div.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

div.content h2 {
  color: #fff;
  font-size: 50px;
  text-align: center;
  padding-bottom: 10px;
}
section.theme-1 div.content h3 {
  color: #0089ff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

section.subhead-1 {
  margin: 100px auto 0 auto;
}
div.energy-box {
  margin: 0px auto 150px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
div.energy-box div p {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.8;
}
img.electricity-img {
  width: 200px;
  height: 132px;
  margin-top: 55px;
}
img.gas-img {
  width: 150px;
  height: 132px;
  margin-top: 55px;
}
img.earth-img {
  width: 386px;
  height: 386px;
  margin-left: 20px;
}

div.shigen {
  position: relative;
  float: right;
  width: calc(100% - 15%);
}
div.shigen div {
  overflow-x: hidden;
}
div.shigen h4 {
  position: absolute;
  top: -30px;
  left: -100px;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  width: 510px;
}
div.shigen h4 span {
  display: block;
  background: #c4ad82;
}
div.shigen p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
div.shigen p span {
  display: block;
  background: #49515c;
}
div.shigen p.text-1 {
  position: absolute;
  top: 65px;
  left: -100px;
  height: 26px;
  line-height: 26px;
  width: 420px;
  text-align: center;
}
div.shigen p.text-2 {
  position: absolute;
  top: 120px;
  left: -100px;
  height: 26px;
  line-height: 26px;
  width: 380px;
  text-align: center;
}

div.mondai {
  margin: 70px 0;
  position: relative;
  float: left;
  width: calc(100% - 15%);
}
div.mondai div {
  overflow-x: hidden;
}
div.mondai h4 {
  position: absolute;
  top: -30px;
  right: 105px;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  width: 270px;
  color: #ffffff;
}
div.mondai h4 span {
  background: #77593b;
  display: block;
}
div.mondai p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
div.mondai p span {
  background: #49515c;
  display: block;
}
div.mondai p.text-3 {
  position: absolute;
  top: 65px;
  right: 50px;
  height: 26px;
  line-height: 26px;
  width: 325px;
  text-align: center;
}
div.mondai p.text-4 {
  position: absolute;
  top: 120px;
  right: -104px;
  height: 26px;
  line-height: 26px;
  width: 480px;
  text-align: center;
}
div.mondai img {
  object-fit: cover;
  height: auto;
}

div.sun {
  display: flex;
  justify-content: center;
  margin: 0 calc(50% - 50vw);
  width: 100%;
  overflow: hidden;
}
div.sun-left {
  width: 35.7%;
  height: 100%;
}
div.sun img.sun-img {
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 1px solid #030200;
  object-fit: cover;
  line-height: 720px;
  height: 720px;
}
div.sun div.sun-right {
  background: linear-gradient(#49515c, #0d1f38);
  width: 64.3%;
  padding: 65px 0 130px 50px;
}

div.sun div p.text-5 {
  font-size: 55px;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}

div.sun div p.fa1-5 {
  padding-bottom: 0;
  width: 750px;
  max-width: 98%;
}

p.text-5 span.fa-sun3 {
  background: #d80000;
  display: inline;
  height: 50px;
}
p.text-5 span ruby rt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1.8em;
  padding-left: 54px;
  padding-bottom: 10px;
  display: block;
}

.energy {
  display: block;
  position: relative;
  padding-top: 30px;
}
.energy::before {
  background: #d80915;
  content: "";
  display: inline-block;
  height: 1px;
  width: 0%;
  transform: translateX(-50%);
  transition: 5s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  bottom: 0px;
  left: 373px;
}
.energy.is-animated::before {
  width: 750px;
}

p.text-6 {
  color: #d80915;
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
  position: relative;
  width: 750px;
  max-width: 65%;
}

p.text-7 {
  color: #fff;
  margin-top: 20px;
  line-height: 2.2;
  font-size: 18px;
  font-weight: bold;
}

div.chijyo {
  background-image: url(img/all.jpg);
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 120px 0 200px 0;
}
div.chijyo div {
  width: fit-content;
  max-width: 94%;
  margin: 0px auto;
  background: #fff;
}
div.chijyo div p.text-8 {
  font-size: 35px;
  font-weight: bold;
  color: #d80915;
  width: fit-content;
  margin: 0px auto;
  padding: 80px 0 45px 0;
  position: relative;
}
div.chijyo div p.text-8 span.menber-line:before {
  bottom: -35px;
}

div.chijyo div p.text-9 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 42px 50px 50px 50px;
}
p.text-10 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: fit-content;
  padding-top: 150px;
  margin: 0 calc(50% - 630px);
}

section.theme-2 {
  position: relative;
  width: 100%;
  top: -250px;
  margin-bottom: -250px;
  overflow-x: hidden;
}

section.theme-2 div.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
div.content h2 {
  color: #fff;
  font-size: 50px;
  text-align: center;
  padding-bottom: 10px;
}
section.theme-2 div.content h3 {
  color: #0089ff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

section.fusion {
  margin: 100px auto;
}
section.fusion p {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
section.fusion img {
  max-width: 77%;
  width: 900px;
  height: 470px;
  margin: 50px auto 0 auto;
  display: block;
}
p.fusion-text-2 {
  margin: 90px auto 70px auto;
}

section.fusion-3box {
  background: #f4f4f4;
  position: relative;
  text-align: center;
}
section.fusion-3box::before {
  position: absolute;
  top: 0;
  left: 50%;
  border: solid transparent;
  content: " ";
  border-top-color: #fff;
  border-width: 60px;
  margin-left: -60px;
}

div.energy-3box {
  display: flex;
  justify-content: space-between;
  padding: 150px 0;
  margin: 0px auto;
}
div.energy-3box p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  width: 200px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
div.box1,
div.box2,
div.box3 {
  width: 300px;
}
div.box1 img,
div.box2 img,
div.box3 img {
  width: 300px;
  height: 280px;
}
div.box1 p::before {
  position: absolute;
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  left: -100px;
  width: 70px; /*画像の幅*/
  height: 95px; /*画像の高さ*/
  background-image: url(img/point1_1.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
div.box2 p::before {
  position: absolute;
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  left: -100px;
  width: 70px; /*画像の幅*/
  height: 95px; /*画像の高さ*/
  background-image: url(img/point2_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
div.box3 p::before {
  position: absolute;
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  left: -100px;
  width: 70px; /*画像の幅*/
  height: 95px; /*画像の高さ*/
  background-image: url(img/point3_3.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

section.peace {
  background-image: url(img/people-happy-support-stacking-community_s.jpg);
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  object-fit: contain;
  background-size: 100% 100%;
  padding: 107px 0 89px 0;
  position: relative;
}
section.peace::before {
  position: absolute;
  top: 0px;
  left: 50%;
  border-style: solid;
  border-color: #f4f4f4 transparent transparent;
  border-image: initial;
  content: " ";
  border-width: 60px;
  margin-left: -60px;
}
section.peace div.bg-black {
  background: #000000;
  background: rgba(0, 0, 0, 0.3);
  width: 1000px;
  max-width: 88%;
  margin: 0 auto;
}
p.peace-text1 {
  font-size: 35px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding: 50px 185px 0 185px;
}
div.black-sp,
.black-sp {
  display: none !important;
}
div.bg-black img {
  width: 150px;
  height: 150px;
}
div.bg-black div.black-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 56px 0 51px 0;
  margin: 0 85px 0 84px;
}
p.peace-text2 {
  color: #ffffff;
  width: 475px;
  height: 150px;
  font-size: 18px;
  font-weight: bold;
}

section.fusion-movie {
  margin: 50px auto 0 auto;
  background-image: url("img/fusion-min.gif");
  background-size: cover;
  background-position: center center;
  padding: 180px 0 200px 0;
}
section.fusion-movie p.fusion-movie-text1 {
  text-align: center;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.8;
}
p.fusion-movie-text1 span {
  background: #d80000;
  padding: 10px 0;
}
p.fusion-movie-text2 {
  background: #384f6f;
  padding: 25px 50px;
  color: #fff;
  line-height: 1.8;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  width: 655px;
  max-width: 80%;
  margin: 50px auto 0 auto;
}

section.topics-1 {
  background: #f4f4f4;
  padding: 60px 0 90px 0;
}
section.topics-1 div.topics-title {
  width: 950px;
  max-width: 88%;
  margin: 0 auto;
  height: 185px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border: 2px solid #0d1f38;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
}
section.topics-1 div.topics-title::before {
  position: absolute;
  content: "";
  display: inline-block;
  left: -17px;
  top: 50px;
  width: 41px;
  height: 35px;
  background-image: url(img/triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
section.topics-1 div.topics-title h3 {
  font-size: 30px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: bold;
  padding: 20px 50px 80px 60px;
  position: relative;
}
section.topics-1 div.topics-title h3::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background-color: #0d1f38;
  position: absolute;
  top: 75px;
  left: 39%;
}
div.topics-title p.topics-text1 {
  font-size: 20px;
  font-weight: bold;
  color: #0d1f38;
}
div.topics-title p.topics-text2 {
  font-size: 16px;
  font-weight: 400;
  color: #0d1f38;
  width: 700px;
  padding-top: 10px;
  padding-right: 50px;
  line-height: 1.8;
}

section.goudou-team {
  background-image: url(img/title_v_bg.jpg);
  margin: 0 calc(50% - 50vw);
  object-fit: contain;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  padding: 75px 0 100px 0;
}
section.goudou-team img {
  width: 684px;
  height: 235px;
  display: block;
  margin: 0 auto;
}
section.goudou-team p {
  width: 685px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 28px 0;
  margin: 40px auto 0 auto;
}
section.topics-2 {
  padding: 80px 0 90px 0;
  background: #f4f4f4;
}
section.topics-2 div.topics-title {
  width: 950px;
  max-width: 88%;
  margin: 0 auto;
  height: 220px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border: 2px solid #0d1f38;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
}
section.topics-2 div.topics-title::before {
  position: absolute;
  content: "";
  display: inline-block;
  left: -17px;
  top: 54px;
  width: 41px;
  height: 35px;
  background-image: url(img/triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
section.topics-2 div.topics-title h3 {
  font-size: 30px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 0px 50px 90px 60px;
  position: relative;
}
section.topics-2 div.topics-title h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0d1f38;
  position: absolute;
  top: 52px;
  left: 40%;
}
div.topics-title p.topics2-text1 {
  font-size: 20px;
  font-weight: bold;
  color: #0d1f38;
}
div.topics-title p.topics2-text2 {
  font-size: 16px;
  font-weight: 400;
  color: #0d1f38;
  width: 700px;
  padding-top: 10px;
  padding-right: 50px;
  height: 46px;
  line-height: 1.8;
}
div.topics-title a {
  color: #0089ff;
  font-size: 16px;
  text-align: right;
  padding-top: 20px;
  padding-right: 50px;
  display: block;
}

section.introduction {
  background: #49515c;
  padding: 100px 0 120px 0;
}
section.introduction p {
  margin: 0px auto 70px auto;
  width: fit-content;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}
section.introduction video {
  margin: 0 auto;
  width: auto;
  height: 50px;
  display: block;
}

section.topics-3 {
  padding: 80px 0 100px 0;
  background: #f4f4f4;
}
section.topics-3 .demo {
  width: 950px;
  max-width: 88%;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #0d1f38;
  box-shadow: 0px 3px 6px #00000029;
}
section.topics-3 div.topics-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
section.topics-3 div.topics-title::before {
  position: absolute;
  content: "";
  display: inline-block;
  left: -17px;
  top: 60px;
  width: 41px;
  height: 35px;
  background-image: url(img/triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
section.topics-3 .demo .img-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 72px 107px 72px;
}
div.demo li.iter-img,
div.demo li.demo-img {
  width: 200px;
  height: 190px;
  display: block;
}
.demo li.silhouette-img {
  width: 240px;
  height: 135px;
  display: block;
}
section.topics-3 .demo ul li {
  text-align: center;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #0d1f38;
}
section.topics-3 .demo ul li span {
  display: block;
  padding-top: 20px;
}
section.topics-3 .demo ul li.silhouette-img span {
  padding-top: 47px;
}
div.demo ul li.iter-img div::after,
div.demo ul li.demo-img div::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #0089ff;
  position: absolute;
  top: 40%;
  right: -50px;
}
section.topics-3 div.topics-title h3 {
  font-size: 30px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 20px 58px 80px 50px;
  position: relative;
}
section.topics-3 div.topics-title h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0d1f38;
  position: absolute;
  top: 76px;
  left: 37%;
}
div.topics-title p.topics3-text1 {
  padding-top: 50px;
  font-size: 20px;
  font-weight: bold;
  color: #0d1f38;
}
div.topics-title p.topics3-text2 {
  font-size: 16px;
  font-weight: 400;
  color: #0d1f38;
  width: 700px;
  padding-top: 10px;
  padding-right: 50px;
  line-height: 1.8;
}

section.theme-3 {
  position: relative;
  overflow-y: hidden;
  z-index: 5;
  width: 100%;
  background: linear-gradient(
    180deg,
    #f4f4f4 0%,
    #f4f4f4 50%,
    rgb(255, 255, 255, 0) 50%,
    rgb(255, 255, 255, 0) 100%
  );
}

section.theme-3 div.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
div.content h2 {
  color: #fff;
  font-size: 50px;
  text-align: center;
  padding-bottom: 10px;
}
section.theme-3 div.content h3 {
  color: #0089ff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

section.team-zentai {
  position: relative;
  top: -250px;
  margin-bottom: -250px;
  box-shadow: 0px 3px 6px #00000029;
}
section.team-zentai img {
  width: 100%;
  height: auto;
}
section.team-zentai p {
  width: fit-content;
  margin: 0 auto;
  padding: 50px 0;
  color: #384f6f;
  font-size: 20px;
  font-weight: bold;
}

section.team-map {
  background: #f4f4f4;
}
section.team-map p.team-map-text1 {
  font-size: 35px;
  font-weight: bold;
  color: #0d1f38;
  width: fit-content;
  margin: 0px auto;
  padding: 90px 0 50px 0;
}
section.team-map img.team-map-img {
  display: block;
  width: 1000px;
  max-width: 86%;
  height: auto;
  margin: 0 auto;
}

/* モータルウインドウ */
#info {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

section.team-map img.all-japan {
  margin-top: 140px;
}
section.team-map div {
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
}
section.team-map p.team-map-text2 {
  font-size: 20px;
  font-weight: bold;
  color: #0d1f38;
  width: 700px;
  margin: 0px auto;
  padding: 50px 0;
}
a.target {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

section.goal {
  background: #f4f4f4;
  padding-bottom: 65px;
}
section.goal h4 {
  font-size: 35px;
  font-weight: bold;
  color: #0d1f38;
  text-align: center;
  padding-top: 100px;
}
div.goal-text {
  background: #fff;
  width: 930px;
  margin: 50px auto;
}
div.goal-text h5 {
  font-size: 25px;
  font-weight: bold;
  color: #142733;
  display: flex;
  align-items: center;
  padding: 55px 45px;
}
div.goal-text h5 span {
  display: inline-block;
  background: #ffe200;
  color: #222222;
  width: 150px;
  height: 95px;
  text-align: center;
  line-height: 95px;
  border-radius: 50px;
  margin-right: 40px;
}

ul.goal-sp {
  display: none;
}

p.detail {
  text-align: center;
  position: relative;
}
p.detail::before {
  position: absolute;
  top: 40px;
  left: calc(50% - 8.5px);
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 17px; /*画像の幅*/
  height: 19px; /*画像の高さ*/
  background-image: url(img/allow_down.png);
  background-size: contain;
  vertical-align: middle;
}
p.detail::after {
  position: absolute;
  top: 75px;
  left: calc(50% - 8.5px);
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 17px; /*画像の幅*/
  height: 19px; /*画像の高さ*/
  background-image: url(img/allow_down.png);
  background-size: contain;
  vertical-align: middle;
}
p.detail span:after {
  position: absolute;
  top: 110px;
  left: calc(50% - 8.5px);
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 17px; /*画像の幅*/
  height: 19px; /*画像の高さ*/
  background-image: url(img/allow_down.png);
  background-size: contain;
  vertical-align: middle;
}

div.goal-3group {
  background: #0d1f38;
  width: 600px;
  margin: 140px auto 50px auto;
  position: relative;
}
div.goal-3group::after {
  content: "";
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 3px;
  background-color: #0d1f38;
  position: absolute;
  bottom: 34px;
  z-index: 0;
}

div.goal-3group p {
  color: #fff;
  padding: 0px 30px;
  text-align: center;
  font-size: 30px;
  z-index: 1;
  position: relative;
  height: 68px;
  line-height: 68px;
}

img.goal_img {
  width: 23.3px;
  height: 36.9px;
}
section.goal li {
  background: #fff;
  max-width: 88%;
  width: 930px;
  box-shadow: 0px 3px 6px #00000029;
}
section.goal li.goal-box1 {
  padding: 40px 45px 25px 45px;
  margin: 50px auto 0 auto;
}
section.goal li.goal-box1 em {
  font-size: 25px;
  font-weight: bold;
  color: #142733;
  background: #ffe200 no-repeat padding-box;
  display: inline-block;
  height: 18px;
  line-height: 5px;
}
section.goal li.goal-box1 span {
  display: inline-block;
  position: relative;
  top: 10px;
  font-size: 50px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
}
section.goal li.goal-box1 small {
  font-size: 18px;
  font-weight: 400;
  color: #0d1f38;
  padding-top: 10px;
  display: inline-block;
  margin-left: 120px;
}

li.goal-box2,
li.goal-box3 {
  margin: 35px auto 0 auto;
}
li.goal-box2,
li.goal-box3 {
  padding: 40px 45px 50px 45px;
}
li.goal-box2 em,
li.goal-box3 em {
  font-size: 25px;
  font-weight: bold;
  color: #142733;
  background: #ffe200 no-repeat padding-box;
  display: inline-block;
  height: 18px;
  line-height: 5px;
}
li.goal-box2 span,
li.goal-box3 span {
  display: inline-block;
  position: relative;
  top: 10px;
  font-size: 50px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
}
li.goal-box2 small,
li.goal-box3 small {
  font-size: 18px;
  font-weight: 400;
  color: #0d1f38;
  padding-top: 10px;
  display: inline-block;
  margin-left: 120px;
}

section.plan {
  border-top: 5px solid #0d1f38;
  background-image: url(img/wave_2.jpg);
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  object-fit: contain;
  background-size: 100% 100%;
  padding: 120px 0;
}
div.plan-history {
  background: #fff;
  margin: 0px auto;
  padding: 60px 0;
}
div.plan-history h5 {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  width: 95px;
  height: 95px;
  text-align: center;
  line-height: 95px;
  background: #384f6f;
  border-radius: 50px;
  margin: 0px auto;
}

/* dlボーダーアニメーション */
dl.dl-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 65px 0 0 0;
  position: relative;
}
dl.dl-line::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0%;
  background-color: #0089ff;
  position: absolute;
  top: 100px;
  transition: 4s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(-35px);
  left: 12.5em;
}
.dl-line.is-animated::before {
  height: 92%;
}

dt {
  font-size: 28px;
  font-weight: bold;
}
dl dt {
  text-align: right;
  width: 5.5em;
  padding: 0 1em 0.5em 0.5em;
  position: relative;
}
dl dt.center {
  padding-top: 145px;
}

dl dd {
  width: calc(100% - 17em);
  padding: 0.5em 2em 2em;
}
dd.completion {
  padding: 0.5em 2em 0em;
}
dd.completion h6 {
  margin: 0;
}
dl dd ul {
  width: 702px;
  max-width: 80%;
  background: #e8e8e8;
  padding: 20px 35px;
}
dl dd ul li {
  font-size: 18px;
  font-weight: 400;
  color: #0d1f38;
  line-height: 2;
}
dl dd ul li span {
  font-size: 18px;
  font-weight: bold;
  color: #0089ff;
}

dl dd h6 {
  font-size: 18px;
  font-weight: bold;
  color: #0089ff;
  margin: 0 0 5px;
}
dl dd.completion h6 {
  font-size: 28px;
}

section.menber {
  background: #f4f4f4;
  padding: 110px 0;
}
p.menber-text {
  font-size: 30px;
  font-weight: bold;
  color: white;
  background-color: #384f6f;
  text-align: center;
  width: 550px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
}
section.menber h4 {
  margin-top: 60px;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: #0d1f38;
  line-height: 1;
}
section.menber h4 span {
  font-size: 19px;
  color: #0089ff;
}

div.all-menber {
  background: white;
  width: 1200px;
  max-width: 98%;
  margin: 60px auto;
  padding: 65px 0 60px 0;
}
div.all-menber h5 span.menber-line {
  font-size: 40px;
  color: #0d1f38;
  text-align: center;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

/* ボーダーアニメーション */
span.menber-line::before {
  content: "";
  width: 0%;
  height: 1px;
  display: inline-block;
  background: #0d1f38;
  position: absolute;
  transform: translateX(-50%);
  transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  bottom: -25px;
  left: 50%;
}
span.menber-line.is-animated::before {
  width: 35%;
}

p.all-menber-text {
  padding: 60px 0 80px 0;
  font-size: 20px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 480px;
  text-align: center;
  margin: 0 auto;
  line-height: 2;
}

.menber-wrap > ul.fade-in-member{
	display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
 
  width: 94%;
	max-width: 830px;
}
.menber-wrap > ul.fade-in-member > li{
	width:calc(100% / 3);
	box-sizing: border-box;
	text-align:center;
	padding:4rem 2rem;
}
.menber-wrap > ul.fade-in-member > li .modal_open > .imgframe{
	width:150px;
	height:150px;
	margin:0 auto .2rem;
	overflow: hidden;
	border-radius: 50%;
}
.menber-wrap > ul.fade-in-member > li .modal_open > .imgframe img{
	display:block;
	width:150px;
	height:150px;
	transition: 1s all;
}
.menber-wrap > ul.fade-in-member > li .modal_open > .imgframe img:hover{
	transform: scale(1.1, 1.1);
  transition: 1s all;
}
.menber-wrap > ul.fade-in-member > li .modal_open > h3{
	font-weight: 400;
	white-space: nowrap;
	margin-bottom:.2rem;
	text-align:center;
}
.menber-wrap > ul.fade-in-member > li .modal_open > p{
	font-size: 1.125rem;
	font-weight: bold;
	text-align:center;
}
.menber-wrap > ul.fade-in-member > li .modal{
	text-align:left;
}
.menber-wrap > ul.fade-in-member > li .modal .prof-wrap{
	display:flex;
	flex-wrap:wrap;
}
div.content .modal h2{
	text-align:left;
	padding:0;
}
/*
div.all-menber ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 830px;
  max-width: 94%;
}
div.all-menber ul li {
  width: 150px;
  height: 205px;
  margin: 50px 30px;
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
  font-weight: bold;
}
div.all-menber ul li span {
  font-weight: 400;
  white-space: nowrap;
}
div.all-menber ul li a{
  overflow: hidden;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 1;
}
div.all-menber ul li img {
  padding-bottom: 10px;
  transition: 1s all;
}
div.all-menber ul li img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
*/


div.all-menber a.menber-link {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #0089ff;
  border: 1px solid #0d1f38;
  border-radius: 10px;
  text-align: center;
  width: 255px;
  height: 50px;
  line-height: 50px;
  margin: 50px auto;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
div.all-menber a.menber-link:hover {
  background: #0d1f38;
  color: #fff;
}

section.interview {
  background: #49515c;
  padding: 100px 0 60px 0;
}
section.interview h4 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1;
}
section.interview h4 span {
  font-size: 19px;
  color: #0089ff;
}
section.interview ul {
  display: flex;
  justify-content: space-between;
  width: 830px;
  max-width: 94%;
  margin: 80px auto 0 auto;
}
section.interview ul li {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
section.interview ul li div {
  overflow: hidden;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding-bottom: 20px;
}
section.interview ul li div a{
  opacity: 1;
}
section.interview ul li img {
  width: 300px;
  height: 300px;
  transition: 1s all;
}

section.interview ul li img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
section.interview ul li span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
section.interview ul li small {
  font-size: 16px;
  font-weight: bold;
  color: #0089ff;
  display: block;
}

section.demo-news {
  background: #f4f4f4;
  padding: 115px 0 145px 0;
}
div.demo-news-box {
  background: #fff;
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
  padding: 90px 0 60px 0;
}
div.demo-news-box img {
  width: 700px;
  max-width: 89%;
  height: auto;
  margin: 0 auto;
  display: block;
}
div.demo-news-box ul {
  margin-top: 90px;
  display: flex;
  width: 860px;
  margin: 0 auto;
  justify-content: space-between;
}
div.demo-news-box ul li {
  width: 400px;
}
div.demo-news-box ul li a {
  display: block;
  font-size: 25px;
  font-weight: bold;
  color: #0089ff;
  border: 1px solid #0d1f38;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  margin: 90px auto 30px auto;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
div.demo-news-box ul li a:hover {
  background: #0d1f38;
  color: #fff;
}

section.researcher {
  background: #c9cfd9;
  padding: 70px 0;
}
section.researcher h4 {
  font-size: 35px;
  color: #0d1f38;
  font-weight: bold;
  text-align: center;
}
p.researcher-text {
  font-size: 18px;
  color: #0d1f38;
  font-weight: 400;
  text-align: center;
  padding-top: 30px;
}
div.researcher-box {
  margin-top: 70px;
  width: 830px;
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0 auto;
  flex-wrap: wrap;
}
section.researcher ul li {
  background: #fff;
  width: 400px;
  height: 300px;
  margin-top: 50px;
  box-shadow: 0px 3px 6px #00000029;
}
section.researcher ul li a {
  display: block;
}
section.researcher ul li img {
  padding-top: 45px;
  display: block;
  margin: 0 auto;
}
section.researcher ul li img.paper {
  padding-top: 55px;
}
section.researcher ul li h5 {
  padding-top: 25px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #0d1f38;
}
section.researcher ul li p {
  font-size: 16px;
  font-weight: 400;
  color: #0d1f38;
  width: 300px;
  margin: 0 auto;
  padding-top: 35px;
  line-height: 1.8;
}

section.link-set {
  background: #fff;
  padding: 100px 0;
}
div.content-link {
  width: 900px;
  max-width: 76.9%;
}
section.link-set h4 {
  font-size: 35px;
  color: #0d1f38;
  font-weight: bold;
  text-align: center;
}
ul.link-box1 {
  padding-top: 100px;
}
ul.link-box1 li a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #384f6f;
  padding-top: 30px;
}
ul.link-box1 li p {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #384f6f;
  padding-top: 30px;
}
ul.link-box2 li a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #384f6f;
  padding-top: 25px;
}

footer {
  background-image: url(img/earth_bg.png);
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  object-fit: contain;
  background-color: #000;
  background-size: 100%;
  height: auto;
  padding: 130px 0 0 0;
}
footer a.mark {
  width: 2%;
  position: fixed;
  right: 0px;
  bottom: 50px;
}
footer h4 {
  color: #fff;
  font-size: 31px;
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  line-height: 1.8;
}
div.footer-box {
  padding: 60px 0 100px 0;
  margin: 160px auto 0 auto;
  width: 1000px;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.4);
}
div.footer-box h5 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
div.footer-box h5::before {
  content: "";
  width: 50%;
  height: 1px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  left: calc(30% - 55px);
}
div.footer-box p {
  color: #0089ff;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  padding-top: 30px;
}
div.footlink-box {
  display: flex;
  justify-content: space-between;
  padding: 80px 80px 0 80px;
}
div.footlink-box ul li a {
  color: #fff;
}
ul.nav1 li,
ul.nav2 li {
  font-size: 20px;
  font-weight: bold;
  padding-top: 40px;
}
ul.nav1 li a span {
  font-size: 14px;
  font-weight: 400;
}
ul.nav2 li a span {
  font-size: 16px;
  font-weight: 400;
}
ul.nav1-a li,
ul.nav2-a li,
ul.nav2-b li,
ul.nav2-c li {
  font-size: 16px;
  font-weight: 400;
  padding-top: 20px;
}
ul.nav1 ul.nav1-b li {
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 130px;
  height: 25px;
  margin-top: 15px;
  padding: unset;
  border: 1px solid #707070;
}
ul.nav1-b {
  display: flex;
  justify-content: space-between;
  width: 300px;
  flex-wrap: wrap;
}
ul.nav1-b li a {
  color: #000 !important;
  line-height: 25px;
  display: block;
  text-align: left;
  padding-left: 10px;
}
p.copy {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 100px 0 35px 0;
}

/*　フェードイン  */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0vw);
  transition: opacity 3s, transform 3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* フェードイン アップ*/
span.fade-in,
a.fade-in-a {
  display: inline-block;
}
/*　0秒  */
.fa0 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*　0.2秒  */
.fa0-2 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 0.2s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0-2 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fa0-2 .fade-in-member{
	opacity:0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
.fa0-2 .fade-in-member.show-member{
	opacity: 1;
	visibility: inherit;
	transform: unset;
} 



/*　0.5秒  */
.fa0-5 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 0.5s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0-5 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　0.8秒  */
.fa0-8 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 0.8s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0-8 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　0.8秒 速 */
.fa0-8s .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 0.8s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0-8s .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　1秒  */
.fa1 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 1s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa1 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　1秒 速 */
.fa1s .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 1s !important;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa1s .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　1.2秒  */
.fa1-2 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 1.2s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa1-2 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　1.5秒  */
.fa1-5 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 1.5s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa1-5 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 2秒 */
.fa2 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 2s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa2 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 2.2秒 */
.fa2-2 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 2.2s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa2-2 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 2.5秒 */
.fa2-5 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 2.5s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa2-5 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 2.8秒 */
.fa2-8 .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 2.8s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa2-8 .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}







/*　2秒 速 */
.fa2s .fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 2s !important;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa2s .fade-in.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*　0.2秒 位置真ん中  */
.fa0-2 .fade-in-a {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 0.2s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0-2 .fade-in-a.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*　0.8秒 位置真ん中  */
.fa0-8 .fade-in-a {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2vw);
  transition-delay: 0.8s !important;
  transition: opacity 1.5s, transform 1.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa0-8 .fade-in-a.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

img.fade-in-left {
  display: inline-block;
}
/* 左から */
.fade-in-left {
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  transform: translate(-50vw, 0);
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fade-in-left.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

img.fade-in-right {
  display: inline-block;
}
/* 右から */
.fade-in-right {
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  transform: translate(50vw, 0);
  transition: opacity 1s, transform 1s;
 
}
.fade-in-right.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
 
}

/* ズームイン */
.animate__animated {
  animation: zoomIn 2 ease-in forwards; /*0.7秒かけてズームインさせる */
  transform: scale(0, 0);
  transition: 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.animate__zoomIn {
  visibility: visible;
  transform: scale(1, 1);
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* ズームイン 太陽*/
.sun-animate__animated {
  animation: 20s infinite expansion;
  animation-timing-function: linear;
  transform: scale(1, 1);
  transition: 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sun-animate__zoomIn {
  visibility: visible;
  transform: scale(2.5, 2.5);
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@keyframes expansion {
 
  0% {
    transform: scale(1);
  }
  200% {
    transform: scale(2);
  }
}

/* imgタグだと下に隙間ができるのでblockに。 */
.sun-animate__animated img {
  display: block;
}

/* ボーダーアニメーション */
article.fa {
  overflow-y: hidden;
}
.border {
  display: block;
  position: relative;
}

.border:before {
  background: linear-gradient(to right, #fff 0%, #fdfdfd 50%, #f9fafa 100%);
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  transform: translateX(-50%);
  transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.border::after {
  background: linear-gradient(to right, #fff 0%, #fdfdfd 50%, #f9fafa 100%);
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  transform: translateX(-50%);
  transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.border.is-animated::before {
  width: 100%;
}
.border.is-animated::after {
  width: 100%;
}

/* ループで光らせる */
.button {
  display: inline-block;
}
/* 光らせるためのstyle */
.shine {
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 2s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -100%;
  opacity: 0.3;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}

/* hamburgerここから */
/* inputを非表示 */
.input-hidden {
  display: none;
}
/* label */
.hamburger-demo-switch {
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 7px; /* ハンバーガーアイコンの位置（上から） */
  z-index: 9999;
  width: 3em; /* アイコン（クリック可能領域）の幅 */
  height: 3em; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch {
  position: fixed;
  top: 7px;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1,
.hamburger-switch-line1:before,
.hamburger-switch-line1:after {
  width: 26px;
  height: 3px;
  background: #333; /* ハンバーガーアイコンの色 */
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  content: "";
  border-radius: 15px;
}

.hamburger-switch-line1 {
  transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before {
  transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after {
  transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
.close .hamburger-switch-line1 {
  width: 0 !important;
}
.close ~ .hamburger-demo-switch .hamburger-switch-line1:before {
  transform: rotate(45deg) translate(-40%, 325%) !important;
}
.close ~ .hamburger-demo-switch .hamburger-switch-line1:after {
  transform: rotate(-45deg) translate(-40%, -325%) !important;
}
.cross:before {
  transform: rotate(45deg) translate(-40%, 325%) !important;
}
.cross:after {
  transform: rotate(-45deg) translate(-40%, -325%) !important;
}
span.cross,
span.cross:after,
span.cross::before {
  left: calc(50% + 13px);
}
p.close {
  position: absolute;
  left: calc(50% + 45px);
  top: 14px;
}
li.sp-link a {
  font-size: 15px !important;
  font-weight: bold;
  color: #0089ff !important;
}
li.sp-bold {
  font-size: 15px !important;
  font-weight: bold;
  color: #0d1f38 !important;
}

/* メニューエリア */
.hamburger-demo-menuwrap {
  position: fixed;
  height: 72vh;
  background: #fff; /* メニューエリアの背景色 */
  padding: 2em 0 4em;
  z-index: 9998;
  transition: 0.3s;
  overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
  top: -100%;
  left: 0;
  width: 100%;
}
.sp_menulist {
  border-bottom: 1px solid #707070;
  max-width: 90%;
  margin: 0 auto;
}
/* メニューリスト */

.hamburger-demo-menulist li a {
  text-decoration: none;
  color: #0d1f38; /* メニューリストの文字色 */
  display: block;
  padding: 0.7em 0;
  font-size: 15px;
}
/* メニューエリア･アニメーション */
/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap {
  top: 0%;
}
/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block;
}
h1.ham {
  height: 0 !important;
  padding-bottom: 20px;
  padding-left: 16px;
}
label.close {
  display: block;
  position: absolute !important;
  bottom: -360px !important;
  top: unset;
  left: 38%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

ul.hamburger-demo-menulist {
  padding-top: 30px;
}
/* PCではハンバーガーメニューを表示しない */
@media (min-width: 1024px) {
  .hamburger-demo-menubox {
    display: none;
  }
}
@media (max-width: 1023px) {
  ul.gnavi {
    display: none;
  }
}

/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*以下はコンテンツ内のレイアウト*/
.info-list dl,
.gallery-list {
  display: flex;
}

.info-list dt {
  margin: 0 10px 0 0;
}

.gallery-list li {
  margin: 0 10px 0 0;
}

/*========= レイアウトのためのCSS ===============*/

.modaal-accessible-hide {
  display: none;
}

.modaal-container {
  max-width: 600px;
  background: none !important;
}
.modaal-gallery-item img {
  background: #fff;
  width: 60% !important;
  margin: 0 auto !important;
  padding: 50px;
}
img {
  max-width: 100%;
  height: auto;
}
