@charset "utf-8";

/*-----------------------------------------------------------------
	基本
-----------------------------------------------------------------*/

* { margin: 0; padding: 0; box-sizing: border-box; word-wrap: break-word; overflow-wrap: break-word;}
ul,ol {list-style: none;}

table {
  border-collapse: separate;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

/*-----------------------------------------------------------------
	link
-----------------------------------------------------------------*/

a {
  color: #24548C;
  text-decoration: none;
  outline: none;
  transition : 0.5s;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

/* 無効 */
a.disabled{
  pointer-events: none;
  color: #aaa;
  opacity: 0.5;
}

a[href^="javascript:void(0)"] {
	cursor: default;
}

a.out_link::after {
    content: "";
    background: url(../images/icon_olink.png) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    display: inline-block;
    margin-left: 3px;
}

a.all_link {	
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	z-index: 100;
  transition : 0.5s;
}

a.under {
	text-decoration: underline;
}

a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* SP */
@media only screen and (max-width: 768px) {

a[href^="tel:"] {
	pointer-events: inherit;
}

a[href*="tel:"] {
    pointer-events: inherit;
    cursor: pointer;
}

}

/*-----------------------------------------------------------------
	レスポンシブ用
-----------------------------------------------------------------*/

.pc {
	 display: inline-block!important;
}

.pc_tab {
	 display: inline-block!important;
}

.tab {
	 display: none!important;
}

.pc_tab_tbl {
  display: table-row!important;
}

.sp,
.sp550,
.sp999,
.sp_tbl {
	 display: none!important;
}

/* タブレット */
@media only screen and (max-width: 1280px) {

.pc {
	 display: none!important;
}

.tab {
	 display: inline-block!important;
}
  
}

@media only screen and (max-width: 999px) {
  .pc_tab,
  .pc_tab_tbl {
    display: none!important;
  }
  .sp999 { display: block!important;}
}

/* SP */
@media only screen and (max-width: 768px) {

.tab {
	 display: none!important;
}

.sp {
	 display: inline-block!important;
}

.sp_tbl {
  display: table-row!important;
}

}
@media only screen and (max-width: 550px) {

  .sp550 {
    display: inline-block!important;
  }

}

/*-----------------------------------------------------------------
	共通CSS
-----------------------------------------------------------------*/

html {
	height: 100%;
	background: #fff;
	color: #000;
	overflow-y: auto;
	padding: constant(safe-area-inset-right); 
	padding: constant(safe-area-inset-bottom); 
	padding: constant(safe-area-inset-left); 
	padding: constant(safe-area-inset-top); 
}

body {
  width: 100%;
  height: 100%;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

img {
	max-width: 100%;
	height: auto;
	border:0;
	vertical-align: bottom;
}

.img_box {
  max-width: 1200px;
  margin-bottom: 80px;
}

.inner {
	width: 90%;
  max-width: 1100px;
	margin: auto;
}

.inner_wide {
  max-width: 1500px;
}

.line { border: #ddd 1px solid;}

.invisi { display: none;}

.indent {
  padding-left:1em;
	text-indent:-1em;
}
.inline_b { display: inline-block;}

.rotate90 { display: inline-block; transform: rotate( -90deg );}

.pos-re { position: relative;}

/* align */
.a_center { text-align: center!important;}
.a_left { text-align: left!important;}
.a_right { text-align: right!important;}

.small_txt {
  font-size: 77%;
}

.big_txt {
  font-size: 133%;
}

.txt18 { font-size: 18px;}

.mb10 { margin-bottom: 10px!important;}
.mb20 { margin-bottom: 20px!important;}
.mb40 { margin-bottom: 40px!important;}
.mb60 { margin-bottom: 60px!important;}
.mt5 { margin-top: 5px!important;}
.mt10 { margin-top: 10px!important;}
.mt20 { margin-top: 20px!important;}
.mt40 { margin-top: 40px!important;}
.mt60 { margin-top: 60px!important;}

span.br {
  display: inline-block;
}

.mauto { margin-left: auto!important; margin-right: auto!important;}

.color_btn {
    width: 100%;
    max-width: 500px;
    display: block;
    background-color: #24548C;
    border: #24548C 1px solid;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    padding: 20px 30px 20px 20px;
    text-align: center;
    position: relative;
}

.color_btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 12px;
  top: 24px;
  transition : 0.5s;
}

.bg_grad {
  background-image: linear-gradient(90deg, #2ca3b0, #f39747);
}

.color_btn.bg_grad {
  border: #fff 1px solid;
}

.color_btn:hover,
.color_btn.bg_grad:hover {
  background-image: none;
  background-color: #fff;
  color: #24548C;
  border: #24548C 1px solid;
}

.color_btn:hover::after {
  border-left: 8px solid #24548C;
}

/* タブレット */
@media only screen and (max-width: 1280px) {

.inner {
	width: 90vw;
}

}

/* SP */
@media only screen and (max-width: 550px) {

  .color_btn {
    font-size: 88%;
    padding: 15px 20px 15px 15px;
    text-align: center;
    position: relative;
  }

  .color_btn::after {
      border-left: 6px solid #fff;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      position: absolute;
      right: 12px;
      top: 1.25em;
      transition: 0.5s;
  }

}

/*-----------------------------------------------------------------
	font
-----------------------------------------------------------------*/

body,
button {
    font-family: zen-kaku-gothic-new, sans-serif;
    font-size: 18px;
    font-weight: 500;  
    font-style: normal;
    -webkit-text-size-adjust: none;
    line-height: 1; 
}

p { line-height: 1.6em;}

.Medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  
  body,
  button {
      font-size: 16px;
      font-weight: 500; 
  }

  p { line-height: 1.8em;}

}

/*-----------------------------------------------------------------
	input textarea
-----------------------------------------------------------------*/

input[type="text"] {
  vertical-align: middle;
}

input, textarea, select {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  width: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  padding: 10px 20px;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

textarea {
  width: 100%;
  resize: vertical;
	min-height: 250px;
 }

 .select {
    position: relative;
    display: inline-block;
  }
  
  .select select {
    font-size: 16px;
    padding-right: 30px;
    color: #222;
  }
 
 .select::after {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 600;
    font-size: 113%;
    position: absolute;
    color: #000;
    right: 10px;
    top: 55%;
    transform: translateY(-55%);
    -webkit-transform: translateY(-55%);
    content: "";
    border: 5px solid transparent;
    border-top: 6px solid #555;
    pointer-events: none;
}

/* SP */
@media only screen and (max-width: 768px) {
  
input, textarea {
  padding: 10px;
}

}

/*-----------------------------------------------------------------
	flex
-----------------------------------------------------------------*/

.flex {	
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex_left { justify-content: flex-start;}
.flex_right { justify-content: flex-end;}

.flex.reverse {
  flex-direction: row-reverse;
}

/* タブレット～SP */
@media only screen and (max-width: 768px) {

.flex.reverse {
  flex-direction: row;
}

}

/*-----------------------------------------------------------------
	color
-----------------------------------------------------------------*/

.white_txt { color: #fff!important;}
.yellow_txt { color: #FFDC30!important;}
.red_txt { color: #F93A00!important;}
.main_txt { color: #24548C!important;}
.gray_txt { color: #606060!important;}

.white_bg { background-color: #fff;}
.grad_bg {
  background: rgb(32,52,110);
  background: linear-gradient(90deg, rgba(32,52,110,1) 0%, rgba(39,113,162,1) 100%);
}

/*-----------------------------------------------------------------
	wrap
-----------------------------------------------------------------*/

#wrap {
  width: 100%;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/*-----------------------------------------------------------------
	main
-----------------------------------------------------------------*/

#main {
  width: 100%;
  position: relative;
}

/* タブレット */
@media only screen and (max-width: 1200px) {
  #main {
    padding-bottom: 0!important;
    position: static;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  #main {
    padding-left: 0;
  }
}

/*-----------------------------------------------------------------
	header
-----------------------------------------------------------------*/

#header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 10000;
  transition: 0.5s all;
  pointer-events: none;
}

.logo {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 40px;
}

.logo img {
    height: 31px;
}
.logo_txt {
  font-size: 12px;
  padding-left: 0.5em;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.menu_nojs_checkbox {
  display: none!important;
}
.menu_trigger {
  display: none!important;
}

.hbox {
    width: 96%;
    margin: auto;
    justify-content: flex-end;
}

.nav_box {
  background-color: #fff;
  text-align: left;
  margin-top: 30px;
  padding: 5px;
  padding-right: 40px;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  pointer-events: auto;
}

.hmenu {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}

.hmenu > li {
  margin-left: 50px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

.hmenu > li > a {
  transition : 0.5s;
  padding: 20px 0;
  color: #000;
}
.hmenu_sub {
  position: relative;
  padding-right: 15px;
  cursor: pointer;
  transition : 0.5s;
  padding: 20px 15px 20px 0;
}

.hmenu > li a:hover {
  color: #689FC9;
}
.hmenu_sub::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #24548C;
  position: absolute;
  right: -5px;
  top: 24px;
  transition : 0.5s;
}
.hmenu_sub .hmenu_sub_menu {
  display: none;
}

.hmenu_sub .hmenu_sub_menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid #24548C;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition : 0.5s;
}

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

  .hmenu > li {
    font-size: 13px;
    margin-left: 25px;
  }

}

@media only screen and (min-width: 1000px) {
  
  .hmenu_sub:hover {
    color: #689FC9;
  }
  
  .hmenu_sub:hover::before {
    border-top: 8px solid #24548C;
  }
  
  .hmenu_sub:hover .hmenu_sub_menu {
    display: block;
    position: absolute;
    top: 50px;
    padding: 0px;
    margin: 0;
    width: 220px;
    background-color: #F7F7F7;
    color: #fff;
  }

  .hmenu_sub:hover .hmenu_sub_menu li {
    position: relative;
  }
  .hmenu_sub:hover .hmenu_sub_menu li a {
    width: 100%;
    display: block;
    padding: 15px;
    color: #24548C;
  }

  .hmenu_sub .hmenu_sub_menu li a:hover {
    background-color: #24548C;
    color: #fff;
  }
    
  .hmenu_sub:hover .hmenu_sub_menu li a:hover::before {
    right: 12px;
    border-left: 8px solid #fff;
  }
  
}

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

#header {
  height: 60px;
  padding: 15px 10px 0;
}

.logo {
  top: 10px;
  height: 70px;
  padding: 15px 15px 15px 20px;
}

.hbox {
    width: 100%;
}

.nav_box {
  position:fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 380px;
  height: 100vh;
  padding-right: 0;
  background-color: #24548C;
  /*動き*/
  transition: all 0.6s;
  margin-top: 0;
  border-radius: 0;
}

.nav_box_scroll {
  height: 100vh;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 100px;
}

.hmenu {
  width: 100%;
  min-height: 100%;
  background: none;
  height: auto;
  border-radius: 30px;
  margin-left: 0;
  padding: 0;
  padding: 0 30px 30px;
}

.hmenu li {
  width: 100%;
    line-height: 1em;
    margin-left: 0;
    font-size: 18px;
}
.hmenu li:first-child {
  margin-left: 0;
}

.hmenu li a {
  width: 100%;
  display: block;
  color: #fff!important;
  padding: 10px;
}

.hmenu li:first-child {
    border-top: none;
}

.hmenu li::before {
  all: initial;
}

.hmenu li:first-child::before {
  all: initial;
}

.hmenu li a {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    color: #000;
    font-weight: bold;
}

.hmenu_sub .hmenu_sub_menu {
  display: block;
}

.hmenu_sub + .hmenu_sub {
  padding-top: 0;
}

.hmenu_sub {
  color: #fff;
  padding-left: 1em;
}

.hmenu_sub > a {
  padding-left: 0!important;
}

.hmenu_sub .hmenu_sub_menu li a::before {
    content: none;
}

.hmenu_sub_menu li a {
  font-size: 77%;
  font-weight: 400;
  position: relative;
  padding: 10px 10px;
}

.hmenu_sub_menu li:first-child a {
  margin-top: 10px;
}
  
  .menu_trigger {
    display: block!important;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: none;
    appearance: none;
    cursor: pointer;
    z-index: 10000;
    padding: 12px;
    pointer-events: auto;
  }
  .menu_trigger::after {
    position: absolute;
    right: 10px;
    bottom: 7px;
    content: "MENU";
    color: #24548C;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
  }
  .menu_trigger, .menu_trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu_trigger span {
    position: absolute;
    width: 32px;
    height: 3px;
    left: 10px;
    background-color: #24548C;
    border-radius: 2px;
  }
  .menu_trigger span:nth-of-type(1) {
    top: 12px;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 20px;
  }
  .menu_trigger span:nth-of-type(3) {
    top: 28px;
  }
  
  .menu_nojs_checkbox:checked ~ .nav_box {    
    right: 0;
  }
  .menu_nojs_checkbox:checked ~ .menu_trigger::after {
    content: "CLOSE";
    right: 7px;
  }
  .menu_nojs_checkbox:checked ~ .menu_trigger span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu_nojs_checkbox:checked ~ .menu_trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_nojs_checkbox:checked ~ .menu_trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  
}

@media only screen and (max-width: 550px) {
.logo { padding: 10px 10px 10px 15px;}

.logo img {
  height: 22px;
}
.logo_txt {
  font-size: 10px;
  margin-bottom: 0;
}

}

/*-----------------------------------------------------------------
	footer
-----------------------------------------------------------------*/

#pagetop {
	display: none;
}

#pagetop {
	width: 60px;
	height: 60px;
  	background: #24548C;
	border-radius: 50%;
	border: #eee 2px solid;
	position: fixed;
	bottom: 30px;
	right: 30px;
	text-align: center;
	z-index: 1000;
  transition:all 0.3s;
  cursor: pointer;
}

#pagetop::before{
  content: '';
  width: 15px;
  height: 15px;
  margin-top: -5px;
  border-top: solid 4px #fff;  
  border-right: solid 4px #fff; 
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 18px;
}

#pagetop a {
	width: 100%;
	height: 100%;
  display: block;
}

#footer {
  background-color: #24548C;
  background-size: auto 200px;
  padding-top: 80px;
}

