@charset "utf-8";
/* CSS Document */


main {
  clear: both;
  width: 100%;
}
main a:hover {
	text-decoration: none;
}
main img {
  width: 100%;
}
main a {
	/*text-decoration: none !important;*/
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
main a:hover {
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  text-decoration: none;
}


.pc_only {
}
.sp_only, .sp_only2 {
	display: none !important;
}
.resp_img  img + img {
	display: none;
}
@media screen and (max-width: 767px) {
	main img {
		width: 100%;
	}
	.pc_only {
		display: none !important;
	}
	.sp_only {
		display: block !important;
	}
	.sp_only2 {
		display: inline-block !important;
	}
	.resp_img  img {
		display: none;
	}
	.resp_img  img + img {
		display: block;
	}
}


/* メインビジュアル ------------------------*/
.mv {
	clear: both;
	display: block;
	width: 100%;
	margin: 0 0 5em;
}
.mv--container {
 	width: 100%;
	position: relative;
}
.mv--img_container {
	opacity: 0;
	animation: fadein 4s ease-in-out 0.5s forwards;
}
.mv--img {
	width: 100%;
	height: 51.428571428vw;
	background: url("../img/mv_img_pc.jpg") no-repeat center;
	background-size: cover;
}
.mv--ttl_container {
	position: absolute;
	left: 50%;
	top: calc( 50% - ( 80px / 2 ) ); 
	opacity: 0;
	animation: fadein2 6s ease 0.5s forwards;
}
.mv--ttl {
	width: 363px;
	height: 80px;
	background: url("../img/mv_pc.png") no-repeat center;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	.mv--img {
		height: 186.666667vw;
		background: url("../img/mv_img_sp.jpg") no-repeat center;
		background-size: cover;
	}
	.mv--ttl_container {
		left: 0;
	}
	.mv--ttl {
		width: 96.8vw;
		height: 21.333334vw;
		background: url("../img/mv_sp.png") no-repeat center;
		background-size: cover;
	}
	
	
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
}

@keyframes fadein2 {
  0% {opacity: 0}
  30% {opacity: 0}
  100% {opacity: 1}
}



/* コンテンツ　フェードイン ------------------------*/

main .fadeInUp,
main .fadeInUp .frameIn,
main .fadeInUp .frameIn2{
  opacity: 0;
}
main .fadeInUp.displayed {
	opacity: 1;
}

main .fadeInUp.displayed .frameIn {
  animation: frameIn 1.8s ease-in-out 0.5s forwards;
}
main .fadeInUp.displayed .frameIn2 {
  animation: frameIn2 1.8s ease-in-out 0.5s forwards;
}



@keyframes frameIn {
	from {
		opacity: 0;
	  transform: translateY(10%) scale(1.05);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@keyframes frameIn2 {
	from {
		opacity: 0;
	  transform: translateY(10%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* コンテンツ ------------------------*/

main .sec {
	clear: both;
	width: 100%;
	margin: 0 auto 5em;
}
main .sec--contents {
	clear: both;
	width: 100%;
}
main .sec--contents_wrap {
	clear: both;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto 5em;
	display: -webkit-flex;
	display: flex;
}

main .sec--contents_03 .sec--contents_wrap {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

main .sec--contents_01 .sec--contents_img {
	width: 67.142857142%;
}
main .sec--contents_01 .sec--contents_txt {
	width: calc( 100% - 67.142857142% - 4.285714285%);
	margin-left: 4.285714285%;
}
main .sec--contents_03 .sec--contents_img {
	width: 58.57142857142857%;
}
main .sec--contents_03 .sec--contents_txt {
	width: calc( 100% - 58.57142857142857% );
	padding-left: 0;
	padding-right: 4.285714285%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

main .sec--contents_img img {
	filter: brightness(0);
	transition: filter 2s ease;
}
main .sec--contents_img.displayed img {
	filter: brightness(1);
}


main .sec--contents .sec--contents_txt_wrap {
	writing-mode: vertical-rl;
	height: min-content;
}
main .delay-item .delay-item_txt {
	display: inline-block;
	opacity: 0;
	filter: blur(50px);
	transform: translateY(30px);
	transition: all 2s cubic-bezier(.65,.05,.36,1);
}
main .displayed .delay-item .delay-item_txt {
	filter: blur(0);
	transform: translateY(0);
	opacity: 1;
}

main .displayed .delay-item h3 .delay-item_txt,
main .displayed .delay-item .delay-item_txt:nth-of-type(1) {
	transition-delay: 0s;
}
main .displayed .delay-item h3 + p .delay-item_txt:nth-of-type(1) ,
main .displayed .delay-item .delay-item_txt:nth-of-type(2) {
	transition-delay: 0.4s;
}
main .displayed .delay-item h3 + p .delay-item_txt:nth-of-type(2) ,
main .displayed .delay-item .delay-item_txt:nth-of-type(3) {
	transition-delay: 0.8s;
}
main .displayed .delay-item h3 + p .delay-item_txt:nth-of-type(3) ,
main .displayed .delay-item .delay-item_txt:nth-of-type(4) {
	transition-delay: 1.2s;
}
main .displayed .delay-item h3 + p .delay-item_txt:nth-of-type(4) ,
main .displayed .delay-item .delay-item_txt:nth-of-type(5) {
	transition-delay: 1.6s;
}
main .displayed .delay-item h3 + p .delay-item_txt:nth-of-type(5) ,
main .displayed .delay-item .delay-item_txt:nth-of-type(6) {
	transition-delay: 2s;
}
main .displayed .delay-item .delay-item_txt:nth-of-type(7) {
	transition-delay: 2.4s;
}
main .displayed .delay-item .delay-item_txt:nth-of-type(8) {
	transition-delay: 2.8s;
}
main .displayed .delay-item .delay-item_txt:nth-of-type(9) {
	transition-delay: 3.2s;
}
main .displayed .delay-item .delay-item_txt:nth-of-type(10) {
	transition-delay: 3.6s;
}


@media screen and (max-width: 767px) {
	main .sec--contents_wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	}
	main .sec--contents_01 .sec--contents_img {
		width: 100%;
	}
	main .sec--contents_01 .sec--contents_txt {
		width: 100%;
		padding: 2.1em 13.86666666666667% 0 12%;
	}
	main .sec--contents_01 .sec--contents_txt_wrap {
		width: 100%;
	}
	main .sec--contents_01 .displayed .delay-item h3 {
		width: 28.05755395683453%;
	}
	main .sec--contents_01 .displayed .delay-item h3 .delay-item_txt {
		width: 100%;
	}

	main .sec--contents_01 .displayed .delay-item p  {
		width: calc( 100% - 28.05755395683453% );
	}
	main .sec--contents_01 .displayed .delay-item p .delay-item_txt {
		width: calc( 100% / 5 );
	}
	main .sec--contents_03 .sec--contents_img {
		width: 100%;
	}
	main .sec--contents_03 .sec--contents_txt {
		width: 100%;
		padding: 2.1em 0 0;
		-webkit-justify-content: center;
		justify-content: center;
	}
	main .sec--contents_03 .displayed .delay-item p  {
		width: 90.66666667vw;
		margin: 2em auto 0;
	}
	main .sec--contents_03 .displayed .delay-item p .delay-item_txt {
		width: calc( 100% / 10 );
	}
}



main .sec_01 .sec--contents_wrap-s {
	width: 440px;
	margin: 0 auto 5em;
}
main .sec--contents_02 li:nth-of-type(1) span {
  display: inline-block;
  width: 46px;
}
main .sec--contents_02 li:nth-of-type(3) span {
  display: inline-block;
  width: 110px;
}

main .sec--contents_02 li:not(:last-child) {
	margin-bottom: 1.14285714285em;
}
@media screen and (max-width: 767px) {
	main .sec_01 .sec--contents_wrap-s {
		width: 89.06666666666667%;
	}
	main .sec--contents_02 li:nth-of-type(1) span {
		width: 18.26347305389222%;
	}
	main .sec--contents_02 li:nth-of-type(3) span {
		width: 35.32934131736527%;
	}
}

main .sec_01 .sec--contents_wrap-m {
	width: 71.42857142857143%;
	max-width: 1000px;
	margin: 0 auto 5em;
}
main .sec--contents_04 ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
} 
@media screen and (max-width: 767px) {
	main .sec_01 .sec--contents_wrap-m {
		width: 89.33333333333333%;
	}
	main .sec--contents_04 ul {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;
	}
}


/* Photo Gallery */
.sec--contents_gallery {
	display: -webkit-flex;
	display: flex;
}

.loop-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.loop-box, .loop-box ul {
  height: 250px;
  /* スライダーの高さ - 変更注意 */
}
@media screen and (min-width: 768px) {
  .loop-box, .loop-box ul {
    height: 360px;
  }
}

.loop-box ul {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  max-width: 10000%;
  min-width: 100%;
  width: 1875px;
  /* 画像の横幅×枚数 - 変更注意・変更可・変更注意 */
  animation: 160s linear 0.5s infinite;
  /* アニメーション設定 - 変更可 */
}
@media screen and (min-width: 768px) {
  .loop-box ul {
    width: 2800px;
  }
}

.loop-box li {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  width: 375px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .loop-box li {
    padding: 0;
    width: 570px;
  }
}

.loop-box img {
  height: auto;
  width: 100%;
}

/* 5.アニメーション個別設定 ++++++++++ */

.loop-box--1 ul.loop1 {
  animation-name: loop1;
}

.loop-box--1 ul.loop2 {
  animation-name: loop2;
}
.loop-box--2 ul.loop1 {
  animation-name: loop3;
}

.loop-box--2 ul.loop2 {
  animation-name: loop4;
}
@keyframes loop1 {
  0% {
    transform: translateX(0);
  }
  49.99999% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(0);
  }
  49.99999% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(-100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}



/* Digital Book Btn */
.btn_db {
	/*opacity: 0;*/
	animation-delay: 1.2s;
}
.btn_db a {
	cursor: pointer;
	transition: all .8s;
}

.btn {
	overflow: hidden;
	position: relative;
	display: flex;
	width: 270px;
	padding: 0 14px;
	color: #fff;
	border: 1px solid #221815;
	text-decoration: none;
	background-color: #221815;
	transition: all .8s;
}

/*
.btn:after {
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: 1;
    background-color: #221815;
	transition: 0.5s ease-in-out;
	transform: translateX(-100%);
  }

.btn:hover:after {
	transform: translateX(0);
}
*/

.btn__text {
	position: relative;
	z-index: 2;
	display: block;
	padding: 10px 10px 10px 0;
	color: #FFF;
	font-size: 18px;
	white-space: nowrap;
	transition: 0.5s ease-in-out;
}

.btn__arrow {
	position: relative;
	display: block;
	width: 60%;
}

.btn__arrow:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 3;
	display: block;
	width: 60%;
	height: 1px;
	margin: 4px 0 0;
	background-color: #fff;
	transition: 0.5s ease-in-out;
}

.btn__arrow:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 40%;
	z-index: 3;
	display: block;
	width: 1px;
	height: 10px;
	margin: -6px 0 0;
	background-color: #fff;
	transform: rotate(-45deg);
	transform-origin: right bottom;
	transition: 0.5s ease-in-out;
}


/* マウスオーバー時のボタン */
.btn:hover {
	background-color: #fff;
}
.btn:hover .btn__text {
	color: #000;
}
.btn:hover .btn__arrow:before,
.btn:hover .btn__arrow:after {
	background-color: #000;
}



.mincho { font-family: 'Times New Roman', '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;}


.sec_02 .btn {
	margin: 2.3em auto 0;
}




/* SOTOITARI series */
.sec_03 {
}
main .sec_03 h2 {
	width: 293px;
	margin: 0 auto 3.6em;
}
main .sec_03 .sec--contents_wrap-m {
	width: 71.42857142857143%;
	max-width: 1000px;
	min-width: 800px;
	margin: 0 auto 5em;
}

main .series-list {
	clear: both;
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
main .series-list li {
	position: relative;
	width: 48%;
	margin-bottom: 4.6em;
}
main .series-list-item_wrap {
	height: 100%;
}
main .series-img {
	position: relative;
	margin: 0 0 2em;
}
main .series-img_ttl {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	height: 70px;
}
main .series-img_ttl img {
	height: 100%;
	width: auto;
}

main .series-txt {
	/*min-height: 16em;*/
	padding-bottom: 60px;
	font-family: 'Times New Roman', '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;
	color: #000;
}
/*main .series-list li:nth-of-type(-n+2) .series-txt {
	min-height: 9.3em;
}*/
main .series-txt h3 {
	font-size: 1.285714285714286em;
	line-height: 1.333333334;
}
main .series-txt h3 + p {
	margin-top: 1em;
}
main .series-txt p {
	font-size: 1em;
	line-height: 1.857142857142857;
}

main .sec_03 .btn_db {
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 767px) {
	main .sec_03 h2 {
		width: 89.33333333333333%;
	}
	main .sec_03 .sec--contents_wrap-m {
		width: 89.33333333333333%;
		max-width: 670px;
		min-width: inherit;
		margin: 0 auto 5em;
	}
	main .series-list li  {
		width: 100%;
		margin-bottom: 0;
	}
	main .series-list li:not(:last-child)  {
		margin-bottom: 4em;
	}
	main .series-txt ,
	main .series-list li:nth-of-type(-n+2) .series-txt {
		min-height: inherit;
	}
}



/* バナーエリア */
.sec_04 {
}
main .sec_04  {
	
}
main .sec_04 .sec--contents_wrap-m {
	width: 71.42857142857143%;
	max-width: 1000px;
	min-width: 800px;
	margin: 0 auto 5em;
	padding-top: 5em;
	border-top: 1px solid #e6e6e6;
}

main .bnr-list {
	clear: both;
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
/*	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;*/
}
main .bnr-list li {
	width: 30%;
}
main .bnr-list-item_img {
	margin: 0 0 1.5em;
}
main .bnr-list-item_img a {
	display: block;
	width: 100%;
	height: 100px;
	text-align: center;
	text-decoration: none;
	background-color: #fff;
	border: 1px #000 solid;
	transition: 0.6s ease-in-out;
}
main .bnr-list-item_img a:hover {
	background-color: #FCFCFC;
	opacity: 0.5;
}
main .bnr-list-item_img a img {
	width: auto;
	height: 100%;
	margin: 0 auto;
}

main .bnr-list-item_txt p {
	font-size: 0.8571428571428571em;
	line-height: 1.66666667;
	text-align: center;
}
@media screen and (max-width: 1100px) {
	main .bnr-list-item_txt p {
		font-size: 10px;
	}
}
@media screen and (max-width: 767px) {
	main .sec_04 .sec--contents_wrap-m {
		width: 89.33333333333333%;
		max-width: 670px;
		min-width: inherit;
	}
  main .bnr-list {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	main .bnr-list li {
		width: 100%;
		margin-bottom: 0;
	}
	main .bnr-list li:not(:last-child) {
		margin-bottom: 2em;
	}
	main .bnr-list-item_txt p {
		font-size: 12px;
		font-size: 3.2vw;
	}
}



/* フッターロゴ */
.sec_logo {
	padding: 0 0 2em;
	text-align: center;
}
.logo-img img {
	width: 80px;
}
@media screen and (max-width: 767px) {
}
