@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, select, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

/* html5要素 */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article, aside, dialog, figure, footer, header, time, picture,
hgroup, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img {
	border: 0;
	vertical-align: bottom;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

q:before, q:after {
	content: '';
}

abbr, acronym {
	border: 0;
}

a {
	/*outline:none; アクセシビリティのためoutlineは消してはいけない*/
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

*:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	max-width: 1400px;
}

@media only screen and (max-width: 767px) {
	.l-header {
		padding-left: 5.3333333333vw;
		padding-right: 5.3333333333vw;
	}
}

.l-header.is-fixed .l-main-navi-list__link {
	color: #000000;
}

.l-header.is-fixed .l-main-navi-list__link:hover {
	color: #000000;
}

.l-header.is-fixed .l-main-navi-list__link::before {
	background: #000000;
}

.l-header.is-open .l-menu-btn span {
	background-color: #000000;
}

.l-main-navi-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi-overlay.is-on {
		display: block;
		background: #faf6f0;
		-webkit-animation: naviFade 0.2s ease forwards;
		        animation: naviFade 0.2s ease forwards;
	}
}

@-webkit-keyframes naviFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes naviFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.l-header-main__logo {
	position: relative;
	z-index: 100;
	padding-top: 30px;
}

@media only screen and (max-width: 1030px) {
	.l-header-main__logo {
		padding-top: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.l-header-main__logo {
		padding-top: 4vw;
	}
}

.l-header-main__logo img {
	width: 158px;
}

@media only screen and (max-width: 1030px) {
	.l-header-main__logo img {
		width: 100px;
	}
}

@media only screen and (max-width: 767px) {
	.l-header-main__logo img {
		width: 26.6666666667vw;
	}
}

.l-menu-btn {
	display: none;
}

@media only screen and (max-width: 1030px) {
	.l-menu-btn {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		padding: 0;
		width: 75px;
		height: 65px;
		border: 0;
		background: transparent;
		cursor: pointer;
	}
}

@media only screen and (max-width: 767px) {
	.l-menu-btn {
		width: 20vw;
		height: 17.3333333333vw;
	}
}

@media only screen and (max-width: 1030px) {
	.l-menu-btn span {
		position: absolute;
		left: 20px;
		width: 35px;
		height: 2px;
		background: #000000;
		-webkit-transition: all ease 0.2s;
		transition: all ease 0.2s;
	}
}

@media only screen and (max-width: 767px) {
	.l-menu-btn span {
		left: 5.3333333333vw;
		width: 9.3333333333vw;
		height: 0.5333333333vw;
	}
}

.l-menu-btn span:nth-child(1) {
	top: 25px;
}

@media only screen and (max-width: 767px) {
	.l-menu-btn span:nth-child(1) {
		top: 6.6666666667vw;
	}
}

.l-menu-btn span:nth-child(2) {
	top: 37px;
}

@media only screen and (max-width: 767px) {
	.l-menu-btn span:nth-child(2) {
		top: 9.8666666667vw;
	}
}

@media only screen and (max-width: 1030px) {
	.l-menu-btn.is-on span:nth-child(1) {
		top: 30px;
		-webkit-transform: rotate(25deg);
		        transform: rotate(25deg);
	}
}

@media only screen and (max-width: 767px) {
	.l-menu-btn.is-on span:nth-child(1) {
		top: 8vw;
	}
}

@media only screen and (max-width: 1030px) {
	.l-menu-btn.is-on span:nth-child(2) {
		top: 30px;
		-webkit-transform: rotate(-25deg);
		        transform: rotate(-25deg);
	}
}

@media only screen and (max-width: 767px) {
	.l-menu-btn.is-on span:nth-child(2) {
		top: 8vw;
	}
}

.l-main-navi {
	position: absolute;
	top: 30px;
	right: 25px;
	z-index: 100;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi {
		display: none;
		position: relative;
		top: auto;
		right: auto;
	}
}

@media only screen and (max-width: 1030px) {
	.l-main-navi.is-open {
		display: flex;
		justify-content: center;
		align-items: center;
		height: calc(100vh - 65px);
	}
}

@media only screen and (max-width: 767px) {
	.l-main-navi.is-open {
		height: calc(100vh - 17.3333333333vw);
	}
}

.l-main-navi-list {
	width: 35px;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi-list {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		width: auto;
		min-width: 270px;
	}
}

.l-main-navi-list__item {
	margin-bottom: 30px;
	-ms-writing-mode: tb-lr;
	-webkit-writing-mode: vertical-rl;
	        writing-mode: vertical-rl;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi-list__item {
		margin-left: 15px;
		margin-right: 15px;
		margin-bottom: 0;
		font-size: 18px;
	}
}

@media only screen and (max-width: 767px) {
	.l-main-navi-list__item {
		margin-left: 4vw;
		margin-right: 4vw;
		font-size: 4.8vw;
	}
}

.l-main-navi-list__link {
	display: inline-block;
	position: relative;
	padding: 0 5px;
	color: #ffffff;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi-list__link {
		color: #000000;
	}
}

