@charset "UTF-8";
/************************************************

	common

*************************************************/
body {
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
}
_:-ms-input-placeholder, :root body {
  font-family: メイリオ,Meiryo,"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

/* color */
/* text */
h1,
h2,
h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.571em;
  line-height: 1.3;
  color: #000;
}
h1 span,
h2 span,
h3 span {
  font-size: 0.65em;
  font-weight: normal;
}
h1 small,
h2 small,
h3 small {
  padding: .5em .5em .3em .5em;
  width: 15%;
  font-size: 0.389em;
  text-align: center;
  background: #ffbb00;
}

h3 {
  margin-bottom: 1em;
  padding: .3em;
  border-top: 1px solid #34cdd7;
  border-bottom: 1px solid #34cdd7;
}

h4 {
  margin-bottom: .5em;
  font-size: 1.875em;
  line-height: 1.2;
}

p {
  margin-bottom: 1em;
}

@media screen and (max-width: 480px) {
  h1,
  h2,
  h3 {
    font-size: 1.8em;
    text-align: center;
  }
  h1 span,
  h2 span,
  h3 span {
    font-size: 0.5em;
  }
  h1 small,
  h2 small,
  h3 small {
    margin-bottom: .8em;
    width: 35%;
  }

  h3 {
    margin-bottom: .5em;
  }

  h4 {
    font-size: 1.5em;
  }
}
/* link */
a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all .7s;
}
a:hover {
  color: #34cdd7;
}

.link_btn {
  display: block;
  margin-left: 1em;
  padding: .5em .8em;
  color: #000;
  background: #ffbb00;
  border-radius: 5px;
}
.link_btn:hover {
  color: #fff;
  background: #34cdd7;
}

