body {
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #4e5f74;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

/* タイトル */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: #4e5f74;
}

/* トップイメージ */

.topimg {  
    position: relative;
}

.topimg h1 {
    position: absolute;
    top: 40%;
    left: 10%;
}

/* 画像リサイズ */

img {
    max-width: 100%;
    height: auto;
}

/* ヘッダー */

header {
    width: 99%;
    height: 20px;
    display:flex;
    justify-content:space-between;
    align-items:start;
}

img {
	max-width: 100%;
	height: auto;
}

/* 見出し */

.grad{
  margin-bottom: 30px;
  padding: 0.5em;
  color: white;
  background:linear-gradient(to right, #4c58b6,#4cafb6);
  text-align: center;
}

.cnli {
	position: relative;
	margin-bottom: 1em;
	text-align: center;
}
.cnli:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 7%;
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #b2b2b2;
}

/* Paragraph & Typographic */

p {
  line-height: 1.5;
  margin-bottom: 25px;
  font-size: 16px;
}

/* リンク */

a {
  color: #0a4273;
  word-wrap: break-word;
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
  -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
  -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
  -o-transition: color 0.1s ease-in, background 0.1s ease-in;
  transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover, a:focus {
  color: #FFFFFF;
  text-decoration: none;
  outline: 0;
}

a:before, a:after {
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
  -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
  -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
  -o-transition: color 0.1s ease-in, background 0.1s ease-in;
  transition: color 0.1s ease-in, background 0.1s ease-in;
}

/* ボックス */

.message {
    padding: 0.5em 1em;
    margin: 2em 0;
    border: none;
    text-align: center;
    }
.message p {
    margin: 0; 
    padding: 0;
    font-size: 22px;
}

.message ul {
	padding-left: 0;
	display: inline-block;
}
.message ul li {
	text-align: left;
    font-size: 17px;
}

*, *:before, *:after {
	box-sizing: border-box;
}
.col_4{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
    justify-content: center;
    align-items: center;
}
.col_4 > div{
	width: 20%;
	padding: 10px;
}
@media screen and (max-width: 960px) {
	.col_4 > div{
		width: 33.33333%;
	}
}
@media screen and (max-width: 480px) {
	.col_4 > div{
		width: 50%;
	}
}

/* コピーライト */

#copyrights {
  background:linear-gradient(to right, #4c58b6,#4cafb6);
  padding: 20px 0;
  text-align: center;
}

#copyrights p {
  margin-bottom: 5px;
  color: #fff;
}

#copyrights a {
  color: #fff;
}

.credits {
  color: #fff;
}