.fbox {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

.flogo {
  width: 90%;
  max-width: 190px;
  margin-top: 10px;
}

.fbox_l .white_txt {
  font-size: 88%;
}
.sns_list {
  margin-top: 30px;
}
.sns_list li {
  width: 24px;
  margin-right: 20px;
}
.fbox_r {
  flex: 1;
  margin-left: 3vw;
  text-align: left;
}

.fbox_r_box {
  margin-left: 3%;
}
.fmenu {
  margin-bottom: 30px;
  font-size: 88%;
}
.fmenu li {
  margin-left: 3em;
  margin-bottom: 15px;
}
.fmenu li a {
  color: #fff;
}

.fmenu_sub {
  font-size: 77%;
  font-weight: 400;
}

.fmenu_sub::before {
  content: "└";
  color: #fff;
  margin-right: 3px;
  padding-left: 1em;
}

.footer_bar {
  margin-top: 50px;
  padding: 20px 20px 40px;
  text-align: center;
}

.copy {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

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

  .fbox_l .white_txt {
    font-size: 77%;
  }
  
  .fbox_r {
    margin-left: 1vw;
  }
}

@media only screen and (max-width: 999px) {
  
  #footer {
      padding-top: 50px;
  }

  .fbox {
    display: block;
  }
  
  .fbox_l {
    text-align: center;
  }
  
  .flogo {
    margin: 10px auto 0;
  }
  
  .sns_list {
    margin: 30px auto;
    justify-content: center;
  }
  
  .fbox_r {
    display: none;
  }
  
  .footer_bar {
    margin-top: 0;
  }

}

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

  #pagetop {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
  
  #pagetop::before{
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-top: solid 3px #fff;  
    border-right: solid 3px #fff;
    right: 14px;
  }
  
  #footer {
    background-size: auto 120px;
    padding-top: 50px;
  }

}

