@charset "UTF-8";

/* common
========================================== */
* {
	box-sizing: border-box;
}
a img,
button {
	transition: 0.2s ease-in-out;
}
a:hover img,
button:hover {
	opacity: 0.7;
}

/* PC */
@media print, screen and (min-width: 769px) {
}
/* SP */
@media only screen and (max-width: 768px) {
	body {
		font-size: 14px;
		font-size: 1.4rem;
	}
}


/* header
========================================== */

#header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
}
#header .logo {
	width: 180px;
}
#header .link_top a {
	color: #231815;
	font-weight: 600;
}
/* PC */
@media print, screen and (min-width: 769px) {
	#header {
		min-width: 1200px;
	}
}
/* SP */
@media only screen and (max-width: 768px) {
	#header {
		padding: 15px;
	}
	#header .logo {
		width: 110px;
	}
	#header .link_top a {
		font-size: 1.4rem;
	}
}


/* main
========================================== */
.contents_area {
  margin-left: auto;
  margin-right: auto;
	padding: 60px 40px 120px;
	position: relative;
  width: 1200px;
}
/* PC */
@media print, screen and (min-width: 769px) {
	#main {
		min-width: 1200px;
	}
}
/* SP */
@media only screen and (max-width: 768px) {
  .contents_area {
    padding: 30px 15px 60px;
		width: auto;
  }
}


/* footer
========================================== */

#footer {
	background-color: #231815;
	padding: 40px;
	text-align: center;
}
#footer * {
	color: #fff;
}
#footer .sns_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#footer .sns_list > li {
	margin: 0 10px;
	width: 50px;
}
#footer .footer_menu {
	border-bottom: 4px solid #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
	margin-top: 40px;
	padding-bottom: 25px;
}
#footer .footer_menu > li {
	padding: 0 12px;
}
#footer .footer_menu > li + li {
	border-left: 1px solid #fff;
}
#footer .footer_menu > li a {
	line-height: 1.1;
}
#footer .copyright {
	margin-top: 20px;
  font-weight: 600;
}

/* PC */
@media print, screen and (min-width: 769px) {
	#footer {
		min-width: 1200px;
	}
}
/* SP */
@media only screen and (max-width: 768px) {
	#footer {
		padding: 20px 15px;
	}
	#footer .sns_list > li {
		margin: 0 5px;
		width: 30px;
	}
	#footer .footer_menu {
		border-bottom-width: 1px;
		margin-top: 20px;
		padding-bottom: 15px;
	}
	#footer .footer_menu > li {
		font-size: 1.3rem;
		padding: 0 10px;
	}
	#footer .copyright {
		font-size: 1.2rem;
		margin-top: 15px;
	}
}


/* parts
========================================== */
.heading01 {
	font-size: 6rem;
	font-weight: 600;
	line-height: 1;
}
.heading01 .subtext {
	display: block;
	font-size: 2.8rem;
	margin-top: 15px;
}
/* SP */
@media only screen and (max-width: 768px) {
	.heading01 {
		font-size: 3.2rem;
	}
	.heading01 .subtext {
		font-size: 1.4rem;
		margin-top: 10px;
	}
}

table {
	border-collapse: collapse;
	width: 100%;
}
table th {
	background-color: #231815;
	color: #fff;
	font-weight: 600;
}

.list_disc > li {
	padding-left: 1em;
	text-indent: -1em;
}
.list_disc > li:before {
	content: "・";
}
/* PC */
@media print, screen and (min-width: 769px) {
}
/* SP */
@media only screen and (max-width: 768px) {
	
}