@charset "utf-8";

.br-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}
/* reset
----------------------------------------------- */

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,main,figure,figcaption {
	display: block;
	margin: 0;
	padding: 0;
	font-weight: normal;
	border: 0;
	outline: 0;
	line-height: 1;
	list-style: none;
}
a {
	margin: 0;
	padding: 0;
	outline: none;
}
img {
	vertical-align: top;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
	user-drag: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
::selection {
	color: #fff;
	background: #db0225;
}


/* html
----------------------------------------------- */

html {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-print-color-adjust: exact;
}


/* body
----------------------------------------------- */

body {
	margin: 0;
	padding: 0;
	color: #555;
	font-family: "Avenir", "Avenir Medium", "Avenir Roman", "Helvetica", "Microsoft YaHei", "微软雅黑", "SimSun", "ヒラギノ角ゴ ProN", "ヒラギノ角ゴ Pro", "Meiryo UI", "メイリオ";
	font-weight: 400;
	font-feature-settings: "palt";
}

/* disable */

.jsbody--disable {
	pointer-events: none;
}


/* a
----------------------------------------------- */

a {
	color: #555;
}


/* loading
----------------------------------------------- */

.loading {
	position: fixed;
	top: 96px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.loading__mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 1;
}
.loading__icons {
	position: absolute;
	left: 20px;
	bottom: 20px;
	font-size: 0;
	z-index: 1;
}
.loading__icon {
	display: inline-block;
	margin: 0 5px 0 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #db0225;
	animation-name: loading;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
}
.loading__icon:nth-child(1) {
	animation-delay: 0s;
}
.loading__icon:nth-child(2) {
	animation-delay: 0.25s;
}
.loading__icon:nth-child(3) {
	animation-delay: 0.5s;
}
.loading__icon:nth-child(4) {
	animation-delay: 0.75s;
}
.loading__icon:nth-child(5) {
	animation-delay: 1s;
}

/* ready */

.js-loading-ready .loading__mask {
	transition-property: opacity;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}
.js-loading-ready .loading__icons {
	transition-property: transform;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

/* start */

.js-loading-start .loading__mask {
	opacity: 0;
}
.js-loading-start .loading__icons {
	transform: translateY(30px);
}

/* end */

.js-loading-end {
	pointer-events: none;
	visibility: hidden;
}


/* wrapper
----------------------------------------------- */

.wrapper {
	overflow: hidden;
}


/* header
----------------------------------------------- */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	z-index: 5;
}
.header__outer {
}
.header__inner {
	display: flex;
	align-items: center;
	margin: 0 50px;
	height: 96px;
}
.header__logo a {
	display: block;
	pointer-events: auto;
}
.header__logo img {
	width: auto;
	height: 44px;
}


/* footer
----------------------------------------------- */

.footer {
	border-top: 2px solid #eee;
}
.footer__outer {
}
.footer__inner {
	padding: 27px 0 15px;
	text-align: center;
}
.footer__logo {
}
.footer__logo img {
	width: auto;
	height: 28px;
}
.footer__copyright {
	margin: 20px 0 0;
	font-size: 12px;
	letter-spacing: 0.05em;
}


/* nav
----------------------------------------------- */

.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
}
.nav__outer {
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.nav__inner {
	margin: 0 50px;
}
.nav__logo {
	display: none;
}
.nav__lists {
	font-size: 0;
	text-align: right;
}
.nav__list {
	display: inline-block;
	margin: 0 0 0 30px;
}
.nav__list:first-child {
	margin: 0;
}
.nav__list a {
	display: flex;
	align-items: center;
	position: relative;
	height: 96px;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.05em;
}
.nav__list a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 22px 0 0;
	height: 2px;
	background-color: #e60012;
	z-index: 1;
	transform: scaleX(0);
	transform-origin: right;
}

/* current */

