@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');
/*  style　[  共通 ]
=================================================================== */
/* **********************************************************************************
 RESET
*********************************************************************************** */
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset, figure {
	margin: 0;
	padding: 0;
}
img, fieldset {
	border: 0;
}
/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
hr {
	display: none;
}
p {
}

/* **********************************************************************************
 GENERAL STYLING
*********************************************************************************** */
html {
  /* font-size: 62.5%; 10px */
}
body {
  background-color: #FFF;
  font: 18px 'Zen Kaku Gothic New', sans-serif;
  color:#000;
  font-weight:500;

}
a:link    { text-decoration: none;      color: #000; }
a:visited { text-decoration: none;      color: #000; }
a:hover   { text-decoration: underline; color: #c30; }
a:active  { text-decoration: none; }

a.line_btm { border-bottom: #000 1px dashed;}
a.line_btm:hover { border-bottom: #c30 1px dashed;}

/* **********************************************************************************
 class
*********************************************************************************** */
.noDisplay {
  display: none;
  margin: 0;
  padding: 0;
}
/* japanese */
.jpara { text-indent: 1em; }
/* text */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
/* text decoration */
.text-bold { font-weight: bold; }
.text-uline { text-decoration: underline; }
/* space(top) */
.spaceTop05 { margin-top: 5px; }
.spaceTop10 { margin-top: 10px; }
.spaceTop15 { margin-top: 15px; }
.spaceTop20 { margin-top: 20px; }
.spaceTop25 { margin-top: 25px; }
.spaceTop30 { margin-top: 30px; }
/* space(bottom) */
.spaceBottom05 { margin-bottom: 5px; }
.spaceBottom10 { margin-bottom: 10px; }
.spaceBottom15 { margin-bottom: 15px; }
.spaceBottom20 { margin-bottom: 20px; }
.spaceBottom25 { margin-bottom: 25px; }
.spaceBottom30 { margin-bottom: 30px; }
/* float & clear */
.setRight {
  float: right;
  display: block;
}
.setLeft {
  float: left;
  display: block;
}
.setClear {
  clear: both;
  font: 0px/0px sans-serif;
}
/* clearfix */
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
/*IE6,7対策 （haslayout対策）*/
.cf {
 *zoom:1;
}
.clearfix:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden;
}
.ulNone {
  list-style: none;
}
.list-normal {
  padding: 10px 0 10px 20px;
}

 /* image */
img.img-center {
  margin: 0 auto;
  display: block;
}



/* color */
.pink {
  color: #fa4141;
}
.white {
  color: white!important;;
}
.red {
  color: #c33;
}


/* table */
.thPink {
  border-collapse: collapse;
  margin: 10px 0;
  border:#ccc 1px solid;
  width: 98%;
}
.thPink th {
  border-collapse: collapse;
  border:#ccc 1px solid;
  padding: 5px;
  background: #fceff0;
}


.thPink td {
  border-collapse: collapse;
  border:#ccc 1px solid;
  padding: 5px;
}


/* vertical */
.v-mid {vertical-align: middle!important;}
.v-top {vertical-align: top;}



/* Back To Top*/
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 100;
}

.backtoTop {
  background-color: #FFF;
  border-radius: 50px;
  color: #1F2678;
  border: 1px solid #1F2678;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
}
.backtoTop:hover {
  background-color: #1F2678;
  border: 1px solid #fff;
  color: #FFF;
  text-decoration: none;
}

/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
  .backtoTop .bi-arrow-up {
    font-size: 25px;
  } 
}