@charset "utf-8";
/* setting
===========================*/
* {
	font-style: normal;
	box-sizing: border-box;
}

html {
	font-size: 6.25%;
	/* 1rem = 1px */
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15rem;
	color: #3C3839;
	line-height:1.6;
	min-width: 320px;
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
	display:-ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	background-color: #FFFFFFF;/* #F2F6F9 */
}

main {
	height: 100%;
}

#mainVisual, header, h2, h3, h4, dt,a[class^="btnDesign"],.btnList01 > li a {
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
}
#mainVisual, header, h2, h3, h4, dt,a[class^="btnDesign"],.btnList012 > li a {
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 850px) {
	body {
		font-size: 13rem;
	}
}

ul {
	list-style:none;
	width: 100%;
}

form {
	position: relative;
}



/* a
===========================*/
a {
	text-decoration: none;
	display: inline-block;
}

a:link,
a:visited {
	color: #192037;
}

a:hover {
	text-decoration: none;
	/*color: #AC162C;*/
}

a:active {
	/*color: #AC162C;*/
}


/* table
===========================*/
table,
thead,
tbody,
tr,
th,
td {
	text-align: left;
	vertical-align: top;
}

table {
	width: 100%;
	border-collapse:collapse;
}

/* clearfix
================================== */
.cf:after { content: ""; clear: both; display: block; }


img {
	max-width: 100%;
	vertical-align: bottom;
}

#logo {
	width: 240px;
	height: auto;
	line-height:0;
}

#logo a {
	display: block;
	margin-top: 6px;
}

#nittsuGroupLogo {
	width: 180px;
}

header {
	display: flex;
	width: 100%;
	height: 80px;
	justify-content: space-between;
	background-color: #fff;
	padding: 0 48px;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5000;
}

#menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #3C3839;
}

#menu li {
	margin-right: 32px;
	font-weight: bold;
	padding-bottom: 4px;
	color: #3C3839;
}

#menu li:last-child {
	margin-right: 0;
}

#menu li.current {
	border-bottom: #65c5bb 2px solid;
}

#menu li a {
	color: #3C3839;
	letter-spacing: 0.1em;
}

#menu li.contact {
	margin-right: 20px;
}

#menu li.contact a {
	color: #fff;
	background-color: #65c5bb;
	padding: 8px 26px;
	border: 1px solid #65c5bb;
	transition: .4s;
}

#menu li.contact a:hover {
	color: #000000;
	background-color: #d1e7e6;
}

@media screen and (min-width: 1025px) {
	#menu li a:hover {
	opacity: 0.8;
}
}

@media screen and (max-width: 1279px) {
	#menu li {
		margin-right: 20px;
	}
	#menu li.contact a {
	padding: 10px 20px;
}
}

@media screen and (max-width: 1200px) {
	header {
		padding: 0 36px
	}
}

.spMenu {
	display: none;
}

@media screen and (max-width: 1024px) {
	header {
		height: 64px;
	}
	
	.spMenu {
		display: block;
		width: 40px;
		height: 40px;
	}
	
	nav {
		position: fixed;
		top: -100vh;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		transition: .7s;
		z-index: -1;
		opacity: 0;
	}
	
.active nav {
		display: block;
		top: 64px;
		opacity: 1;
	}
	
	#menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		align-content: center;
		justify-content: center;
		height: 100vh;
		margin-top: -64px;
		opacity: 0;
		transition: .7s;
		width: 60%;
		margin: -40px auto 0;	
	}
	
	.active #menu {
		opacity: 1;
	}
	
	#menu li {
	margin-right: 0;
	margin-bottom: 30px;
	font-size: 24rem;
	opacity: 0;
	transition: 1s;
	}
	
	#menu li a {
	padding: 16px 0;
	}
	
	.active #menu li {
	opacity: 1;
	}
	
	#menu li.current {
		border-bottom: none;
	}
	
	#menu li.contact a {
	color: #143250;
	background-color: transparent;
	padding: 10px 0;
	border: none;
}
	
	#menu li.contact a:hover {
		color: #143250;
	}
	
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 40px;
	border-radius: 50%;
}
.menu-trigger span {
  position: absolute;
  left: 4px;
  width: 32px;
  height: 2px;
  background-color: #08488A;
  border-radius: 1px;
}
.menu-trigger span:nth-of-type(1) {
  top: 10px;
}
.menu-trigger span:nth-of-type(2) {
  top: 19px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 10px;
}