.link_btn_grd {
  display: block;
  margin: 2em auto 3em;
  padding: .8em 3em;
  /*width: 10vw;*/
  color: #fff;
  text-align: center;
  background: #34cdd7;
  background: linear-gradient(135deg, #3485d7 0%, #34cdd7 70%, #34cdd7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3485D7',endColorstr='#34CDD7',GradientType=1);
  border: 1px solid #34cdd7;
  transition: all .7s;
}
.link_btn_grd:hover {
  color: #34cdd7;
  background: linear-gradient(135deg, white 0%, white 70%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3485D7',endColorstr='#34CDD7',GradientType=1);
  border: 1px solid #34cdd7;
}

@media screen and (max-width: 480px) {
  .link_btn_grd {
    width: 20vw;
  }
}
a figure {
  transition: all .7s;
}

a figure:hover {
  opacity: .6;
}

img {
  max-width: 100%;
}

.pc_only {
  display: inline;
}
@media screen and (max-width: 480px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp_only {
    display: inline;
  }
}

/************************************************

	header

*************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0;
  width: 100%;
  background: #fff;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
header > div h1 {
  width: 250px;
}

/* ハンバーガーは SP のみ表示。
   .global-menu-toggle の display:block は @media(max-width:480px) 内にしか
   定義がないため、481px 以上で明示的に隠す */
@media screen and (min-width: 481px) {
  .global-menu-toggle {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding: 1em 0;
  }
}

/************************************************

	navi

*************************************************/
nav ul {
  display: flex;
  align-items: center;
}
nav ul li a {
  display: block;
  padding: 1.5em .8em;
  transition: none;
}
nav ul li a:hover {
  color: #fff;
  background: #34cdd7;
  background: linear-gradient(135deg, #3485d7 0%, #34cdd7 70%, #34cdd7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3485D7',endColorstr='#34CDD7',GradientType=1);
}
@media screen and (max-width: 480px) {
  nav {
    position: fixed;
    /* 退避位置は height と同じ 100vh にする。
       固定値(-900px)だとウィンドウ高が900pxを超えた分だけ
       画面上部にメニューがはみ出す */
    top: -100vh;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    background: #34cdd7;
    background: linear-gradient(135deg, #3485d7 0%, #34cdd7 70%, #34cdd7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3485D7',endColorstr='#34CDD7',GradientType=1);
    /* 閉じている間はフォーカスが当たらないようにする。
       visibility は閉じるアニメーションの完了後に切り替える */
    visibility: hidden;
    transition: top .5s ease-in-out, visibility 0s linear .5s;
  }
  nav ul {
    flex-direction: column;
    margin-bottom: 10em;
  }
  nav ul li {
    margin-left: 0;
    padding: 0.5em 0;
  }
  nav ul li a {
    padding: 0;
  }
  nav a:link, nav a:visited {
    font-size: 1.5em;
    color: #fff;
  }
  nav.open {
    top: 0;
    visibility: visible;
    transition: top .5s ease-in-out, visibility 0s;
  }
}

@media screen and (max-width: 480px) {
  /* menu */
  .global-menu-toggle {
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    right: 1rem;
    z-index: 100;
    cursor: pointer;
  }

  .global-menu-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    height: 3px;
    background: #34cdd7;
    width: 60%;
    transition: 0.5s ease-in-out;
  }

  .global-menu-toggle span:nth-child(1) {
    top: 20px;
  }

  .global-menu-toggle span:nth-child(2) {
    top: 32px;
  }

  .global-menu-toggle span:nth-child(3) {
    top: 44px;
  }

  .active.global-menu-toggle span:nth-child(1) {
    top: 32px;
    transform: rotate(135deg);
  }

  .active.global-menu-toggle span:nth-child(2) {
    display: none;
  }

  .active.global-menu-toggle span:nth-child(3) {
    top: 32px;
    transform: rotate(-135deg);
  }

  .global-menu-toggle.active span {
    background: #fff;
  }
}
/************************************************

	mv

*************************************************/
.mv {
  margin-top: 4em;
}

.slick-prev {
  left: 25px;
  z-index: 1;
}
.slick-prev:before {
  content: "\f053";
}
.slick-next {
  right: 25px;
}
.slick-next:before {
  content: "\f054";
}

.slick-prev::before,
.slick-next::before {
  opacity: 1;
  font-family: "Font Awesome 5 Free";
  font-size: 35px;
  font-weight: 900;
  text-shadow: 0 0 15px #34cdd7;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-slide img {
  margin: 0 auto;
  width: 100%;
}

.slick-dots {
  bottom: 25px;
}
.slick-dots li button:before {
  content: "●";
  opacity: 1;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 0 15px #34cdd7;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #34cdd7;
}

@media screen and (max-width: 480px) {
  .slick-dots {
    bottom: 5px;
  }
  .slick-dots li button:before {
    font-size: 8px;
  }
}
/************************************************

	movie

*************************************************/
.movie dl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
}
.movie dl dd {
  margin-left: 1em;
  width: 30%;
  font-size: 1.5em;
  text-align: center;
}

/************************************************

	main

*************************************************/
main section {
  padding: 3em 0;
}
main section .c-inner {
  margin: 0 auto;
  width: 980px;
  /* 980px 固定だとビューポート 960〜979px ではみ出す。
     90% 指定は959px以下にしかなく、その隙間が空いていた */
  max-width: 90%;
}
main section .shadow-box {
  background: #fff;
  border: #DFDFDF Solid 1px;
  border-radius: 5px;
  box-shadow: 0 35px 20px -30px rgba(0, 0, 0, 0.5);
}
main section#content01 {
  background-size: cover;
}
main section#content01 .leading {
  display: flex;
  justify-content: space-between;
  margin-top: 5em;
}
main section#content01 .leading figure {
  margin-right: 1.5em;
}
main section#content01 .leading div {
  display: flex;
  align-items: center;
  padding: 1.5em 2em;
  width: 70%;
}
main section#content01 .leading div em {
  display: inline-block;
  margin-bottom: .8em;
  font-size: 1.5em;
}
main section#content01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 4em 0 4em;
}
main section#content01 ul li {
  position: relative;
  padding: 1em 1.5em;
  width: calc(100% / 3 - 4em);
}
main section#content01 ul li figure {
  position: absolute;
  top: -3em;
  right: 1em;
  width: 4.5em;
}
main section#content01 ul li:last-child {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5em;
  padding: 2em 3em 5em 3em;
  width: 100%;
}
main section#content01 ul li:last-child > div {
  position: relative;
  font-size: 0.875em;
}
main section#content01 ul li:last-child > div:first-child {
  width: 40%;
}
main section#content01 ul li:last-child > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  right: 3em;
  top: -1em;
  margin-left: 2em;
  width: 50%;
}
main section#content01 ul li:last-child > div:last-child > div {
  width: 48%;
}
main section#content01 ul li:last-child em {
  font-size: 1.125em;
}
main section#content01 ul li:last-child figure {
  position: static;
  width: 100%;
}
main section#content01 h3 {
  margin-top: 1em;
  color: #000;
  border-color: #000;
}
main section#content02 ul {
  display: flex;
  justify-content: space-between;
}
main section#content02 ul li {
  width: 48%;
  box-shadow: 0 0 15px #999;
}
main section#content02 ul li div {
  padding: 1.5em 1.5em 3em;
}
main section#content02 ul li div p {
  font-weight: normal;
}
main section#content02 ul li div em {
  padding-bottom: .3em;
  padding-right: 6em;
  border-bottom: 4px solid #34cdd7;
}
main section#content03 ul {
  display: flex;
  flex-wrap: wrap;
}
main section#content03 ul li {
  width: calc(90% / 4);
  margin-right: 1.5em;
}
main section#content03 ul li:nth-child(5) {
  margin-right: 1.5em;
}

