@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	min-height: 100vh;
	font-size: 16px;
	background-color: #f1e5d5;
}
a {
	display: block;
	color: #000;
	text-decoration: none;
	transition: all 0.3s;
}
a:hover {
	opacity: 0.5;
}
ul,
ol {
	list-style: none;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
address {
	font-style: normal;
	text-decoration: none;
}
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src: url(../webfonts/NotoSansJP/NotoSansJP-Regular.otf) format("opentype");
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src: url(../webfonts/NotoSansJP/NotoSansJP-Bold.otf) format("opentype");
	font-display: swap;
}

.l-wrapper {
	color: #442209;
	background-color: #f1e5d5;
}

.inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

section {
	position: relative;
	padding-bottom: 120px;
}

@media screen and (max-width: 1024px) {
	.inner {
		padding: 0 20px;
	}
	section {
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
	}
	section {
		padding-bottom: 50px;
	}
}

/* 見出し */
.heading {
	text-align: center;
	margin-bottom: 80px;
}
.heading h2 {
	font-size: 40px;
	font-weight: 400;
}
.heading .en {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #64c6bb;
	font-family: "Baloo 2", serif;
}
.heading h2 span {
	position: relative;
	padding-bottom: 25px;
}
.heading h2 span::after {
	content: "";
	display: inline-block;
	width: 70%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #64c6bb;
}
h3 {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 80px;
}
h3 span {
	position: relative;
	padding-top: 25px;
	padding-bottom: 25px;
}
h3 span::before,
h3 span::after {
	content: "";
	display: inline-block;
	width: 70%;
	height: 2px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #64c6bb;
}
h3 span::before {
	top: 0;
}
h3 span::after {
	bottom: 0;
}

@media screen and (max-width: 1024px) {
	.heading h2 {
		font-size: 30px;
	}
	.heading .en {
		font-size: 20px;
	}
	h3 {
		font-size: 24px;
		margin-bottom: 64px;
	}
}
@media screen and (max-width: 480px) {
	.heading h2 {
		font-size: 20px;
	}
	.heading .en {
		font-size: 14px;
	}
	h3 {
		font-size: 18px;
	}
	h3 span {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

/* ボタン */
.link-btn {
	width: 205px;
	text-align: center;
	color: #fff;
	background-color: #64c6bb;
	background-image: url(../images/ico-btn.svg);
	background-size: 28px auto;
	background-repeat: no-repeat;
	background-position: 85% center;
	padding: 10px 40px 10px 0;
	border-radius: 16px;
}
.link-btn span {
	display: block;
	line-height: 1.2;
}
.link-btn .font01 {
	font-size: 24px;
}
.link-btn .font02 {
	font-size: 16px;
}

/* パンくず */
.breadcrumb {
	max-width: 1280px;
	margin: 20px auto;
}
.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
}
.breadcrumb a {
	letter-spacing: 0.1em;
	display: inline-block;
}
.breadcrumb li + li {
	padding-left: 6px;
}
.breadcrumb li + li::before {
	content: ">";
	padding-right: 6px;
}
.breadcrumb + h1 {
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.breadcrumb + h1 {
		margin-top: 18px;
	}
	.breadcrumb ul {
		font-size: 14px;
	}
}

/* レスポンシブ改行・表示、非表示 */
@media screen and (min-width: 1281px) {
	.br1280 {
		display: none;
	}
}
@media screen and (max-width: 1280px) {
	.br1280 {
		display: block;
	}
}
@media screen and (min-width: 768px) {
	.pc {
		display: block;
	}
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block;
	}
}
@media screen and (min-width: 481px) {
	.pc480 {
		display: block;
	}
	.sp480 {
		display: none !important;
	}
	.br480 {
		display: none !important;
	}
}
@media screen and (max-width: 480px) {
	.pc480 {
		display: none !important;
	}
	.sp480 {
		display: block;
	}
	.br480 {
		display: block;
	}
}
