@charset "UTF-8";
/* CSS Document */
@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
* {
  box-sizing: border-box;
}
html {
  background-color: #FFFFFF;
}
body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
}
.container {
  margin: 0 auto;
  padding: 0;
}
.container:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
img {
  max-width: 100%;
}
.wrap {
  overflow: hidden;
}
@media (max-width: 599px) {
  body {}
  .hidden_sp {
    display: none;
  }
  .container {
    padding:0 15px;
    overflow: hidden;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  body {
    font-size: 18px;
  }
  .hidden_tb {
    display: none;
  }
}
@media (min-width: 1025px) {
  body {
    font-size: 18px;
  }
  .container {
    width: 1200px;
  }
  .hidden_pc {
    display: none;
  }
}
@media (min-width: 1025px) {
  #header {
    position: relative;
    z-index: 999;
    width: 100%;
    min-width: 1200px;
  }
  #header .headForm {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
  }
  #header .headWrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header .headWrap .sitename {
    display: flex;
    padding: 15px;
  }
  #header .headWrap #gNavi {
    margin-right: 180px;
  }
  #header .headWrap #gNavi ul {
    display: flex;
  }
  #header .headWrap #gNavi ul li a {
    display: block;
    padding: 0.5em 1em;
    color: #000;
    font-weight: 500;
    text-decoration: none;
  }
}
  #header .sp_navi .sp_navi_conts .sp_satei a {
		padding: 8px;
		background-color: #B8101F;		
		display: block;
	}

@media (max-width: 1024px) {
  #header .headWrap .sitename {
    display: flex;
    align-items: center;
    margin-right: 88px;
    height: 55px;
    padding: 8px;
    box-sizing: border-box;
  }
  #header .headWrap .sitename h1 {
    margin-right: 8px;
  }
  #header .sp_navi {
    padding-top: 55px;
    box-sizing: border-box;
  }
  #header .sp_navi .sp_navi_conts {
    padding: 15px;
    box-sizing: border-box;
  }
  #header .sp_navi .sp_navi_conts ul {
    padding: 15px;
    background-color: #FFF;
    border-radius: 15px;
    display: flex;
    margin-bottom: 15px;
  }
  #header .sp_navi .sp_navi_conts ul li {
    border-bottom: 2px dotted #CCC;
    box-sizing: border-box;
  }
  #header .sp_navi .sp_navi_conts ul li a {
    display: block;
    padding: 0.5em 0;
  }
}
@media (max-width: 599px) {
  #header .sp_navi .sp_navi_conts ul {
    flex-direction: column;
  }
  #header .sp_navi .sp_navi_conts ul li:last-child {
    border-bottom: none;
    }
}
@media (min-width: 600px) and (max-width: 1024px) {
  #header .sp_navi .sp_navi_conts ul {
    flex-wrap: wrap;
  }
  #header .sp_navi .sp_navi_conts ul li {
    flex-basis: 50%;
  }
  #header .sp_navi .sp_navi_conts ul li:nth-child(even) {
    border-right: 2px dotted #CCC;
  }
  #header .sp_navi .sp_navi_conts ul li.home {
    flex-basis: 100%;
  }
}
/***************************
スマホとタブレットのハンバーガーメニューギミック
****************************/
@media (max-width: 599px) {
  .sp_navi > div {
    width: 320px; /*スライドで出てくる幅*/
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .sp_navi > div {
    width: 700px; /*スライドで出てくる幅*/
  }
}
@media (max-width: 1024px) {
  .sp_navi {
    z-index: 99998;
  }
  .sp_navi {
    background-color: rgba(242, 243, 242, 0.95); /*メニュー内背景色　#F2F3F2　*/
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 99998;
    height: 100%;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    overflow-y: scroll;
    position: fixed;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.4);
  }
  .spBtn {
    width: 55px;
    height: 55px;
    position: fixed;
    right: 0px;
    top: 0px;
    background-color: #0071b8; /*ハンバーガーメニューのボタン色　*/
    color: #FFF;
    z-index: 99999;
  }
  .spBtn:before, .spBtn:after, .spBtn span {
    display: block;
    width: 80%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .spBtn span {
    height: 3px;
    background-color: #FFFFFF;
    top: calc(50% - 1.5px);
  }
  .spBtn:before {
    content: "";
    top: calc(25% - 3px);
    border-top: 3px solid #FFFFFF;
  }
  .spBtn:after {
    content: "";
    bottom: calc(25% - 3px);
    border-bottom: 3px solid #FFFFFF;
  }
  .spBtn.on span {
    display: none;
  }
  .spBtn.on:before {
    top: calc(50% - 1.5px);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .spBtn.on:after {
    bottom: calc(50% - 1.5px);
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  .open {
    right: -100%;
  }
  .open.active {
    right: 0px;
  }
  .move.on.spBtn {
    position: fixed;
    right: 0px;
    top: 0px;
  }
}
@media (max-width: 599px) {}
@media (min-width: 600px) and (max-width: 1024px) {}
@media (min-width: 1025px) {}


.more a {
  display: block;
  background-image: url("../img/ico_arrow.png");
  background-repeat: no-repeat;
  background-position: right 30px center;
  background-color: rgba(255, 255, 255, .8);
  border: 2px solid #004B80;
  border-radius: 8px;
  color: #004B80;
  padding: 8px;
}
.more a:hover {
  background-image: url("../img/ico_arrow_wh.png");
  background-color: rgba(0, 75, 128, 1);
  color: #FFF;
  padding: 8px;
}
.more.trunover a {
  background-image: url("../img/ico_arrow_wh.png");
  background-color: rgba(0, 113, 183, 1);
  border: 2px solid #FFF;
  color: #FFF;
  padding: 8px;
}
.more.trunover a:hover {
  background-image: url("../img/ico_arrow.png");
  background-color: rgba(255, 255, 255, 1);
  color: #004B80;
}



@media (max-width: 599px) {}
@media (min-width: 600px) and (max-width: 1024px) {}
@media (min-width: 1025px) {
  #footer {
    background-color: #FFF;
    border-top-right-radius: 15px;
    width: 95%;
    padding: 15px;
  }
  #footer .innr {
		width: 100%;
		display: flex;
		justify-content: space-between;
		font-size: 14px;
  }
  #footer .innr .copyright {
		text-align: left;
  }
  #footer .innr .footLink ul {
		display: flex;
		justify-content: flex-end;
  }
  #footer .innr .footLink ul li a {
		display: block;
		padding: 0 8px;
  }
  #footer .innr .footLink ul li + li {
		border-left: 1px solid #000;
  }
}
@media (max-width: 599px) {
	#footer{
		padding-bottom: 80px;
	}
}

