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

html{
	font-size: 100%; 
}
body{
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}
ol,li{
	list-style: none;
	padding: .5rem 0;
}
ul{
	padding: 0;
	margin-bottom: 0;
}
dt,dd{
	margin-bottom: 2rem;
}
dd dl{
	margin-top: 2rem;
}
table{
	width: 100%;
	margin-bottom: 2rem;
}
thead th,
thead td{
	font-weight: 700;
}
tbody{
	border-top: rgba(0, 0, 0, .1) 1px solid;
}
tbody th{
	font-weight: 400;
}
th,
td{
	display: block;
	border-bottom: rgba(0, 0, 0, .1) 1px solid;
	vertical-align: top;
	padding: 1rem;
}

@media (min-width: 768px) {
	
	table{
		margin-bottom: 40px;
	}
	th,
	td{
		display: table-cell;
	}
}

img{
	width: 100%;
	height: auto;
}
a,
a:hover{
	color: #529988;
	transition: 1s;
}
a img {
	transition: 1s;
}
a img:hover {
	opacity: 0.5;
}

/*-------------------------------------
  common
-------------------------------------*/

.container{
	padding-right: 20px;
	padding-left: 20px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row{
	margin-right: -20px;
	margin-left: -20px;
}
.row > *{
	padding-right: 20px;
	padding-left: 20px;
}

@media (min-width: 1200px) {
	.row > *{
		padding-right: 0;
		padding-left: 0;
	}
}

.dtl-link{
	display: block;
	color: #529988;
	font-weight: 700;
	position: relative;
}
.dtl-link::after{
	content: '';
	width: 20px; 
	height: 20px;
	background: url("../images/arrow.svg") no-repeat right;
	position: absolute;
	bottom: 0;
	margin: 2.5px 5px;
}
.dtl-link a,
.dtl-link a:hover{
	color: #529988;
	text-decoration: none;
}

/*-------------------------------------
  header
-------------------------------------*/
header{
	position: relative;
}
#header_inner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}
.navbar.container{
	max-width: 100%;
	background: #fff;
	padding: 0;
}
.navbar-brand{
	width: 200px;
	margin-left: 20px;
	margin-bottom: 10px;
}
.navbar-toggler{
	display:block;
}
.navbar-light .navbar-toggler{
	border: none;
	outline: none;
}
.navbar-collapse{
	background: #DAE7D5;
	padding-bottom: 40px;
}
.navbar-nav .nav-item{
	padding: 10px 0;
	border-bottom: 1px solid #707070;
}
.navbar-light .navbar-nav .nav-link{
	color: #3B3B3B;
	font-weight: 700;
	margin-left: 20px;
	margin-right: 20px;
}
.navbar-light .nav-item .nav-link{
	background: url("../images/arrow.svg") no-repeat left;
	padding-left: 40px;
}
.nav-contact-tel img{
	display: block;
	width: 80%;
	max-width: 205px;
	margin: 20px auto;
}
.navbar-nav .nav-contact{
	background: #529988;
	border-radius: 20px;
	text-align: center;
	max-width: 294px;
	margin: 0 auto 20px;
}
.navbar-nav .nav-contact .nav-link{
	color: #fff;
	padding: 0;
}
.head_telno,
.head_contact{
	display: none;
}

@media (min-width: 960px) {
	.navbar-expand-lg .navbar-collapse{
		display: none!important;/* bootstrap-4.0.0 独自のブレイクポイント */
	}
}

@media (min-width: 992px) {
	header{
		border-bottom: #707070 1px solid;
	}
	.navbar-brand{
		width: 250px;
	}
	.fixed-top{
		position: static;
	}
	.navbar-expand-lg{
		justify-content: space-between;
	}
	.head_telno{
		display: block;
	}
	.head_telno img{
		width: 80%;
		max-width: 205px;
	}
	.head_contact{
		display: block;
		margin-top: 5px;
		margin-right: 20px;
	}
	.head_contact .nav-link{
		display: block;
		background: #529988;
		border-radius: 20px;
		text-align: center;
		width: 236px;
		color: #fff;
	}
}

@media (min-width: 1200px) {
	.navbar-brand{
		margin-left: 0;
	}
	.head_telno{
		width: 225px;
	}
	.head_telno img {
		width: 100%;
	}
	.head_contact{
		margin-top: 15px;
		margin-right: 0;
	}
}

/*-------------------------------------
  gnav
-------------------------------------*/
.gnav{
	display: none;
}

@media (min-width: 992px) {
	#gnav{
		border-bottom: #707070 1px solid;		
	}
	#gnav .container{
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.gnav{
		display: block;
		font-feature-settings: "palt" 1;
	}
	.gnav > .row{
		align-items: center;
	}
	.gnav li{
		text-align: center;
		border-left: #707070 1px solid;
		padding: 10px 0;
		min-height: 65px;
	}
	.gnav li:last-child{
		border-right: #707070 1px solid;
		font-size: .75rem;
		padding: 5px 0;
	}
	.gnav li a{
		color: #3B3B3B;
				text-decoration: none;
		font-weight: 700;
		transition: all 3s;
	}
	.gnav li .nav-link{
		background-image: url("../images/arrow.svg");
		background-repeat: no-repeat;
		background-position: 20px;
	}
	.gnav li:last-child .nav-link{
		padding-left: 10px;
	}
}

@media (min-width: 1200px) {
	.gnav li{
		min-height: 75px;
	}
	.gnav li:last-child{
		font-size: 1rem;
		padding: 0;
	}
	.gnav li a{
		padding: .75rem 0;
	}
}

@media (min-width: 1440px) {
		.gnav li .nav-link{
			background-position: 20px;
	}
}


/*-------------------------------------
  main
-------------------------------------*/