main section#content04 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3em;
}
main section#content04 dl dt {
  width: 45%;
  text-align: center;
}
main section#content04 dl dt figure {
  margin: 0 auto 1.5em;
  width: 50%;
}
main section#content04 dl dt p {
  position: relative;
  padding: 1.5em 2em;
  text-align: left;
}
main section#content04 dl dt p:before, main section#content04 dl dt p:after {
  content: "";
  position: absolute;
  width: 5vw;
  height: 5vw;
}
main section#content04 dl dt p:before {
  left: 0;
  top: 0;
  border-left: 1px solid #5e5e5e;
  border-top: 1px solid #5e5e5e;
}
main section#content04 dl dt p:after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #5e5e5e;
  border-bottom: 1px solid #5e5e5e;
}
main section#content04 dl dd {
  width: 50%;
  word-break: break-all;
}
main section#content04 dl dd figure {
  margin-bottom: 1em;
}
main section#content04 dl:nth-child(even) {
  flex-direction: row-reverse;
}
main section#content05 p {
  margin-top: 1em;
}
main section#content05 ul {
  display: flex;
  justify-content: space-between;
}
main section#content05 ul li {
  width: calc(93% / 3);
  font-size: 0.875em;
}
main section#content05 ul li em {
  font-size: 1.125em;
}
main section#content06 h3 {
  align-items: flex-start;
  padding: 0;
  border: none;
}
main section#content06 dl, main section#news dl {
  display: flex;
  flex-wrap: wrap;
}
main section#content06 dl dt, main section#news dl dt {
  padding: .5em 0;
  width: 20%;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
