/*--------------------
 base
--------------------*/

body {
	font-family: "Noto Sans JP", serif;
	background: #fff;
	font-size: 16px;
	color: #000000;
}

.container {
	max-width: 680px!important;
	padding: 0 16px;
}


footer {
	font-size: 14px;
	text-align: center;
	padding-bottom: 36px;
}

ol, ul {
	padding-left: 1rem;
}
ul li,
ul ol {
	list-style: none;
	text-indent:-1em;
	padding-left:1em;
}

a:hover {
	text-decoration: none;
}

/*--------------------
 main
--------------------*/
div.main {
	position: relative;
	margin-bottom: 76px;
	aspect-ratio: 1 / 2;
	width: 100%;
	max-height: 100svh;
	background-image: url("../images/main_SP.jpg");
	background-size: cover;
	background-position: top center;
}

div.main-text {
	color: #fff;
	position: absolute;
	bottom: 0;
	z-index: 1;
	padding: 0 16px;
	text-align: center;
	/*font-size: 12px;*/
	font-size: clamp(0.75rem, 0.515rem + 0.78vw, 1rem);
	margin: auto;
	width: 100%;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.main-text p:last-child {
	margin-bottom: 2.25rem;
}

.main hgroup {
	color: #fff;
	font-family: "Noto Serif", serif;
	font-weight: 700;
}

.main hgroup h1 {
	font-size: 48px;
	margin-bottom: 0;
}
.main hgroup p {
	font-size: 20px;
	margin-bottom: 20px!important;
}

div.message.container,
div.zoom.container {
	margin-bottom: 100px;
}

@media (min-width: 992px) {
	div.main {
		margin-bottom: 76px;
		aspect-ratio: 192 / 107;
		background-image: url("../images/main_PC.jpg");
	}
}

@media (min-width: 1299px) {
	div.main-text {
		font-size: 16px;
	}
	.main hgroup h1 {
		font-size: 70px;
	}
	.main hgroup p {
		font-size: 42px;
	}
}



/*--------------------
 contents
--------------------*/

.container hgroup {
	color: #AC8630;
	text-align: center;
	padding-top: 32px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 44px;
	border-image-slice: 71 66 71 66;
	border-image-width: 72px 72px 72px 72px;
	border-image-outset: 0px 0px 0px 0px;
	border-image-repeat: round round;
	border-image-source: url("../images/h2_bg.svg");
	border-style: solid;
}

.container hgroup h2 {
	font-size: 30px;
	font-weight: 900;
}
.container hgroup p {
	font-size: 20px;
	font-weight: 600;
}

.message a,
.zoom a {
	background: #000;
	color: #fff;
	max-width: 256px;
	display: block;
	margin: auto;
	text-align: center;
	text-decoration: none;
	padding: 12px 0;
	font-weight: 900;
	transition: opacity 0.3s
}


.bdphoto {
	max-width: 1072px;
	width: 100%;
	margin: auto;
	padding: 0 16px;
	margin-bottom: 100px;
}

.bdphoto ul.photo {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	gap: 27px 6%;
}

.bdphoto ul.photo li {
	text-indent: 0;
	padding-left: 0;
	max-width: 319px;
	width: 47%;
}


.closing-words {
	padding: 0 16px;
	max-width: 100%;
	margin-bottom: 90px;
}

.closing-words p {
	text-align: center;
	font-family: "Herr Von Muellerhoff", serif;
	font-weight: 400;
	font-style: normal;
	color: #9A7B17;
	/*font-size: 36px;*/
	font-size: clamp(2.25rem, 1.413rem + 3.57vw, 3.125rem);
}
.closing-words p:first-of-type {
	/*font-size: 36px;*/
	font-size: clamp(2.25rem, 0.217rem + 8.67vw, 4.375rem);
}

.closing-words p img {
	vertical-align: baseline;
	aspect-ratio: 469 / 64;
	/*max-height: 22px;*/
	max-height: clamp(1.375rem, -0.419rem + 7.65vw, 3.25rem);
	max-width: 100%;
}

@media (hover: hover) {
	.message a:hover,
	.zoom a:hover {
		opacity: 0.8;
	}
}


@media (min-width: 768px) {
	.bdphoto ul.photo {
		gap: 27px 6.5%;
	}
	.bdphoto ul.photo li {
		max-width: 319px;
		width: 29%;
	}
	.closing-words p {
		font-size: 50px;
	}
	.closing-words p:first-of-type {
		font-size: 70px;
	}
	.closing-words p img {
		max-height: 52px;
		}
}


/*-----------------------------
  fadein
-----------------------------*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(.33,.01,.06,.99);
}

.fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}