@charset "UTF-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
	padding: 0px;
	margin: 0px;
	-webkit-text-size-adjust: 100%;
	color: #111;
	line-height: 1.6em;
}

html {
	height: 100%;
}

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
.set {
	margin: 0px;
	padding: 0px;
	font-family: 'Noto Sans JP', sans-serif;
	font-family: 'Zen Kaku Gothic New', sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
img {
	border: 0;
	width: 100%;
	display: block;
}
.alpha:hover {
	filter: alpha(opacity=80);
	opacity: 0.8;
}


/*clearfix*/
.cf:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.cf {
  min-height: 1px;
}

* html .cf {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}

ul {
	list-style-type: none;
}

.contents_wrap {
	flex: 1;
}


/*  */
@media screen and (max-width: 768px) {
	.u_pc {
	  display: none;
	}
}

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


/* CONTAINER */
.container-s, .container, .container-l {
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .container-s {
    width: 760px;
  }
}

@media screen and (min-width: 769px) {
  .container {
    /*width: 1180px;*/
	width: 1080px;
  }
}

@media screen and (min-width: 769px) {
	.container-l {
	  padding: 0;
	}
}



/* HEADER */
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: #FFF;
	margin: 0 auto;
	padding: 10px 20px;
	box-sizing: border-box;
}
header h1 {
	font-size: 12px;
	font-weight: 500;
	padding: 0 20px;
	text-align: center;
}
header .logo {
	width: 180px;
	margin: 10px auto;
}

@media screen and (min-width: 769px) {
	header h1 {
		font-size: 13px;
	}
	header .header_wrap {
		width: 1080px;
		margin: 0 auto;
	}
	header .logo {
		width: 240px;
	}
}



/* ABOUT */
.about {
	margin: 80px 0 0;
	padding: 40px 0;
}
.about .caption {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px;
}
.about .txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8em;
}
.about ul {
	width: 80%;
	margin: 40px auto 0;
	text-align: center;
}
.about ul li {
	margin: 0 0 40px;
}
.about ul li h3 {
	font-size: 16px;
	font-weight: 700;
	font-family: "Libre Baskerville", serif;
	letter-spacing: 0.05em;
	margin: 5px 0 0;
}
.about ul li p {
	font-size: 14px;
	font-weight: 700;
	margin: 10px 0 0;
}
.about ul li p a {
	color: #FFF;
	text-decoration: none;
	background-color: #d1934d;
	border-radius: 40px;
	display: inline-block;
	padding: 5px 40px;
}

@media screen and (min-width: 769px) {
.about {
	margin: 80px 0 0;
	padding: 60px 0;
	text-align: center;
}
.about .caption {
	font-size: 20px;
}
.about .txt {
	font-size: 15px;
	font-weight: 500;
}
.about ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 30px 0 0;
}
.about ul li {
	width: 48%;
}
.about ul li h3 {
	font-size: 22px;
	font-weight: 400;
	margin: 10px 0 0;
}
.about ul li p {
	font-size: 15px;
	font-weight: 700;
}
.about ul li p a {
	padding: 6px 60px;
}
}



/* FOOTER */
footer .copy {
	font-size: 12px;
	text-align: center;
	margin: 10px 20px 5px;
	padding: 10px;
	border-top: solid 1px #CCC;
}

@media screen and (min-width: 769px) {
footer .copy {
	font-size: 13px;
}
}


