@charset "UTF-8";

@import url("reset.css");
 /* @import url("color.css"); */

  /*HTMLに対する基本設定*/
html {
  width: 100%;/*HTMLがスクロールバーを避けて表示してしまうのを防ぐため*/
  min-width: 360px;/*iphone3/4のサイズ*/
  font-size: 62.5%;
}

body{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
/*====================================================================
slick
====================================================================*/

html, body {
  margin: 0;
  padding: 0;
}

.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
.sliderArea.w300 {
  max-width: 300px;
}
.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}

/*====================================================================
.full-screen
====================================================================*/

.full-screen .slick-list {
  overflow: visible;
}
.full-screen.slider {
  max-width: 300px;
  margin: 0 auto;
}

/*====================================================================
以下は不要です。
====================================================================*/
body {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  letter-spacing: .025em;
  line-height: 1.8;
  margin: 0;
}




/* SPーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 768px){
	body {
		width: 100%;
	}

	header {
		position: relative;
		width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  h1 {
  margin: 16px 0 20px 16px;

  }
  /*　ハンバーガーボタン　*/
.hamburger {
	position: absolute;
  xposition: fixed;
  z-index : 3;
  right : 16px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  background-image: url("../images/sp_menu.gif");
  background-position: center center;
  background-repeat: no-repeat;
}
	.hamburger span {
		display : block;
		position: absolute;
		width   : 30px;
		height  : 2px ;
		left    : 6px;
		background : #555;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition   : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
	}

/* ナビ開いてる時のボタン */
	.hamburger.active span:nth-child(1) {
		top : 16px;
		left: 6px;
		background :#fff;
		-webkit-transform: rotate(-45deg);
		-moz-transform   : rotate(-45deg);
		transform        : rotate(-45deg);
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
		top: 16px;
		background :#fff;
		-webkit-transform: rotate(45deg);
		-moz-transform   : rotate(45deg);
		transform        : rotate(45deg);
	}

	nav.globalMenuSp {
		display: none;
		xposition: fixed;
		z-index : 2;
		top  : 0;
		left : 0;
		color: #fff;
		background: #3b5b83;
		text-align: center;
		width: 100%;
	}

	nav.globalMenuSp ul {
		margin: 0 auto;
		padding: 0;
		width: 100%;
	}

	nav.globalMenuSp ul li {
		font-size: 16px;
		font-weight: bold;
		list-style-type: none;
		padding: 0;
		width: 100%;
	}
	nav.globalMenuSp ul li:last-child {
		padding-bottom: 0;
	}
	nav.globalMenuSp ul li:hover {
		background :#c5b831;
	}
	nav.globalMenuSp ul li a {
		display: block;
		color: #fff;
		padding: 1em 0;
		text-decoration :none;
	}

/* このクラスを、jQueryで付与・削除する */
	nav.globalMenuSp.active {
		opacity: 100;
	}
	ul.utility {
		width: 100%;
		height: 30px;
		display: flex;
		flex-direction: row;

	}
	.utility li {
		width: 50%;
		height: 30px;
	}
	.sp {
		width: 100%;
	}


