﻿@charset "utf-8";

/* 基本CSS */
ul,
div,
img {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}

/* 本文をメニューの高さ分下げる */


header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #FFF;
}



.ex_data {
  position: relative;
  max-width: 1400px;
}



#navi {
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;

}

#navi a {
	display: block;
	font-weight: bolod;
	text-decoration: none;
}

#navi a.last_one {
	display: block;
	padding: 0px 10px;
	color: #FFF;
	text-shadow: 1px 1px 1px #000;
	text-decoration: none;
}
#navi a.last_one:hover {
	color: #FFF;
	background-color: #19448e;
}


/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  line-height: 80px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
}

/* 上部メニュー */
.menu {
  float: right;
  margin-right: 0px;
}
.menu-parent {
  float: left;
  margin-right: 20px;
  line-height: 80px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  background-color: #FFF;
}
/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
	background-color:orange;
	margin: 0;
	padding: 0;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 1060px) {
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    padding: 0px 20px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
  #navi a {
    display: inline-block;
  }
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: -20px;
  width: auto;
  box-sizing: border-box;
  padding: 0px 20px;
  background-color: #FFF;
  border: 1px solid #FFF;
}
/* パソコン用 */
@media screen and (min-width: 1060px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 1060px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border-top: 1px solid #DDD;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 10px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  font-size: 15px;
  border-bottom: 1px solid #DDD;
  font-weight: bold;
  line-height: 50px;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 1060px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}


/* パンくず */
.Breadcrumb {
	margin-bottom: 30px;
	padding: 1em;
}
.Breadcrumb-ListGroup {
	display: flex;
	list-style-type: none;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
	text-decoration:none;
	color: #e83929;
	opacity: 0.8;
}
.Breadcrumb-ListGroup > * + * {
	margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
	content: "/";
	margin-left: 0.75em;
	margin-right: 0.75em;
}




/* フッターデザイン */


#footer {
  position: relative;
  bottom: 0;
  left: 0;
  max-width: 1400px;
  margin: 100px auto 0px;
  color: #000;
}
#footer .primary {
  margin-top: 40px;
  padding: 40px 20px;
  background: #FFF;
  border-top: 1px solid #333;
}
#footer .primary .flex {
  display: flex;
}
#footer .primary .flex .left{
  width: 30%;
}
#footer .primary .flex .right{
  display: flex;
  width: 70%;
  justify-content: flex-end;
}
#footer .secondary {
  display: flex;
  padding: 40px 0px;
  background: #FFF;
  border-top: 1px solid #333;
}

#footer .presec {
	max-width: 100%;
	margin: 0px auto 60px;
	padding: 0px;
	background: #FFF;
	text-align: center;
}
#footer .presec .btn_request_info a{
	width: 900px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.2s;
	margin-bottom: 26px;
	padding: 30px 0px 34px;
	background-color: #FFa500;
	color: #FFF;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	text-shadow: 1px 1px 1px #000;
	text-decoration: none;
}
#footer .presec .btn_request_info a:hover{
	border-radius: 100vh;
	background-color: #19448e;
	opacity: 1.0;
}
#footer .presec .btn_request_info a img{
	width: 43px;
}

@media screen and (max-width: 1060px) {
	#footer .primary {
		padding: 20px 20px;
		background: #FFF;
	}
	#footer .primary .flex {
		display: block;
	}
	#footer .primary .flex .left{
		width: 100%;
	}
	#footer .primary .flex .right{
		width: 100%;
		display: block;
	}
	#footer .secondary {
		display: block;
		padding: 20px 20px;
	}
	#footer .presec {
		display: block;
	}
	#footer .presec .btn_request_info a{
		width: 90%;
		padding: 20px 10px 23px;
		font-size: 22px;
	}
}




/* logo */

#footer .logo {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
}
#footer .logo img {
  width: 280px;
}
@media screen and (max-width: 1060px) {
  #footer .logo {
    font-size: 16px;
  }
}

/* address */

.address {
  margin: 10px 0 0;
  padding: 0;
  line-height: 1.5em;
}
.b_strong {
	font-weight:bold;
}

@media screen and (max-width: 1060px) {
  .address {
    font-size: 16px;
  }
}


/* navi */

.navi-section {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-left: 20px;
}
#footer .parent {
  margin: 0 0 16px 0;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}
#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi li {
  margin: 8px 0 0 0;
  padding: 0;
}
#footer .navi li:first-child {
  margin: 0;
}

@media screen and (max-width: 1060px) {
  .navi-section {
  display: block;
  width: 100%;
  margin: 40px 0 0;
}
#footer .parent {
  display: block;
  font-size: 16px;
  margin: 10px 0 10px;
}
  #footer .navi {
    font-size: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
  }
  #footer .navi li {
    border-top: 1px solid #444;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 16px;
  }
}

/* sns-navi */

#footer .sns-navi {
  margin: 20px 0 0;
  padding: 0;
}
#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}
#footer .sns-navi li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1060px) {
  #footer .sns-navi {
    margin: 20px 0 0;
    padding: 0;
  }
  #footer .sns-navi li {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 18px;
  }
}

/* sitenavi */

#footer .sitenavi {
  width: 75%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .sitenavi li {
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0;
  line-height: 1.6em;
}
#footer .sitenavi li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1060px) {
  #footer .sitenavi {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}

/* copyright */

#footer .copyright {
	width: 25%;
	margin: 0;
	padding: 0;
	text-align: right;
	font-size: 14px;

}
@media screen and (max-width: 1060px) {
  #footer .copyright {
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
  }
}


.tatehaba{
	padding-top: 8px;
}
.telsize{
	font-size: 2.3em;
	font-weight: 500;
}

body {
  margin: 0;
  padding: 0;
}



/*ボタン装飾*/

.button_de a {
	background: #eee;
	border: 1px solid #999;
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 150px auto 0;
	max-width: 800px;
	padding: 30px 50px;
	color: #222;
	transition: 0.3s ease-in-out;
	font-size: 1.7em;
	font-weight: 300;
	text-decoration: none;
}
.button_de a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 12px;
	height: 12px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
.button_de a:hover {
	background: #19448e;
	font-weight: 500;
	color: #FFF;
}
.button_de a:hover:after {
	right: 1.4rem;
}

@media screen and (max-width: 1060px) {
	.button_de a{
		width: 90%;
		padding: 20px 10px 23px;
		font-size: 22px;
	}
}
