@charset "UTF-8";

/* common */
html, body, div, p, h1, h2, h3, ul, ol, li {
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
	color: #555;
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
}

.font2 {
	font-family: "Noto Serif JP", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

img {
	width: 100%;
	max-height: 100%;
	vertical-align: bottom;
}

h1, h2, h3 {
	color: #6a4a06;
}

h1 {
	font-size: 180%;
}
h2 {
	font-size: 165%;
}
h3 {
	font-size: 135%;
}

li {
	list-style: none;
}

header,
main,
footer {
	max-width: 1280px;
	margin: auto;
}

header {
	position: relative;
}

main h2 {
	font-family: "Noto Serif JP", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	text-align: center;
}

main h3 {
	margin-bottom: 0.75rem;
}

main .container,
footer .container {
	position: relative;
	padding: 4em 5%;
	box-sizing: border-box;
}

main p {
	margin-bottom: 0.75em;
}

main p:last-child {
	margin-bottom: 0;
}

footer {
	width: 100%;
	background: #000;
	color: #fff;
}

footer a {
	color: #fff;
}

.box {
	display: grid;
}

.ssmall {
	font-size: 65%;
}

.small {
	font-size: 80%;
}

.text-center {
	text-align: center;
}

@media screen and (min-width: 751px){
	.sp {
		display: none;
	}

	main h2 {
		margin-bottom: 4rem;
	}

	.box {
		grid-template-columns: 1fr 1fr;
		gap: 2em;
	}
}

@media screen and (max-width: 750px){
	.no-sp {
		display: none;
	}

	body {
		font-size: 13px;
	}

	h2 {
		font-size: 5.5vw;
		margin-bottom: 2rem;
	}

	main .container,
	footer .container {
		padding-top: 2.5em;
		padding-bottom: 2.5em;
	}

	.box {
		grid-template-columns: 1fr;
		gap: 1.5em;
	}
}

/* parts */
.greeting {
	background: #fffdf3;
}

.greeting .container {
	margin-top: -7.5em;
	padding-top: 0;
}

.greeting .description {
	margin-bottom: 2em;
	text-align: center;
}

.greeting li {
	display: grid;
	width: 100%;
	margin: auto;
	grid-template-columns: 0.75fr 1fr;
	background: #fff;
	border-radius: 1em;
	box-shadow: 0px 0px 6px #aaa;
}

.greeting .txt {
	display: flex;
	padding-right: 0.5em;
	justify-content: center;
	flex-direction: column;
}

@media screen and (min-width: 751px){
	.greeting .box li > .img {
		padding: 1.5em;
	}
}

@media screen and (max-width: 750px){
	.greeting .container2 img {
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	.greeting .container {
		margin-top: calc(-25vw);
	}

	.greeting li {
		max-width: 480px;
	}

	.greeting .box li > .img {
		padding: 0.75em;
	}
}

@media screen and (max-width: 1280px) and (min-width: 751px){
	.greeting .container {
		margin-top: calc(-9vw);
	}

	.greeting .txt {
		font-size: 80%;
	}
}

.about {
	background: #fffdf3;
	overflow: hidden;
}

.about .container2 {
	padding-bottom: 4.5em;
}

.about li {
	padding: 1.5em;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 6px #aaa;
}

.about li:nth-of-type(1) {
	background-position: top right;
}

.about li:nth-of-type(2) {
	background-position: center right;
}

.about li:nth-of-type(3) {
	background-position: top left;
}

.about li:nth-of-type(4) {
	background-position: center center;
}

.about li:nth-of-type(5) {
	background-position: center center;
}

.about li h3 {
	color: #555;
}

.about li .txt {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.about .atbox {
	width: 90%;
	max-width: 1024px;
	margin: auto;
	padding: 0.75em;
	background: #fff;
	border: 1px solid rgba(106, 74, 6, 0.5);
	border-radius: 1em;
	box-shadow: 0px 0px 6px #aaa;
	box-sizing: border-box;
}

.about .atbox h3 {
	text-align: center;
}

@media screen and (min-width: 751px){
	.about li:nth-of-type(2n+1) {
		margin-right: 4em;
		margin-bottom: 4em;
		padding-left: 25%;
		border-radius: 0 1em 1em 0;
	}

	.about li:nth-of-type(2n+2) {
		margin-left: 4em;
		margin-bottom: 4em;
		padding-right: 25%;
		border-radius: 1em 0 0 1em;
	}

	.about li:nth-of-type(1) {
		background-image: url(./images/about_bg1.jpg);
	}

	.about li:nth-of-type(2) {
		background-image: url(./images/about_bg2.jpg);
	}

	.about li:nth-of-type(3) {
		background-image: url(./images/about_bg3.jpg);
	}

	.about li:nth-of-type(4) {
		background-image: url(./images/about_bg4.jpg);
	}

	.about li:nth-of-type(5) {
		background-image: url(./images/about_bg5.jpg);
	}

	.about li .img {
		display: flex;
		align-items: center;
	}

	.about li:nth-of-type(2n+2) .img {
		order: 1;
	}

	.about .atbox {
		padding: 3em 2.5em;
	}

	.about .atbox h3 {
		font-size: 150%;
	}

	.about .atbox p {
		padding: 0 1em;
	}
}

@media screen and (max-width: 750px){
	.about li:nth-of-type(2n+1) {
		margin-right: 2em;
		margin-bottom: 2em;
		border-radius: 0 1em 1em 0;
	}

	.about li:nth-of-type(2n+1) .txt {
		padding-left: 3em;
	}

	.about li:nth-of-type(2n+2) {
		margin-left: 2em;
		margin-bottom: 2em;
		border-radius: 1em 0 0 1em;
	}

	.about li:nth-of-type(2n+2) .txt {
		padding-right: 3em;
	}

	.about li:nth-of-type(1) {
		background-image: url(./images/about_bg1_sp.jpg);
	}

	.about li:nth-of-type(2) {
		background-image: url(./images/about_bg2_sp.jpg);
	}

	.about li:nth-of-type(3) {
		background-image: url(./images/about_bg3_sp.jpg);
	}

	.about li:nth-of-type(4) {
		background-image: url(./images/about_bg4_sp.jpg);
	}

	.about li:nth-of-type(5) {
		background-image: url(./images/about_bg5_sp.jpg);
	}

	.about li .img {
		text-align: center;
	}

	.about li .img img {
		width: 66%;
	}

	.about .atbox h3 {
		font-size: 110%;
	}

	.about .atbox p {
		padding: 0 1em 1em 1em;
	}
}

.flow {
	background: url(./images/flow_bg.jpg) center center repeat;
	background-size: 66%;
	overflow: hidden;
}

.flow .container {
	width: 90%;
	max-width: 1024px;
	margin: auto;
	padding-left: 0;
	padding-right: 0;
}

.flow h2,
.flow h3 {
	color: #555;
}

.flow .list > li {
	padding: 0.75em;
	background: #fff;
	border-radius: 1em;
	box-shadow: 0px 0px 6px #aaa;
	box-sizing: border-box;
}

.flow .list h3 {
	font-size: 110%;
	text-align: center;
}

.flow .list h3 > span {
	display: block;
}

.flow .list h3 .num {
	font-size: 125%;
	color: #fd879d;
}

.flow .list > li:last-child {
	background: #f7c4cd;
}

.flow .list > li:last-child li {
	font-weight: bold;
}

.flow .img {
	text-align: center;
}

.flow .img img {
	width: 100px;
}

@media screen and (min-width: 751px){
	.flow .list > li {
		margin-bottom: 2em;
		padding: 1em 3.5em 3em 3.5em;
	}

	.flow .box {
		grid-template-columns: 1fr 100px;
	}

	.flow .list > li:last-child ul {
		margin-bottom: 1em;
	}
}

@media screen and (max-width: 750px){
	.flow .list > li {
		margin-bottom: 1em;
		padding: 1em 2em;
	}

	.flow .list > li:last-child li {
		margin-bottom: 1em;
	}
}

.feature h2 {
	margin: 0;
	padding: 0;
}

.fee {
	background: #fffdf3;
}

.fee .container {
	width: 90%;
	max-width: 1024px;
	margin: auto;
	padding-left: 0;
	padding-right: 0;
}

.fee li {
	padding: 0.75em;
	background: #fff;
	border: 1px solid rgba(106, 74, 6, 0.5);
	border-radius: 1em;
	box-shadow: 0px 0px 6px #aaa;
	box-sizing: border-box;
}

.fee h3 {
	text-align: center;
}

.fee .img {
	max-width: 520px;
	margin: auto;
}

@media screen and (min-width: 751px){
	.fee li {
		margin-bottom: 2em;
		padding: 1em 3.5em 1.5em 3.5em;
	}

	.fee h3 {
		font-size: 150%;
	}
}

@media screen and (max-width: 750px){
	.fee li {
		margin-bottom: 1em;
		padding: 1em 2em;
	}
}