.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-315deg);
  transform: translateY(7px) rotate(-315deg);
}
.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(315deg);
  transform: translateY(-11px) rotate(315deg);
}
}

@media screen and (max-width: 769px) {
header {
	height: 62px;
	padding: 0 18px
}
	
#logo {
	width: 180px;
}

#nittsuGroupLogo {
	width: 150px;
}

.active nav {
	top: 62px;
}

#menu li {
	margin-bottom: 0;
	font-size: 20rem;
	}
	
	#menu li a {
	padding: 10px 0;
	}
	
.menu-trigger {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.menu-trigger span {
  position: absolute;
  left: 4px;
  width: 32px;
  height: 2px;
  background-color: #08488A;
  border-radius: 1px;
}
.menu-trigger span:nth-of-type(1) {
  top: 10px;
}
.menu-trigger span:nth-of-type(2) {
  top: 19px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 10px;
}

.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-315deg);
  transform: translateY(7px) rotate(-315deg);
}
.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(315deg);
  transform: translateY(-11px) rotate(315deg);
}
}


main {
	margin-top: 80px;
}

@media screen and (max-width: 1024px) {
main {
	margin-top: 64px;
}
}

@media screen and (max-width: 769px) {
main {
	margin-top: 56px;
}
}

.breadcrumbList {
	display: flex;
	padding: 8px 48px;
	background-color: #F2F2F2;
}

.breadcrumbList li {
	margin-right: 32px;
	position: relative;
}

.breadcrumbList li:before {
	content: ">";
	position: absolute;
	top: 0;
	right: -20px;
}

.breadcrumbList li:last-child:before {
	display: none;
}

.breadcrumbList li a {
	border-bottom: 1px solid #464D56;
	line-height: 1;
}

@media screen and (max-width: 769px) {
.breadcrumbList {
	padding: 8px 24px;
}
}

/* pc main */
#mainVisual {
	width: 100%;
	height: 85vh;
	border: 30px solid #fff;
	position: relative;
	margin-top: -30px;
	margin-bottom: 30px;
}

.scrollDown {
	position: absolute;
	bottom: -50px;
	left: calc(50% - 30px);
	z-index: 1000;
	text-align: center;
	color: #3c3839;
	font-size: 16px;
}

.scrollDown span {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background-color: #000000;
	border-radius: 30px;
	position: relative;
}

.scrollDown span:before{
	content: "";
	position: absolute;
	top: 26px;
	left: 23px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#mainVisual:after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -70px;
	left: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 50vw 0 50vw;
	border-color: #ffffff transparent transparent transparent;
}

#slider{
width:100%;
height:100%;
vertical-align: middle;
overflow:visible;
z-index:-999;
position: relative;
}

#slider li {
	position: absolute;
}

#slider img {
	max-width: 100%;
	line-height: 100%;
	/*30秒かけてズームイン・アウトを永遠に繰り返す*/
	animation: animationZoom 20s ease-in-out 0s infinite normal;
}

.bx-viewport{
height: 100%!important;
}

/*拡大した画像のはみ出した部分を隠すためのクラス*/
.slidewrap{
	width:100%;
	height:100%!important;
	overflow: hidden;
	margin-top:30 auto 30;
}

/*イメージをズームさせるCSS3アニメーション*/
@keyframes animationZoom {
	0%{ transform:scale(1.4);}
	50%{ transform:scale(1.6);}        
}

#mainVisual .inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	/*background-color: rgba(70,168,225,0.6);*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.copy {
	background-color:rgba(255,255,255,0.85);
	padding: 40px 40px;
	font-size: 40rem;
	font-weight: bold;
	letter-spacing: 0.3em;
	line-height: 1.6;
	color: #6e7275;
	width: 800px;
}

.copy span {
	display: block;
	margin-top: 4px;
	font-size: 0.5em;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 1200px) {
#mainVisual {
	width: 100%;
	border: 24px solid #fff;
	position: relative;
	margin-bottom: 30px;
}

#mainVisual:after {
	bottom: 0px;
	left: -24px;
}
	
#slider img {
	max-width: 100%;
}
}

@media screen and (max-width: 1024px) {
#mainVisual {
	margin-top: -24px;
}
}

