@charset "UTF-8"

/*共通部分*/
html{
	font-size: 100%
}

body {
	font-family: "Yu Gothic Medium","遊ゴシック Medium","YuGothic","遊ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
	line-height: 1.7;
	background: black;
	color: white;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%
}

/*共通部分ここまで*/
.big-bg {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

#home {
	background-image: url(../img/tennai.jpg);
	min-height: 100vh;
}

.main-nav {
	display: flex;
	font-size: 1.25rem;
	list-style: none;
	width: 550px;
	margin-left: auto;
	margin-top: 34px;
	padding-top: 34px;
	margin-bottom: 0;
}

.main-nav li {
	margin-left: 36px;
}

.main-nav a {
	color: #C5C9CC;
}

.main-nav a:hover {
	color: #641923;
}

.page-header p {
	margin: 0;
	font-size: 1.5rem;
	margin-left: auto;
	color: red;
	width: 500px;
	font-weight: bolder;
}

.home-content {
	text-align: center;
	margin-top: 10%;
}

.home-content p {
	font-size: 1.5rem;
	margin: 10px 0 42px;
	font-weight: bolder;
}

h1 {
	font-size: 4rem;
	font-family: 'Philosopher',serif;
	font-weight: bolder;
	text-shadow: 1px 3px 2px #AAAAAA;
}

.button {
	font-size: 1.3rem;
	background: #641923;
	color: white;
	border-radius: 5px;
	padding: 18px 32px;
}

.botton:hover {
	background: #F5D5D7;
}

#news,
#contact,
#location {
	background-image: url(../img/tennai.jpg);
	height: 110px;
}

article {
	width: 74%;
}

article img {
	width: 100%;
	object-fit: cover;
	margin-bottom: 20px;
}

article p {
	margin-bottom: 1rem;
	font-size: 19px;
}

.post-info {
	position: relative;
	padding-top: 4px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.post-info h2 {
	margin-top: 50px;
	margin-left: 120px;
	font-size: 30px;
}

.post-date {
	background: #641923;
	border-radius: 50px;
	color: white;
	width: 100px;
	height: 100px;
	font-size: 1.6rem;
	text-align: center;
	position: absolute;
	top: 0;
	padding-top: 10px;
}

.post-date span {
	font-size: 1rem;
	border-top: solid 1px white;
	padding-top: 6px;
	display: block;
	width: 60%;
	margin: 0 auto;
}

aside {
	width: 22%;
}

.sub-title {
	font-size: 1.4rem;
	padding: 0 8px 8px;
	border-bottom: solid 2px gray;
}

aside p {
	padding: 12px 10px;
}

.sub-menu {
	padding: 0;
	margin-bottom: 60px;
	list-style: none;
}

.sub-menu li {
	border-bottom: solid 0.2px #ddd;
}

.sub-menu a {
	padding: 10px;
	display: block;
}

.sub-menu a:hover {
	color: pink;
}

.news-contents {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

/*contact*/
.wrapper {
	background-image: url(../img/contact.jpg);
	min-height: 100vh;
	padding-left: 50px;
}

form div {
	margin-bottom: 14px;
}

label {
	font-size: 1.2rem;
	margin-bottom: 10px;
	display: block;
}

input[type="text"],
input[type="email"],
textarea {
	background: rgba(255,255,255,.5);
	border: solid 1px #fff;
	border-radius: 5px;
	padding: 10px;
	font-size: 1rem;
}

input[type="text"],
input[type="email"]{
	width: 100%;
	max-width: 240px;
}

textarea {
	width: 100%;
	max-width: 480px;
	height: 6rem;
}

input[type="submit"] {
	border: none;
	cursor: pointer;
	line-height: 1;
}

/*location*/
#access {
	padding: 4% 0;
}

#access .wrapper02 {
	display: flex;
	justify-content: space-between;
}

.location-info {
	width: 30%
}

.location-info p {
	padding: 12px 10px;
}

.location-map {
	width: 70%;
}

iframe {
	width: 100%;
}

/*-----------------------------------------*/
/*モバイル版*/
@media screen and (max-width: 600px) {
	.home-content h1 {
		font-size: 2.5rem;
	}

	.main-nav {
		padding-left: 0;
		max-width: 100%;
		font-size: 0.8rem;
		margin-right: auto;
	}

	.main-nav li {
		margin: 0 20px;
	}

	.page-header p {
		max-width: 100%;
		font-size: 1rem;
	}

	.home-content {
		margin-top: 20%;
	}

	.news-contents {
		flex-direction: column;
	}

	/*news*/

	article,
	aside{
		width: 100%;
	}

	aside {
		margin-top: 60px;
	}

	.post-info {
		margin-bottom: 30px;
	}

	.post-info h2 {
		margin-top: 30px;
		font-size: 1.5rem;
		margin-left: 80px;
	}

	.post-date {
		width: 70px;
		height: 70px;
		font-size: 1rem;
	}

	.post-date span {
		font-size: 0.87rem;
		padding-top: 2px;
	}

	/*contact*/
	.wrapper {
		padding: 0;
	}
	.wrapper h2 {
		margin-top: 40px;
	}

	input[type="text"],
	input[type="email"],
	textarea {
		max-width: 96%;
	}

	/*location*/
	#access .wrapper02 {
		flex-direction: column;
	}

	.location-info,
	.location-map {
		width: 100%;
	}
}
