@charset "utf-8";
/*===========================
add
===========================*/
:root {
 --basic-color: #1b4080;
}




/*===========================
title
===========================*/
/*左右に二重線*/
.title_d01{
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 1.8em;
  color: var(--basic-color);
}

.title_d01::before, .title_d01::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  border-top: solid 1px var(--basic-color);
  border-bottom: solid 1px var(--basic-color);
}

.title_d01::before {
  left:0;
}
.title_d01::after {
  right: 0;
}

@media screen and (max-width: 768px) {
 .title_d01{
   font-size: 1.5em;
 }
}

@media screen and (max-width: 600px) {
 .title_d01{
   font-size: 1.3em;
 }
}



/*左右に\ /---------------*/
.title_d02{
  position: relative;
  display: inline-block;
  padding: 0 50px;
  font-size: 1.8em;
  color: var(--basic-color);
}

.title_d02:before,
.title_d02::after {
 content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color:var(--basic-color);
}

.title_d02:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.title_d02::after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}


@media screen and (max-width: 768px) {
 .title_d02{
   font-size: 1.5em;
 }
}

@media screen and (max-width: 600px) {
 .title_d02{
   font-size: 1.3em;
   padding: 0 35px;
 }

 .title_d02:before,
 .title_d02::after {
   width: 30px;
 }
}

.title_d02:before {
  left:0;
}
.title_d02:after {
  right: 0;
}



/*===========================
font
===========================*/
.fw-b{font-weight: bold;}


/*===========================
wf
===========================*/
.wf-t-all ,ul.wf-t-all {
	width: fit-content;
	margin: auto;
}

@media screen and (min-width: 769px) {
	ul.wf-t,	ol.wf-t{
		width: fit-content;
		margin: auto;
	}
}


@media screen and (min-width: 601px) {
	ul.wf-pcONtabletONspOFF {
		width: fit-content !important;
		margin: auto !important;
	}
}


/*===========================
width
===========================*/
.w150px{
 width: 150px;
}

.w150px-center{
 width: 150px;
 margin: 0 auto;
}


.w100p{
	width: 100% !important;
	display: block;
}


@media screen and (max-width: 768px) {
	.w100Tablet{
		width: 100% !important;
		box-sizing: border-box;
	}
	
	.w90Tablet{
		width: 90% !important;
		box-sizing: border-box;
	}

	.w80Tablet{
		width: 80% !important;
		box-sizing: border-box;
	}

	.w50Tablet{
		width: 50% !important;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 600px) {
	.w100sp,
	.w90Tablet,
	.w80Tablet,
	.w50Tablet{
		width: 100% !important;
		box-sizing: border-box;
	}

	.w70sp{
		width: 70% !important;
		box-sizing: border-box;
	}

	.width-sp-50 img{
		width: 50% !important;
	}
}



/*===========================
onOff
===========================*/
.pcOFFtabletONspOFF{display: none !important;}
.pcOFFtabletOFFspON{display: none;}

@media screen and (min-width: 769px) {
	.pcOFFtabletONspON{display: none !important;}
}

@media screen and (max-width: 768px) {
	.pcOFFtabletONspOFF{display: block !important;}
	.pcOFFtabletOFFspON{display: none;}
	.pcONtabletOFFspOFF{display: none !important;}
}

@media screen and (max-width: 600px) {
	.pcOFFtabletONspOFF{display: none !important;}
	.pcOFFtabletOFFspON{display: block;}
	.pcONtabletONspOFF{display: none;}
}