.l-main-navi-list__link:hover {
	color: #ffffff;
	text-decoration: none;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi-list__link:hover {
		color: #000000;
	}
}

.l-main-navi-list__link:hover::before {
	height: 100%;
}

.l-main-navi-list__link::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 0;
	width: 1px;
	background: #ffffff;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

@media only screen and (max-width: 1030px) {
	.l-main-navi-list__link::before {
		content: none;
	}
}

/***** フッター *****/
.l-footer {
	padding-top: 45px;
	padding-bottom: 45px;
}

@media only screen and (max-width: 767px) {
	.l-footer {
		padding-top: 12vw;
		padding-bottom: 4vw;
	}
}

.l-footer__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.l-footer__wrap {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.l-footer__logo {
		text-align: center;
	}
}

.l-footer__logo img {
	width: 200px;
}

@media only screen and (max-width: 767px) {
	.l-footer__logo img {
		width: 37.3333333333vw;
	}
}

.l-copyright {
	font-size: 11px;
	text-align: right;
}

@media only screen and (max-width: 767px) {
	.l-copyright {
		margin-top: 8vw;
		font-size: 2.9333333333vw;
		text-align: center;
		letter-spacing: 0;
	}
}

/******************************/
/* 共通 */
/******************************/
body {
	overflow-x: hidden;
	font-size: 16px;
	font-family: "ヒラギノ明朝", "Hiragino Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Yu Mincho Medium", "游明朝 Medium", YuMincho, 游明朝体, serif;
	background: #faf6f0;
	color: #282728;
	letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 3.4666666667vw;
	}
}

body.is-hidden {
	overflow: hidden;
}

button {
	font-family: "ヒラギノ明朝", "Hiragino Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Yu Mincho Medium", "游明朝 Medium", YuMincho, 游明朝体, serif;
}

img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *:focus {
	outline: none;
}

table a {
	word-break: break-all;
}

br {
	letter-spacing: 0;
}

a {
	color: #000000;
	text-decoration: none;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

a:hover {
	/*マウスをのせたとき*/
	color: #000000;
	text-decoration: underline;
}

a:active {
	/*マウスを押したとき*/
	color: #000000;
	text-decoration: none;
}

.u-container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding-left: 80px;
	padding-right: 80px;
	max-width: 1400px;
}

@media only screen and (max-width: 1030px) {
	.u-container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.u-container {
		width: auto;
		padding-left: 5.3333333333vw;
		padding-right: 5.3333333333vw;
	}
}

.p-top-ttl__sub {
	display: block;
	margin-left: 5px;
	font-size: 16px;
	-ms-writing-mode: tb-lr;
	-webkit-writing-mode: vertical-rl;
	        writing-mode: vertical-rl;
}

@media only screen and (max-width: 767px) {
	.p-top-ttl__sub {
		margin-bottom: 5px;
		margin-left: 0;
		font-size: 14px;
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		        writing-mode: horizontal-tb;
	}
}

.p-top-ttl__main {
	display: block;
	font-size: 32px;
	line-height: 1;
	-ms-writing-mode: tb-lr;
	-webkit-writing-mode: vertical-rl;
	        writing-mode: vertical-rl;
}

@media only screen and (max-width: 767px) {
	.p-top-ttl__main {
		font-size: 25px;
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		        writing-mode: horizontal-tb;
	}
}

/***** ボタン *****/
.c-btn-arrow {
	display: inline-block;
	position: relative;
	padding: 20px 75px 20px 0;
	color: #000000;
}

@media only screen and (max-width: 767px) {
	.c-btn-arrow {
		padding-top: 17px;
		padding-bottom: 17px;
		font-size: 16px;
	}
}

.c-btn-arrow:hover {
	color: #750000;
	text-decoration: none;
}