#fixFoot{
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #FFF;
}
#fixFoot ul{
	display: flex;
	flex-wrap: nowrap;
	gap: 1px
}
#fixFoot ul li{
	flex: 1;
	background: #b8101f;
}#fixFoot ul li a{
	padding: 0.8em;
	display:block
}
/*****************************************
スマホでのテーブルFullWidth
*****************************************/
@media (max-width: 750px) {
  .table_sp, .table_sp caption, .table_sp tbody, .table_sp thead, .table_sp tfoot, .table_sp tr, .table_sp th, .table_sp td {
    display: block;
  }
  .table_sp {
    margin-bottom: 5px;
  }
  .table_sp caption {
    padding: 5px;
    background-color: #E2E2E2;
  }
  .table_sp th {
    background-color: #F2F2F2;
    padding: 8px;
  }
  .table_sp td {
    background-color: #FFFFFF;
    padding: 8px;
  }
}
@media (min-width: 751px) {
  .table_sp {
    width: 100%;
    margin: 0 auto 10px;
  }
  .table_sp tr th {
    padding: 15px;
    border: 1px solid #CCC;
    font-weight: 500;
    background-color: #F2F2F2;
  }
  .table_sp tr td {
    padding: 15px;
    border: 1px solid #CCC;
  }
}

.pager {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pager .right ul {
  display: flex;
}
.pager .right ul li {
  padding: 1px;
}
.pager .right li a, .pager .right li span {
  padding: 3px 8px;
  display: inline-block;
}
.pager .right li span {
  border: 1px solid #F2F2F3;
  background-color: #EEE;
  color: #999;
}
.pager .right li a {
  border: 1px solid #ccc;
  background-color: #FFF;
}
@media (max-width: 599px) {}
@media (min-width: 600px) {
  .pager {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .pager .right {
    margin-left: auto;
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTrigger, .fadeUpTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