@media screen and (max-width: 769px) {
#mainVisual {
	border: 12px solid #fff;
}

#slider img {
	max-width: 100%;
}

}

@media screen and (max-width: 419px) {

#slider img {
	max-width: 100%;
}

}

@media screen and (max-width: 769px) {
.copy {
	font-size: 18rem;
	padding: 20px 16px;
	width: 80%;
	letter-spacing: 0.2em;
}

#mainVisual:after {
	bottom: 0px;
	left: -12px;
	border-width: 28px 50vw 0 28px;
}
	
.scrollDown {
	position: absolute;
	bottom: -40px;
	left: calc(50% - 20px);
	z-index: 1000;
	text-align: center;
	color: #3c3839;
	font-size: 13px;
}

.scrollDown span {
	width: 40px;
	height: 40px;
	border-radius: 20px;
}

.scrollDown span:before{
	top: 14px;
	left: 15px;
	width: 10px;
	height: 10px;
}

}

.mainVisual {
	height: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin-bottom: 0px;
}

.mainVisual > div {
	background-color: rgba(255,255,255,0.85);
	padding: 30px;
	width: 450px;
}

@media screen and (max-width: 769px) {
.mainVisual {
	height: 20px;	
}
.mainVisual > div {
	padding: 24px;
	width: 70%;
}
}

.ancList {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin-bottom: 70px;
	padding: 12px;
	background-color: #6e7275;
}

.ancList li {
	margin-right: 70px;
	position: relative;
}

.ancList li:last-child {
	margin-right: 0;
}

.ancList li:before {
	content: "";
	position: absolute;
	top: 10%;
	right: -30px;
	width: 1px;
	height: 80%;
	background-color: rgba(255,255,255,0.6);
}

.ancList li:last-child:before {
display: none;
}

.ancList li a {
	color: #fff;
	position: relative;
}

.ancList li a:before {
	content: "";
	position: absolute;
	top: 7px;
	left: -13px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

@media screen and (max-width: 769px) {
.ancList {
	margin-bottom: 40px;
	flex-wrap: wrap;
	padding: 0;
	justify-content: flex-start;
}

.ancList li{
	width: 50%;
	margin-right: 0;
}

.ancList li{
	border-bottom: 1px solid rgba(255,255,255,0.6);
}

.ancList li:nth-of-type(2n+1) {
	border-right: 1px solid rgba(255,255,255,0.6);
}

.ancList li:before {
	display: none;
}

.ancList li a {
	display: block;
	padding: 14px 14px 14px 20px;
}
.ancList li a:before {
top: 18px;
left: 8px;	
}
}


h2.h2Design01 {
	text-align: center;
	margin-bottom: 32px;
	color: #65c5bb;
}

h2.h2Design01 span {
	font-size: 32rem;
	color: #3c3839;
	position: relative;
	z-index: 100;
}

h2.h2Design01 span:before {
	position: absolute;
	top: 0;
	left: -15%;
	content: "";
	width: 130%;
	height: 46px;
}

h2.h2Design01 span:after {
	position: absolute;
	top: 3px;
	left: -13%;
	content: "";
	width: 130%;
	height: 46px;
}

h2.h2Design02 {
	text-align: center;
	margin-bottom: 16px;
	font-size: 30rem;
	color: #6e7275;
	line-height: 1.2;
}

h2.h2Design02 span {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15rem;
	color: #669BD1;
}

h3 {
	font-size: 24rem;
	margin-bottom: 32px;
}

h3.h3Design01 {
	text-align: center;
	color: #65c5bb;
}



h3.h3Design01 span {
	display: block;
	padding: 20px;
	font-size: 0.8em;
}

h3.h3Design02 {
	padding-left: 12px;
	border-left: 2px solid #143250;
	color: #143250;
}

h4 {
	font-size: 18rem;
	margin-bottom: 28px;
}

h4.h4Design01 {
	color: #143250;
}

@media screen and (max-width: 1024px) {
h2.h2Design01 span {
	font-size: 28rem;
}

h2.h2Design01 span:before {
	height: 40px;
}

h2.h2Design01 span:after {
	height: 40px;
}
	
h3 {
	font-size: 20rem;
	margin-bottom: 28px;
}

}

@media screen and (max-width: 769px) {
h2.h2Design01 {
	margin-bottom: 24px;
}

h2.h2Design01 span {
	font-size: 24rem;
}

h2.h2Design01 span:before {
	height: 36px;
}

h2.h2Design01 span:after {
	height: 36px;
}
h2.h2Design02 {
	font-size: 24rem;
}
h2.h2Design02 span{
	font-size: 14rem;
}
h3.h3Design01 {
	text-align: center;
	color: #65c5bb;
	margin: 30px;
}

	
h3 {
	font-size: 18rem;
	margin-bottom: 20px;
}
}

.contents {
	max-width: 1000px;
	margin: 0 auto 100px;
}

section {
	margin-bottom: 70px;
	max-width: 1000px;
    margin: 0 auto 100px;
}

#message.contents {
	margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
.contents {
	margin: 0 20px 40px;
}
}