main section#content06 dl dd, main section#news dl dd {
  padding: .5em 0;
  width: 80%;
  border-bottom: 1px solid #ccc;
}
main section#content06 dl dd a, main section#news dl dd a {
  font-weight: normal;
}
main section#content06 dl:nth-of-type(1), main section#news dl:nth-of-type(1) {
  display: flex;
}
main section#news {
  margin-top: 4em;
}
main section#news dl dt,
main section#news dl dd {
  display: block !important;
}
main section#news .cp_ipselect {
  overflow: hidden;
  width: 30%;
  margin: 2em 0 2em auto;
  text-align: center;
}
main section#news .cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  font-size: 1em;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
main section#news .cp_ipselect select::-ms-expand {
  display: none;
}
main section#news .cp_ipselect.cp_sl01 {
  position: relative;
  border: 2px solid #ccc;
  border-radius: 2em;
  background: #fff;
}
main section#news .cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0;
  right: 2em;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #555;
  pointer-events: none;
}
main section#news .cp_ipselect.cp_sl01 select {
  padding: 1em 3em;
  color: #555;
}
main section#news article time {
  font-weight: bold;
}
main section#news article h2 {
  align-items: flex-start;
  margin: .5em 0;
  font-size: 1.7em;
}
main section#system {
  margin-top: 4em;
}
main section#system h3 {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .5em;
  padding: 0;
  font-size: 2.2em;
  color: #000;
  line-height: 1.2;
  border-top: none;
  border-bottom: none;
}
main section#system h4 {
  display: flex;
  align-items: center;
  color: #000;
}
main section#system h4 span {
  font-size: .5em;
  font-weight: normal;
  margin-left: 1em;
}
main section#system h5 {
  margin-bottom: .5em;
  color: #000;
  font-size: 1.1em;
  line-height: 1.2;
}
main section#system .leading {
  margin-bottom: 4em;
  width: 70%;
}
main section#system ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
main section#system ul li {
  width: calc(95% / 3);
}
main section#system ul li em {
  font-size: 1.3em;
  color: #000;
}
main section#system ul.device {
  flex-wrap: wrap;
}
main section#system ul.device li p {
  display: flex;
  flex-direction: column;
}
main section#system ul.device li p:last-child {
  padding: .5em 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
main section#system ul.device li p span {
  display: inline-block;
}
main section#system ul.device li p span:first-child {
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 1px solid;
}
main section#system ul.device li:last-child {
  margin-top: 1.5em;
  width: 100%;
}
main section#system figure {
  margin-bottom: 1.5em;
}
main section#system figure.icon {
  position: absolute;
  top: -6em;
  right: -4em;
  width: 40em;
}
main section div.shadow-box {
  position: relative;
  margin: 5em 0 3em;
  padding: 3em 4em;
}
main section:first-child {
  background: url("../images/common/bg.svg") no-repeat top center;
  background-size: 220%;
}

.inquiry {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: #000;
}
.inquiry div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: .7em 0;
  width: 100%;
  max-width: 1100px;
  color: #fff;
  font-size: 1.4em;
}
.inquiry div a {
  padding: .5em;
}

.pagetop {
  position: absolute;
  top: -3.5em;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 3.5em;
  height: 3.5em;
  background: #ffbb00;
}
.pagetop:hover {
  background: #34cdd7;
}
.pagetop:link, .pagetop:visited {
  color: #fff;
  text-decoration: none;
}

/************************************************

	footer

*************************************************/
footer {
  padding: 3em 0 2em;
  background: whitesmoke;
}
footer ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
footer ul li {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #ccc;
}
footer ul li:first-child {
  margin-left: 0;
  margin-right: auto;
  border-left: none;
}
footer ul li:nth-child(2) {
  border-left: none;
}
footer small {
  display: inline-block;
  margin: 1em 0 0;
  width: 100%;
  text-align: center;
}

/************************************************

	960〜1100px の左右余白
	max-width:1100px は効くがビューポートが1100px未満だと
	width:100% が勝ち、ヘッダー・フッターが画面端に接するため
	959px 以下と同じ余白をこの帯にも適用する

*************************************************/
@media screen and (max-width: 1100px) {
  header > div {
    max-width: 95%;
  }

  .inquiry div {
    max-width: 90%;
  }

  footer ul {
    max-width: 95%;
  }
}