/* メイン＝＝＝＝＝＝＝＝＝＝＝ */

	main {
		width: 100%;
		display: flex;
		flex-direction: column;
		position: relative;
	}
	.sec1 h2 {
		font-size: 36px;
		font-family: "Yu Gothic";
		color: rgb(59, 91, 131);
		font-weight: bold;
		line-height: 1.2;
		position: absolute;
		left: 30px;
		top: 10px;
		z-index: 43;
	  background-color: rgba(255,255,255,0.3);
	}
	.sec1 span {
	 display: none;
	}


	.sec1 h3  {
		font-size: 20px;
		font-weight: bold;
		text-align: center;
	}
	.sec1 p {
		padding: 20px  16px  20px  16px;
		font-size: 20px;
		line-height: 2em;
		text-align: left;
	}

	.sec1 a {
		border: 1px solid #ccc;
		background: #f1e767;
		background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
		background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
		background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
		-webkit-box-shadow: inset 1px 1px 1px #fff;
		box-shadow: inset 1px 1px 1px #fff;
	}

	.sec1 a:hover {
		background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
		background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
		background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
	}

	.sec2 figure {
		margin: 20px 20px;
	}

	.sec2 h2 {
		position: relative;
		font-size: 30px;
		font-weight: bold;
		margin:1.4em 0 1.4em 16px;
		color: #fffffb;
		padding: 0.3em 0 0.3em 0.5em;
		background-color: #68b7a1;
	}
	.sec2 h2::after {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border-width: 0 20px 15px 0;
		border-style: solid;
		border-color: transparent;
		border-right-color: #c8baa7;
	}
	.sec2 h3 {
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}
	.sec2 p {
		padding: 20px  16px  20px  20px;
		font-size: 20px;
		line-height: 2em;
		text-align: left;
	}

	.sec2 a {
		border: 1px solid #ccc;
		background: #f1e767;
		background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
		background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
		background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
		-webkit-box-shadow: inset 1px 1px 1px #fff;
		box-shadow: inset 1px 1px 1px #fff;
	}

	.sec2 p:hover {
		background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
		background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
		background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
	}

	.sec3 h2 {
		position: relative;
		font-size: 30px;
		font-weight: bold;
		margin:1.4em 0 1.4em 16px;
		color: #fffffb;
		padding: 0.3em 0 0.3em 0.5em;
		background-color: #68b7a1;
	}
	.sec3 h2::after {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border-width: 0 20px 15px 0;
		border-style: solid;
		border-color: transparent;
		border-right-color: #c8baa7;
	}
	.sec3 h3 {
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		line-height: 2em;
		padding: 20px  16px  20px  20px;
	}
	.sec3 p {
		padding: 20px  16px  20px  20px;
		font-size: 16px;
		line-height: 2em;
		text-align: left;
	}


	.sec4 h2 {
		position: relative;
		font-size: 30px;
		font-weight: bold;
		margin:1.4em 0 1.4em 16px;
		color: #fffffb;
		padding: 0.3em 0 0.3em 0.5em;
		background-color: #68b7a1;
		margin-bottom: 40px;
	}
	.sec4 h2::after {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border-width: 0 20px 15px 0;
		border-style: solid;
		border-color: transparent;
		border-right-color: #c8baa7;
	}
	.sec4 {
		margin-top: 20px;
	}
	.sec4 div {
		padding: 20px  16px  20px  20px;
		font-size: 14px;
		line-height: 2em;
	}
	.sec4 time {
		font-weight: bold;
		}
	.sec4 p {
		font-size: 16px;
	}


	.sec5 h2 {
		position: relative;
		font-size: 30px;
		font-weight: bold;
		margin:1.4em 0 1.4em 16px;
		color: #fffffb;
		padding: 0.3em 0 0.3em 0.5em;
		background-color: #68b7a1;
	}
	.sec5 h2::after {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border-width: 0 20px 15px 0;
		border-style: solid;
		border-color: transparent;
		border-right-color: #c8baa7;
	}
	.sec5 ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 20px  16px  20px  35px;
	}
	.sec5 li {
		display: block;
		width: 300px;
		height: 30px;
		text-align: center;
	}
	.sec5 li:first-child {
		color: #fffffb;
		margin:1.4em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #378640;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 li:nth-child(2) {
		color: #fffffb;
		margin:1.4em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #0072ba;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 li:nth-child(3) {
		color: #fffffb;
		margin:1.4em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #ff7e1c;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 li:last-child {
		color: #fffffb;
		margin:1.4em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #f62e36;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 a {
		color: #ffffff;
		text-decoration: none;
	}
/* ページトップに戻るボタン */
	#pagetop {
		display:inline-block;
		position:fixed;
		bottom:0;
		right:0;
	}


	#pagetop a {
		font-size: 6px;
		padding: 4px 4px;
		display:block;
		background:#008b8b;
		color:#fff;
		text-align:center;
	}
	footer {
		position: relative;
		width: 100%;
		height: 120px;
		background-color: #f4e9e3;
	}
	footer ul {
		display:flex;
		flex-wrap: wrap;
		list-style: none;
		padding-left: 0;
		text-align:center;
	}
	footer li {
		font-size: 14px;
		xdisplay: inline-block;
		width:150px;
		margin: 10px 8px;
	}
	footer ul a {
		text-decoration: none;
	}
	small {
		text-decoration: overline;
		text-decoration-color: white;
		text-decoration-thickness: 3px;
		position: absolute;
		font-size: 14px;
		bottom: 0;
		left: 40%;
		transform: translateX(-30%);
	}

}

