@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	;
	vertical-align: bottom;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: black;
}

.current a {
	background: rgba(255, 255, 255, 0.9);
	color: rgb(122, 36, 17);
}

span {
	margin-left: 10px;
	font-size: 12px;
}

#wrap {
	font-family: 'Quicksand';
}

/* header */
nav {
	width: 100%;
	position: fixed;
	top: 30px;
	z-index: 999;
}

nav>p {
	display: block;
	margin: 5px 0 0 5px;
}

nav>p:before {
	content: "\f0c9";
	display: inline-block;
	width: 1.5em;
	line-height: 1.5em;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	text-align: center;
	font-family: 'Font Awesome 5 Free';
}

nav p.fas {
	/* color: white; */
	font-size: 30px;
}

nav>p>span {
	display: inline-block;
	text-indent: -9999px;
}

nav ul {
	display: none;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	top: 55px;
}

nav li {
	width: 100%;
	line-height: 70px;
	text-align: center;
}

nav li a {
	display: block;
	color: white;
}

nav li a:hover {
	background: rgba(255, 255, 255, 0.7);
	color: black;
}

i {
	display: inline-block;
	padding: 0 5px;
	font-size: 12px;
	position: relative;
	top: -2px;
}

/* section */
h1 {
	width: 100%;
	padding-top: 30px;
	text-align: center;
	font-family: 'Island Moments';
	font-size: 13vw;
	color: rgba(50, 49, 49, 0.7);
}

h2 {
	text-indent: 2%;
}

h3 {
	margin: 20px 0 0;
	border-bottom: solid 1px rgb(52, 51, 51);
	text-indent: 2%;
	font-size: 14px;
}

section {
	width: 100%;
}

section:not(#sec1) {
	margin: 50px 0;
}

section ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	width: 90%;
	margin: 0 auto;
}

section li {
	margin: 20px 0;
	max-width: 200px;
	max-height: 300px;
	overflow: hidden;
	position: relative;
	font-size: 14px;
}

section li>a {
	margin: 0 0 30px;
}

section li>p a {
	font-size: 12px;
}

/* #sec1 */
section#sec1 {
	/* 一分一秒が世界を変えるチャンス.jpg */
	background: linear-gradient(120deg, rgba(253, 251, 251, 0.9) 0%, rgba(235, 237, 238, 0.7) 100%), url(title.jpg) no-repeat center top / cover;
	height: 100vh;
}

section#sec1>div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 75%;
	height: 75vh;
	margin: 0 auto;
	padding: 5px 20px;
	background: rgba(185, 171, 171, 0.7);
	/* line-height: 1; */
	font-size: 14px;
	font-weight: 500;
	color: black;
}

section#sec1>div>p.date {
	width: 100%;
	margin-bottom: 5px;
}

section#sec1>div p {
	margin: 10px 0;
	width: 47%;
}

section#sec1>div a {
	display: block;
	margin: 5px 0 5px 20px;
	color: black;
}

section#sec1>div>p:first-of-type {
	text-align: center;
}

section#sec1>div>p:last-of-type {
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: darkred;
}

/* #sec4 */
section#sec4 li {
	display: flex;
	flex-wrap: wrap;
}

section#sec4 li>p:first-of-type {
	flex-basis: 200px;
}

section#sec4 li>p:nth-of-type(2) {
	flex-basis: 30%;
}

section#sec4 li>p:last-of-type {
	flex-basis: 70%;
}

/* footer */
footer p {
	padding: 3px 0;
	background: rgba(0, 0, 0, 0.7);
	text-align: center;
	font-size: 12px;
	color: white;
}

/* scrollTop */
#fixedTop {
	width: 100px;
	height: 100px;
	position: fixed;
	bottom: 10%;
	right: 1%;
	z-index: 9999;
}

#fixedTop img {
	object-fit: contain;
}

#fixedTop i {
	font-size: 30px;
}


/* --------- 641px以上 ---------- */
@media screen and (min-width: 741px) {

	nav>p,
	nav p:before,
	p.fas {
		display: none;
	}

	nav {
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		top: 0;
	}

	nav ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 93%;
		margin: 0 auto;
		position: static;
		top: 0;
	}

	h1 {
		padding-top: 50px;
	}

	section#sec1>div {
		height: 55vh;
	}
}