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

/* -------------------------------------
Browser：IE11 over/
-------------------------------------
01: reset
02: common
03：template
-------------------------------------*/

/** ================================================================================
		01.Reset
================================================================================ **/
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,
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,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
dt,
th {
  font-weight: normal;
}
ul,
ol {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}
img {
  vertical-align: top;
  border: none;
}
b,
em,
i,
strong,
address {
  font-style: normal;
  font-weight: normal;
}
/*
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
*/

/** ================================================================================
		02.common
================================================================================ **/
@font-face {
  font-weight: normal;
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular_sub.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular_sub.woff") format("woff"),
    url("../fonts/NotoSansJP-Regular_sub.otf") format("opentype");
}
@font-face {
  font-weight: bold;
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold_sub.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold_sub.woff") format("woff"),
    url("../fonts/NotoSansJP-Bold_sub.otf") format("opentype");
}

body {
  min-width: 769px;
  color: #141414;
  font-size: 16px;
  font-family: NotoSansJP;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%; /*スマホの縦横向きで文字サイズが自動で変わるのを制御*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: #2957c6;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
}

/**PC電話ボタン無効**/
a[href^="tel"] {
  pointer-events: none;
}

.clearfix::after {
  /*IE9以降対応ならこちら*/
  content: "";
  display: table;
  clear: both;
}

/** ================================================================================
		03.template
================================================================================ **/
.sp {
  display: none;
}
article {
  margin-top: 180px;
  width: 100%;
}
section {
  width: 980px;
  margin: 70px auto;
}
section.bg {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  background: #ecf5fa;
}
aside {
  width: 100%;
  margin: 0 auto;
}
h2 {
  margin: 0 auto 40px;
  font-size: 34px;
  color: #2957c6;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
section > * + h2 {
  margin-top: 80px;
}
h2 span {
  display: block;
  font-size: 28px;
}
h2 + .sub {
  margin: -36px auto 40px;
  font-size: 14px;
  text-align: center;
}
h3 {
  margin: 50px auto 20px;
  font-size: 24px;
  color: #2957c6;
  text-align: center;
}
h3 + p {
  font-size: 18px;
}
figure img {
  width: 100%;
}
figcaption {
  line-height: 1.4;
}
figcaption.cap {
  margin-top: 6px;
  text-align: center;
}
figcaption.cap strong {
  display: block;
  font-size: 18px;
  font-weight: bold;
}
.w980 {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.ctr {
  text-align: center;
}
time {
  color: #2957c6;
}
.kome {
  font-size: 14px;
}

/**　ロゴ
-----------------------**/
h1.logo {
  font-weight: bold;
  width: 500px;
}
h1.logo a {
  display: inline-block;
  width: 100%;
}
h1.logo span {
  display: inline-block;
}
h1.logo span em {
  display: block;
  font-weight: bold;
}

/**　btn
-----------------------**/
.btn {
  display: block;
  width: 334px;
  margin: 30px auto 0;
  text-align: center;
  line-height: 40px;
  color: #2957c6;
  font-weight: bold;
  background: #fff;
  border: 1px solid #2957c6;
  border-radius: 20px;
  position: relative;
}
.btn:hover {
  color: #fff;
  background: #2957c6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:not([href^="tel"])::after {
  font-family: FontAwesome;
  content: "\f105";
  font-size: 20px;
  color: #7895db;
  position: absolute;
  top: 0;
  right: 20px;
}
.btn:not([href^="tel"]):hover::after {
  color: #fff;
}

/**　pdf
-----------------------**/
.pdf {
  display: block;
  /* width:334px; */
  width: fit-content;
  min-width: 330px;
  margin: 20px auto 0;
  padding: 10px 5em 10px 3em;
  text-align: center;
  line-height: 1.5;
  color: #2957c6;
  font-weight: bold;
  background: #fff;
  border: 1px solid #2957c6;
  border-radius: 20px;
  position: relative;
}
.pdf:hover {
  color: #fff;
  background: #2957c6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pdf::after {
  font-family: FontAwesome;
  content: "\f15c";
  font-size: 24px;
  color: #2957c6;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
.pdf:not([href^="tel"]):hover::after {
  color: #fff;
}

/**　お知らせ
-----------------------**/
ul.newsList {
  border-top: 1px dotted #828282;
}
ul.newsList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 10px;
  border-bottom: 1px dotted #828282;
}
ul.newsList li time {
  width: 130px;
}
ul.newsList li .newsTxt {
  display: block;
  width: 800px;
}

/** pagination **/
ol.pagination {
  margin: 70px auto 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
ol.pagination li {
  margin: 4px;
}
ol.pagination li a {
  display: block;
  padding: 0 10px;
  line-height: 30px;
  color: #2957c6;
  background: #fff;
  border: 1px solid #2957c6;
}
ol.pagination li a:hover {
  color: #fff;
  background: #2957c6;
}
ol.pagination li.now {
  padding: 0 10px;
  line-height: 30px;
  color: #fff;
  background: #2957c6;
  border: 1px solid #2957c6;
}

ol.pagination li.prev a,
ol.pagination li.next a {
  width: 100px;
  border-radius: 15px;
}
ol.pagination li.prev {
  margin-right: 20px;
}
ol.pagination li.prev a:before {
  font-family: FontAwesome;
  content: "\f104";
  margin-right: 0.4em;
}
ol.pagination li.next {
  margin-left: 20px;
}
ol.pagination li.next a:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 0.4em;
}
ol.pagination li.prev:empty,
ol.pagination li.next:empty {
  visibility: hidden;
}

/**　ヘッダー
----------------**/
header {
  width: 100%;
  background: #2957c6;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
header .inner {
  width: 980px;
  height: 115px;

  margin: 0 auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .inner a {
  color: #fff;
}
header .inner h1.logo img {
  width: auto;
  height: 115px;
}
header .inner h1.logo span {
  padding: 36px 0 0 14px;
  font-size: 40px;
  line-height: 1.3;
}
header .inner h1.logo span em {
  font-size: 15px;
}
header .inner p {
  font-size: 14px;
  position: absolute;
  top: 10px;
  left: 142px;
}
header .inner dl {
  font-weight: bold;
  line-height: 1.4;
}
header .inner dl dt {
  font-weight: bold;
}
header .inner dl dd {
  font-size: 24px;
}
header .inner dl dd a {
  margin-left: 0.5em;
  font-size: 28px;
}

/** ヘッダーnav **/
header nav {
  padding: 10px 0;
  background: #fff;
}
header nav ul {
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #b3b3b3;
}
header nav ul li {
  width: 25%;
  height: 100%;
  font-size: 20px;
  line-height: 46px;
  border-right: 1px solid #b3b3b3;
}
header nav ul li.pc ~ li {
  display: none;
}
header nav ul li a {
  display: block;
  color: #464646;
}
header nav ul li a:hover,
#about header nav ul li:first-child a,
#info header nav ul li:nth-child(2) a,
#flow header nav ul li:nth-child(3) a {
  color: #2957c6;
}
header input,
header label,
header .toggleBox {
  display: none;
}

/**　フッター
-----------------------**/
/** contact **/
footer .contact {
  padding: 40px 0;
  color: #fff;
  background: #2957c6;
  text-align: center;
}
footer .contact h2 {
  color: #fff;
}
footer .contact > * {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
footer .contact a.btn.mailBtn {
  width: 700px;
  margin: 20px auto 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 60px;
  background: #e42275;
  border-radius: 30px;
}
footer .contact a.btn:hover {
  color: #e42275;
  background: #fff;
}
footer .contact a.btn::after {
  color: #fff;
}
footer .contact a.btn:hover::after {
  color: #e42275;
}

footer .contact p {
  font-size: 18px;
}
footer .contact p a.btn.telBtn {
  display: inline-block;
  margin-top: -30px;
  color: #141414;
  background: #fff;
}
footer .contact p a.btn.telBtn + a.btn.telBtn {
  margin-left: 32px;
}
footer .contact p a.btn.telBtn::after {
  display: none;
}

/** inner **/
footer .inner {
  width: 980px;
  margin: 26px auto 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .inner a {
  color: #141414;
}
footer .inner .footerInfo h1.logo img {
  width: 70px;
  height: auto;
}
footer .inner .footerInfo h1.logo span {
  padding: 4px 0 0 20px;
  font-size: 32px;
  line-height: 1.3;
}
footer .inner .footerInfo h1.logo span em {
  font-size: 14px;
}
footer .inner .footerInfo p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}

/** フッターnav **/
footer .inner ul.footerNav > li {
  font-weight: bold;
}
footer .inner ul.footerNav > li {
  margin-top: 0.4em;
}
footer .inner ul.footerNav:first-of-type > li + li {
  margin-top: 1.2em;
}
footer .inner ul.footerNav li a {
  display: block;
}
footer .inner ul.footerNav li a:hover {
  text-decoration: underline;
}
footer .inner ul.footerNav:first-of-type li ol {
  display: inline-block;
  margin: 0 0.5em 0 10px;
  vertical-align: top;
}
footer .inner ul.footerNav:first-of-type li ol li {
  margin: 2px 0;
  font-size: 14px;
  font-weight: normal;
}
footer .inner ul.footerNav li ol li a::before {
  content: "-";
  margin-right: 0.4em;
}
footer input,
footer label,
footer .toggleBox {
  display: none;
}
footer p small {
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 44px;
  border-top: 1px solid #000;
}

/** pageTop **/
#pageTop {
  width: 50px;
  line-height: 50px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: rgba(102, 102, 102, 0.7);
  z-index: 99999;
  position: fixed;
  right: 10px;
  bottom: 20px;
}
#pageTop:hover {
  opacity: 0.7;
}

/*200326追加*/
footer .bnr {
  margin: -20px auto 30px;
}
