@charset "UTF-8";
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: "Noto Sans Japanese", sans-serif;
	color: #000;
	font-size: 14px;
	line-height: 1.6;
	background: #fff;
}
body, html {
	height: 100%;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	background: rgba(255,255,255,0.01);
}
a {
	color: #1d3994;
	cursor: pointer;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a img {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
a:hover img {
	opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
}
/* clearfix */
clearfix {
	zoom: 1;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow: hidden;
	font-size: 0.1em;
	line-height: 0;
}
* html .clearfix {
	height: 1%;
}
h1, h2, h3 {
	font-weight: bold;
}
/* -------------------------------------------------------------
　a link
--------------------------------------------------------------*/
a.through {
	text-decoration: line-through;
}
/* -------------------------------------------------------------
　txt
--------------------------------------------------------------*/
.font_bold {
	font-weight: bold;
}
.font_red01 {
	color: #ff0000;
}
.font_size12 {
	font-size: 12px;
}
.font_nowrap {
	white-space: nowrap;
}

.align_center {text-align: center}
.align_left {text-align: left}
.align_right {text-align: right}


/* -------------------------------------------------------------
　title
--------------------------------------------------------------*/
.title.type01 {
	font-size: 16px;
	margin: 0 0 10px;
	text-align: center;
}
.title.type02 {
	font-size: 18px;
	padding: 5px 10px 5px;
	background: #eee;
}
.title.type03 {
	font-weight: bold;
}
.title.type04 {
	font-size: 22px;
	line-height: 1.4;
	color: #00165e;
}
/* -------------------------------------------------------------
　icon
--------------------------------------------------------------*/
.icon_cancel {
	width: 4px;
	height: 30px;
	background: #fff;
	transform: rotate(45deg);
}
.icon_cancel:before {
	display: block;
	content: "";
	position: absolute;
	top: 13px;
	left: -13px;
	width: 30px;
	height: 4px;
	background: #fff;
}
/* -------------------------------------------------------------
　btn
--------------------------------------------------------------*/
.btn {
	display: block;
	position: relative;
	box-sizing: border-box;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border-radius: 5px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: 0;
}
.btn.type01 {
	color: #fff;
	padding: 8px 10px;
	border-radius: 28px;
}
.btn.type02 {
	color: #fff;
	padding: 2px 5px;
	border-radius: 28px;
}
.btn.type03 {
	color: #fff;
	padding: 0px;
	border-radius: 28px;
}

/* -------------------------------------------------------------
　bg_color
--------------------------------------------------------------*/
.bg_red01 {
	background-color: #d7162e;
}
.bg_pink01 {
	background-color: #e07b9a;
}
.bg_light_blue01 {
	background-color: #3b9dbd;
}
.bg_green01 {
	background-color: #4caf93;
}
.bg_gray01 {
	background-color: #666;
}
.bg_black01 {
	background-color: #000000;
}
.bg_blue02 {
	background-color: #6495ED;
}

/* -------------------------------------------------------------
　link
--------------------------------------------------------------*/
.link_nav01 a {
	display: block;
	padding: 15px;
	border-bottom: solid 1px #ccc;
}
.link_nav01 li {
	position: relative;
}
.link_nav01 li::after {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	border-top: solid 2px #bbb;
	border-right: solid 2px #bbb;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -5px;
	top: 50%;
	right: 10px;
}

/* -------------------------------------------------------------
　block
--------------------------------------------------------------*/
.block_wrap.type01 {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
  margin-left: -10px;
}
.block_wrap.type01 .block1 {
  box-sizing: border-box;
//  flex: 0 1 calc((100% / 4) - 10px);
// flex: 0 1  150px;
  margin-top: 10px;
  margin-left: 10px;
}
.block_wrap.type01 .block2 {
  box-sizing: border-box;
//  flex: 0 1 calc((100% / 4) - 10px);
// flex: 0 1  250px;
  margin-top: 10px;
  margin-left: 10px;
}
.block_wrap.type01 .block:nth-child(3) {
  margin-right: 0;
}


/* -------------------------------------------------------------
　table
--------------------------------------------------------------*/
/* type01 */
table.type01 {
	width: 100%;
	line-height: 1.4;
	border-right: solid 1px #ccc;
}
table.type01 thead {
	background: #eee;
}
table.type01 thead th {
	text-align: center;
	vertical-align: middle;
	padding: 10px 5px;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
  white-space: nowrap;
}
table.type01 tbody td {
	vertical-align: middle;
	padding: 10px;
	border-left: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
table.type01 th:last-child {
	border-right: none;
}

/* type02 */
table.type02 {
	width: 100%;
	font-size: 12px;
	line-height: 1.4;
	border-top: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
table.type02 tbody th,
table.type02 tbody td {
	vertical-align: middle;
	padding: 5px;
	border-bottom: solid 1px #ccc;
}
table.type02 tbody th {
	background: #eee;
}

/* type03 */
table.type03 {
	width: 100%;
	line-height: 1.4;
}
table.type03 tbody th,
table.type03 tbody td {
	vertical-align: middle;
	padding: 5px 0;
}


/* -------------------------------------------------------------
　tag
--------------------------------------------------------------*/
.tag.type01 li {
	margin: 0 0 5px;
}
.tag.type01 li:last-child {
	margin: 0;
}

/* -------------------------------------------------------------
　form
--------------------------------------------------------------*/
input[type="text"], input[type="password"], textarea, input[type="submit"] {
	-webkit-appearance: none;
}
input[type="text"], input[type="password"] {
	width: 100%;
	padding: 10px;
	font-size: 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	-moz--sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizinboxg: border-box;
	box-shadow: none;
}
input[type="checkbox"] {
	border-radius: 5px;
	border: 1px solid #b3b3b3;
}
input[type="radio"]:checked + label {
	width: 100%;
	background: #ed7f00;/* マウス選択時の背景色を指定する */
	color: #ffffff; 	/* マウス選択時のフォント色を指定する */
	background: #ffecec !important;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
/* select_type01 */
.select_type01 {
	position: relative;

}
.select_type01::after {
  
	display: inline-block;
	content: "▼";
	position: absolute;
	bottom: 50%;
	right: 5px;
	transform: translateY(50%);
	-webkit-transform: translateY(50%);
	font-size: 12px;
  pointer-events: none;
}

@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .select_type01::after { display: none; } /* IE11 */
}

.select_type01 select {
	width: 100%;
	margin: 0;
	padding: 7.5px 10px 7.5px 5px;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	outline: 0;
	vertical-align: middle;
	background: transparent;
	border: solid 1px #ccc;
	cursor: pointer;

}
/*  textarea */
.textarea_wrap {
	padding: 0 10px;
}
textarea {
	padding: 5px;
	font-size: 15px;
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 100%;
	-moz--sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizinboxg: border-box;
}

/* checkbox_type01 */
input[type="checkbox"] {
	display: none;
}
.checkbox_type01_input{
  display: none;
}
.checkbox_type01 label {
	position: relative;
	padding: 0 28px;
	cursor: pointer;
	width: 100%;
	color: #333;
}
.checkbox_type01 label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background:#fff;
}
.checkbox_type01 input[type="checkbox"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 3px solid #666;
  border-right: 3px solid #666;
}





/* -------------------------------------------------------------
　modal
--------------------------------------------------------------*/
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  transition: opacity 0.3s, visibility 0s 0.3s;
  background: rgba(0,0,0,0.8);
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0s 0s;
}
.modal_container {
  min-height: 100%;
  justify-content: center;
  align-items: center;
}
.modal_inner {
  margin: 40px auto 20px;
  width: 100%;
}
.modal_content {
  display: none;
  border-radius: 2px;
  background: #fff;
}
.is-active .modal_content {
  display: block;
}
.modalClose {
	position: absolute;
	top:5px;
	right: 20px;
}


/* ==================================
.pager_wrap
===================================*/

.pager_wrap {
  text-align:center;
  font-size:14px;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 50px 0 0 0;
}

.pager_wrap .pager {
  vertical-align:  top;
  display: flex;
  display: -webkit-flex;
}
.pager_wrap a,
.pager_wrap span{
  display: block;
  position: relative;
  font-family: "Midashi Go MB31",YuGothic, '游ゴシック',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height:1;
  text-align:center;
  padding: 0 0.571em;
  height: 1.71em;
  min-width: 1.71em;
  line-height: 1.6em;
  margin:0 2px;
  text-decoration: none !important;
}

.pager_wrap .pager a,
.pager_wrap .pager span{
  border: solid 1px #bbb;
}

.pager_wrap .pager span.current_page {
  color: #fff;
  background: #bbb;
}
.pager_wrap .pager span.sep {
  padding: 0;
  min-width: 0;
  border: none;
  padding: 3px 0;
}

.pager_wrap .pager a:hover{

}

.pager_wrap .pager a{
  transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
  -webkit-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
  -moz-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
  -ms-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
}

.pager_wrap .pager a:hover{
  background-color: #e07b9a;
  border-color: #e07b9a;
  color: #ffffff;
}

.pager_wrap .pager_btn {
  margin:0 0 0 5px;
  position:relative;
  display: flex;
  display: -webkit-flex;
}

.pager_wrap .pager_btn a {
  background: #e07b9a;
  overflow:  hidden;
  text-indent: 200%;
  white-space: nowrap;
  width: 1.71em;
  min-width: 0;
}

.pager_wrap .pager_btn a{
    transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
    -webkit-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
    -moz-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
    -o-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
    -ms-transition: background-color 0.4s ease 0s, color 0.4s ease 0s, border-color 0.4s ease 0s;
}
.normal .pager_wrap .pager_btn a:hover{
    background-color: #e07b9a;
    border-color: #e07b9a;
    color: #ffffff;
}

.pager_wrap .pager_btn a:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.69em;
    height: 0.69em;
    -moz-transform-origin: 50%;
    -webkit-transform-origin: 50%;
    -o-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
}

.pager_wrap .pager_btn .btn_next:after{
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-right: 0.143em solid #ffffff;
    border-bottom: 0.143em solid #ffffff;
    margin: -0.345em 0 0 -0.6em;
}
.pager_wrap .pager_btn .btn_prev:after {
    border-left: 0.143em solid #ffffff;
    border-bottom: 0.143em solid #ffffff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -0.345em 0 0 -0.2em;
}


.pager_wrap .pager_btn a:after{
    transition: margin-left 0.4s ease 0s;
    -webkit-transition: margin-left 0.4s ease 0s;
    -moz-transition: margin-left 0.4s ease 0s;
    -o-transition: margin-left 0.4s ease 0s;
    -ms-transition: margin-left 0.4s ease 0s;
}
.pager_wrap .pager_btn .btn_next:hover:after{
    margin-left: -0.4em;
}

.pager_wrap .pager_btn .btn_prev:hover:after{
    margin-left: -0.4em;
}

.pager_wrap .dots{
  margin: 0 0;
  padding: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  border: none !important;
}

/* ==================================
.page_more_btn
===================================*/

.page_more_btn{
  margin: 50px 0 0 0;
}

.page_more_btn .btn_wrap.type_normal{
  width: 300px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
}

.page_more_btn .btn_wrap.type_normal .btn{
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #e07b9a;
  color: #ffffff;
}

.page_more_btn .btn_wrap.type_normal .btn .btn_text{
  font-weight: bold !important;
}

/* ==================================
.caption_img
===================================*/

.caption_img{
  position: relative;
  display: inline-block;
  max-width: 200px;
  width: 100%;
  min-height: 100px;
}


.caption_img .caption_icon_wrap{
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.caption_img .caption_icon{
  padding: 4px 8px;
  line-height: 1;
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border: 2px solid #e07b9a;
  color: #e07b9a;
  font-weight: bold;
  background-color: rgba(255,255,255,0.6);
}

a:hover .caption_img .caption_icon{
  opacity: 0.7;
	-moz-opacity: 0.7;
	filter: alpha(opacity=70);
}

.header-btn {
	position: absolute;
	top: 0;
	right: 100px;
}

.header-btn ul{
	display: flex;
}

.header-btn ul li {
	padding: 10px 15px;
	background-color: #fff;
	border-radius: 30px;
	margin: 3px 15px 0 0;
	border: 1px solid black;
}


.header-btn ul li:hover {
	background-color: #666666;
	color: #fff;
}








