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

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+New&display=swap');

body,
div,
dl,dt,dd,
ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,td {
	margin:0;
	padding:0;
}

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

fieldset,img {
   border:0;
}

address,
caption,
cite,
code,
dfn,
em,strong,
th,
var {
   font-style:normal;
   font-weight:normal;
}

ol,ul {
   list-style:none;
}

caption,th {
   text-align:left; 
}

h1,h2,h3,h4,h5,h6 {
   font-size:100%;
   font-weight:normal;
}

q:before,
q:after {
   content:'';
}

abbr,acronym {
   border:0;
}



* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 100%;
}
body {
	width: 100%;
	margin: 0 auto;
	font-size: 15px;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
	line-height: 1.8;
	background-color:#FFF;
	color: #040000;
	position: relative;
}
a {
  text-decoration: underline;
  color: #000;
}
a:hover {
  color:#1F6DB2;
}
h1, h2, h3, p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-weight:normal;
}
p {
  margin-bottom:16px;
}
img {
  border: 0;
}
table{
	margin: 1em 0 1.5em;
	}
table th {
	padding: 10px;
}
table td {
	padding: 10px;
}
hr{
	clear:both;
	text-decoration:none;
	border:none;
	border-bottom:1px solid #717071;
	margin-bottom:20px;
}

*[data-unlockdate] {
  display: none;
}

img {
	width:auto;
	max-width:100%;
	height:auto;
}
.container {
	margin: 0 auto 0 auto;
	padding: 70px 20px 0;
	max-width: 1100px;
}
.pc{display :none;}
.clr{
	clear:both;
}
@media only screen and (min-width: 768px) {
body {
	font-size: 15px;
}
.container {
	padding: 113px 0 0;
}
.pc{display :block;}
.sp{display:none;}
}




#header{
	width:100%;
	padding:10px 0 10px;
	position: fixed;
	top: 0px;
	z-index: 99;
	background-color: rgba(255,255,255,1);
}
#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 60px 0 10px;
	height:40px;
}
#header h1#logo{
	width:58%;
	padding:10px;
	text-align:center;
}
#header #navCont{
}
#header #th50{
	width:17%;
	padding:2%;
	line-height:0;
}
#header #th50 a:hover{
	opacity:0.6;
}

@media only screen and (min-width: 768px) {
#header{
	padding:0;
}
#header .container {
	justify-content: flex-start;
	padding: 0 10px;
	height:140px;
	max-width: none;
	min-width: 1280px;
}
#header h1#logo{
	width:22%;
}
#header #navCont{
	width:66%;
	padding-left:2%;
	border-right:1px solid #000;
}
#header #navCont #nav2{
	display: flex;
	justify-content: flex-end;
	align-items:flex-end;
}
#header #navCont #nav2 div{
	margin-right:10px;
}
#nav2 p{
	margin:0;
}
#nav2 p.htel {
  font-size:9px;
  line-height:1.1;
	margin:0 10px;
}
#nav2 p.htel span {
  font-size:24px;
}
#nav2 a{
  font-size:14px;
	margin:0 10px;
	text-decoration:none;
}
#nav2 a:hover{
	opacity:0.8;
}
#nav2 p.hml {
  font-size:9px;
	margin:0 10px;
}
#nav2 p.hml a{
	color:#FFF;
	background-color:#1F6DB2;
	border-radius:4px;
	padding:4px 10px;
	margin:0;
}
p.bt_contact a{
	color:#FFF;
	background-color:#DD5252;
	border-radius:4px;
	padding:8px 10px;
}
p.bt_mail a{
	color:#FFF;
	background-color:#37A861;
	border-radius:4px;
	padding:8px 10px;
}
div.bt_search{
	width:5%;
	text-align:center;
}
#header #th50{
	width:12%;
	padding:2%;
}


}

.open-btn{
	background:url("../images/common/search.png") no-repeat center center;/*虫眼鏡アイコンを背景に表示*/
	background-size: 30px 30px;
	height:30px;
	cursor: pointer;/*カーソルを指マークに*/
}

/*クリック後、JSでボタンに btnactive クラスが付与された後の見た目*/
.open-btn.btnactive{
	background:url("../images/common/close.png") no-repeat center center;/*閉じるアイコンを背景に表示*/
	background-size: 18px 18px;
}

/*========= 検索窓の設定 ===============*/

/*==検索窓背景のエリア*/

#search-wrap{
    position:absolute;/*絶対配置にして*/
	top:150px;
    right:20px;
	z-index: -1;/*最背面に設定*/
	opacity: 0;/*透過を0に*/
	width:0;/*横幅は0に*/
	transition: all 0.4s;/*transitionを使ってスムースに現れる*/
	border-radius: 5px;
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive{
	opacity: 1;/*不透明に変更*/
	z-index: 3;/*全面に出現*/
	width:280px;
	padding:20px;
	top:75px;
	background:#fff;
}