.bgColor01 {
	background-color: #d1e7e6;
	padding: 80px 0 50px;
}

.bgColor02 {
	background-color: #ffffff;
	padding: 30px 70px;
	margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
.contents {
	margin: 0 20px 70px;
}
}

@media screen and (max-width: 769px) {
.bgColor01 {
	padding: 80px 0 40px;
}
	
.bgColor02 {
	padding: 20px;
	margin-bottom: 40px;
}
}

#company {
	position: relative;
	margin: 0 auto 70px;
	padding: 70px 0 60px;
	height: 100%; 
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	height: auto;
}

#company:before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://web-designs.jp/images/company_img01.jpg');
	z-index: 0;
}

#company .bgColor02 {
	position: relative;
	z-index: 100;
}

@media screen and (max-width: 1366px) {
#company {
	padding: 50px 0;
	background: none;
}
	
#company:after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
-webkit-transform: translate3d(0, 0, -1px);
transform: translate3d(0, 0, -1px);
width: 100%;
height: 100%;
background: url('/img/company_img01.jpg') center/cover no-repeat;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
z-index: -1000;
}

}

#service{
	position: relative;
}

#service:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;

}

.leadTxt {
	margin-bottom: 16px;
	font-size: 18rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 769px) {
	.leadTxt  {
	font-size: 15rem;
}
}

.txtLayout01 {
	width: 90%;
	line-height: 2;
	margin: 0 auto;
}

.txtCaution {
	font-size: 14rem;
	text-indent: -1em;
	padding-left: 1em;
}


.clm2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.clm2 > * {
	width: 48%;
}

.clm2 > .clmW30 {
	width: 30%!important;
}

.clm2 > .clmW40 {
	width: 40%!important;
}

.clm2 > .clmW55 {
	width: 55%!important;
}

.clm2 > .clmW65 {
	width: 65%!important;
}

@media screen and (max-width: 769px) {
	.clm2 {
	display: block;
}
	.clm2 > * {
		width: 100%;
	}
	
	
.clm2 > *:nth-of-type(2n+1) {
	margin-bottom: 20px;
}
	
	.clm2 > .clmW30,
	.clm2 > .clmW40,
	.clm2 > .clmW55,
	.clm2 > .clmW65 {
	width: 100%!important;
		    text-align: justify;
}
}

.clm2Design01 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.clm2Design01 > * {
	width: 48%;
	background-color: #fff;
}

@media screen and (max-width: 769px) {
	.clm2Design01 {
	flex-direction: column;
}
	
	.clm2Design01 > * {
	width: 100%;
	background-color: #fff;
	margin-bottom: 20px;
}
	.clm2Design01 > *:last-child {
		margin-bottom: 0;
	}	
}

.clm2Design01 .detailArea {
	margin: 24px;
}

.clm2Design02 {
	width: 100%;
	padding: 0 30px;
}

.clm2Design02 > li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.clm2Design02 > li > .imgArea {
	width: 45%;
}

.clm2Design02 > li > .detailArea {
	width: 51%;
	margin: 0;
}

@media screen and (max-width: 769px) {
.clm2Design02 {
	padding: 0 10px;
}
	
.clm2Design02 > li {
	display: block;
	margin-bottom: 40px;
}

.clm2Design02 > li > .imgArea {
	width: 100%;
	margin-bottom: 12px;
}

.clm2Design02 > li > .detailArea {
	width: 100%;
	margin: 0;
}
	
}

