@charset "utf-8";

/* -------------------------------------------------
	animation
------------------------------------------------- */

.anim {
	opacity: 0;
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.5s ease-out;
}
.anim.to-left {
	transform: translateX(100%);
}

.anim.delay01 {
	transition-delay: 0.1s;
}
.anim.delay02 {
	transition-delay: 0.2s;
}
.anim.delay03 {
	transition-delay: 0.3s;
}

.anim.on {
	opacity: 1;
	transform: translateX(0) translateY(0) scale(1);
}

/* -------------------------------------------------
	first-view
------------------------------------------------- */

#movieWrap {
	position: absolute;
	z-index: 0;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	overflow: hidden;
	background-color: #000;
}
#movie {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%;);
}

#first-view {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#first-view h1 {
	/*width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: #fff;*/
	position: absolute;
	top: 40px;
	left: 40px;
}
#first-view h1 img {
	width: 115px;
}
#first-view .scroll {
	width: 85px;
	height: 85px;
	display: block;
	font-size: 19px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
#first-view .scroll span {
	width: 6px;
	height: 40px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}
#first-view .scroll span::after {
	content: "";
	display: block;
	position: absolute;
	background: #fff;
	-webkit-animation: scrlBar 1s linear infinite;
    animation: scrlBar 1s linear infinite;
	height: 100%;
	width: 100%;
}
@-webkit-keyframes scrlBar {
	0% { top: -100%;}
	100% { top: 100%;}
}
@keyframes scrlBar {
	0% { top: -100%;}
	100% { top: 100%;}
}

@media print, screen and (min-width:768px) {
	/*#first-view {
		background: url(../images/pic_main.jpg) no-repeat center center / cover;
	}*/
}

@media screen and (max-width:767px) {
	/*#first-view {
		background: url(../images/pic_main_sp.jpg) no-repeat center center / cover;
	}*/
	
	#movieWrap {
		height: 86vh;
	}
	#movie {
		height: 172vh !important;
		top: -43vh !important;
	}
	
	#first-view {
		height: 86vh;
	}
	#first-view h1 {
		/*width: 30vw;
		height: 30vw;*/
		top: 5vw;
		left: 5vw;
	}
	#first-view h1 img {
		width: 18vw;
	}
	#first-view .scroll {
		width: 80px;
		height: 70px;
    	font-size: 16px;
	}
	#first-view .scroll span {
		width: 4px;
	}
}

@media screen and (max-width:767px) and (orientation:landscape) {
	/*#first-view {
		background: url(../images/pic_main.jpg) no-repeat center center / cover;
	}*/
	
	#first-view h1 {
		width: 140px;
		height: 140px;
	}
	#first-view h1 img {
		width: 70px;
	}
	#first-view .scroll {
		width: 60px;
		height: 60px;
		font-size: 14px;
	}
	#first-view .scroll::after {
		width: 4px;
		height: 40px;
	}
}

/* -------------------------------------------------
	concept
------------------------------------------------- */

@media print, screen and (min-width:768px) {
	#concept {
		padding-top: 110px;
		position: relative;
	}
	#concept .inner {
		max-width: 1080px;
		width: 96%;
		margin: 0 auto;
		padding-bottom: 50px;
		position: relative;
	}
	#concept .fig-mt {
		width: 160px;
		height: 80px;
		background:
			url(../images/fig_01.png) no-repeat left top / 78px auto,
			url(../images/fig_01.png) no-repeat right bottom / 78px auto;
		position: absolute;
		left: inherit;
		right: 10%;
		top: 100%;
	}
	#concept .pic {
		width: calc(460 / 1080 * 100%);
	}
	#concept p {
		max-height: 65%;
		padding: 15px;
		box-sizing: border-box;
		writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		font-size: 16px;
		line-height: 1.8;
		position: absolute;
		right: 13%;
		top: 10%;
		background: rgba(255,255,255,0.7);
	}
	#concept .h-normal.tate {
		position: absolute;
		right: -2%;
		top: 0;
	}
}