/* PC＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (min-width: 769px){
  body,main {
		width: 100%;
	}
	header {
    width: 1260px;
		padding-top: 20px;
		margin: 0 auto;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
  h1 {
		/* position: absolute;
		top: 20px;
		left: 100px; */
		order: 1;
	}
	.hamburger {
		display: none;
	}
	ul.utility {
		width: 600px;
		height: 46px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		/* position: absolute;
		top: 50px;
		right: 100px; */
		order: 2;
	}
	.utility li {
		width: 290px;
		height: 46px;
	}
	nav{
		width: 100%;
		order:3;
	}
	nav ul {
		height: 70px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		background-color: #68b7a1;
	}
	nav li {
		box-sizing: border-box;
		width: 200px;
		height: 70px;
		text-align: center;
		padding-top: 20px;
	}
	nav li:hover {
		background-color: #00a096;
	}
	nav a {
		font-weight: bold;
		color: white;
		text-decoration: none;
	}

	.sec1 h2 {
		font-size: 100px;
		font-family: "Yu Gothic";
		color: rgb(59, 91, 131);
		font-weight: bold;
		line-height: 1.2;
		position: absolute;
		left: 150px;
		top: ;
		z-index: 43;
	  background-color: rgba(255,255,255,0.3);
	}
	.sec1 span {
		 font-size: 70px;
	  font-family: "Optima-Thin";
	  color: rgb(0, 0, 0);
	  line-height: 0.267;
	  z-index: 59;
	}
	 .sec1 h3 {
		position: absolute;
		font-size: 32px;
		font-weight: bold;
		text-align: center;
		margin: 20px	0	20px 100px;
	}
	.sec1 p {
		padding: 100px  100px  20px  100px;
		font-size: 20px;
		line-height: 2em;
		text-align: left;
	}

	.sec1 a {
		border: 1px solid #ccc;
		background: #f1e767;
		background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
		background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
		background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
		-webkit-box-shadow: inset 1px 1px 1px #fff;
		box-shadow: inset 1px 1px 1px #fff;
	}

	.sec1 p:hover {
		background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
		background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
		background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
	}
	.sec2 figure {
 	 margin: 40px 40px;
	 text-align: center;
  }

  .sec2 h2 {
 	 position: relative;
 	 font-size: 36px;
 	 font-weight: bold;
 	 margin:60px 100px 40px 100px;
 	 color: #fffffb;
 	 padding: 0.3em 0 0.3em 0.5em;
 	 background-color: #68b7a1;
  }
  .sec2 h2::after {
 	 position: absolute;
 	 content: '';
 	 top: 100%;
 	 left: 0;
 	 border-width: 0 20px 15px 0;
 	 border-style: solid;
 	 border-color: transparent;
 	 border-right-color: #c8baa7;
  }
	.sec2 h3 {
	 position: absolute;
	 font-size: 32px;
	 font-weight: bold;
	 text-align: center;
	 margin: 20px	0	20px 100px;
	}
	.sec2 p {
	 padding: 100px  100px  20px  100px;
	 font-size: 20px;
	 line-height: 2em;
	 text-align: left;
	}

	.sec2 a {
	 border: 1px solid #ccc;
	 background: #f1e767;
	 background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
	 background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
	 background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
	 -webkit-box-shadow: inset 1px 1px 1px #fff;
	 box-shadow: inset 1px 1px 1px #fff;
	}

	.sec2 p:hover {
	 background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
	 background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
	 background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
	}
	.sec3 h2 {
	 position: relative;
	 font-size: 36px;
	 font-weight: bold;
	 margin:60px 100px 40px 100px;
	 color: #fffffb;
	 padding: 0.3em 0 0.3em 0.5em;
	 background-color: #68b7a1;
	}
	.sec3 h2::after {
	 position: absolute;
	 content: '';
	 top: 100%;
	 left: 0;
	 border-width: 0 20px 15px 0;
	 border-style: solid;
	 border-color: transparent;
	 border-right-color: #c8baa7;
	}
	.sec3 h3 {
	 position: absolute;
	 font-size: 32px;
	 font-weight: bold;
	 text-align: center;
	 margin: 20px	0	20px 100px;
	}
	.sec3 p {
	 padding: 150px  100px  20px  100px;
	 font-size: 20px;
	 line-height: 2em;
	 text-align: left;
	}

	.sec3 a {
	 border: 1px solid #ccc;
	 background: #f1e767;
	 background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
	 background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
	 background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
	 -webkit-box-shadow: inset 1px 1px 1px #fff;
	 box-shadow: inset 1px 1px 1px #fff;
	}

	.sec3 p:hover {
	 background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
	 background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
	 background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
	}
	article {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		xalign-content: flex-start;
		margin-bottom: 40px;

	}

	.sec4 h2 {
		position: relative;
		font-size: 30px;
		font-weight: bold;
		margin:1.4em 800px 1.4em 100px;
		color: #fffffb;
		padding: 0.3em 0 0.3em 0.5em;
		background-color: #68b7a1;
		margin-bottom: 40px;
	}
	.sec4 h2::after {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border-width: 0 20px 15px 0;
		border-style: solid;
		border-color: transparent;
		border-right-color: #c8baa7;
	}
	.sec4 div {
		padding: 30px 850px  30px  120px;
		font-size: 20px;
		line-height: 2em;
	}
	.sec4 time {
		font-weight: bold;
	}
	.sec5 {
		width: 50%;
		position: absolute;
	  left: 750px;
	}
	.sec5 h2 {
		width: 300px;
		position: relative;
		font-size: 30px;
		font-weight: bold;
		margin:1.4em 1px 1.4em 70px;
		color: #fffffb;
		padding: 0.3em 10em 0.3em 0.5em;
		background-color: #68b7a1;
		margin-bottom: 40px;
	}
	.sec5 h2::after {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border-width: 0 20px 15px 0;
		border-style: solid;
		border-color: transparent;
		border-right-color: #c8baa7;
	}
	.sec5 ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 20px  16px  20px  200px;
	}
	.sec5 li {
		display: block;
		width: 400px;
		height: 30px;
		text-align: center;
	}
	.sec5 li:first-child {
		color: #fffffb;
		margin:3em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #378640;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 li:nth-child(2) {
		color: #fffffb;
		margin:3em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #0072ba;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 li:nth-child(3) {
		color: #fffffb;
		margin:3em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #ff7e1c;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 li:last-child {
		color: #fffffb;
		margin:3em 0;
		padding: 0.3em 0 0.3em 0.5em;
		border-radius: 15px;
		background: #f62e36;
		box-shadow: 0 5px 3px #c8baa7;
	}
	.sec5 a {
		color: #ffffff;
		text-decoration: none;
	}


	/* ページトップに戻るボタン */
		#pagetop {
			display:inline-block;
			position:fixed;
			bottom:0;
			right:0;
		}


		#pagetop a {
			padding:10px 10px;
			display:block;
			background:#008b8b;
			color:#fff;
			text-align:center;
		}
		footer {
			position: relative;
			width: 100%;
			height: 100px;
			background-color: #f4e9e3
		}
		footer ul {
			display:flex;
			flex-wrap: wrap;
			list-style: none;
			padding-left: 0;
			text-align:center;
		}
		footer li {
			font-size: 16px;
			xdisplay: inline-block;
			width:150px;
			margin: 0 auto;
			margin-top: 20px;
			margin-bottom: 15px;
		}
		footer ul a {
			text-decoration: none;
		}
		small {
			text-decoration: overline;
			text-decoration-color: white;
			text-decoration-thickness: 3px;
			position: absolute;
			font-size: 14px;
			bottom: 15px;
			left: 47%;
			transform: translateX(-30%);
		}






}
