@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis:YEAR@1979&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-align: left;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 5 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  display: block;
}

a {
  text-decoration: none;
  color: #222;
  outline: none;
}

a:active,
a:hover,
a:focus {
  outline: none;
}

a,
input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

a:hover,
.link input:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 1040px) {
  body {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }

  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
  }

}

/*============================
flex
============================*/

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*============================
脚注文字表記etc.
============================*/

.eng {
  font-family: "Climate Crisis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "YEAR"1979;
}

.eng02 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.small{
  font-size: 13px;
}

/*============================
表示切り替え
============================*/

.sp-only {
  display: none;
}


@media only screen and (max-width: 1040px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*============================
wrapper
============================*/

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

h2 {
  font-size: 46px;
  margin-bottom: 30px;
}

h2 .eng {
  color: #fd932b;
}

@media only screen and (max-width: 1040px) {
  .wrapper {
    padding-top: 70px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/*============================
inner
============================*/

.inner {
  width: 1040px;
  margin: auto;
}

@media only screen and (max-width: 1040px) {
  .inner {
    width: 90.625%;
  }
}

/*============================
header
============================*/

#top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
  transition: 0.5s;
}

#top .inner {
  padding: 0 3%;
  width: 100%;
}

#top .inner .head-sns {
  width: 150px;
  margin-top: 30px;
  position: relative;
  z-index: 1000;
}

#top .inner .head-sns img {
  width: 26px;
}


@media only screen and (max-width: 1040px) {
  #top .inner .head-sns {
    width: 24px;
    margin-top: 0;
  }

  #top .inner .head-sns li {
    margin-top: 14px;
  }

  #top .inner .head-sns a img {
    width: 24px;
  }
}

/*============================
nav
============================*/

#top nav {
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  padding: 120px 20px 0;
  background-color: #fc932b;
  overflow-y: scroll;
}

#top .globalNav {
  width: 100%;
  margin: auto;
}

#top .globalNav li {
  float: none;
  width: 100%;
  position: relative;
  text-align: left;
  border-top: 1px solid #fff;
  background-color: transparent;
}

#top .globalNav li:last-child {
  border-bottom: 1px solid #fff;
}

#top .globalNav li a .eng {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

#top .globalNav li a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 20px 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  background: none;
  line-height: 1;
}

#top .globalNav li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}


/*============================
menu ハンバーガー
============================*/

.menu {
  display: block;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fedb2a;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 31px;
  height: 23px;
  margin: 18px 14px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* anime */

.active .menu-trigger span {
  background-color: #fff;
}

.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

@media only screen and (max-width: 1040px) {
  .menu {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .menu-trigger {
    position: relative;
    width: 28px;
    height: 20px;
    margin: 16px 11px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* anime */

  .active .menu-trigger span {
    background-color: #fff;
  }

  .active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }

  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}



/*============================
article
============================*/

article {
  padding: 100px 0;
}

article .inner p {
  margin-top: 18px;
}

article .inner p:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 1040px) {
  article {
    padding: 40px 0;
  }

  article .inner p {
    margin-top: 20px;
  }
}



/*============================
common_js
============================*/

.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}