.c-btn-arrow:hover:before {
	background-image: url(../images/arrow-white.png);
	background-color: #750000;
	border-color: #750000;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

.c-btn-arrow::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #000000;
	background: url(../images/arrow-black.png) no-repeat left 20px center;
	background-size: 20px;
}

.c-btn-arrow.is-white {
	color: #ffffff;
}

.c-btn-arrow.is-white:hover {
	color: #ffffff;
	text-decoration: none;
}

.c-btn-arrow.is-white:hover::before {
	border-color: #ffffff;
	background-image: url(../images/arrow-red.png);
	background-color: #ffffff;
}

.c-btn-arrow.is-white::before {
	border-color: #ffffff;
	background-image: url(../images/arrow-white.png);
	background-color: transparent;
}

/******************************/
/* fade animation */
/******************************/
.fadeIn {
	opacity: 0;
	-webkit-transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
	transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s, opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
	transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s, opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.fromLeft {
	-webkit-transform: translate(-20px, 0);
	        transform: translate(-20px, 0);
}

.fromRight {
	-webkit-transform: translate(20px, 0);
	        transform: translate(20px, 0);
}

.fromTop {
	-webkit-transform: translate(0, -20px);
	        transform: translate(0, -20px);
}

.fromBottom {
	-webkit-transform: translate(0, 20px);
	        transform: translate(0, 20px);
}

.fromForeground {
	-webkit-transform: scale(1.6);
	        transform: scale(1.6);
}

.faded {
	opacity: 1;
}

.faded.js-scale-zoom img {
	-webkit-transform: scale(1);
	        transform: scale(1);
}

.faded.js-blur img {
	-webkit-animation: blurOut 1.3s ease forwards;
	        animation: blurOut 1.3s ease forwards;
}

.faded.js-pop {
	-webkit-animation: popAnime 1.5s ease-out forwards;
	        animation: popAnime 1.5s ease-out forwards;
}

.faded.js-pop.p-fv__stamp {
	-webkit-animation: popAnime 1.5s ease-out forwards;
	        animation: popAnime 1.5s ease-out forwards;
}

.fadedWithTransform {
	opacity: 1;
	-webkit-transform: translate(0, 0) scale(1);
	        transform: translate(0, 0) scale(1);
}

.fadedWithTransform.js-scale-zoom img {
	-webkit-transform: scale(1);
	        transform: scale(1);
}

@-webkit-keyframes popAnime {
	0% {
		-webkit-transform: scale(0.95);
		        transform: scale(0.95);
	}
	35% {
		-webkit-transform: scale(0.95);
		        transform: scale(0.95);
	}
	45% {
		-webkit-transform: scale(1.03);
		        transform: scale(1.03);
	}
	55% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	60% {
		-webkit-transform: scale(1.005);
		        transform: scale(1.005);
	}
	70% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes popAnime {
	0% {
		-webkit-transform: scale(0.95);
		        transform: scale(0.95);
	}
	35% {
		-webkit-transform: scale(0.95);
		        transform: scale(0.95);
	}
	45% {
		-webkit-transform: scale(1.03);
		        transform: scale(1.03);
	}
	55% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	60% {
		-webkit-transform: scale(1.005);
		        transform: scale(1.005);
	}
	70% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

.js-scale-zoom {
	overflow: hidden;
}

.js-scale-zoom img {
	-webkit-transition: -webkit-transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	transition: -webkit-transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	transition: transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	transition: transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s, -webkit-transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-webkit-transform: scale(1.12);
	        transform: scale(1.12);
}

.js-blur {
	overflow: hidden;
}

.js-blur img {
	-ms-filter: blur(15px);
	-webkit-filter: blur(15px);
	        filter: blur(15px);
}

@-webkit-keyframes blurOut {
	0% {
		-ms-filter: blur(15px);
		-webkit-filter: blur(15px);
		        filter: blur(15px);
	}
	100% {
		-ms-filter: blur(0px);
		-webkit-filter: blur(0px);
		        filter: blur(0px);
	}
}

@keyframes blurOut {
	0% {
		-ms-filter: blur(15px);
		-webkit-filter: blur(15px);
		        filter: blur(15px);
	}
	100% {
		-ms-filter: blur(0px);
		-webkit-filter: blur(0px);
		        filter: blur(0px);
	}
}
/*# sourceMappingURL=common.css.map */