@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap');

main{
	font-family: 'Red Hat Display', sans-serif;
}

main .breadcrumbs{
	color: #3c1e00;
}

.fubox {
  opacity: 0;
}

.fade.fubox {
  transition: opacity .5s ease-out;
}

.fade.fubox.active {
    opacity: 1;
}

.up.fubox.active {
  opacity: 1;
  animation: fadeInup .5s ease-out;
  animation-fill-mode: backwards;
}
@keyframes fadeInup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fade.delay01 {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
.fade.delay02 {
  -webkit-transition-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}
.fade.delay03 {
  -webkit-transition-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}


.up.delay01 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.1s !important;
}

.up.delay02 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.2s !important;
}

.up.delay03 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.3s !important;
}



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

.flex.reverse{
  flex-direction: row-reverse;
}

#marinos{
	min-width: 1200px;
}

#title .visual{
	position: relative;
	text-align: center;
	padding-bottom: 50px;
}

main h2{
  font-weight: normal;
}



/* firt 
===================*/
#first{
	background: url('img/first-bg.webp') no-repeat center top;
	background-size: cover;
	text-align: center;
	padding: 50px 0 120px;
}

#first .en-title{
  font-size: 1.5rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

#first .jp-title{
  font-size: 3.3rem;
  font-weight: normal;
  margin-bottom: 30px;
}

#first .date{
  display: inline-block;
  background-color: #E60000;
  color: #fff;
  line-height: 1;
  padding: 6px 12px;
  margin-bottom: 80px;
  font-size: 2.6rem;
}

#first .date span{
  font-size: 2.1rem;
}


#first p{
  font-size: 2rem;
}

#first p b{
  font-size: 3rem;
  color: #E60000;
  display: inline-block;
  border-bottom: 4px solid #E60000;
  margin-bottom: 50px;
}

#first a{
}

/* active 
===================*/
#active .flex .in{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 380px;
  margin: auto;
}

#active .left{
  flex: 1;
	background: url('img/active-bg.webp') no-repeat center top;
	background-size: cover;
}

#active .left h2{
  font-size: 5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#active .left .en{
  font-size: 1.2rem;
  margin-bottom: 60px;
}

#active .left p{
  font-size: 1.5rem;
}


#active .right{
  max-width: 806px;
  line-height: 0;
}

/* items 
===================*/
#items{
	padding: 80px 20px;
}

#items #items-nav{
  width: 38%;
}

#items #items-content{
  width: 62%;
}

#items #items-nav{
  position: relative;
}

#items #items-nav .scroll{
  position: absolute;
  left: 0;
  top: 0;
  background: url('img/items-logo.svg') no-repeat center bottom;
  width: 340px;
  height: 320px;
}

#items #items-nav h2{
  font-size: 5rem;
  margin-bottom: 20px;
}

#items #items-nav ul li{
  margin-bottom: 1rem;
}

#items #items-nav ul li a{
  position: relative;
  display: block;
  width: 180px;
  text-decoration: none;
  transition: .2s;
  padding-left: 15px;
}

#items #items-nav ul li a:hover{
  padding-left: 20px;
}

#items #items-nav ul li a::after{
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 1px;
  background-color: #000;
  left:0;
  top: 50%;
}

#items #items-nav ul li a:hover::after{
  width: 10px;
}

#items .item{
  flex-direction: row-reverse;
  margin-bottom: 80px;
}

#items .item .image{
  width: 320px;
}

#items .item .text{
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#items .item .text h3{
  font-size: 4.5rem;
  margin-bottom: 50px;
}

#items .item .text h3 .en{
  margin-bottom: 15px;
}

#items .item .text h3 .jp{
  font-size: 1.8rem;
  letter-spacing: 1px;
}

#items .item .text p{
  font-size: 1.4rem;
  line-height: 180%;
}

#items .item .text p .about{
  display: block;
  font-size: 1.3rem;
  margin-top: 2rem;
}

#items .item .text p .price{
  font-size: 1.8rem;
}

#items #item-set{
  border: 2px solid #000;
  padding: 30px 35px;
  margin-bottom: 15px;
}

#items #item-set .line1{
  font-size: 3.5rem;
  vertical-align: middle;
}
#items #item-set .line1 span{
  font-size: 1.8rem;
  padding-left: 30px;
}

#items #item-set .line2{
  font-size: 2.5rem;
  vertical-align: middle;
  color: #E60000;
}
#items #item-set .line2 span{
  font-size: 1.4rem;
  padding-left: 30px;
}

#items .anno{
  font-size: 1.4rem;
}


/* model 
===================*/
#model{
	background: #5A0000 url('img/model-bg.webp') no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 20px;
	color: #fff;
}

