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

html,
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
p,
div,
table,
tr,
th,
td,
ol,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
select,
textarea,
header,
fotoer,
aside,
nav,
section,
article,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
object {
  outline: none;
}
br {
  letter-spacing: 0;
}
ul {
  list-style: none;
}
img {
  vertical-align: top;
  border: none;
  max-width: 100%;
}
a {
  /*overflow:hidden;*/
  outline: none;
}
a:hover {
  text-decoration: none;
}
table {
  border-collapse: collapse;
}
figure {
  text-align: center;
}
input,
select {
  vertical-align: middle;
}
input[type='submit'],
button {
  -webkit-appearance: none;
  border: 1px solid #000;
}
input:focus,
select:focus {
  outline: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

html {
  font-size: 18px;
}

body {
  font-family: '游ゴシック Medium', 'YuGothic Medium', YuGothic,
    'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'HiraKakuPro-W3',
    'ヒラギノ角ゴ W3', 'Hiragino Sans', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック',
    'MS PGothic', Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  margin: 0px;
  height: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  html {
    font-size: 1.5vw;
  }
}

@media (max-width: 560px) {
  html {
    font-size: 3vw;
  }
}

/*for debug*/
html.debug #displayFrame {
  display: flex;
}
html.debug #box .scene > .inner::after {
  content: '';
  display: block;
  width: 5px;
  height: 100%;
  background: #0f0;
  position: absolute;
  top: 0;
  right: 0;
}
/*for debug*/

br.sp {
  display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
  br.sp {
    display: block;
  }
}

.scene_loop02 {
}

/*scroll info*/
#scrollinfo {
  position: fixed;
  display: flex;
  padding: 1em;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-size: 11px;
  bottom: calc(var(--window-height, 100vh) * 0.05);
  left: 50%;
  border: 1px solid #30aac6;
  color: #30aac6;
  opacity: 0;
  transform: translate(-50%, -30%);
  transition: opacity 0.3s linear, transform 0.5s linear;
  z-index: 101;
}
#scrollinfo.on {
  opacity: 1;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#scrollinfo .inner::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 100%;
  display: block;
  background: #30aac6;
  margin: 0.5em auto 0;
}
#scrollinfo::after {
  content: '';
  width: 1px;
  height: 0;
  display: block;
  background: #30aac6;
  position: absolute;
  top: calc(100% - 0.5em);
  left: 50%;

  animation: loop-height 3s ease-in-out infinite;
}

@keyframes loop-height {
  0% {
    height: 0;
  }
  30% {
    height: 0;
  }
  100% {
    height: 4em;
  }
}

#box {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: var(--window-height, 100vh);
  z-index: 100;
}

#box .scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#box .scene > .inner {
  width: 100%;
  height: 100%;
  transform: translate3d(0, 50vh, 0);
  opacity: 0;
  transition: transform 3s cubic-bezier(0.76, 0, 0.24, 1), opacity 1s linear 2s;
}
#box .scene.on.element {
  pointer-events: auto;
}
#box .scene.on.element > .inner {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
#box .scene.go > .inner {
  transform: translate3d(0, -50vh, 0);
}
#animContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: var(--window-height, 100vh);
  opacity: 0;
  transition: opacity 1s linear;
}

#animContainer.on {
  opacity: 1;
}

#animContainer > .inner {
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

#lottie {
  background: none;
  width: 100vw;
  height: calc(100vw * 0.73);
  display: block;
  position: absolute;
  top: calc(var(--window-height, 100vh) * 0.5);
  left: 0;
  z-index: 1;
  overflow: visible;
  transform: translateY(-50%) scale(1.5);
  text-align: center;
  opacity: 1;
  transition: height 1s cubic-bezier(0.76, 0, 0.24, 1);
}
#lottie svg {
  overflow: visible;
}
/*#lottieサイズ調整*/
/*画面横*/
@media (orientation: landscape) {
  #lottie {
    transform: translateY(-50%) scale(1.1);
  }
}
/*画面縦*/
@media (orientation: portrait) {
  #lottie {
    transform: translateY(-50%) scale(1.5);
  }
}
@media (max-width: 768px) and (orientation: portrait) {
  #lottie {
    transform: translateY(-50%) scale(2.4);
  }
}

@media (max-width: 560px) and (orientation: portrait) {
  #lottie {
    transform: translateY(-50%) scale(2.4);
  }
}