.clm2Design03 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.clm2Design03 > * {
	width: 48%;
}

.clm2Design03 .detailArea {
	display: flex;
	flex-direction: column;
	justify-content: space-between;	
}

@media screen and (max-width: 769px) {
.clm2Design03 {
	display: block;
}
	
.clm2Design03 > * {
	width: 100%;
	margin-bottom: 20px;
}
}

.clm2Design04 li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: #fff;
	margin-bottom: 24px;
}

.clm2Design04 li > * {
	width: 49%;
}

.clm2Design04 .detailArea {
	padding: 16px;
}

@media screen and (max-width: 769px) {
.clm2Design04 li > * {
	width: 100%;
}
}

.clm4Design01 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.clm4Design01 > li {
	width: 23%;
	margin-bottom: 16px;
}

.clm4Design01 > li p {
	margin-top: 8px;
}

@media screen and (max-width: 769px) {
.clm4Design01 > li {
	width: 48%;
}	
}


table {
	width: 100%;
	margin-bottom: 40px;
}

table th,
table td {
	padding: 12px;	
}

table th {
	width: 20%;
	font-size: 14rem;
	color: #143250;
}

table td {
	width: 80%;
}

.dlDesign01 dt {
	text-align: center;
	color: #65c5bb;
	font-size: 24rem;
	margin-bottom: 12px;
	font-weight: bold;
}

.dlDesign01 dt span {
	display: block;
	font-size: 18rem;
}

.tableDesign01 th,
.tableDesign01 td {
	border-bottom: 1px solid #a8bfc7;
	border-collapse: collapse;
}

.tableDesign01 th {
	vertical-align: middle;
	color: #65c5bb;
}

.bgColor02 .tableDesign01 th,
.bgColor02 .tableDesign01 td {
	border-bottom: 1px solid #a8bfc7;
	border-collapse: collapse;
}

.tableDesign02 {
	border: 1px solid #DEDEDE;
	border-collapse: collapse;
}

.tableDesign02 th {
	vertical-align: middle;
	border-bottom: 1px solid #DEDEDE;
	background-color: #65c5bb;
	color: #fff;
}

.tableDesign02 td {
	background-color: #fff;
	border-bottom: 1px solid #DEDEDE;
	border-collapse: collapse;
}

@media screen and (max-width: 769px) {
.tableDesign02 th {
	border-bottom: none;
}
}

.tableHistory th {
	position: relative;
	width: 26%;
}

.tableHistory td {
	position: relative;

}

.tableHistory th:before {
	content: "";
	position: absolute;
	top: 19px;
	right: 17px;
	width: 10px;
	height: 10px;
	background-color: #5289C1;
	border-radius: 5px;
}

.tableHistory th:after {
	content: "";
	top: 22px;
	right: 21px;
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #5289C1;
}

.tableHistory tr:last-child th {
	position: relative;
}