.current--message .nav__list--message a:after,
.current--history .nav__list--history a:after,
.current--craftsmanship .nav__list--craftsmanship a:after,
.current--pickup .nav__list--pickup a:after,
.current--item .nav__list--item a:after,
.current--sdgs .nav__list--sdgs a:after,
.current--campaign .nav__list--campaign a:after {
	transform: scaleX(1);
}


/* breadcrumb
----------------------------------------------- */

.breadcrumb {
	position: relative;
	margin: 0 0 -1px;
	background-color: #f5f5f5;
	z-index: 1;
}
.breadcrumb__outer {
	margin: 0 50px;
}
.breadcrumb__inner {
	margin: auto;
	max-width: 1080px;
}
.breadcrumb__text {
	height: 32px;
	color: #888;
	line-height: 31px;
}
.breadcrumb__text a {
	color: #888;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.05em;
}


/* main
----------------------------------------------- */

.main {
	margin: 96px 0 0;
}


/* section
----------------------------------------------- */

.section {
	margin: auto;
	padding: 0 0 100px;
	width: 1080px;
}


/* cover
----------------------------------------------- */

.cover {
	position: relative;
	z-index: 2;
}
.cover__outer {
}
.cover__inner {
	text-align: center;
}
.cover__image {
	font-size: 0;
	background-color: #fff;
	overflow: hidden;
}
.cover__image img {
	width: 100%;
	height: auto;
}
.cover__label {
	margin: -45px 0 0;
	color: #db0225;
	font-family: 'Roboto', sans-serif;
	font-size: 90px;
	font-weight: 100;
	letter-spacing: 0.05em;
	font-style: italic;
}
.cover__title {
	margin: 20px 0 0;
	color: #888;
	font-size: 18px;
	letter-spacing: 0.3em;
}

/* ready */

.js-indicate-ready.cover .cover__image img {
	opacity: 0;
	transform: rotate(0.09deg) scale(1.15);
}
.js-indicate-ready.cover .cover__label {
	opacity: 0;
	transform: translateX(-80px);
}
.js-indicate-ready.cover .cover__title {
	opacity: 0;
	transform: translateX(80px);
}

/* start */

.js-indicate-start.cover .cover__image img {
	opacity: 1;
	transform: rotate(0deg) scale(1);
	transition-property: opacity, transform;
	transition-duration: 2s;
	transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.js-indicate-start.cover .cover__label,
.js-indicate-start.cover .cover__title {
	opacity: 1;
	transform: translateX(0);
	transition-property: opacity, transform;
	transition-duration: 0.85s;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}


/* more
----------------------------------------------- */

.more {
	display: inline-block;
}
.more a {
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-decoration: none;
}
.more__label {
	display: block;
	margin: 0 10px 0 0;
	width: calc(100% - 92px);
	font-size: 18px;
	white-space: nowrap;
	letter-spacing: 0.07em;
	line-height: 30px;
}
.more__arrow {
	display: block;
	width: 82px;
	height: 5px;
	background-image: url(../images/common/more_arrow_red.svg);
	background-repeat: no-repeat;
	background-size: 82px 5px;
}


/* link
----------------------------------------------- */

.link {
}
.link a {
	display: inline-block;
	color: #777;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.05em;
}
.link a:before {
	display: inline-block;
	content: "";
	margin: -2px 0 0;
	width: 14px;
	height: 14px;
	vertical-align: middle;
	background-image: url(../images/common/link_arrow.svg);
	background-repeat: no-repeat;
	background-size: 14px;
}


/* mesh
----------------------------------------------- */

.mesh {
	background-image: url(../images/common/bg_mesh.png);
}


/* pc
----------------------------------------------- */

@media print, screen and (min-width:1000px) {


	/* body
	----------------------------------------------- */

	body {
	}


	/* br
	----------------------------------------------- */

	.sp {
		display: none;
	}


	/* wrapper
	----------------------------------------------- */

	.wrapper {
		min-width: 1080px;
	}


	/* nav
	----------------------------------------------- */

	.nav__list a,
	.nav__list a:after {
		transition-property: opacity, transform;
		transition-duration: 0.25s;
	}

	/* hover */

	.nav__list a:hover {
		opacity: 0.6;
	}
	.nav__list a:hover:after {
		transform: scaleX(1);
		transform-origin: left;
	}


	/* breadcrumb
	----------------------------------------------- */

	/* hover */

	.breadcrumb__text a:hover {
		text-decoration: underline;
	}


	/* more
	----------------------------------------------- */

	.more a,
	.more__arrow {
		transition-property: opacity, transform;
		transition-duration: 0.25s;
	}

	/* hover */

	.more a:hover {
		opacity: 0.6;
	}
	.more a:hover .more__arrow {
		transform: translateX(5px);
	}


	/* link
	----------------------------------------------- */

	.link a,
	.link a:before {
		transition-property: opacity, transform;
		transition-duration: 0.25s;
	}

	/* hover */

	.link a:hover {
		opacity: 0.6;
	}
	.link a:hover:before {
		transform: translateX(3px);
	}


	/* retina
	----------------------------------------------- */

	@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	}


}