/*parts*/
.parts {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--window-height, 100vh);
}
.parts .bg_blue {
  background: #005abb;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.parts .bg_blue::after {
  content: '';
  width: 100%;
  height: calc(var(--window-height, 100vh) * 0.3);
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 90, 187, 1) 0%,
    rgba(255, 255, 255, 1) 74%
  );
}
.parts .bg_blue.on {
  display: block;
  top: 0;
}
.parts .bg_blue.goto {
  top: calc(-100vh - 30vh);
}

#displayFrame {
  position: fixed;
  width: 90px;
  display: none;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  background: #f00;
  font-size: 10px;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 0.5em 1em;
}

#seekbar {
  position: fixed;
  width: 2px;
  height: calc(var(--window-height, 100vh) * 0.8);
  top: calc(var(--window-height, 100vh) * 0.5);
  left: 0;
  opacity: 0;
  transition: opacity 1s linear, left 1s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 60%;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #30aac6;
  pointer-events: none;
}

#seekbar.on {
  left: 5vw;
  opacity: 1;
  pointer-events: auto;
}

#seekbar::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #30aac6;
}

#seekbar .bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 0%;
  background: #30aac6;
}

#seekbar .index {
  width: 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#seekbar .index li {
  padding-left: 1em;
  position: relative;
  height: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
}
#seekbar .index li::after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #30aac6;
  border-color: #30aac6;
  border-style: solid;
  border-width: 0;
  left: 1px;
  top: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
#seekbar .index li .inner {
  transform: translateY(-50%);
  position: relative;
  transition: padding 0.3s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s linear;
}

@media (max-width: 768px) and (orientation: portrait) {
  #seekbar {
    font-size: 1.2em;
  }
  #seekbar .index {
    width: auto;
  }
  #seekbar .index li .inner {
    opacity: 0;
    pointer-events: none;
    width: 50vw;
  }
  #seekbar .index li.touchover .inner {
    opacity: 1;
    pointer-events: auto;
  }
}

#seekbar .index li .inner::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  background: #30aac6;
  left: -0.5em;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

#seekbar .index li.active {
  font-size: 120%;
  padding-left: 1em;
}
#seekbar .index li.active::after {
  border-width: 2px;
  background: #fff;
  width: 13px;
  height: 13px;
}

.isTouchDev #seekbar .index li:hover {
  font-size: 120%;
}
.isTouchDev #seekbar .index li:hover {
  border-width: 2px;
  background: #fff;
  width: 13px;
  height: 13px;
}

/*テキスト*/
#box .scene .textArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
#box .scene .textArea p + p {
  margin-top: 2em;
}

/*
loop
*/

#box .scene .inner > * {
  opacity: 0;
  transition: opacity 0.7s linear, top 0.3s linear;
  will-change: opacity, top;
}
#box .scene.on.element .inner > * {
  opacity: 1;
}
#box .scene.go .inner > * {
  opacity: 0;
}

/*font*/
#loop05.scene,
#loop06.scene,
#loop07.scene,
#loop08.scene,
#loop09.scene,
#loop10.scene,
#loop11.scene {
  color: #fff;
}

/*layout*/

#loop03.scene .textArea {
  top: 19%;
}
#loop04.scene .textArea {
  top: 30%;
}
#loop05.scene .textArea {
  top: var(--window-space-top, 15%);
}
#loop06.scene .textArea {
  top: var(--window-space-top, 15%);
  margin-top: 1.5vw;
}
#loop07.scene .textArea {
  top: var(--window-space-bottom, 85%);
  margin-top: -5vh;
}
#loop08.scene .textArea {
  top: var(--window-space-top, 30%);
}
#loop09.scene .textArea {
  top: var(--window-space-bottom, 85%);
}
#loop10.scene .textArea {
  top: var(--window-space-top, 40%);
  margin-top: 5vh;
}
#loop11.scene .textArea {
  top: var(--window-space-top, 15%);
  margin-top: 5vh;
}

@media (max-width: 768px) and (orientation: portrait) {
  #loop01.scene .textArea {
    top: calc(var(--window-height) * 0.5);
    margin-top: 0;
  }
  #loop03.scene .textArea {
    top: calc(var(--window-height) * 0.15);
  }
  #loop04.scene .textArea {
    top: 30%;
  }
  #loop05.scene .textArea {
    top: calc(var(--window-height) * 0.15);
  }
  #loop06.scene .textArea {
    top: calc(var(--window-height) * 0.15);
    margin-top: 1.5vw;
  }
  #loop07.scene .textArea {
    top: calc(var(--window-height) * 0.85);
    margin-top: 0;
  }
  #loop08.scene .textArea {
    top: calc(var(--window-height) * 0.2);
  }
  #loop09.scene .textArea {
    top: calc(var(--window-height) * 0.7);
  }
  #loop10.scene .textArea {
    top: calc(var(--window-height) * 0.4);
  }
  #loop11.scene .textArea {
    top: calc(var(--window-height) * 0.7);
  }
}