main{
	padding-top: 80px;
}

@media (min-width: 768px) {
	
	main{
		padding-top: 0;
	}
}

/*-------------------------------------
  footer
-------------------------------------*/
footer#footer{
	border-top: #707070 1px solid;
	padding-top: 30px;
	text-align: inherit;
	font-size: inherit;
}
footer#footer a,
footer#footer a:hover,
footer#footer a:visited{
	text-decoration: none!important;
}
.footer-upper{
	margin-bottom: 30px;
}
.footer-brand{
	margin-bottom: 30px;
}
.footer-brand img{
	width: 100%;
	max-width: 250px;
}
.footer-address{
	margin-bottom: 15px;
}
.footer-telno{
	margin-bottom: 30px;
}
.footer-telno img{
	width: 100%;
	max-width: 205px;
}
.footer-contact a{
	display: block;
	background: #529988;
	border-radius: 20px;
	text-align: center;
	color: #fff;
	padding: .5rem 1rem;
	max-width: 294px;
}
.footer-bottom{
	background: #F3F5F4;
	overflow: hidden;
	padding-top: 30px;
}
.footer-bottom ul li{
	padding: 0;
}
.footer-bottom ul li .nav-link{
	display: block;
	color: #3B3B3B;
	padding: 0.25rem 1rem;
}
.footer-link-ttl{
	margin: 30px 0 10px;
	font-weight: 700;
}
.footer-request > div{
	margin-top: 30px;
	margin-bottom: 10px;
}
.footer-request a{
	color: #3B3B3B;
	font-weight: 700;
}
footer .copy{
	font-size: .75rem;
	margin: 50px 0 20px;
	text-align: center;
}

@media (min-width: 768px) {
	footer{
		padding-top: 60px;
	}
	.footer-upper .row{
		justify-content: space-between;
	}
	.footer-telno{
		margin-top: 20px;
	}
	.footer-bottom{
		padding-top: 60px;
	}
	.footer-request > div{
		margin-top: 60px;
		margin-bottom: 10px;
	}
}

@media (min-width: 992px) {
	.footer-bottom ul li .nav-link{
		font-size: .75rem;
	}
	.footer-link-ttl:first-child{
		margin-top: 0;
	}
}

@media (min-width: 1200px) {
	.footer-brand,
	.footer-address,
	.footer-telno,
	.footer-contact{
		flex: 0 0 50%;
		max-width: 50%;
	}
	.footer-telno{
		margin-top: 0;
		padding-left: 50px;
	}
	.footer-contact{
		margin-top: 10px;
	}
	.footer-bottom ul li .nav-link{
		font-size: .9rem;
	}
	.footer-request{
		text-align: center;
	}
}

/* ページトップボタン */
.page-to-top{
	display: none;
}

@media (min-width: 992px) {
	.page-to-top{
		display: block;
		position: fixed;
		bottom: 20px;
		right: 20px;
	}
	.page-to-top a{
		display: block;
		width: 40px;
		height: 40px;
	}
}

/* 追従バナー */
.follow-banner{
	position: fixed;
	left: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	transition: opacity 2s ease;
	width: 100%;
	background: #F5CF40;
	padding: 10px 5px;
}
.follow-banner.show{
	opacity: 1;
	visibility: visible;
}
.follow-banner .d-flex > *{
	padding-left: 5px;
	padding-right: 5px;
}
.follow-banner a{
	display: block;
	background: #529988;
	text-align: center;
	padding: 10px 10px 10px 25px;
	color: #fff;
	font-weight: 700;
	position: relative;
}
.follow-banner a::before{
	content: '';
	position: absolute;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images/arrow-white.svg") no-repeat left;
	margin: 2.5px 20px;
}

@media screen and (min-width: 992px){
	.follow-banner.show{
		opacity: 0;
		visibility: hidden;
	}
}

/*-------------------------------------
  h1 h2 h3 h4 h5
-------------------------------------*/

h1{
	font-size: 36px;
	font-weight: 700;
}
h2{
	font-size: 26px;
	margin-top: 30px;
	margin-bottom: 25px;
	font-weight: 700;
}
h3{
	font-size: 18px;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 700;
}
h4{
	font-size: 16px;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 700;
}

/* センターライン見出し */
.centerline {
	position: relative;
	padding: 1.5rem;
	text-align: center;
	line-height: 1.8;
}
.centerline:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 30px);
	width: 60px;
	height: 5px;
	content: '';
	border-radius: 3px;
	background: #ffdd00;
}

/* 鉤括弧見出し */
.bracket {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	padding: 2em 2em;
	line-height: 1.8;
	text-align: center;
}
.bracket:before,
.bracket:after {
	position: absolute;
	content: '';
}
.bracket:after {
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	border-top: 4px solid #000;
	border-left: 4px solid #000;
}
.bracket:before {
	right: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-right: 4px solid #000;
	border-bottom: 4px solid #000;
}

/*吹き出し風見出し*/
.bubble {
	position: relative;
	padding: 1.5rem 2rem;
	border-bottom: 3px solid #000;
	border-left: 3px solid #000;
	border-radius: 0 0 0 20px;
	line-height: 1.8;
	text-align: left;
}
.bubble:before {
  position: absolute;
  right: 50px;
  bottom: -21px;
  width: 0;
  height: 0;
  content: '';
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}
.bubble:after {
  position: absolute;
  right: 54px;
  bottom: -14px;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 14px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.lead{
	font-size: 1.1rem;
}

@media (min-width: 768px) {
	.lead{
		font-size: 1.25rem;
	}
}

.font-large{
	font-size: 1.5em;
	line-height: 1.8;
	font-weight: 700;
}
.font-small{
	font-size: .8rem;
}