/*==検索窓*/
#search-wrap #searchform{
	display: none;/*検索窓は、はじめ非表示*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive #searchform{
	display: block;/*検索窓を表示*/
}

/*==検索フォームの設定*/

/*==テキスト入力とボタンinput共通設定*/
#search-wrap input{
	-webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
	outline: none;
	cursor: pointer;/*カーソルを指マークに*/
	color: #666;
}

/*テキスト入力input設定*/
 #search-wrap input[type="text"] {
	width: 100%;
	border: none;
	border-bottom:2px solid #ccc;
	transition: all 0.5s;
	letter-spacing: 0.05em;
    height:46px;
	padding: 10px;
}

/*テキスト入力inputにフォーカスされたら*/
 #search-wrap input[type="text"]:focus {
	background:#eee;/*背景色を付ける*/
}

/*ボタンinput設定*/
 #search-wrap input[type="submit"] {
	position: absolute;
    top:10px;
	right:30px;
	background:url("../images/common/search.png") no-repeat right;/*虫眼鏡アイコンを背景に表示*/
	background-size: 20px 20px;
	width:30px;
	height: 60px;
	border:none;
}

footer {
    letter-spacing: 0;
    padding: 0 0 50px;
    clear: both;
	background-color: #FFF;
	width:100%;
}
footer p {
	margin:0;
}
.ftLogo{
	margin:0 0 20px;
	width:70%;
}
.ftLinkBlock{
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	margin-top:20px;
	margin-bottom:20px;
}
.fLink{
	width:100%;
	margin-bottom:16px;
}
.ftLinkBox{
	width:100%;
}
.ftLinkBox p{
	margin-bottom:20px;
}
.ftLinkBox p a{
	padding:8px 0;
	border-bottom:1px solid #000;
	text-decoration:none;
}
.ftLinkBox ul li{
	margin-bottom:8px;
}
.ftLinkBox ul li{
	padding:0px 0 0px 20px;
	background: #FFF url(../images/common/ic.png) no-repeat top 7px left;
	background-size:13px;
}
.ftLinkBox ul li a{
	text-decoration:none;
}

p.add{
	font-size:10px;
	color:#FFF;
	background-color:#1F6DB2;
	text-align:center;
	margin-bottom:0;
	padding:4px;
}
p.bt_pt{
	position:fixed;
	right:10px;
	bottom:10px;
	margin-bottom:0;
	z-index:999;
}
p.bt_pt a{
	background-color: rgba(0,0,0,.5);
	display:block;
	width:50px;
	height:50px;
	text-align:center;
	border-radius:100px;
	display:flex;
	align-items:center;
	justify-content: center;
}
@media only screen and (min-width: 768px) {
  footer {
    padding: 0 0 110px;
	font-size:15px;
  }
footer .container {
	min-width: 1100px;
}
footer p {
	margin:0;
}
.ftLogo{
	margin:0 0 40px;
	width:30%;
}
.ftLinkBlock{
	margin-top:40px;
	margin-bottom:40px;
}
.ftLinkBox{
	width:20%;
}
p.bt_pt{
	right:20px;
	bottom:30px;
}

p.add{
	font-size:12px;
	padding:8px;
}
}
#ft_inq{
	background-color:#E5EFEE;
	padding-bottom:50px;
	text-align:center;
}
/*#ft_inq .container {
	max-width: 986px;
}*/

#ft_inq h2{
	font-size:20px;
	font-weight:bold;
	color:#000;
	text-align:center;
	margin-bottom:15px;
	padding-bottom:15px;
	border-bottom:1px solid #000;
}
#inqBlock p{
	margin:0 0 10px;
	line-height:1.6;
}
#inqBlock p.htel span {
  font-size:28px;
}
#inqBlock a{
	text-decoration:none;
}
#inqBlock a:hover{
	opacity:0.7;
}

#inqBlock p.hml a{
	color:#FFF;
  font-size:20px;
	background-color:#1F6DB2;
	border-radius:10px;
	padding:4px 10px;
	margin:0 auto 20px;
	width:80%;
	display:block;
	text-align:center;
	text-decoration:none;
}
#inqBlock p.bt_contact{
	margin-bottom:20px;
}
#inqBlock p.bt_contact a{
	color:#FFF;
  font-size:20px;
	background-color:#DD5252;
	border-radius:10px;
	padding:20px 16px;
	margin:0 auto;
	width:80%;
	display:block;
	text-align:center;
	text-decoration:none;
}
#inqBlock p.bt_mail{
	margin-bottom:20px;
}
#inqBlock p.bt_mail a{
	color:#FFF;
  font-size:20px;
	background-color:#37A861;
	border-radius:10px;
	padding:20px 16px;
	margin:0 auto;
	width:80%;
	display:block;
	text-align:center;
	text-decoration:none;
}
@media only screen and (min-width: 768px) {
#ft_inq{
	padding-bottom:110px;
	text-align:left;
}
#ft_inq .container {
	min-width: 1100px;
}