/* mobile
----------------------------------------------- */

@media only screen and (max-width:999px) {


	/* body
	----------------------------------------------- */

	body {
	}


	/* br
	----------------------------------------------- */

	.pc {
		display: none;
	}


	/* loading
	----------------------------------------------- */

	.loading {
		top: 0;
	}
	.loading__mask {
		background-size: 14px 11px;
	}


	/* header
	----------------------------------------------- */

	.header {
		pointer-events: auto;
	}
	.header__outer {
		background-color: #fff;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
	}
	.header__inner {
		margin: 0 20px;
		height: 70px;
	}
	.header__logo img {
		height: 31px;
	}
	.header__menu {
		position: absolute;
		top: 30px;
		right: 25px;
		width: 32px;
		height: 20px;
		background-image: url(../images/common/menu_black.svg), url(../images/common/menu_white.svg);
		background-position: 0 0, 32px 0;
		background-repeat: no-repeat;
		background-size: 32px 20px;
		cursor: pointer;
		z-index: 2;
	}

	/* ready */

	.js-menu-ready {
		transform-origin: right;
		transition-property: transform;
		transition-duration: 0.5s;
		transition-delay: 0.25s;
		transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
	}

	/* open */

	.js-menu-open {
		transform: scaleX(0);
		transition-delay: 0s;
	}


	/* footer
	----------------------------------------------- */

	.footer__inner {
		padding: 24px 0;
	}
	.footer__logo img {
		height: 28px;
	}
	.footer__copyright {
		margin: 20px 0 0;
		font-size: 10px;
	}


	/* nav
	----------------------------------------------- */

	.nav {
		bottom: 0;
		z-index: 5;
	}
	.nav__outer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		background-image: url(../images/common/bg_mesh.png);
		background-size: 14px 11px;
		background-color: transparent;
		box-shadow: none;
		overflow: auto;
	}
	.nav__inner {
		margin: 0;
	}
	.nav__logo {
		display: block;
		text-align: center;
	}
	.nav__logo img {
		width: auto;
		height: 138px;
	}
	.nav__lists {
		text-align: center;
	}
	.nav__list {
		display: block;
		margin: 40px 0 0;
	}
	.nav__list:first-child {
		margin: 60px 0 0;
	}
	.nav__list a {
		display: inline-block;
		height: auto;
		font-size: 16px;
	}
	.nav__list a:after {
		margin: 20px 0 0;
	}
	.nav__close {
		position: absolute;
		top: 30px;
		right: 30px;
		width: 25px;
		height: 25px;
		background-image: url(../images/common/nav_close.svg);
		background-repeat: no-repeat;
		background-size: 25px;
		cursor: pointer;
		z-index: 1;
	}

	/* initial */

	.nav {
		pointer-events: none;
		visibility: hidden;
	}
	.nav__outer {
		opacity: 0;
	}
	.nav__logo {
		opacity: 0;
		transform: translateY(25px);
	}
	.nav__list:nth-child(odd) {
		opacity: 0;
		transform: translateX(50px);
	}
	.nav__list:nth-child(even) {
		opacity: 0;
		transform: translateX(-50px);
	}
	.nav__close {
		transform: scale(0);
	}

	/* ready */

	.js-nav-ready {
		transition-property: visibility;
		transition-duration: 0s;
		transition-delay: 0.5s;
	}
	.js-nav-ready .nav__outer {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.js-nav-ready .nav__logo {
		transition-property: opacity, transform;
		transition-duration: 0.85s;
		transition-delay: 0.5s;
		transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
	}
	.js-nav-ready .nav__list:nth-child(odd),
	.js-nav-ready .nav__list:nth-child(even) {
		transition-property: opacity, transform;
		transition-duration: 0.85s;
		transition-delay: 0.5s;
		transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
	}
	.js-nav-ready .nav__close {
		transition-property: transform;
		transition-duration: 0.25s;
		transition-delay: 0.5s;
		transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
	}

	/* open */

	.js-nav-open {
		pointer-events: auto;
		visibility: visible;
		transition-delay: 0s;
	}
	.js-nav-open .nav__outer {
		opacity: 1;
	}
	.js-nav-open .nav__logo {
		opacity: 1;
		transform: translate(0);
		transition-delay: 0s;
	}
	.js-nav-open .nav__list:nth-child(odd),
	.js-nav-open .nav__list:nth-child(even) {
		opacity: 1;
		transform: translate(0);
		transition-delay: 0s;
	}
	.js-nav-open .nav__close {
		transform: scale(1);
	}


	/* breadcrumb
	----------------------------------------------- */

	.breadcrumb {
		display: none;
	}


	/* main
	----------------------------------------------- */

	.main {
		margin: 70px 0 0;
	}


	/* section
	----------------------------------------------- */

	.section {
		margin: 0 20px;
		padding: 0 0 50px;
		width: initial;
	}


	/* cover
	----------------------------------------------- */

	.cover__label {
		margin: -20px 0 0;
		font-size: 45px;
	}
	.cover__title {
		margin: 20px 0 0;
		font-size: 14px;
	}


	/* more
	----------------------------------------------- */

	.more__label {
		font-size: 15px;
		letter-spacing: 0.1em;
		line-height: 23px;
	}


	/* link
	----------------------------------------------- */

	.link a:before {
		margin: -2px 0 0;
		width: 11px;
		height: 11px;
		background-size: 11px;
	}


	/* mesh
	----------------------------------------------- */

	.mesh {
		background-size: 14px 11px;
	}


}


