@charset "utf-8";
/* ナビゲーションのCSS */
* {
  margin: 0;
  padding: 0;
}
/*==================================================
ナビゲーション　ここから
====================================================*/
/*========= 必ず入れるCSS ===============*/
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 480px) {
  a:hover {
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
  }
}
/*===========================================================*/
/*　 ドロップダウンメニュー（上） */
/*===========================================================*/
/*========= ナビゲーションドロップダウンのためのCSS ===============*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
nav ul.nav01c {
  width: 900px;
}
nav ul.btn-cat_wrap {
  width: 230px;
  justify-content: flex-end;
  padding: 0 10px 0 0;
}
nav ul ul {
  display: block;
}
nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 0;
  transition: all .2s;
}
nav ul li li a {
  padding: 18px 20px;
}
nav ul li a:hover {
  color: #fff;
}
nav ul li.list-sp {
  display: none;
}
nav ul.btn-cat_wrap .button {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #000000;
  background: #ffffff;
  padding: 10px 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: ease .2s;
}
nav ul.btn-cat_wrap .button span {
  position: relative;
  z-index: 3;
  color: #000000;
}
nav ul.btn-cat_wrap .button:hover span {
  color: #ffffff;
}
nav ul.btn-cat_wrap .bgskew::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  background: #000000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
nav ul.btn-cat_wrap .bgskew:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left: -10%;
  }
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(135deg);
}
/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 4;
  background: #ffffff;
  border: 2px solid #000000;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  width: 120%;
}
/*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 {
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
nav li.has-child ul li a {
  border-bottom: 2px solid #000000;
}
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: rgba(85, 85, 85, 0.2);
}
@media screen and (max-width:1200px) {
  nav ul li a {
    padding: 20px;
  }
  nav ul li li a {
    padding: 10px 20px;
  }
  nav ul li.has-child::before {
    display: none;
  }
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav ul li a {
    border-bottom: 2px solid #000000;
  }
  /*矢印の位置と向き*/
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
  nav ul.btn-cat_wrap li {
    margin-right: 0;
  }
  nav ul.btn-cat_wrap .button {
    width: 100%;
    padding: 20px 10px;
  }
}
/*===========================================================*/
/*　 スクロール途中から上部固定 */
/*===========================================================*/
#header {
  position: fixed; /*fixedを設定して固定*/
  height: 70px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  z-index: 999; /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 20px 0 20px 0;
	  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width:1200px) {
  #header, #header.UpMove, #header.DownMove {
    animation: none;
    padding: 0;
    display: block;
  }
}
/*==================================================
　 クリックしたらナビが上から下に出現
===================================*/
@media screen and (max-width:1200px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #f1f1f1;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin: 70px auto 0 auto;
  }
  #g-nav ul ul {
    width: 100%;
    margin: 0;
  }
  #g-nav ul li.has-child {
    display: none;
  }
  /*プルダウンナビのCSS*/
  #g-nav ul li.has-child ul.ps_pd {
    display: none;
  }
  #g-nav ul li.has-child ul.ps_pd li {
    display: none;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: left;
  }
  #g-nav li a.sp_pd {
    color: #000000;
    text-decoration: none;
    padding: 20px 0 20px 10%;
    display: block;
    letter-spacing: 0.1em;
    margin: 0;
  }
  #g-nav li.list-sp a {
    padding: 20px 0 20px 14%;
  }
  nav ul li.list-sp {
    display: block;
    background: #ffffff;
  }
}
/*==================================================
　 3本線が奥行きを持って回転して×に
===================================*/
.g-nav-openbtn {
  display: none;
}
@media screen and (max-width:1200px) {
  .g-nav-openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*ボタン内側*/
  .g-nav-openbtn .openbtn-area {
    transition: all .4s;
  }
  .g-nav-openbtn span {
    display: inline-block;
    transition: all .2s;
    position: absolute;
    left: 6px;
    height: 2px;
    /*  border-radius: 2px;*/
    background: #000000;
    width: 80%;
  }
  .g-nav-openbtn span:nth-of-type(1) {
    top: 10px;
  }
  .g-nav-openbtn span:nth-of-type(2) {
    top: 25px;
  }
  .g-nav-openbtn span:nth-of-type(3) {
    top: 40px;
  }
  /*activeクラスが付与されると
 線と周りのエリアが回転して×になる*/
  .g-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }
  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 80%;
  }
  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 80%;
  }
}
/*==================================================
　 左から右に線が伸びる（下部）
===================================*/
ul.nav01c li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
ul.nav01c li .nav-list {
  margin: 0 30px 0 0;
}
ul.nav01c li.sp_liist {
  display: none;
}
ul.nav01c li.current a, ul.nav01c li a:hover {
  color: #000000;
}
ul.nav01c li a::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
ul.nav01c li li a::after {
  display: none;
}
/*現在地とhoverの設定*/
ul.nav01c li.current a::after, ul.nav01c li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}
@media screen and (max-width:1200px) {
  ul.nav01c li a::after {
    display: none;
  }
  ul.nav01c li.sp_liist {
    display: block;
  }
}
/*-------------------- レイアウト部分 --------------------*/
/* header */
#header p.logo {
  position: relative;
  display: block;
  width: 160px;
  height: auto;
  top: 10px;
  left: 2%;
}
#header #g-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header #g-nav {
  width: 1090px;
}
@media screen and (max-width:1200px) {
  #header p.logo {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 120px;
    padding: 0;
    z-index: 9999;
  }
  #header #g-nav {
    width: 100%;
  }
  #header #g-nav-list {
    flex-direction: column;
    justify-content: center; /* 20210703 変更部分 */
  }
}
/*  ----  パンクズリスト　ここから  ----  */
#breadcrumbs {
  display: block;
  position: relative;
  top: 90px;
  width: 100%;
  height: 30px;
}
#breadcrumbs ul {
  width: 980px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}
