@charset "utf-8";
/* CSS Document */

/* 
ナビゲーション: #;
フォントベースカラー: #;
ベースカラー:#304c95
アクセントカラー：#72a9dc;
*/

/* =====================================================
    Reset CSS 
======================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
	font-weight: normal;
	font-style: normal;
  vertical-align:baseline;
  background:transparent;
  box-sizing: border-box;
}
body {
  line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,menu,nav,section { 
  display:block;
}
nav ul,ul {
  list-style:none;
}
blockquote, q {
  quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
  font-weight:bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
hr {
  display:block;
  height:1px;
  border:0; 
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}
input, select {
  vertical-align:middle;
}
/* iphone ボタン角丸なし */
* {-webkit-appearance: none;}

input[type="submit"] {
-webkit-appearance: none !important;
border-radius: 0 ;
}

/* =====================================================
    基本設定
======================================================== */
html {
  font-size: 62.5%;   /* 個別に指定するならこちらで　10px */ 
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  overflow-x: hidden;
  text-align: center;
  /* scroll-behavior: smooth;JS設定時は不要 */
}
body {
	width: 100%;
	margin: 0 auto;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
	line-height: 1.6;
}
/* フェードインアニメーション */
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
/* フェードインアニメーションここまで */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;/*画像同士の隙間防止*/
}
a img {
  border: none;
}
small {
	text-align: center;
	font-size: 1.2rem;
	font-style: normal;
}
/* リンク----------------------------- */
a {
  color: #304c95;
  -webkit-backface-visibility: hidden; /* ブレ防止追加 */
          backface-visibility: hidden; /* ブレ防止追加 */
  transition: all 0.4s ease-in-out;
}
a:link {
  text-decoration: none;
  /*text-decoration: underline;*/
}
a:visited {
  text-decoration: none;
  /*text-decoration: underline;*/
}
a:active {
  text-decoration: none;
}
/* =====================================================
  ・ 共通クラス
======================================================== */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.spNone {
  display: none!important;
}
.pcNone {
  display: block!important;
}
.onlySp {
  display: block!important;
}
.onlyPc {
  display: none!important;
}
.boxRerative {
  position: relative;
}
.box-center {
  /*上下左右真ん中*/
  top: 50%;
	left: 50%;
  -webkit-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.box-H_center {
	/*左右真ん中*/
	left: 50%;
  -webkit-transform: translate(-50%,0%);
          transform: translate(-50%,0%);
}
.arrow-r {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 16px;
}
.arrow-r::before,
.arrow-r::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow-r::after {
  left: 3px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #7a0;
  border-right: 2px solid #7a0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.scroll-prevent {
  /*動き固定*/
  position: fixed;
  /*奥行きを管理*/
  z-index: -1;
  /*下2つで背景を元のサイズのまま表示することができる*/
  width: 100%;
  height: 100%;
}
.boxFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.boxLeft {
	float: left;
}
.boxRight {
	float: right;
}
.btn a {
	display: block;
	width: 100%;
	max-width: 325px;
	height: 60px;
	margin: 25px auto;
	border: 1px solid #304c95;
	border-radius: 3px;
	color: #304c95;
	line-height: 60px;
	font-weight: bold;
}
.bold {
	font-weight: bold;
}
.underLine {
	/*border-bottom: 1px solid #344B99;*/
	text-decoration: underline;
}
.Ltext {
	font-size: 120%;
}
/* =====================================================
  ・ 共通フレーム
======================================================== */
.section,
section {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.secInner,
.boxInner {
  width: 87.4%;/* 両サイドの隙間を6.8%で想定 */
  margin: 0 auto;
}

.gmap {
	width: 90%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin: 0 auto 30px;
}
.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* =====================================================
  ・ header (SP)
======================================================== */
header {
	padding-bottom: 50px;
}
header .boxheader {
	margin: 7px auto 0;
}
header h1 {
	width: 96%;
	max-width: 360px;
	margin: 0 auto 25px;
}
header h1 img {
	max-width: none;
	width: 100%;
}
header h2 {
	margin-bottom: 14px;
	font-size: 2.0rem;
	color: #304c95;
	text-align: center;
	font-weight: bold;
	line-height: 1em;
}
header h3 {
	margin-bottom: 15px;
	font-size: 3.0rem;
	color: #304c95;
	text-align: center;
	font-weight: bold;
	line-height: 1em;
}
/* =====================================================
  ・ #secHeading (SP)
======================================================== */
#secHeading .boxHeading {
	background: rgba(48,76,149,.2);
	padding-top: 24px;
	padding-bottom: 24px;
	margin-bottom: 50px;
}
#secHeading .boxHeading p {
	text-align: justify;
}
#secHeading>.secInner {
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: justify;
}
/* =====================================================
  ・ #sec-merit (SP)
======================================================== */
#sec-merit {
	padding-bottom: 50px;
}
#sec-merit h2 {
	width: 100%;
	height: 40px;
	margin-bottom: 15px;
	background: #304c95;
	border-radius: 3px;
	font-size: 2.0rem;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 40px;
}