.tableHistory tr:last-child th:after{
	height: 70%;
	background: linear-gradient(to top,transparent 0,transparent 4px,#5289C1 5px,#5289C1 8px) repeat-y;
	background-size: 4px 10px
}

@media screen and (max-width: 1024px) {
table th, table td {
	width: 100%;
	display: block;
}

.bgColor02 .tableDesign01 th {
	border-bottom: none;
	padding: 16px 0 4px 0;
}

.tableDesign01 th {
	border-bottom: none;
	padding: 16px 0 4px 0;
}

.tableDesign01 tr:first-child th {
	padding-top: 0;
}
	
.tableDesign01 td {
	padding: 0 0 16px 0;
}

.tableHistory th {
	width: 100%;
	display: block;
	padding: 0 0 4px 16px;
}

.tableHistory td {
	width: 100%;
	display: block;
	padding: 0 0 16px 16px;
}

.tableHistory th:before {
	top: 5px;
	right: auto;
	left: 0;
	width: 8px;
	height: 8px;
}
	
.tableHistory th:after {
	top: 6px;
	right: auto;
	left: 3px;
	position: absolute;
	width: 2px;
	height: 320%;
	background-color: #5289C1;
}

.tableHistory tr:last-child th:after{
	height: 180%;
	background: linear-gradient(to top,transparent 0,transparent 4px,#5289C1 5px,#5289C1 8px) repeat-y;
	background-size: 4px 10px
}
}

.btnDesign01 {
	position: relative;
	display: block;
	text-align: center;
	width: 180px;
	margin: 24px auto 0;
	border: 1px solid #08488A;
	padding: 4px;
	color: #fff;
	font-size: 18rem;
	background-color: #fff;
	background-size: 200% auto;
	transition: all .4s ease 0s;
}

.btnDesign01:before {
	content: "";
	position: absolute;
	top: 14px;
	right: 14px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #08488A;
	border-right: 2px solid #08488A;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .4s ease 0s;
	color: #fff;
}

.btnDesign01:hover {
	background-color: #d1e7e6;
	color: #fff;
}
.btnDesign01:hover:before {
	right: 10px;
	border-color: #fff;
}

.clm2Design03 .detailArea .btnDesign01 {
	width: 100%;
}

.btnDesign02 {
	position: relative;
	display: inline-block;
	text-align: center;
	margin-top: 24px;
	border: 1px solid #65c5bb;
	padding: 4px 40px;
	color: #fff;
	font-size: 18rem;
	background-color: #65c5bb;
	background-size: 200% auto;
	transition: all .4s ease 0s;
}


.btnDesign02:hover {
	background-color: #d1e7e6;
	color: #fff;
}


.btnDesign03 {
	display: block;
	text-align: center;
	width: 400px;
	margin: 40px auto;
	padding: 12px;
	border: 2px solid #000000;
	background-color: #000000;
	color: #fff!important;
	font-size: 18rem;
	transition: .4s;
}

.btnDesign03:hover {
	background-color: #fff;
	color: #000000!important;
}

@media screen and (max-width: 769px) {
.btnDesign01 {
width: 100%;
}
	
.btnDesign02 {
width: 100%;
margin-top: 16px;
}

.btnDesign03 {
width: 100%;
margin-top: 20px;
font-size: 16rem;
}

}

.btnList01 {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}
.btnList012 {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

.btnList01 > li {
	color: #fff;
	background-color: #65c5bb;
	width: 800px;
}
.btnList012 > li {
	color: #fff;
	background-color: #ffffff;
	width: 800px;
}

.btnList01 > li:nth-of-type(2n+1) {
	background-color: #65c5bb;
	color: #fff;

}
.btnList012 > li:nth-of-type(2n+1) {
	background-color: #ffffff;
	color: #fff;

}

.btnList01 > li a {
	display: block;
	padding: 20px;
	color: #fff;
	font-size: 18rem;
	letter-spacing: 0.04em;
}
.btnList012 > li a {
	display: block;
	padding: 20px;
	color: #65c5bb;
	font-size: 18rem;
	letter-spacing: 0.04em;
}

.btnList01 > li a:hover {
	background-color: #d1e7e6;
	color: #65c5bb;
	transition: .4s;
}
.btnList012 > li a:hover {
	background-color: #d1e7e6;
	color: #65c5bb;
	transition: .4s;
}

.btnList01 > li:nth-of-type(2n) a {
	position: relative;
}
.btnList012 > li:nth-of-type(2n) a {
	position: relative;
}

.btnList01 > li:nth-of-type(2n) a:after {
	content: "";
	position: absolute;
	top: 29px;
	right: 18px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .4s ease 0s;
}
.btnList012 > li:nth-of-type(2n) a:after {
	content: "";
	position: absolute;
	top: 29px;
	right: 18px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .4s ease 0s;
}
.btnList01 > li:nth-of-type(2n) a:hover:after {
	right: 12px;
	border: 2px solid #65c5bb;
}
.btnList012 > li:nth-of-type(2n) a:hover:after {
	right: 12px;
	border: 2px solid #65c5bb;
}
.btnList01 > li:nth-of-type(2n+1) a {
	color: #fff;
}
.btnList012 > li:nth-of-type(2n+1) a {
	color: #65c5bb;
}

@media screen and (max-width: 1024px) {
	.btnList01 > li {
	width: 400px;
}
	.btnList012 > li {
	width: 400px;
}
}

@media screen and (max-width: 769px) {
	.btnList01 {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 12px 0;
	}
	.btnList012 {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 12px 0;
	}
	
	.btnList01 > li {
	width: 100%;
	text-align: center;
}
	.btnList012 > li {
	width: 100%;
	text-align: center;
}

	
	.btnList01 > li a {
	font-size: 16rem;
		padding: 10px;
}
.btnList012 > li a {
	font-size: 16rem;
		padding: 10px;
}
}

.txtBold {
	font-weight: bold;
}

.txtLink01 {
	display: inline-block;
	position: relative;
	marginl-left: -10px;
}

.txtLink01:before {
	content: "";
	position: absolute;
	top: 7px;
	right: -12px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all .4s ease 0s;
}

.txtLink01:hover {
	opacity: 0.8;
}
.txtLink01:hover:before {
	right: -16px;
}

.dlDesign02 dt {
	font-size: 24rem;
	font-weight: bold;
	margin-bottom: 16px;
	color: #143250;
}

.dlDesign03 {
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.dlDesign03 dt {
font-family: 'Noto Sans JP', sans-serif;
font-weight: 600;
margin-right: 16px;
}

.dlDesign03 dd {
	font-size: 36rem;
	font-weight: 500;
}

.dlDesign04 {
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.dlDesign04 dt {
font-weight: 600;
color: #3c3839;
font-size: 18rem;
font-weight: 500;
}

.dlDesign04 dd {
	font-size: 24rem;
}

@media screen and (max-width: 769px) {
.dlDesign02 dt {
	font-size: 18rem;
	margin-bottom: 8px;
}

.dlDesign03 {
	display: block;
	text-align: center;
}

	.dlDesign03 dt {
	margin-right: 0;
	}
	
	.dlDesign03 dd {
		font-size: 28rem;
	}

.dlDesign04 {
	display: block;
	text-align: center;
}

	.dlDesign04 dt {
	margin-right: 0;
	}
	
}

.facilityList {
	display: flex;
	justify-content: flex-start;
}

.facilityList li {
	width: 90px;
	height: 90px;
	margin-right: 12px;
	margin-top: 16px;
	border-radius: 3px;
	background-color: #00A99D;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.3;
	color: #fff;
	font-size: 14rem;
}

.facilityList li span {
	display: block;
	margin-bottom: 8px;
}

#mapCanvas {
	width: 100%;
	height: 300px;
	margin-bottom: 50px;
}

#mapCanvas dt {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 15rem;
}

#mapCanvas dd {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14rem;
}

.clm2Design03 #mapCanvas {
	width: 100%;
	height: 500px;
	margin-bottom: 0px;
}

@media screen and (max-width: 769px) {
.clm2Design03 #mapCanvas {
	height: 300px;
}
}

