.sec-kv img {
	width: 100%;
	height: auto;
}
.sec-kv .bg {
	position: relative;
	z-index: 1;
}
.sec-kv .parts {
	position: absolute;
	z-index: 2;
}
.sec-kv .p01 {
	top: 5%;
	left: 18%;
	width: 13.5%;
	opacity: 0;
	transform: translateY(15%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0.4s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0.4s;
}
.sec-kv .p02 {
	top: 5%;
	right: 15%;
	width: 14.6%;
	opacity: 0;
	transform: translateY(15%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0.6s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0.6s;
}
.sec-kv .p03 {
	top: 5%;
	left: 37%;
	width: 25.9%;
	opacity: 0;
	transform: translateY(15%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0.8s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0.8s;
}
.sec-kv .p04 {
	top: 18%;
	left: 9.7%;
	width: 8.6%;
	opacity: 0;
	transform: scale(1.8);
	transition: opacity 0.4s cubic-bezier(0, 0, 0.25, 1) 1s, transform 0.4s cubic-bezier(0, 0, 0.25, 1) 1s;
}
.sec-kv.in .p01,
.sec-kv.in .p02,
.sec-kv.in .p03 {
	opacity: 1;
	transform: translate(0, 0);
}
.sec-kv.in .p04 {
	opacity: 1;
	transform: scale(1);
}

.sec-movie img {
	width: 100%;
	height: auto;
}
.sec-movie .bg {
	position: relative;
	z-index: 1;
}
.sec-movie .play-btn {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec-movie .play-btn span {
	display: block;
	width: 8.2%;
	height: 14.6428571429%;
	background: url(../img/icon-play.png) 0 0 no-repeat;
	background-size: 100% auto;
}
.sec-movie .play-btn:hover span {
	background-image: url(../img/icon-play-off.png);
}

.sec-point {
	padding: 1.2% 1.6%;
}
.sec-point .cont-wrap {
	width: 100%;
	position: relative;
}
.sec-point .cont-wrap img {
	width: 100%;
	height: auto;
}
.sec-point .cont-wrap .main {
	opacity: 0;
	transform: translateY(25%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0s;
	position: relative;
	z-index: 2;
}
.sec-point .cont-wrap .chara {
	position: absolute;
	left: 6%;
	top: 0;
	z-index: 1;
	width: 47.3%;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0.6s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0.6s;
}
@media only screen and (max-width: 767px) {
	.sec-point .cont-wrap .chara {
		top: 1%;
		left: 2.5%;
	}
}
.sec-point .cont-wrap.in .main,
.sec-point .cont-wrap.in .chara {
	opacity: 1;
	transform: translate(0, 0);
}

.sec-reitou img {
	width: 100%;
	height: auto;
}
.sec-reitou .cont-wrap {
	background-color: #fff;
	position: relative;
	padding: 2.4% 2.6%;
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1);
}
@media only screen and (max-width: 767px) {
	.sec-reitou .cont-wrap {
		padding: 2.6075619296vw;
	}
}
.sec-reitou .cont-wrap.in {
	opacity: 1;
	transition-delay: 0.5s;
}
.sec-reitou .txt {
	position: absolute;
	top: 50%;
	left: 9%;
	transform: translateY(-50%);
	width: 35.4564755839%;
}
@media only screen and (max-width: 767px) {
	.sec-reitou .txt {
		width: 32.5945241199vw;
	}
}
.sec-reitou .link {
	position: absolute;
	width: 16.5605095541%;
	right: 11%;
	bottom: 13%;
}
@media only screen and (max-width: 767px) {
	.sec-reitou .link {
		width: 15.2542372881vw;
	}
}

.sec-appare {
	padding: 29px 35px;
}
@media only screen and (max-width: 767px) {
	.sec-appare {
		padding: 3%;
	}
}
.sec-appare .cont-wrap {
	position: relative;
	border-left: 5px solid #917000;
	border-right: 5px solid #a28d30;
	padding: 5px 0;
}
@media only screen and (max-width: 767px) {
	.sec-appare .cont-wrap {
		border-width: 3px;
		padding: 3px 0;
	}
}
.sec-appare .cont-wrap:before, .sec-appare .cont-wrap:after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	background: #917000;
	background: -moz-linear-gradient(left, #917000 0%, #a28d30 100%);
	background: -webkit-linear-gradient(left, #917000 0%, #a28d30 100%);
	background: linear-gradient(to right, #917000 0%, #a28d30 100%);
	position: absolute;
	left: 0;
}
@media only screen and (max-width: 767px) {
	.sec-appare .cont-wrap:before, .sec-appare .cont-wrap:after {
		height: 3px;
	}
}
.sec-appare .cont-wrap:before {
	top: 0;
}
.sec-appare .cont-wrap:after {
	bottom: 0;
}
.sec-appare .label {
	width: 100%;
	opacity: 0;
	transform: translateY(25%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0s;
}
.sec-appare .label.in {
	opacity: 1;
	transform: translate(0, 0);
}
.sec-appare .label img {
	width: 100%;
}
.sec-appare .list {
	width: 100%;
}
.sec-appare .list li {
	opacity: 0;
	transform: translateY(25%);
	transition: opacity 0.6s cubic-bezier(0, 0, 0.25, 1) 0s, transform 0.6s cubic-bezier(0.46, 0.05, 0.5, 1.45) 0s;
}
.sec-appare .list li.in {
	opacity: 1;
	transform: translate(0, 0);
}
.sec-appare .list li img {
	width: 100%;
}

#cookie-popup {
    max-height: calc(100vh - 20px);
    position: fixed;
    height: auto;
    min-width: 30%;
    max-width: 100%;
    width: 30%;
    right: 10px;
    bottom: 10px;
    box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px;
    padding: 15px 20px;
    background: #fff;
    z-index: 1000;
    border-radius: 15px;
    font-size: 11px;
    letter-spacing: 1px;
}

#cookie-popup .cookie-buttons-block{
  grid-column: 3
}

#cookie-popup .cookie-buttons-block .cookie-btn {
  height: 45px;
  padding: 10px;
  margin: initial;
  width: 32%;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  text-align: center;
  border-radius: 5px;
  color: #ea0329;
  border: 1px solid #ea0329;
}
#cookie-popup .cookie-buttons-block .cookie-accept {
  background-color: #ea0329;
  border: 1px solid #ea0329;
  color: #fff
}

#cookie-popup .cookie-buttons-block .cookie-view-preferences {
  padding: 0;
}
@media only screen and (max-width: 1200px){
  #cookie-popup {
    width: 100%;
    right: 0%;
  }
  #cookie-popup .cookie-buttons-block .cookie-btn {
    width: 100%;
    margin: 6px;
  }
}

#cookie-popup .d-none {
  display: none;
}

#cookie-popup .lbl-toggle {
  display: block;
  cursor: pointer;
  padding: 9px;
  background-color: #efefef80;
  margin-bottom: 10px;
  border-radius: 3px;
}

#cookie-popup .lbl-toggle.lbl-toggle-first {
  background-color: #fff;
  margin-bottom: 0;
  border-radius: 0;
}

#cookie-popup .collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

#cookie-popup .toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

#cookie-popup .lbl-toggle::after {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-left: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

#cookie-popup .toggle:checked + .lbl-toggle::after {
  transform: rotate(90deg) translateX(-3px);
}