/* SP */
@media only screen and (max-width: 550px) {

  .copy { font-size: 12px;}

}

/*-----------------------------------------------------------------
	top・page共通
-----------------------------------------------------------------*/

h2 {
  width: 100%;
  color:#24548C;
  border-bottom: #24548C 2px solid;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 25px;
  margin-top: 80px;
  margin-bottom: 30px;
  position: relative;
}

h2 + h3 {
  margin-top: 0;
}

h3 {
  width: 100%;
  font-size: 20px;
  background-color: #f7f7f7;
  border-left: #24548C 5px solid;
  padding: 15px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.group_link {
  width: 31%;
  font-weight: bold;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 20px 35px 20px 20px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  margin: 1% 2% 1% 0;
}

.group_link::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid #24548C;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  right: 15px;
}

.group_link:hover {
  background-color: #24548C;
  color: #fff;
}

.group_link:hover::before {
  border-left: 8px solid #fff;
}

a.group_link.out_link::before {
    content: none;
}

a.group_link.out_link::after{
  content: "";
  background: url(../images/icon_olink.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
  display: inline-block;
  margin-left: 3px;
  position: absolute;
  top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  right: 15px;
}

a.group_link.out_link:hover::after {
  background: url(../images/icon_olink_w.png) no-repeat;
  background-size: contain;
}

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

  .group_link {
    font-size: 88%;
  }

}
@media only screen and (max-width: 1100px) {
  
  h2 {
    font-size: 30px;
    padding-bottom: 25px;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 18px;
    padding: 15px;
  }
  
  .group_link {
    width: 31%;
    padding: 15px 30px 15px 15px;
  }

}