#breadcrumbs ul li a, #breadcrumbs ul li span {
  height: 100%;
  position: relative;
  text-decoration: none;
  font-size: 12px;
  color: #000000;
  padding-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#breadcrumbs ul li a::after {
  content: "";
  background-image: url(../../src/images/icon_breadcrumbs.png);
  background-size: 4px 8px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 4px;
  height: 8px;
  display: block;
  position: relative;
  position: absolute;
  top: 11px;
  right: 0;
}
#breadcrumbs ul li span::after {
  content: "";
  background-size: 12.5px 30px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 12.5px;
  height: 30px;
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
}
#breadcrumbs ul li:nth-child(n+2) {
  padding-left: 15px;
}
@media (max-width: 1200px) {
  #breadcrumbs {
    display: none;
  }
}
/*  ----  //  パンクズリスト　ここまで  ----  */
/*==================================================
//　　ナビゲーション　ここまで
====================================================*/
/*==================================================
お役立ちコンテンツ　 ここから
====================================================*/
#useful .useful_wrap {
  position: relative;
}
#useful .useful_wrap {
  width: 100%;
  background: #ffffff;
  background-image: url(../../src/images/useful-icon_index.svg);
  background-position: left top 50%;
  background-repeat: no-repeat;
  background-size: 36px 100%;
  background-attachment: fixed;
}
#useful .useful_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
#useful p.lead, #introduction p.lead {
  padding: 0 0 50px 0;
}
.report_wrap {
  width: 100%;
  background-color: #ffffff;
  -ms-filter: drop-shadow(0px 0px 6px rgba(87, 87, 87, 0.2));
  filter: drop-shadow(0px 0px 6px rgba(87, 87, 87, 0.2));
  padding: 40px 50px 50px 50px;
  margin: 0 0 50px 0;
}
#useful .report_wrap h3 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 600;
  padding: 0 0 30px 0;
}
#useful .report_wrap h3 span {
  font-size: 22px;
  font-weight: 400;
}
#useful .report_wrap .report_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#useful .report_inner .img_box {
  width: 410px;
  height: 100%;
}
#useful .report_inner .cont_box {
  position: relative;
  width: 420px;
  margin-left: 30px;
}
#useful .report_inner .cont_box h4 {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 8px 10px;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #000000;
}
#useful .report_inner .cont_box p {
  text-align: left;
  padding: 0 0 12px 0;
  margin: 0 0 0 0.5em;
}
#useful .report_inner .cont_box p span {
  font-family: 'Roboto Condensed', sans-serif;
}
#useful .report_inner .cont_box p.indentback {
  text-indent: -1.5em;
  padding-left: 1em;
  margin: 0 0 0 1em;
  line-height: 1.4;
}
.btn_dl_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
}
#useful .cont_box:nth-child(2) {
  height: 285px;
}
/* ボタン */
.btn_dl_wrap a.btn-dl {
  display: block;
  width: 300px;
  padding: 30px 0;
  margin: 0 auto;
  background: #000000;
  color: #ffffff;
  font-size: min(5.167vw,22px);
  font-weight: 600;
  line-height: 0;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  position: relative;
}
.btn_dl_wrap a.btn-dl::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #ffffff;
  border: 4px solid #000000;
  transform-origin: left bottom;
  transform: scale(1, 0);
  transition: transform .3s;
  opacity: 1;
}
.btn_dl_wrap a.btn-dl:hover {
  color: #000000;
}
.btn_dl_wrap a.btn-dl:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 812px) {
  #useful {
    margin: 80px 0 0 0;
  }
  #useful .useful_wrap {
    padding: 80px 0 0 0;
    margin: -80px 0 0 0;
    background-size: 5% auto;
    background-image: none;
  }
  #useful .useful_inner {
    width: 86.66667vw;
  }
  #useful h2.title {
    font-size: 6.467vw;
    padding: 0 0 20px 0;
  }
  #useful p.lead, #introduction p.lead {
    line-height: 1.4;
    padding: 0 0 30px 0;
  }
  #useful .report_wrap h3 {
    font-size: 4vw;
    padding: 0 0 24px 0;
  }
  #useful .report_wrap h3 span {
    font-size: 3.1vw;
  }
  #useful .report_wrap .report_inner {
    flex-direction: column;
  }
  #useful .report_inner .img_box {
    width: 80%;
    margin: 0 auto 30px;
  }
  #useful .report_inner .cont_box {
    width: 100%;
    margin-left: 0;
  }
  #useful .btn_dl_wrap {
    position: relative;
    padding: 30px 0 0 0;
  }
  #useful .cont_box:nth-child(2) {
    height: auto;
  }
}
@media (max-width: 480px) {
  #useful .useful_wrap {
    padding: 80px 0 0 0; /* 20210703 変更部分 */
    margin: -80px 0 0 0; /* 20210703 変更部分 */
    background-position: left top 130px;
  }
  #useful .report_wrap {
    padding: 20px 5% 30px 5%;
    margin: 0 0 20px 0;
  }
  #useful .report_wrap h3 {
    font-size: 5.4vw;
    padding: 0px 0 16px 0;
  }
  #useful .report_wrap h3 span {
    font-size: 4.4vw;
  }
  #useful .report_inner .cont_box p.indentback {
    text-indent: 0;
    padding-left: 0;
    margin: 0 0 0 0.5em;
  }
	#useful h2.title {
		font-size: 7.46667vw;
	}
}
/*==================================================
//　　お役立ちコンテンツ　ここまで
====================================================*/
/*==================================================
　CTAボタン　 ここから
====================================================*/
.btn-cat_inner {
  padding: 140px 7%;
}
.btn-cat_inner .btn-cat {
  position: relative;
  max-width: 850px;
  background: #ffffff;
  margin: 0 auto;
  padding: 0;
}
.btn-cat_inner .btn-cat:after {
  content: "";
  width: 282px;
  height: 64px;
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 90;
  background: url(../../src/images/icon-sdgs.svg) no-repeat center center;
}
.btn-cat_inner .button-cat {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 10px solid #000000;
  width: 100%;
  padding: 30px 0;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn-cat_inner .button-cat span {
  position: relative;
  z-index: 3;
  color: #000000;
}
.btn-cat_inner .button-cat:hover span {
  color: #fff;
}
/*== 背景が流れる（斜め） */
.btn-cat_inner .bgskew::before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -130%;
  background: #000000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
.btn-cat_inner .bgskew:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% {
    left: -10%;
  }
}
/*btn-cta02 ここから*/
.btn-cta02_inner {
  background-color: #ecfafe;
  padding: 80px 3%;
  margin-bottom: 160px;
}
.btn-cta02_inner p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 22px 75px;
}
.btn-cta02_inner p span {
  color: #004597;
  border-bottom: dotted 2px #004597;
}
.btn-cta02 {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.button-cta02 {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 10px solid #000000;
  width: 100%;
  padding: 30px 0;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: ease .2s;
  background: #fff;
}
.button-cta02::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  background: #000000;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
.button-cta02::after, .button-cat::after {
  content: '';
  border: 0;
  border-top: solid 4px #000;
  border-right: solid 4px #000;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(45deg);
}
.btn-cta02::before {
  content: "";
  width: 100%;
  height: 88px;
  position: absolute;
  top: -86px;
  left: 86px;
  background-image: url("../../src/images/btn-cta02.png");
  background-size: contain;
}
.button-cta02:hover::before {
  animation: skewanime .5s forwards;
}
.button-cta02:hover::after, .button-cat:hover::after {
  border-color: #fff;
}
.button-cta02:hover span {
  color: #fff;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .btn-cta02::before {
    left: 8%;
  }
}
/*btn-cta02 ここまで*/
@media screen and (max-width: 812px) {
  .btn-cat_inner .button-cat {
    width: 100%;
    border: 6px solid #000000;
    font-size: 4.16667vw;
  }
  .btn-cat_inner {
    padding: 80px 7%;
  }
}
@media screen and (max-width: 480px) {
.btn-cat_inner .btn-cat::after {
width: 200px;
}
}
/*==================================================
//　　CTAボタン　 ここまで
====================================================*/
/*==================================================
SDGS他のページへリンク　 ここから
====================================================*/
.bcney_warap {
  padding: 140px 0 160px 0;
}
.bcney_warap ul.bcney_inner {
  width: 870px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.bcney_warap ul.bcney_inner li a {
  display: block;
  font-size: 16px;
  text-decoration: underline;
  transition: all .2s;
}
.bcney_warap ul.bcney_inner li a:hover {
  color: #4c4c4c;
}
.bcney_warap ul.bcney_inner li:nth-child(1) {
  padding: 0 40px 0 0;
}
.bcney_warap ul.bcney_inner li:nth-child(2) {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 1200px) {
  .bcney_warap {
    padding: 60px 0 80px;
  }
  .bcney_warap ul.bcney_inner {
    width: 90%;
    flex-direction: column;
  }
  .bcney_warap ul.bcney_inner li a {
    text-align: center;
  }
  .bcney_warap ul.bcney_inner li:nth-child(1) {
    padding: 0 0 30px 0;
  }
  .bcney_warap ul.bcney_inner li:nth-child(2) {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .bcney_warap {
    padding: 40px 0 60px;
  }
  .bcney_warap ul.bcney_inner li:nth-child(1) {
    padding: 0 0 20px 0;
  }
}
/*==================================================
//　　SDGS他のページへリンク　 ここまで
====================================================*/
/*------------------------------------------
　　footer ここから
-------------------------------------------*/
.flex_bet {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer {
  border-top: 2px solid #ccc;
  padding: 20px 0 0 0;
}
#footer .footer-logo {
  width: 1150px;
  width: 120px;
  height: 100%;
  margin: 0 auto 20px;
}
#footer > .flex_bet {
  width: 1150px;
  margin: 0 auto;
}
#footer > .flex_bet ul {
  letter-spacing: -.40em;
  margin-bottom: 0;
}
#footer > .flex_bet ul li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  font-size: 12px;
  margin-right: 15px;
}
#footer > .flex_bet ul li a {
  color: #333;
}
#footer > .flex_bet ul li a:after {
  content: '>';
  display: inline-block;
  margin-left: 5px;
}
#footer > .flex_bet ul li a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 812px) {
  #footer > .flex_bet ul li {
    width: 47%;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: left;
  }
  #footer > .flex_bet ul li:nth-child(even) {
    width: 53%;
  }
}
#footer > .flex_bet #copyright {
  color: #333;
  font-size: 14px;
}
@media screen and (max-width: 812px) {
  #footer > .flex_bet #copyright {
    display: block;
    text-align: center;
    font-size: 10px;
    width: 100%;
    padding: 10px 0 15px;
    color: #666;
  }
}
@media screen and (max-width: 812px) {
  #footer > .flex_bet {
    width: 100%;
  }
}
@media screen and (max-width: 812px) {
  #footer {
    padding: 20px 5% 0 5%;
  }
}
/*------------------------------------------
ページのトップへ戻る ここから
------------------------------------------*/
#toTop {
  position: absolute;
  right: 0;
  bottom: 130px;
  display: block;
  z-index: 999;
}
#toTop a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 42px;
  height: 42px;
  background: red;
}
#toTop a:hover {
  opacity: 0.8;
}
/*------------------------------------------
// ページのトップへ戻る ここまで
------------------------------------------*/
/*==================================================
テキストが1文字ずつ出す
===================================*/
.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 3s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 20210703 追加部分 */
@media screen and (max-width: 812px) {
  .eachTextAnime span {
    opacity: 1;
  }
  .eachTextAnime.appeartext span {
    animation: none;
  }
}
/*==================================================
フェードイン
===================================*/
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-100px, 0);
}
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 50px);
}
@media screen and (max-width: 812px) {
  .sa {
    opacity: 1;
    transition: all .5s ease;
  }
  .sa.show {
    opacity: 1;
    transform: none;
  }
  .sa--lr {
    transform: none;
  }
  .sa--rl {
    transform: none;
  }
  .sa--up {
    transform: none;
  }
}