#model #model-head{
  margin-bottom: 100px;
}

#model #model-head .text{
  width: 290px;
}

#model #model-head .image{
  flex: 1;
}

#model #model-head .text h2{
  font-size:5rem;
  margin: 50px 0 100px;
}

#model #model-head .text p{
  font-size:1.5rem;
}

#model .twitter{
  justify-content: center;
}

#model .twitter .left{
}
#model .twitter .right{
  padding-left: 50px;
}


#model .twitter{
  margin-bottom: 80px;
}

#model .twitter p{
	margin-bottom: 50px;
	font-size: 1.8rem;
	line-height: 180%;
	font-weight: bold;
	text-align: center;
}

#model .twitter a.tw-btn{
	display: block;
	border: 2px solid #fff;
	line-height: 100%;
	padding: 24px 105px 24px 65px;
	font-weight: bold;
	font-size: 1.8rem;
	text-decoration: none;
	color: #fff;
	background: url('img/tw-icon.png') no-repeat right 35px center;
	background-size: 39px;
}

#model .etc-players{
	max-width: 1030px;
	margin: 0 auto 80px;
}

#model .etc-players h3{
  text-align: center;
}


#model .etc-players .flex{
  justify-content: center;
}

#model .tweet-box,
#model .etc-players .box{
  overflow-x: hidden;
  overflow-y: scroll;
  height: 300px;
  width: 312px;
  padding: 0 15px
}

#model .tweet-box::-webkit-scrollbar,
#model .etc-players .box::-webkit-scrollbar{
  width: 0;
}
#model .tweet-box::-webkit-scrollbar-track,
#model .etc-players .box::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  box-shadow: inset 0 0 2px #777; 
}
#model .tweet-box::-webkit-scrollbar-thumb,
#model .etc-players .box::-webkit-scrollbar-thumb{
  background: #ccc;
  box-shadow: none;
}


#model .etc-players .box{
  margin-bottom: 50px;
}

#model .etc-players .box .name{
  font-size: 1.4rem;
}

#model .etc-players .box .name img{
  vertical-align: -12px;
}

#model .players h3{
  width: 1068px;
  margin: 0 auto 20px;
}

#model .player{
  margin-bottom: 30px;
}

#model .player .prof{
  width: 1068px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
}

#model .player .prof .name .en{
  font-size: 1.2rem;
}
#model .player .prof .name .jp{
  font-size: 4rem;
}

#model .player .image{
  width: 100%;
}

#model .player .image .box{
  padding: 0 10px;
  outline: none;
}

#model .player .image img{
  height: 420px;
}


#model .player .slick-arrow{
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 2px solid #000;
}

#model .player .slick-prev{
  left: -20px;
}
#model .player .slick-next{
  right: -20px;
}

#model .player .slick-arrow::after{
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
}
#model .player .slick-prev::after{
  border-left: 2px solid #000;
  transform: rotate(-45deg);
  left:12px;
}
#model .player .slick-next::after{
  border-right: 2px solid #000;
  transform: rotate(45deg);
  left: 9px;
}

#model .yfm {
    width: 1068px;
    margin: 0 auto 0;
    text-align: right;
}

#model #movies {
  margin: 50px auto 0;
  text-align: center;
  max-width: 764px;
}

#model #movies .movie-box{
  margin-bottom: 80px;
}

#model #movies .movie-box h3{
  text-align: center;
  width: 100%;
}

/* campaign 
===================*/
#campaign{
	background: url('img/sec4-bg.jpg') no-repeat center center;
	background-size: cover;
	padding: 100px 20px;
  color: #000;
}

#campaign .inner{
  max-width: 920px;
}


#campaign #campaign-head{
  text-align: center;
  color: #fff;
}

#campaign #campaign-head .catch{
}

#campaign #campaign-head h2{
  font-size: 3.3rem;
  margin: 20px 0 30px
}

#campaign #campaign-head .date{
  display: inline-block;
  background-color: #E60000;
  color: #fff;
  line-height: 1;
  padding: 6px 12px;
  margin-bottom: 40px;
  font-size: 2.6rem;
}

#campaign #campaign-head .date span{
  font-size: 2.1rem;
}

#campaign #campaign-head .lead{
  font-size: 2rem;
  margin-bottom: 40px;
  line-height: 2;
}

#campaign #campaign-head .lead b{
  display: inline-block;
  font-size: 2.5rem;
  border-bottom: 4px solid #FFA700;
  line-height: 1;
}

#campaign .syou-box{
  position: relative;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 30px 35px;
  align-items: center;
}

#campaign .syou-box .syou{
  width: 80px;
  padding-right: 30px;
}