#sec-merit h3 {
	text-align: left;
	font-size: 1.6rem;
	font-weight: bold;
}
#sec-merit p {
	padding-left: 1em;
	margin-bottom: 50px;
	text-align: left;
	font-size: 1.6rem;
	font-weight: bold;
}
#sec-merit p a {
	color: inherit;
	cursor: default;
}
#sec-merit ul {
	width: 96%;
	margin: 0 auto 50px;
	text-align: justify;
}
#sec-merit ul li {
	background: url("../images/liststyle.png") no-repeat;
	background-size: 6px;
	background-position: left .5em;
	padding-left: .5em;
	margin-bottom: .5em;
}
#sec-merit img {
	margin-bottom: 50px;
}
/* =====================================================
  ・ ページトップへ(SP)
======================================================== */
#page-top {
  position: fixed;
  bottom: 40px;
  right: 4%;
  z-index: 100;
}
#page-top a {
  display: block;
  z-index: 999;
  padding: 0;
  width: 80px;
  height: 80px;
}

/*================================
  ▼ブレイクポイントのルール▼
  -スマホを基本設計にする-
  *〜479px：SP縦
  *480px〜：SP横
  *600px〜タブレット
  *960px〜小型PC
  *1280px〜大型PC
================================*/

/* --------------mobaile_fast--------------------- */
@media screen and (min-width:480px) { 
	/*　for iPhone (iPhone 横)　*/
}
@media screen and (min-width:600px) {
	/*　for iPad 　*/
  /* =====================================================
    ・ 共通クラス
  ======================================================== */
  .spNone {
    display: block!important;
  }
  .onlySp {
    display: none!important;
  }
	.secInner,
  .boxInner {
    max-width: 660px;
  }
	.btn a {
		width: 80%;
		max-width: none;
		margin: 50px auto;
	}
	/* =====================================================
		・ header (min-width:600px)
	======================================================== */
	header .boxheader {
		max-width: 640px;
		margin: 14px auto 0;
	}
	header h1 {
		margin: 0 auto 50px;
	}
	header h3 {
		margin-bottom: 30px;
	}
	header p {
		margin-bottom: 24px;
	}
	/* =====================================================
		・ #secHeading (min-width:600px)
	======================================================== */
	#secHeading .boxHeading {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	#secHeading .boxHeading h2 {
		margin-bottom: 40px;
	}
	#secHeading .boxHeading p {
		max-width: 640px;
		margin: 0 auto 40px;
	}
	#secHeading .boxHeading p.bottomP {	
		margin-bottom: 0;
		font-size: 1.8rem;
		color: #304c95;
		text-align: center;
		font-weight: bold;
	}
	#secHeading>.secInner {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	#secHeading .boxLead {
		margin-bottom: 40px;
	}
	/* =====================================================
		・ #secDate (min-width:600px)
	======================================================== */
	#secDate .boxDate {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	/* =====================================================
		・ #sec-merit (min-width:600px)
	======================================================== */
	#sec-merit h2 {
		margin-bottom: 30px;
	}
	#sec-merit .boxPlace h4 {
		width: 90%;
	}
	#sec-merit .boxPlace {
		/*max-width: 460px;*/
		padding-top: 50px;
		margin: 0 auto 30px;
	}

}
@media screen and (min-width:768px) {
	/*　for iPad 　*/
}
@media screen and (min-width:960px) {
  /*　for PC　*/
  /* リンク----------------------------- */
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    opacity: 0.7;
  }
	.btn a:hover {
		background: #304c95;
		color: #fff;
	}
  /* =====================================================
    ・ 共通クラス
  ======================================================== */
  .pcNone {
    display: none!important;
  }
  .onlyPc {
    display: block!important;
  }
  /* =====================================================
    ・ 共通フレーム (min-width:960px)
  ======================================================== */

	/* =====================================================
		・ header (min-width:960px)
	======================================================== */
	header .boxheader {
		max-width: 960px;
	}
	header .boxImage {
		max-width: 960px;
		margin: 0 auto;
	}
  /* =====================================================
    ・ #secOther (min-width:960px)
  ======================================================== */
  #secOther p a:hover {
    text-decoration: underline;
  }
}