@media screen and (max-width:767px) {
	#concept {
		padding: 80px 0 120px;
		position: relative;
	}
	#concept .fig-mt {
		width: 130px;
		height: 65px;
		background:
			url(../images/fig_01.png) no-repeat left top / 62px auto,
			url(../images/fig_01.png) no-repeat right bottom / 62px auto;
		position: absolute;
		left: 62%;
		bottom: 30px;
	}
	#concept .pic {
		width: 100%;
		margin-left: 0;
		display: inline-block;
		position: relative;
		overflow: hidden;
		padding-top: 100%;
	}
	#concept .pic img {
		position: absolute;
		bottom: 0;
		left: 0;
	}
	#concept p {
		width: 90%;
		font-size: 16px;
		line-height: 1.8;
		display: inline-block;
		margin: 8vw 5% 0;
	}
	#concept .h-normal {
		text-align: center;
		margin-bottom: 40px;
	}
}

/* -------------------------------------------------
	saunners
------------------------------------------------- */

#saunners {
	position: relative;
}
#saunners::before {
	width: 100%;
	height: 675px;
	content: "";
	background: #F2F2F2;
	display: block;
	position: absolute;
	left: 0;
	top: 60px;
}
#saunners .inner {
	position: relative;
}
#saunners .slider-wrap * {
	outline: none;
}
#saunners .men {
	width: 965px;
	display: flex;
	flex-wrap: wrap;
}
#saunners .men li {
	width: 315px;
	margin-right: 10px;
}
#saunners .men li:nth-child(3n) {
	margin-right: 0;
}
#saunners .men li:nth-child(3) ~ li {
	margin-top: 10px;
}
#saunners .men a {
	display: block;
	position: relative;
	overflow: hidden;
}
#saunners .men a .hover-name {
	display: none;
}
#saunners .men .modal-wrap {
	display: none;
}
.modal-cont {
	width: 580px;
	padding: 40px 40px 60px;
	box-sizing: border-box;
	border-radius: 10px;
	background: #fff;
}
.modal-cont .modal-name {
	margin-top: 1.5em;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.modal-cont .modal-desc {
	margin-top: 1em;
	font-size: 16px;
	line-height: 1.6;
}

@media print, screen and (min-width:768px) { /* pcビューでは要素を右寄せ[A] */
	#saunners {
		margin-top: 120px;
	}
	#saunners .inner {
		text-align: right;
	}
	#saunners .h-normal {
		margin-right: 125px;
		display: inline-block;
	}
	#saunners .slider-wrap {
		width: 965px;
		margin-top: 185px;
		display: inline-block;
		text-align: left;
	}
	#saunners .men a .hover-name {
		width: 100%;
		height: 100%;
		background: rgba(0,144,112,0.5);
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		color: #fff;
		font-size: 24px;
		font-weight: bold;
		line-height: 1.8;
		letter-spacing: 0.1em;
		transition: all 0.4s ease-in-out;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 10;
		opacity: 0;
	}
	#saunners .men a:hover .hover-name {
		opacity: 1;
	}
}

@media print, screen and (min-width:1295px) { /* pcビュー[A] かつ幅が大きい場合は中央ぞろえ */
	#saunners .inner {
		max-width: 1100px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	#saunners .h-normal {
		margin-right: 60px;
	}
}

@media print, screen and (min-width:768px) and (max-width:1200px) { /* pcビュー[A] かつ幅が狭い場合はスライダーを縮小 */
	#saunners .h-normal {
		margin-right: 6vw;
	}
	#saunners .slider-wrap {
		width: 80vw;
	}
	#saunners .men {
		width: 80vw;
	}
	#saunners .men li {
		width: 32%;
		margin-right: 2%;
	}
	#saunners .men li:nth-child(3) ~ li {
		margin-top: 1.5vw;
	}
}

@media screen and (max-width:767px) { /* SPビュー */
	#saunners {
		padding: 60px 0 0;
	}
	#saunners::before {
		height: 95vw;
		top: 0;
	}
	#saunners .h-normal {
		margin-bottom: 40px;
		text-align: center;
	}
	#saunners .men {
		width: 100%;
	}
	#saunners .men li {
		width: 32%;
		margin-right: 2%;
	}
	#saunners .men li:nth-child(3) ~ li {
		margin-top: 1.5vw;
	}
	#saunners .slider-wrap {
		width: 82%;
	}
	.modal-cont {
		width: 100%;
		max-width: 380px;
		padding: 20px 20px 30px;
		border-radius: 5px;
	}
	.modal-cont .modal-name {
		font-size: 15px;
	}
	.modal-cont .modal-desc {
		font-size: 12px;
	}
}

/* -------------------------------------------------
	foods-sake
------------------------------------------------- */