#campaign .syou-box .info{
  flex: 1;
  border-left: 2px solid #1B80D6;
  padding: 0 30px;
  color: #1B80D6;
}

#campaign .syou-box.syou-a .info{
  color: #E60000;
}

#campaign .syou-box.syou-a .info{
  border-left: 2px solid #E60000;
}

#campaign .syou-box .info h3{
  font-size: 2.0rem;
}
#campaign .syou-box.syou-a .info h3{
  font-size: 2.3rem;
}

#campaign .syou-box .info h3 span{
  font-size: 2.8rem;
}

#campaign .syou-box .info .flex{
  justify-content: left;
}

#campaign .syou-box .info .text{
  line-height: 1.8;
}

#campaign .syou-box.syou-a .info .text{
  padding-top: 30px;
}

#campaign .syou-box .info .image{
  padding-left: 30px;
}

#campaign .syou-box .info .anno {
  font-size: 1.2rem;
}

#campaign .side{
  position: absolute;
  right: -30px;
}

#campaign .syou-a .side{
  top: 10px;
}

#campaign .syou-c .side{
  top: 20px;
}

#campaign .syou-d .side{
  top: 20px;
}

#campaign .syou-e .side{
  top: 20px;
}

#campaign .jouken {
  color: #fff;
  align-items: flex-end;
  
}
#campaign .jouken .anno{
  font-size: 1.3rem;
}

#campaign .jouken .text{
  flex: 1;
}

#campaign .jouken .image{
  width: 230px;
  text-align: center;
  font-size: 1.1rem;
}

.shoplink {
  text-align: center;
  padding: 80px 20px 0;
}

/* faq 
===================*/
#faq{
	width: 900px;
	margin: 0 auto;
	padding: 90px 0 50px;
}

#faq h2{
	font-size: 20px;
	background-color: #121A2D;
	color: #fff;
	text-align: center;
	padding: 10px;
	line-height: 1;
}

#faq .boxs{
	border: 1px solid #121a2e;
	padding: 8px 70px;
}

#faq .box{
	padding: 28px;
	color: #002D58;
}

#faq .box.q1{
	border-bottom: 1px solid #121a2e;
}

#faq .box .q{
	background: url(./img/mark-q.png) no-repeat left top;
	background-size: 23px;
	padding-left: 50px;
	margin-bottom: 15px;
	color: #121a2e;
}

#faq .box .a{
	background: url(./img/mark-a.png) no-repeat left top;
	background-size: 23px;
	padding-left: 50px;
	color: #121a2e;
}


#sns{
	width: 620px;
	margin: 0 auto;
	margin-bottom: 35px;
}

#sns h2{
	text-align: center;
}

#sns .sns-in{
	padding: 18px;
}

#sns .sns-in .copy{
	font-size: 2.0rem;
	color: #121a2e;
	margin-bottom: 23px;
	font-weight: bold;
	text-align: center;
}

#sns .flex{
	justify-content: center;
	align-items: center;
}

#sns .flex > div{
	margin: 0 28px;
	height: 20px;
}

#sns .fb_iframe_widget{
	line-height: 0;
}

#etc .shoplink{
	text-align: center;
}


/*--------------------------------------
	Smartphone 
----------------------------------------*/

@media screen and (max-width: 767px) {


#marinos{
	background: none;
	min-width: 0;
}

.flex{
	display: block;
}

.flex.reverse{
  flex-direction: row;
}

#title .visual{
  line-height: 0;
  padding: 0;
}

#first{
  padding-bottom: 50px;
}

#first h2{
  margin-bottom: 20px;
}

#first .jp-title{
  font-size: 2rem;
}

#first .date{
  font-size: 1.8rem;
}

#first .date span{
  font-size: 1.4rem;
}
#first p{
  font-size: 1.6rem;
  line-height:1.8;
  margin-bottom: 30px;
}

#first p b{
  margin: 0;
  line-height: 1.2;
  font-size: 2.3rem;
}

#active .flex .in{
  padding: 30px 20px;
}

#active .left .en{
  margin-bottom: 30px;
}

#active .left p{
  font-size: 1.3rem;
}

#items{
  padding: 80px 10px;
}

#items #items-nav,
#items #items-content{
  width: 100%;
}

#items #items-nav .scroll{
  position: static;
  top: 0 !important;
  width: 100%;
  height: auto;
}

#items .item{
  margin-bottom: 50px;
}

#items .item .image{
  width: 100%;
}

#items .item .text{
  width: 100%;
}

#items .item .text h3{
  margin-bottom: 20px;
}

#items .item .text h3 .en{
  margin-bottom: 0px;
  font-size: 3.6rem;
}

