/*------------------------------------------------------------
	effect_common
------------------------------------------------------------*/
/*---- color ----*/
/*---- effect ----*/
.link_effect {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  opacity: 0.70;
  color: #FFF;
}

.link_effect_2 {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  opacity: 0.85;
}

.link_effect_w {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.link_effect_w2 {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.no_effect {
  -webkit-transition: 0;
  -moz-transition: 0;
  -o-transition: 0;
  transition: 0;
  text-decoration: none;
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  opacity: 1;
  color: inherit;
}

.no_effect_2 {
  -webkit-transition: 0;
  -moz-transition: 0;
  -o-transition: 0;
  transition: 0;
  text-decoration: none;
  filter: alpha(opacity=1);
  -moz-opacity: 1;
  opacity: 1;
}

/*------------------------------------------------------------
	news
------------------------------------------------------------*/
body {
  /*---- news_tab ----*/
}
body #news_r_bg {
  background-color: #e3ebf4;
  padding-bottom: 40px;
  position: relative;
  top: -4px;
}
body #news_r_bg h2 {
  padding: 60px 0 24px;
  font-size: 2.4em;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center;
  line-height: 1.6;
}
body #news_r_bg h2 span {
  background: url(../img/common/main_title_b_dot.png) top center no-repeat;
  padding: 26px;
  font-size: 0.3em;
}
body #news_r_bg #news_r_tab {
  width: 1000px;
  margin: 0 auto;
}
body #news_r_bg #news_r_tab .cp_tabpanels {
  background-color: #FFF;
  width: 1000px;
  min-height: 318px;
  padding: 30px 16px;
  border-radius: 0 0 12px 12px;
  border: 4px solid #9cb6d2;
}
@media only screen and (max-width: 767px) {
  body #news_r_bg h2 {
    padding: 40px 0 24px;
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 2em;
  }
  body #news_r_bg h2 span {
    padding: 18px 26px;
  }
  body #news_r_bg #news_r_tab {
    width: 100%;
  }
  body #news_r_bg #news_r_tab .cp_tabpanels {
    width: 92%;
    padding: 24px 4% 20px;
    border-radius: 0 0 12px 12px;
  }
}
body #news_r_bg #news_more {
  margin: 0 auto;
  padding: 54px 0 40px;
  text-align: center;
}
body #news_r_bg #news_more a {
  background-color: #FFF;
  padding: 16px 36px 16px 44px;
  border: 1px solid #00458d;
  text-decoration: none;
}
body #news_r_bg #news_more a span {
  background: url("../img/common/list_icon.png") center right no-repeat;
  padding: 16px 40px 16px 0;
}
body #news_r_bg #news_more a:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  opacity: 0.70;
}
@media only screen and (max-width: 767px) {
  body #news_r_bg #news_more {
    padding: 44px 0 30px;
  }
  body #news_r_bg #news_more a {
    padding: 12px 30px 12px 32px;
  }
  body #news_r_bg #news_more a span {
    background: url("../img/common/list_icon.png") center right no-repeat;
    background-size: 24px;
    padding: 10px 30px 10px 0;
    font-size: 0.9em;
  }
}
body #news_r_bg .cp_tab_bg *, body #news_r_bg .cp_tab *:before, body #news_r_bg .cp_tab *:after {
  /*-webkit-box-sizing: border-box;*/
  /*box-sizing: border-box;*/
}
body #news_r_bg .cp_tab {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
body #news_r_bg .cp_tab > input[type='radio'] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
body #news_r_bg .cp_tab .cp_tabpanel {
  display: none;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body #news_r_bg .cp_tab > input:first-child:checked ~ .cp_tabpanels > .cp_tabpanel:first-child,
body #news_r_bg .cp_tab > input:nth-child(3):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(2),
body #news_r_bg .cp_tab > input:nth-child(5):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(3),
body #news_r_bg .cp_tab > input:nth-child(7):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(4) {
  display: block;
  overflow: visible;
  height: auto;
  animation-name: fade-in;
  animation-duration: .8s;
}
body #news_r_bg .cp_tab > label {
  background-color: #9cb6d2;
  width: 24%;
  margin: 15px 0px 0 0px;
  height: 60px;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-size: 1.1em;
  display: table;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
}
body #news_r_bg .cp_tab > label#tab1_4_off,
body #news_r_bg .cp_tab > label#tab1_3_off,
body #news_r_bg .cp_tab > label#tab1_2_off,
body #news_r_bg .cp_tab > label#tab1_1_off {
  background-color: #fff;
}
body #news_r_bg .cp_tab > input:checked + label {
  background-color: #9cb6d2 !important;
  color: #00458d;
  height: 75px;
  margin: 0 0 0 0px;
}
body #news_r_bg .cp_tab > input:checked + label span {
  padding-bottom: 7px;
  border-bottom: 3px solid #00458d;
  font-weight: 700;
}
body #news_r_bg .cp_tab > label:hover,
body #news_r_bg .cp_tab > input:focus + label {
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  body #news_r_bg .cp_tab {
    justify-content: space-between;
  }
  body #news_r_bg .cp_tab > label {
    width: 24%;
    height: 50px;
    margin: 10px 0.5% 0;
    font-size: 0.76em;
    line-height: 1.2;
  }
  body #news_r_bg .cp_tab > input:checked + label {
    height: 60px;
    margin: 0px 0.5% 0;
  }
}
