<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

div.welcome-screen {
  position: fixed;
  background-color: white;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/** アンケート用デザイン **/
div.welcome-question {
  position: fixed;
  background-color: rgba(0,0,0,0.5);
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

article.question-screen {
  position: relative;
  width: 80%;
  max-width: 640px;
  height: 80vh;
  background-color: white;
  overflow-y: auto;
}

@media screen and (min-width : 768px){
article.question-screen {
  height: 50vh;
}
}

@keyframes fadein {
  0% {
    opacity: 0;
    display: none;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hideframe {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

.hide-anime {
  animation: hideframe 1s linear 0s;
  animation-fill-mode: forwards;
  pointer-events: none;
}

.fadein-anime {
  animation: fadein 1s linear 0s;
  animation-fill-mode: forwards;
}

.question-hide-anime {
  animation: hideframe 0.3s linear 0s;
  animation-fill-mode: forwards;
  pointer-events: none;
}

.question-fadein-anime {
  animation: fadein 0.3s linear 0s;
  animation-fill-mode: forwards;
}

.question-title {
	text-align: center;
	line-height:150%;
}

a.question-btn {
	display:block;
	position: relative;
	z-index: 1;
	font-weight:700;
	text-align: center;
	color:var(--color-switch-txt);
	background-color:var(--color-switch-bg);
}

a.question-btn:before {
	content:"";
	position: absolute;
	border-top: 3px solid var(--color-switch-txt);
	border-right: 3px solid var(--color-switch-txt);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width : 767px){
  .question-text {
    position: relative;
    top: -2vw;
  }
  .question-title {
		font-size:4vw;
		padding-top:10vw;
		padding-bottom:4vw;
		margin-top:0;
		margin-bottom:3vw;
    background-color: #eeeae7;
    position: relative;
    top: -4vw;
  }
	a.question-btn {
		padding-top:4.5vw;
		padding-bottom:4.5vw;
		margin-bottom:4vw;
	}
	a.question-btn:before {
		top:4.5vw;
		left:4vw;
		width:3vw;
		height:3vw;
	}
	.question-btn-box {
    width: 90%;
    margin: auto;
    text-align: center;
  }
	.question-btn-box a.normal-btn:last-child {
		margin-bottom:0;
	}
}

@media screen and (min-width : 768px){
  .question-title {
		font-size:2.4rem;
		padding-top:1em;
		padding-bottom:1em;
		margin-top:0em;
		margin-bottom:0.5em;
    background-color: #eeeae7;
  }
	.question-btn-box {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 40px;
	}
	a.question-btn {
		padding-top:16px;
		padding-bottom:16px;
    margin: 0.5em 0;
	}
	a.question-btn:before {
		top:16px;
		left:8px;
		width:12px;
		height:12px;
	}
  .question-btn-box {
    width: 90%;
    margin: auto;
  }
}

.close-btn {
  display: block;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1;
  width: 40px;
  height: 30px;
  border: solid 1px #888;
  background-color: #eeeae7;
}

.close-btn::before, .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 20px;
	background: #444;
}

.close-btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.question-text {
  margin: 0.5em 0;
}

/** 標準画面 **/

.vimeo {
  position: relative;
  height: 0;
  padding: 0 0 600px 100%;
  overflow: hidden;
}

iframe.mini-player {
  position: absolute;
  top: 30px;
  left: 0;
  width: 153px;
  height: 268px;
}

div.mini-player {
  position: fixed;
  z-index: 900;
  background-color: #cccccc;
  width: 157px;
  height: 316px;
  border-radius: 8px;
  border: 2px solid white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  transition: width 0.1s ease 0s, height 0.1s ease 0s;
  bottom: 30px;
  right: 20px;
}

/**
.chat-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-height: 100%;
}

.chat-frame iframe {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
**/

.my-row {
  margin-top: 1rem;
}

.item-row {
  text-align: center;
}

.hidden {
  display: none !important;
}

/** ミニプレイヤーを表示するため、z-index を別より前に出しておく **/
.mainmovie-section {
  z-index: 99 !important;
}

.player-archive-section {
  display: block;
}

.player-wrapper {
  z-index: 999 !important;
}

@media screen and (min-width : 768px){
.player-archive-section .player-wrapper {
  padding-top: 567px;
}
}

/*
.commentbox {
  width: 100%;
}


ul.comment-display-box li.system {
  background-color: #eeeeee;
}

ul.comment-display-box li.system:before {
  background-size: 16px 16px;
  background-image: url(../images/info.svg);
}

*/

.coupon-display-box {
  text-align: center;
}

.coupon-display-box p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
.sp-only {
  display: none;
}
}

@media screen and (max-width: 767px) {
.coupon-display-box {
  padding-top: 3.5vw;  
  margin-bottom: 8vw;
}

.sp-only {}
}

/** for fixed message **/

.comment-display-box li.fixed-message a {
  display: block;
  padding-right: 1em;
  color: #101010;
  text-decoration: underline;
}

.comment-display-box li.fixed-message a.link-disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.comment-display-box li.fixed-message {
  background: #80716630;
  margin-top: 0 !important;
  padding-top: 1em;
  transition: background-color 0.5s;
}

.comment-display-box li.fixed-message:hover {
  background: #80716650;
}

.comment-display-box li.fixed-message:before {
  background-image: url(../images/pin.svg) !important;
  top: 1.3em;
  left: 4px;
}

@media screen and (min-width: 768px) {
.comment-display-box li.fixed-message:before {
  top: 1.5em;
}
}
</pre></body></html>