#items #item-set{
  text-align: center;
  padding: 20px 20px;
}

#items #item-set .line1 span,
#items #item-set .line2 span{
  display: block;
}

#items #item-set .line1{
  font-size: 2.5rem;
  vertical-align: middle;
}
#items #item-set .line1 span{
  font-size: 1.5rem;
  padding-left: 0;
}

#items #item-set .line2{
  font-size: 2.0rem;
  vertical-align: middle;
  color: #E60000;
}
#items #item-set .line2 span{
  font-size: 1.2rem;
  padding-left: 0;
}
#model{
  padding: 30px 10px;
}

#model #model-head{
  margin-bottom: 20px;
}

#model #model-head .text h2{
  margin: 50px 0 30px;
}

#model .twitter p{
  font-size: 2rem;
}

#model .twitter .right{
  padding: 0;
}

#model .twitter a.tw-btn{
	padding: 15px;
	font-size: 1.4rem;
	padding: 10px 20px 10px 20px;
	background: none;
	text-align: center;
	
}
#model .twitter a.tw-btn .img{
	display: inline-block;
	width: 38px;
	vertical-align: middle;
	padding-left: 10px;
}

#model .tweet-box, 
#model .etc-players .box{
  width: 100%;
  margin-bottom: 30px;
}

#model .players .player{
  margin-bottom: 30px;
}

#model .player .slick-prev{
  left: -5px;
}
#model .player .slick-next{
  right: -5px;
}

#model #movies .movie-box h3
#model .players h3{
  width: 100%;
}

#model .player .prof{
  width: 100%;
}

#model .player .prof .name .en{
  font-size: 1.0rem;
}
#model .player .prof .name .jp{
  font-size: 2.3rem;
}

#model .player .prof .number{
  width: 50px;
}

#model #movies h2{
  margin-bottom: 15px;
}

#model #movies .movie-box h3{
  font-size: 1.6rem;
}

#model #movies .movie-box{
  margin-bottom: 30px;
}

#model .yfm{
  width: 100%;
  text-align: right;
  margin-left: auto;
}

#model .yfm img{
  width: 80px;
}

#campaign{
  padding: 50px 10px;
}

#campaign #campaign-head .catch{
  margin-bottom: 10px;
}

#campaign #campaign-head h2{
  font-size: 1.8rem;
  margin: 30px 0 0;
}

#campaign #campaign-head .date{
  font-size: 1.8rem;
  margin-top: 30px;
}

#campaign #campaign-head .date span{
  font-size: 1.4rem;
}

#campaign #campaign-head .lead{
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
#campaign #campaign-head .lead b{
  font-size: 1.8rem;
}

#campaign .syou-box{
  padding: 20px;
}

#campaign .syou-box .syou{
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 2px solid #1B80D6;
}

#campaign .syou-box.syou-a .syou{
  border-color: #E60000;
}

#campaign .syou-box.syou-a .info,
#campaign .syou-box .info{
  border: none;
  padding: 20px 0 0;
}

#campaign .syou-box .info .text{
  font-size: 1.4rem;
}

#campaign .syou-box .info h3{
  font-size: 1.6rem !important;
}

#campaign .syou-box .info h3 span{
  font-size: 2.4rem !important;
}

#campaign .syou-box .info .image{
  padding: 20px 0 0;
}

#campaign .syou-a .side {
    top: -45px;
    right: -13px;
}
#campaign .syou-c .side {
    top: -34px;
    right: -13px;
}
#campaign .syou-d .side {
    top: -22px;
    right: -13px;
}
#campaign .syou-e .side {
    top: -22px;
    right: -13px;
}

#campaign .jouken .text{
  font-size: 1.4rem;
}

#campaign .jouken .anno{
  font-size: 1.2rem;
}

#campaign .jouken .image{
  width: 100%;
  margin-top:1rem;
}


#sns{
	width: 100%;
	padding: 0 15px;
	margin-bottom: 0;
}

#sns h2{
	padding: 0 30px;
}


#sns .flex{
	padding: 0;
	display: flex;
}
#sns .flex > div{
	padding: 0 10px;
	height: auto;
	margin-bottom: 10px;
}

#sns .sns-in{
	padding: 15px 0;
}
#sns h3{
	font-size: 1.4rem;
}

#sns a{
	display: block;
	padding: 0 20px;
}


#faq{
	padding: 30px 10px;
	width: 100%;
}

#faq h2{
	font-size: 1.6rem;
}

#faq .boxs{
	padding: 0 20px;
}

#faq .box{
	padding: 20px 0;
}

#faq .box .q,
#faq .box .a{
	font-size: 1.1rem;
	min-height: 28px;
}


}