#lottie.customTiming_intro {
  height: calc(var(--window-height, 100vh) * 1.3);
}
#animContainer.customTiming01 > .inner {
  transform: scale(0.7) translate3d(0, 10vh, 0);
}
#animContainer.customTiming02 > .inner {
  transform: scale(0.7) translate3d(0, -11vh, 0);
}
#animContainer.customTiming03 > .inner {
  transform: translate3d(0, 35vh, 0);
}
#animContainer.customTiming04 > .inner {
  transform: translate3d(0, -40vh, 0);
}
#animContainer.customTiming05 > .inner {
  transform: translate3d(0, 25vh, 0);
}
#animContainer.customTiming06 > .inner {
  transform: translate3d(0, 10vh, 0);
}
#animContainer.customTiming_last > .inner {
  transform: scale(1.4);
}

@media (max-width: 768px) and (orientation: portrait) {
  #lottie.customTiming_intro {
    height: calc(100vw * 0.73);
  }
  #animContainer.customTiming01 > .inner {
    transform: scale(1.1) translate3d(0, 5vh, 0);
  }
  #animContainer.customTiming02 > .inner {
    transform: scale(1.2) translate3d(0, -7vh, 0);
  }
  #animContainer.customTiming03 > .inner {
    transform: translate3d(0, 8vh, 0);
  }
  #animContainer.customTiming_loop03_sp > .inner {
    transform: scale(0.7) translate3d(0, 15vh, 0);
  }
  #animContainer.customTiming04 > .inner {
    transform: translate3d(0, -15vh, 0);
  }
  #animContainer.customTiming05 > .inner {
    /*transform: translate3d(0, 25vh, 0);*/
  }
  #animContainer.customTiming06 > .inner {
    transform: translate3d(0, -10vh, 0);
  }
  #animContainer.customTiming_last > .inner {
    transform: scale(1.4);
  }
}

.links {
  width: fit-content;
  margin: 0 auto;
}
.links .tit {
  font-size: 1.3em;
}

.links ul {
  margin-top: 1em;
  padding: 0 0.5em;
}
.links ul li + li {
  margin-top: 0.5em;
}

.links ul li a {
  position: relative;
  display: flex;
  font-size: 1em;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.links ul li a:after {
  display: block;
  content: '';
  align-self: center;
  flex-grow: 1;
  height: 2px;
  background: currentColor;
  margin-left: 1em;
}
.links ul li a:before {
  position: absolute;
  display: block;
  content: '';
  width: 1em;
  height: 2px;
  background: currentColor;
  top: calc(50% - 1px);
  right: 0;
  transform-origin: right bottom;
  rotate: 45deg;
}

/** GDPR管理  **/
#gdpr {
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, Roboto, "Droid Sans", sans-serif;
	display: none;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	background-color: rgba(228, 228, 228, 0.8);
	z-index: 10000;
	border-top: 1px solid #eee;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0 !important;
}
#gdpr > div {
	max-width: 1020px;
	padding: 15px 20px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
@media (max-width: 769px) {
  #gdpr > div {
		flex-direction: column;
		gap: 15px;
  }
}
#gdpr > div .tx {
	width: calc(100% - 300px);
}
@media (max-width: 769px) {
  #gdpr > div .tx {
		width: auto;
  }
}
#gdpr > div .tx p {
	line-height: 1.5;
}
#gdpr > div .tx p a {
	color: #000;
}
#gdpr > div .tx ul li + li {
	margin-top: 10px;
}
#gdpr > div .tx ul li label {
	cursor: pointer;
}
#gdpr > div .tx ul li label:has(#gdpr01) {
	cursor: not-allowed;
	pointer-events: none;
}
#gdpr > div .tx ul li span {
	display: block;
	margin-top: 5px;
	font-size: 11px;
}
#gdpr > div .tx ul li input#gdpr01 {
	pointer-events: none;
	cursor: not-allowed;
}
#gdpr > div .btn {
	width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
@media (max-width: 769px) {
  #gdpr > div .btn {
		width: auto;
  }
}
#gdpr > div .btn button {
	background: #727272;
	color: #fff;
	border-radius: 30px;
	border: none;
	padding: 5px 30px;
	line-height: 1.1;
	cursor: pointer;
}
#gdpr > div .btn button.setting {
	background: #999;
}
#gdpr > div.phase2 {
	display: none;
}