@media only screen and (max-width: 999px) {
  
  .group_link {
    width: 48%;
    padding: 15px 20px 15px 15px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    margin: 1% 2% 1% 0;
  }
  
  .group_link::before {
		border-left: 6px solid #24548C;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		right: 8px;
	}

}

@media only screen and (max-width: 768px) {
  
  h2 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .group_link {
    font-size: 88%;
  }

}

/*-----------------------------------------------------------------
	table
-----------------------------------------------------------------*/

.table_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table_scroll table {
  width: 100%;
  min-width: 100%;
  white-space: nowrap;
}

.scroll-hint-icon {
  top: 25%!important;
}

.simple_tbl {
  width: 100%;
}

.simple_tbl th,
.simple_tbl td {
  text-align: left;
  border-bottom: #ddd 1px solid;
  padding: 20px;
  vertical-align: top;
}

.simple_tbl th {
  padding: 20px 0;
}

.simple_tbl td {
  line-height: 1.5em;
}

.simple_tbl thead th {
  padding: 10px 20px;
  font-size: 88%;
  background-color: #24548C;
  color: #fff;
  position: sticky;
  top: 0;
  
}

@media only screen and (max-width: 550px) {
  
  .simple_tbl th {
    width: 30%;
    padding: 20px 0;
  }

}

