@charset "utf-8";

html,
body {
	width: 100%;
	font-size: 62.5%;
	background: #f2eddc;
}

#wrap {
	position: relative;
	min-width: 1024px;
	overflow: hidden;
}

@media only screen and (max-width:640px) {
	html,
	body {
		width: 640px;
		min-width: 640px;
		font-size: 106.67%;
	}

	#wrap {
		width: 640px;
		min-width: 640px;
		overflow: hidden;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	text-align: justify;
}

a img {
	transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
	a:hover img {
		opacity: 0.6;
	}
}

/* セレクト時の色指定 */
::selection {
	background: #bf815e;
	color: inherit;
}

::-moz-selection {
	background: #bf815e;
	/*Firefox*/
	color: inherit;
}

.showSp {
	display: none !important;
}

@media only screen and (max-width:640px) {
	.showPc {
		display: none !important;
	}

	.showSp {
		display: block !important;
	}
}


/* --------------------------------------------

color

---------------------------------------------- */
:root {
	--c-text: #331818;
	--c-bg-white: #f2eddc;
	--c-bg-brown: #bf815e;

	--c-white: #fff;
	--c-blue: #8eb1bf;
	--c-red: #733636;
	--c-brown: #8c5042;
	--c-orange: #da763a;
}


/* --------------------------------------------

fonts

---------------------------------------------- */
:root {
    --font-family_en: 'Montserrat', sans-serif;

	--fz-xs: 1.0rem;
    --fz-s: 1.3rem;
    --fz-m: 1.5rem;
    --fz-l: 1.8rem;
    --fz-xl: 2.0rem;
    --fz-xxl: 2.4rem;
	--fz-3xl: 3.2rem;
	--fz-index-title: 3.6rem;

    --fw-light: 300;
	--fw-medium: 500;
    --fw-bold: 700;
}

.-en {
	font-family: var(--font-family_en);
}

@media only screen and (max-width:640px) {
	:root {
		--fz-xs: 0.95rem;
		--fz-s: 1.1rem;
		--fz-m: 1.5rem;
		--fz-l: 1.6rem;
		--fz-xl: 1.8rem;
		--fz-xxl: 2.0rem;
		--fz-3xl: 2.6rem;
	}
}

body {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	color: var(--c-text);

}

body,
input,
select,
textarea {
	font-size: var(--fz-m);
	line-height: 1.6;
	letter-spacing: 0.01em;
	font-feature-settings: "palt";
}


/* --------------------------------------------

animation

---------------------------------------------- */
.fadeIn,
.fromBottom {
	opacity: 0;
}

.anime.is-animated.fadeIn,
.anime.is-animated .fadeIn {
	animation-name: anime_fadeIn;
	animation-delay: 0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.anime.is-animated.fromBottom,
.anime.is-animated .fromBottom {
	animation-name: anime_fadeInFromBottom;
	animation-delay: 0.0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes anime_fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes anime_fadeInFromBottom {
	0% {
		opacity: 0;
		transform: translateY(4rem) translateX(0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0) scale(1);
	}
}

/* 遅延で順に表示、スマホでは解除 */
.pcDelay-02 {
	animation-delay: 0.2s;
}

.pcDelay-04 {
	animation-delay: 0.4s;
}

.pcDelay-06 {
	animation-delay: 0.6s;
}

.pcDelay-08 {
	animation-delay: 0.8s;
}

.pcDelay-10 {
	animation-delay: 1.0s;
}

@media only screen and (max-width:640px) {
	.pcDelay-02,
	.pcDelay-04,
	.pcDelay-06,
	.pcDelay-08,
	.pcDelay-1 {
		animation-delay: 0s;
	}
}


/* --------------------------------------------

.main-contents

---------------------------------------------- */
.main-contents:not(.contents-calender) {
	padding-bottom: 16rem;
}

.main-contents__inner {
	width: 95%;
	max-width: 1200px;
	padding: 10rem 6rem 12rem;
	margin: 0 auto;
	background-color: var(--c-white);
}

.main-contents__inner h2 {
	margin: 0 0 9rem 0;
	text-align: center;
	font-size: var(--fz-xl);
	font-weight: var(--fw-medium);
}

.contents__title {
	position: relative;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: var(--c-text);
	font-size: var(--fz-s);
	font-weight: normal;
	transition: 0.3s;
}


@media only screen and (max-width:640px) {
	.main-contents__inner h2 {
		margin: 0 0 7rem 0;
	}

	.main-contents__inner {
		padding: 6rem 2rem;
	}
}

/* --------------------------------------------

#page-top

---------------------------------------------- */
#page-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 10px;
	z-index: 999;
	animation-delay: 0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

#page-top.fixed {
	display: block;
	opacity: 0;
	transform: translateY(100px);
	animation-name: pageTopFixed;
	animation-delay: 0s;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

#page-top a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 110px;
	color: var(--c-white);
	font-size: 1.6rem;
	font-weight: var(--fw-medium);
	mask-image: url(../_image/index/first-view__clip-path.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	background-color: var(--c-text);
	transform: translateY(-4px);
	transition: 0.3s;
}

@keyframes pageTopFixed {
	0% {
		opacity: 0;
		transform: translateY(100px) translateX(0);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0);
	}
}

@media (hover: hover) and (pointer: fine) {
	#page-top a:hover {
		transform: translateY(0);
		transform: scale(0.95);
	}
}

@media only screen and (max-width:640px) {
	#page-top a {
		font-size: var(--fz-s);
	}
}


/* --------------------------------------------

c-（Component要素　※主にアイコン）

---------------------------------------------- */
/* 「珈琲豆」マーク */
.c-coffee {
	position: absolute;
	display: block;
	bottom: -3rem;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
}

.c-coffee::after {
    position: absolute;
    display: block;
	content: '';
    bottom: 0;
    left: 0;
    width: 10px;
	height: 10px;
	mask-image: url(../_image/common/coffee-beans.svg);
    mask-repeat: no-repeat;
    mask-position: center center;
	background-color: var(--c-orange);
}

@media only screen and (max-width:640px) {
	.c-coffee {
		width: 18px;
		height: 18px;
	}

	.c-coffee::after {
		width: 18px;
		height: 18px;
	}
}

/* 「次へ」マーク */
.c-arrow-next {
	position: relative;
}

.c-arrow-next::after {
	display: block;
    position: absolute;
    content: '';
    top: 55%;
    right: -25px;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
	mask-image: url(../_image/common/arrow-next.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	background-color: var(--c-white);
	transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
	.link-btn:hover .c-arrow-next::after {
		background-color: var(--c-orange);
		transition: 0.4s;
	}
}

/* 「右矢印」マーク */
/* 「左矢印」マーク */
.c-arrow-right,
.c-arrow-left {
	position: relative;
}

.c-arrow-right::before,
.c-arrow-right::after,
.c-arrow-left::before,
.c-arrow-left::after {
	position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 20px;
    transition: 0.3s;
}

.c-arrow-right::before,
.c-arrow-left::before {
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--c-text);
}

.c-arrow-right::after,
.c-arrow-left::after {
    transform: translate(100% , -50%);
    width: 1rem;
    height: 1rem;
    background-image: url(../_image/common/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.c-arrow-left::after {
	background-image: url(../_image/common/arrow-left.svg);
}