/************************************************

	ipad

*************************************************/
@media screen and (max-width: 959px) {
  body {
    font-size: 70%;
  }

  header > div {
    max-width: 95%;
  }

  main section .c-inner {
    width: 90%;
  }

  .inquiry div {
    max-width: 90%;
  }

  footer ul {
    max-width: 95%;
  }
}
/************************************************

	SP

*************************************************/
@media screen and (max-width: 480px) {
  body {
    font-size: 90%;
  }

  .link_btn {
    margin-left: 0;
  }

  /* header */
  header > div {
    max-width: 90%;
  }
  header > div h1 {
    width: 50vw;
  }

  /* main */
  main section {
    padding: 1em 0;
  }
  main section .c-inner {
    width: 90%;
  }
  main section#content01 {
    background-repeat: repeat-y;
    background-size: 470%;
  }
  main section#content01 .leading {
    flex-direction: column;
  }
  main section#content01 .leading figure {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
  main section#content01 .leading div {
    width: calc(100% - 4em);
    margin: 0 0 1em;
  }
  main section#content01 .leading div em {
    font-size: 1.3em;
  }
  main section#content01 ul {
    flex-direction: column;
    margin: 2em 0;
  }
  main section#content01 ul li {
    margin-bottom: 2em;
    width: calc(100% - 3em);
  }
  main section#content01 ul li figure {
    top: -1em;
    width: 13vw;
  }
  main section#content01 ul li:last-child {
    flex-direction: column;
    margin-top: 0;
    padding: 2em 1.5em;
    width: calc(100% - 3em);
  }
  main section#content01 ul li:last-child > div:first-child {
    width: 100%;
  }
  main section#content01 ul li:last-child > div:last-child {
    position: static;
    margin-left: 0em;
    width: 100%;
  }
  main section#content01 ul li:last-child > div:last-child > div {
    width: 48%;
  }
  main section#content01 ul li:last-child em {
    font-size: 1.125em;
  }
  main section#content01 ul li:last-child figure {
    position: static;
    width: 100%;
  }
  main section#content02 ul {
    flex-direction: column;
  }
  main section#content02 ul li {
    margin-bottom: 3em;
    width: 100%;
  }
  main section#content02 ul li div em {
    padding-right: 8em;
  }
  main section#content03 ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main section#content03 ul li {
    margin-right: 0;
    margin-bottom: 1em;
    width: calc(95% / 2);
  }
  main section#content03 ul li.one_line .link_btn_grd {
    margin-top: 3.5em;
  }
  main section#content04 dl {
    flex-direction: column;
  }
  main section#content04 dl dt {
    margin-bottom: 1em;
    width: 100%;
  }
  main section#content04 dl dt p {
    margin-bottom: 0;
  }
  main section#content04 dl dd {
    width: 100%;
  }
  main section#content04 dl:nth-child(even) {
    flex-direction: column;
  }
  main section#content05 ul {
    flex-direction: column;
  }
  main section#content05 ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    width: 100%;
  }
  main section#content05 ul li figure {
    width: 40%;
  }
  main section#content05 ul li p {
    margin: 0;
    width: 57%;
  }
  main section#content06 dl, main section#news dl {
    flex-direction: column;
  }
  main section#content06 dl dt, main section#news dl dt {
    padding: 0;
    width: 100%;
    border-bottom: none;
  }
  main section#content06 dl dd, main section#news dl dd {
    margin-bottom: .5em;
    padding-top: 0;
    width: 100%;
  }
  main section#news .cp_ipselect {
    width: 100%;
    margin: 2em auto;
  }
  main section#news article h2 {
    font-size: 1.3em;
    text-align: left;
  }
  main section#system h3 {
    font-size: 2em;
    text-align: left;
  }
  main section#system h5 {
    font-size: 1.1em;
  }
  main section#system .leading {
    margin: 5em 0 2em;
    width: 100%;
  }
  main section#system ul {
    flex-direction: column;
    margin-bottom: 2em;
  }
  main section#system ul li {
    margin-bottom: 1em;
    width: 100%;
  }
  main section#system ul.device {
    flex-wrap: wrap;
  }
  main section#system ul.device li {
    margin-bottom: 2em;
  }
  main section#system ul.device li:last-child {
    margin-top: 1.5em;
    width: 100%;
  }
  main section#system figure.icon {
    top: -2em;
    right: -1em;
    width: 80%;
  }
  main section#system.toilet .leading {
    margin-top: 9em;
  }
  main section div.shadow-box {
    margin: 3em 0 5em;
    padding: 1em;
  }
  main section:first-child {
    background-size: 400%;
  }

  .movie dl {
    flex-direction: column;
  }
  .movie dl dt {
    margin-left: 0;
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
  }
  .movie dl dt iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .movie dl dd {
    width: 100%;
    margin-left: 0;
  }

  .inquiry div {
    flex-direction: column;
    max-width: 90%;
    font-size: 1.1em;
  }
  .inquiry div a {
    margin-top: .5em;
  }

  footer {
    padding: 3em 0 2em;
    background: whitesmoke;
  }
  footer ul {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
  }
  footer ul li {
    margin: 0 0 0 .5em;
    padding: 0 0 0 .5em;
  }
  footer ul li:first-child {
    margin-right: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }
  footer ul li:first-child figure {
    margin: 0 auto;
  }
}
/* SE */
/************************************************

	animation

*************************************************/
/* fadeIn */
.fadeIn,
.fadeIn01,
.fadeIn02,
.fadeIn03, {
  opacity: 0;
}