/*-----------------------------------------------------------------
	group_tbl
-----------------------------------------------------------------*/

.group_tbl th {
	width: 270px;
	padding-top: 30px;
}

@media only screen and (max-width: 1100px) {
	
	.group_tbl th {
		width: 220px;
		padding-top: 30px;
	}

}

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

	.group_tbl th,
	.group_tbl td {
		width: 100%;
		display: block;
		padding: 20px 0;
	}
	
	.group_tbl th {
		border-bottom: none;
		padding-top: 30px;
		padding-bottom: 5px;
    border-bottom: #ddd 1px solid;
	}
	
	.group_tbl th .mt10 {
		margin-top: 5px!important;
	}
	
	.group_tbl tr:first-child th {
		padding-top: 0;
	}
	
	.group_tbl td {
		padding-top: 10px;
		padding-bottom: 0;
		border-bottom: none!important;
	}

}

/*-----------------------------------------------------------------
	news
-----------------------------------------------------------------*/

.news_list li {
  width: 22%;
  margin-bottom: 30px;
  position: relative;
}

.news_list li a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.news_list::before,
.news_list::after {
  content: "";
  width: 22%;
  display: block;
}

.news_list::before {
  order: 1;
}

.news_img {
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin-bottom: 15px;
}

.news_img img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  font-family: 'object-fit:cover;';
  transition: 0.5s all;
}

.news_date {
  font-size: 16px;
  background-color: #24548C;
  color: #fff;
  display: inline-block;
  line-height: 1em;
  padding: 5px 10px;
  margin-bottom: 5px;
}

.news_title {
  font-weight: bold;
  line-height: 1.5em;
}

.news_list li:hover .news_img img {
  transform: scale(1.1);
}

@media only screen and (max-width: 1100px) {
  
  .news_title {
    font-size: 88%;
  }
  
  .news_date {
    font-size: 14px;
  }

}

@media only screen and (max-width: 999px) {
  
  .news_list li {
    width: 23%;
    margin-bottom: 30px;
    position: relative;
  }

}

@media only screen and (max-width: 768px) {
  
  .news_list li {
    width: 48%;
    margin-bottom: 30px;
    position: relative;
  }
  
  .news_title {
    font-size: 93%;
    line-height: 1.4em;
  }

}

/*-----------------------------------------------------------------
	link
-----------------------------------------------------------------*/

.link_list li {
  width: 22%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  position: relative;
  margin-bottom: 5%;
}

.link_list::before,
.link_list::after {
  content: "";
  width: 22%;
  display: block;
}

.link_list::before {
  order: 1;
}

.link_list li a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.link_img {
  width: 100%;
  aspect-ratio: 250/160;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

.link_img img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  font-family: 'object-fit:cover;';
  transition: 0.5s all;
}

.link_title {
  width: 100%;
  padding: 10px;
  position: absolute;
  bottom: 0;
  background: #fff url("../images/icon_olink.png") no-repeat center right 12px;
  background-size: 18px;
}

.link_list li:hover .link_img img {
  transform: scale(1.1);
}

@media only screen and (max-width: 1100px) {
  
  .link_title {
    font-size: 88%;
    padding: 8px;
    background: #fff url("../images/icon_olink.png") no-repeat center right 10px;
    background-size: 12px;
  }

}

@media only screen and (max-width: 768px) {
  
  .link_list li {
    width: 30%;
  }

  .link_list::before,
  .link_list::after {
    content: "";
    width: 30%;
    display: block;
  }

}

@media only screen and (max-width: 550px) {
  
  .link_list li {
    width: 47%;
    margin-bottom: 8%;
  }
  
  .link_list::before,
  .link_list::after {
    content: none;
  }

}