/* indicate
----------------------------------------------- */

/* ready */

.js-indicate-ready.js-indicate-btin {
	opacity: 0;
	transform: rotate(0.09deg) scale(0.95) translateY(80px);
}
.js-indicate-ready.js-indicate-ltin {
	opacity: 0;
	transform: rotate(0.09deg) scale(0.95) translateX(-50px);
}
.js-indicate-ready.js-indicate-rtin {
	opacity: 0;
	transform: rotate(0.09deg) scale(0.95) translateX(50px);
}
.js-indicate-ready.js-indicate-zoomin {
	opacity: 0;
	transform: rotate(0.09deg) scale(0.85);
}

/* start */

.js-indicate-start.js-indicate-btin {
	opacity: 1;
	transform: rotate(0deg) scale(1) translate(0);
	transition-property: opacity, transform;
	transition-duration: 0.85s;
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
}
.js-indicate-start.js-indicate-ltin,
.js-indicate-start.js-indicate-rtin,
.js-indicate-start.js-indicate-zoomin {
	opacity: 1;
	transform: rotate(0deg) scale(1) translateX(0);
	transition-property: opacity, transform;
	transition-duration: 1s;
	transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}
.js-indicate-start.js-indicate-zoomin {
	transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}


/* keyframes
----------------------------------------------- */

@keyframes loading {
	50% {
		background-color: #002f7c;
	}
}