.fadeIn01.active {
  -webkit-animation: fadeIn 0.3s ease 0.5s 1 forwards;
  animation: fadeIn 0.5s ease 0.3s 1 forwards;
}

.fadeIn02.active {
  -webkit-animation: fadeIn .6s ease 1s 1 forwards;
  animation: fadeIn 0.5s ease .6s 1 forwards;
}

.fadeIn03.active {
  -webkit-animation: fadeIn .9s ease 1.5s 1 forwards;
  animation: fadeIn 0.5s ease .9s 1 forwards;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
}

.fadeUp.active {
  animation: fadeUp 1s forwards;
  -webkit-animation: fadeUp 1s forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.leading {
  opacity: 0;
  transform: translateY(50px);
}

.leading.active {
  animation: fadeUp 1s forwards;
  -webkit-animation: fadeUp 1s forwards;
}

/*scrollFx*/
.scrollFx {
  clip-path: inset(0 100% 0 0);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: clip-path;
  transition-duration: .75s;
  transition-delay: .25s;
}
.scrollFx.active {
  clip-path: inset(0 0 0 0);
}

/************************************************

	ナビが1行に収まらないときのハンバーガー表示

	折り返しが始まる幅はページごとに違う
	（ロゴ幅・項目数の差で 740〜1100px とばらつく）ため、
	固定のブレークポイントではなく main.js が実測して
	<html> に .nav-collapsed を付ける。

	下の @media(max-width:480px) はJSが動かない場合の
	フォールバックとして残してある（内容は同じ）。

*************************************************/
.nav-collapsed nav {
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: #34cdd7;
  background: linear-gradient(135deg, #3485d7 0%, #34cdd7 70%, #34cdd7 100%);
  visibility: hidden;
  transition: top .5s ease-in-out, visibility 0s linear .5s;
}
.nav-collapsed nav ul {
  flex-direction: column;
  margin-bottom: 10em;
}
.nav-collapsed nav ul li {
  margin-left: 0;
  padding: 0.5em 0;
}
.nav-collapsed nav ul li a {
  padding: 0;
}
.nav-collapsed nav a:link,
.nav-collapsed nav a:visited {
  font-size: 1.5em;
  color: #fff;
}
.nav-collapsed nav.open {
  top: 0;
  visibility: visible;
  transition: top .5s ease-in-out, visibility 0s;
}
.nav-collapsed .global-menu-toggle {
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  right: 1rem;
  z-index: 100;
  cursor: pointer;
}
.nav-collapsed .global-menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  height: 3px;
  background: #34cdd7;
  width: 60%;
  transition: 0.5s ease-in-out;
}
.nav-collapsed .global-menu-toggle span:nth-child(1) { top: 20px; }
.nav-collapsed .global-menu-toggle span:nth-child(2) { top: 32px; }
.nav-collapsed .global-menu-toggle span:nth-child(3) { top: 44px; }
.nav-collapsed .active.global-menu-toggle span:nth-child(1) {
  top: 32px;
  transform: rotate(135deg);
}
.nav-collapsed .active.global-menu-toggle span:nth-child(2) { display: none; }
.nav-collapsed .active.global-menu-toggle span:nth-child(3) {
  top: 32px;
  transform: rotate(-135deg);
}
.nav-collapsed .global-menu-toggle.active span { background: #fff; }
