@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	letter-spacing: 1px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html {
    overflow: hidden;
    overflow-y:scroll;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:visited {
	color:#0089C7;
	text-decoration: none;
}

a:link {
	color:#0089C7;
	text-decoration: none;
}

a:hover {
	color:#3C9;
	text-decoration: none;
}

a:active {
	color:#3C9;
	text-decoration: none;
}

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

.clearfix { display: inline-block}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix { display:block;}
/* End hide from IE-mac */


/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
html {
	  min-height: 100%;
  position: relative;
}
body {
	text-align:center;
	zoom: 100%;
	background-color: #48CFF9;
}

#container {
    min-height: 100vh;
    position: relative;/*←相対位置*/
    padding-bottom: 120px;/*←footerの高さ*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

#header {
	width: 100%;
	background-color: #FFFFFF;
}


#top-image {
	width: 100%;
	margin: 0 auto;
	clear: both;
}


/*------------------------------------------------------------
	共通コンテンツ
------------------------------------------------------------*/


.content2 {
	width: 1280px;
	margin: 5px auto;
	overflow: hidden;
}

.content2 h3{
	clear: both;
}

.content3 {
	width: 1280px;
	margin: 20px 0 0 100px;
}



#footer {
    width: 100%;
    background-color: #0089C7;
    color: #fff;
    text-align: center;
    padding: 30px 0;

 position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
}

#footer p{
	color: #FFFFFF;
	font-size: 11px;
}



/* --------------------------------------------------------------------------------
Tabのレイアウト
-------------------------------------------------------------------------------- */
/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab li a{
	display: block;
	background:#ddd;
	font-size: 17px;
	margin:0 2px;
	padding:10px 15px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#fff;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}



/*========= レイアウトのためのCSS ===============*/

body{
	background:#eee;
}

ul{
	list-style:none;
}

a{
	color:#333;
	text-decoration: none;
}

.wrapper{
	width:100%;
	max-width: 960px;
	margin:30px auto;
    background:#fefefe;
}

.area h2{
	font-size:1.3rem;
	margin:0 0 20px 10px;
}

.area li{
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	padding: 10px; 
	border-bottom: 1px solid #ddd;
}

.sub-list1{
	padding: 0 0 5px 60px;
	font-size: 12px;
}