#foods-sake {
	padding: 290px 0 70px;
	position: relative;
}
#foods-sake .inner {
	max-width: 1080px;
	width: 96%;
	padding-bottom: 110px;
	margin: 0 auto;
	position: relative;
}
#foods-sake .lead {
	width: 70%;
	margin-left: 15%;
	font-size: 16px;
	line-height: 1.8;
}
#foods-sake .feature {
	margin-top: 100px;
}
#foods-sake .feature .item {
	display: flex;
	align-items: center;
}
#foods-sake .feature .item + .item {
	margin-top: 75px;
}
#foods-sake .feature .item:nth-child(even) {
	flex-direction: row-reverse;
}
#foods-sake .feature .item .pic {
	width: 45%;
}
#foods-sake .feature .item .text-area {
	width: 55%;
}
#foods-sake .feature .item:nth-child(odd) .text-area {
	margin: 0 11% 0 7%;
}
#foods-sake .feature .item:nth-child(even) .text-area {
	margin: 0 7% 0 11%;
}
#foods-sake .feature .item .text-area .title {
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 0.9em;
}
#foods-sake .feature .item .text-area .desc {
	font-size: 16px;
	line-height: 1.8;
}

@media print, screen and (min-width:768px) {
	#foods-sake .h-normal.tate {
		position: absolute;
		right: -2%;
		top: 0;
	}
}

@media screen and (max-width:767px) {
	#foods-sake {
		padding: 80px 0 27px;
	}
	#foods-sake .inner {
		max-width: none;
		width: auto;
		padding-bottom: 65px;
	}
	#foods-sake .h-normal {
		text-align: center;
	}
	#foods-sake .lead {
		width: auto;
		margin: 2em 0 0;
		font-size: 16px;
		line-height: 1.8;
	}
	#foods-sake .feature {
		margin-top: 55px;
	}
	#foods-sake .feature .item {
		align-items: flex-start;
		display: block;
	}
	#foods-sake .feature .item + .item {
		margin-top: 65px;
	}
	#foods-sake .feature .item .pic {
		padding-top: 4px;
		width: 100%;
	}
	#foods-sake .feature .item:nth-child(odd) .text-area {
		margin: 6vw 0 0;
		width: 100%;
	}
	#foods-sake .feature .item:nth-child(even) .text-area {
		margin: 6vw 0 0;
		width: 100%;
	}
	#foods-sake .feature .item .text-area .title {
		margin-bottom: 0.7em;
		font-size: 18px;
	}
	#foods-sake .feature .item .text-area .desc {
		font-size: 16px;
		line-height: 1.8;
	}
}

/* -------------------------------------------------
	topics
------------------------------------------------- */

#topics {
	padding: 100px 0 90px;
	position: relative;
	background-color: #8CB1DD;
	color: #fff;
}
#topics .green {
	color: #11519d;
}
#topics .inner {
	position: relative;
	z-index: 10;
}
#topics .lead {
	margin-top: 55px;
	font-size: 16px;
	line-height: 1.8;
	box-sizing: border-box;
}
#topics ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#topics ul li + li {
	margin-top: 30px;
}
#topics ul li .pic {
	width: 190px;
}
#topics ul li .text-area {
	width: calc(100% - 200px);
}
#topics ul li .text-area .date {
	padding-left: 2em;
	font-size: 16px;
}
#topics ul li .text-area .title {
	padding-left: 2em;
	margin-top: 0.5em;
	font-size: 16px;
	line-height: 1.8;
	font-weight: bold;
}
#topics .fig-bar {
	width: 100%;
	height: 100px;
	background: #8CB1DD;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
/*#topics .fig-bar::before,
#topics .fig-bar::after {
	width: 100%;
	height: 15px;
	content: "";
	display: block;
	background: #fff;
	position: absolute;
	left: 0;
	top: 30px;
}
#topics .fig-bar::after {
	top: auto;
	bottom: 20px;
}*/
#topics .fig-bar div {
	height: 20px;
	background-color: #fff;
}