#ft_inq h2{
	font-size:28px;
 }
#inqBlock{
	display: flex;
	justify-content: center;
	align-items:flex-end;
}
#inqBlock p{
	margin-bottom:0;
	margin-right:10px;
}
#inqBlock p.htel {
  font-size:13px;
  line-height:1.1;
	margin:0 10px;
}
#inqBlock p.htel span {
  font-size:30px;
}
#inqBlock a{
  font-size:14px;
	margin:0 10px;
}
#inqBlock p.hml {
  font-size:13px;
	margin:0 10px;
}
#inqBlock p.hml a{
  font-size:20px;
	width:100%;
	margin:0 auto 0;
}
#inqBlock p.bt_contact{
	margin-bottom:0px;
	margin-left:10px;
}
#inqBlock p.bt_contact a{
  font-size:20px;
	margin-bottom:0px;
	width:100%;
}
#inqBlock p.bt_mail{
	margin-bottom:0px;
	margin-left:10px;
}
#inqBlock p.bt_mail a{
  font-size:20px;
	margin-bottom:0px;
	width:100%;
}
}


@media only screen and ( max-width : 767px ) {
#header #navCont #nav2{
	display: none;
}
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s;
    background: rgba(255,255,255,.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    transition: all .5s;
    min-height: 100vh;
  }
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 7px;
    right: 15px;
    transition: .3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color:#FFF;
  }
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1F6DB2;
    transition: all .5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    width: 70%;
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 60px 30px;
    background-color: #FFF;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(100%);
    transition: all .0s;
	text-align:center;
	
  }
  #nav.open {
    transform: translateZ(0);
     transition: all .5s;
 }
  #nav ul {
    padding: 0 0 30px;
  }
  #nav li {
    padding: 10px 20px;
  }
  #nav li a {
    position: relative;
	font-weight:bold;
    font-size: 16px;
    color: #000;
  }
  #nav .menu-item-has-children .sub-menu {
    padding: 20px;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color: #dad4ec;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
#nav ul{
	width:100%;
	margin:0 auto;
	display: flex !important;
	align-items:center;
	justify-content: end;
}

#nav li {
  margin: 0;
  line-height:1.1;
	text-align: center;
}

#nav a {
  color: #000;
  text-decoration: none;
  font-size:15px;
	display:block;
	padding:15px;
	font-weight:bold;
	position: relative;
}
#nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1F6DB2;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
#nav a:hover::after {
  transform: scale(1, 1);
}
#nav a:hover {
  color: #1F6DB2;
}
/*#nav li a:hover,#nav li a.act {
	background:#0099CC;
  color: #FFF;
}*/
}

.bt{
	text-align:center;
}
.bt a{
    display: block;
    position: relative;
	background-color:#1F6DB2;
	border-radius:10px;
	color:#FFF;
	padding:1.3rem 0;
	margin:0 auto;
	text-decoration:none;
	font-weight:bold;
}
.bt a:hover{
	opacity:0.5;
}
.bt a::after {
    content: '';
    position: absolute;
    top: 44%;
    right: 13px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
.bt a{
    width:430px;
}
}


.bt_pdf{
	text-align:center;
}
.bt_pdf a{
    display: block;
    position: relative;
	background: #1F6DB2 url(../images/common/ic_pdf.png) no-repeat center right 20px;
	background-size:47px;
	border-radius:10px;
	color:#FFF;
	padding:1.3rem 0;
	margin:0 auto;
	text-decoration:none;
	font-weight:bold;
}
.bt_pdf a:hover{
	opacity:0.7;
}
@media only screen and (min-width: 768px) {
.bt_pdf a{
    width:430px;
}
}

.bt a[target="_blank"]{
    display: block;
    position: relative;
	background: #1F6DB2 url(../images/common/ic_window.png) no-repeat center right 20px;
	background-size:25px;
	border-radius:10px;
	color:#FFF;
	padding:1.3rem 0;
	margin:0 auto;
	text-decoration:none;
	font-weight:bold;
}
.bt a[target="_blank"]:hover{
	opacity:0.7;
}
.bt a[target="_blank"]::after {
    border-top: none;
    border-right: none;
}

@media only screen and (min-width: 768px) {
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
 
.fdu{
    opacity: 0;
}