#contact {
	margin-top: 100px;
	background-color: #fff;
	padding: 70px 0 50px;
}

#contact h2.h2Design01 span {
	color: #3c3839;
}



#contact .h3Design01 {
	color: #3c3839;
}

#contact .contents {
	margin-bottom: 0!important;
	text-align: center;
	padding: 30px 0 40px;
	color: #4D4341;
	background-color: #FBF9F8;
}

#contact .contents dl {
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

@media screen and (max-width: 769px) {
#contact {
	margin-top: 70px;
	background-color: #fff;
	padding: 40px 0 20px;
}
	
#contact .contents {
	text-align: left;
	padding: 20px;
	color: #4D4341;
	background-color: #FBF9F8;
	margin: 10px;
}

#contact .contents dl {
	margin-bottom: 16px;
}

#contact p {
	margin-top: 16	px;
	text-align: center;
}

}

@media screen and (min-width: 770px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}
footer {
	padding: 0 40px 60px;
	background-color: #fff;
	text-align: right;
}

footer img {
	width: 200px;
}

small {
	display: block;
	margin-top: 4px;
	color: #A2A2A2;
}

.pagetop {
	content: "";
	display: block;
	position: fixed;
	bottom: 10px;
	right: 40px;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: 2px solid #000000;
	border-radius: 20px;
	z-index: 9999;
}

.pagetop span {
	position: relative;
}

.pagetop span:before {
	content: "";
	position: absolute;
	top: 14px;
	left: 12px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}



@media screen and (max-width: 769px) {
footer {
	padding: 0 20px 40px;
}

.pagetop {
	content: "";
	display: block;
	position: fixed;
	bottom: 10px;
	right: 20px;
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: 2px solid #000000;
	border-radius: 20px;
}

.pagetop span {
	position: relative;
}

.pagetop span:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 8px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
}
.notice__inner {
	text-align: center;
}