/*#topics .fig-bar div {
	width: 100%;
	height: 20px;
	background-repeat: repeat-x;
	background-size: 50% 20px;
	background-position: 0 0;
	position: absolute;
	left: 0;
}
#topics .fig-bar div.wave01 {
	top: 0;
	background-image: -webkit-linear-gradient(left, #8CB1DD 80%, #fff 80%);
	background-image: linear-gradient(to right, #8CB1DD 90%, #fff 90%);
	-webkit-animation: waveBg 3s linear 0s infinite;
    animation: waveBg 5s linear 1s infinite;
}
#topics .fig-bar div.wave02 {
	top: 50%;
	transform: translateY(-50%);
	background-image: -webkit-linear-gradient(left, #8CB1DD 80%, #fff 80%);
	background-image: linear-gradient(to right, #8CB1DD 95%, #fff 95%);
	-webkit-animation: waveBg 3.5s linear .5s infinite;
    animation: waveBg 7s linear .5s infinite;
}
#topics .fig-bar div.wave03 {
	bottom: 0;
	background-image: -webkit-linear-gradient(left, #8CB1DD 80%, #fff 80%);
	background-image: linear-gradient(to right, #8CB1DD 90%, #fff 90%);
	-webkit-animation: waveBg 3s linear 1s infinite;
    animation: waveBg 6s linear 0s infinite;
}

@keyframes waveBg {
	0% { background-position: 0 top;}
	100% { background-position: 100% top;}
}*/

.fig-mt {
	width: 160px;
	height: 80px;
	background:
		url(../images/fig_01.png) no-repeat left top / 78px auto,
		url(../images/fig_01.png) no-repeat right bottom / 78px auto;
	position: absolute;
	top: 75%;
	left: 10%;
}

@media print, screen and (min-width:768px) {
	#topics .inner {
		max-width: 1020px;
		width: 96%;
		margin: 0 auto;
	}
	#topics .two-col {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	#topics .topicsLeft {
		width: 40%;
	}
	#topics .lead {
		padding-right: 12%;
	}
	#topics ul {
		width: 60%;
	}
}

@media screen and (max-width:767px) {
	#topics {
		padding: 70px 0 80px;
	}
	#topics .h-normal {
		text-align: center;
	}
	#topics .lead {
		margin-top: 30px;
		font-size: 16px;
	}
	#topics ul {
		margin-top: 40px;
	}
	#topics ul li + li {
		margin-top: 25px;
	}
	#topics ul li .pic {
		width: 100px;
	}
	#topics ul li .text-area {
		width: calc(100% - 100px);
	}
	#topics ul li .text-area .date {
		padding-left: 20px;
		font-size: 11px;
	}
	#topics ul li .text-area .title {
		margin-top: 0.7em;
		padding-left: 20px;
		font-size: 14px;
		line-height: 1.4;
	}
	#topics .fig-bar {
		height: 45px;
	}
	#topics .fig-bar::before,
	#topics .fig-bar::after {
		height: 9px;
		top: 9px;
	}
	#topics .fig-bar::after {
		bottom: 9px;
		top: auto;
	}
	#topics .fig-bar div {
		height: 10px;
	}
	/*#topics .fig-bar div {
		height: 8px;
	}*/
	.fig-mt {
		width: 130px;
		height: 65px;
		background:
			url(../images/fig_01.png) no-repeat left top / 62px auto,
			url(../images/fig_01.png) no-repeat right bottom / 62px auto;
		position: absolute;
		top: auto;
		bottom: -100px;
	}
}

/* -------------------------------------------------
	memory
------------------------------------------------- */

#memory {
	padding: 80px 0;
	background: #009070;
}
#memory .lead {
	width: 96%;
	max-width: 800px;
	margin: 25px auto 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.8;
}
#memory .movies {
	max-width: 1260px;
	margin: 70px auto 0;
	display: flex;
}
#memory .movies li {
	width: 33.33%;
}
#memory .movies li iframe {
	width: 100%;
	height: 280px;
}
#memory .movies li p {
	margin-top: 1.2em;
	font-size: 18px;
	text-align: center;
	color: #fff;
	line-height: 1.3;
}

@media screen and (max-width:767px) {
	#memory {
		padding: 60px 0 70px;
	}
	#memory .lead {
		width: auto;
		max-width: none;
		margin: 20px auto 0;
		font-size: 14px;
	}
	#memory .movies {
		max-width: none;
		margin: 50px auto 0;
		display: block;
	}
	#memory .movies li {
		width: auto;
	}
	#memory .movies li + li {
		margin-top: 35px;
	}
	/*#memory .movies li iframe {
		width: 90%;
		height: 50vw;
		margin: 0 auto;
		display: block;
	}*/
	#memory .movies li p {
		font-size: 14px;
	}
}